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

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