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

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