Blame SOURCES/gdb-rhbz1149205-catch-syscall-after-fork-test.patch

2f9ed3
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
2f9ed3
From: Fedora GDB patches <invalid@email.com>
2f9ed3
Date: Fri, 27 Oct 2017 21:07:50 +0200
2f9ed3
Subject: gdb-rhbz1149205-catch-syscall-after-fork-test.patch
2f9ed3
2f9ed3
;; Fix '`catch syscall' doesn't work for parent after `fork' is called'
2f9ed3
;; (Philippe Waroquiers, RH BZ 1149205).
2f9ed3
;;=fedoratest
2f9ed3
2f9ed3
URL: <https://sourceware.org/ml/gdb-patches/2013-05/msg00364.html>
2f9ed3
Message-ID: <1368136582.30058.7.camel@soleil>
2f9ed3
2f9ed3
  From: Philippe Waroquiers <philippe dot waroquiers at skynet dot be>
2f9ed3
  To: gdb-patches at sourceware dot org
2f9ed3
  Subject: RFA: fix gdb_assert caused by 'catch signal ...' and fork
2f9ed3
  Date: Thu, 09 May 2013 23:56:22 +0200
2f9ed3
2f9ed3
  The attached patch fixes a gdb_assert caused by the combination of catch
2f9ed3
  signal and fork:
2f9ed3
    break-catch-sig.c:152: internal-error: signal_catchpoint_remove_location: Assertion `signal_catch_counts[iter] > 0' failed.
2f9ed3
2f9ed3
  The problem is that the signal_catch_counts is decremented by detach_breakpoints.
2f9ed3
  The fix consists in not detaching breakpoint locations of type bp_loc_other.
2f9ed3
  The patch introduces a new test.
2f9ed3
2f9ed3
Comments by Sergio Durigan Junior:
2f9ed3
2f9ed3
  I addded a specific testcase for this patch, which tests exactly the
2f9ed3
  issue that the customer is facing.  This patch does not solve the
2f9ed3
  whole problem of catching a syscall and forking (for more details,
2f9ed3
  see <https://sourceware.org/bugzilla/show_bug.cgi?id=13457>,
2f9ed3
  specifically comment #3), but it solves the issue reported by the
2f9ed3
  customer.
2f9ed3
2f9ed3
  I also removed the original testcase of this patch, because it
2f9ed3
  relied on "catch signal", which is a command that is not implemented
2f9ed3
  in this version of GDB.
2f9ed3
2f9ed3
commit bd9673a4ded96ea5c108601501c8e59003ea1be6
2f9ed3
Author: Philippe Waroquiers <philippe@sourceware.org>
2f9ed3
Date:   Tue May 21 18:47:05 2013 +0000
2f9ed3
2f9ed3
    Fix internal error caused by interaction between catch signal and fork
2f9ed3
2f9ed3
diff --git a/gdb/testsuite/gdb.base/gdb-rhbz1149205-catch-syscall-fork.c b/gdb/testsuite/gdb.base/gdb-rhbz1149205-catch-syscall-fork.c
2f9ed3
new file mode 100644
2f9ed3
--- /dev/null
2f9ed3
+++ b/gdb/testsuite/gdb.base/gdb-rhbz1149205-catch-syscall-fork.c
2f9ed3
@@ -0,0 +1,11 @@
2f9ed3
+#include <stdio.h>
2f9ed3
+#include <unistd.h>
2f9ed3
+
2f9ed3
+int
2f9ed3
+main (int argc, char **argv)
2f9ed3
+{
2f9ed3
+  if (fork () == 0)
2f9ed3
+    sleep (1);
2f9ed3
+  chdir (".");
2f9ed3
+  return 0;
2f9ed3
+}
2f9ed3
diff --git a/gdb/testsuite/gdb.base/gdb-rhbz1149205-catch-syscall-fork.exp b/gdb/testsuite/gdb.base/gdb-rhbz1149205-catch-syscall-fork.exp
2f9ed3
new file mode 100644
2f9ed3
--- /dev/null
2f9ed3
+++ b/gdb/testsuite/gdb.base/gdb-rhbz1149205-catch-syscall-fork.exp
2f9ed3
@@ -0,0 +1,58 @@
2f9ed3
+# Copyright 2015 Free Software Foundation, Inc.
2f9ed3
+
2f9ed3
+# This program is free software; you can redistribute it and/or modify
2f9ed3
+# it under the terms of the GNU General Public License as published by
2f9ed3
+# the Free Software Foundation; either version 3 of the License, or
2f9ed3
+# (at your option) any later version.
2f9ed3
+#
2f9ed3
+# This program is distributed in the hope that it will be useful,
2f9ed3
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
2f9ed3
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2f9ed3
+# GNU General Public License for more details.
2f9ed3
+#
2f9ed3
+# You should have received a copy of the GNU General Public License
2f9ed3
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
2f9ed3
+
2f9ed3
+if { [is_remote target] || ![isnative] } then {
2f9ed3
+    continue
2f9ed3
+}
2f9ed3
+
2f9ed3
+set testfile "gdb-rhbz1149205-catch-syscall-fork"
2f9ed3
+set srcfile ${testfile}.c
2f9ed3
+set binfile [standard_output_file ${testfile}]
2f9ed3
+
2f9ed3
+# Until "catch syscall" is implemented on other targets...
2f9ed3
+if {![istarget "hppa*-hp-hpux*"] && ![istarget "*-linux*"]} then {
2f9ed3
+    continue
2f9ed3
+}
2f9ed3
+
2f9ed3
+# This shall be updated whenever 'catch syscall' is implemented
2f9ed3
+# on some architecture.
2f9ed3
+#if { ![istarget "i\[34567\]86-*-linux*"]
2f9ed3
+if { ![istarget "x86_64-*-linux*"] && ![istarget "i\[34567\]86-*-linux*"]
2f9ed3
+     && ![istarget "powerpc-*-linux*"] && ![istarget "powerpc64-*-linux*"]
2f9ed3
+     && ![istarget "sparc-*-linux*"] && ![istarget "sparc64-*-linux*"] } {
2f9ed3
+     continue
2f9ed3
+}
2f9ed3
+
2f9ed3
+if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
2f9ed3
+    untested ${testfile}.exp
2f9ed3
+    return -1
2f9ed3
+}
2f9ed3
+
2f9ed3
+gdb_exit
2f9ed3
+gdb_start
2f9ed3
+gdb_reinitialize_dir $srcdir/$subdir
2f9ed3
+gdb_load $binfile
2f9ed3
+
2f9ed3
+if { ![runto_main] } {
2f9ed3
+    return -1
2f9ed3
+}
2f9ed3
+
2f9ed3
+gdb_test "catch syscall chdir" \
2f9ed3
+  "Catchpoint $decimal \\\(syscall (.)?chdir(.)? \\\[$decimal\\\]\\\)" \
2f9ed3
+  "catch syscall chdir"
2f9ed3
+
2f9ed3
+gdb_test "continue" \
2f9ed3
+  "Continuing\.\r\n.*\r\nCatchpoint $decimal \\\(call to syscall .?chdir.?.*" \
2f9ed3
+  "continue from catch syscall after fork"