From: Jeremy Allison Date: Thu, 30 Nov 2017 20:25:02 +0000 (-0800) Subject: s4: torture: Fix race condition in test_smb2_kernel_oplocks8. X-Git-Tag: talloc-2.1.11~304 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f83d435bb21aeb3d309b764170789ed100c9ad7;p=thirdparty%2Fsamba.git s4: torture: Fix race condition in test_smb2_kernel_oplocks8. The child process gets the kernel lease and then notifies the parent process to continue by writing a byte up a pipe. It then sets the alarm and calls pause() to wait for the parent process to contact the smbd and get it to trigger the break request using an open call. It is possible for the parent to run and trigger the break request after the child has written to the pipe, but *before* the child calls pause(). We then miss the signal notifying the child to break the lease. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13121 Signed-off-by: Jeremy Allison Reviewed-by: Ralph Böhme --- diff --git a/source4/torture/smb2/oplock.c b/source4/torture/smb2/oplock.c index 6d749f92c1c..87d7d2ff946 100644 --- a/source4/torture/smb2/oplock.c +++ b/source4/torture/smb2/oplock.c @@ -4838,6 +4838,18 @@ static int do_child_process(int pipefd, const char *name) int fd = -1; char c = 0; struct sigaction act; + sigset_t set; + sigset_t empty_set; + + /* Block RT_SIGNAL_LEASE and SIGALRM. */ + sigemptyset(&set); + sigemptyset(&empty_set); + sigaddset(&set, RT_SIGNAL_LEASE); + sigaddset(&set, SIGALRM); + ret = sigprocmask(SIG_SETMASK, &set, NULL); + if (ret == -1) { + return 11; + } /* Set up a signal handler for RT_SIGNAL_LEASE. */ ZERO_STRUCT(act); @@ -4878,8 +4890,8 @@ static int do_child_process(int pipefd, const char *name) /* Ensure the pause doesn't hang forever. */ alarm(5); - /* Wait for RT_SIGNAL_LEASE. */ - ret = pause(); + /* Wait for RT_SIGNAL_LEASE or SIGALRM. */ + ret = sigsuspend(&empty_set); if (ret != -1 || errno != EINTR) { return 6; }