ctdb-common: Avoid race between fd and signal events
commite23fdfe6730afe1ac920a58c94d48aba592c9c7a
authorAmitay Isaacs <amitay@samba.org>
Tue, 9 Apr 2019 04:44:04 +0000 (9 14:44 +1000)
committerKarolin Seeger <kseeger@samba.org>
Mon, 15 Apr 2019 14:23:16 +0000 (15 14:23 +0000)
tree6c3b9ad5e50fdfc0ffb88c51a6dfe9e56b1003f5
parent8f43d725d3629daf17a2aaa3006f47021efad72d
ctdb-common: Avoid race between fd and signal events

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13895

In run_proc, there was an implicit assumption that when a process exits,
fd event (pipe between parent and child) would be processed first and
signal event (SIGCHLD for the child) would be processed later.

However, that is not the case.  SIGCHLD can be received asynchronously
any time even when the pipe data has not fully been read.  This causes
run_proc to miss some of the output from child process in tests.

When SIGCHLD is being processed, if the pipe between parent and child is
still open, then do an explict read from the pipe to ensure we read any
data still in the pipe before closing the pipe.

Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Autobuild-User(master): Amitay Isaacs <amitay@samba.org>
Autobuild-Date(master): Fri Apr 12 08:19:29 UTC 2019 on sn-devel-144

(cherry picked from commit 289201277cd983b27cdfd5376c607eab112b4082)

Autobuild-User(v4-10-test): Karolin Seeger <kseeger@samba.org>
Autobuild-Date(v4-10-test): Mon Apr 15 14:23:16 UTC 2019 on sn-devel-144
ctdb/common/run_proc.c