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

4c2ad1
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4c2ad1
From: Fedora GDB patches <invalid@email.com>
4c2ad1
Date: Fri, 27 Oct 2017 21:07:50 +0200
4c2ad1
Subject: gdb-6.6-buildid-locate.patch
4c2ad1
4c2ad1
;; New locating of the matching binaries from the pure core file (build-id).
4c2ad1
;;=push+jan
4c2ad1
4c2ad1
diff --git a/gdb/build-id.c b/gdb/build-id.c
4c2ad1
--- a/gdb/build-id.c
4c2ad1
+++ b/gdb/build-id.c
4c2ad1
@@ -26,11 +26,67 @@
4c2ad1
 #include "objfiles.h"
4c2ad1
 #include "filenames.h"
4c2ad1
 #include "gdbcore.h"
4c2ad1
+#include "libbfd.h"
4c2ad1
+#include "gdbcore.h"
4c2ad1
+#include "gdbcmd.h"
4c2ad1
+#include "observable.h"
4c2ad1
+#include "elf/external.h"
4c2ad1
+#include "elf/internal.h"
4c2ad1
+#include "elf/common.h"
4c2ad1
+#include "elf-bfd.h"
4c2ad1
+#include <sys/stat.h>
4c2ad1
+
4c2ad1
+#define BUILD_ID_VERBOSE_NONE 0
4c2ad1
+#define BUILD_ID_VERBOSE_FILENAMES 1
4c2ad1
+#define BUILD_ID_VERBOSE_BINARY_PARSE 2
4c2ad1
+static int build_id_verbose = BUILD_ID_VERBOSE_FILENAMES;
4c2ad1
+static void
4c2ad1
+show_build_id_verbose (struct ui_file *file, int from_tty,
4c2ad1
+		       struct cmd_list_element *c, const char *value)
4c2ad1
+{
4c2ad1
+  fprintf_filtered (file, _("Verbosity level of the build-id locator is %s.\n"),
4c2ad1
+		    value);
4c2ad1
+}
4c2ad1
+/* Locate NT_GNU_BUILD_ID and return its matching debug filename.
4c2ad1
+   FIXME: NOTE decoding should be unified with the BFD core notes decoding.  */
4c2ad1
+
4c2ad1
+static struct bfd_build_id *
4c2ad1
+build_id_buf_get (bfd *templ, gdb_byte *buf, bfd_size_type size)
4c2ad1
+{
4c2ad1
+  bfd_byte *p;
4c2ad1
+
4c2ad1
+  p = buf;
4c2ad1
+  while (p < buf + size)
4c2ad1
+    {
4c2ad1
+      /* FIXME: bad alignment assumption.  */
4c2ad1
+      Elf_External_Note *xnp = (Elf_External_Note *) p;
4c2ad1
+      size_t namesz = H_GET_32 (templ, xnp->namesz);
4c2ad1
+      size_t descsz = H_GET_32 (templ, xnp->descsz);
4c2ad1
+      bfd_byte *descdata = (gdb_byte *) xnp->name + BFD_ALIGN (namesz, 4);
4c2ad1
+
4c2ad1
+      if (H_GET_32 (templ, xnp->type) == NT_GNU_BUILD_ID
4c2ad1
+	  && namesz == sizeof "GNU"
4c2ad1
+	  && memcmp (xnp->name, "GNU", sizeof "GNU") == 0)
4c2ad1
+	{
4c2ad1
+	  size_t size = descsz;
4c2ad1
+	  gdb_byte *data = (gdb_byte *) descdata;
4c2ad1
+	  struct bfd_build_id *retval;
4c2ad1
+
4c2ad1
+	  retval = (struct bfd_build_id *) xmalloc (sizeof *retval - 1 + size);
4c2ad1
+	  retval->size = size;
4c2ad1
+	  memcpy (retval->data, data, size);
4c2ad1
+
4c2ad1
+	  return retval;
4c2ad1
+	}
4c2ad1
+      p = descdata + BFD_ALIGN (descsz, 4);
4c2ad1
+    }
4c2ad1
+  return NULL;
4c2ad1
+}
4c2ad1
 
4c2ad1
 /* See build-id.h.  */
4c2ad1
 
4c2ad1
 const struct bfd_build_id *
4c2ad1
-build_id_bfd_get (bfd *abfd)
4c2ad1
+build_id_bfd_shdr_get (bfd *abfd)
4c2ad1
 {
4c2ad1
   if (!bfd_check_format (abfd, bfd_object))
4c2ad1
     return NULL;
4c2ad1
@@ -42,6 +98,348 @@ build_id_bfd_get (bfd *abfd)
4c2ad1
   return NULL;
4c2ad1
 }
4c2ad1
 
