Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license
This commit is contained in:
@@ -0,0 +1,355 @@
|
||||
"""Per-session turn lease — serializes the [load history → run → flush] region.
|
||||
|
||||
Why this exists (#64934): the gateway's busy guards are keyed by ROUTING KEY
|
||||
(``_active_sessions`` in the adapter, ``_running_agents`` in the runner), but
|
||||
the durable transcript is owned by SESSION_ID — and ``switch_session()`` makes
|
||||
the key→id mapping many-to-one (``/resume`` of a named session from a second
|
||||
chat/topic, CLI-continuity rebinding, async-delegation completion pinning,
|
||||
Telegram topic-binding tip-walks). Two routing keys mapped to one session_id
|
||||
run concurrent turns on two different agent objects, so no per-key guard ever
|
||||
sees the collision. The two turns then interleave their flushes on one
|
||||
transcript: rows persist in completion order instead of arrival order, the
|
||||
identity-marker dedup over shared history dicts can swallow a row outright,
|
||||
and the second turn runs on a history base that never saw the first turn's
|
||||
exchange — leaving a permanent ``user;user`` alternation wedge that
|
||||
``repair_message_sequence`` re-repairs on every request forever.
|
||||
|
||||
The lease closes that route by serializing per RESOLVED session_id: it is
|
||||
acquired after session resolution is final (post ``switch_session``/tip-walk),
|
||||
immediately before the transcript load, and released in the dispatch layer's
|
||||
``finally`` on every exit path. Same-key messages never reach the acquisition
|
||||
point while a turn runs (both routing-key guards hold them), so the lock is
|
||||
uncontended everywhere except the alias-key route — where the second turn now
|
||||
waits for the first turn's flush and logs one WARNING naming the session and
|
||||
both routing keys (pairing with the cross-agent tripwire in
|
||||
``agent/agent_runtime_helpers.note_turn_start``).
|
||||
|
||||
Safety properties:
|
||||
|
||||
- **Generation-scoped, identity-checked release.** A token records its owner
|
||||
(routing key, run generation) and release only frees the lease when that
|
||||
exact token is the current holder — a stale unwind can never release a
|
||||
newer turn's lease (the #28686 ownership lesson applied). Release is
|
||||
idempotent.
|
||||
- **Fail-closed on timeout.** A timed-out waiter raises
|
||||
:class:`TurnLeaseTimeoutError` and must be rejected by the dispatch layer
|
||||
with a visible resend notice. It never runs concurrently against the
|
||||
still-held lease and therefore cannot defeat the serialization invariant.
|
||||
- **Bounded registry.** The per-session lease map is size-capped; eviction
|
||||
only ever removes idle (unheld, uncontended) entries, never a live lease.
|
||||
|
||||
Known limits (deliberate, flagged on #64934):
|
||||
|
||||
- A CLI process sharing the session via CLI-continuity is outside any
|
||||
in-process lock — that pair needs a DB-level lease (separate design).
|
||||
- Mid-turn compression rotation leaves a small alias window: the tip-walk can
|
||||
resolve a fresh child id while the parent-holding turn is still in flight.
|
||||
The mid-turn binding-sync sites are the right place to alias the lease in a
|
||||
follow-up.
|
||||
"""
|
||||
|
||||
import asyncio
|
||||
import logging
|
||||
import time
|
||||
from typing import Dict, Optional
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
# Upper bound on tracked per-session leases. Idle entries (no holder or
|
||||
# pending acquire) are evicted oldest-first once the cap is reached; live
|
||||
# leases are never evicted, so a burst of distinct sessions can transiently
|
||||
# exceed the cap rather than break serialization.
|
||||
DEFAULT_MAX_LEASES = 512
|
||||
|
||||
# Fallback wait (seconds) when the caller passes no positive timeout. The
|
||||
# gateway carries this independently through its internal
|
||||
# HERMES_TURN_LEASE_TIMEOUT bridge because lease contention is not agent
|
||||
# inactivity. A caller that reaches this bound must reject the turn rather than
|
||||
# run it concurrently with the holder.
|
||||
# Keep contention fail-closed, but never pin a sequential platform updater for
|
||||
# minutes. A waiter that cannot acquire promptly is rejected with a resend
|
||||
# notice; it is never authorized to run without serialization.
|
||||
DEFAULT_LEASE_WAIT = 5.0
|
||||
|
||||
|
||||
class TurnLeaseTimeoutError(TimeoutError):
|
||||
"""The session lease stayed held for the caller's full wait budget.
|
||||
|
||||
This is a fail-closed signal: the caller did not acquire the lease and
|
||||
must not enter the transcript load/run/flush region for this turn.
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
session_id: str,
|
||||
*,
|
||||
owner_key: str,
|
||||
generation: int,
|
||||
wait_seconds: float,
|
||||
) -> None:
|
||||
self.session_id = session_id
|
||||
self.owner_key = owner_key
|
||||
self.generation = generation
|
||||
self.wait_seconds = wait_seconds
|
||||
super().__init__(
|
||||
f"turn lease wait timed out after {wait_seconds:.0f}s on session "
|
||||
f"{session_id} for routing key {owner_key} (gen {generation})"
|
||||
)
|
||||
|
||||
|
||||
class TurnLeaseToken:
|
||||
"""Handle returned by :meth:`SessionTurnLeaseRegistry.acquire`.
|
||||
|
||||
A timeout raises :class:`TurnLeaseTimeoutError` instead of returning a
|
||||
token, so every token handed out is a held lease. ``released`` makes
|
||||
release idempotent.
|
||||
"""
|
||||
|
||||
__slots__ = ("session_id", "owner_key", "generation", "released")
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
session_id: str,
|
||||
owner_key: str,
|
||||
generation: int,
|
||||
) -> None:
|
||||
self.session_id = session_id
|
||||
self.owner_key = owner_key
|
||||
self.generation = generation
|
||||
self.released = False
|
||||
|
||||
def __repr__(self) -> str: # pragma: no cover - debug aid
|
||||
return (
|
||||
f"TurnLeaseToken(session_id={self.session_id!r}, "
|
||||
f"owner_key={self.owner_key!r}, generation={self.generation}, "
|
||||
f"released={self.released})"
|
||||
)
|
||||
|
||||
|
||||
class _SessionLease:
|
||||
__slots__ = (
|
||||
"lock",
|
||||
"holder",
|
||||
"acquired_at",
|
||||
"last_used",
|
||||
"pending_acquires",
|
||||
)
|
||||
|
||||
def __init__(self) -> None:
|
||||
self.lock = asyncio.Lock()
|
||||
self.holder: Optional[TurnLeaseToken] = None
|
||||
self.acquired_at = 0.0
|
||||
self.last_used = time.time()
|
||||
self.pending_acquires = 0
|
||||
|
||||
@property
|
||||
def idle(self) -> bool:
|
||||
"""True when this lease can be evicted: nobody holds or awaits it."""
|
||||
return (
|
||||
self.holder is None
|
||||
and not self.lock.locked()
|
||||
and self.pending_acquires == 0
|
||||
)
|
||||
|
||||
|
||||
class SessionTurnLeaseRegistry:
|
||||
"""Asyncio lease per resolved session_id serializing transcript turns.
|
||||
|
||||
Process-local and single-event-loop by design — the same visibility scope
|
||||
as the routing-key guards it extends. All methods must be called from the
|
||||
gateway's event loop.
|
||||
"""
|
||||
|
||||
def __init__(self, max_entries: int = DEFAULT_MAX_LEASES) -> None:
|
||||
self._leases: Dict[str, _SessionLease] = {}
|
||||
self._max_entries = max(1, int(max_entries))
|
||||
|
||||
def __len__(self) -> int:
|
||||
return len(self._leases)
|
||||
|
||||
def _get_or_create(self, session_id: str) -> _SessionLease:
|
||||
lease = self._leases.get(session_id)
|
||||
if lease is None:
|
||||
self._evict_idle()
|
||||
lease = _SessionLease()
|
||||
self._leases[session_id] = lease
|
||||
lease.last_used = time.time()
|
||||
return lease
|
||||
|
||||
def _evict_idle(self) -> None:
|
||||
"""Drop oldest idle entries so a new lease fits under the cap.
|
||||
|
||||
Never evicts a held or contended lease — correctness beats the cap.
|
||||
"""
|
||||
overflow = len(self._leases) - self._max_entries + 1
|
||||
if overflow <= 0:
|
||||
return
|
||||
idle_ids = sorted(
|
||||
(sid for sid, lease in self._leases.items() if lease.idle),
|
||||
key=lambda sid: self._leases[sid].last_used,
|
||||
)
|
||||
for sid in idle_ids[:overflow]:
|
||||
self._leases.pop(sid, None)
|
||||
|
||||
async def acquire(
|
||||
self,
|
||||
session_id: str,
|
||||
*,
|
||||
owner_key: str,
|
||||
generation: int,
|
||||
timeout: Optional[float] = None,
|
||||
) -> Optional[TurnLeaseToken]:
|
||||
"""Acquire the turn lease for ``session_id``, waiting if held.
|
||||
|
||||
Returns a held :class:`TurnLeaseToken`. Raises
|
||||
:class:`TurnLeaseTimeoutError` when the wait budget expires; the caller
|
||||
must reject rather than enter the serialized region. Returns ``None``
|
||||
for a falsy ``session_id``.
|
||||
"""
|
||||
if not session_id:
|
||||
return None
|
||||
wait = float(timeout) if timeout and timeout > 0 else DEFAULT_LEASE_WAIT
|
||||
token = TurnLeaseToken(session_id, owner_key, int(generation))
|
||||
lease = self._get_or_create(session_id)
|
||||
|
||||
if lease.lock.locked():
|
||||
holder = lease.holder
|
||||
logger.warning(
|
||||
"turn lease contention on session %s: routing key %s (gen %s) "
|
||||
"waiting behind in-flight turn held by routing key %s (gen %s, "
|
||||
"held %.0fs) — two routing keys are mapped to one session_id "
|
||||
"(#64934); serializing this turn behind the previous turn's "
|
||||
"flush",
|
||||
session_id,
|
||||
owner_key,
|
||||
generation,
|
||||
holder.owner_key if holder else "?",
|
||||
holder.generation if holder else "?",
|
||||
time.time() - lease.acquired_at if lease.acquired_at else -1.0,
|
||||
)
|
||||
|
||||
# Lock.release() wakes a waiter while leaving the lock momentarily
|
||||
# unlocked. Track every in-progress acquire across that handoff so
|
||||
# eviction cannot orphan the old lock and create a second lock for the
|
||||
# same session. Count even apparently-uncontended acquires: wait_for()
|
||||
# may schedule them before the underlying lock coroutine runs.
|
||||
lease.pending_acquires += 1
|
||||
try:
|
||||
await asyncio.wait_for(lease.lock.acquire(), timeout=wait)
|
||||
except asyncio.TimeoutError:
|
||||
holder = lease.holder
|
||||
logger.error(
|
||||
"turn lease wait timed out after %.0fs on session %s "
|
||||
"(waiter: routing key %s gen %s; holder: routing key %s "
|
||||
"gen %s) — failing closed: refusing to run this turn "
|
||||
"UNSERIALIZED against the still-held lease",
|
||||
wait,
|
||||
session_id,
|
||||
owner_key,
|
||||
generation,
|
||||
holder.owner_key if holder else "?",
|
||||
holder.generation if holder else "?",
|
||||
)
|
||||
raise TurnLeaseTimeoutError(
|
||||
session_id,
|
||||
owner_key=owner_key,
|
||||
generation=generation,
|
||||
wait_seconds=wait,
|
||||
) from None
|
||||
finally:
|
||||
lease.pending_acquires -= 1
|
||||
|
||||
# The lock is held and there is no await before holder publication, so
|
||||
# the lease cannot become evictable after the pending count is cleared.
|
||||
lease.holder = token
|
||||
lease.acquired_at = time.time()
|
||||
lease.last_used = lease.acquired_at
|
||||
return token
|
||||
|
||||
def rebind(self, token: Optional[TurnLeaseToken], new_session_id: str) -> bool:
|
||||
"""Alias a HELD lease onto ``new_session_id`` after mid-turn rotation.
|
||||
|
||||
Compression can rotate the durable session_id while a turn is in
|
||||
flight (session-hygiene pre-compression, in-agent compression). The
|
||||
turn's flush then targets the NEW id — so the serialization boundary
|
||||
must follow it, or an alias routing key resolving the new id (e.g. a
|
||||
topic tip-walk landing on the fresh child) could start a concurrent
|
||||
turn the lease never sees. This closes the rotation-alias window
|
||||
flagged on #64934.
|
||||
|
||||
Mechanism: the SAME ``_SessionLease`` object is registered under the
|
||||
new id (the old mapping stays until it goes idle and is evicted), so
|
||||
acquirers on either id serialize against one lock — no lock state is
|
||||
moved, no asyncio internals are touched. Only the current holder can
|
||||
rebind (identity-checked like release), and the token follows to the
|
||||
new id so release frees the shared object.
|
||||
|
||||
Edge: if the new id already has a live lease of its own (another
|
||||
turn is running on the target session), the two serialization
|
||||
domains cannot be merged mid-wait — log loudly and keep the token on
|
||||
the old id. Fail-open, never deadlock: a holder cannot wait mid-turn.
|
||||
"""
|
||||
if (
|
||||
token is None
|
||||
or token.released
|
||||
or not new_session_id
|
||||
or new_session_id == token.session_id
|
||||
):
|
||||
return False
|
||||
lease = self._leases.get(token.session_id)
|
||||
if lease is None or lease.holder is not token:
|
||||
return False
|
||||
|
||||
existing = self._leases.get(new_session_id)
|
||||
if existing is not None and existing is not lease and not existing.idle:
|
||||
holder = existing.holder
|
||||
logger.warning(
|
||||
"turn lease rebind blocked: session %s rotated to %s mid-turn "
|
||||
"(holder: routing key %s gen %s) but the target session's "
|
||||
"lease is already live (holder: routing key %s gen %s) — "
|
||||
"keeping the lease on the old id; transcript writes on %s "
|
||||
"may interleave (#64934 rotation-alias edge)",
|
||||
token.session_id,
|
||||
new_session_id,
|
||||
token.owner_key,
|
||||
token.generation,
|
||||
holder.owner_key if holder else "?",
|
||||
holder.generation if holder else "?",
|
||||
new_session_id,
|
||||
)
|
||||
return False
|
||||
|
||||
self._leases[new_session_id] = lease
|
||||
lease.last_used = time.time()
|
||||
token.session_id = new_session_id
|
||||
return True
|
||||
|
||||
def release(self, token: Optional[TurnLeaseToken]) -> bool:
|
||||
"""Release ``token``'s lease. Idempotent; ownership-checked.
|
||||
|
||||
Returns True only when this exact token was the current holder and
|
||||
the lock was freed. A re-release or a stale token whose slot has
|
||||
since been granted to a newer turn are both safe no-ops — a stale
|
||||
unwind can never release a newer turn's lease.
|
||||
"""
|
||||
if token is None or token.released:
|
||||
return False
|
||||
token.released = True
|
||||
lease = self._leases.get(token.session_id)
|
||||
if lease is None:
|
||||
return False
|
||||
if lease.holder is not token:
|
||||
logger.debug(
|
||||
"turn lease release skipped on session %s: token (key %s "
|
||||
"gen %s) is not the current holder",
|
||||
token.session_id,
|
||||
token.owner_key,
|
||||
token.generation,
|
||||
)
|
||||
return False
|
||||
lease.holder = None
|
||||
lease.acquired_at = 0.0
|
||||
lease.last_used = time.time()
|
||||
if lease.lock.locked():
|
||||
lease.lock.release()
|
||||
return True
|
||||
Reference in New Issue
Block a user