fix(wake): #941 follow-up — validate WAKE_SNAPSHOT_TS_FUTURE_SLACK before arithmetic (poll-never-fails) #942
@@ -291,10 +291,24 @@ _poll_source() {
|
|||||||
# Cross-host NTP skew of a few seconds is the NORMAL case, so allow a small
|
# Cross-host NTP skew of a few seconds is the NORMAL case, so allow a small
|
||||||
# slack; beyond it, drop the ts (the sha stays: independently verifiable).
|
# slack; beyond it, drop the ts (the sha stays: independently verifiable).
|
||||||
if [ -n "$snap_ts" ]; then
|
if [ -n "$snap_ts" ]; then
|
||||||
local now_s
|
# The OPERATOR's knob gets the same discipline as the adapter's ts: it
|
||||||
|
# is interpolated into $((...)) under set -u, so a non-numeric value
|
||||||
|
# ('300s', '5m', 'abc') would be FATAL to the poll — the one thing this
|
||||||
|
# block must never be. Resolve it ONCE, validate, fall back loudly.
|
||||||
|
local now_s slack
|
||||||
|
slack="${WAKE_SNAPSHOT_TS_FUTURE_SLACK:-300}"
|
||||||
|
if ! printf '%s' "$slack" | grep -Eq '^[0-9]{1,9}$'; then
|
||||||
|
echo "detector.sh: WAKE_SNAPSHOT_TS_FUTURE_SLACK='$slack' is not a plain non-negative integer (seconds) — falling back to 300, poll continues (#940)." >&2
|
||||||
|
slack=300
|
||||||
|
fi
|
||||||
|
# Shape validation is not radix validation: bash reads a leading zero as
|
||||||
|
# OCTAL, so '08'/'09' pass the regex yet are FATAL in $((...)), and
|
||||||
|
# '0300' silently means 192. Force base-10 so the knob means what the
|
||||||
|
# operator wrote (safe: the regex above guarantees pure digits).
|
||||||
|
slack=$((10#$slack))
|
||||||
now_s="$(date +%s)"
|
now_s="$(date +%s)"
|
||||||
if [ "$snap_ts" -gt $((now_s + ${WAKE_SNAPSHOT_TS_FUTURE_SLACK:-300})) ]; then
|
if [ "$snap_ts" -gt $((now_s + slack)) ]; then
|
||||||
echo "detector.sh: source '$kind/$id' snapshot_ts is beyond the ${WAKE_SNAPSHOT_TS_FUTURE_SLACK:-300}s future-skew allowance (ts=$snap_ts now=$now_s) — snapshot_ts DROPPED, poll continues (#940)." >&2
|
echo "detector.sh: source '$kind/$id' snapshot_ts is beyond the ${slack}s future-skew allowance (ts=$snap_ts now=$now_s) — snapshot_ts DROPPED, poll continues (#940)." >&2
|
||||||
snap_ts=""
|
snap_ts=""
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -274,14 +274,32 @@
|
|||||||
# must not sit beyond a future-skew allowance
|
# must not sit beyond a future-skew allowance
|
||||||
# (WAKE_SNAPSHOT_TS_FUTURE_SLACK, default 300 s): a future ts
|
# (WAKE_SNAPSHOT_TS_FUTURE_SLACK, default 300 s): a future ts
|
||||||
# yields a NEGATIVE age — stale-reads-fresher-than-fresh, the
|
# yields a NEGATIVE age — stale-reads-fresher-than-fresh, the
|
||||||
# exact failure class #940 fixes. NOTE for consumers: these fields
|
# exact failure class #940 fixes. The SLACK knob itself is
|
||||||
|
# operator input interpolated into arithmetic under set -u, so it
|
||||||
|
# gets the same discipline (#941 §2 round 2): validated
|
||||||
|
# ^[0-9]{1,9}$, else LOUD fallback to 300 — a malformed knob
|
||||||
|
# ('300s', '5m', 'abc') must never kill the poll, and a negative
|
||||||
|
# one must never invert the guard into deny-all. Shape validation
|
||||||
|
# is NOT radix validation (#942 review): bash reads leading zeros
|
||||||
|
# as OCTAL, so '08'/'09' pass the regex yet are fatal in $((...))
|
||||||
|
# and '0300' silently means 192 — the knob is therefore forced
|
||||||
|
# base-10 (10#) after validation, so it means what the operator
|
||||||
|
# wrote. SKEW GUARANTEE
|
||||||
|
# (stated, not implied): the future-skew check runs against the
|
||||||
|
# DETECTOR's clock; consumer-side age arithmetic runs on the
|
||||||
|
# consumer's. A surviving snapshot_ts is therefore attested only
|
||||||
|
# to within SLACK seconds of the detector's clock, plus whatever
|
||||||
|
# skew the consumer's own clock adds — a small NEGATIVE age at
|
||||||
|
# render is bounded, not impossible; treat age <= 0 as
|
||||||
|
# "effectively current," never as proof of freshness.
|
||||||
|
# NOTE for consumers: these fields
|
||||||
# are ADVISORY and their ABSENCE IS DELIBERATELY NOT DIAGNOSTIC —
|
# are ADVISORY and their ABSENCE IS DELIBERATELY NOT DIAGNOSTIC —
|
||||||
# a pre-#940 adapter and a dropped-as-malformed attestation render
|
# a pre-#940 adapter and a dropped-as-malformed attestation render
|
||||||
# identically (no snapshot_* fields); the drop is loud only in the
|
# identically (no snapshot_* fields); the drop is loud only in the
|
||||||
# detector's own stderr. Do not build load-bearing logic on the
|
# detector's own stderr. Do not build load-bearing logic on the
|
||||||
# absence of these fields.
|
# absence of these fields.
|
||||||
# Changed: detector.sh, digest.sh (+ test-wake-detector.sh
|
# Changed: detector.sh, digest.sh (+ test-wake-detector.sh
|
||||||
# D10/D11/D12, test-wake-digest-quarantine.sh Q10).
|
# D10/D11/D12/D13, test-wake-digest-quarantine.sh Q10).
|
||||||
component=wake
|
component=wake
|
||||||
version=0.6.12
|
version=0.6.12
|
||||||
|
|
||||||
|
|||||||
@@ -588,6 +588,92 @@ EOF
|
|||||||
[ "$(det_seq)" = "3" ] || fail_msg "D12: all three real deltas must still have enqueued, got seq $(det_seq)"
|
[ "$(det_seq)" = "3" ] || fail_msg "D12: all three real deltas must still have enqueued, got seq $(det_seq)"
|
||||||
) && ok
|
) && ok
|
||||||
|
|
||||||
|
echo "== D13: WAKE_SNAPSHOT_TS_FUTURE_SLACK is operator input — a malformed knob must fall back to 300 loudly, never kill the poll or invert the guard =="
|
||||||
|
(
|
||||||
|
WAKE_STATE_HOME="$(fresh_state d13)"
|
||||||
|
export WAKE_STATE_HOME
|
||||||
|
unset WAKE_AGENT
|
||||||
|
stub="$TMP_ROOT/d13stub"
|
||||||
|
mkdir -p "$stub"
|
||||||
|
cat >"$stub/adapter.sh" <<EOF
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -u
|
||||||
|
kind="\$1"; id="\$2"
|
||||||
|
base="$stub/\${kind}_\${id}"
|
||||||
|
[ -f "\$base" ] && cat "\$base"
|
||||||
|
[ -f "\$base.meta" ] && { cat "\$base.meta" >&3; } 2>/dev/null
|
||||||
|
exit 0
|
||||||
|
EOF
|
||||||
|
chmod +x "$stub/adapter.sh"
|
||||||
|
export WAKE_DETECTOR_SOURCE_CMD="$stub/adapter.sh"
|
||||||
|
wl="$TMP_ROOT/d13.json"
|
||||||
|
write_watchlist "$wl" 1
|
||||||
|
export WAKE_WATCH_LIST="$wl"
|
||||||
|
printf 'SHA-AAA\n' >"$stub/repo_r1"
|
||||||
|
printf '## LANE-X\ndecision: hold\n' >"$stub/board_file_b1"
|
||||||
|
"$DET" poll-once >/dev/null 2>&1 || fail_msg "D13: baseline pass failed"
|
||||||
|
goodsha="0123abc4567890def0123abc4567890def012345"
|
||||||
|
# Every sub-case ships a VALID sha + CURRENT ts: the metadata itself is good,
|
||||||
|
# only the operator's knob is broken, so the correct outcome is fallback-and-keep.
|
||||||
|
# (a) '300s' — the natural duration-suffix mistake. Under set -u this used to be
|
||||||
|
# FATAL inside \$((...)): rc=1, wake never fires. Now: loud fallback, ts kept.
|
||||||
|
printf '{"snapshot_sha":"%s","snapshot_ts":%s}\n' "$goodsha" "$(date +%s)" >"$stub/repo_r1.meta"
|
||||||
|
printf 'SHA-BBB\n' >"$stub/repo_r1"
|
||||||
|
err="$(WAKE_SNAPSHOT_TS_FUTURE_SLACK='300s' "$DET" poll-once 2>&1 >/dev/null)"; rc=$?
|
||||||
|
[ "$rc" -eq 0 ] || fail_msg "D13: SLACK='300s' must NEVER fail the poll (rc=$rc)"
|
||||||
|
echo "$err" | grep -qi 'falling back to 300' || fail_msg "D13: malformed slack must be LOUD on stderr [$err]"
|
||||||
|
entry="$("$STORE" drain | tail -1)"
|
||||||
|
echo "$entry" | jq -e --arg s "$goodsha" 'select(.locators.snapshot_sha==$s) | .locators | has("snapshot_ts")' >/dev/null 2>&1 \
|
||||||
|
|| fail_msg "D13: valid metadata must SURVIVE a malformed knob (fallback, not drop) [$entry]"
|
||||||
|
# (b) 'abc' — bare word: under set -u, arithmetic dies on 'abc: unbound variable'.
|
||||||
|
printf '{"snapshot_sha":"%s","snapshot_ts":%s}\n' "$goodsha" "$(date +%s)" >"$stub/repo_r1.meta"
|
||||||
|
printf 'SHA-CCC\n' >"$stub/repo_r1"
|
||||||
|
err="$(WAKE_SNAPSHOT_TS_FUTURE_SLACK='abc' "$DET" poll-once 2>&1 >/dev/null)"; rc=$?
|
||||||
|
[ "$rc" -eq 0 ] || fail_msg "D13: SLACK='abc' must NEVER fail the poll (rc=$rc)"
|
||||||
|
echo "$err" | grep -qi 'falling back to 300' || fail_msg "D13: non-numeric slack must be LOUD on stderr [$err]"
|
||||||
|
entry="$("$STORE" drain | tail -1)"
|
||||||
|
echo "$entry" | jq -e --arg s "$goodsha" 'select(.locators.snapshot_sha==$s) | .locators | has("snapshot_ts")' >/dev/null 2>&1 \
|
||||||
|
|| fail_msg "D13: valid metadata must SURVIVE a non-numeric knob [$entry]"
|
||||||
|
# (c) negative slack — arithmetic would ACCEPT it and silently invert the guard
|
||||||
|
# into deny-all (a CURRENT ts reads as 'future'). Must fall back and keep the ts.
|
||||||
|
printf '{"snapshot_sha":"%s","snapshot_ts":%s}\n' "$goodsha" "$(date +%s)" >"$stub/repo_r1.meta"
|
||||||
|
printf 'SHA-DDD\n' >"$stub/repo_r1"
|
||||||
|
err="$(WAKE_SNAPSHOT_TS_FUTURE_SLACK='-99999999' "$DET" poll-once 2>&1 >/dev/null)"; rc=$?
|
||||||
|
[ "$rc" -eq 0 ] || fail_msg "D13: negative SLACK must NEVER fail the poll (rc=$rc)"
|
||||||
|
echo "$err" | grep -qi 'falling back to 300' || fail_msg "D13: negative slack must be LOUD on stderr [$err]"
|
||||||
|
entry="$("$STORE" drain | tail -1)"
|
||||||
|
echo "$entry" | jq -e --arg s "$goodsha" 'select(.locators.snapshot_sha==$s) | .locators | has("snapshot_ts")' >/dev/null 2>&1 \
|
||||||
|
|| fail_msg "D13: negative slack must NOT invert the guard into deny-all [$entry]"
|
||||||
|
# (d2-pre) ZERO-PADDED knobs — shape-valid, radix-hostile. '08' passes the
|
||||||
|
# regex but is fatal octal in \$((...)) without the 10# normalization; '0300'
|
||||||
|
# silently means 192 (octal), so a ts +250s ahead would be WRONGLY dropped.
|
||||||
|
# With 10#: '08' means 8 and survives; '0300' means 300 and the +250s ts is KEPT.
|
||||||
|
printf '{"snapshot_sha":"%s","snapshot_ts":%s}\n' "$goodsha" "$(date +%s)" >"$stub/repo_r1.meta"
|
||||||
|
printf 'SHA-DD2\n' >"$stub/repo_r1"
|
||||||
|
err="$(WAKE_SNAPSHOT_TS_FUTURE_SLACK='08' "$DET" poll-once 2>&1 >/dev/null)"; rc=$?
|
||||||
|
[ "$rc" -eq 0 ] || fail_msg "D13: SLACK='08' (octal-fatal without 10#) must NEVER fail the poll (rc=$rc) [$err]"
|
||||||
|
entry="$("$STORE" drain | tail -1)"
|
||||||
|
echo "$entry" | jq -e --arg s "$goodsha" 'select(.locators.snapshot_sha==$s) | .locators | has("snapshot_ts")' >/dev/null 2>&1 \
|
||||||
|
|| fail_msg "D13: SLACK='08' with a current ts must keep the metadata [$entry]"
|
||||||
|
printf '{"snapshot_sha":"%s","snapshot_ts":%s}\n' "$goodsha" "$(( $(date +%s) + 250 ))" >"$stub/repo_r1.meta"
|
||||||
|
printf 'SHA-DD3\n' >"$stub/repo_r1"
|
||||||
|
err="$(WAKE_SNAPSHOT_TS_FUTURE_SLACK='0300' "$DET" poll-once 2>&1 >/dev/null)"; rc=$?
|
||||||
|
[ "$rc" -eq 0 ] || fail_msg "D13: SLACK='0300' must not fail the poll (rc=$rc)"
|
||||||
|
entry="$("$STORE" drain | tail -1)"
|
||||||
|
echo "$entry" | jq -e --arg s "$goodsha" 'select(.locators.snapshot_sha==$s) | .locators | has("snapshot_ts")' >/dev/null 2>&1 \
|
||||||
|
|| fail_msg "D13: SLACK='0300' must mean 300 (decimal), so a +250s ts is KEPT — octal 192 would have dropped it [$entry]"
|
||||||
|
# (d) a VALID knob is still honored: slack=0 with a ts 60s ahead -> future-skew drop.
|
||||||
|
printf '{"snapshot_sha":"%s","snapshot_ts":%s}\n' "$goodsha" "$(( $(date +%s) + 60 ))" >"$stub/repo_r1.meta"
|
||||||
|
printf 'SHA-EEE\n' >"$stub/repo_r1"
|
||||||
|
err="$(WAKE_SNAPSHOT_TS_FUTURE_SLACK='0' "$DET" poll-once 2>&1 >/dev/null)"; rc=$?
|
||||||
|
[ "$rc" -eq 0 ] || fail_msg "D13: valid SLACK=0 must not fail the poll (rc=$rc)"
|
||||||
|
echo "$err" | grep -qi 'future-skew' || fail_msg "D13: a valid tightened slack must still reject a future ts [$err]"
|
||||||
|
entry="$("$STORE" drain | tail -1)"
|
||||||
|
echo "$entry" | jq -e --arg s "$goodsha" 'select(.locators.snapshot_sha==$s) | .locators | has("snapshot_ts") | not' >/dev/null 2>&1 \
|
||||||
|
|| fail_msg "D13: valid SLACK=0 must drop the future ts but keep the sha [$entry]"
|
||||||
|
[ "$(det_seq)" = "6" ] || fail_msg "D13: all six real deltas must still have enqueued, got seq $(det_seq)"
|
||||||
|
) && ok
|
||||||
|
|
||||||
echo
|
echo
|
||||||
if [ -s "$FAILFILE" ]; then
|
if [ -s "$FAILFILE" ]; then
|
||||||
echo "wake detector harness: FAILED ($(grep -c . "$FAILFILE") assertion(s))" >&2
|
echo "wake detector harness: FAILED ($(grep -c . "$FAILFILE") assertion(s))" >&2
|
||||||
|
|||||||
Reference in New Issue
Block a user