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

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