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

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