Blame SOURCES/gdb-6.6-buildid-locate-solib-missing-ids.patch

7a6771
gdb returns an incorrect back trace when applying a debuginfo
7a6771
https://bugzilla.redhat.com/show_bug.cgi?id=1339862
7a6771
7a6771
Index: gdb-7.9.90.20150709/gdb/solib-svr4.c
7a6771
===================================================================
7a6771
--- gdb-7.9.90.20150709.orig/gdb/solib-svr4.c	2015-07-09 18:18:54.526417766 +0200
7a6771
+++ gdb-7.9.90.20150709/gdb/solib-svr4.c	2015-07-09 18:19:33.074746586 +0200
7a6771
@@ -1381,14 +1381,27 @@ svr4_read_so_list (CORE_ADDR lm, CORE_AD
7a6771
 	}
7a6771
 
7a6771
       {
7a6771
-	struct bfd_build_id *build_id;
7a6771
+	struct bfd_build_id *build_id = NULL;
7a6771
 
7a6771
 	strncpy (newobj->so_original_name, buffer, SO_NAME_MAX_PATH_SIZE - 1);
7a6771
 	newobj->so_original_name[SO_NAME_MAX_PATH_SIZE - 1] = '\0';
7a6771
 	/* May get overwritten below.  */
7a6771
 	strcpy (newobj->so_name, newobj->so_original_name);
7a6771
 
7a6771
-	build_id = build_id_addr_get (newobj->lm_info->l_ld);
7a6771
+	/* In the case the main executable was found according to its build-id
7a6771
+	   (from a core file) prevent loading a different build of a library
7a6771
+	   with accidentally the same SO_NAME.
7a6771
+
7a6771
+	   It suppresses bogus backtraces (and prints "??" there instead) if
7a6771
+	   the on-disk files no longer match the running program version.
7a6771
+
7a6771
+	   If the main executable was not loaded according to its build-id do
7a6771
+	   not do any build-id checking of the libraries.  There may be missing
7a6771
+	   build-ids dumped in the core file and we would map all the libraries
7a6771
+	   to the only existing file loaded that time - the executable.  */
7a6771
+	if (symfile_objfile != NULL
7a6771
+	    && (symfile_objfile->flags & OBJF_BUILD_ID_CORE_LOADED) != 0)
7a6771
+	  build_id = build_id_addr_get (newobj->lm_info->l_ld);
7a6771
 	if (build_id != NULL)
7a6771
 	  {
7a6771
 	    char *name, *build_id_filename;
7a6771
@@ -1403,23 +1416,7 @@ svr4_read_so_list (CORE_ADDR lm, CORE_AD
7a6771
 		xfree (name);
7a6771
 	      }
7a6771
 	    else
7a6771
-	      {
7a6771
-		debug_print_missing (newobj->so_name, build_id_filename);
7a6771
-
7a6771
-		/* In the case the main executable was found according to
7a6771
-		   its build-id (from a core file) prevent loading
7a6771
-		   a different build of a library with accidentally the
7a6771
-		   same SO_NAME.
7a6771
-
7a6771
-		   It suppresses bogus backtraces (and prints "??" there
7a6771
-		   instead) if the on-disk files no longer match the
7a6771
-		   running program version.  */
7a6771
-
7a6771
-		if (symfile_objfile != NULL
7a6771
-		    && (symfile_objfile->flags
7a6771
-			& OBJF_BUILD_ID_CORE_LOADED) != 0)
7a6771
-		  newobj->so_name[0] = 0;
7a6771
-	      }
7a6771
+	      debug_print_missing (newobj->so_name, build_id_filename);
7a6771
 
7a6771
 	    xfree (build_id_filename);
7a6771
 	    xfree (build_id);
7a6771
--- /dev/null	2016-07-02 20:29:01.679404943 +0200
7a6771
+++ gdb-7.11.50.20160721/gdb/testsuite/gdb.base/gcore-buildid-exec-but-not-solib.exp	2016-07-31 23:04:49.062753722 +0200
7a6771
@@ -0,0 +1,105 @@
7a6771
+# Copyright 2016 Free Software Foundation, Inc.
7a6771
+
7a6771
+# This program is free software; you can redistribute it and/or modify
7a6771
+# it under the terms of the GNU General Public License as published by
7a6771
+# the Free Software Foundation; either version 3 of the License, or
7a6771
+# (at your option) any later version.
7a6771
+#
7a6771
+# This program is distributed in the hope that it will be useful,
7a6771
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+# GNU General Public License for more details.
7a6771
+#
7a6771
+# You should have received a copy of the GNU General Public License
7a6771
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
7a6771
+
7a6771
+if {[skip_shlib_tests]} {
7a6771
+    return 0
7a6771
+}
7a6771
+
7a6771
+set testfile "gcore-buildid-exec-but-not-solib"
7a6771
+set srcmainfile ${testfile}-main.c
7a6771
+set srclibfile ${testfile}-lib.c
7a6771
+set libfile [standard_output_file ${testfile}-lib.so]
7a6771
+set objfile [standard_output_file ${testfile}-main.o]
7a6771
+set executable ${testfile}-main
7a6771
+set binfile [standard_output_file ${executable}]
7a6771
+set gcorefile [standard_output_file ${executable}.gcore]
7a6771
+set outdir [file dirname $binfile]
7a6771
+
7a6771
+if { [gdb_compile_shlib ${srcdir}/${subdir}/${srclibfile} ${libfile} "debug additional_flags=-Wl,--build-id"] != ""
7a6771
+     || [gdb_compile ${srcdir}/${subdir}/${srcmainfile} ${objfile} object {debug}] != "" } {
7a6771
+     unsupported "-Wl,--build-id compilation failed"
7a6771
+     return -1
7a6771
+}
7a6771
+set opts [list debug shlib=${libfile} "additional_flags=-Wl,--build-id"]
7a6771
+if { [gdb_compile ${objfile} ${binfile} executable $opts] != "" } {
7a6771
+     unsupported "-Wl,--build-id compilation failed"
7a6771
+     return -1
7a6771
+}
7a6771
+
7a6771
+clean_restart $executable
7a6771
+gdb_load_shlib $libfile
7a6771
+
7a6771
+# Does this gdb support gcore?
7a6771
+set test "help gcore"
7a6771
+gdb_test_multiple $test $test {
7a6771
+    -re "Undefined command: .gcore.*\r\n$gdb_prompt $" {
7a6771
+	# gcore command not supported -- nothing to test here.
7a6771
+	unsupported "gdb does not support gcore on this target"
7a6771
+	return -1;
7a6771
+    }
7a6771
+    -re "Save a core file .*\r\n$gdb_prompt $" {
7a6771
+	pass $test
7a6771
+    }
7a6771
+}
7a6771
+
7a6771
+if { ![runto lib] } then {
7a6771
+    return -1
7a6771
+}
7a6771
+
7a6771
+set escapedfilename [string_to_regexp ${gcorefile}]
7a6771
+
7a6771
+set test "save a corefile"
7a6771
+gdb_test_multiple "gcore ${gcorefile}" $test {
7a6771
+    -re "Saved corefile ${escapedfilename}\r\n$gdb_prompt $" {
7a6771
+	pass $test
7a6771
+    }
7a6771
+    -re "Can't create a corefile\r\n$gdb_prompt $" {
7a6771
+	unsupported $test
7a6771
+	return -1
7a6771
+    }
7a6771
+}
7a6771
+
7a6771
+# Now restart gdb and load the corefile.
7a6771
+
7a6771
+clean_restart $executable
7a6771
+gdb_load_shlib $libfile
7a6771
+
7a6771
+set buildid [build_id_debug_filename_get $libfile]
7a6771
+
7a6771
+regsub {\.debug$} $buildid {} buildid
7a6771
+
7a6771
+set debugdir [standard_output_file ${testfile}-debugdir]
7a6771
+file delete -force -- $debugdir
7a6771
+
7a6771
+file mkdir $debugdir/[file dirname $libfile]
7a6771
+file copy $libfile $debugdir/${libfile}
7a6771
+
7a6771
+file mkdir $debugdir/[file dirname $buildid]
7a6771
+file copy $libfile $debugdir/${buildid}
7a6771
+
7a6771
+remote_exec build "ln -s /lib       ${debugdir}/"
7a6771
+remote_exec build "ln -s /lib64     ${debugdir}/"
7a6771
+# /usr is not needed, all the libs are in /lib64: libm.so.6 libc.so.6 ld-linux-x86-64.so.2
7a6771
+
7a6771
+gdb_test "set solib-absolute-prefix $debugdir"
7a6771
+
7a6771
+gdb_test_no_output "set debug-file-directory $debugdir" "set debug-file-directory"
7a6771
+
7a6771
+gdb_test "core ${gcorefile}" "Core was generated by .*" "re-load generated corefile"
7a6771
+
7a6771
+gdb_test "frame" "#0 \[^\r\n\]* lib .*" "library got loaded"
7a6771
+
7a6771
+gdb_test "bt"
7a6771
+gdb_test "info shared"
7a6771
--- /dev/null	2016-07-02 20:29:01.679404943 +0200
7a6771
+++ gdb-7.11.50.20160721/gdb/testsuite/gdb.base/gcore-buildid-exec-but-not-solib-main.c	2016-07-28 21:06:40.977786922 +0200
7a6771
@@ -0,0 +1,25 @@
7a6771
+/* Copyright 2010 Free Software Foundation, Inc.
7a6771
+
7a6771
+   This file is part of GDB.
7a6771
+
7a6771
+   This program is free software; you can redistribute it and/or modify
7a6771
+   it under the terms of the GNU General Public License as published by
7a6771
+   the Free Software Foundation; either version 3 of the License, or
7a6771
+   (at your option) any later version.
7a6771
+
7a6771
+   This program is distributed in the hope that it will be useful,
7a6771
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+   GNU General Public License for more details.
7a6771
+
7a6771
+   You should have received a copy of the GNU General Public License
7a6771
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
7a6771
+
7a6771
+extern void lib (void);
7a6771
+
7a6771
+int
7a6771
+main (void)
7a6771
+{
7a6771
+  lib ();
7a6771
+  return 0;
7a6771
+}
7a6771
--- /dev/null	2016-07-02 20:29:01.679404943 +0200
7a6771
+++ gdb-7.11.50.20160721/gdb/testsuite/gdb.base/gcore-buildid-exec-but-not-solib-lib.c	2016-07-28 21:06:40.977786922 +0200
7a6771
@@ -0,0 +1,21 @@
7a6771
+/* Copyright 2010 Free Software Foundation, Inc.
7a6771
+
7a6771
+   This file is part of GDB.
7a6771
+
7a6771
+   This program is free software; you can redistribute it and/or modify
7a6771
+   it under the terms of the GNU General Public License as published by
7a6771
+   the Free Software Foundation; either version 3 of the License, or
7a6771
+   (at your option) any later version.
7a6771
+
7a6771
+   This program is distributed in the hope that it will be useful,
7a6771
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
7a6771
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
7a6771
+   GNU General Public License for more details.
7a6771
+
7a6771
+   You should have received a copy of the GNU General Public License
7a6771
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
7a6771
+
7a6771
+void
7a6771
+lib (void)
7a6771
+{
7a6771
+}