4c2ad1
+/* Core files may have missing (corrupt) SHDR but PDHR is correct there.
4c2ad1
+   bfd_elf_bfd_from_remote_memory () has too much overhead by
4c2ad1
+   allocating/reading all the available ELF PT_LOADs.  */
4c2ad1
+
4c2ad1
+static struct bfd_build_id *
4c2ad1
+build_id_phdr_get (bfd *templ, bfd_vma loadbase, unsigned e_phnum,
4c2ad1
+		   Elf_Internal_Phdr *i_phdr)
4c2ad1
+{
4c2ad1
+  int i;
4c2ad1
+  struct bfd_build_id *retval = NULL;
4c2ad1
+
4c2ad1
+  for (i = 0; i < e_phnum; i++)
4c2ad1
+    if (i_phdr[i].p_type == PT_NOTE && i_phdr[i].p_filesz > 0)
4c2ad1
+      {
4c2ad1
+	Elf_Internal_Phdr *hdr = &i_phdr[i];
4c2ad1
+	gdb_byte *buf;
4c2ad1
+	int err;
4c2ad1
+
4c2ad1
+	buf = (gdb_byte *) xmalloc (hdr->p_filesz);
4c2ad1
+	err = target_read_memory (loadbase + i_phdr[i].p_vaddr, buf,
4c2ad1
+				  hdr->p_filesz);
4c2ad1
+	if (err == 0)
4c2ad1
+	  retval = build_id_buf_get (templ, buf, hdr->p_filesz);
4c2ad1
+	else
4c2ad1
+	  retval = NULL;
4c2ad1
+	xfree (buf);
4c2ad1
+	if (retval != NULL)
4c2ad1
+	  break;
4c2ad1
+      }
4c2ad1
+  return retval;
4c2ad1
+}
4c2ad1
+
4c2ad1
+/* First we validate the file by reading in the ELF header and checking
4c2ad1
+   the magic number.  */
4c2ad1
+
4c2ad1
+static inline bfd_boolean
4c2ad1
+elf_file_p (Elf64_External_Ehdr *x_ehdrp64)
4c2ad1
+{
4c2ad1
+  gdb_assert (sizeof (Elf64_External_Ehdr) >= sizeof (Elf32_External_Ehdr));
4c2ad1
+  gdb_assert (offsetof (Elf64_External_Ehdr, e_ident)
4c2ad1
+	      == offsetof (Elf32_External_Ehdr, e_ident));
4c2ad1
+  gdb_assert (sizeof (((Elf64_External_Ehdr *) 0)->e_ident)
4c2ad1
+	      == sizeof (((Elf32_External_Ehdr *) 0)->e_ident));
4c2ad1
+
4c2ad1
+  return ((x_ehdrp64->e_ident[EI_MAG0] == ELFMAG0)
4c2ad1
+	  && (x_ehdrp64->e_ident[EI_MAG1] == ELFMAG1)
4c2ad1
+	  && (x_ehdrp64->e_ident[EI_MAG2] == ELFMAG2)
4c2ad1
+	  && (x_ehdrp64->e_ident[EI_MAG3] == ELFMAG3));
4c2ad1
+}
4c2ad1
+
4c2ad1
+/* Translate an ELF file header in external format into an ELF file header in
4c2ad1
+   internal format.  */
4c2ad1
+
4c2ad1
+#define H_GET_WORD(bfd, ptr) (is64 ? H_GET_64 (bfd, (ptr))		\
4c2ad1
+				   : H_GET_32 (bfd, (ptr)))
4c2ad1
+#define H_GET_SIGNED_WORD(bfd, ptr) (is64 ? H_GET_S64 (bfd, (ptr))	\
4c2ad1
+					  : H_GET_S32 (bfd, (ptr)))
4c2ad1
+
4c2ad1
+static void
4c2ad1
+elf_swap_ehdr_in (bfd *abfd,
4c2ad1
+		  const Elf64_External_Ehdr *src64,
4c2ad1
+		  Elf_Internal_Ehdr *dst)
4c2ad1
+{
4c2ad1
+  int is64 = bfd_get_arch_size (abfd) == 64;
4c2ad1
+#define SRC(field) (is64 ? src64->field \
4c2ad1
+			 : ((const Elf32_External_Ehdr *) src64)->field)
4c2ad1
+
4c2ad1
+  int signed_vma = get_elf_backend_data (abfd)->sign_extend_vma;
4c2ad1
+  memcpy (dst->e_ident, SRC (e_ident), EI_NIDENT);
4c2ad1
+  dst->e_type = H_GET_16 (abfd, SRC (e_type));
4c2ad1
+  dst->e_machine = H_GET_16 (abfd, SRC (e_machine));
4c2ad1
+  dst->e_version = H_GET_32 (abfd, SRC (e_version));
4c2ad1
+  if (signed_vma)
4c2ad1
+    dst->e_entry = H_GET_SIGNED_WORD (abfd, SRC (e_entry));
4c2ad1
+  else
4c2ad1
+    dst->e_entry = H_GET_WORD (abfd, SRC (e_entry));
4c2ad1
+  dst->e_phoff = H_GET_WORD (abfd, SRC (e_phoff));
4c2ad1
+  dst->e_shoff = H_GET_WORD (abfd, SRC (e_shoff));
4c2ad1
+  dst->e_flags = H_GET_32 (abfd, SRC (e_flags));
4c2ad1
+  dst->e_ehsize = H_GET_16 (abfd, SRC (e_ehsize));
4c2ad1
+  dst->e_phentsize = H_GET_16 (abfd, SRC (e_phentsize));
4c2ad1
+  dst->e_phnum = H_GET_16 (abfd, SRC (e_phnum));
4c2ad1
+  dst->e_shentsize = H_GET_16 (abfd, SRC (e_shentsize));
4c2ad1
+  dst->e_shnum = H_GET_16 (abfd, SRC (e_shnum));
4c2ad1
+  dst->e_shstrndx = H_GET_16 (abfd, SRC (e_shstrndx));
4c2ad1
+
4c2ad1
+#undef SRC
4c2ad1
+}
4c2ad1
+
4c2ad1
+/* Translate an ELF program header table entry in external format into an
4c2ad1
+   ELF program header table entry in internal format.  */
4c2ad1
+
4c2ad1
+static void
4c2ad1
+elf_swap_phdr_in (bfd *abfd,
4c2ad1
+		  const Elf64_External_Phdr *src64,
4c2ad1
+		  Elf_Internal_Phdr *dst)
4c2ad1
+{
4c2ad1
+  int is64 = bfd_get_arch_size (abfd) == 64;
4c2ad1
+#define SRC(field) (is64 ? src64->field					\
4c2ad1
+			 : ((const Elf32_External_Phdr *) src64)->field)
4c2ad1
+
4c2ad1
+  int signed_vma = get_elf_backend_data (abfd)->sign_extend_vma;
4c2ad1
+
4c2ad1
+  dst->p_type = H_GET_32 (abfd, SRC (p_type));
4c2ad1
+  dst->p_flags = H_GET_32 (abfd, SRC (p_flags));
4c2ad1
+  dst->p_offset = H_GET_WORD (abfd, SRC (p_offset));
4c2ad1
+  if (signed_vma)
4c2ad1
+    {
4c2ad1
+      dst->p_vaddr = H_GET_SIGNED_WORD (abfd, SRC (p_vaddr));
4c2ad1
+      dst->p_paddr = H_GET_SIGNED_WORD (abfd, SRC (p_paddr));
4c2ad1
+    }
4c2ad1
+  else
4c2ad1
+    {
4c2ad1
+      dst->p_vaddr = H_GET_WORD (abfd, SRC (p_vaddr));
4c2ad1
+      dst->p_paddr = H_GET_WORD (abfd, SRC (p_paddr));
4c2ad1
+    }
4c2ad1
+  dst->p_filesz = H_GET_WORD (abfd, SRC (p_filesz));
4c2ad1
+  dst->p_memsz = H_GET_WORD (abfd, SRC (p_memsz));
4c2ad1
+  dst->p_align = H_GET_WORD (abfd, SRC (p_align));
4c2ad1
+
4c2ad1
+#undef SRC
4c2ad1
+}
4c2ad1
+
4c2ad1
+#undef H_GET_SIGNED_WORD
4c2ad1
+#undef H_GET_WORD
4c2ad1
+
4c2ad1
+static Elf_Internal_Phdr *
4c2ad1
+elf_get_phdr (bfd *templ, bfd_vma ehdr_vma, unsigned *e_phnum_pointer,
4c2ad1
+              bfd_vma *loadbase_pointer)
4c2ad1
+{
4c2ad1
+  /* sizeof (Elf64_External_Ehdr) >= sizeof (Elf32_External_Ehdr)  */
4c2ad1
+  Elf64_External_Ehdr x_ehdr64;	/* Elf file header, external form */
4c2ad1
+  Elf_Internal_Ehdr i_ehdr;	/* Elf file header, internal form */
4c2ad1
+  bfd_size_type x_phdrs_size;
4c2ad1
+  gdb_byte *x_phdrs_ptr;
4c2ad1
+  Elf_Internal_Phdr *i_phdrs;
4c2ad1
+  int err;
4c2ad1
+  unsigned int i;
4c2ad1
+  bfd_vma loadbase;
4c2ad1
+  int loadbase_set;
4c2ad1
+
4c2ad1
+  gdb_assert (templ != NULL);
4c2ad1
+  gdb_assert (sizeof (Elf64_External_Ehdr) >= sizeof (Elf32_External_Ehdr));
4c2ad1
+
4c2ad1
+  /* Read in the ELF header in external format.  */
4c2ad1
+  err = target_read_memory (ehdr_vma, (bfd_byte *) &x_ehdr64, sizeof x_ehdr64);
4c2ad1
+  if (err)
4c2ad1
+    {
4c2ad1
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+        warning (_("build-id: Error reading ELF header at address 0x%lx"),
4c2ad1
+		 (unsigned long) ehdr_vma);
4c2ad1
+      return NULL;
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  /* Now check to see if we have a valid ELF file, and one that BFD can
4c2ad1
+     make use of.  The magic number must match, the address size ('class')
4c2ad1
+     and byte-swapping must match our XVEC entry.  */
4c2ad1
+
4c2ad1
+  if (! elf_file_p (&x_ehdr64)
4c2ad1
+      || x_ehdr64.e_ident[EI_VERSION] != EV_CURRENT
4c2ad1
+      || !((bfd_get_arch_size (templ) == 64
4c2ad1
+            && x_ehdr64.e_ident[EI_CLASS] == ELFCLASS64)
4c2ad1
+           || (bfd_get_arch_size (templ) == 32
4c2ad1
+	       && x_ehdr64.e_ident[EI_CLASS] == ELFCLASS32)))
4c2ad1
+    {
4c2ad1
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+        warning (_("build-id: Unrecognized ELF header at address 0x%lx"),
4c2ad1
+		 (unsigned long) ehdr_vma);
4c2ad1
+      return NULL;
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  /* Check that file's byte order matches xvec's */
4c2ad1
+  switch (x_ehdr64.e_ident[EI_DATA])
4c2ad1
+    {
4c2ad1
+    case ELFDATA2MSB:		/* Big-endian */
4c2ad1
+      if (! bfd_header_big_endian (templ))
4c2ad1
+	{
4c2ad1
+	  if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+	    warning (_("build-id: Unrecognized "
4c2ad1
+		       "big-endian ELF header at address 0x%lx"),
4c2ad1
+		     (unsigned long) ehdr_vma);
4c2ad1
+	  return NULL;
4c2ad1
+	}
4c2ad1
+      break;
4c2ad1
+    case ELFDATA2LSB:		/* Little-endian */
4c2ad1
+      if (! bfd_header_little_endian (templ))
4c2ad1
+	{
4c2ad1
+	  if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+	    warning (_("build-id: Unrecognized "
4c2ad1
+		       "little-endian ELF header at address 0x%lx"),
4c2ad1
+		     (unsigned long) ehdr_vma);
4c2ad1
+	  return NULL;
4c2ad1
+	}
4c2ad1
+      break;
4c2ad1
+    case ELFDATANONE:		/* No data encoding specified */
4c2ad1
+    default:			/* Unknown data encoding specified */
4c2ad1
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+	warning (_("build-id: Unrecognized "
4c2ad1
+		   "ELF header endianity at address 0x%lx"),
4c2ad1
+		 (unsigned long) ehdr_vma);
4c2ad1
+      return NULL;
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  elf_swap_ehdr_in (templ, &x_ehdr64, &i_ehdr);
4c2ad1
+
4c2ad1
+  /* The file header tells where to find the program headers.
4c2ad1
+     These are what we use to actually choose what to read.  */
4c2ad1
+
4c2ad1
+  if (i_ehdr.e_phentsize != (bfd_get_arch_size (templ) == 64
4c2ad1
+                             ? sizeof (Elf64_External_Phdr)
4c2ad1
+			     : sizeof (Elf32_External_Phdr))
4c2ad1
+      || i_ehdr.e_phnum == 0)
4c2ad1
+    {
4c2ad1
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+	warning (_("build-id: Invalid ELF program headers from the ELF header "
4c2ad1
+		   "at address 0x%lx"), (unsigned long) ehdr_vma);
4c2ad1
+      return NULL;
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  x_phdrs_size = (bfd_get_arch_size (templ) == 64 ? sizeof (Elf64_External_Phdr)
4c2ad1
+						: sizeof (Elf32_External_Phdr));
4c2ad1
+
4c2ad1
+  i_phdrs = (Elf_Internal_Phdr *) xmalloc (i_ehdr.e_phnum * (sizeof *i_phdrs + x_phdrs_size));
4c2ad1
+  x_phdrs_ptr = (gdb_byte *) &i_phdrs[i_ehdr.e_phnum];
4c2ad1
+  err = target_read_memory (ehdr_vma + i_ehdr.e_phoff, (bfd_byte *) x_phdrs_ptr,
4c2ad1
+			    i_ehdr.e_phnum * x_phdrs_size);
4c2ad1
+  if (err)
4c2ad1
+    {
4c2ad1
+      free (i_phdrs);
4c2ad1
+      if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+        warning (_("build-id: Error reading "
4c2ad1
+		   "ELF program headers at address 0x%lx"),
4c2ad1
+		 (unsigned long) (ehdr_vma + i_ehdr.e_phoff));
4c2ad1
+      return NULL;
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  loadbase = ehdr_vma;
4c2ad1
+  loadbase_set = 0;
4c2ad1
+  for (i = 0; i < i_ehdr.e_phnum; ++i)
4c2ad1
+    {
4c2ad1
+      elf_swap_phdr_in (templ, (Elf64_External_Phdr *)
4c2ad1
+			       (x_phdrs_ptr + i * x_phdrs_size), &i_phdrs[i]);
4c2ad1
+      /* IA-64 vDSO may have two mappings for one segment, where one mapping
4c2ad1
+	 is executable only, and one is read only.  We must not use the
4c2ad1
+	 executable one (PF_R is the first one, PF_X the second one).  */
4c2ad1
+      if (i_phdrs[i].p_type == PT_LOAD && (i_phdrs[i].p_flags & PF_R))
4c2ad1
+	{
4c2ad1
+	  /* Only the first PT_LOAD segment indicates the file bias.
4c2ad1
+	     Next segments may have P_VADDR arbitrarily higher.
4c2ad1
+	     If the first segment has P_VADDR zero any next segment must not
4c2ad1
+	     confuse us, the first one sets LOADBASE certainly enough.  */
4c2ad1
+	  if (!loadbase_set && i_phdrs[i].p_offset == 0)
4c2ad1
+	    {
4c2ad1
+	      loadbase = ehdr_vma - i_phdrs[i].p_vaddr;
4c2ad1
+	      loadbase_set = 1;
4c2ad1
+	    }
4c2ad1
+	}
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  if (build_id_verbose >= BUILD_ID_VERBOSE_BINARY_PARSE)
4c2ad1
+    warning (_("build-id: Found ELF header at address 0x%lx, loadbase 0x%lx"),
4c2ad1
+	     (unsigned long) ehdr_vma, (unsigned long) loadbase);
4c2ad1
+
4c2ad1
+  *e_phnum_pointer = i_ehdr.e_phnum;
4c2ad1
+  *loadbase_pointer = loadbase;
4c2ad1
+  return i_phdrs;
4c2ad1
+}
4c2ad1
+
4c2ad1
+/* BUILD_ID_ADDR_GET gets ADDR located somewhere in the object.
4c2ad1
+   Find the first section before ADDR containing an ELF header.
4c2ad1
+   We rely on the fact the sections from multiple files do not mix.
4c2ad1
+   FIXME: We should check ADDR is contained _inside_ the section with possibly
4c2ad1
+   missing content (P_FILESZ < P_MEMSZ).  These omitted sections are currently
4c2ad1
+   hidden by _BFD_ELF_MAKE_SECTION_FROM_PHDR.  */
4c2ad1
+
4c2ad1
+static CORE_ADDR build_id_addr;
4c2ad1
+struct build_id_addr_sect
4c2ad1
+  {
4c2ad1
+    struct build_id_addr_sect *next;
4c2ad1
+    asection *sect;
4c2ad1
+  };
4c2ad1
+static struct build_id_addr_sect *build_id_addr_sect;
4c2ad1
+
4c2ad1
+static void build_id_addr_candidate (bfd *abfd, asection *sect, void *obj)
4c2ad1
+{
4c2ad1
+  if (build_id_addr >= bfd_section_vma (abfd, sect))
4c2ad1
+    {
4c2ad1
+      struct build_id_addr_sect *candidate;
4c2ad1
+
4c2ad1
+      candidate = (struct build_id_addr_sect *) xmalloc (sizeof *candidate);
4c2ad1
+      candidate->next = build_id_addr_sect;
4c2ad1
+      build_id_addr_sect = candidate;
4c2ad1
+      candidate->sect = sect;
4c2ad1
+    }
4c2ad1
+}
4c2ad1
+
4c2ad1
+struct bfd_build_id *
4c2ad1
+build_id_addr_get (CORE_ADDR addr)
4c2ad1
+{
4c2ad1
+  struct build_id_addr_sect *candidate;
4c2ad1
+  struct bfd_build_id *retval = NULL;
4c2ad1
+  Elf_Internal_Phdr *i_phdr = NULL;
4c2ad1
+  bfd_vma loadbase = 0;
4c2ad1
+  unsigned e_phnum = 0;
4c2ad1
+
4c2ad1
+  if (core_bfd == NULL)
4c2ad1
+    return NULL;
4c2ad1
+
4c2ad1
+  build_id_addr = addr;
4c2ad1
+  gdb_assert (build_id_addr_sect == NULL);
4c2ad1
+  bfd_map_over_sections (core_bfd, build_id_addr_candidate, NULL);
4c2ad1
+
4c2ad1
+  /* Sections are sorted in the high-to-low VMAs order.
4c2ad1
+     Stop the search on the first ELF header we find.
4c2ad1
+     Do not continue the search even if it does not contain NT_GNU_BUILD_ID.  */
4c2ad1
+
4c2ad1
+  for (candidate = build_id_addr_sect; candidate != NULL;
4c2ad1
+       candidate = candidate->next)
4c2ad1
+    {
4c2ad1
+      i_phdr = elf_get_phdr (core_bfd,
4c2ad1
+			     bfd_section_vma (core_bfd, candidate->sect),
4c2ad1
+			     &e_phnum, &loadbase);
4c2ad1
+      if (i_phdr != NULL)
4c2ad1
+	break;
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  if (i_phdr != NULL)
4c2ad1
+    {
4c2ad1
+      retval = build_id_phdr_get (core_bfd, loadbase, e_phnum, i_phdr);
4c2ad1
+      xfree (i_phdr);
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  while (build_id_addr_sect != NULL)
4c2ad1
+    {
4c2ad1
+      candidate = build_id_addr_sect;
4c2ad1
+      build_id_addr_sect = candidate->next;
4c2ad1
+      xfree (candidate);
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  return retval;
4c2ad1
+}
4c2ad1
+
4c2ad1
 /* See build-id.h.  */
4c2ad1
 
4c2ad1
 int
4c2ad1
@@ -50,7 +448,7 @@ build_id_verify (bfd *abfd, size_t check_len, const bfd_byte *check)
4c2ad1
   const struct bfd_build_id *found;
4c2ad1
   int retval = 0;
4c2ad1
 
4c2ad1
-  found = build_id_bfd_get (abfd);
4c2ad1
+  found = build_id_bfd_shdr_get (abfd);
4c2ad1
 
4c2ad1
   if (found == NULL)
4c2ad1
     warning (_("File \"%s\" has no build-id, file skipped"),
4c2ad1
@@ -65,11 +463,50 @@ build_id_verify (bfd *abfd, size_t check_len, const bfd_byte *check)
4c2ad1
   return retval;
4c2ad1
 }
4c2ad1
 
4c2ad1
+static char *
4c2ad1
+link_resolve (const char *symlink, int level)
4c2ad1
+{
4c2ad1
+  char buf[PATH_MAX + 1], *target, *retval;
4c2ad1
+  ssize_t got;
4c2ad1
+
4c2ad1
+  if (level > 10)
4c2ad1
+    return xstrdup (symlink);
4c2ad1
+
4c2ad1
+  got = readlink (symlink, buf, sizeof (buf));
4c2ad1
+  if (got < 0 || got >= sizeof (buf))
4c2ad1
+    return xstrdup (symlink);
4c2ad1
+  buf[got] = '\0';
4c2ad1
+
4c2ad1
+  if (IS_ABSOLUTE_PATH (buf))
4c2ad1
+    target = xstrdup (buf);
4c2ad1
+  else
4c2ad1
+    {
4c2ad1
+      const std::string dir (ldirname (symlink));
4c2ad1
+
4c2ad1
+      target = xstrprintf ("%s"
4c2ad1
+#ifndef HAVE_DOS_BASED_FILE_SYSTEM
4c2ad1
+			   "/"
4c2ad1
+#else /* HAVE_DOS_BASED_FILE_SYSTEM */
4c2ad1
+			   "\\"
4c2ad1
+#endif /* HAVE_DOS_BASED_FILE_SYSTEM */
4c2ad1
+			   "%s", dir.c_str(), buf);
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  retval = link_resolve (target, level + 1);
4c2ad1
+  xfree (target);
4c2ad1
+  return retval;
4c2ad1
+}
4c2ad1
+
4c2ad1
 /* See build-id.h.  */
4c2ad1
 
4c2ad1
 gdb_bfd_ref_ptr
4c2ad1
-build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id)
4c2ad1
+build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id,
4c2ad1
+		       char **link_return, int add_debug_suffix)
4c2ad1
 {
4c2ad1
+  char *debugdir;
4c2ad1
+  std::string link, link_all;
4c2ad1
+  struct cleanup *back_to;
4c2ad1
+  int ix;
4c2ad1
   gdb_bfd_ref_ptr abfd;
4c2ad1
 
4c2ad1
   /* Keep backward compatibility so that DEBUG_FILE_DIRECTORY being "" will
4c2ad1
@@ -82,63 +519,296 @@ build_id_to_debug_bfd (size_t build_id_len, const bfd_byte *build_id)
4c2ad1
     {
4c2ad1
       const gdb_byte *data = build_id;
4c2ad1
       size_t size = build_id_len;
4c2ad1
+      char *filename = NULL;
4c2ad1
+      struct cleanup *inner;
4c2ad1
+      unsigned seqno;
4c2ad1
+      struct stat statbuf_trash;
4c2ad1
+      std::string link0;
4c2ad1
 
4c2ad1
-      std::string link = debugdir.get ();
4c2ad1
+      link = debugdir.get ();
4c2ad1
       link += "/.build-id/";
4c2ad1
 
4c2ad1
       if (size > 0)
4c2ad1
 	{
4c2ad1
 	  size--;
4c2ad1
-	  string_appendf (link, "%02x/", (unsigned) *data++);
4c2ad1
+	  string_appendf (link, "%02x", (unsigned) *data++);
4c2ad1
 	}
4c2ad1
-
4c2ad1
+      if (size > 0)
4c2ad1
+	link += "/";
4c2ad1
       while (size-- > 0)
4c2ad1
 	string_appendf (link, "%02x", (unsigned) *data++);
4c2ad1
 
4c2ad1
-      link += ".debug";
4c2ad1
-
4c2ad1
       if (separate_debug_file_debug)
4c2ad1
 	printf_unfiltered (_("  Trying %s\n"), link.c_str ());
4c2ad1
 
4c2ad1
-      /* lrealpath() is expensive even for the usually non-existent files.  */
4c2ad1
-      gdb::unique_xmalloc_ptr<char> filename;
4c2ad1
-      if (access (link.c_str (), F_OK) == 0)
4c2ad1
-	filename.reset (lrealpath (link.c_str ()));
4c2ad1
-
4c2ad1
-      if (filename == NULL)
4c2ad1
-	continue;
4c2ad1
+      for (seqno = 0;; seqno++)
4c2ad1
+	{
4c2ad1
+	  if (seqno)
4c2ad1
+	    {
4c2ad1
+	      /* There can be multiple build-id symlinks pointing to real files
4c2ad1
+		 with the same build-id (such as hard links).  Some of the real
4c2ad1
+		 files may not be installed.  */
4c2ad1
+
4c2ad1
+	      string_appendf (link, ".%u", seqno);
4c2ad1
+	    }
4c2ad1
+
4c2ad1
+	  if (add_debug_suffix)
4c2ad1
+	    link += ".debug";
4c2ad1
+
4c2ad1
+	  if (!seqno)
4c2ad1
+	    {
4c2ad1
+	      /* If none of the real files is found report as missing file
4c2ad1
+		 always the non-.%u-suffixed file.  */
4c2ad1
+	      link0 = link;
4c2ad1
+	    }
4c2ad1
+
4c2ad1
+	  /* `access' automatically dereferences LINK.  */
4c2ad1
+	  if (lstat (link.c_str (), &statbuf_trash) != 0)
4c2ad1
+	    {
4c2ad1
+	      /* Stop increasing SEQNO.  */
4c2ad1
+	      break;
4c2ad1
+	    }
4c2ad1
+
4c2ad1
+	  filename = lrealpath (link.c_str ());
4c2ad1
+	  if (filename == NULL)
4c2ad1
+	    continue;
4c2ad1
+
4c2ad1
+	  /* We expect to be silent on the non-existing files.  */
4c2ad1
+	  inner = make_cleanup (xfree, filename);
4c2ad1
+	  abfd = gdb_bfd_open (filename, gnutarget, -1);
4c2ad1
+	  do_cleanups (inner);
4c2ad1
+
4c2ad1
+	  if (abfd == NULL)
4c2ad1
+	    continue;
4c2ad1
+
4c2ad1
+	  if (build_id_verify (abfd.get(), build_id_len, build_id))
4c2ad1
+	    break;
4c2ad1
+
4c2ad1
+	  abfd.release ();
4c2ad1
+
4c2ad1
+	  filename = NULL;
4c2ad1
+	}
4c2ad1
 
4c2ad1
-      /* We expect to be silent on the non-existing files.  */
4c2ad1
-      abfd = gdb_bfd_open (filename.get (), gnutarget, -1);
4c2ad1
+      if (filename != NULL)
4c2ad1
+	{
4c2ad1
+	  /* LINK_ALL is not used below in this non-NULL FILENAME case.  */
4c2ad1
+	  break;
4c2ad1
+	}
4c2ad1
 
4c2ad1
-      if (abfd == NULL)
4c2ad1
-	continue;
4c2ad1
+      /* If the symlink has target request to install the target.
4c2ad1
+         BASE-debuginfo.rpm contains the symlink but BASE.rpm may be missing.
4c2ad1
+         https://bugzilla.redhat.com/show_bug.cgi?id=981154  */
4c2ad1
+      std::string link0_resolved (link_resolve (link0.c_str (), 0));
4c2ad1
 
4c2ad1
-      if (build_id_verify (abfd.get(), build_id_len, build_id))
4c2ad1
-	break;
4c2ad1
+      if (link_all.empty ())
4c2ad1
+	link_all = link0_resolved;
4c2ad1
+      else
4c2ad1
+	{
4c2ad1
+	  /* Use whitespace instead of DIRNAME_SEPARATOR to be compatible with
4c2ad1
+	     its possible use as an argument for installation command.  */
4c2ad1
+	  link_all += " " + link0_resolved;
4c2ad1
+	}
4c2ad1
+    }
4c2ad1
 
4c2ad1
-      abfd.release ();
4c2ad1
+  if (link_return != NULL)
4c2ad1
+    {
4c2ad1
+      if (abfd != NULL)
4c2ad1
+	{
4c2ad1
+	  *link_return = xstrdup (link.c_str ());
4c2ad1
+	}
4c2ad1
+      else
4c2ad1
+	{
4c2ad1
+	  *link_return = xstrdup (link_all.c_str ());
4c2ad1
+	}
4c2ad1
     }
4c2ad1
 
4c2ad1
   return abfd;
4c2ad1
 }
4c2ad1
 
4c2ad1
+char *
4c2ad1
+build_id_to_filename (const struct bfd_build_id *build_id, char **link_return)
4c2ad1
+{
4c2ad1
+  gdb_bfd_ref_ptr abfd;
4c2ad1
+  char *result;
4c2ad1
+  
4c2ad1
+  abfd = build_id_to_debug_bfd (build_id->size, build_id->data, link_return, 0);
4c2ad1
+  if (abfd == NULL)
4c2ad1
+    return NULL;
4c2ad1
+
4c2ad1
+  result = xstrdup (bfd_get_filename (abfd));
4c2ad1
+  abfd.release ();
4c2ad1
+  return result;
4c2ad1
+}
4c2ad1
+
4c2ad1
+/* This MISSING_FILEPAIR_HASH tracker is used only for the duplicite messages
4c2ad1
+     Try to install the hash file ...
4c2ad1
+   avoidance.  */
4c2ad1
+
4c2ad1
+struct missing_filepair
4c2ad1
+  {
4c2ad1
+    char *binary;
4c2ad1
+    char *debug;
4c2ad1
+    char data[1];
4c2ad1
+  };
4c2ad1
+
4c2ad1
+static struct htab *missing_filepair_hash;
4c2ad1
+static struct obstack missing_filepair_obstack;
4c2ad1
+
4c2ad1
+static void *
4c2ad1
+missing_filepair_xcalloc (size_t nmemb, size_t nmemb_size)
4c2ad1
+{
4c2ad1
+  void *retval;
4c2ad1
+  size_t size = nmemb * nmemb_size;
4c2ad1
+
4c2ad1
+  retval = obstack_alloc (&missing_filepair_obstack, size);
4c2ad1
+  memset (retval, 0, size);
4c2ad1
+  return retval;
4c2ad1
+}
4c2ad1
+
4c2ad1
+static hashval_t
4c2ad1
+missing_filepair_hash_func (const struct missing_filepair *elem)
4c2ad1
+{
4c2ad1
+  hashval_t retval = 0;
4c2ad1
+
4c2ad1
+  retval ^= htab_hash_string (elem->binary);
4c2ad1
+  if (elem->debug != NULL)
4c2ad1
+    retval ^= htab_hash_string (elem->debug);
4c2ad1
+
4c2ad1
+  return retval;
4c2ad1
+}
4c2ad1
+
4c2ad1
+static int
4c2ad1
+missing_filepair_eq (const struct missing_filepair *elem1,
4c2ad1
+		       const struct missing_filepair *elem2)
4c2ad1
+{
4c2ad1
+  return strcmp (elem1->binary, elem2->binary) == 0
4c2ad1
+         && ((elem1->debug == NULL) == (elem2->debug == NULL))
4c2ad1
+         && (elem1->debug == NULL || strcmp (elem1->debug, elem2->debug) == 0);
4c2ad1
+}
4c2ad1
+
4c2ad1
+static void
4c2ad1
+missing_filepair_change (void)
4c2ad1
+{
4c2ad1
+  if (missing_filepair_hash != NULL)
4c2ad1
+    {
4c2ad1
+      obstack_free (&missing_filepair_obstack, NULL);
4c2ad1
+      /* All their memory came just from missing_filepair_OBSTACK.  */
4c2ad1
+      missing_filepair_hash = NULL;
4c2ad1
+    }
4c2ad1
+}
4c2ad1
+
4c2ad1
+static void
4c2ad1
+debug_print_executable_changed (void)
4c2ad1
+{
4c2ad1
+  missing_filepair_change ();
4c2ad1
+}
4c2ad1
+
4c2ad1
+/* Notify user the file BINARY with (possibly NULL) associated separate debug
4c2ad1
+   information file DEBUG is missing.  DEBUG may or may not be the build-id
4c2ad1
+   file such as would be:
4c2ad1
+     /usr/lib/debug/.build-id/dd/b1d2ce632721c47bb9e8679f369e2295ce71be.debug
4c2ad1
+   */
4c2ad1
+
4c2ad1
+void
4c2ad1
+debug_print_missing (const char *binary, const char *debug)
4c2ad1
+{
4c2ad1
+  size_t binary_len0 = strlen (binary) + 1;
4c2ad1
+  size_t debug_len0 = debug ? strlen (debug) + 1 : 0;
4c2ad1
+  struct missing_filepair missing_filepair_find;
4c2ad1
+  struct missing_filepair *missing_filepair;
4c2ad1
+  struct missing_filepair **slot;
4c2ad1
+
4c2ad1
+  if (build_id_verbose < BUILD_ID_VERBOSE_FILENAMES)
4c2ad1
+    return;
4c2ad1
+
4c2ad1
+  if (missing_filepair_hash == NULL)
4c2ad1
+    {
4c2ad1
+      obstack_init (&missing_filepair_obstack);
4c2ad1
+      missing_filepair_hash = htab_create_alloc (64,
4c2ad1
+	(hashval_t (*) (const void *)) missing_filepair_hash_func,
4c2ad1
+	(int (*) (const void *, const void *)) missing_filepair_eq, NULL,
4c2ad1
+	missing_filepair_xcalloc, NULL);
4c2ad1
+    }
4c2ad1
+
4c2ad1
+  /* Use MISSING_FILEPAIR_FIND first instead of calling obstack_alloc with
4c2ad1
+     obstack_free in the case of a (rare) match.  The problem is ALLOC_F for
4c2ad1
+     MISSING_FILEPAIR_HASH allocates from MISSING_FILEPAIR_OBSTACK maintenance
4c2ad1
+     structures for MISSING_FILEPAIR_HASH.  Calling obstack_free would possibly
4c2ad1
+     not to free only MISSING_FILEPAIR but also some such structures (allocated
4c2ad1
+     during the htab_find_slot call).  */
4c2ad1
+
4c2ad1
+  missing_filepair_find.binary = (char *) binary;
4c2ad1
+  missing_filepair_find.debug = (char *) debug;
4c2ad1
+  slot = (struct missing_filepair **) htab_find_slot (missing_filepair_hash,
4c2ad1
+						      &missing_filepair_find,
4c2ad1
+						      INSERT);
4c2ad1
+
4c2ad1
+  /* While it may be still printed duplicitely with the missing debuginfo file
4c2ad1
+   * it is due to once printing about the binary file build-id link and once
4c2ad1
+   * about the .debug file build-id link as both the build-id symlinks are
4c2ad1
+   * located in the debuginfo package.  */
4c2ad1
+
4c2ad1
+  if (*slot != NULL)
4c2ad1
+    return;
4c2ad1
+
4c2ad1
+  missing_filepair = (struct missing_filepair *) obstack_alloc (&missing_filepair_obstack,
4c2ad1
+								sizeof (*missing_filepair) - 1
4c2ad1
+								+ binary_len0 + debug_len0);
4c2ad1
+  missing_filepair->binary = missing_filepair->data;
4c2ad1
+  memcpy (missing_filepair->binary, binary, binary_len0);
4c2ad1
+  if (debug != NULL)
4c2ad1
+    {
4c2ad1
+      missing_filepair->debug = missing_filepair->binary + binary_len0;
4c2ad1
+      memcpy (missing_filepair->debug, debug, debug_len0);
4c2ad1
+    }
4c2ad1
+  else
4c2ad1
+    missing_filepair->debug = NULL;
4c2ad1
+
4c2ad1
+  *slot = missing_filepair;
4c2ad1
+
4c2ad1
+  /* We do not collect and flush these messages as each such message
4c2ad1
+     already requires its own separate lines.  */
4c2ad1
+
4c2ad1
+  fprintf_unfiltered (gdb_stdlog,
4c2ad1
+		      _("Missing separate debuginfo for %s\n"), binary);
4c2ad1
+  if (debug != NULL)
4c2ad1
+    fprintf_unfiltered (gdb_stdlog, _("Try to install the hash file %s\n"),
4c2ad1
+			debug);
4c2ad1
+}
4c2ad1
+
4c2ad1
 /* See build-id.h.  */
4c2ad1
 
4c2ad1
 std::string
4c2ad1
-find_separate_debug_file_by_buildid (struct objfile *objfile)
4c2ad1
+find_separate_debug_file_by_buildid (struct objfile *objfile,
4c2ad1
+			gdb::unique_xmalloc_ptr<char> *build_id_filename_return)
4c2ad1
 {
4c2ad1
   const struct bfd_build_id *build_id;
4c2ad1
 
4c2ad1
-  build_id = build_id_bfd_get (objfile->obfd);
4c2ad1
+  if (build_id_filename_return)
4c2ad1
+    *build_id_filename_return = NULL;
4c2ad1
+
4c2ad1
+  build_id = build_id_bfd_shdr_get (objfile->obfd);
4c2ad1
   if (build_id != NULL)
4c2ad1
     {
4c2ad1
       if (separate_debug_file_debug)
4c2ad1
 	printf_unfiltered (_("\nLooking for separate debug info (build-id) for "
4c2ad1
 			     "%s\n"), objfile_name (objfile));
4c2ad1
 
4c2ad1
+      char *build_id_filename_cstr = NULL;
4c2ad1
       gdb_bfd_ref_ptr abfd (build_id_to_debug_bfd (build_id->size,
4c2ad1
-						   build_id->data));
4c2ad1
+						    build_id->data,
4c2ad1
+	      (!build_id_filename_return ? NULL : &build_id_filename_cstr), 1));
4c2ad1
+      if (build_id_filename_return)
4c2ad1
+	{
4c2ad1
+	  if (!build_id_filename_cstr)
4c2ad1
+	    gdb_assert (!*build_id_filename_return);
4c2ad1
+	  else
4c2ad1
+	    {
4c2ad1
+	      *build_id_filename_return = gdb::unique_xmalloc_ptr<char> (build_id_filename_cstr);
4c2ad1
+	      build_id_filename_cstr = NULL;
4c2ad1
+	    }
4c2ad1
+	}
4c2ad1
+
4c2ad1
       /* Prevent looping on a stripped .debug file.  */
4c2ad1
       if (abfd != NULL
4c2ad1
 	  && filename_cmp (bfd_get_filename (abfd.get ()),
4c2ad1
@@ -151,3 +821,21 @@ find_separate_debug_file_by_buildid (struct objfile *objfile)
4c2ad1
 
4c2ad1
   return std::string ();
4c2ad1
 }
4c2ad1
+
4c2ad1
+extern void _initialize_build_id (void);
4c2ad1
+
4c2ad1
+void
4c2ad1
+_initialize_build_id (void)
4c2ad1
+{
4c2ad1
+  add_setshow_zinteger_cmd ("build-id-verbose", no_class, &build_id_verbose,
4c2ad1
+			    _("\
4c2ad1
+Set debugging level of the build-id locator."), _("\
4c2ad1
+Show debugging level of the build-id locator."), _("\
4c2ad1
+Level 1 (default) enables printing the missing debug filenames,\n\
4c2ad1
+level 2 also prints the parsing of binaries to find the identificators."),
4c2ad1
+			    NULL,
4c2ad1
+			    show_build_id_verbose,
4c2ad1
+			    &setlist, &showlist);
4c2ad1
+
4c2ad1
+  gdb::observers::executable_changed.attach (debug_print_executable_changed);
4c2ad1
+}
4c2ad1
diff --git a/gdb/build-id.h b/gdb/build-id.h
4c2ad1
--- a/gdb/build-id.h
4c2ad1
+++ b/gdb/build-id.h
4c2ad1
@@ -22,9 +22,10 @@
4c2ad1
 
4c2ad1
 #include "gdb_bfd.h"
4c2ad1
 
4c2ad1
-/* Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
4c2ad1
+/* Separate debuginfo files have corrupted PHDR but SHDR is correct there.
4c2ad1
+   Locate NT_GNU_BUILD_ID from ABFD and return its content.  */
4c2ad1
 
4c2ad1
-extern const struct bfd_build_id *build_id_bfd_get (bfd *abfd);
4c2ad1
+extern const struct bfd_build_id *build_id_bfd_shdr_get (bfd *abfd);
4c2ad1
 
4c2ad1
 /* Return true if ABFD has NT_GNU_BUILD_ID matching the CHECK value.
4c2ad1
    Otherwise, issue a warning and return false.  */
4c2ad1
@@ -38,13 +39,18 @@ extern int build_id_verify (bfd *abfd,
4c2ad1
    the caller.  */
4c2ad1
 
4c2ad1
 extern gdb_bfd_ref_ptr build_id_to_debug_bfd (size_t build_id_len,
4c2ad1
-					      const bfd_byte *build_id);
4c2ad1
+					      const bfd_byte *build_id,
4c2ad1
+					      char **link_return,
4c2ad1
+					      int add_debug_suffix);
4c2ad1
+
4c2ad1
+extern char *build_id_to_filename (const struct bfd_build_id *build_id,
4c2ad1
+				   char **link_return);
4c2ad1
 
4c2ad1
 /* Find the separate debug file for OBJFILE, by using the build-id
4c2ad1
    associated with OBJFILE's BFD.  If successful, returns the file name for the
4c2ad1
    separate debug file, otherwise, return an empty string.  */
4c2ad1
 
4c2ad1
-extern std::string find_separate_debug_file_by_buildid
4c2ad1
-  (struct objfile *objfile);
4c2ad1
+extern std::string find_separate_debug_file_by_buildid (struct objfile *objfile,
4c2ad1
+		       gdb::unique_xmalloc_ptr<char> *build_id_filename_return);
4c2ad1
 
4c2ad1
 #endif /* BUILD_ID_H */
4c2ad1
diff --git a/gdb/coffread.c b/gdb/coffread.c
4c2ad1
--- a/gdb/coffread.c
4c2ad1
+++ b/gdb/coffread.c
4c2ad1
@@ -733,7 +733,8 @@ coff_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
4c2ad1
   /* Try to add separate debug file if no symbols table found.   */
4c2ad1
   if (!objfile_has_partial_symbols (objfile))
4c2ad1
     {
4c2ad1
-      std::string debugfile = find_separate_debug_file_by_buildid (objfile);
4c2ad1
+      std::string debugfile = find_separate_debug_file_by_buildid (objfile,
4c2ad1
+								   NULL);
4c2ad1
 
4c2ad1
       if (debugfile.empty ())
4c2ad1
 	debugfile = find_separate_debug_file_by_debuglink (objfile);
4c2ad1
diff --git a/gdb/corelow.c b/gdb/corelow.c
4c2ad1
--- a/gdb/corelow.c
4c2ad1
+++ b/gdb/corelow.c
4c2ad1
@@ -45,6 +45,10 @@
4c2ad1
 #include "gdb_bfd.h"
4c2ad1
 #include "completer.h"
4c2ad1
 #include "filestuff.h"
4c2ad1
+#include "auxv.h"
4c2ad1
+#include "elf/common.h"
4c2ad1
+#include "gdbcmd.h"
4c2ad1
+#include "build-id.h"
4c2ad1
 
4c2ad1
 #ifndef O_LARGEFILE
4c2ad1
 #define O_LARGEFILE 0
4c2ad1
@@ -321,6 +325,54 @@ add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg)
4c2ad1
     inferior_ptid = ptid;			/* Yes, make it current.  */
4c2ad1
 }
4c2ad1
 
4c2ad1
+static int build_id_core_loads = 1;
4c2ad1
+
4c2ad1
+static void
4c2ad1
+build_id_locate_exec (int from_tty)
4c2ad1
+{
4c2ad1
+  CORE_ADDR at_entry;
4c2ad1
+  struct bfd_build_id *build_id;
4c2ad1
+  char *execfilename, *debug_filename;
4c2ad1
+  char *build_id_filename;
4c2ad1
+  struct cleanup *back_to;
4c2ad1
+
4c2ad1
+  if (exec_bfd != NULL || symfile_objfile != NULL)
4c2ad1
+    return;
4c2ad1
+
4c2ad1
+  if (target_auxv_search (current_top_target (), AT_ENTRY, &at_entry) <= 0)
4c2ad1
+    return;
4c2ad1
+
4c2ad1
+  build_id = build_id_addr_get (at_entry);
4c2ad1
+  if (build_id == NULL)
4c2ad1
+    return;
4c2ad1
+  back_to = make_cleanup (xfree, build_id);
4c2ad1
+
4c2ad1
+  /* SYMFILE_OBJFILE should refer to the main executable (not only to its
4c2ad1
+     separate debug info file).  gcc44+ keeps .eh_frame only in the main
4c2ad1
+     executable without its duplicate .debug_frame in the separate debug info
4c2ad1
+     file - such .eh_frame would not be found if SYMFILE_OBJFILE would refer
4c2ad1
+     directly to the separate debug info file.  */
4c2ad1
+
4c2ad1
+  execfilename = build_id_to_filename (build_id, &build_id_filename);
4c2ad1
+  make_cleanup (xfree, build_id_filename);
4c2ad1
+
4c2ad1
+  if (execfilename != NULL)
4c2ad1
+    {
4c2ad1
+      make_cleanup (xfree, execfilename);
4c2ad1
+      exec_file_attach (execfilename, from_tty);
4c2ad1
+      symbol_file_add_main (execfilename,
4c2ad1
+			    symfile_add_flag (!from_tty ? 0 : SYMFILE_VERBOSE));
4c2ad1
+      if (symfile_objfile != NULL)
4c2ad1
+        symfile_objfile->flags |= OBJF_BUILD_ID_CORE_LOADED;
4c2ad1
+    }
4c2ad1
+  else
4c2ad1
+    debug_print_missing (_("the main executable file"), build_id_filename);
4c2ad1
+
4c2ad1
+  do_cleanups (back_to);
4c2ad1
+
4c2ad1
+  /* No automatic SOLIB_ADD as the libraries would get read twice.  */
4c2ad1
+}
4c2ad1
+
4c2ad1
 /* Issue a message saying we have no core to debug, if FROM_TTY.  */
4c2ad1
 
4c2ad1
 static void
4c2ad1
@@ -464,6 +516,14 @@ core_target_open (const char *arg, int from_tty)
4c2ad1
 	switch_to_thread (thread);
4c2ad1
     }
4c2ad1
 
4c2ad1
+  /* Find the build_id identifiers.  If it gets executed after
4c2ad1
+     POST_CREATE_INFERIOR we would clash with asking to discard the already
4c2ad1
+     loaded VDSO symbols.  If it gets executed before bfd_map_over_sections
4c2ad1
+     INFERIOR_PTID is still not set and libthread_db initialization crashes on
4c2ad1
+     PID == 0 in ps_pglobal_lookup.  */
4c2ad1
+  if (build_id_core_loads != 0)
4c2ad1
+    build_id_locate_exec (from_tty);
4c2ad1
+
4c2ad1
   post_create_inferior (target, from_tty);
4c2ad1
 
4c2ad1
   /* Now go through the target stack looking for threads since there
4c2ad1
@@ -1072,4 +1132,11 @@ void
4c2ad1
 _initialize_corelow (void)
4c2ad1
 {
4c2ad1
   add_target (core_target_info, core_target_open, filename_completer);
4c2ad1
+
4c2ad1
+  add_setshow_boolean_cmd ("build-id-core-loads", class_files,
4c2ad1
+			   &build_id_core_loads, _("\
4c2ad1
+Set whether CORE-FILE loads the build-id associated files automatically."), _("\
4c2ad1
+Show whether CORE-FILE loads the build-id associated files automatically."),
4c2ad1
+			   NULL, NULL, NULL,
4c2ad1
+			   &setlist, &showlist);
4c2ad1
 }
4c2ad1
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
4c2ad1
--- a/gdb/doc/gdb.texinfo
4c2ad1
+++ b/gdb/doc/gdb.texinfo
4c2ad1
@@ -19570,6 +19570,27 @@ information files.
4c2ad1
 
4c2ad1
 @end table
4c2ad1
 
4c2ad1
+You can also adjust the current verbosity of the @dfn{build id} locating.
4c2ad1
+
4c2ad1
+@table @code
4c2ad1
+
4c2ad1
+@kindex set build-id-verbose
4c2ad1
+@item set build-id-verbose 0
4c2ad1
+No additional messages are printed.
4c2ad1
+
4c2ad1
+@item set build-id-verbose 1
4c2ad1
+Missing separate debug filenames are printed.
4c2ad1
+
4c2ad1
+@item set build-id-verbose 2
4c2ad1
+Missing separate debug filenames are printed and also all the parsing of the
4c2ad1
+binaries to find their @dfn{build id} content is printed.
4c2ad1
+
4c2ad1
+@kindex show build-id-verbose
4c2ad1
+@item show build-id-verbose
4c2ad1
+Show the current verbosity value for the @dfn{build id} content locating.
4c2ad1
+
4c2ad1
+@end table
4c2ad1
+
4c2ad1
 @cindex @code{.gnu_debuglink} sections
4c2ad1
 @cindex debug link sections
4c2ad1
 A debug link is a special section of the executable file named
4c2ad1
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
4c2ad1
--- a/gdb/dwarf2read.c
4c2ad1
+++ b/gdb/dwarf2read.c
4c2ad1
@@ -2683,7 +2683,7 @@ dwarf2_get_dwz_file (struct dwarf2_per_objfile *dwarf2_per_objfile)
4c2ad1
     }
4c2ad1
 
4c2ad1
   if (dwz_bfd == NULL)
4c2ad1
-    dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid);
4c2ad1
+    dwz_bfd = build_id_to_debug_bfd (buildid_len, buildid, NULL, 1);
4c2ad1
 
4c2ad1
   if (dwz_bfd == NULL)
4c2ad1
     error (_("could not find '.gnu_debugaltlink' file for %s"),
4c2ad1
diff --git a/gdb/elfread.c b/gdb/elfread.c
4c2ad1
--- a/gdb/elfread.c
4c2ad1
+++ b/gdb/elfread.c
4c2ad1
@@ -1290,7 +1290,9 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
4c2ad1
 	   && objfile->separate_debug_objfile == NULL
4c2ad1
 	   && objfile->separate_debug_objfile_backlink == NULL)
4c2ad1
     {
4c2ad1
-      std::string debugfile = find_separate_debug_file_by_buildid (objfile);
4c2ad1
+      gdb::unique_xmalloc_ptr<char> build_id_filename;
4c2ad1
+      std::string debugfile
4c2ad1
+	= find_separate_debug_file_by_buildid (objfile, &build_id_filename);
4c2ad1
 
4c2ad1
       if (debugfile.empty ())
4c2ad1
 	debugfile = find_separate_debug_file_by_debuglink (objfile);
4c2ad1
@@ -1302,6 +1304,10 @@ elf_symfile_read (struct objfile *objfile, symfile_add_flags symfile_flags)
4c2ad1
 	  symbol_file_add_separate (abfd.get (), debugfile.c_str (),
4c2ad1
 				    symfile_flags, objfile);
4c2ad1
 	}
4c2ad1
+      /* Check if any separate debug info has been extracted out.  */
4c2ad1
+      else if (bfd_get_section_by_name (objfile->obfd, ".gnu_debuglink")
4c2ad1
+	       != NULL)
4c2ad1
+	debug_print_missing (objfile_name (objfile), build_id_filename.get ());
4c2ad1
     }
4c2ad1
 }
4c2ad1
 
4c2ad1
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
4c2ad1
--- a/gdb/objfiles.h
4c2ad1
+++ b/gdb/objfiles.h
4c2ad1
@@ -470,6 +470,10 @@ struct objfile
4c2ad1
   htab_t static_links {};
4c2ad1
 };
4c2ad1
 
4c2ad1
+/* This file was loaded according to the BUILD_ID_CORE_LOADS rules.  */
4c2ad1
+
4c2ad1
+#define OBJF_BUILD_ID_CORE_LOADED static_cast<enum objfile_flag>(1 << 12)
4c2ad1
+
4c2ad1
 /* Declarations for functions defined in objfiles.c */
4c2ad1
 
4c2ad1
 extern struct gdbarch *get_objfile_arch (const struct objfile *);
4c2ad1
diff --git a/gdb/python/py-objfile.c b/gdb/python/py-objfile.c
4c2ad1
--- a/gdb/python/py-objfile.c
4c2ad1
+++ b/gdb/python/py-objfile.c
4c2ad1
@@ -137,7 +137,7 @@ objfpy_get_build_id (PyObject *self, void *closure)
4c2ad1
 
4c2ad1
   TRY
4c2ad1
     {
4c2ad1
-      build_id = build_id_bfd_get (objfile->obfd);
4c2ad1
+      build_id = build_id_bfd_shdr_get (objfile->obfd);
4c2ad1
     }
4c2ad1
   CATCH (except, RETURN_MASK_ALL)
4c2ad1
     {
4c2ad1
@@ -544,7 +544,7 @@ objfpy_lookup_objfile_by_build_id (const char *build_id)
4c2ad1
       /* Don't return separate debug files.  */
4c2ad1
       if (objfile->separate_debug_objfile_backlink != NULL)
4c2ad1
 	continue;
4c2ad1
-      obfd_build_id = build_id_bfd_get (objfile->obfd);
4c2ad1
+      obfd_build_id = build_id_bfd_shdr_get (objfile->obfd);
4c2ad1
       if (obfd_build_id == NULL)
4c2ad1
 	continue;
4c2ad1
       if (objfpy_build_id_matches (obfd_build_id, build_id))
4c2ad1
diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c
4c2ad1
--- a/gdb/solib-svr4.c
4c2ad1
+++ b/gdb/solib-svr4.c
4c2ad1
@@ -45,6 +45,7 @@
4c2ad1
 #include "auxv.h"
4c2ad1
 #include "gdb_bfd.h"
4c2ad1
 #include "probe.h"
4c2ad1
+#include "build-id.h"
4c2ad1
 
4c2ad1
 static struct link_map_offsets *svr4_fetch_link_map_offsets (void);
4c2ad1
 static int svr4_have_link_map_offsets (void);
4c2ad1
@@ -1356,9 +1357,51 @@ svr4_read_so_list (CORE_ADDR lm, CORE_ADDR prev_lm,
4c2ad1
 	  continue;
4c2ad1
 	}
4c2ad1
 
4c2ad1
-      strncpy (newobj->so_name, buffer.get (), SO_NAME_MAX_PATH_SIZE - 1);
4c2ad1
-      newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
4c2ad1
-      strcpy (newobj->so_original_name, newobj->so_name);
4c2ad1
+      {
4c2ad1
+	struct bfd_build_id *build_id;
4c2ad1
+
4c2ad1
+	strncpy (newobj->so_original_name, buffer.get (), SO_NAME_MAX_PATH_SIZE - 1);
4c2ad1
+	newobj->so_original_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
4c2ad1
+	/* May get overwritten below.  */
4c2ad1
+	strcpy (newobj->so_name, newobj->so_original_name);
4c2ad1
+
4c2ad1
+	build_id = build_id_addr_get (((lm_info_svr4 *) newobj->lm_info)->l_ld);
4c2ad1
+	if (build_id != NULL)
4c2ad1
+	  {
4c2ad1
+	    char *name, *build_id_filename;
4c2ad1
+
4c2ad1
+	    /* Missing the build-id matching separate debug info file
4c2ad1
+	       would be handled while SO_NAME gets loaded.  */
4c2ad1
+	    name = build_id_to_filename (build_id, &build_id_filename);
4c2ad1
+	    if (name != NULL)
4c2ad1
+	      {
4c2ad1
+		strncpy (newobj->so_name, name, SO_NAME_MAX_PATH_SIZE - 1);
4c2ad1
+		newobj->so_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
4c2ad1
+		xfree (name);
4c2ad1
+	      }
4c2ad1
+	    else
4c2ad1
+	      {
4c2ad1
+		debug_print_missing (newobj->so_name, build_id_filename);
4c2ad1
+
4c2ad1
+		/* In the case the main executable was found according to
4c2ad1
+		   its build-id (from a core file) prevent loading
4c2ad1
+		   a different build of a library with accidentally the
4c2ad1
+		   same SO_NAME.
4c2ad1
+
4c2ad1
+		   It suppresses bogus backtraces (and prints "??" there
4c2ad1
+		   instead) if the on-disk files no longer match the
4c2ad1
+		   running program version.  */
4c2ad1
+
4c2ad1
+		if (symfile_objfile != NULL
4c2ad1
+		    && (symfile_objfile->flags
4c2ad1
+			& OBJF_BUILD_ID_CORE_LOADED) != 0)
4c2ad1
+		  newobj->so_name[0] = 0;
4c2ad1
+	      }
4c2ad1
+
4c2ad1
+	    xfree (build_id_filename);
4c2ad1
+	    xfree (build_id);
4c2ad1
+	  }
4c2ad1
+      }
4c2ad1
 
4c2ad1
       /* If this entry has no name, or its name matches the name
4c2ad1
 	 for the main executable, don't include it in the list.  */
4c2ad1
diff --git a/gdb/symfile.h b/gdb/symfile.h
4c2ad1
--- a/gdb/symfile.h
4c2ad1
+++ b/gdb/symfile.h
4c2ad1
@@ -537,6 +537,10 @@ void expand_symtabs_matching
4c2ad1
 void map_symbol_filenames (symbol_filename_ftype *fun, void *data,
4c2ad1
 			   int need_fullname);
4c2ad1
 
4c2ad1
+/* build-id support.  */
4c2ad1
+extern struct bfd_build_id *build_id_addr_get (CORE_ADDR addr);
4c2ad1
+extern void debug_print_missing (const char *binary, const char *debug);
4c2ad1
+
4c2ad1
 /* From dwarf2read.c */
4c2ad1
 
4c2ad1
 /* Names for a dwarf2 debugging section.  The field NORMAL is the normal
4c2ad1
diff --git a/gdb/testsuite/gdb.base/corefile.exp b/gdb/testsuite/gdb.base/corefile.exp
4c2ad1
--- a/gdb/testsuite/gdb.base/corefile.exp
4c2ad1
+++ b/gdb/testsuite/gdb.base/corefile.exp
4c2ad1
@@ -311,3 +311,33 @@ gdb_test_multiple "core-file $corefile" $test {
4c2ad1
 	pass $test
4c2ad1
     }
4c2ad1
 }
4c2ad1
+
4c2ad1
+
4c2ad1
+# Test auto-loading of binary files through build-id from the core file.
4c2ad1
+set buildid [build_id_debug_filename_get $binfile]
4c2ad1
+set wholetest "binfile found by build-id"
4c2ad1
+if {$buildid == ""} {
4c2ad1
+    untested "$wholetest (binary has no build-id)"
4c2ad1
+} else {
4c2ad1
+    gdb_exit
4c2ad1
+    gdb_start
4c2ad1
+
4c2ad1
+    regsub {\.debug$} $buildid {} buildid
4c2ad1
+    set debugdir [standard_output_file ${testfile}-debugdir]
4c2ad1
+    file delete -force -- $debugdir
4c2ad1
+    file mkdir $debugdir/[file dirname $buildid]
4c2ad1
+    file copy $binfile $debugdir/$buildid
4c2ad1
+
4c2ad1
+    set test "show debug-file-directory"
4c2ad1
+    gdb_test_multiple $test $test {
4c2ad1
+	-re "The directory where separate debug symbols are searched for is \"(.*)\"\\.\r\n$gdb_prompt $" {
4c2ad1
+	    set debugdir_orig $expect_out(1,string)
4c2ad1
+	    pass $test
4c2ad1
+	}
4c2ad1
+    }
4c2ad1
+    gdb_test_no_output "set debug-file-directory $debugdir:$debugdir_orig" "set debug-file-directory"
4c2ad1
+    gdb_test "show build-id-core-loads" {Whether CORE-FILE loads the build-id associated files automatically is on\.}
4c2ad1
+    gdb_test "core-file $corefile" "\r\nProgram terminated with .*" "core-file without executable"
4c2ad1
+    gdb_test "info files" "Local exec file:\r\n\[ \t\]*`[string_to_regexp $debugdir/$buildid]', file type .*"
4c2ad1
+    pass $wholetest
4c2ad1
+}
4c2ad1
diff --git a/gdb/testsuite/gdb.base/new-ui-pending-input.exp b/gdb/testsuite/gdb.base/new-ui-pending-input.exp
4c2ad1
--- a/gdb/testsuite/gdb.base/new-ui-pending-input.exp
4c2ad1
+++ b/gdb/testsuite/gdb.base/new-ui-pending-input.exp
4c2ad1
@@ -62,6 +62,7 @@ proc test_command_line_new_ui_pending_input {} {
4c2ad1
     set options ""
4c2ad1
     append options " -iex \"set height 0\""
4c2ad1
     append options " -iex \"set width 0\""
4c2ad1
+    append options " -iex \"set build-id-verbose 0\""
4c2ad1
     append options " -iex \"new-ui console $extra_tty_name\""
4c2ad1
     append options " -ex \"b $bpline\""
4c2ad1
     append options " -ex \"run\""
4c2ad1
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
4c2ad1
--- a/gdb/testsuite/lib/gdb.exp
4c2ad1
+++ b/gdb/testsuite/lib/gdb.exp
4c2ad1
@@ -1695,6 +1695,16 @@ proc default_gdb_start { } {
4c2ad1
 	    warning "Couldn't set the width to 0."
4c2ad1
 	}
4c2ad1
     }
4c2ad1
+    # Turn off the missing warnings as the testsuite does not expect it.
4c2ad1
+    send_gdb "set build-id-verbose 0\n"
4c2ad1
+    gdb_expect 10 {
4c2ad1
+	-re "$gdb_prompt $" {
4c2ad1
+	    verbose "Disabled the missing debug infos warnings." 2
4c2ad1
+	}
4c2ad1
+	timeout {
4c2ad1
+	    warning "Could not disable the missing debug infos warnings.."
4c2ad1
+	}
4c2ad1
+    }
4c2ad1
     return 0
4c2ad1
 }
4c2ad1
 
4c2ad1
diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp
4c2ad1
--- a/gdb/testsuite/lib/mi-support.exp
4c2ad1
+++ b/gdb/testsuite/lib/mi-support.exp
4c2ad1
@@ -309,6 +309,16 @@ proc default_mi_gdb_start { args } {
4c2ad1
 	    warning "Couldn't set the width to 0."
4c2ad1
 	}
4c2ad1
     }
4c2ad1
+    # Turn off the missing warnings as the testsuite does not expect it.
4c2ad1
+    send_gdb "190-gdb-set build-id-verbose 0\n"
4c2ad1
+    gdb_expect 10 {
4c2ad1
+	-re ".*190-gdb-set build-id-verbose 0\r\n190\\\^done\r\n$mi_gdb_prompt$" {
4c2ad1
+	    verbose "Disabled the missing debug infos warnings." 2
4c2ad1
+	}
4c2ad1
+	timeout {
4c2ad1
+	    warning "Could not disable the missing debug infos warnings.."
4c2ad1
+	}
4c2ad1
+    }
4c2ad1
 
4c2ad1
     if { $separate_inferior_pty } {
4c2ad1
 	mi_create_inferior_pty