Blame SOURCES/gdb-glibc-strstr-workaround.patch

79b363
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
79b363
From: Fedora GDB patches <invalid@email.com>
79b363
Date: Fri, 27 Oct 2017 21:07:50 +0200
79b363
Subject: gdb-glibc-strstr-workaround.patch
79b363
79b363
;; Workaround PR libc/14166 for inferior calls of strstr.
79b363
;;=fedoratest: Compatibility with RHELs (unchecked which ones).
79b363
79b363
diff --git a/gdb/testsuite/gdb.base/gnu-ifunc-strstr-workaround.exp b/gdb/testsuite/gdb.base/gnu-ifunc-strstr-workaround.exp
79b363
new file mode 100644
79b363
--- /dev/null
79b363
+++ b/gdb/testsuite/gdb.base/gnu-ifunc-strstr-workaround.exp
79b363
@@ -0,0 +1,119 @@
79b363
+# Copyright (C) 2012 Free Software Foundation, Inc.
79b363
+
79b363
+# This program is free software; you can redistribute it and/or modify
79b363
+# it under the terms of the GNU General Public License as published by
79b363
+# the Free Software Foundation; either version 3 of the License, or
79b363
+# (at your option) any later version.
79b363
+#
79b363
+# This program is distributed in the hope that it will be useful,
79b363
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
79b363
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
79b363
+# GNU General Public License for more details.
79b363
+#
79b363
+# You should have received a copy of the GNU General Public License
79b363
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
79b363
+
79b363
+# Workaround for:
79b363
+# invalid IFUNC DW_AT_linkage_name: memmove strstr time
79b363
+# http://sourceware.org/bugzilla/show_bug.cgi?id=14166
79b363
+
79b363
+if {[skip_shlib_tests]} {
79b363
+    return 0
79b363
+}
79b363
+
79b363
+set testfile "gnu-ifunc-strstr-workaround"
79b363
+set executable ${testfile}
79b363
+set srcfile start.c
79b363
+set binfile [standard_output_file ${executable}]
79b363
+
79b363
+if [prepare_for_testing ${testfile}.exp $executable $srcfile] {
79b363
+    return -1
79b363
+}
79b363
+
79b363
+if ![runto_main] {
79b363
+    return 0
79b363
+}
79b363
+
79b363
+set test "ptype atoi"
79b363
+gdb_test_multiple $test $test {
79b363
+    -re "type = int \\(const char \\*\\)\r\n$gdb_prompt $" {
79b363
+	pass $test
79b363
+    }
79b363
+    -re "type = int \\(\\)\r\n$gdb_prompt $" {
79b363
+	untested "$test (no DWARF)"
79b363
+	return 0
79b363
+    }
79b363
+    -re "type = <unknown return type> \\(\\)\r\n$gdb_prompt $" {
79b363
+	untested "$test (no DWARF)"
79b363
+	return 0
79b363
+    }
79b363
+}
79b363
+
79b363
+set addr ""
79b363
+set test "print strstr"
79b363
+gdb_test_multiple $test $test {
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <strstr>\r\n$gdb_prompt $" {
79b363
+	set addr $expect_out(1,string)
79b363
+	pass $test
79b363
+    }
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <__strstr>\r\n$gdb_prompt $" {
79b363
+	set addr $expect_out(1,string)
79b363
+	pass "$test (GDB workaround)"
79b363
+    }
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <__libc_strstr>\r\n$gdb_prompt $" {
79b363
+	set addr $expect_out(1,string)
79b363
+	pass "$test (fixed glibc)"
79b363
+    }
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <__libc_strstr_ifunc>\r\n$gdb_prompt $" {
79b363
+	set addr $expect_out(1,string)
79b363
+	pass "$test (fixed glibc)"
79b363
+    }
79b363
+    -re " = {char \\*\\(const char \\*, const char \\*\\)} 0x\[0-9a-f\]+ <strstr>\r\n$gdb_prompt $" {
79b363
+	untested "$test (gnu-ifunc not in use by glibc)"
79b363
+	return 0
79b363
+    }
79b363
+}
79b363
+
79b363
+set test "info sym"
79b363
+gdb_test_multiple "info sym $addr" $test {
79b363
+    -re "strstr in section \\.text of /lib\[^/\]*/libc.so.6\r\n$gdb_prompt $" {
79b363
+	pass $test
79b363
+    }
79b363
+    -re " = {char \\*\\(const char \\*, const char \\*\\)} 0x\[0-9a-f\]+ <strstr>\r\n$gdb_prompt $" {
79b363
+	# unexpected
79b363
+	xfail "$test (not in libc.so.6)"
79b363
+	return 0
79b363
+    }
79b363
+}
79b363
+
79b363
+set test "info addr strstr"
79b363
+gdb_test_multiple $test $test {
79b363
+    -re "Symbol \"strstr\" is a function at address $addr\\.\r\n$gdb_prompt $" {
79b363
+	fail "$test (DWARF for strstr)"
79b363
+    }
79b363
+    -re "Symbol \"strstr\" is at $addr in a file compiled without debugging\\.\r\n$gdb_prompt $" {
79b363
+	pass "$test"
79b363
+    }
79b363
+}
79b363
+
79b363
+set test "print strstr second time"
79b363
+gdb_test_multiple "print strstr" $test {
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} $addr <strstr>\r\n$gdb_prompt $" {
79b363
+	pass $test
79b363
+    }
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} $addr <__strstr>\r\n$gdb_prompt $" {
79b363
+	pass "$test (GDB workaround)"
79b363
+    }
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} $addr <__libc_strstr>\r\n$gdb_prompt $" {
79b363
+	pass "$test (fixed glibc)"
79b363
+    }
79b363
+    -re " = {<text gnu-indirect-function variable, no debug info>} $addr <__libc_strstr_ifunc>\r\n$gdb_prompt $" {
79b363
+	pass "$test (fixed glibc)"
79b363
+    }
79b363
+    -re " = {void \\*\\(void\\)} 0x\[0-9a-f\]+ <strstr>\r\n$gdb_prompt $" {
79b363
+	fail $test
79b363
+    }
79b363
+}
79b363
+
79b363
+gdb_test {print (char *)strstr("abc","b")} { = 0x[0-9a-f]+ "bc"}
79b363
+gdb_test {print (char *)strstr("def","e")} { = 0x[0-9a-f]+ "ef"}