Blame SOURCES/gdb-6.5-bz185337-resolve-tls-without-debuginfo-v2.patch

6240d7
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
6240d7
From: Jan Kratochvil <jan.kratochvil@redhat.com>
6240d7
Date: Fri, 27 Oct 2017 21:07:50 +0200
6240d7
Subject: gdb-6.5-bz185337-resolve-tls-without-debuginfo-v2.patch
6240d7
6240d7
;; Support TLS symbols (+`errno' suggestion if no pthread is found) (BZ 185337).
6240d7
;;=push+jan: It should be replaced by Infinity project.
6240d7
6240d7
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=185337
6240d7
6240d7
2008-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
6240d7
6240d7
	Port to GDB-6.8pre.
6240d7
6240d7
currently for trivial nonthreaded helloworld with no debug info up to -ggdb2 you
6240d7
will get:
6240d7
        (gdb) p errno
6240d7
        [some error]
6240d7
6240d7
* with -ggdb2 and less "errno" in fact does not exist anywhere as it was
6240d7
  compiled to "(*__errno_location ())" and the macro definition is not present.
6240d7
  Unfortunately gdb will find the TLS symbol and it will try to access it but
6240d7
  as the program has been compiled without -lpthread the TLS base register
6240d7
  (%gs on i386) is not setup and it will result in:
6240d7
        Cannot access memory at address 0x8
6240d7
6240d7
Attached suggestion patch how to deal with the most common "errno" symbol
6240d7
for the most common under-ggdb3 compiled programs.
6240d7
6240d7
Original patch hooked into target_translate_tls_address.  But its inferior
6240d7
call invalidates `struct frame *' in the callers - RH BZ 690908.
6240d7
6240d7
https://bugzilla.redhat.com/show_bug.cgi?id=1166549
6240d7
6240d7
2007-11-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
6240d7
6240d7
	* ./gdb/dwarf2read.c (read_partial_die, dwarf2_linkage_name): Prefer
6240d7
	DW_AT_MIPS_linkage_name over DW_AT_name now only for non-C.
6240d7
6240d7
glibc-debuginfo-2.7-2.x86_64: /usr/lib/debug/lib64/libc.so.6.debug:
6240d7
  <81a2>     DW_AT_name        : (indirect string, offset: 0x280e): __errno_location
6240d7
  <81a8>     DW_AT_MIPS_linkage_name: (indirect string, offset: 0x2808): *__GI___errno_location
6240d7
6240d7
diff --git a/gdb/printcmd.c b/gdb/printcmd.c
6240d7
--- a/gdb/printcmd.c
6240d7
+++ b/gdb/printcmd.c
6240d7
@@ -1183,6 +1183,10 @@ print_command_1 (const char *exp, int voidprint)
6240d7
 
6240d7
   if (exp && *exp)
6240d7
     {
6240d7
+      /* '*((int *(*) (void)) __errno_location) ()' is incompatible with
6240d7
+	 function descriptors.  */
6240d7
+      if (target_has_execution && strcmp (exp, "errno") == 0)
6240d7
+	exp = "*(*(int *(*)(void)) __errno_location) ()";
6240d7
       expression_up expr = parse_expression (exp);
6240d7
       val = evaluate_expression (expr.get ());
6240d7
     }
6240d7
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-errno.c b/gdb/testsuite/gdb.dwarf2/dw2-errno.c
6240d7
new file mode 100644
6240d7
--- /dev/null
6240d7
+++ b/gdb/testsuite/gdb.dwarf2/dw2-errno.c
6240d7
@@ -0,0 +1,28 @@
6240d7
+/* This testcase is part of GDB, the GNU debugger.
6240d7
+
6240d7
+   Copyright 2005, 2007 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
+   Please email any bugs, comments, and/or additions to this file to:
6240d7
+   bug-gdb@prep.ai.mit.edu  */
6240d7
+
6240d7
+#include <errno.h>
6240d7
+
6240d7
+int main()
6240d7
+{
6240d7
+  errno = 42;
6240d7
+
6240d7
+  return 0;	/* breakpoint */
6240d7
+}
6240d7
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-errno.exp b/gdb/testsuite/gdb.dwarf2/dw2-errno.exp
6240d7
new file mode 100644
6240d7
--- /dev/null
6240d7
+++ b/gdb/testsuite/gdb.dwarf2/dw2-errno.exp
6240d7
@@ -0,0 +1,60 @@
6240d7
+# Copyright 2007 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
+set testfile dw2-errno
6240d7
+set srcfile ${testfile}.c
6240d7
+set binfile [standard_output_file ${testfile}]
6240d7
+
6240d7
+proc prep {} {
6240d7
+    global srcdir subdir binfile
6240d7
+    gdb_exit
6240d7
+    gdb_start
6240d7
+    gdb_reinitialize_dir $srcdir/$subdir
6240d7
+    gdb_load ${binfile}
6240d7
+
6240d7
+    runto_main
6240d7
+
6240d7
+    gdb_breakpoint [gdb_get_line_number "breakpoint"]
6240d7
+    gdb_continue_to_breakpoint "breakpoint"
6240d7
+}
6240d7
+
6240d7
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "additional_flags=-g2"] != "" } {
6240d7
+    untested "Couldn't compile test program"
6240d7
+    return -1
6240d7
+}
6240d7
+prep
6240d7
+gdb_test "print errno" ".* = 42" "errno with macros=N threads=N"
6240d7
+
6240d7
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "additional_flags=-g3"] != "" } {
6240d7
+    untested "Couldn't compile test program"
6240d7
+    return -1
6240d7
+}
6240d7
+prep
6240d7
+gdb_test "print errno" ".* = 42" "errno with macros=Y threads=N"
6240d7
+
6240d7
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "additional_flags=-g2"] != "" } {
6240d7
+    return -1
6240d7
+}
6240d7
+prep
6240d7
+gdb_test "print errno" ".* = 42" "errno with macros=N threads=Y"
6240d7
+
6240d7
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "additional_flags=-g3"] != "" } {
6240d7
+    return -1
6240d7
+}
6240d7
+prep
6240d7
+gdb_test "print errno" ".* = 42" "errno with macros=Y threads=Y"
6240d7
+
6240d7
+# TODO: Test the error on resolving ERRNO with only libc loaded.
6240d7
+# Just how to find the current libc filename?
6240d7
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-errno2.c b/gdb/testsuite/gdb.dwarf2/dw2-errno2.c
6240d7
new file mode 100644
6240d7
--- /dev/null
6240d7
+++ b/gdb/testsuite/gdb.dwarf2/dw2-errno2.c
6240d7
@@ -0,0 +1,28 @@
6240d7
+/* This testcase is part of GDB, the GNU debugger.
6240d7
+
6240d7
+   Copyright 2005, 2007 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
+   Please email any bugs, comments, and/or additions to this file to:
6240d7
+   bug-gdb@prep.ai.mit.edu  */
6240d7
+
6240d7
+#include <errno.h>
6240d7
+
6240d7
+int main()
6240d7
+{
6240d7
+  errno = 42;
6240d7
+
6240d7
+  return 0;	/* breakpoint */
6240d7
+}
6240d7
diff --git a/gdb/testsuite/gdb.dwarf2/dw2-errno2.exp b/gdb/testsuite/gdb.dwarf2/dw2-errno2.exp
6240d7
new file mode 100644
6240d7
--- /dev/null
6240d7
+++ b/gdb/testsuite/gdb.dwarf2/dw2-errno2.exp
6240d7
@@ -0,0 +1,71 @@
6240d7
+# Copyright 2007 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
+set testfile dw2-errno2
6240d7
+set srcfile ${testfile}.c
6240d7
+set binfile [standard_output_file ${testfile}]
6240d7
+
6240d7
+proc prep { message {do_xfail 0} } { with_test_prefix $message {
6240d7
+    global srcdir subdir binfile variant
6240d7
+    gdb_exit
6240d7
+    gdb_start
6240d7
+    gdb_reinitialize_dir $srcdir/$subdir
6240d7
+    gdb_load ${binfile}${variant}
6240d7
+
6240d7
+    runto_main
6240d7
+
6240d7
+    gdb_breakpoint [gdb_get_line_number "breakpoint"]
6240d7
+    gdb_continue_to_breakpoint "breakpoint"
6240d7
+
6240d7
+    gdb_test "gcore ${binfile}${variant}.core" "\r\nSaved corefile .*" "gcore $variant"
6240d7
+
6240d7
+    gdb_test "print errno" ".* = 42"
6240d7
+
6240d7
+    gdb_test "kill" ".*" "kill" {Kill the program being debugged\? \(y or n\) } "y"
6240d7
+    gdb_test "core-file ${binfile}${variant}.core" "\r\nCore was generated by .*" "core-file"
6240d7
+    if $do_xfail {
6240d7
+	setup_xfail "*-*-*"
6240d7
+    }
6240d7
+    gdb_test "print (int) errno" ".* = 42" "print errno for core"
6240d7
+}}
6240d7
+
6240d7
+set variant g2thrN
6240d7
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}${variant}" executable "additional_flags=-g2"] != "" } {
6240d7
+    untested "Couldn't compile test program"
6240d7
+    return -1
6240d7
+}
6240d7
+prep "macros=N threads=N" 1
6240d7
+
6240d7
+set variant g3thrN
6240d7
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}${variant}" executable "additional_flags=-g3"] != "" } {
6240d7
+    untested "Couldn't compile test program"
6240d7
+    return -1
6240d7
+}
6240d7
+prep "macros=Y threads=N" 1
6240d7
+
6240d7
+set variant g2thrY
6240d7
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}${variant}" executable "additional_flags=-g2"] != "" } {
6240d7
+    return -1
6240d7
+}
6240d7
+prep "macros=N threads=Y"
6240d7
+
6240d7
+set variant g3thrY
6240d7
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}${variant}" executable "additional_flags=-g3"] != "" } {
6240d7
+    return -1
6240d7
+}
6240d7
+prep "macros=Y threads=Y" 1
6240d7
+
6240d7
+# TODO: Test the error on resolving ERRNO with only libc loaded.
6240d7
+# Just how to find the current libc filename?