]> git.ipfire.org Git - thirdparty/git.git/commitdiff
run-command: use errno to check for sigfillset() error
authorJeff King <peff@peff.net>
Mon, 17 Mar 2025 23:53:27 +0000 (16:53 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 17 Mar 2025 23:54:41 +0000 (16:54 -0700)
Since enabling -Wunreachable-code, builds with clang on macOS now fail,
complaining that the die_errno() call in:

  if (sigfillset(&all))
die_errno("sigfillset");

is unreachable. On that platform the manpage documents that sigfillset()
always returns success, and presumably the implementation is a macro or
inline function that does so in a way that is transparent to the
compiler.

But we should continue to check on other platforms, since POSIX says it
may return an error.

We could solve this with a compile-time knob to split the two cases
(assuming success on macOS and checking for the error elsewhere). But we
can also work around it more directly by relying on errno to check the
outcome (since POSIX dictates that errno will be set on error). And that
works around the compiler's cleverness, since it doesn't know the
semantics of errno (though I suppose if sigfillset() is simple enough,
it could perhaps realize that no writes to errno are possible; however
this does seem to work in practice).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
run-command.c

index 402138b8b53ae8e74897cbafeaaf226850135f65..d527c4617571047d06eb5767addb62ce0de15764 100644 (file)
@@ -515,7 +515,15 @@ static void atfork_prepare(struct atfork_state *as)
 {
        sigset_t all;
 
-       if (sigfillset(&all))
+       /*
+        * Do not use the return value of sigfillset(). It is transparently 0
+        * on some platforms, meaning a clever compiler may complain that
+        * the conditional body is dead code. Instead, check for error via
+        * errno, which outsmarts the compiler.
+        */
+       errno = 0;
+       sigfillset(&all);
+       if (errno)
                die_errno("sigfillset");
 #ifdef NO_PTHREADS
        if (sigprocmask(SIG_SETMASK, &all, &as->old))