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

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