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

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