bootstrap.py 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511
  1. """CPython bootstrap for dsh-code-runtime-python.
  2. Reads a :class:`BootMessage` on fd 3, applies resource limits and log capture,
  3. reads a :class:`RunMessage`, runs the model program as the body of an async
  4. function (top-level ``await`` and ``return`` both work; the returned value is
  5. the completion), and posts a terminal :class:`DoneMessage`. The program calls
  6. host functions through the ``tools`` (or other namespace) proxy, whose attribute
  7. and subscript access return awaitables that ride binding messages over fd 3.
  8. This module runs under ``python3 -I`` with an empty environment and
  9. ``sys.path`` containing only its own directory.
  10. """
  11. from __future__ import annotations
  12. import asyncio
  13. import ast
  14. import io
  15. import json
  16. import math
  17. import os
  18. import re
  19. import resource
  20. import signal
  21. import sys
  22. import threading
  23. import traceback
  24. from decimal import Context, Decimal
  25. # The float encoder must NOT depend on the process-global decimal context: a
  26. # legitimate program may set `getcontext().prec = 2` (silently rounding the
  27. # completion value's digits) or `traps[Inexact] = True` (making the encode
  28. # raise, misclassifying a successful run as an exception). A fixed context with
  29. # prec=28 (more than the 17 significant digits a double needs) makes the
  30. # normalize() spelling decision context-independent.
  31. _FLOAT_CONTEXT = Context(prec=28)
  32. from pathlib import Path
  33. from typing import Any
  34. # ``python3 -I`` (isolated) drops the script directory from ``sys.path`` so
  35. # the sibling ``protocol.py`` is invisible by default. Restore it explicitly
  36. # before importing.
  37. sys.path.insert(0, str(Path(__file__).resolve().parent))
  38. from protocol import PROTOCOL_FD, log_truncation_marker # noqa: E402
  39. # Read size for the async fd-3 reader. One `os.read` returns whatever the pipe
  40. # holds, so this only bounds a single syscall's copy, not a frame: a larger frame
  41. # simply takes more reads. 64 KiB matches the usual pipe capacity.
  42. _READ_CHUNK_BYTES = 65536
  43. # Module-level captures for the done-frame LAST-resort fallback. This bootstrap IS
  44. # ``__main__``, so ``import __main__; __main__.os = ...`` would rebind ``os.write``
  45. # at call time inside ``ProtocolChannel.write_encoded``. These module-level names
  46. # are the RAW primitive for the fallback; they are BOUND INTO ``_run`` LOCALS
  47. # before the program runs (see ``send_done``), which is what makes a one-line
  48. # rebind unable to change which write the fallback uses — the module global here
  49. # is itself reachable by ``__main__._os_write = boom``, so the immunity lives in
  50. # the ``_run`` frame-local binding, not in the module global.
  51. _os_write = os.write
  52. _memoryview = memoryview
  53. # A fixed, pre-encoded done frame for the fallback. It carries no live model
  54. # value, so it can always be written even when a transitive name (a ``_dump_*``
  55. # helper or ``os``) has been rebound and the normal encode/write threw. The
  56. # message is the fixed literal ``<unrenderable>`` — distinct from the failure
  57. # reporter's ``_UNRENDERABLE_DIAGNOSTIC`` text; the host renders the run as an
  58. # exception rather than a worker-exit, which is the honest verdict for a settled
  59. # run whose reporting was sabotaged. The bytes are JSON-valid and
  60. # newline-terminated.
  61. _FALLBACK_DONE_FRAME = b'{"type":"done","error":{"kind":"exception","message":"<unrenderable>"}}\n'
  62. # Code-unit ceiling on the exception class name interpolated into the LAST-resort
  63. # failure diagnostic. A metaclass `__name__` property can return any length, and
  64. # that construction runs outside the guard that would otherwise absorb a
  65. # MemoryError, so the name is sliced before it is copied. Generous enough that no
  66. # real class name is touched.
  67. _MAX_FALLBACK_NAME_CHARS = 200
  68. # Mirror of the host's output-budget/address-space gate (src/index.ts's
  69. # OUTPUT_BUDGET_WORST_CASE_ADDRESS_SPACE_MULTIPLE and INTERPRETER_BASELINE_BYTES),
  70. # re-applied against the EFFECTIVE RLIMIT_AS after inheritance clamping. An astral
  71. # character is one character but ~4 bytes of str storage and ~4 UTF-8 bytes, and
  72. # three such copies are live at the peak — the caller's write argument, the line
  73. # slice or joined pending handed to push, and the encode copy push takes — so a
  74. # budget's worst-case peak is twelve times its byte count; the interpreter's own
  75. # footprint is reserved on top. Kept in sync with the host constants by the shared
  76. # reasoning, not a wire field.
  77. _OUTPUT_BUDGET_WORST_CASE_MULTIPLE = 12
  78. _INTERPRETER_BASELINE_BYTES = 64 * 1024 * 1024
  79. # ---------------------------------------------------------------------------
  80. # Log buffer — Python-side ledger for captured text.
  81. # ---------------------------------------------------------------------------
  82. class LogBuffer:
  83. """Ordered text capture under one shared byte budget.
  84. Once the budget is exhausted the buffer emits exactly one in-band
  85. truncation marker via ``sink`` and silently drops everything after. The
  86. cap is a blast-radius bound; "how much was lost" intentionally stays
  87. unmeasured.
  88. """
  89. def __init__(self, max_bytes: int, sink) -> None:
  90. self._max_bytes = max_bytes
  91. # The ledger starts one byte below max_bytes: each entry is charged its
  92. # JSON-string cost plus one separator byte, and the serialized outer
  93. # logs array adds one more byte of envelope (two brackets and n-1 commas
  94. # over n entries' separators), so a result that exactly exhausts the
  95. # ledger serializes to exactly max_bytes; WITHOUT the reserved byte it
  96. # would serialize to max_bytes + 1. Reserving that byte keeps an
  97. # admitted result within the configured cap; the truncation-marker entry
  98. # is envelope, not payload, and rides uncharged (``_max_bytes`` stays the
  99. # configured value for the marker's message text).
  100. self._remaining = max_bytes - 1
  101. self._truncated = False
  102. # True while an `open` (unterminated-flush) entry is being accumulated:
  103. # continuation fragments bill only their CONTENT (no quotes — they ride
  104. # on the first fragment — and no separator), so a merged entry's wire
  105. # cost is billed exactly once, split across its fragments, matching the
  106. # host ledger.
  107. self._open_started = False
  108. # Re-entrant so a caller may hold it across a compound read-modify-write
  109. # (``_LogStream.write`` reads ``remaining`` several times and then calls
  110. # ``push`` while still holding it). One lock is shared by this buffer and
  111. # every stream that funnels into it: model code may start daemon threads
  112. # that keep calling ``print`` after the program body returns, and the
  113. # settlement ``flush_line`` on the main coroutine reads and mutates the
  114. # same ``_pending``/ledger state. Without a shared lock the flush could
  115. # interleave with a concurrent ``write`` — dropping or double-counting a
  116. # line, or costing the ``done`` frame on a mangled ledger. Fixing which
  117. # callable runs (binding ``out_stream.flush_line``) does not fix what it
  118. # reads.
  119. self._lock = threading.RLock()
  120. # ``sink(text, truncated=False)``. The marker is emitted with
  121. # ``truncated=True`` so the host can stop its own capture at the same
  122. # point rather than treating the marker as ordinary program output: the
  123. # two ledgers exhaust independently, and one entry larger than
  124. # ``max_bytes`` sends only the marker while the host budget is still
  125. # nearly empty.
  126. self._sink = sink
  127. @property
  128. def lock(self) -> "threading.RLock":
  129. """The shared re-entrant lock guarding this ledger and its streams' buffers."""
  130. return self._lock
  131. @property
  132. def remaining(self) -> int:
  133. """Serialized bytes still admissible; zero once truncated (streams use this to bound their own buffering, where a character count is a valid lower bound)."""
  134. return 0 if self._truncated else self._remaining
  135. def push(self, text: str, open: bool = False) -> None:
  136. with self._lock:
  137. self._push_locked(text, open)
  138. def _push_locked(self, text: str, open: bool = False) -> None:
  139. if self._truncated:
  140. return
  141. # Cheap lower bound FIRST: one char is at least one UTF-8 byte and the
  142. # JSON form adds two quotes plus the separator, so a single print() far
  143. # above the budget truncates without ever encoding it — the full encode
  144. # would allocate a second equally large string and could turn a
  145. # truncatable log into an RLIMIT_AS death.
  146. if (len(text) + 3 if not self._open_started else len(text)) > self._remaining:
  147. self._truncated = True
  148. self._sink(log_truncation_marker(self._max_bytes), truncated=True)
  149. return
  150. # A model print() can emit a lone surrogate; strict UTF-8 throws on it
  151. # here. Replace it rather than escaping it the way :func:`_dump_string`
  152. # preserves one inside a completion VALUE: log text is already a
  153. # truncatable, substituting channel (the byte cap replaces the tail with
  154. # a marker), and the ledger below charges the RAW UTF-8 bytes, which
  155. # would undercharge the six-byte escape by half. Bounded: the text
  156. # passed the length check, so this encodes at most ~4x remaining.
  157. try:
  158. raw = text.encode("utf-8")
  159. except UnicodeEncodeError:
  160. raw = text.encode("utf-8", errors="replace")
  161. text = raw.decode("utf-8")
  162. # Charge the SERIALIZED cost — the JSON string form's bytes plus one
  163. # separator byte — exactly as the host ledger does. Charging the raw
  164. # UTF-8 length instead undercharges control-heavy text, whose JSON
  165. # escaping expands it up to sixfold (a NUL costs one raw byte but six
  166. # as its ``\uXXXX`` escape): a NUL flood sized to fit ``maxLogBytes``
  167. # raw would serialize to roughly six times the shared cap, and the child
  168. # could then die on RLIMIT_AS (reported host-side as ``worker-exit``)
  169. # instead of emitting the truncation marker. The +1 also floors an empty
  170. # entry above zero, so a flood of blank ``print()`` lines exhausts the
  171. # budget instead of emitting unbounded zero-cost log frames.
  172. # Split billing for a merged entry: the FIRST fragment pays the full
  173. # JSON-string cost plus the separator; every later fragment — a
  174. # continuation OR the closing frame (it is the merged entry's tail, not
  175. # a new entry) — pays only its content, since the quotes and separator
  176. # were billed on the first fragment. A standalone closed entry (no open
  177. # in progress) pays the full cost as before.
  178. if self._open_started:
  179. cost = _json_string_cost(raw) - 2
  180. if cost < 0:
  181. cost = 0
  182. else:
  183. cost = _json_string_cost(raw) + 1
  184. if cost > self._remaining:
  185. self._truncated = True
  186. self._sink(log_truncation_marker(self._max_bytes), truncated=True)
  187. return
  188. self._remaining -= cost
  189. if open:
  190. self._open_started = True
  191. else:
  192. self._open_started = False
  193. self._sink(text, open=open)
  194. class _LogStream(io.TextIOBase):
  195. """A newline-coalescing text stream backed by a :class:`LogBuffer`.
  196. Installed as ``sys.stdout`` / ``sys.stderr`` before executing the model
  197. program. ``print(...)`` calls ``write`` once per argument, separator, and
  198. newline, so a raw one-push-per-write stream would emit
  199. ``["a", " ", "b", "\\n"]`` for ``print("a", "b")`` — and Code Mode renders
  200. ``logs`` with ``join('\\n')``, turning that into spurious blank lines. This
  201. stream instead buffers writes and pushes one LogBuffer entry per completed
  202. LINE (the text up to each ``\\n``, newline stripped), so the rendered join
  203. reproduces ``a b``. Any unterminated tail is flushed by :meth:`flush_line`
  204. after the program settles.
  205. """
  206. def __init__(self, logs: LogBuffer) -> None:
  207. super().__init__()
  208. self._logs = logs
  209. # list-of-chunks, joined only at a newline or flush: repeated
  210. # ``print("x", end="")`` must not concatenate quadratically.
  211. self._pending: list[str] = []
  212. self._pending_blocks: list[str] = []
  213. self._pending_chars = 0
  214. # A newline-free drip must not accumulate one list slot per ``write``:
  215. # under a large ``maxLogBytes`` the list-of-fragments pointer array and
  216. # the per-fragment str objects cost host memory well before the byte
  217. # budget is reached, and a 25 M single-character drip would OOM on its
  218. # own accounting (plus the same-size list ``_push_bounded_prefix`` then
  219. # builds). Past this many fragments the chunks are SEALED into a
  220. # ``_pending_blocks`` entry (the character count is unchanged), bounding
  221. # the live fragment count exactly as the host-side ``captureStray`` does
  222. # with its ``MAX_PENDING_CHUNKS``. The seal is INCREMENTAL: only the
  223. # current ``_pending`` fragments (≤ cap) are joined into one block, not
  224. # the whole accumulated buffer, so a large drip stays O(B) rather than
  225. # re-copying the growing block O(B²/cap) times.
  226. self._PENDING_MAX_CHUNKS = 1024
  227. def _pending_parts(self) -> list[str]:
  228. """The sealed blocks followed by the current fragments, for joining."""
  229. return [*self._pending_blocks, *self._pending]
  230. def writable(self) -> bool: # noqa: D401 -- inherited contract
  231. return True
  232. def write(self, text: str) -> int: # noqa: D401 -- inherited contract
  233. # Serialize the whole read-modify-write against the settlement flush and
  234. # any other thread's write: model code may spawn daemon threads that keep
  235. # printing after the program body returns, and this method reads
  236. # ``remaining`` and mutates ``_pending``/the ledger across many steps. The
  237. # lock is the buffer's and is re-entrant, so the ``push`` calls below
  238. # (which re-acquire it) do not deadlock.
  239. with self._logs.lock:
  240. return self._write_locked(text)
  241. def _write_locked(self, text: str) -> int:
  242. # Drop an empty write instead of buffering it. An empty chunk adds no
  243. # character, so the budget check below can never fire on it:
  244. # ``while True: sys.stdout.write("")`` would append one list slot per
  245. # call with `_pending_chars` pinned at 0, growing unbounded long after
  246. # the log ledger was exhausted (about 3.7 M slots per CPU second here)
  247. # until RLIMIT_AS turned the allocation into a MemoryError — reported as
  248. # the program's own exception rather than the intended bounded-log
  249. # behavior. Returning here also keeps `flush_line` from pushing a
  250. # spurious empty log entry for a program whose only writes were empty.
  251. if not text:
  252. return 0
  253. if "\n" in text:
  254. # Scan `text` in place; the buffered chunks are joined ONLY into the
  255. # first line. Joining the pending chunks with the whole write first
  256. # made a second copy of that write, which an over-budget write
  257. # cannot afford (measured under a 400 MiB addressSpaceMb: one
  258. # buffered character followed by a 340 MiB write died on MemoryError
  259. # inside the join, reported as the program's own exception, and the
  260. # retained chunks made the settlement `flush_line` fail the same way
  261. # — costing the `done` frame and turning the run into a wall-clock
  262. # timeout instead of the promised truncation marker).
  263. length = len(text)
  264. pos = 0
  265. if self._pending or self._pending_blocks:
  266. newline = text.index("\n")
  267. # The +3 cheap-bound overhead (quotes + separator) belongs to a
  268. # NEW entry. While an `open` entry is accumulating, the closing
  269. # line is that entry's TAIL: its cheap bound is the content
  270. # length alone, matching `_push_locked`'s open-aware bound.
  271. # Charging +3 here truncates an exact-fit merged tail or
  272. # over-rejects it, then flushes a truncated prefix instead.
  273. overhead = 3 if not self._logs._open_started else 0
  274. if self._pending_chars + newline + overhead > self._logs.remaining:
  275. # The reconstructed first line cannot fit the ledger, so
  276. # LogBuffer would reject it whole: copy only the prefix that
  277. # fails its cheap bound and drop the chunks. The slice is
  278. # bounded HERE, not inside the helper: `text[:newline]` on a
  279. # 340 MiB newline-terminated write is the same full copy the
  280. # join was (measured: MemoryError inside `sys.stdout.write`
  281. # under a 400 MiB addressSpaceMb), and `remaining + 4`
  282. # characters are all the helper can use.
  283. self._push_bounded_prefix(text[: min(newline, self._logs.remaining + 4)])
  284. else:
  285. self._pending.append(text[:newline])
  286. line = "".join(self._pending_parts())
  287. self._pending = []
  288. self._pending_blocks = []
  289. self._pending_chars = 0
  290. self._logs.push(line)
  291. pos = newline + 1
  292. # Scan by offset and STOP once the ledger is exhausted: a single
  293. # write of many newlines (``print("\n" * 1000000)``) would otherwise
  294. # re-slice the tail once per line and keep pushing long after
  295. # LogBuffer truncated, burning the CPU budget on discarded lines.
  296. # `remaining` reads 0 the instant the buffer truncates, so the loop
  297. # exits immediately; the unscanned tail is simply dropped.
  298. while pos < length and self._logs.remaining > 0:
  299. newline = text.find("\n", pos)
  300. if newline < 0:
  301. break
  302. # Bound the SLICE the same way LogBuffer bounds the encode: a
  303. # first line far above the ledger would be copied whole before
  304. # push could reject it, and that copy is the allocation an
  305. # over-budget write cannot afford. Copy only a budget-sized
  306. # prefix, which push still rejects on its own cheap bound (the
  307. # prefix is longer than `remaining`), so the marker is emitted
  308. # and the oversized line is never materialized.
  309. overhead = 3 if not self._logs._open_started else 0
  310. if newline - pos + overhead > self._logs.remaining:
  311. self._logs.push(text[pos:pos + self._logs.remaining + 4])
  312. break
  313. self._logs.push(text[pos:newline])
  314. pos = newline + 1
  315. if pos < length:
  316. if self._logs.remaining > 0:
  317. # Buffer only a budget-sized PREFIX of the tail, not the whole
  318. # `text[pos:]`: an early newline followed by a huge unterminated
  319. # tail (`"\n" + "A" * 30 MiB`) would otherwise copy the entire
  320. # tail into `_pending` here — a second full copy of the model's
  321. # own string, the RLIMIT_AS death this path exists to avoid —
  322. # before the newline-free trigger below could bound it. Anything
  323. # past `remaining` characters cannot be admitted (the char count
  324. # is a lower bound on the serialized cost), so a
  325. # `remaining + 4`-character prefix is all that can ever survive;
  326. # the flush trigger below rejects it and emits the marker.
  327. tail = text[pos:pos + self._logs.remaining + 4]
  328. self._pending.append(tail)
  329. self._pending_chars = len(tail)
  330. else:
  331. # The ledger ran out with text still unscanned, so that text
  332. # IS being dropped and the run must say so. One push is
  333. # enough and is bounded: `remaining` is 0, so LogBuffer's
  334. # cheap length lower bound rejects immediately, emits the
  335. # marker, and never encodes the tail — and a push after the
  336. # marker is already out returns without emitting a second.
  337. # Reaching 0 EXACTLY (65 one-character lines against the
  338. # default 3-byte-per-entry serialized charge) leaves
  339. # `_truncated` unset, so without this the tail vanished with
  340. # no marker at all. Sliced to a budget-sized prefix, not the
  341. # whole tail: the tail can be hundreds of megabytes and the
  342. # copy would be the RLIMIT_AS death this bound exists to
  343. # avoid, while push only needs enough characters to fail its
  344. # own cheap length check.
  345. self._logs.push(text[pos:pos + self._logs.remaining + 4])
  346. else:
  347. self._pending.append(text)
  348. self._pending_chars += len(text)
  349. # Seal the fragment list past the chunk cap: a newline-free drip
  350. # appends one fragment per write, so a 25 M single-character flood
  351. # would accumulate that many list slots (and str objects) long before
  352. # the byte budget is met — the pointer array alone being ~25 M slots.
  353. # Past the cap the current fragments are joined into ONE block and
  354. # moved to `_pending_blocks` (character count unchanged), bounding the
  355. # live fragment count exactly as the host-side `captureStray` seal
  356. # does. The join is only the ≤cap current fragments, never the whole
  357. # accumulated buffer, so a large drip stays O(B) rather than
  358. # re-copying the growing block O(B²/cap) times; a newline never starts
  359. # a multi-byte sequence, so the fragments are un-sealable mid-line.
  360. if len(self._pending) >= self._PENDING_MAX_CHUNKS:
  361. self._pending_blocks.append("".join(self._pending))
  362. self._pending = []
  363. # A newline-free flood must hit the budget while running, not at
  364. # settlement: once the buffered tail alone can no longer fit the
  365. # ledger (chars lower-bound the serialized cost), push it through — LogBuffer
  366. # truncates, emits the marker once, and swallows everything after.
  367. if self._pending_chars > self._logs.remaining:
  368. self._push_bounded_prefix()
  369. return len(text)
  370. def _push_bounded_prefix(self, extra: str = "") -> None:
  371. # Reached only when the buffered characters already exceed what the
  372. # ledger admits, so LogBuffer is certain to reject on its cheap length
  373. # bound and emit the marker. Copy a budget-sized PREFIX rather than the
  374. # joined whole: ``sys.stdout.write("x")`` followed by one newline-free
  375. # 340 MiB write leaves two chunks whose join is a second copy of the
  376. # payload, and under a tight addressSpaceMb that join raises MemoryError
  377. # from inside `write` — surfacing as the program's own exception, or,
  378. # while the oversized chunks stayed retained, again from `flush_line`
  379. # after the program settled, which cost the `done` frame and turned the
  380. # run into a wall-clock timeout instead of the promised truncation
  381. # marker.
  382. #
  383. # The chunks are dropped BEFORE the push so neither this call nor the
  384. # settlement flush can repeat the allocation, and dropping the text is
  385. # exactly what the marker reports. `remaining + 4` is the shortest
  386. # prefix that still fails LogBuffer's ``len(text) + 3 > remaining``
  387. # check; the accumulation stops there, so the copy is bounded by the log
  388. # budget however large the pending chunks are.
  389. #
  390. # `self._pending` is iterated IN PLACE and `extra` handled after it:
  391. # `(*self._pending, extra)` would first copy every pending reference into
  392. # a same-size tuple, which for a single-character drip (millions of tiny
  393. # chunks) is a second pointer array as large as the list itself --
  394. # measured at +80 MiB of tuple on top of a 40 MiB list for 5.2M chunks,
  395. # the allocation this bounded prefix exists to avoid.
  396. limit = self._logs.remaining + 4
  397. parts: list[str] = []
  398. total = 0
  399. for chunk in self._pending_parts():
  400. parts.append(chunk[: limit - total])
  401. total += len(parts[-1])
  402. if total >= limit:
  403. break
  404. else:
  405. # Only reached when the pending chunks did not fill the prefix, so
  406. # `extra` is the one remaining source of text.
  407. parts.append(extra[: limit - total])
  408. self._pending = []
  409. self._pending_blocks = []
  410. self._pending_chars = 0
  411. self._logs.push("".join(parts))
  412. def flush(self) -> None: # noqa: D401 -- inherited contract
  413. # ``TextIOBase.flush`` is a no-op, so without this override an explicit
  414. # ``print(..., flush=True)`` or ``sys.stdout.flush()`` left the text in
  415. # `_pending` with nothing to drain it except `flush_line` after the
  416. # program settles. A run that then hangs or is killed never reaches that
  417. # call: ``print("before hang", end="", flush=True)`` followed by an
  418. # infinite loop returned `logs: []`, losing the one diagnostic the
  419. # program deliberately committed. Forwarding makes an explicit flush emit
  420. # the pending entry immediately, which is what the caller asked for; a
  421. # newline-terminated write already emitted on its own.
  422. self.flush_line()
  423. def flush_line(self) -> None:
  424. """Push any buffered text not terminated by a newline (also serves explicit flushes)."""
  425. # Same shared, re-entrant lock as ``write``: the settlement flush on the
  426. # main coroutine and a daemon thread's concurrent ``write`` both touch
  427. # ``_pending`` and the ledger, so this read-and-clear must be atomic
  428. # against them.
  429. with self._logs.lock:
  430. if self._pending or self._pending_blocks:
  431. # Join, drop the chunks, THEN push — the same join-clear-push order
  432. # as `_write_locked`'s newline branch. Pushing before the clear would keep the
  433. # pending chunks alive through `_push_locked`'s `text.encode`, so
  434. # the chunks, their join, and the encode copy would all be live at
  435. # once; dropping the chunks first leaves only the join and its
  436. # encode, matching that path's peak.
  437. line = "".join(self._pending_parts())
  438. self._pending = []
  439. self._pending_blocks = []
  440. self._pending_chars = 0
  441. # The line has NO trailing newline: mark the frame `open` so the
  442. # host appends the next log frame to the same entry instead of
  443. # inserting a fake newline between two entries.
  444. self._logs.push(line, open=True)
  445. # ---------------------------------------------------------------------------
  446. # Fd-3 channel — line-framed JSON.
  447. # ---------------------------------------------------------------------------
  448. # Non-string scalars only. The string form is scanned by hand in
  449. # :func:`_decode_json_plain` because a ``(?:[^"\\]|\\.)*`` repetition makes
  450. # CPython's backtracking engine retain per-repetition state proportional to the
  451. # string's WIDTH: measured at ~146 MiB of engine state for a 1 MiB string and
  452. # ~558 MiB for 4 MiB, so a legitimate multi-megabyte binding reply raised
  453. # MemoryError out of ``_pump_replies``, leaving its future unsettled until the
  454. # wall clock reported a timeout.
  455. _SCALAR_RE = re.compile(
  456. r'-?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?|true|false|null'
  457. )
  458. # A run of ordinary string body characters. The star applies to a CHARACTER
  459. # CLASS, which the engine matches in one linear pass with no backtracking state,
  460. # so the scanner's cost is the number of escapes, not the string's width.
  461. _STRING_CHUNK_RE = re.compile(r'[^"\\]*')
  462. def _decode_json_plain(
  463. text: str,
  464. # Def-time captures: the decoder runs AFTER the program (which is `__main__`)
  465. # may have rebound `__main__.json`, `__main__._SCALAR_RE`,
  466. # `__main__._STRING_CHUNK_RE`, or `__main__.len`; a call-time lookup would
  467. # let a one-line rebind kill the reply pump (a broken decode strands every
  468. # pending Future to the wall clock). Defaults are evaluated at def time.
  469. _json_loads: Any = json.loads,
  470. _scalar_re: Any = _SCALAR_RE,
  471. _string_chunk_re: Any = _STRING_CHUNK_RE,
  472. _len: Any = len,
  473. _isinstance: Any = isinstance,
  474. _str: Any = str,
  475. _list: Any = list,
  476. ) -> Any:
  477. """Parse one JSON document iteratively (no per-level recursion).
  478. ``json.loads`` recurses per nesting level and raises ``RecursionError``
  479. around ~10k levels, but a binding reply is depth-unbounded by the seam
  480. contract — the host's iterative encoder happily produces documents
  481. ``json.loads`` cannot read back. Scalars (numbers, strings with escapes)
  482. are delegated to ``json.loads`` one token at a time, so their grammar and
  483. semantics stay CPython's own; only the container structure is parsed here
  484. with an explicit stack. Raises ``ValueError`` on malformed input; frames
  485. come from the TRUSTED host, so strictness mirrors ``json.loads`` without
  486. extra hostile-input hardening.
  487. """
  488. length = _len(text)
  489. def skip_ws(i: int) -> int:
  490. while i < length and text[i] in " \t\n\r":
  491. i += 1
  492. return i
  493. def scan_string(i: int) -> int:
  494. # Walk chunk by chunk: each match consumes every character up to the next
  495. # quote or backslash, so an escape costs one extra step and a plain body
  496. # costs one pass. Returns the offset just past the closing quote.
  497. j = i + 1
  498. while True:
  499. j = _string_chunk_re.match(text, j).end()
  500. if j >= length:
  501. raise ValueError(f"unterminated string at offset {i}")
  502. char = text[j]
  503. if char == '"':
  504. return j + 1
  505. # text[j] is a backslash: skip it and the character it escapes. A
  506. # trailing backslash runs j past `length`, caught on the next pass.
  507. j += 2
  508. def scalar(i: int):
  509. if i < length and text[i] == '"':
  510. end = scan_string(i)
  511. return _json_loads(text[i:end]), end
  512. match = _scalar_re.match(text, i)
  513. if match is None:
  514. raise ValueError(f"invalid JSON at offset {i}")
  515. return _json_loads(match.group(0)), match.end()
  516. def string_key(i: int):
  517. key, end = scalar(i)
  518. if not _isinstance(key, _str):
  519. raise ValueError(f"object key must be a string at offset {i}")
  520. end = skip_ws(end)
  521. if end >= length or text[end] != ":":
  522. raise ValueError(f"expected ':' at offset {end}")
  523. return key, skip_ws(end + 1)
  524. # Frames: a list, or (dict, pending key). `value`/`have_value` carry each
  525. # completed value up to its parent frame.
  526. stack: list[Any] = []
  527. value: Any = None
  528. have_value = False
  529. i = skip_ws(0)
  530. while True:
  531. if not have_value:
  532. ch = text[i] if i < length else ""
  533. if ch == "[":
  534. i = skip_ws(i + 1)
  535. if i < length and text[i] == "]":
  536. i += 1
  537. value, have_value = [], True
  538. else:
  539. stack.append([])
  540. continue
  541. elif ch == "{":
  542. i = skip_ws(i + 1)
  543. if i < length and text[i] == "}":
  544. i += 1
  545. value, have_value = {}, True
  546. else:
  547. key, i = string_key(i)
  548. stack.append(({}, key))
  549. continue
  550. else:
  551. value, i = scalar(i)
  552. have_value = True
  553. if not stack:
  554. i = skip_ws(i)
  555. if i != length:
  556. raise ValueError(f"trailing data at offset {i}")
  557. return value
  558. top = stack[-1]
  559. i = skip_ws(i)
  560. ch = text[i] if i < length else ""
  561. if _isinstance(top, _list):
  562. top.append(value)
  563. if ch == ",":
  564. i = skip_ws(i + 1)
  565. have_value = False
  566. elif ch == "]":
  567. i += 1
  568. stack.pop()
  569. value = top
  570. else:
  571. raise ValueError(f"expected ',' or ']' at offset {i}")
  572. else:
  573. container, key = top
  574. container[key] = value
  575. if ch == ",":
  576. key, i = string_key(skip_ws(i + 1))
  577. stack[-1] = (container, key)
  578. have_value = False
  579. elif ch == "}":
  580. i += 1
  581. stack.pop()
  582. value = container
  583. else:
  584. raise ValueError(f"expected ',' or '}}' at offset {i}")
  585. class ProtocolChannel:
  586. """Blocking readers and synchronous writers over the fd-3 protocol pipe.
  587. Writes are unbuffered and go straight to the fd, so ``send_sync`` is safe
  588. from inside model code (which may run outside an asyncio task) and from
  589. background tasks alike. Concurrent writers are serialized by ``_write_lock``
  590. around a full-write loop (see ``send_sync``): ``os.write`` releases the GIL,
  591. a frame may exceed ``PIPE_BUF`` (logs up to ``maxLogBytes``, completions up
  592. to ``maxValueBytes``, uncapped ``call`` args), and one ``os.write`` may
  593. consume only part of a frame — so neither the GIL nor per-frame atomicity is
  594. relied on for framing.
  595. """
  596. def __init__(self, fd: int) -> None:
  597. self._fd = fd
  598. # Residual bytes read past a frame's newline, shared by the blocking and
  599. # async readers. Held here, not in the reading coroutine: the reply pump
  600. # is cancelled once `done` is posted, and read-ahead sitting in a local
  601. # would be lost with it. Both readers use `os.read(self._fd, ...)`
  602. # directly, so no buffered file object wraps the fd.
  603. self._pending = bytearray()
  604. # Serializes writers: os.write releases the GIL, and a frame larger
  605. # than PIPE_BUF is neither atomic nor guaranteed fully consumed by one
  606. # call — without the lock, model-created threads printing while a big
  607. # completion frame drains could interleave bytes mid-frame.
  608. self._write_lock = threading.Lock()
  609. def read_frame(
  610. self,
  611. # Def-time captures for the decode primitives (see _decode_json_plain):
  612. # this runs before the program, but the reply path does not — a rebind
  613. # of `__main__._decode_json_plain`/`__main__.os`/`__main__._READ_CHUNK_BYTES`
  614. # must not break the pump.
  615. _decode: Any = _decode_json_plain,
  616. _os_read: Any = os.read,
  617. _read_chunk: int = _READ_CHUNK_BYTES,
  618. _bytes: Any = bytes,
  619. _len: Any = len,
  620. ) -> dict[str, Any] | None:
  621. """Read one JSON-line frame (iteratively decoded). ``None`` on EOF.
  622. Blocking. Used for the two frames read BEFORE the model program starts
  623. (``boot`` and ``run``), where blocking is what the handshake wants. Reply
  624. frames arriving during the program go through :meth:`read_frame_async`,
  625. which must not occupy a thread.
  626. Reads in CHUNKS into the shared ``_pending`` buffer rather than through
  627. ``FileIO.readline()``: the fd is unbuffered (``buffering=0``), so
  628. ``readline`` issues one ``os.read(1)`` per byte, and a multi-megabyte
  629. ``run`` frame — RLIMIT_CPU already in force by then — would burn the
  630. budget in millions of syscalls before ``ast.parse`` even runs. The chunk
  631. reads and the same residual buffer the async path uses keep read-ahead
  632. past a newline for the next frame.
  633. """
  634. # Scan only the bytes not yet examined: `find` from a running offset so a
  635. # frame arriving in N chunks costs one linear pass total, not one rescan
  636. # of the whole buffer per chunk (which is quadratic in the frame size).
  637. scanned = 0
  638. while True:
  639. newline = self._pending.find(b"\n", scanned)
  640. if newline >= 0:
  641. line = _bytes(self._pending[:newline])
  642. del self._pending[: newline + 1]
  643. return _decode(line.decode("utf-8"))
  644. scanned = _len(self._pending)
  645. chunk = _os_read(self._fd, _read_chunk)
  646. if not chunk:
  647. # EOF before a newline: drop the partial line, as the host drops
  648. # a frame that never completed.
  649. return None
  650. self._pending.extend(chunk)
  651. async def read_frame_async(
  652. self,
  653. # Def-time captures, same rationale as read_frame.
  654. _decode: Any = _decode_json_plain,
  655. _os_read: Any = os.read,
  656. _read_chunk: int = _READ_CHUNK_BYTES,
  657. _bytes: Any = bytes,
  658. _get_event_loop: Any = asyncio.get_event_loop,
  659. _len: Any = len,
  660. ) -> dict[str, Any] | None:
  661. """Await one JSON-line frame without occupying a thread. ``None`` on EOF.
  662. ``loop.run_in_executor(None, read_frame)`` was the obvious spelling and
  663. the wrong one: the default executor spins up its first thread the moment
  664. the program awaits a binding, and on Linux/glibc that thread's 8 MiB
  665. stack plus a 64 MiB per-thread malloc arena reservation are charged to
  666. ``RLIMIT_AS`` — measured, the child's mappings went from 30.34 MiB to
  667. 102.39 MiB across one ``await tools.*``. Since the limit is already in
  668. force, that ~72 MiB comes straight out of the run's ``addressSpaceMb``:
  669. under a small limit the thread cannot start at all and a legitimate
  670. binding call hangs to ``maxWallMs``, and under a larger one an allocation
  671. that should have fit dies as ``MemoryError``. This is the same accounting
  672. the settlement-time CPU recheck was designed around, where a sampling
  673. thread cost the same 72 MiB.
  674. `loop.add_reader` watches the fd instead, so no thread exists.
  675. Bytes past a frame's newline belong to the next frame, so the residual
  676. lives on the CHANNEL rather than in this coroutine: the pump is cancelled
  677. once ``done`` is posted, and a local buffer would discard whatever it had
  678. read ahead.
  679. """
  680. loop = _get_event_loop()
  681. # Scan only the not-yet-examined bytes (running offset), so a frame
  682. # arriving across many reads costs one linear pass, not a quadratic
  683. # rescan of the whole buffer per read.
  684. scanned = 0
  685. while True:
  686. newline = self._pending.find(b"\n", scanned)
  687. if newline >= 0:
  688. line = _bytes(self._pending[:newline])
  689. del self._pending[: newline + 1]
  690. return _decode(line.decode("utf-8"))
  691. scanned = _len(self._pending)
  692. ready = loop.create_future()
  693. # `add_reader` only reports readability; the read itself happens here,
  694. # and `os.read` returns whatever is buffered without waiting for more.
  695. loop.add_reader(self._fd, lambda: ready.done() or ready.set_result(None))
  696. try:
  697. await ready
  698. finally:
  699. loop.remove_reader(self._fd)
  700. chunk = _os_read(self._fd, _read_chunk)
  701. if not chunk:
  702. # EOF. Any partial line is dropped, matching how the host drops a
  703. # frame that never completed.
  704. return None
  705. self._pending.extend(chunk)
  706. def send_sync(self, message: dict[str, Any]) -> None:
  707. """Post one frame synchronously.
  708. Encoded with the iterative :func:`_encode_json_plain` (not
  709. ``json.dumps``, whose per-level recursion would raise
  710. ``RecursionError`` on a deeply nested completion or call argument the
  711. depth-unbounded ``CodeJsonValue`` contract admits). NaN/Infinity still
  712. raise ``ValueError`` — they would serialize as non-standard tokens
  713. that Node's ``JSON.parse`` rejects, silently dropping the frame, and a
  714. call would then hang until the wall clock instead of failing fast.
  715. Callers turn the ``ValueError`` into their own contract error
  716. (dispatch raises the lossless-JSON message).
  717. """
  718. self.write_encoded(_encode_json_plain(message))
  719. def write_encoded(self, frame: str) -> None:
  720. """Write a frame that is ALREADY encoded to its JSON string form.
  721. Appends the frame's trailing newline and full-write-loops the bytes
  722. under the writer lock, identically to :meth:`send_sync`. The consumer
  723. supplies the encoded JSON (a ``"done"`` frame carrying a completion
  724. value that was serialized at its validation point — see
  725. :func:`_done_with_value`); the channel does not re-encode it, so the
  726. bytes written are exactly what was validated with no second traversal
  727. of a live object.
  728. """
  729. payload = (frame + "\n").encode("utf-8")
  730. # Full-write loop under the writer lock (same rationale as send_sync):
  731. # one os.write may consume only part of a frame beyond PIPE_BUF, and a
  732. # partial or interleaved frame is dropped host-side as malformed JSON.
  733. with self._write_lock:
  734. view = memoryview(payload)
  735. while view:
  736. view = view[os.write(self._fd, view):]
  737. # ---------------------------------------------------------------------------
  738. # Tools proxy — turns ``await tools.name(args)`` into a fd-3 call frame.
  739. # ---------------------------------------------------------------------------
  740. class _Namespace:
  741. """A proxy for one binding namespace: every declared name routes to the bridge.
  742. Names arrive from :class:`BootMessage.namespaces`. Both attribute access
  743. (``tools.name``) and subscript access (``tools["my-tool"]`` — the SDK's
  744. escape hatch for exotic or reserved names, which are legal function names
  745. on the wire) return a coroutine factory that posts a ``call`` frame and
  746. awaits the matching ``reply``. An undeclared name raises ``AttributeError``
  747. (attribute) or ``KeyError`` (subscript), matching the worker backend's
  748. own-property discipline.
  749. ``__getattribute__`` (not ``__getattr__``) intercepts attribute access so a
  750. declared name ALWAYS reaches the bridge — even one that collides with an
  751. inherited attribute like ``__class__``, which ordinary lookup would resolve
  752. on ``object`` before ``__getattr__`` ever ran. Internal state lives under
  753. name-mangled ``_Namespace__*`` attributes; a declared binding with such a
  754. name still wins (declared-names check runs first).
  755. """
  756. def __init__(self, global_name: str, names: list[str], dispatch) -> None:
  757. self.__global = global_name
  758. self.__names = set(names)
  759. self.__dispatch = dispatch
  760. def __call_for(self, name: str):
  761. dispatch = object.__getattribute__(self, "_Namespace__dispatch")
  762. global_name = object.__getattribute__(self, "_Namespace__global")
  763. async def call(args: Any) -> Any:
  764. return await dispatch(global_name, name, args)
  765. return call
  766. def __getattribute__(self, name: str):
  767. # Declared names route to the bridge unconditionally — before Python
  768. # can resolve an inherited attribute (``__class__``) or our own
  769. # internals. Everything else falls through to normal lookup so the
  770. # proxy machinery itself keeps working.
  771. names = object.__getattribute__(self, "_Namespace__names")
  772. if name in names:
  773. return object.__getattribute__(self, "_Namespace__call_for")(name)
  774. return object.__getattribute__(self, name)
  775. def __getattr__(self, name: str):
  776. # Reached only when normal lookup found nothing (declared names were
  777. # already intercepted above), so this is always an undeclared tool.
  778. raise AttributeError(
  779. f"tool {name!r} is not declared in namespace "
  780. f"{object.__getattribute__(self, '_Namespace__global')!r}"
  781. )
  782. def __getitem__(self, name: str):
  783. names = object.__getattribute__(self, "_Namespace__names")
  784. if name not in names:
  785. raise KeyError(
  786. f"tool {name!r} is not declared in namespace "
  787. f"{object.__getattribute__(self, '_Namespace__global')!r}"
  788. )
  789. return object.__getattribute__(self, "_Namespace__call_for")(name)
  790. class _BindingRejection(Exception):
  791. """Internal reply-pump rejection, converted by ``dispatch`` into the
  792. namespace's declared error class (or ``RuntimeError``) so the marker type
  793. itself never reaches model code."""
  794. def _make_error_class(
  795. name: str,
  796. member_name_property: str,
  797. # Def-time captures (see the __init__ body): the minted class runs AFTER
  798. # the program, so `__main__.Exception`/`__main__.setattr` rebinds must not
  799. # break the rejection constructor.
  800. _Exception_init: Any = Exception,
  801. _setattr: Any = setattr,
  802. ) -> type:
  803. """Mint one program-visible rejection class per the seam's
  804. ``CodeBindingErrorClass`` contract: instances carry the failed member name
  805. under ``member_name_property`` and render as their message."""
  806. def __init__(self, member_name: str, message: str) -> None: # noqa: N807
  807. # Exception.__init__ and setattr are captured as defaults at def time:
  808. # the class constructor runs model-visible code paths, and a rebind of
  809. # `__main__.Exception`/`__main__.setattr` must not break a rejection.
  810. _Exception_init.__init__(self, message)
  811. _setattr(self, member_name_property, member_name)
  812. return type(name, (Exception,), {"__init__": __init__})
  813. def _clamped(which: int, soft: int, hard: int) -> tuple[int, int]:
  814. """Bound a requested (soft, hard) rlimit pair by BOTH inherited limits.
  815. An unprivileged process may lower a hard limit but never raise it, so a
  816. harness already started under a tighter ceiling (``ulimit -v`` below
  817. ``addressSpaceBytes``, or a CPU cap below ``cpuSeconds`` + 1) would make
  818. ``setrlimit`` raise ``ValueError`` and fail every run — despite the
  819. inherited limit being STRONGER than the one requested. Clamping keeps the
  820. stricter of the two, which still satisfies the containment contract.
  821. Both inherited bounds matter, not just the hard one. A deployment that
  822. inherited a soft limit BELOW what is requested (e.g. inherited ``(100, 200)``,
  823. requested ``(150, 160)``) must keep the stricter soft — returning the
  824. requested ``150`` would RAISE the effective soft limit, loosening RLIMIT_AS
  825. memory or deferring the RLIMIT_CPU SIGXCPU, the opposite of "strictest of
  826. configured and inherited". So each side is clamped against its inherited
  827. counterpart. ``RLIM_INFINITY`` compares as -1, so an infinite inherited bound
  828. imposes no ceiling and the requested value stands.
  829. """
  830. inherited_soft, inherited_hard = resource.getrlimit(which)
  831. clamped_soft = soft if inherited_soft == resource.RLIM_INFINITY else min(soft, inherited_soft)
  832. clamped_hard = hard if inherited_hard == resource.RLIM_INFINITY else min(hard, inherited_hard)
  833. # setrlimit requires soft <= hard. Clamping the two sides independently can
  834. # invert them (a finite inherited soft below the clamped hard is fine, but a
  835. # requested hard below the inherited soft would leave soft > hard), so pin
  836. # soft under hard as the final step; the stricter hard ceiling wins.
  837. result_soft = min(clamped_soft, clamped_hard)
  838. result_hard = clamped_hard
  839. # For RLIMIT_CPU, a soft limit EQUAL to the hard limit leaves the kernel no
  840. # window to send SIGXCPU: it checks the hard limit in the same tick and
  841. # SIGKILLs directly (a `ulimit -t N` sets both, and a busy loop then dies by
  842. # SIGKILL, not SIGXCPU). The host classifies a CPU overrun ONLY on ``signal
  843. # === 'SIGXCPU'``, so a definite budget exhaustion would be misreported as a
  844. # `worker-exit`. Lowering the soft limit one unit below the hard (when the
  845. # hard is at least 2, so soft stays positive) keeps the stricter-of-the-two
  846. # containment semantics while giving SIGXCPU a window to fire — the CPU
  847. # overrun is then reported as a timeout, not a worker-exit. This is scoped to
  848. # RLIMIT_CPU: for RLIMIT_AS a one-byte soft differential would only misalign
  849. # the child's applied limit with the host-side budget gate, with no signal to
  850. # preserve. The ``hard >= 2`` guard leaves the ``hard == 1`` blind spot
  851. # (a 1-second dual limit cannot lower soft to 0) — a definite CPU overrun
  852. # there is still reported as `worker-exit`; see the settlement note.
  853. if (
  854. which == resource.RLIMIT_CPU
  855. and result_soft == result_hard
  856. and result_hard >= 2
  857. ):
  858. result_soft = result_hard - 1
  859. return (result_soft, result_hard)
  860. # ---------------------------------------------------------------------------
  861. # Main.
  862. # ---------------------------------------------------------------------------
  863. async def _run(channel: ProtocolChannel) -> None:
  864. # The exception class every `except` clause in this function catches is bound
  865. # into a LOCAL at the very top, before any model code runs. This bootstrap IS
  866. # `__main__`, so `__main__.BaseException = RuntimeError` would otherwise
  867. # rebind the module global the `except BaseException` clauses resolve at
  868. # runtime — and a program exception that no longer matches would escape `_run`
  869. # with no done frame, misreporting the run as a `worker-exit`. A frame local
  870. # is not reachable by `__main__._X = ...`, so the catch is immune.
  871. _BaseException = BaseException
  872. # `RuntimeError` and the `_BindingRejection` marker class are likewise bound
  873. # into locals: `dispatch`'s `call_failure` and its `except` clause resolve
  874. # them at call time, and the program (running as `__main__`) can rebind the
  875. # module globals — `__main__._BindingRejection = ValueError` would leak the
  876. # marker type into model code, violating the class's conversion contract.
  877. # The names differ from the module globals (`_RuntimeError_cls`) so the
  878. # assignment RHS resolves the module global, not an unbound local.
  879. _RuntimeError_cls = RuntimeError
  880. _BindingRejection_cls = _BindingRejection
  881. # `str` for dispatch's rejection conversion is likewise bound: a program
  882. # rebinding `__main__.str` would otherwise run a hostile callable when the
  883. # binding-rejection message is formatted. `isinstance` for `send_done`'s
  884. # frame-shape check is bound the same way.
  885. _str = str
  886. _isinstance = isinstance
  887. # dispatch's argument-validation, event-loop, and frame-send primitives are
  888. # bound here, before the program runs: a rebind of `__main__._lossless_json_violation`,
  889. # `__main__.asyncio`, or the channel's send method must not turn a legitimate
  890. # binding call into an exception or a wall-clock timeout.
  891. _lossless_json_violation_cls = _lossless_json_violation
  892. _get_event_loop_cls = asyncio.get_event_loop
  893. _send_sync_cls = channel.send_sync
  894. # The frame WRITE primitives are bound too: send_sync's body resolves
  895. # `_encode_json_plain` (module global) and `self.write_encoded` (class
  896. # attribute) at call time, so a program rebinding either before the first
  897. # binding call could turn a legitimate call into an exception. dispatch
  898. # and the log sink both write through these directly (the sink does NOT go
  899. # through send_sync, whose body resolves the same names at call time).
  900. _write_encoded_cls = channel.write_encoded
  901. _encode_plain_cls = _encode_json_plain
  902. # 1. Boot handshake.
  903. boot = channel.read_frame()
  904. if boot is None or boot.get("type") != "boot":
  905. raise RuntimeError("bootstrap: expected boot frame on fd 3")
  906. # A limit that cannot be applied must fail the run as a diagnosable done
  907. # frame, not a bare traceback + exit(1): running the program UNCAPPED would
  908. # silently void the containment contract, and the host can only relay what
  909. # rides the protocol.
  910. try:
  911. # SIGXCPU's default disposition (how the soft CPU limit stops the child)
  912. # dumps core, and the child inherits the host's RLIMIT_CORE — a CPU
  913. # timeout would otherwise write a large memory-bearing core file into
  914. # the workspace. Forbid core dumps first so the timeout path leaves none.
  915. resource.setrlimit(resource.RLIMIT_CORE, (0, 0))
  916. # Soft limit at cpuSeconds fires SIGXCPU (its default disposition
  917. # terminates the child; the host classifies that close as a timeout).
  918. # Hard limit at +1s is a SIGKILL backstop for a program that traps
  919. # SIGXCPU and keeps burning CPU.
  920. cpu_soft, cpu_hard = _clamped(
  921. resource.RLIMIT_CPU, boot["cpuSeconds"], boot["cpuSeconds"] + 1
  922. )
  923. resource.setrlimit(resource.RLIMIT_CPU, (cpu_soft, cpu_hard))
  924. # Darwin maps the multi-GB dyld shared cache into every process at
  925. # exec, so any practical RLIMIT_AS cap sits below current usage and
  926. # the kernel rejects it — the child would die here on every run. Skip
  927. # the address-space cap there; RLIMIT_CPU and the host's wall-clock
  928. # ceiling still bound the run.
  929. if sys.platform != "darwin":
  930. addr_bytes = int(boot["addressSpaceBytes"])
  931. effective_as = _clamped(resource.RLIMIT_AS, addr_bytes, addr_bytes)
  932. resource.setrlimit(resource.RLIMIT_AS, effective_as)
  933. # The host rejected an output budget too large for the CONFIGURED
  934. # addressSpaceMb, but a launch environment can inherit a STRICTER
  935. # RLIMIT_AS (e.g. a `ulimit -v` wrapper below addressSpaceMb), which
  936. # `_clamped` correctly lowers the effective limit to — leaving the
  937. # budgets validated against a ceiling the child never gets. Re-check
  938. # both budgets against the EFFECTIVE soft limit here, mirroring the
  939. # host gate (each budget times the worst-case Unicode multiple must
  940. # fit the room left after the interpreter baseline), and fail loud at
  941. # boot rather than letting a near-budget output OOM mid-run. The
  942. # constants match src/index.ts's OUTPUT_BUDGET_WORST_CASE_ADDRESS_
  943. # SPACE_MULTIPLE and INTERPRETER_BASELINE_BYTES.
  944. # `effective_soft` is always finite, so the re-check is
  945. # unconditional: `_clamped` was asked for the finite `addr_bytes` on
  946. # both sides, and each of its branches returns either that value or a
  947. # `min` with an inherited bound -- RLIM_INFINITY is not reachable. A
  948. # guard here would have silently skipped the whole re-check on the
  949. # branch it claimed to protect.
  950. effective_soft = effective_as[0]
  951. budgetable = effective_soft - _INTERPRETER_BASELINE_BYTES
  952. for _budget_key in ("maxLogBytes", "maxValueBytes"):
  953. if int(boot[_budget_key]) * _OUTPUT_BUDGET_WORST_CASE_MULTIPLE >= budgetable:
  954. raise ValueError(
  955. "config.%s is too large for the inherited RLIMIT_AS of %d bytes "
  956. "(a near-budget output would breach it during encode); "
  957. "lower the budget or raise the inherited address-space limit"
  958. % (_budget_key, effective_soft)
  959. )
  960. except _BaseException as exc: # noqa: BLE001 -- report every failure to host; `_BaseException` is a pre-program local
  961. channel.send_sync(
  962. {
  963. "type": "done",
  964. "error": {
  965. "kind": "exception",
  966. # Exception-only rendering: format_exc() would embed the
  967. # absolute installed bootstrap.py path in model-visible
  968. # durable output, leaking host paths into transcripts.
  969. "message": "bootstrap: applying resource limits failed\n"
  970. + "".join(
  971. traceback.format_exception_only(type(exc), exc)
  972. ),
  973. },
  974. }
  975. )
  976. return
  977. logs = LogBuffer(
  978. int(boot["maxLogBytes"]),
  979. # The sink writes through the def-time bound encode+write primitives
  980. # (not _send_sync_cls, whose body still resolves _encode_json_plain and
  981. # self.write_encoded at call time) so a rebind cannot break a log frame.
  982. sink=lambda text, truncated=False, open=False: _write_encoded_cls(
  983. _encode_plain_cls(
  984. {
  985. "type": "log",
  986. "text": text,
  987. **({"truncated": True} if truncated else {}),
  988. **({"open": True} if open else {}),
  989. }
  990. )
  991. ),
  992. )
  993. # 2. Wire the tools proxies and the ack.
  994. #
  995. # Each entry records the reply Future AND the loop it was created on. Model
  996. # code may call a binding from a THREAD it started, spelled
  997. # ``asyncio.run(tools.x(...))`` or its own new loop in that thread, so a
  998. # Future here can belong to a loop other than the one ``_pump_replies`` runs
  999. # on. ``asyncio.Future`` is not thread-safe: completing it from another
  1000. # thread does not wake its own loop, so the pump schedules the completion on
  1001. # the owning loop via ``call_soon_threadsafe`` (see ``_pump_replies``) rather
  1002. # than calling ``set_result`` directly.
  1003. pending: dict[int, tuple[asyncio.AbstractEventLoop, asyncio.Future[Any]]] = {}
  1004. next_id = 0
  1005. # Serializes the id claim + write + counter advance in ``dispatch`` against
  1006. # both other binding-calling threads and the pump's ``pop``. ``dispatch`` may
  1007. # run concurrently on several loops/threads, and the host answers a ``call``
  1008. # only when its id is the exact successor of the last one — so ids must reach
  1009. # the wire in the order they are claimed. Holding this lock across the write
  1010. # (not just the counter arithmetic) is what keeps two threads' frames from
  1011. # interleaving on fd 3 out of id order, which the host would reject.
  1012. pending_lock = threading.Lock()
  1013. error_classes: dict[str, type] = {}
  1014. async def dispatch(global_name: str, name: str, args: Any) -> Any:
  1015. nonlocal next_id
  1016. error_class = error_classes.get(global_name)
  1017. def call_failure(message: str) -> BaseException:
  1018. # The namespace's declared rejection contract (e.g. Code Mode's
  1019. # ToolCallError with .toolName) when present; RuntimeError keeps
  1020. # the pre-errorClass behavior for namespaces that declared none.
  1021. if error_class is not None:
  1022. return error_class(name, message)
  1023. return _RuntimeError_cls(message)
  1024. # Validate the argument shape before claiming an id, so a rejected call
  1025. # leaves no gap in the sequence the host checks. json.dumps would coerce
  1026. # a non-string dict key or non-finite float rather than raise (allow_nan
  1027. # is off, but key coercion still slips through), silently corrupting what
  1028. # the tool receives. Reject up front through the call's error contract.
  1029. violation = _lossless_json_violation_cls(args)
  1030. if violation is not None:
  1031. raise call_failure(f"binding arguments must be lossless JSON ({violation})")
  1032. # Ids are consecutive from 0 with NO gaps: the host answers a `call` only
  1033. # when its id is the exact successor of the last one, which bounds the
  1034. # state it retains to a single number. A frame that never reaches the
  1035. # host must therefore not consume an id, so the counter advances only
  1036. # once the write has succeeded.
  1037. #
  1038. # The whole claim-write-advance runs under ``pending_lock`` because a
  1039. # binding may be called from more than one thread/loop at once (the model
  1040. # can start a thread that runs ``asyncio.run(tools.x(...))``). Without
  1041. # the lock two callers could claim the same id, or write their frames to
  1042. # fd 3 in an order that does not match their ids — either of which the
  1043. # host rejects as an out-of-sequence call. The Future's own loop is
  1044. # captured here so ``_pump_replies`` can complete it thread-safely.
  1045. loop = _get_event_loop_cls()
  1046. with pending_lock:
  1047. call_id = next_id
  1048. fut: asyncio.Future[Any] = loop.create_future()
  1049. pending[call_id] = (loop, fut)
  1050. try:
  1051. _write_encoded_cls(
  1052. _encode_plain_cls(
  1053. {
  1054. "type": "call",
  1055. "id": call_id,
  1056. "global": global_name,
  1057. "name": name,
  1058. "args": args,
  1059. }
  1060. )
  1061. )
  1062. except (TypeError, ValueError) as exc:
  1063. pending.pop(call_id, None)
  1064. raise call_failure(
  1065. f"binding arguments must be lossless JSON: {exc}"
  1066. ) from exc
  1067. next_id += 1
  1068. try:
  1069. return await fut
  1070. except _BindingRejection_cls as exc:
  1071. raise call_failure(_str(exc)) from None
  1072. namespaces: dict[str, Any] = {}
  1073. for entry in boot["namespaces"]:
  1074. namespaces[entry["global"]] = _Namespace(
  1075. entry["global"], entry["names"], dispatch
  1076. )
  1077. declared = entry.get("errorClass")
  1078. if declared:
  1079. error_class = _make_error_class(
  1080. declared["name"], declared["memberNameProperty"]
  1081. )
  1082. error_classes[entry["global"]] = error_class
  1083. # The class is program-visible under its own name so model code
  1084. # can `except ToolCallError as e:` and read the member property.
  1085. namespaces[declared["name"]] = error_class
  1086. channel.send_sync({"type": "boot-ack"})
  1087. # 3. Start a reply-pump task before the run message: replies can arrive
  1088. # interleaved with the run's own binding traffic.
  1089. # The pump's frame reader is bound here, before the program runs: the
  1090. # pump itself starts AFTER the program's top-level statements (no suspension
  1091. # point between create_task and `await __dsh_main__`), so a body-local
  1092. # `channel.read_frame_async` lookup would resolve a rebound class method.
  1093. pump_read = channel.read_frame_async
  1094. reply_task = asyncio.get_event_loop().create_task(
  1095. _pump_replies(channel, pending, pending_lock, pump_read)
  1096. )
  1097. # 4. Read the run message.
  1098. run = channel.read_frame()
  1099. if run is None or run.get("type") != "run":
  1100. reply_task.cancel()
  1101. raise RuntimeError("bootstrap: expected run frame on fd 3")
  1102. program: str = run["program"]
  1103. # 5. Install log capture — ``print``, tracebacks, and ordinary ``sys.stdout``
  1104. # writes funnel into the LogBuffer. The real fds stay open (host uses
  1105. # stderr for stray-byte accounting) but the Python-visible streams point
  1106. # at the buffer.
  1107. sys.stdout = _LogStream(logs) # type: ignore[assignment]
  1108. sys.stderr = _LogStream(logs) # type: ignore[assignment]
  1109. out_stream, err_stream = sys.stdout, sys.stderr
  1110. # The ORIGINAL std streams are bound here, before the program runs, so the
  1111. # settlement flush can drain bytes a program wrote through them without an
  1112. # explicit flush. The bootstrap only replaces `sys.stdout`/`sys.stderr` with
  1113. # the `_LogStream`; `sys.__stdout__`/`sys.__stderr__` (and C-ext stdio
  1114. # layered on the same fds) are untouched, and their block-buffered bytes are
  1115. # lost when the host SIGTERMs the child right after the done frame — the
  1116. # default SIGTERM disposition terminates without interpreter finalization.
  1117. # Binding the names here (before the program) makes them immune to a
  1118. # `sys.__stdout__ = boom` rebind in model code; `None` under `-S`-style
  1119. # redirects is guarded at flush time.
  1120. # Bind the FLUSH METHODS, not the stream objects: the settlement flush
  1121. # loop iterates callables, and a bare TextIOWrapper object is not callable —
  1122. # invoking it would raise TypeError and be swallowed by the loop's except,
  1123. # silently disabling the drain. A bound method captures its stream at
  1124. # binding time, so a later `sys.__stdout__ = boom` rebind cannot redirect
  1125. # it; `None` (stream absent) is guarded at flush time.
  1126. _stdout_orig = sys.__stdout__.flush if sys.__stdout__ is not None else None
  1127. _stderr_orig = sys.__stderr__.flush if sys.__stderr__ is not None else None
  1128. # 6. Compile the program as the body of an async function, matching the
  1129. # seam contract (`CodeRunRequest.program` is an async-function body: top-level
  1130. # `await` and `return` both work, and the returned value is the completion).
  1131. # AST-splicing the parsed body into an `async def` keeps every statement's
  1132. # original line number, so a traceback points at the model's own source.
  1133. ns: dict[str, Any] = {
  1134. "__name__": "__main__",
  1135. "__builtins__": __builtins__,
  1136. **namespaces,
  1137. }
  1138. # Read the enforcement callable and its budget into this frame's locals
  1139. # BEFORE the program runs: model code can rebind this module's globals
  1140. # (the bootstrap IS ``__main__``), and a frame local is not a module
  1141. # attribute, so a later ``__main__._DIE_IF_CPU_EXHAUSTED = ...`` cannot
  1142. # change which callable the post-check below invokes. This defeats the
  1143. # one-line rebind, not a determined `sys._getframe` walk; the unforgeable
  1144. # bounds are the RLIMIT_CPU hard limit and the host wall clock
  1145. # (see _make_cpu_enforcer).
  1146. die_if_cpu_exhausted = _DIE_IF_CPU_EXHAUSTED
  1147. # The settlement recheck compares against the EFFECTIVE soft CPU limit
  1148. # (`cpu_soft`, clamped to any stricter inherited limit above), NOT the
  1149. # configured `cpuSeconds`. When the deployment inherited a soft limit below
  1150. # the configured value, a program that traps SIGXCPU, burns past the
  1151. # inherited soft, and returns inside the soft-to-hard gap must be reported as
  1152. # a timeout — checking the configured value would falsely pass it and bypass
  1153. # the inherited limit.
  1154. cpu_seconds = cpu_soft
  1155. # Same capture, same reason, for the failure path and the send that follows
  1156. # it. The reporter was a module-global lookup inside the `except` block, so
  1157. # ``import __main__; __main__._SAFE_MODEL_TRACEBACK = ...`` put model code
  1158. # there with no guard around it; the flush and send were attribute lookups
  1159. # on the stream and channel CLASSES, which ``__main__._LogStream.flush_line
  1160. # = ...`` rebinds just as easily. All four run AFTER the handler, where a
  1161. # throw costs the `done` frame and the host reports a wall-clock timeout
  1162. # instead of the model's exception. Binding the callables now fixes what
  1163. # runs; what they in turn reach is closed over in _make_failure_reporter.
  1164. safe_model_traceback = _SAFE_MODEL_TRACEBACK
  1165. flush_out = out_stream.flush_line
  1166. flush_err = err_stream.flush_line
  1167. # `done` is either a pre-encoded frame STRING (a `_done_with_value` success:
  1168. # the completion value was serialized at its validation point, inside the try,
  1169. # so a later send never re-walks the live value a mutating daemon thread could
  1170. # have changed) or a dict ERROR frame (a rejection or the exception handler,
  1171. # which carry no live model value). `send_done` posts whichever form, going
  1172. # DIRECTLY through a bound `_encode_json_plain` and a bound `write_encoded` —
  1173. # never through `channel.send_sync`, whose body re-resolves `self.write_encoded`
  1174. # and `self`'s module-level `_encode_json_plain` at call time.
  1175. #
  1176. # The program runs as `__main__`, so `import __main__; __main__.ProtocolChannel
  1177. # .send_sync = boom` or `__main__._encode_json_plain = boom` would otherwise
  1178. # re-resolve the send/encode to a rebranded callable at call time and, when
  1179. # that replacement raises, skip the `done` frame and downgrade a settled
  1180. # verdict to a host-side worker-exit (the binding-all-names regression test
  1181. # pins this). Same reason `flush_out`/`flush_err`/`safe_model_traceback` are
  1182. # bound above.
  1183. encode_plain_bound = _encode_json_plain
  1184. write_encoded_bound = channel.write_encoded
  1185. # The completion-frame builder is bound into a LOCAL here, before the
  1186. # program runs: `done = _done_with_value(...)` below sits after the program
  1187. # (which is `__main__`) may have rebound `__main__._done_with_value`, so a
  1188. # module-global lookup at call time would let a one-line rebind rewrite a
  1189. # legitimate success into an `exception`. Binding it (with its own def-time
  1190. # default-captured `_check_done_value`/`_encode_json_plain`) makes the entry
  1191. # name immune.
  1192. done_with_value_bound = _done_with_value
  1193. # The fallback primitives are bound into LOCALS here, before the program
  1194. # runs, so `send_done`'s except arm does not read module globals at call
  1195. # time. This bootstrap is `__main__`, so `__main__._os_write = boom` (or
  1196. # `__main__._FALLBACK_DONE_FRAME`, `__main__._memoryview`) would otherwise
  1197. # rebind exactly the names the fallback reads, reopening the single-line-
  1198. # rebind hole the fallback exists to close.
  1199. _os_write_local = _os_write
  1200. _memoryview_local = _memoryview
  1201. _fallback_frame_local = _FALLBACK_DONE_FRAME
  1202. def send_done(payload: dict[str, Any] | str) -> None:
  1203. try:
  1204. if _isinstance(payload, _str):
  1205. write_encoded_bound(payload)
  1206. else:
  1207. write_encoded_bound(encode_plain_bound(payload))
  1208. except: # noqa: BLE001, E722 -- a rebind must not cost the done frame; bare except avoids naming BaseException
  1209. # `encode_plain_bound`/`write_encoded_bound` are bound callables, but
  1210. # their BODIES still resolve transitive module globals at call time —
  1211. # `_encode_json_plain` reaches `_dump_scalar`/`_dump_string`/`json.dumps`,
  1212. # `write_encoded` reaches `os.write` (via the `os` module). This
  1213. # bootstrap is `__main__`, so `__main__._dump_scalar = boom` (or
  1214. # `__main__.os = ...`) makes the error-frame encode/write throw AFTER
  1215. # the `except` block, which would drop the `done` frame and downgrade a
  1216. # settled `exception` verdict to a host-side `worker-exit`. Write a fixed
  1217. # literal done frame with the LOCALLY-BOUND `_os_write_local` and
  1218. # `_memoryview_local` (captured before the program runs, so a one-line
  1219. # rebind of the module global cannot change them) so the host still gets
  1220. # a verdict. The literal is JSON-valid and newline-terminated; the lock
  1221. # is the channel's, so the write is serialized against any concurrent
  1222. # writer.
  1223. with channel._write_lock:
  1224. view = _memoryview_local(_fallback_frame_local)
  1225. while view:
  1226. view = view[_os_write_local(channel._fd, view):]
  1227. max_value_bytes = int(boot["maxValueBytes"])
  1228. done: dict[str, Any] | str
  1229. try:
  1230. # filename="<model>" keeps the source label consistent with the later
  1231. # compile(wrapped, "<model>", ...) and the runtime traceback filtering
  1232. # (safe_model_traceback drops frames whose filename is not "<model>");
  1233. # the default "<unknown>" would leak a different label into model-visible
  1234. # syntax diagnostics.
  1235. module = ast.parse(program, filename="<model>")
  1236. wrapper = ast.AsyncFunctionDef(
  1237. name="__dsh_main__",
  1238. args=ast.arguments(
  1239. posonlyargs=[], args=[], vararg=None,
  1240. kwonlyargs=[], kw_defaults=[], kwarg=None, defaults=[],
  1241. ),
  1242. body=module.body or [ast.Pass()],
  1243. decorator_list=[],
  1244. returns=None,
  1245. )
  1246. # Anchor the synthetic wrapper on the first real statement (or line 1 for
  1247. # an empty program) so fix_missing_locations does not stamp it at 0.
  1248. anchor = module.body[0] if module.body else ast.parse("pass").body[0]
  1249. ast.copy_location(wrapper, anchor)
  1250. wrapped = ast.Module(body=[wrapper], type_ignores=[])
  1251. ast.fix_missing_locations(wrapped)
  1252. # `dont_inherit=True` stops this module's `from __future__ import
  1253. # annotations` (line 14) from leaking into the program's compile: PEP 563
  1254. # would otherwise stringify the program's type annotations, changing the
  1255. # semantics of a legal program that reads `f.__annotations__` at runtime.
  1256. code = compile(wrapped, "<model>", "exec", dont_inherit=True)
  1257. exec(code, ns) # noqa: S102 -- defines __dsh_main__; executing model code is the point
  1258. value = await ns["__dsh_main__"]()
  1259. die_if_cpu_exhausted(cpu_seconds)
  1260. # Flush the log buffers BEFORE metering and framing the completion value.
  1261. # `_done_with_value` materializes the value's escaped JSON form to meter
  1262. # it and then pre-encodes the admitted value into its frame (see its
  1263. # docstring for the TOCTOU rationale) — several copies of a near-budget
  1264. # value live at once (see OUTPUT_BUDGET_WORST_CASE_ADDRESS_SPACE_MULTIPLE).
  1265. # Any unflushed log pending would add its own bytes to that peak, so a
  1266. # `maxLogBytes` and a `maxValueBytes` each admitted alone by the load gate
  1267. # could together breach RLIMIT_AS. Flushing first frees the log pending so
  1268. # the value frame's peak stands alone against the address space.
  1269. flush_out()
  1270. flush_err()
  1271. done = done_with_value_bound(value, max_value_bytes)
  1272. except _BaseException as exc: # noqa: BLE001 -- report every failure to host; `_BaseException` is a pre-program local, not a rebindable module global
  1273. done = {
  1274. "type": "done",
  1275. "error": {
  1276. "kind": "exception",
  1277. # Cap the diagnostic BEFORE it crosses the wire: a program can
  1278. # raise with a gigabytes-long message, and formatting/sending
  1279. # it whole would allocate on both sides before the host's own
  1280. # cap runs. Byte-cap at maxValueBytes with the host's marker
  1281. # text so the truncated diagnostic reads identically wherever
  1282. # the cap was applied. The rendering is wrapped because the
  1283. # `done` send below sits outside this handler: a throw while
  1284. # formatting would skip it and strand the host on fd 3 until
  1285. # maxWallMs (see _make_failure_reporter).
  1286. "message": safe_model_traceback(exc, max_value_bytes),
  1287. },
  1288. }
  1289. # Flush any print output not terminated by a newline (a traceback always
  1290. # ends in one, but `print(x, end="")` or a bare write may not), so the
  1291. # final partial line is not silently dropped. The success path already
  1292. # flushed before framing the value; this is an idempotent no-op there and
  1293. # the flush the exception path needs.
  1294. #
  1295. # Guarded because `done` is ALREADY DECIDED here: on the exception path the
  1296. # handler above built it, and a flush that raises (its join/encode under
  1297. # memory pressure, after the program left a near-maxLogBytes pending and then
  1298. # allocated toward RLIMIT_AS) would skip `send_done` and downgrade a run the
  1299. # child already classified as `exception` into a host-side `worker-exit`.
  1300. # Losing the log tail is the lesser outcome, and the marker the ledger
  1301. # already pushed still reports the truncation. Same rule as
  1302. # `_make_failure_reporter`: a settled verdict must not be swallowed by the
  1303. # reporting that follows it.
  1304. for _flush in (flush_out, flush_err, _stdout_orig, _stderr_orig):
  1305. if _flush is None:
  1306. continue
  1307. try:
  1308. _flush()
  1309. except _BaseException: # noqa: BLE001 -- swallow ONLY the log tail; `done` must reach the host; `_BaseException` is a pre-program local
  1310. pass
  1311. reply_task.cancel()
  1312. send_done(done)
  1313. async def _pump_replies(
  1314. channel: ProtocolChannel,
  1315. pending: dict[int, tuple[asyncio.AbstractEventLoop, asyncio.Future[Any]]],
  1316. pending_lock: "threading.Lock",
  1317. # The frame reader is a bound method captured by _run BEFORE the program
  1318. # runs (see the create_task site), so a rebind of the class attribute cannot
  1319. # redirect it.
  1320. _read_frame: Any,
  1321. # Bound as DEFAULT ARGUMENTS so they are captured at def/import time, before
  1322. # ANY model code runs. This bootstrap IS `__main__`, so `__main__.RuntimeError
  1323. # = ...` (or `__main__._BindingRejection`, `__main__.str`, `__main__.bool`)
  1324. # as a program top-level statement would otherwise rebind the module globals
  1325. # these clauses resolve at runtime. A body-local `X = X` binding is too late:
  1326. # `_run` reaches `await __dsh_main__` (whose top-level statements run first)
  1327. # with no suspension point after `create_task`, so the model's rebind executes
  1328. # before the pump body. Defaults are evaluated in the enclosing scope at def
  1329. # time, truly before the program.
  1330. _RuntimeError: Any = RuntimeError,
  1331. _BindingRejection: Any = _BindingRejection,
  1332. _str: Any = str,
  1333. _bool: Any = bool,
  1334. ) -> None:
  1335. """Background task: read reply frames and settle pending futures.
  1336. Cancelled after ``done`` is posted. Unknown ids and post-settlement replies
  1337. are ignored (mirrors the worker backend's hostile-peer stance, though here
  1338. the host is the trusted side; the guards defend against races).
  1339. A pending Future may belong to a loop other than this pump's — the model can
  1340. call a binding from a thread running its own loop (``asyncio.run(tools.x())``).
  1341. ``asyncio.Future`` is not thread-safe, so the completion is scheduled on the
  1342. Future's OWN loop via ``call_soon_threadsafe`` rather than mutated here; a
  1343. direct ``set_result`` would never wake the waiting loop and the call would
  1344. hang to the wall clock. The ``pop`` shares ``pending_lock`` with ``dispatch``
  1345. so a reply cannot race the claim that registers its id.
  1346. """
  1347. def complete(fut: asyncio.Future[Any], ok: bool, value: Any, message: Any) -> None:
  1348. # Runs on the Future's own loop. `done()` re-checked here because
  1349. # cancellation or a duplicate reply may have settled it between the pop
  1350. # and this callback.
  1351. if fut.done():
  1352. return
  1353. if ok:
  1354. fut.set_result(value)
  1355. else:
  1356. fut.set_exception(_BindingRejection(_str(message)))
  1357. while True:
  1358. frame = await _read_frame()
  1359. if frame is None:
  1360. return
  1361. if frame.get("type") != "reply":
  1362. continue
  1363. with pending_lock:
  1364. entry = pending.pop(frame.get("id"), None)
  1365. if entry is None:
  1366. continue
  1367. loop, fut = entry
  1368. ok = _bool(frame.get("ok"))
  1369. value = frame.get("value")
  1370. message = frame.get("message")
  1371. try:
  1372. loop.call_soon_threadsafe(complete, fut, ok, value, message)
  1373. except _RuntimeError: # `_RuntimeError` is a pre-program local, not a rebindable module global
  1374. # The Future's loop has already closed — the thread that ran
  1375. # `asyncio.run(tools.x(...))` finished (its coroutine was cancelled
  1376. # or it exited) before this reply arrived, so nothing awaits the
  1377. # Future and the reply is moot. Drop it; scheduling onto a closed
  1378. # loop raises RuntimeError, and letting that escape would kill the
  1379. # pump and strand every later reply — the exact failure class this
  1380. # cross-loop delivery exists to prevent. An abandoned call's pending
  1381. # entry is not leaked: it is popped here when its reply arrives
  1382. # (dispatch's cancellation does not remove it), so stranded entries
  1383. # are bounded by the number of calls THIS run itself issued.
  1384. continue
  1385. def _encode_json_plain(value: Any) -> str:
  1386. """Encode JSON-plain data iteratively, byte-identical to compact ``json.dumps``.
  1387. ``json.dumps`` recurses one Python frame per nesting level and raises
  1388. ``RecursionError`` a few thousand levels deep, but the seam's
  1389. ``CodeJsonValue`` has no depth limit — a valid deeply nested completion or
  1390. call argument below the byte budget must cross intact (the host uses the
  1391. same iterative idiom in ``protocol.ts``). Accepts what the callers already
  1392. validated or constructed: ``None``/``bool``/``int``/finite ``float``/
  1393. ``str``, exact ``list``/``tuple``, and exact ``dict`` with ``str`` keys.
  1394. Scalar encoding delegates to ``json.dumps`` (string escaping, float repr)
  1395. so the bytes match; non-finite floats still raise ``ValueError`` exactly
  1396. like ``allow_nan=False``.
  1397. Containers are classified by EXACT type and traversed through the unbound
  1398. built-in methods rather than the instance's own: a ``dict``/``list``
  1399. subclass can override ``items``, ``keys``, ``__iter__``, ``__len__``, or
  1400. ``__getitem__``, and the validators only see the container it subclasses,
  1401. so an instance-method call here could emit different data than the walk
  1402. that metered and approved it. ``_check_done_value`` and
  1403. ``_lossless_json_violation`` reject subclasses outright, so this path only
  1404. ever sees exact containers; classifying on exact type keeps that agreement
  1405. checkable at one glance instead of resting on the caller.
  1406. """
  1407. # O(DEPTH) auxiliary space, not O(width). A container pushes ONE cursor frame
  1408. # that pulls its children one at a time and writes each into the shared buffer,
  1409. # rather than one stack entry (plus a separator marker) per child: a flat
  1410. # `[0] * 6_000_000` encodes to ~12 MB but per-element frames are ~400 MB — an
  1411. # RLIMIT_AS death on a value `_check_done_value` already admitted (it walks by
  1412. # depth as well). The output string is the only width-proportional
  1413. # allocation, and its size the caller metered within budget. `io.StringIO`
  1414. # accumulates without the intermediate `"".join(chunks)` second copy. A cursor
  1415. # frame is [kind, iterator, wrote_any]; a visit frame is (VISIT, value).
  1416. buffer = io.StringIO()
  1417. exhausted = object()
  1418. visit, list_cursor, dict_cursor = 0, 1, 2
  1419. stack: list[Any] = [(visit, value)]
  1420. while stack:
  1421. frame = stack.pop()
  1422. kind = frame[0]
  1423. if kind == list_cursor:
  1424. iterator, wrote_any = frame[1], frame[2]
  1425. child = next(iterator, exhausted)
  1426. if child is exhausted:
  1427. buffer.write("]")
  1428. continue
  1429. if wrote_any:
  1430. buffer.write(",")
  1431. else:
  1432. frame[2] = True
  1433. stack.append(frame)
  1434. stack.append((visit, child))
  1435. continue
  1436. if kind == dict_cursor:
  1437. iterator, wrote_any = frame[1], frame[2]
  1438. entry = next(iterator, exhausted)
  1439. if entry is exhausted:
  1440. buffer.write("}")
  1441. continue
  1442. key, item = entry
  1443. if wrote_any:
  1444. buffer.write(",")
  1445. else:
  1446. frame[2] = True
  1447. buffer.write(_dump_scalar(key))
  1448. buffer.write(":")
  1449. stack.append(frame)
  1450. stack.append((visit, item))
  1451. continue
  1452. current = frame[1]
  1453. current_type = type(current)
  1454. if current_type is list or current_type is tuple:
  1455. buffer.write("[")
  1456. stack.append([list_cursor, iter(current), False])
  1457. elif current_type is dict:
  1458. buffer.write("{")
  1459. stack.append([dict_cursor, iter(dict.items(current)), False])
  1460. else:
  1461. buffer.write(_dump_scalar(current))
  1462. return buffer.getvalue()
  1463. def _dump_scalar(value: Any) -> str:
  1464. """One scalar as compact JSON, byte-compatible with the host's encoder.
  1465. ``ensure_ascii=False`` keeps non-ASCII text as raw UTF-8 — the default
  1466. backslash-u escaping would make the child count ``"é"`` as 8 bytes where
  1467. the host meter (and the worker backend) count its UTF-8 JSON form as 4,
  1468. splitting the budget the two sides are supposed to share. Strings route
  1469. through :func:`_dump_string`, which restores the escaping for the one class
  1470. of character UTF-8 cannot hold. Floats route through :func:`_dump_float`
  1471. because CPython's ``repr`` and ECMAScript's Number-to-String disagree on
  1472. spelling.
  1473. Dispatch is on EXACT type, matching the validators: a ``float`` subclass
  1474. reaching :func:`_dump_float` would have its overridden ``__repr__`` read as
  1475. the number's digits, so ``F(2.5)`` whose ``__repr__`` returns ``"1.0"``
  1476. would serialize as ``1``. ``json.dumps`` then refuses any subclass by
  1477. ``TypeError`` instead of emitting a value nothing validated; the callers
  1478. reject subclasses first, so this is the encoder refusing to be the place a
  1479. validation gap turns into corrupted output.
  1480. """
  1481. if type(value) is float:
  1482. return _dump_float(value)
  1483. if type(value) is str:
  1484. return _dump_string(value)
  1485. if value is None or type(value) is bool or type(value) is int:
  1486. return json.dumps(value, ensure_ascii=False, allow_nan=False)
  1487. raise TypeError(f"unsupported type ({type(value).__name__})")
  1488. # A surrogate code unit, and an adjacent high-low pair. Python stores an astral
  1489. # character as ONE code point, so a surrogate reaching these patterns is either
  1490. # lone or half of a pair the program spelled out code unit by code unit.
  1491. _SURROGATE = re.compile("[\ud800-\udfff]")
  1492. _SURROGATE_PAIR = re.compile("[\ud800-\udbff][\udc00-\udfff]")
  1493. def _combine_surrogate_pair(match: re.Match[str]) -> str:
  1494. """Fold one spelled-out high-low pair into the astral code point it names."""
  1495. high, low = match.group(0)
  1496. return chr(0x10000 + ((ord(high) - 0xD800) << 10) + (ord(low) - 0xDC00))
  1497. def _dump_string(text: str) -> str:
  1498. """One string as compact JSON, byte-identical to the host's ``JSON.stringify``.
  1499. ``ensure_ascii=False`` cannot render a surrogate code unit: UTF-8 has no
  1500. encoding for one, so the frame write would raise and the run would strand
  1501. until the wall clock. JSON carries it as the ASCII escape ``\\ud800``, which
  1502. the host's ``JSON.parse`` reads back as the same UTF-16 code unit and its
  1503. ``JSON.stringify`` re-emits identically — so the shared seam
  1504. (``CodeJsonValue``, ``snapshotJsonValue``, the worker backend) keeps a
  1505. lone-surrogate string instead of failing the value. An adjacent high-low
  1506. pair is folded into its astral code point FIRST: the host holds strings as
  1507. UTF-16, where those two code units and the single character are the same
  1508. string, and the raw 4-byte form is what the host would emit — escaping the
  1509. halves separately would charge 12 bytes against a budget the host meters at
  1510. 4. Every remaining surrogate is lone and becomes six ASCII bytes, matching
  1511. the host exactly.
  1512. @param text: the string to encode.
  1513. @return: its compact JSON form, always UTF-8-encodable.
  1514. """
  1515. rendered = json.dumps(text, ensure_ascii=False)
  1516. if _SURROGATE.search(rendered) is None:
  1517. return rendered
  1518. return _SURROGATE.sub(
  1519. lambda match: "\\u%04x" % ord(match.group(0)),
  1520. _SURROGATE_PAIR.sub(_combine_surrogate_pair, rendered),
  1521. )
  1522. # How many bytes each byte that needs escaping adds beyond its raw self, as a
  1523. # ready-made (byte, surcharge) list so :func:`_json_string_cost` walks no
  1524. # branches per pass. ``"`` and ``\\`` take a one-character prefix; the five C0
  1525. # controls with a shorthand (``\\b\\f\\n\\r\\t``) likewise; every other C0
  1526. # control becomes a six-character ``\\uXXXX``.
  1527. _JSON_ESCAPE_SURCHARGES = [
  1528. (bytes((byte,)), 1 if byte in b'"\\\b\f\n\r\t' else 5)
  1529. for byte in [*range(0x20), ord('"'), ord("\\")]
  1530. ]
  1531. # Per-byte JSON-string serialized cost (the byte itself plus its escape
  1532. # surcharge), indexed by byte value. Lets :func:`_cap_message` accumulate the
  1533. # serialized cost of a growing prefix in one O(1) step per byte without building
  1534. # the escaped form. A non-ASCII byte stays raw (cost 1); a C0 control or ``"``/
  1535. # ``\\`` carries its surcharge from :data:`_JSON_ESCAPE_SURCHARGES`.
  1536. _JSON_BYTE_COST = [1] * 256
  1537. for _escaped_byte, _surcharge in _JSON_ESCAPE_SURCHARGES:
  1538. _JSON_BYTE_COST[_escaped_byte[0]] = 1 + _surcharge
  1539. def _json_str_cost(text: str) -> int:
  1540. """Byte length of ``text``'s JSON string form, WITHOUT building that form.
  1541. The str-side twin of :func:`_json_string_cost`, for the completion-value
  1542. meter. Measuring by materializing ``_dump_string(text).encode()`` allocates
  1543. the escaped copy plus its encode -- for a NUL-heavy string that is ~6x the
  1544. original each, so metering a value the budget would have REJECTED could
  1545. itself breach ``RLIMIT_AS`` and report ``exception`` where the contract
  1546. promises ``output-limit``.
  1547. The common case encodes once (~1x, well inside the load gate's envelope) and
  1548. counts escapes with the same C-level passes :func:`_json_string_cost` uses.
  1549. A string carrying surrogate code units has no UTF-8 form at all, so it takes
  1550. the exact path :func:`_dump_string` defines: fold each spelled-out high-low
  1551. pair into its astral character first (the host meters that as its raw 4-byte
  1552. form), then charge six ASCII bytes for every surviving lone surrogate and
  1553. count the rest from its encodable remainder.
  1554. @param text: the string to measure.
  1555. @return: the byte length of its JSON string form, quotes included.
  1556. """
  1557. try:
  1558. return _json_string_cost(text.encode("utf-8"))
  1559. except UnicodeEncodeError:
  1560. pass
  1561. folded = _SURROGATE_PAIR.sub(_combine_surrogate_pair, text)
  1562. lone = len(_SURROGATE.findall(folded))
  1563. # Six ASCII bytes per lone surrogate; the remainder is ordinary text whose
  1564. # own quotes are dropped here because the outer call adds them once.
  1565. without = _SURROGATE.sub("", folded)
  1566. return _json_string_cost(without.encode("utf-8")) + lone * 6
  1567. def _json_string_cost(raw: bytes) -> int:
  1568. """UTF-8 byte length of one string's JSON form, WITHOUT building that form.
  1569. Used by :class:`LogBuffer` to charge a log entry what it will actually cost
  1570. on the wire. Building ``json.dumps(text)`` to measure it would allocate a
  1571. second copy up to six times the original — the very allocation the ledger's
  1572. cheap pre-check exists to avoid, and enough to breach ``RLIMIT_AS`` on a
  1573. large control-heavy line. Counts exactly what :func:`_dump_scalar`'s
  1574. ``ensure_ascii=False`` output holds: the two quotes, each escaped byte's
  1575. surcharge from :data:`_JSON_ESCAPE_SURCHARGES`, and the raw bytes themselves
  1576. (non-ASCII stays raw, so its UTF-8 length already counts). Uses a fixed
  1577. number of C-level ``count`` passes — allocating nothing, unlike a
  1578. ``translate`` filter — because the caller admits up to ~4x the remaining
  1579. budget of bytes here and a per-byte Python loop over it would cost more than
  1580. the encode being avoided.
  1581. @param raw: the entry's UTF-8 bytes.
  1582. @return: the byte length of its JSON string form, quotes included.
  1583. """
  1584. extra = 0
  1585. for byte, surcharge in _JSON_ESCAPE_SURCHARGES:
  1586. extra += raw.count(byte) * surcharge
  1587. return len(raw) + 2 + extra
  1588. def _dump_float(value: float) -> str:
  1589. """One finite float in ECMAScript ``Number::toString`` spelling.
  1590. CPython's ``repr`` and the host's ``String(number)`` name the same double
  1591. differently: ``1.0`` is ``"1.0"`` here but ``"1"`` there, ``1e-07`` pads the
  1592. exponent the host writes as ``1e-7``, and ``1e+21``/``2**60`` differ again.
  1593. Since the child meters the completion value against ``maxValueBytes`` and
  1594. the host re-meters the frame it parses, any spelling difference splits the
  1595. shared budget: ``return 1.0`` under ``maxValueBytes: 1`` used to be reported
  1596. as ``output-limit`` by the child while the host would have counted the
  1597. one-byte ``1`` it actually receives. Both sides also emit these bytes (the
  1598. child through :func:`_encode_json_plain`, the host through
  1599. ``encodeJsonPlain``), so the fix has to be in the shared speller, not in the
  1600. meter.
  1601. Implements ECMA-262 ``Number::toString`` radix 10 directly: ``repr``
  1602. already yields the shortest round-tripping decimal digits, and ``Decimal``
  1603. splits them into the significand ``s`` (``digits``, ``k`` of them) and
  1604. decimal exponent ``n`` the spec's cases select on. The integral values above
  1605. the JS safe range take the host's BigInt branch, whose exact digits differ
  1606. from the shortest-round-trip form (``2**60`` prints ``...846976``, not
  1607. ``...847000``).
  1608. """
  1609. if value != value or value in (float("inf"), float("-inf")):
  1610. # json.dumps(allow_nan=False) raises the same way; the callers reject
  1611. # non-finite floats before metering, so this is unreachable defense.
  1612. raise ValueError("Out of range float values are not JSON compliant")
  1613. if value == 0.0:
  1614. # Covers -0.0 too; callers reject it as non-lossless before this point.
  1615. return "0"
  1616. if value < 0:
  1617. return "-" + _dump_float(-value)
  1618. if value.is_integer() and value > float(2**53 - 1):
  1619. # The host's BigInt branch: exact digits, not shortest-round-trip.
  1620. return str(int(value))
  1621. parts = Decimal(repr(value)).normalize(context=_FLOAT_CONTEXT).as_tuple()
  1622. digits = "".join(str(digit) for digit in parts.digits)
  1623. k = len(digits)
  1624. n = parts.exponent + k
  1625. if k <= n <= 21:
  1626. return digits + "0" * (n - k)
  1627. if 0 < n <= 21:
  1628. return digits[:n] + "." + digits[n:]
  1629. if -6 < n <= 0:
  1630. return "0." + "0" * -n + digits
  1631. exponent = ("+" if n - 1 >= 0 else "-") + str(abs(n - 1))
  1632. return (digits if k == 1 else digits[0] + "." + digits[1:]) + "e" + exponent
  1633. def _check_done_value(value: Any, max_bytes: int):
  1634. """Meter a completion value's JSON byte size AND validate its lossless-JSON
  1635. shape in one bounded post-order walk; return ``None`` when it passes.
  1636. Folds what was formerly a losslessness walk followed by a separate byte
  1637. meter into one pass. Running the losslessness walk first materialized one
  1638. traversal tuple per element before any size cap: ``return [0] * 2000000``
  1639. under ``maxValueBytes: 64`` allocated millions of frames (an RLIMIT_AS
  1640. death) before the meter could reject it. Folding the byte bound into the
  1641. walk rejects over-budget BEFORE enqueuing a container's children — every
  1642. element is at least one JSON byte — so the walk stays O(cap). Same
  1643. JS-double-exact integer boundary, cycle detection (a leave marker pops each
  1644. container off ``on_path``), and type rejections as
  1645. :func:`_lossless_json_violation`, and the same byte accounting as
  1646. :func:`_encode_json_plain`. :func:`_lossless_json_violation` stays for the
  1647. binding-argument path, which carries no size cap.
  1648. EVERY type here is matched EXACTLY, containers and scalars alike, so a
  1649. subclass is rejected as an unsupported type rather than admitted by
  1650. ``isinstance``. A subclass can override the operators and methods this walk
  1651. and the encoder call, and they need not agree: a populated ``dict``
  1652. subclass whose ``items()`` returns ``[]`` would meter as ``{}``; a ``float``
  1653. subclass overriding ``__repr__`` passes the non-finite and negative-zero
  1654. checks by its real value but serializes as whatever the override says, since
  1655. :func:`_dump_float` reads ``repr``; an ``int`` subclass overriding ``__gt__``
  1656. and ``__lt__`` slips past the JS-safe-range bound while ``json.dumps``
  1657. emits its true C-level digits, so ``2**53 + 1`` reaches the host as
  1658. ``...992``; a ``str`` subclass overriding ``__len__`` returns 0 from the
  1659. pre-encode lower bound and admits an arbitrarily large string. In each case
  1660. the value the host receives differs from the one this walk approved. The
  1661. worker backend rejects the equivalent shapes by prototype identity and
  1662. ``typeof`` (``hasPlainObjectPrototype`` in ``worker-json.ts``); a ``bool``
  1663. is checked before ``int`` because it is an ``int`` subclass that IS
  1664. lossless JSON.
  1665. Returns ``("invalid-output", message)`` for a non-lossless value,
  1666. ``("output-limit", message)`` once the size crosses ``max_bytes``, or
  1667. ``None`` when the value is lossless JSON within budget.
  1668. Metering and validation interleave in this single traversal: each member is
  1669. costed the moment it is visited, and it is rejected the moment it trips
  1670. either check. A value that holds BOTH an over-budget member and an
  1671. invalid-typed member therefore resolves to whichever tripped FIRST in
  1672. visit order — both are rejects, and neither kind claims priority over the
  1673. other, so that first-trip order is not part of the seam contract; the
  1674. host side independently re-measures the value it receives.
  1675. """
  1676. js_safe = 2**53 - 1
  1677. def invalid(reason: str):
  1678. return ("invalid-output", f"program completion must be lossless JSON ({reason})")
  1679. over_budget = ("output-limit", f"completion value exceeded {max_bytes} bytes")
  1680. total = 0
  1681. on_path: set[int] = set()
  1682. # The walk uses O(DEPTH) space, not O(width). A container pushes ONE cursor
  1683. # frame that pulls its children one at a time, rather than one traversal
  1684. # frame per child: a flat `[0] * 6_000_000` serializes to ~12 MB (well within
  1685. # a modest budget) but one tuple per element is ~380 MB — an RLIMIT_AS death
  1686. # on a value the byte meter would admit, the very inversion this meter exists
  1687. # to prevent. A cursor frame is (kind, container, iterator); a visit frame is
  1688. # (VISIT, value, None). The upfront structural bound still rejects a wide
  1689. # forgery before any iteration begins.
  1690. exhausted = object()
  1691. visit, list_cursor, dict_cursor = 0, 1, 2
  1692. stack: list[tuple[int, Any, Any]] = [(visit, value, None)]
  1693. while stack:
  1694. frame = stack.pop()
  1695. kind = frame[0]
  1696. if kind == list_cursor:
  1697. container, iterator = frame[1], frame[2]
  1698. child = next(iterator, exhausted)
  1699. if child is exhausted:
  1700. on_path.discard(id(container))
  1701. continue
  1702. # Resume this cursor after the child is fully walked; the child goes
  1703. # on top so it is visited next (order does not affect the byte total).
  1704. stack.append(frame)
  1705. stack.append((visit, child, None))
  1706. continue
  1707. if kind == dict_cursor:
  1708. container, iterator = frame[1], frame[2]
  1709. entry = next(iterator, exhausted)
  1710. if entry is exhausted:
  1711. on_path.discard(id(container))
  1712. continue
  1713. key, item = entry
  1714. # Only an EXACT str key survives: bool and int coerce or raise, and a
  1715. # str SUBCLASS can override the ``__len__`` the bound below reads while
  1716. # the encoder emits its real characters.
  1717. if type(key) is not str:
  1718. return invalid(f"non-string dict key ({type(key).__name__})")
  1719. # The same string lower bound, before escaping the key.
  1720. if total + len(key) + 3 > max_bytes:
  1721. return over_budget
  1722. # Same counting rule as the string branch: a control-heavy KEY
  1723. # expands just as far, and `_dump_scalar` on a str is `_dump_string`.
  1724. total += _json_str_cost(key) + 1
  1725. if total > max_bytes:
  1726. return over_budget
  1727. stack.append(frame)
  1728. stack.append((visit, item, None))
  1729. continue
  1730. current = frame[1]
  1731. if current is None or type(current) is bool:
  1732. total += len(_dump_scalar(current).encode("utf-8"))
  1733. elif type(current) is str:
  1734. # Lower-bound BEFORE materializing the escaped form: every character
  1735. # is at least one UTF-8 byte plus the two quotes, so a huge or
  1736. # control-heavy string (whose escaped copy expands severalfold) is
  1737. # rejected without allocating that copy.
  1738. if total + len(current) + 2 > max_bytes:
  1739. return over_budget
  1740. # A lone surrogate has no UTF-8 form but a lossless JSON one — the
  1741. # ASCII ``\uXXXX`` escape :func:`_dump_string` emits — so it is
  1742. # metered, not rejected, matching the shared seam. Metered by
  1743. # COUNTING, not by building the escaped form: that copy plus its
  1744. # encode is ~6x the original for a control-heavy string, so measuring
  1745. # a value the budget rejects could breach RLIMIT_AS and surface as
  1746. # `exception` instead of the promised `output-limit`.
  1747. total += _json_str_cost(current)
  1748. elif type(current) is int:
  1749. # The canonical boundary accepts every JS-double-exact value: an int
  1750. # outside +-2**53-1 is fine IFF the double round-trip is exact.
  1751. if current > js_safe or current < -js_safe:
  1752. try:
  1753. exact = int(float(current)) == current
  1754. except OverflowError:
  1755. exact = False
  1756. if not exact:
  1757. return invalid("integer not exactly representable as a JavaScript number")
  1758. total += len(_dump_scalar(current).encode("utf-8"))
  1759. elif type(current) is float:
  1760. if current != current or current in (float("inf"), float("-inf")):
  1761. return invalid("non-finite float")
  1762. # JSON turns -0.0 into a sign the host parses back to JS -0; the
  1763. # canonical boundary rejects it, so this side must too.
  1764. if current == 0.0 and math.copysign(1.0, current) < 0:
  1765. return invalid("negative zero")
  1766. total += len(_dump_scalar(current).encode("utf-8"))
  1767. elif type(current) is list:
  1768. if id(current) in on_path:
  1769. return invalid("circular reference")
  1770. count = len(current)
  1771. total += 2 + (count - 1 if count > 1 else 0)
  1772. # Reject over-budget BEFORE iterating: every element serializes to at
  1773. # least one byte, so a wide flat forgery fails here without pulling a
  1774. # single child.
  1775. if total + count > max_bytes:
  1776. return over_budget
  1777. on_path.add(id(current))
  1778. stack.append((list_cursor, current, iter(current)))
  1779. elif type(current) is dict:
  1780. if id(current) in on_path:
  1781. return invalid("circular reference")
  1782. # ``len`` without materializing ``current.items()``: that list
  1783. # allocates one tuple per member before the bound below could run,
  1784. # recreating the spike the bound exists to stop.
  1785. count = len(current)
  1786. total += 2 + (count - 1 if count > 1 else 0)
  1787. # Same pre-iterate bound: each entry contributes a quoted key
  1788. # (>= 2 bytes), a colon, and a >= 1-byte value. ``iter`` on the items
  1789. # view is O(1); the cursor meters each key as it is pulled.
  1790. if total + count * 4 > max_bytes:
  1791. return over_budget
  1792. on_path.add(id(current))
  1793. stack.append((dict_cursor, current, iter(current.items())))
  1794. else:
  1795. # tuple, set, or any other type: not round-trippable JSON.
  1796. return invalid(f"unsupported type ({type(current).__name__})")
  1797. if total > max_bytes:
  1798. return over_budget
  1799. return None
  1800. def _lossless_json_violation(value: Any) -> str | None:
  1801. """Return why ``value`` is not lossless JSON, or ``None`` when it is.
  1802. ``json.dumps`` succeeding is NOT proof of losslessness: it coerces a
  1803. non-string ``dict`` key to its string form (``{1: "a", "1": "b"}`` collapses
  1804. to one key, silently dropping data), emits non-standard ``NaN``/``Infinity``
  1805. tokens without ``allow_nan=False``, and accepts integers outside JavaScript's
  1806. safe range (``9007199254740993`` becomes ``...992`` once the host parses the
  1807. frame into a JS number). Validate the shape up front so a coercive or lossy
  1808. value fails as ``invalid-output`` instead of round-tripping to something the
  1809. program did not compute. Iterative so deep nesting cannot overflow the stack,
  1810. and it tracks the container ancestry on the current path so a cyclic value is
  1811. reported at once rather than spinning until the CPU budget. Only JSON-plain
  1812. types survive: ``None``/``bool``/JS-safe ``int``/finite ``float``/``str``,
  1813. exact ``list``, and exact ``dict`` with ``str`` keys. Every type matches
  1814. EXACTLY, containers and scalars alike, for the reason
  1815. :func:`_check_done_value` documents: a subclass can override the operators
  1816. and methods a traversal calls, so an ``isinstance`` admission here would
  1817. approve one shape and let the encoder emit another.
  1818. """
  1819. # The canonical boundary accepts every JS-double-exact value: an int
  1820. # outside +-2**53-1 is fine IFF the double round-trip is exact (2**53 or
  1821. # 2**60 survive; 2**53+1 rounds), matching the worker backend.
  1822. js_safe = 2**53 - 1
  1823. # Post-order walk with an explicit "leave" marker: a container's id is added
  1824. # to `on_path` when entered and removed when left, so a back-edge to an
  1825. # ancestor (a cycle) is detected without rejecting a legitimately shared
  1826. # acyclic subtree.
  1827. on_path: set[int] = set()
  1828. # O(DEPTH) auxiliary space, not O(width), for the reason
  1829. # :func:`_check_done_value` documents: this walk runs in ``dispatch`` on
  1830. # MODEL-CONSTRUCTED binding arguments, which no child-side byte budget
  1831. # bounds first (the frame ceiling is the host's, and it applies after this
  1832. # returns). Enqueueing one frame per member would let a legitimate
  1833. # ``[0] * 6_000_000`` argument -- ~17 MB of JSON -- allocate ~366 MB of
  1834. # traversal tuples and die as the program's own MemoryError instead of
  1835. # round-tripping. A container therefore pushes ONE cursor frame holding its
  1836. # iterator; children are pulled one at a time.
  1837. exhausted = object()
  1838. visit, container_cursor = 0, 1
  1839. # A visit frame is (visit, value); a cursor frame is (cursor, container, iterator).
  1840. stack: list[tuple[int, Any, Any]] = [(visit, value, None)]
  1841. while stack:
  1842. kind = stack[-1][0]
  1843. if kind == container_cursor:
  1844. _, container, iterator = stack[-1]
  1845. child = next(iterator, exhausted)
  1846. if child is exhausted:
  1847. # Leaving the container: it is no longer on the current path, so
  1848. # a legitimately shared acyclic subtree is not mistaken for a cycle.
  1849. on_path.discard(id(container))
  1850. stack.pop()
  1851. continue
  1852. if type(container) is dict:
  1853. # The dict cursor yields (key, value): check the key as it is
  1854. # pulled. Only an EXACT str key survives -- int, float, None, and
  1855. # tuple keys coerce or raise, and a str subclass can carry
  1856. # overrides the encoder does not honor.
  1857. key, child = child
  1858. if type(key) is not str:
  1859. return f"non-string dict key ({type(key).__name__})"
  1860. stack.append((visit, child, None))
  1861. continue
  1862. _, current, _unused = stack.pop()
  1863. if current is None or type(current) is bool:
  1864. continue
  1865. if type(current) is str:
  1866. # Every string is lossless JSON. A lone surrogate has no UTF-8 form,
  1867. # but JSON carries the code unit as its ASCII ``\uXXXX`` escape and
  1868. # :func:`_dump_string` emits exactly that, so the host receives the
  1869. # same code unit the program passed — the same acceptance
  1870. # ``CodeJsonValue``, ``snapshotJsonValue``, and the worker backend
  1871. # already give it.
  1872. continue
  1873. if type(current) is int:
  1874. if current > js_safe or current < -js_safe:
  1875. try:
  1876. exact = int(float(current)) == current
  1877. except OverflowError:
  1878. exact = False
  1879. if not exact:
  1880. return "integer not exactly representable as a JavaScript number"
  1881. continue
  1882. if type(current) is float:
  1883. if current != current or current in (float("inf"), float("-inf")):
  1884. return "non-finite float"
  1885. # JSON serialization turns -0.0 into 0 (or "-0.0" text that the
  1886. # host parses to JS -0), silently changing the sign bit either
  1887. # way; the repository's canonical lossless-JSON boundary and the
  1888. # worker backend both reject it, so this side must too.
  1889. if current == 0.0 and math.copysign(1.0, current) < 0:
  1890. return "negative zero"
  1891. continue
  1892. if type(current) is list or type(current) is dict:
  1893. if id(current) in on_path:
  1894. return "circular reference"
  1895. on_path.add(id(current))
  1896. if type(current) is dict:
  1897. # Keys are checked as the cursor pulls each entry, not in a
  1898. # separate pass: ``current.values()`` would need a second walk,
  1899. # and materializing ``items()`` up front allocates one tuple per
  1900. # member -- the very spike the cursor removes.
  1901. stack.append((container_cursor, current, iter(current.items())))
  1902. else:
  1903. stack.append((container_cursor, current, iter(current)))
  1904. continue
  1905. return f"unsupported type ({type(current).__name__})"
  1906. return None
  1907. def _make_cpu_enforcer() -> Any:
  1908. """Build the CPU post-check over closure-held primitives.
  1909. This bootstrap IS ``__main__``, so model code can reach every one of its
  1910. module globals: ``import __main__; __main__._X = ...`` rebinds the name the
  1911. enforcement would otherwise read at call time, which a plain module-level
  1912. function plus module-level captures made a one-line defeat. The primitives
  1913. therefore live in this factory's locals, which become closure cells of the
  1914. returned function, and :func:`_run` binds the returned function into a
  1915. local of its own frame BEFORE executing the program, so no assignment to
  1916. ``__main__`` changes which callable runs or what it calls. Capture happens
  1917. at import time, before model code runs, so the captured
  1918. ``resource.getrusage``/``signal.signal``/``os.kill`` are the real builtins.
  1919. This raises the cost of defeating the check; it does not make it
  1920. unreachable, and nothing in-process could. A cell is writable through
  1921. ``fn.__closure__[i].cell_contents``, and ``sys._getframe`` walks to
  1922. :func:`_run`'s frame and reads its locals, so a program determined to
  1923. tamper still can — consistent with this backend's documented posture, where
  1924. the in-process interpreter is containment rather than a security boundary
  1925. (§Trust posture in the Code Mode RFC). The bounds that model code cannot
  1926. forge are outside the interpreter: the RLIMIT_CPU HARD limit at
  1927. ``cpuSeconds + 1``, whose SIGKILL is undeliverable to a handler and
  1928. unraisable by a process that cannot raise its own hard limit, and the
  1929. host's wall-clock ceiling. This check exists to convert the two cases those
  1930. miss — a program that traps SIGXCPU and settles inside the soft-to-hard
  1931. gap, and a program that spends the budget in DESCENDANTS the kernel never
  1932. charged to this process — from a reported SUCCESS into the same `timeout`
  1933. an untrapped program gets.
  1934. @returns The one-argument enforcement callable, taking `cpuSeconds`.
  1935. """
  1936. getrusage = resource.getrusage
  1937. rusage_self = resource.RUSAGE_SELF
  1938. rusage_children = resource.RUSAGE_CHILDREN
  1939. set_signal = signal.signal
  1940. sig_dfl = signal.SIG_DFL
  1941. sigxcpu = signal.SIGXCPU
  1942. kill = os.kill
  1943. getpid = os.getpid
  1944. # SIGXCPU unmasking primitives for the re-raise below: a program can mask
  1945. # the signal and return past the soft limit, so the re-delivered signal
  1946. # must be unblocked first. Captured here (import time) so a rebind cannot
  1947. # defeat them. The ``getattr``/``None`` guard is defensive against a
  1948. # stripped CPython build (the host refuses win32 at construction, so every
  1949. # platform this backend actually starts on has ``pthread_sigmask``).
  1950. pthread_sigmask = getattr(signal, "pthread_sigmask", None)
  1951. sig_unblock = getattr(signal, "SIG_UNBLOCK", None)
  1952. def die_if_cpu_exhausted(cpu_seconds: int) -> None:
  1953. """Die by re-delivered SIGXCPU when the CPU budget is already spent.
  1954. Two cases reach here as a would-be SUCCESS. A model program can trap
  1955. SIGXCPU and return during the one-second soft-to-hard gap. And
  1956. ``RLIMIT_CPU`` is PER-PROCESS, inherited fresh by every child, so a
  1957. program calling ``subprocess`` or ``os.fork`` multiplies the run's CPU
  1958. budget by the number of descendants it starts: measured with
  1959. ``cpuSeconds: 1``, two sequential busy children burned 2.0
  1960. CPU-seconds and the parent, which had accrued almost no CPU of its own
  1961. while blocked in ``subprocess.wait``, still returned a completion.
  1962. The meter is therefore ``RUSAGE_SELF + RUSAGE_CHILDREN``, the kernel's
  1963. own aggregate, which accumulates the CPU of every REAPED descendant
  1964. (grandchildren included, verified).
  1965. ``getrusage`` is the kernel's own meter (unforgeable from model code),
  1966. and dying by SIGXCPU with the default disposition restored gives the
  1967. host the same kernel-authoritative close signal as the untrapped soft
  1968. limit — classified as `timeout`, after which the host's process-group
  1969. SIGTERM/SIGKILL teardown reaches any surviving descendants. Runs AFTER
  1970. the model program settled, so a program can re-trap SIGXCPU between
  1971. this SIG_DFL and the kill only by running more code, which it no longer
  1972. does. A program that tampers with this callable instead (see
  1973. :func:`_make_cpu_enforcer` on why in-process state cannot be hidden)
  1974. buys at most the remaining soft-to-hard gap: one more CPU second, after
  1975. which the hard limit's SIGKILL lands with no handler possible.
  1976. Checking at settle time rather than sampling mid-run is deliberate:
  1977. both mid-run designs perturb the run they measure. A sampling thread
  1978. cost 72 MiB of virtual address space in the child (8 MiB stack plus a
  1979. 64 MiB glibc per-thread malloc arena reservation; measured 30.23 MiB of
  1980. mappings without it against 102.37 MiB with it), and ``RLIMIT_AS``
  1981. counts reserved space, so it silently shrank every run's
  1982. `addressSpaceMb`. A ``SIGALRM`` interval timer costs no mappings but
  1983. makes the program's own syscalls return short under PEP 475 — measured
  1984. a 64 MiB ``os.write`` returning 65536 — which corrupts fd-3 framing.
  1985. The cost of checking only at settle time is that a descendant's CPU is
  1986. detected after it is spent, not while it runs; the host's wall-clock
  1987. ceiling bounds that interval, and a program that never reaps its child
  1988. is bounded by the wall clock alone, since ``RUSAGE_CHILDREN`` counts
  1989. only reaped descendants (verified: a still-running child contributes
  1990. 0.0).
  1991. @param cpu_seconds The `cpuSeconds` budget the soft RLIMIT_CPU used.
  1992. """
  1993. own = getrusage(rusage_self)
  1994. kids = getrusage(rusage_children)
  1995. spent = own.ru_utime + own.ru_stime + kids.ru_utime + kids.ru_stime
  1996. if spent >= cpu_seconds:
  1997. # A program can mask SIGXCPU (``pthread_sigmask(SIG_BLOCK, ...)``),
  1998. # burn past the soft limit, and return during the soft-to-hard gap;
  1999. # the re-delivered SIGXCPU below would then stay PENDING and the
  2000. # child would exit normally with a success result. Restore the
  2001. # default disposition BEFORE unblocking: a program that installed a
  2002. # custom handler AND masked the signal has that pending handler run
  2003. # the moment the signal is unblocked (CPython delivers it at the next
  2004. # eval-breaker checkpoint in model code), and it could re-mask or
  2005. # raise — so the disposition must already be SIG_DFL when the signal
  2006. # is released. With SIG_DFL restored first, the pending signal kills
  2007. # the process inside the kernel with no bytecode window; the ``kill``
  2008. # below is the fallback for the never-pending case. ``pthread_sigmask``
  2009. # is ``None``-guarded defensively (every platform this backend starts
  2010. # on has it; the host refuses win32 at construction).
  2011. set_signal(sigxcpu, sig_dfl)
  2012. if pthread_sigmask is not None:
  2013. pthread_sigmask(sig_unblock, (sigxcpu,))
  2014. kill(getpid(), sigxcpu)
  2015. return die_if_cpu_exhausted
  2016. _DIE_IF_CPU_EXHAUSTED = _make_cpu_enforcer()
  2017. _TRUNCATION_MARKER = "… [truncated]"
  2018. # The marker's own UTF-8 size, reserved out of the cap rather than added on top
  2019. # of it. Byte-identical to the host's TRUNCATION_MARKER_BYTES; the ellipsis is
  2020. # three bytes, so this is 15, not the string's 13 characters.
  2021. _TRUNCATION_MARKER_BYTES = len(_TRUNCATION_MARKER.encode("utf-8"))
  2022. def _cap_message(message: str, max_bytes: int) -> str:
  2023. """Cap a diagnostic by its SERIALIZED cost, appending the host's marker.
  2024. Metered by the JSON-string cost the ``done`` frame will actually carry, not
  2025. by raw UTF-8 length: the message crosses fd 3 inside a JSON frame where
  2026. control characters escape up to sixfold (a NUL is one raw byte but six as
  2027. ``\\u0000``), so a raw-length cap of ``maxValueBytes`` could serialize to
  2028. roughly six times that and breach the 64 MiB frame parse cap — the silent
  2029. ``worker-exit`` inversion the load-time cap check exists to prevent, and a
  2030. several-hundred-MiB escape allocation besides. The seam's load bound admits
  2031. ``maxValueBytes`` up to ``parse-cap - envelope`` on the premise that both the
  2032. completion value and the diagnostic are metered in serialized bytes, so this
  2033. honors that premise for the diagnostic.
  2034. Encoded with ``errors="replace"`` first: a model exception message can
  2035. contain an unpaired surrogate (``raise Exception("\\ud800")``), and a strict
  2036. encode would throw while BUILDING the failure frame — the run would then
  2037. strand until the wall clock instead of reporting the exception. The marker's
  2038. serialized cost comes OUT of ``max_bytes``, so the returned string's own
  2039. frame form honors the cap; the host meters the same field again on arrival.
  2040. A ``max_bytes`` below the marker's cost yields the marker alone.
  2041. This is the PRODUCING-side cap. The host's receive-side ``capMessage``
  2042. (``src/index.ts``) bills the same field by RAW bytes instead, because its
  2043. output goes into ``CodeRunResult.error.message`` and never re-crosses a
  2044. frame-bounded channel — see that function's JSDoc for the split.
  2045. """
  2046. raw = message.encode("utf-8", errors="replace")
  2047. if _json_string_cost(raw) <= max_bytes:
  2048. return raw.decode("utf-8")
  2049. # Truncating: the result is `prefix + marker`, whose serialized cost is
  2050. # `2 (quotes) + sum(prefix byte costs) + marker cost`. The marker is
  2051. # escape-free, so its cost is its UTF-8 length. Reserve that and the quotes,
  2052. # then take the longest raw prefix whose accumulated per-byte cost fits.
  2053. # `_JSON_BYTE_COST` is per-byte and additive, so the scan is exact and walks
  2054. # at most a budget's worth of bytes, allocating nothing (unlike building the
  2055. # escaped form). `max(0, ...)` handles a `max_bytes` below the marker's own
  2056. # cost, yielding the marker alone.
  2057. content_budget = max(0, max_bytes - 2 - _TRUNCATION_MARKER_BYTES)
  2058. cost = 0
  2059. end = 0
  2060. for end in range(len(raw)):
  2061. cost += _JSON_BYTE_COST[raw[end]]
  2062. if cost > content_budget:
  2063. break
  2064. else:
  2065. end = len(raw)
  2066. # Drop a trailing partial UTF-8 sequence the slice may have cut (continuation
  2067. # bytes are 0b10xxxxxx); `errors="ignore"` renders the clean prefix.
  2068. return raw[:end].decode("utf-8", errors="ignore") + _TRUNCATION_MARKER
  2069. # Fixed safety/liveness bound, not a tunable: a model can raise an exception
  2070. # with an arbitrarily deep __cause__/__context__ chain, and both the rendering
  2071. # walk and format() are linear in chain length. Capping how many links get
  2072. # RENDERED keeps traceback formatting from consuming the whole wall budget.
  2073. # 100 links is far beyond any legible human traceback.
  2074. _MAX_TRACEBACK_CHAIN = 100
  2075. # Diagnostic used when rendering the failure itself fails. Built from a fixed
  2076. # literal plus the exception CLASS name, never from the exception's own str.
  2077. _UNRENDERABLE_DIAGNOSTIC = "<diagnostic rendering failed>"
  2078. def _model_traceback(exc: BaseException, max_bytes: int) -> str:
  2079. """Format a model-program failure with only the MODEL's own frames.
  2080. Bootstrap frames carry host-absolute paths — meaningless to the model and
  2081. unstable across machines, so transcripts pinning them cannot replay. They
  2082. appear not only as a leading prefix (the bootstrap's ``exec``/``await``)
  2083. but also interleaved and trailing: an uncaught binding rejection re-raised
  2084. by ``dispatch`` puts bootstrap frames AFTER the model's, and chained
  2085. ``__cause__``/``__context__`` exceptions carry their own stacks. Filter
  2086. every non-``<model>`` frame across the whole chain rather than trimming a
  2087. prefix. A failure with no model frame anywhere (e.g. a SyntaxError raised
  2088. by ``compile``) keeps the standard exception-only rendering.
  2089. Rendering is bounded to ``_MAX_TRACEBACK_CHAIN`` links, cut on the
  2090. ``TracebackException`` COPY, and a marker line announces the truncation.
  2091. Nothing here touches the live exception: an exception class overriding
  2092. ``__setattr__`` would run MODEL code from inside the caller's failure
  2093. handler, and a throw there costs the ``done`` frame (see
  2094. ``_safe_model_traceback``). ``TracebackException`` instances hold no such
  2095. hooks, so clearing their links runs no model code. The walk is iterative,
  2096. so a deep chain cannot overflow the recursion limit.
  2097. ``from_exception`` still copies the WHOLE live chain, at a higher per-link
  2098. cost than building it took. That is bounded by the child's ``RLIMIT_AS``:
  2099. the model must materialize every link (exception object plus traceback)
  2100. before raising, so a chain long enough for the copy to matter is already
  2101. near the address-space cap, and a ``MemoryError`` in the copy lands in the
  2102. caller's fallback rather than stranding the run.
  2103. """
  2104. te = traceback.TracebackException.from_exception(exc)
  2105. # One iterative pass over the copy does both jobs: keep only <model> frames
  2106. # on every linked exception and group member, and cut the chain at the cap.
  2107. found = False
  2108. truncated = False
  2109. pending = [(te, 1)]
  2110. while pending:
  2111. entry, depth = pending.pop()
  2112. kept = [f for f in entry.stack if f.filename == "<model>"]
  2113. entry.stack = traceback.StackSummary.from_list(kept)
  2114. found = found or bool(kept)
  2115. # 3.11+ exception groups (a binding failure inside asyncio.TaskGroup)
  2116. # carry member stacks under `exceptions`, not the dunder links; a group
  2117. # member counts as a link so the cap bounds nesting through both edges.
  2118. members = getattr(entry, "exceptions", None) or ()
  2119. if depth >= _MAX_TRACEBACK_CHAIN:
  2120. if entry.__cause__ is not None or entry.__context__ is not None or members:
  2121. truncated = True
  2122. entry.__cause__ = None
  2123. entry.__context__ = None
  2124. if members:
  2125. entry.exceptions = None
  2126. continue
  2127. for linked in (entry.__cause__, entry.__context__):
  2128. if linked is not None:
  2129. pending.append((linked, depth + 1))
  2130. for member in members:
  2131. pending.append((member, depth + 1))
  2132. def emit():
  2133. if found:
  2134. yield from te.format()
  2135. else:
  2136. yield from traceback.format_exception_only(type(exc), exc)
  2137. if truncated:
  2138. yield f"[dsh-code-runtime-python] exception chain truncated at {_MAX_TRACEBACK_CHAIN} links\n"
  2139. return _join_bounded(emit(), max_bytes)
  2140. def _make_failure_reporter() -> Any:
  2141. """Build the failure-diagnostic renderer over closure-held primitives.
  2142. The returned callable renders a model failure diagnostic that cannot itself
  2143. raise. The caller sends the ``done`` frame AFTER its ``except BaseException``
  2144. block, so anything thrown while rendering the diagnostic skips the send
  2145. entirely: the host then blocks on fd 3 until ``maxWallMs`` and reports a
  2146. timeout instead of the exception that actually happened. Rendering runs
  2147. model code by design (``format()`` reaches ``__str__``, ``__repr__`` and
  2148. ``__notes__``) and allocates under ``RLIMIT_AS``, so it must be treated as
  2149. able to throw.
  2150. The fallback names the exception CLASS and a fixed literal — no ``str(exc)``
  2151. and no ``format_exception_only``, both of which reach the model's
  2152. ``__str__``. A ``__name__`` that is not exactly ``str`` (a metaclass
  2153. property can return anything, or raise) is discarded rather than
  2154. formatted, so no override runs on this path either.
  2155. The factory exists for the same reason :func:`_make_cpu_enforcer` does: this
  2156. bootstrap IS ``__main__``, so ``import __main__; __main__._X = ...`` rebinds
  2157. any module global a call-time lookup would read. On this path a rebind is
  2158. worst — the handler's own reporter, and everything the reporter reaches,
  2159. would run model code outside any guard, and a throw there costs the ``done``
  2160. frame. The traceback formatter, the byte cap and the fallback literal
  2161. therefore become closure cells captured at import time, before model code
  2162. runs, and :func:`_run` binds the returned callable into a local of its own
  2163. frame. A frame local is not a module attribute, so no assignment to
  2164. ``__main__`` changes which callable runs or what it calls. This defeats the
  2165. one-line rebind, not a determined ``sys._getframe`` walk; the unforgeable
  2166. bound is the host wall clock.
  2167. """
  2168. cap_message = _cap_message
  2169. model_traceback = _model_traceback
  2170. unrenderable = _UNRENDERABLE_DIAGNOSTIC
  2171. # The exception class the guards below catch is bound into a closure cell
  2172. # here, at import time, before model code runs. `safe_model_traceback` runs
  2173. # AFTER the program (which is `__main__`) may have rebound the module global
  2174. # `BaseException`, so `except BaseException` would resolve the rebound class
  2175. # and a render-time throw could escape — losing the done frame. A closure cell
  2176. # is not reachable by `__main__._X = ...`, so the catch is immune.
  2177. _BaseException = BaseException
  2178. def safe_model_traceback(exc: BaseException, max_bytes: int) -> str:
  2179. try:
  2180. return cap_message(model_traceback(exc, max_bytes), max_bytes)
  2181. except _BaseException: # noqa: BLE001 -- a throw here would cost the done frame
  2182. pass
  2183. try:
  2184. raw_name = type(exc).__name__
  2185. # Slice BEFORE interpolating. A metaclass `__name__` property can
  2186. # return an arbitrarily long string, and both the f-string and
  2187. # `cap_message`'s encode would copy it whole — under a tight
  2188. # RLIMIT_AS either allocation can raise MemoryError, and this is the
  2189. # LAST fallback, so a throw here costs the `done` frame outright and
  2190. # the run misreports as an exit or a timeout. The slice is a
  2191. # code-unit prefix, which bounds the bytes at 4x, and the following
  2192. # `cap_message` still applies the exact byte cap.
  2193. name = raw_name[:_MAX_FALLBACK_NAME_CHARS] if type(raw_name) is str else "<unknown>"
  2194. except _BaseException: # noqa: BLE001 -- a raising __name__ must not cost the done frame
  2195. name = "<unknown>"
  2196. # Wrapped for the same reason: `cap_message` encodes, and its allocation
  2197. # is the only step left that can still fail. The fixed literal needs no
  2198. # budget, so it can always be delivered.
  2199. try:
  2200. return cap_message(f"{name}: {unrenderable}", max_bytes)
  2201. except _BaseException: # noqa: BLE001 -- the done frame outranks the diagnostic's detail
  2202. return unrenderable
  2203. return safe_model_traceback
  2204. _SAFE_MODEL_TRACEBACK = _make_failure_reporter()
  2205. def _join_bounded(lines, max_bytes: int) -> str:
  2206. """Join formatter output, stopping once the budget is comfortably passed.
  2207. ``format()`` yields lines lazily; consuming it whole for an exception
  2208. carrying a huge message would materialize the full text only for
  2209. ``_cap_message`` to throw it away — enough over-shoot to exhaust
  2210. ``RLIMIT_AS``. Stop after the accumulated CHARACTER count passes the byte
  2211. budget (chars lower-bound UTF-8 bytes); the caller's ``_cap_message``
  2212. does the exact byte-level cut.
  2213. """
  2214. chunks: list[str] = []
  2215. total = 0
  2216. for line in lines:
  2217. # A single yielded line can itself dwarf the budget (the exception
  2218. # message rides in one line): keep only the prefix it can ever need.
  2219. if len(line) > max_bytes + 1:
  2220. line = line[: max_bytes + 1]
  2221. chunks.append(line)
  2222. total += len(line)
  2223. if total > max_bytes:
  2224. break
  2225. return "".join(chunks)
  2226. def _done_with_value(
  2227. value: Any,
  2228. max_value_bytes: int,
  2229. # Bound as DEFAULT ARGUMENTS so they are captured at import time, before
  2230. # model code runs: `_done_with_value` runs AFTER the program (which is
  2231. # `__main__`) may have rebound `__main__._check_done_value` or
  2232. # `__main__._encode_json_plain`, and a module-global lookup at call time
  2233. # would let a one-line rebind rewrite a legitimate success into an
  2234. # `exception`. Defaults are evaluated at def time, so they are the originals.
  2235. _check_done_value: Any = _check_done_value,
  2236. _encode_json_plain: Any = _encode_json_plain,
  2237. _cap_message: Any = _cap_message,
  2238. ) -> dict[str, Any] | str:
  2239. """Build the terminal done frame under the seam's lossless-JSON contract.
  2240. A completion value returned by the program (``None`` when it returns
  2241. nothing) that is not lossless JSON fails the run as ``invalid-output``; a
  2242. serialized value beyond ``max_value_bytes`` fails as ``output-limit``.
  2243. Substituting a ``repr`` or truncated string would be a silent lie about
  2244. what the program computed, so both paths refuse instead (mirroring the
  2245. worker backend's contract). ``None`` crosses as an exact JSON ``null``.
  2246. The SUCCESS path returns the whole ``"done"`` frame as an ALREADY-ENCODED
  2247. JSON string: the admitted value is serialized here, at its validation
  2248. point, rather than handed to ``send_sync`` to re-walk later. The program
  2249. can keep mutating the returned list/dict from a daemon thread or signal
  2250. handler after it returns, so a second traversal held at a later point
  2251. would be a TOCTOU — a mutation into a non-JSON type would let that later
  2252. encode throw outside the settlement handler and downgrade the run
  2253. host-side to ``worker-exit``. Serializing once, inside the try that wraps
  2254. this call, closes the window: if a concurrent mutation makes the encode
  2255. throw, the exception handler classifies it as ``exception``, and once the
  2256. string is produced the frame is sent verbatim with no further touching of
  2257. the live value. Returns a ``dict`` only for a rejection (an error frame
  2258. carries no live model value and is safe to send via ``send_sync``).
  2259. """
  2260. # One bounded walk folds the losslessness check and the byte meter (mirrors
  2261. # the host's checkDoneValue): the former split ran the full losslessness
  2262. # walk first, materializing one tuple per element for a wide completion
  2263. # before the size cap could reject it — an RLIMIT_AS death on a value the
  2264. # meter would have refused. The value's escaped JSON is then produced in the
  2265. # SAME call, so the admitted value is serialized exactly once (see above);
  2266. # its size the walk proved within budget. Iterative like the encoder, so a
  2267. # valid completion deeper than the recursion limit still checks.
  2268. rejection = _check_done_value(value, max_value_bytes)
  2269. if rejection is not None:
  2270. kind, message = rejection
  2271. # The rejection diagnostic is capped like an exception message: a
  2272. # reason embedding a hostile class name (a huge `type(value).__name__`)
  2273. # could otherwise make the done frame exceed the host's frame parse cap
  2274. # and be silently dropped — an invalid-output run misreported as a
  2275. # worker-exit.
  2276. return {"type": "done", "error": {"kind": kind, "message": _cap_message(message, max_value_bytes)}}
  2277. # Pre-encode the value at the validation point (not in `_run`'s later send,
  2278. # which is outside the try): see the TOCTOU note in the docstring. The value
  2279. # is JSON-plain by construction, so `_encode_json_plain` is the encoder.
  2280. return '{"type": "done", "value": ' + _encode_json_plain(value) + "}"
  2281. def main() -> None:
  2282. channel = ProtocolChannel(PROTOCOL_FD)
  2283. asyncio.run(_run(channel))
  2284. if __name__ == "__main__":
  2285. main()