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

4416f5
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
4416f5
From: Fedora GDB patches <invalid@email.com>
4416f5
Date: Fri, 27 Oct 2017 21:07:50 +0200
4416f5
Subject: gdb-6.5-bz218379-solib-trampoline-lookup-lock-fix.patch
4416f5
4416f5
;; Fix lockup on trampoline vs. its function lookup; unreproducible (BZ 218379).
4416f5
;;=fedora
4416f5
4416f5
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=218379
4416f5
4416f5
diff --git a/gdb/symtab.c b/gdb/symtab.c
4416f5
--- a/gdb/symtab.c
4416f5
+++ b/gdb/symtab.c
4416f5
@@ -3169,6 +3169,13 @@ find_pc_sect_line (CORE_ADDR pc, struct obj_section *section, int notcurrent)
4416f5
 	     msymbol->linkage_name ()); */
4416f5
 	  ;
4416f5
 	/* fall through */
4416f5
+	/* `msymbol' trampoline may be located before its .text symbol
4416f5
+	   but this text symbol may be the address we were looking for.
4416f5
+	   Avoid `find_pc_sect_line'<->`find_pc_line' infinite loop.
4416f5
+	   Red Hat Bug 218379.  */
4416f5
+	else if (BMSYMBOL_VALUE_ADDRESS (mfunsym) == pc)
4416f5
+	  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));
4416f5
+	/* fall through */
4416f5
 	else
4416f5
 	  {
4416f5
 	    /* Detect an obvious case of infinite recursion.  If this