fix(cargo-cache): scope the safety claim to what the code actually prevents
Follow-up tof57e2a6, addressing the reviewer's sharpest question: is the race "closed by construction", or merely detected and retried? The honest answer is "both, on different paths", and the README said only the first half. * README now states three claims separately instead of collapsing them: a publisher rotating a snapshot cannot tear a clone of it (by construction — the marker ordering prevents the unlink, and the consumer's verification is a redundant second check on that path); every OTHER way the source can change mid-clone is detected, not prevented (the eviction pass's reader check is check-then-delete, and a seed-fallback-dir has no interlock at all — there, verification plus a bounded retry and a loud failure is the whole guard); and disk reclamation is bounded rather than immediate. Overclaiming this property once was the finding; overclaiming it twice would be worse. * publish-snapshot-selftest.sh now covers the PUBLISHER's half of the race, where a reader of the swap belongs. Scenario 3 only ever covered a consumer that had already FINISHED cloning — safe for free, since its own hardlinks keep the inodes alive. New scenario 6 covers a reader still in flight past the grace period (the generation is left on disk, the deferral is warned about, and an earlier consumer is still unaffected); scenario 7 covers the sweep, so "we defer instead of forcing" cannot quietly become a disk leak. Red-proven against 248af306's scripts: ASSERTION FAILED: the previous generation was unlinked while a reader still held it The consumer's half stays in seed-target-dir-selftest.sh scenario 8, which still red-proves at 16693 of 48805 entries against the same scripts. * seed-target-dir-selftest.sh now asserts what happens when the retries are EXHAUSTED, not just what hardlink_clone_into returns: an unreadable source makes the seed script exit non-zero, name the reason, leave no target dir, and — the one that matters — not fall through to its cold-start branch. A corrupt-cache bug degrading into an invisible 4x-slower CI job is the failure mode worth pinning down. Skipped when running as root, where mode bits deny nothing. * usage_kb: a directory we cannot read measured as the empty string, which was then spliced into usage_gb's awk program and made it a syntax error at the exact moment something was already going wrong. Now measures 0. Verification: `bash scripts/selftest.sh` — 5 suites, exit 0, 82 assertions (was 75 afterf57e2a6, 63 before). shellcheck over scripts/: no new findings. Measured the cost the reviewer asked about, on ext4, warm cache, 78,554 entries: `cp -al` 3126 ms against 44 ms for one `find | wc -l`. Two counts per attempt is ~2.8% on top of the clone. Not measured on the CI runner's volume. Refs: daniel/gitdan#11, zemyna#911 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Sqh2vscfzisk83VuPVQX9L
This commit is contained in:
@@ -37,13 +37,15 @@
|
||||
# one can truncate a tree. Against the unguarded version this scenario
|
||||
# reproduces a silent partial clone reported as success — 20,328 of
|
||||
# 48,805 entries, `seed: cloned in 1s`, exit 0, seeded-from=base-snapshot.
|
||||
# 9. DEFERRED RECLAMATION — when a consumer is STILL reading after the grace
|
||||
# period, the publisher leaves the rotated-away generation on disk rather
|
||||
# than unlinking a tree under an in-flight walk, and a later publish
|
||||
# sweeps it once the reader is gone. The residual is disk, not a torn
|
||||
# clone.
|
||||
# 10. AN UNREADABLE SOURCE FAILS LOUDLY — the clone reports a distinct
|
||||
# status instead of renaming whatever it managed to produce into place.
|
||||
# 9. AN UNREADABLE SOURCE FAILS LOUDLY — the clone reports a distinct status
|
||||
# instead of renaming whatever it managed to produce into place, and the
|
||||
# seed SCRIPT turns that status into a failed job rather than a silent
|
||||
# cold build. Retries are what make a torn read survivable; exhausting
|
||||
# them must not degrade into "start cold and rebuild everything", which
|
||||
# would turn a corrupt-cache bug into an invisible 4x-slower CI job.
|
||||
# (The publisher's half of the rotation race — deferring reclamation
|
||||
# while a reader is still in flight — lives in
|
||||
# publish-snapshot-selftest.sh, next to the swap it modifies.)
|
||||
set -euo pipefail
|
||||
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
. "$script_dir/cache-lib.sh"
|
||||
@@ -225,38 +227,39 @@ ok "the torn read was detected and reported, not swallowed"
|
||||
ok "no staging, reader-marker or deferred-generation scratch left behind"
|
||||
|
||||
echo
|
||||
echo "=== 9: a reader that outlasts the grace period defers reclamation ==="
|
||||
# A synthetic reader marker stands in for a consumer whose clone is slower
|
||||
# than the grace period. Driving that with a real slow consumer would make the
|
||||
# test's runtime the thing under test; the marker is the whole contract
|
||||
# between the two sides, so holding one IS being a reader.
|
||||
SNAP_NAME="snapshot-$BASE_KEY"
|
||||
date +%s > "$root/.reading-${SNAP_NAME}-slowpoke"
|
||||
make_wide_tree "$root/target-$BASE_KEY" gen3 4
|
||||
CACHE_READ_GRACE_SECONDS=1 bash "$script_dir/publish-snapshot.sh" "$BASE_KEY" "$root" pubDefer > "$scratch/logDefer" 2>&1 \
|
||||
|| { tail -40 "$scratch/logDefer"; fail "publish-snapshot.sh exited non-zero"; }
|
||||
assert_content "$root/$SNAP_NAME/debug/.fingerprint/x/dep-lib-x" gen3 "the new generation was published regardless"
|
||||
deferred=$(find "$root" -maxdepth 1 -name ".publish-old-${BASE_KEY}-*" -print -quit)
|
||||
[ -n "$deferred" ] || fail "the previous generation was unlinked while a reader still held it"
|
||||
ok "the rotated-away generation was left on disk rather than unlinked under a reader"
|
||||
grep -q 'deferring reclamation' "$scratch/logDefer" || fail "the deferral was not reported"
|
||||
ok "the deferral is reported as a warning, not silent"
|
||||
|
||||
rm -f "$root/.reading-${SNAP_NAME}-slowpoke"
|
||||
make_wide_tree "$root/target-$BASE_KEY" gen4 4
|
||||
bash "$script_dir/publish-snapshot.sh" "$BASE_KEY" "$root" pubSweep > "$scratch/logSweep" 2>&1 \
|
||||
|| { tail -40 "$scratch/logSweep"; fail "publish-snapshot.sh exited non-zero"; }
|
||||
[ -z "$(find "$root" -maxdepth 1 -name '.publish-old-*' -print -quit)" ] \
|
||||
|| fail "the deferred generation was never reclaimed"
|
||||
ok "a later publish reclaims the deferred generation once no reader holds it"
|
||||
|
||||
echo
|
||||
echo "=== 10: a source that cannot be read fails loudly ==="
|
||||
echo "=== 9: a source that cannot be read fails loudly ==="
|
||||
rc=0
|
||||
hardlink_clone_into "$root/nosuch-source" "$root/target-nosuch" nosuch-tag > "$scratch/logMissing" 2>&1 || rc=$?
|
||||
[ "$rc" -eq 2 ] || fail "expected status 2 for an unreadable source, got ${rc}"
|
||||
ok "an unreadable source returns the distinct hard-failure status"
|
||||
assert_absent "$root/target-nosuch" "nothing was renamed into place"
|
||||
|
||||
# The status only matters if the script acts on it. A source that exists but
|
||||
# cannot be read exercises the whole path: retries exhaust, the function
|
||||
# returns 2, and seed-target-dir.sh must exit non-zero rather than falling
|
||||
# through to its cold-start branch.
|
||||
if [ "$(id -u)" = "0" ]; then
|
||||
echo "SKIP: running as root — mode bits do not deny access"
|
||||
else
|
||||
UNREADABLE=$(cache_key feat/unreadable)
|
||||
VICTIM=$(cache_key feat/victim)
|
||||
make_tree "$root/snapshot-$UNREADABLE" locked-away
|
||||
chmod 000 "$root/snapshot-$UNREADABLE"
|
||||
rc=0
|
||||
CACHE_CLONE_ATTEMPTS=2 bash "$script_dir/seed-target-dir.sh" \
|
||||
"$VICTIM" "$UNREADABLE" "$root" jobUnread > "$scratch/logUnread" 2>&1 || rc=$?
|
||||
chmod 755 "$root/snapshot-$UNREADABLE"
|
||||
[ "$rc" -ne 0 ] || { tail -20 "$scratch/logUnread"; fail "the seed reported success against a source it could not read"; }
|
||||
ok "the seed exits non-zero when its source cannot be cloned"
|
||||
grep -q 'refusing to build against a partial cache' "$scratch/logUnread" \
|
||||
|| { tail -20 "$scratch/logUnread"; fail "the failure was not reported as such"; }
|
||||
ok "the failure names the reason rather than exiting silently"
|
||||
if grep -q 'starts cold' "$scratch/logUnread"; then
|
||||
tail -20 "$scratch/logUnread"; fail "an unreadable source degraded into a silent cold build"
|
||||
fi
|
||||
ok "it does not degrade into a silent cold build"
|
||||
assert_absent "$root/target-$VICTIM" "no target dir was left behind by the failed seed"
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "seed-target-dir-selftest: ${pass_count} assertions passed"
|
||||
|
||||
Reference in New Issue
Block a user