]> git.ipfire.org Git - thirdparty/git.git/commit
upload-pack: fix race condition in error messages
authorDerrick Stolee <dstolee@microsoft.com>
Thu, 10 Aug 2023 14:40:50 +0000 (14:40 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 10 Aug 2023 16:15:27 +0000 (09:15 -0700)
commit7ba7c52d76630183b47c57bdd2da8eea033bdd2f
tree073b94e261e7348101b45ecbb8f7d5116501a433
parentfb7d80edcae482f4fa5d4be0227dc3054734e5f3
upload-pack: fix race condition in error messages

Test t5516-fetch-push.sh has a test 'deny fetch unreachable SHA1,
allowtipsha1inwant=true' that checks stderr for a specific error
string from the remote. In some build environments the error sent
over the remote connection gets mingled with the error from the
die() statement. Since both signals are being output to the same
file descriptor (but from parent and child processes), the output
we are matching with grep gets split.

To reduce the risk of this failure, follow this process instead:

1. Write an error message to stderr.
2. Write an error message across the connection.
3. exit(1).

This reorders the events so the error is written entirely before
the client receives a message from the remote, removing the race
condition.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
upload-pack.c