|
|
6240d7 |
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
|
|
|
6240d7 |
From: Fedora GDB patches <invalid@email.com>
|
|
|
6240d7 |
Date: Fri, 27 Oct 2017 21:07:50 +0200
|
|
|
6240d7 |
Subject: gdb-glibc-strstr-workaround.patch
|
|
|
6240d7 |
|
|
|
6240d7 |
;; Workaround PR libc/14166 for inferior calls of strstr.
|
|
|
6240d7 |
;;=fedoratest: Compatibility with RHELs (unchecked which ones).
|
|
|
6240d7 |
|
|
|
6240d7 |
diff --git a/gdb/testsuite/gdb.base/gnu-ifunc-strstr-workaround.exp b/gdb/testsuite/gdb.base/gnu-ifunc-strstr-workaround.exp
|
|
|
6240d7 |
new file mode 100644
|
|
|
6240d7 |
--- /dev/null
|
|
|
6240d7 |
+++ b/gdb/testsuite/gdb.base/gnu-ifunc-strstr-workaround.exp
|
|
|
6240d7 |
@@ -0,0 +1,115 @@
|
|
|
6240d7 |
+# Copyright (C) 2012 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 |
+# Workaround for:
|
|
|
6240d7 |
+# invalid IFUNC DW_AT_linkage_name: memmove strstr time
|
|
|
6240d7 |
+# http://sourceware.org/bugzilla/show_bug.cgi?id=14166
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+if {[skip_shlib_tests]} {
|
|
|
6240d7 |
+ return 0
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+set testfile "gnu-ifunc-strstr-workaround"
|
|
|
6240d7 |
+set executable ${testfile}
|
|
|
6240d7 |
+set srcfile start.c
|
|
|
6240d7 |
+set binfile [standard_output_file ${executable}]
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+if [prepare_for_testing ${testfile}.exp $executable $srcfile] {
|
|
|
6240d7 |
+ return -1
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+if ![runto_main] {
|
|
|
6240d7 |
+ return 0
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+set test "ptype atoi"
|
|
|
6240d7 |
+gdb_test_multiple $test $test {
|
|
|
6240d7 |
+ -re "type = int \\(const char \\*\\)\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ pass $test
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re "type = int \\(\\)\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ untested "$test (no DWARF)"
|
|
|
6240d7 |
+ return 0
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+set addr ""
|
|
|
6240d7 |
+set test "print strstr"
|
|
|
6240d7 |
+gdb_test_multiple $test $test {
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ set addr $expect_out(1,string)
|
|
|
6240d7 |
+ pass $test
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <__strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ set addr $expect_out(1,string)
|
|
|
6240d7 |
+ pass "$test (GDB workaround)"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <__libc_strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ set addr $expect_out(1,string)
|
|
|
6240d7 |
+ pass "$test (fixed glibc)"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} (0x\[0-9a-f\]+) <__libc_strstr_ifunc>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ set addr $expect_out(1,string)
|
|
|
6240d7 |
+ pass "$test (fixed glibc)"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {char \\*\\(const char \\*, const char \\*\\)} 0x\[0-9a-f\]+ <strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ untested "$test (gnu-ifunc not in use by glibc)"
|
|
|
6240d7 |
+ return 0
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+set test "info sym"
|
|
|
6240d7 |
+gdb_test_multiple "info sym $addr" $test {
|
|
|
6240d7 |
+ -re "strstr in section \\.text of /lib\[^/\]*/libc.so.6\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ pass $test
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {char \\*\\(const char \\*, const char \\*\\)} 0x\[0-9a-f\]+ <strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ # unexpected
|
|
|
6240d7 |
+ xfail "$test (not in libc.so.6)"
|
|
|
6240d7 |
+ return 0
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+set test "info addr strstr"
|
|
|
6240d7 |
+gdb_test_multiple $test $test {
|
|
|
6240d7 |
+ -re "Symbol \"strstr\" is a function at address $addr\\.\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ fail "$test (DWARF for strstr)"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re "Symbol \"strstr\" is at $addr in a file compiled without debugging\\.\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ pass "$test"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+set test "print strstr second time"
|
|
|
6240d7 |
+gdb_test_multiple "print strstr" $test {
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} $addr <strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ pass $test
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} $addr <__strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ pass "$test (GDB workaround)"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} $addr <__libc_strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ pass "$test (fixed glibc)"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {<text gnu-indirect-function variable, no debug info>} $addr <__libc_strstr_ifunc>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ pass "$test (fixed glibc)"
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+ -re " = {void \\*\\(void\\)} 0x\[0-9a-f\]+ <strstr>\r\n$gdb_prompt $" {
|
|
|
6240d7 |
+ fail $test
|
|
|
6240d7 |
+ }
|
|
|
6240d7 |
+}
|
|
|
6240d7 |
+
|
|
|
6240d7 |
+gdb_test {print strstr("abc","b")} { = 0x[0-9a-f]+ "bc"}
|
|
|
6240d7 |
+gdb_test {print strstr("def","e")} { = 0x[0-9a-f]+ "ef"}
|