Gaurav Dubey
a89b32c2b5
fix(clv2): serialize observer signal-counter to stop dropped increments ( #2372 )
...
observe.sh bumps the SIGUSR1 throttle counter in
${PROJECT_DIR}/.observer-signal-counter with an unlocked read-modify-write.
The hook runs on every tool call, so concurrent invocations read the same
value, both increment, and lose a write, signaling the observer at
unpredictable intervals and defeating the #521 throttle.
Serialize the read-modify-write under a lock, and only ever bump the counter
while that lock is held:
- Prefer flock with a bounded -w wait (the OS auto-releases it when the fd
closes or the process dies, so there is no stale lock and no lost increment);
on a timeout the tick is skipped rather than bumped unlocked.
- Fall back to an atomic mkdir lock on platforms without flock, with a bounded
spin. An EXIT trap cleans up on normal completion; INT/TERM traps release the
lock and exit, so a signal cannot drop the lock and then continue the
read-modify-write without ownership. If the lock cannot be acquired in the
budget the tick is skipped rather than raced. No hand-rolled PID stale-reclaim
(which is racy and can delete a live re-acquirer's lock).
- Guard the counter read against a corrupt (non-integer) file that would abort
the hook under set -e.
Add tests/hooks/observe-signal-counter-race.test.js: 20 concurrent observe.sh
invocations must not lose increments (exact under flock; at most one dropped on
the best-effort mkdir fallback), the runner rejects on any hook execution
failure or hang, plus content guards for the lock and the corrupt-counter
handling.
Fixes #2296
2026-06-29 18:43:23 -07:00
..
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 17:58:57 +05:30
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:30 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:58:42 +02:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-15 14:21:28 -04:00
2026-06-11 21:12:21 +09:00
2026-06-15 14:09:17 -04:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:22 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:30 -07:00
2026-06-11 21:58:42 +02:00
2026-06-11 21:58:42 +02:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:43:23 -07:00
2026-06-11 21:12:21 +09:00
2026-06-18 16:49:58 -04:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:27 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:16 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-16 02:15:43 -04:00
2026-06-11 21:12:21 +09:00
2026-02-24 14:39:25 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:24 -07:00
2026-06-16 09:17:18 +08:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-04-05 13:30:55 -07:00
2026-06-11 21:12:21 +09:00
2026-06-07 13:26:45 +08:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-02-24 14:39:25 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:19 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 11:39:26 -04:00
2026-06-11 21:12:21 +09:00
2026-05-12 01:47:05 -04:00
2026-05-12 01:47:05 -04:00
2026-06-07 16:05:28 +08:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:30 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-04-02 17:09:21 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-29 18:38:30 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-15 14:09:17 -04:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-15 14:09:17 -04:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-15 14:09:17 -04:00
2026-06-11 21:12:21 +09:00
2026-02-24 14:39:25 +09:00
2026-06-11 21:12:21 +09:00
2026-02-17 17:04:31 +02:00
2026-06-07 12:43:04 -04:00
2026-06-29 18:38:33 -07:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-15 14:09:17 -04:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00
2026-03-29 21:21:18 -04:00
2026-06-11 21:12:21 +09:00
2026-06-12 19:14:31 +08:00
2026-06-15 14:09:17 -04:00
2026-06-11 21:12:21 +09:00
2026-06-11 21:12:21 +09:00