Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/kernel Add new test signal5 in t_ptrace_wait{, 3, 4, 6, id...



details:   https://anonhg.NetBSD.org/src/rev/b7ca057b4ac5
branches:  trunk
changeset: 821169:b7ca057b4ac5
user:      kamil <kamil%NetBSD.org@localhost>
date:      Thu Jan 26 22:46:19 2017 +0000

description:
Add new test signal5 in t_ptrace_wait{,3,4,6,id,pid}

signal5:
    Verify that masking SIGTRAP in tracee does not stop tracer from
    catching exec() breakpoint

signal5 is failing and linked with PR kern/51918

Sponsored by <The NetBSD Foundation>

diffstat:

 tests/kernel/t_ptrace_wait.c |  74 ++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 72 insertions(+), 2 deletions(-)

diffs (102 lines):

diff -r c568df08dd66 -r b7ca057b4ac5 tests/kernel/t_ptrace_wait.c
--- a/tests/kernel/t_ptrace_wait.c      Thu Jan 26 22:32:48 2017 +0000
+++ b/tests/kernel/t_ptrace_wait.c      Thu Jan 26 22:46:19 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_ptrace_wait.c,v 1.64 2017/01/26 22:32:48 kamil Exp $ */
+/*     $NetBSD: t_ptrace_wait.c,v 1.65 2017/01/26 22:46:19 kamil Exp $ */
 
 /*-
  * Copyright (c) 2016 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: t_ptrace_wait.c,v 1.64 2017/01/26 22:32:48 kamil Exp $");
+__RCSID("$NetBSD: t_ptrace_wait.c,v 1.65 2017/01/26 22:46:19 kamil Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -5939,6 +5939,75 @@
 }
 #endif
 
+ATF_TC(signal5);
+ATF_TC_HEAD(signal5, tc)
+{
+       atf_tc_set_md_var(tc, "descr",
+           "Verify that masking SIGTRAP in tracee does not stop tracer from "
+           "catching exec() breakpoint");
+}
+
+ATF_TC_BODY(signal5, tc)
+{
+       const int exitval = 5;
+       const int sigval = SIGSTOP;
+       const int sigmasked = SIGTRAP;
+       pid_t child, wpid;
+#if defined(TWAIT_HAVE_STATUS)
+       int status;
+#endif
+       sigset_t intmask;
+
+       atf_tc_expect_fail("PR kern/51918");
+
+       printf("Before forking process PID=%d\n", getpid());
+       ATF_REQUIRE((child = fork()) != -1);
+       if (child == 0) {
+               printf("Before calling PT_TRACE_ME from child %d\n", getpid());
+               FORKEE_ASSERT(ptrace(PT_TRACE_ME, 0, NULL, 0) != -1);
+
+               sigemptyset(&intmask);
+               sigaddset(&intmask, sigmasked);
+               sigprocmask(SIG_BLOCK, &intmask, NULL);
+
+               printf("Before raising %s from child\n", strsignal(sigval));
+               FORKEE_ASSERT(raise(sigval) == 0);
+
+               printf("Before calling execve(2) from child\n");
+               execlp("/bin/echo", "/bin/echo", NULL);
+
+               printf("Before exiting of the child process\n");
+               _exit(exitval);
+       }
+       printf("Parent process PID=%d, child's PID=%d\n", getpid(), child);
+
+       printf("Before calling %s() for the child\n", TWAIT_FNAME);
+       TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, 0), child);
+
+       validate_status_stopped(status, sigval);
+
+       printf("Before resuming the child process where it left off and "
+           "without signal to be sent\n");
+       ATF_REQUIRE(ptrace(PT_CONTINUE, child, (void *)1, 0) != -1);
+
+       printf("Before calling %s() for the child\n", TWAIT_FNAME);
+       TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, 0), child);
+
+       validate_status_stopped(status, sigmasked);
+
+       printf("Before resuming the child process where it left off and "
+           "without signal to be sent\n");
+       ATF_REQUIRE(ptrace(PT_CONTINUE, child, (void *)1, 0) != -1);
+
+       printf("Before calling %s() for the child\n", TWAIT_FNAME);
+       TWAIT_REQUIRE_SUCCESS(wpid = TWAIT_GENERIC(child, &status, 0), child);
+
+       validate_status_exited(status, exitval);
+
+       printf("Before calling %s() for the child\n", TWAIT_FNAME);
+       TWAIT_REQUIRE_FAILURE(ECHILD, wpid = TWAIT_GENERIC(child, &status, 0));
+}
+
 ATF_TP_ADD_TCS(tp)
 {
        setvbuf(stdout, NULL, _IONBF, 0);
@@ -6045,6 +6114,7 @@
        ATF_TP_ADD_TC(tp, signal2);
        ATF_TP_ADD_TC(tp, signal3);
        ATF_TP_ADD_TC_PT_STEP(tp, signal4);
+       ATF_TP_ADD_TC(tp, signal5);
 
        return atf_no_error();
 }



Home | Main Index | Thread Index | Old Index