Blame SOURCES/gdb-6.5-bz218379-solib-trampoline-lookup-lock-fix.patch

5ad05e
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
5ad05e
From: Fedora GDB patches <invalid@email.com>
5ad05e
Date: Fri, 27 Oct 2017 21:07:50 +0200
5ad05e
Subject: gdb-6.5-bz218379-solib-trampoline-lookup-lock-fix.patch
5ad05e
5ad05e
;; Fix lockup on trampoline vs. its function lookup; unreproducible (BZ 218379).
5ad05e
;;=fedora
5ad05e
5ad05e
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=218379
5ad05e
5ad05e
diff --git a/gdb/symtab.c b/gdb/symtab.c
5ad05e
--- a/gdb/symtab.c
5ad05e
+++ b/gdb/symtab.c
5ad05e
@@ -3166,6 +3166,13 @@ find_pc_sect_line (CORE_ADDR pc, struct obj_section *section, int notcurrent)
5ad05e
 	     msymbol->linkage_name ()); */
5ad05e
 	  ;
5ad05e
 	/* fall through */
5ad05e
+	/* `msymbol' trampoline may be located before its .text symbol
5ad05e
+	   but this text symbol may be the address we were looking for.
5ad05e
+	   Avoid `find_pc_sect_line'<->`find_pc_line' infinite loop.
5ad05e
+	   Red Hat Bug 218379.  */
5ad05e
+	else if (BMSYMBOL_VALUE_ADDRESS (mfunsym) == pc)
5ad05e
+	  warning ("In stub for %s (0x%s); interlocked, please submit the binary to http://bugzilla.redhat.com", msymbol.minsym->linkage_name (), paddress (target_gdbarch (), pc));
5ad05e
+	/* fall through */
5ad05e
 	else
5ad05e
 	  return find_pc_line (BMSYMBOL_VALUE_ADDRESS (mfunsym), 0);
5ad05e
       }