From: Willy Tarreau Date: Sat, 27 Feb 2016 06:58:50 +0000 (+0100) Subject: BUG/MINOR: systemd: ensure we don't miss signals X-Git-Tag: v1.7-dev2~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ab5e8642a3537006db8eeed4a3b1bdca2458b33;p=thirdparty%2Fhaproxy.git BUG/MINOR: systemd: ensure we don't miss signals There's a race condition in the systemd wrapper. People who restart it too fast report old processes remaining there. Here if the signal is caught before entering the "while" loop we block indefinitely on the wait() call. Let's check the caught signal before calling wait(). It doesn't completely close the race, a window still exists between the test of the flag and the call to wait(), but it's much smaller. A safer solution could involve pselect() to wait for the signal delivery. --- diff --git a/src/haproxy-systemd-wrapper.c b/src/haproxy-systemd-wrapper.c index e588af931c..10396aec85 100644 --- a/src/haproxy-systemd-wrapper.c +++ b/src/haproxy-systemd-wrapper.c @@ -197,7 +197,7 @@ int main(int argc, char **argv) } status = -1; - while (-1 != wait(&status) || errno == EINTR) { + while (caught_signal || wait(&status) != -1 || errno == EINTR) { if (caught_signal == SIGUSR2 || caught_signal == SIGHUP) { caught_signal = 0; do_restart();