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