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

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