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

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