t/lib-httpd: fix apply-one-time-script race under concurrent requests

apply-one-time-script.sh is a CGI helper that, when the file
"one-time-script" is present, runs it to rewrite the git-http-backend
response. If "one-time-script" generates a response that differs from
git-http-backend, the modified response is returned and
"one-time-script" is deleted. Requests after the deletion return normal
git-http-backend responses.

The deletion is not safe under concurrency. The helper serves the
modified body first and deletes "one-time-script" only afterward, so a
client can issue its next request while the file still exists. Apache
runs the CGI for both requests at once, for example when a partial fetch
lazily fetches a missing promisor base while the first response is still
in flight. Both requests find the file and try to run it; the first
deletes it; the second then fails to exec the now-missing file, produces
no output, and the server returns HTTP 500:

  fatal: ... The requested URL returned error: 500
  fatal: could not fetch <oid> from promisor remote

This is the flaky failure of t5616.47 on the macOS CI runners.

Fix it by removing the file with "rm" only after the script has actually
changed the response. Because "rm" without "-f" fails once the file is
gone, exactly one request removes it and serves the modified body. Any
other request serves the unmodified body. Running the script more than
once is harmless; only its deletion is serialized, so exactly one
request's modified response is ever served. Per-request scratch file
names keep concurrent runs from overwriting each other, and no path
emits an empty response body.

t5616.47 exercises the real code path but, being timing-dependent,
passes against the buggy helper almost every time. Add t5567, which
drives the helper directly with a fake git-http-backend and forces the
overlap with FIFOs; against the pre-fix helper it fails with the same
shell error seen in the field:

  ./one-time-script: No such file or directory

Signed-off-by: Michael Montalbo <mmontalbo@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
seen
Michael Montalbo 2026-08-13 01:05:34 +00:00 committed by Junio C Hamano
parent e9019fcafe
commit 7e246cfa25
3 changed files with 134 additions and 15 deletions

View File

@ -6,21 +6,43 @@
#
# This can be used to simulate the effects of the repository changing in
# between HTTP request-response pairs.
if test -f one-time-script
#
# Apache can run this CGI for several requests at the same time. For example, a
# partial fetch lazily fetches a missing object while the first response is
# still in flight. To stay correct, the helper removes the marker only after
# the response changes, and only with "rm" (without "-f"). The "rm" fails for
# every request except the one that removes the marker first. That request
# serves the modified body. Every other request serves its response unchanged.
# No request emits an empty body, which Apache would report as HTTP 500.
#
# A scratch file name includes the process ID ($$), so concurrent requests do
# not overwrite each other's files.
#
# The helper can run one-time-script more than once. It consumes the marker
# when the response changes (the "rm" after "cmp"), not when it runs the
# script. A request whose response is not the target runs the script, finds no
# change, and leaves the marker for a later request. This is safe because the
# scripts are stateless filters over the captured response.

test -f one-time-script || exec "$GIT_EXEC_PATH/git-http-backend"

LC_ALL=C
export LC_ALL

out=out.$$
modified=out-modified.$$
"$GIT_EXEC_PATH/git-http-backend" >"$out"

# one-time-script can be gone here: a concurrent request may have consumed it
# since the "test -f" above. Then "./one-time-script" fails, the exit status
# selects the unmodified body, and "2>/dev/null" discards the expected
# "no such file" message.
if ./one-time-script "$out" 2>/dev/null >"$modified" &&
! cmp -s "$out" "$modified" &&
rm one-time-script 2>/dev/null
then
LC_ALL=C
export LC_ALL

"$GIT_EXEC_PATH/git-http-backend" >out
./one-time-script out >out_modified

if cmp -s out out_modified
then
cat out
else
cat out_modified
rm one-time-script
fi
cat "$modified"
else
"$GIT_EXEC_PATH/git-http-backend"
cat "$out"
fi
rm -f "$out" "$modified"

View File

@ -707,6 +707,7 @@ integration_tests = [
't5564-http-proxy.sh',
't5565-push-multiple.sh',
't5566-push-group.sh',
't5567-one-time-script.sh',
't5570-git-daemon.sh',
't5571-pre-push-hook.sh',
't5572-pull-submodule.sh',

96
t/t5567-one-time-script.sh Executable file
View File

@ -0,0 +1,96 @@
#!/bin/sh

test_description='apply-one-time-script CGI helper is safe under concurrent requests'

. ./test-lib.sh

HELPER="$TEST_DIRECTORY/lib-httpd/apply-one-time-script.sh"

test_expect_success PIPE 'concurrent requests: one rewritten, one passed through, neither empty' '
mkdir workdir fakebin &&
ENTERED="$PWD/entered" &&
GATE="$PWD/gate" &&
export ENTERED GATE &&
mkfifo "$ENTERED" "$GATE" &&

# Stand in for git-http-backend. The modify role returns a response
# containing "packfile", which the one-time script rewrites. The
# passthrough role returns a response that is left untouched, but first
# announces that it has entered the helper and then blocks, so that it
# is still in flight when the modify role claims and removes the marker.
write_script fakebin/git-http-backend <<-\EOF &&
printf "Status: 200 OK\r\n"
printf "Content-Type: application/x-git-result\r\n"
printf "\r\n"
if test "$ROLE" = modify
then
printf "packfile\n"
else
echo entered >"$ENTERED"
read -r released <"$GATE"
printf "refs\n"
fi
EOF

# The transform that replace_packfile would install as one-time-script:
# rewrite responses that contain "packfile", leave the rest alone.
write_script workdir/one-time-script <<-\EOF &&
if grep packfile "$1" >/dev/null
then
sed "/packfile/q" "$1" &&
printf "REPLACED\n"
else
cat "$1"
fi
EOF

GIT_EXEC_PATH="$PWD/fakebin" &&
export GIT_EXEC_PATH &&

# Hold GATE open read-write on fd 9 for the duration, so releasing the
# passthrough request below cannot block even if that request has
# already exited (it keeps a reader on the FIFO).
exec 9<>"$GATE" &&

# Launch the passthrough request in the background. It enters the
# helper, signals us through ENTERED, then blocks on GATE inside the
# fake backend. The braces keep the && chain intact while backgrounding
# only the subshell, so "wait" can reap it by pid; kill it on any exit
# so a stray blocked child cannot hold the test output open and stall a
# reader such as prove.
{ (
cd workdir &&
ROLE=passthrough sh "$HELPER" >../passthrough.out 2>../passthrough.err
) & } &&
passthrough_pid=$! &&
test_when_finished "kill $passthrough_pid 2>/dev/null || :" &&

# Wait until the passthrough request is past the marker check.
read -r entered <"$ENTERED" &&

# Run the modifying request to completion while the passthrough request
# is still blocked.
(
cd workdir &&
ROLE=modify sh "$HELPER" >../modify.out 2>../modify.err
) &&

# Release the passthrough request and let it finish. Ignore the helper
# exit status here so a broken helper is diagnosed by the assertions
# below rather than aborting the test.
echo released >&9 &&
{ wait "$passthrough_pid" || :; } &&

# Neither request may error out or produce an empty (HTTP 500) body,
# and each must have played its role: the modify request rewrote its
# response and the passthrough request came through untouched.
test_must_be_empty passthrough.err &&
test_must_be_empty modify.err &&
test_grep "Status: 200 OK" passthrough.out &&
test_grep "Status: 200 OK" modify.out &&
test_grep REPLACED modify.out &&
test_grep ! REPLACED passthrough.out &&
test_grep refs passthrough.out
'

test_done