runtime.spec.ts 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082
  1. import { existsSync, readdirSync, realpathSync, statSync } from 'node:fs'
  2. import { mkdtemp, writeFile } from 'node:fs/promises'
  3. import { tmpdir } from 'node:os'
  4. import { basename, dirname, join } from 'node:path'
  5. import { describe, expect, it, vi } from 'vitest'
  6. import { Context } from '@deepseek-ai/cordis'
  7. import { PythonCodeRuntime, readProcessStart } from '../src/index.ts'
  8. import { logTruncationMarker } from '../src/protocol.ts'
  9. import type { Config } from '../src/index.ts'
  10. import type { CodeBindingFunction, CodeJsonValue, CodeRunResult } from '@deepseek-ai/dsh-code-runtime'
  11. /**
  12. * Names one `py/` script whose `copyFileSync` must fail, for the partial-staging
  13. * case. A real disk-full or missing-asset failure mid-copy cannot be produced
  14. * from a test, and the leak only shows when `mkdtempSync` has already succeeded.
  15. */
  16. const { failNextCopyOf } = vi.hoisted(() => ({ failNextCopyOf: { value: undefined as string | undefined } }))
  17. vi.mock('node:fs', async (importOriginal) => {
  18. const actual = await importOriginal<typeof import('node:fs')>()
  19. return {
  20. ...actual,
  21. copyFileSync(source: string, destination: string): void {
  22. if (failNextCopyOf.value !== undefined && basename(source) === failNextCopyOf.value) {
  23. failNextCopyOf.value = undefined
  24. throw Object.assign(new Error('simulated ENOSPC on copy'), { code: 'ENOSPC' })
  25. }
  26. actual.copyFileSync(source, destination)
  27. },
  28. }
  29. })
  30. /**
  31. * Integration suite over REAL python3 subprocesses (no subprocess mocks — it is
  32. * cheap and local, per docs/testing.md's real-over-mock policy; the only mock is
  33. * `node:fs.copyFileSync` for the staging-failure cases). Each test builds a fresh
  34. * runtime so budgets can be tuned per case.
  35. */
  36. async function setup(config: Config = {}) {
  37. const ctx = new Context()
  38. const fiber = await ctx.plugin(PythonCodeRuntime, config)
  39. const runtime = ctx.codeRuntime as PythonCodeRuntime
  40. return { ctx, fiber, runtime }
  41. }
  42. /** Convenience: one namespace `tools` with the given functions. */
  43. function tools(functions: Record<string, CodeBindingFunction>) {
  44. return [{ global: 'tools', functions }]
  45. }
  46. describe('PythonCodeRuntime — seam descriptors and misuse', () => {
  47. it('registers the seam descriptors', async () => {
  48. const { runtime } = await setup()
  49. expect(runtime.language).toBe('python')
  50. expect(runtime.isolation).toBe('process')
  51. })
  52. it('rejects non-positive config as seam misuse', async () => {
  53. const ctx = new Context()
  54. await expect(ctx.plugin(PythonCodeRuntime, { cpuSeconds: 0 }))
  55. .rejects.toThrow(/cpuSeconds must be a positive number/)
  56. await expect(ctx.plugin(PythonCodeRuntime, { maxWallMs: -1 }))
  57. .rejects.toThrow(/maxWallMs must be a positive number/)
  58. })
  59. it('rejects a non-integer cpuSeconds at load (setrlimit needs an int)', async () => {
  60. const ctx = new Context()
  61. await expect(ctx.plugin(PythonCodeRuntime, { cpuSeconds: 1.5 }))
  62. .rejects.toThrow(/cpuSeconds must be a positive integer, got 1.5/)
  63. })
  64. it('rejects a non-integer byte budget at load (the child int()-truncates it)', async () => {
  65. // maxLogBytes/maxValueBytes cross to the child, which reads them through
  66. // int(...): a float would floor there while the host meters the fraction, so
  67. // the two sides would enforce different public config. Reject at load.
  68. const ctxLog = new Context()
  69. await expect(ctxLog.plugin(PythonCodeRuntime, { maxLogBytes: 3.5 }))
  70. .rejects.toThrow(/maxLogBytes must be a positive integer/)
  71. const ctxValue = new Context()
  72. await expect(ctxValue.plugin(PythonCodeRuntime, { maxValueBytes: 1024.5 }))
  73. .rejects.toThrow(/maxValueBytes must be a positive integer/)
  74. })
  75. it('rejects finite numeric config that cannot cross as an exact rlimit integer', async () => {
  76. // `Number.isFinite` and `Number.isInteger` both admit values that cannot
  77. // round-trip. `addressSpaceMb: 1e308` overflows to `Infinity` once multiplied
  78. // by 1 MiB, and `encodeJsonPlain` renders that as `null`, so the child gets no
  79. // limit at all; `cpuSeconds: 1e100` clears `Number.isInteger` while sitting
  80. // far past the safe range, so `setrlimit` receives a different number than was
  81. // configured. Both used to end every run in a bootstrap exception instead of
  82. // failing at load, where a self-contained configuration error belongs.
  83. const ctx = new Context()
  84. await expect(ctx.plugin(PythonCodeRuntime, { addressSpaceMb: 1e308 }))
  85. .rejects.toThrow(/addressSpaceMb must be at most \d+ .*exact integer/)
  86. await expect(ctx.plugin(PythonCodeRuntime, { cpuSeconds: 1e100 }))
  87. .rejects.toThrow(/cpuSeconds must be at most \d+ .*exact integers/)
  88. // The boundary values still load: the bound rejects what cannot be encoded,
  89. // not everything large.
  90. const okMb = await ctx.plugin(PythonCodeRuntime, { addressSpaceMb: Math.floor(Number.MAX_SAFE_INTEGER / (1024 * 1024)) })
  91. await okMb.dispose()
  92. const okCpu = await ctx.plugin(PythonCodeRuntime, { cpuSeconds: Number.MAX_SAFE_INTEGER - 1 })
  93. await okCpu.dispose()
  94. })
  95. it('rejects an output cap whose payload could not cross the frame ceiling', async () => {
  96. // The caps budget a payload that must arrive inside ONE fd-3 frame, and the
  97. // 64 MiB frame parse cap is fixed. A larger cap is unsatisfiable rather
  98. // than generous: a completion the cap admits arrives as an over-ceiling
  99. // frame and fails the run as `worker-exit`, inverting the `output-limit`
  100. // the cap describes. Both budgets are metered in already-escaped serialized
  101. // bytes, so a payload occupies at most `cap + envelope` on the wire; the
  102. // bound is `parse-cap - envelope`, not `(ceiling - envelope) / 6` (that
  103. // divided in escape expansion the charge already counts). The receive path
  104. // rejects raw frames past the 64 MiB parse cap (the run settles as a
  105. // worker-exit), so a budget above it would admit a config whose honest
  106. // child frames the host then rejects.
  107. const admissible = 64 * 1024 * 1024 - 64
  108. const ctx = new Context()
  109. await expect(ctx.plugin(PythonCodeRuntime, { maxLogBytes: admissible + 1 }))
  110. .rejects.toThrow(/maxLogBytes must not exceed 67108800/)
  111. await expect(ctx.plugin(PythonCodeRuntime, { maxValueBytes: admissible + 1 }))
  112. .rejects.toThrow(/maxValueBytes must not exceed 67108800/)
  113. // The boundary value itself loads: the bound is the largest cap a frame can
  114. // still carry, not one below it. It needs an address space large enough to
  115. // clear the separate maxValueBytes/addressSpaceMb worst-case gate (the cap
  116. // times the 12x Unicode expansion must fit), so this pairs it with a 4 GiB
  117. // addressSpaceMb — the two load-time bounds are independent.
  118. const boundary = await ctx.plugin(PythonCodeRuntime, { maxValueBytes: admissible, addressSpaceMb: 4096 })
  119. await boundary.dispose()
  120. })
  121. it('rejects a pythonBin that spawn() would throw on, at load', async () => {
  122. // Both values pass the string schema and both make `spawn` throw
  123. // SYNCHRONOUSLY from inside run() — ERR_INVALID_ARG_VALUE for the empty
  124. // path, ERR_INVALID_ARG_TYPE for the NUL — so run() would REJECT instead of
  125. // resolving the worker-exit the seam promises for a child that cannot
  126. // start. Both are self-contained configuration errors, so they fail here.
  127. const ctx = new Context()
  128. await expect(ctx.plugin(PythonCodeRuntime, { pythonBin: '' }))
  129. .rejects.toThrow(/pythonBin must be a non-empty path without NUL bytes/)
  130. await expect(ctx.plugin(PythonCodeRuntime, { pythonBin: 'py\u0000thon3' }))
  131. .rejects.toThrow(/pythonBin must be a non-empty path without NUL bytes/)
  132. })
  133. it('skips relative PATH entries when resolving a basename pythonBin', async () => {
  134. // resolvePythonBin must return an absolute path: a RELATIVE PATH entry
  135. // ('.' here) would otherwise resolve the basename against the host CWD.
  136. // This run's CWD holds no executable named python3, so both the relative
  137. // skip and the accessSync-miss fall through to the absolute entry — the
  138. // case pins the contract (absolute candidate wins over a relative PATH
  139. // prefix), not a worker-exit distinction, which would need an executable
  140. // named python3 in the test CWD.
  141. const cp = await import('node:child_process')
  142. const nodePath = await import('node:path')
  143. const pythonDir = nodePath.dirname(cp.execFileSync('which', ['python3'], { encoding: 'utf8' }).trim())
  144. vi.stubEnv('PATH', `.:${pythonDir}`)
  145. try {
  146. const { runtime, fiber } = await setup({ pythonBin: 'python3', maxWallMs: 30_000 })
  147. const result = await runtime.run({ program: 'return 1', bindings: [] })
  148. expect(result.error).toBeUndefined()
  149. expect(result.value).toBe(1)
  150. await fiber.dispose()
  151. } finally {
  152. vi.unstubAllEnvs()
  153. }
  154. }, 45_000)
  155. it('ignores a forged second boot-ack without re-sending the run frame', async () => {
  156. // The run frame is sent once, from the first boot-ack; a program that
  157. // forges an extra boot-ack frame on fd 3 must not re-enter the gate (a
  158. // second run frame would confuse the child's frame reader). The honest
  159. // child sends exactly one ack; the forged one exercises the re-entry
  160. // guard.
  161. const { runtime } = await setup()
  162. const result = await runtime.run({
  163. program: [
  164. 'import os',
  165. // One forged boot-ack after the program starts; the run already went
  166. // out on the real ack.
  167. "os.write(3, b'{\"type\":\"boot-ack\"}\\n')",
  168. 'return "done"',
  169. ].join('\n'),
  170. bindings: [],
  171. })
  172. expect(result.error).toBeUndefined()
  173. expect(result.value).toBe('done')
  174. }, 15_000)
  175. it('skips a PATH entry that is an executable DIRECTORY named like the interpreter', async () => {
  176. // accessSync(X_OK) succeeds on directories, so without the isFile guard a
  177. // PATH entry like a `python3` directory would be chosen over a later real
  178. // interpreter. The stub PATH puts such a directory first and asserts the
  179. // real interpreter is used.
  180. const cp = await import('node:child_process')
  181. const nodePath = await import('node:path')
  182. const { mkdtempSync, mkdirSync } = await import('node:fs')
  183. const { tmpdir } = await import('node:os')
  184. const realPythonDir = nodePath.dirname(cp.execFileSync('which', ['python3'], { encoding: 'utf8' }).trim())
  185. const fakeDir = mkdtempSync(nodePath.join(tmpdir(), 'dsh-fake-bin-'))
  186. mkdirSync(nodePath.join(fakeDir, 'python3')) // A directory named python3, executable by default.
  187. vi.stubEnv('PATH', `${fakeDir}:${realPythonDir}`)
  188. try {
  189. const { runtime, fiber } = await setup({ pythonBin: 'python3', maxWallMs: 30_000 })
  190. const result = await runtime.run({ program: 'return 1', bindings: [] })
  191. expect(result.error).toBeUndefined()
  192. expect(result.value).toBe(1)
  193. await fiber.dispose()
  194. } finally {
  195. vi.unstubAllEnvs()
  196. }
  197. }, 45_000)
  198. it('rejects a timer budget setTimeout would silently clamp to 1 ms', async () => {
  199. // Node stores a setTimeout delay as a signed 32-bit value and substitutes
  200. // 1 ms for anything larger, inverting the knob's meaning: a huge maxWallMs
  201. // would time every run out at once, and a huge graceMs would SIGKILL one
  202. // millisecond after SIGTERM. Both must fail at load instead.
  203. const ctx = new Context()
  204. await expect(ctx.plugin(PythonCodeRuntime, { maxWallMs: 2_147_483_648 }))
  205. .rejects.toThrow(/maxWallMs must not exceed 2147483647/)
  206. // graceMs is bounded by the close deadline's added margin, not by the raw
  207. // timer maximum, because that sum is what gets armed.
  208. await expect(ctx.plugin(PythonCodeRuntime, { graceMs: 2_147_481_648 }))
  209. .rejects.toThrow(/graceMs must not exceed 2147481647/)
  210. // The exact maxima still load.
  211. await expect(ctx.plugin(PythonCodeRuntime, { maxWallMs: 2_147_483_647, graceMs: 2_147_481_647 }))
  212. .resolves.toBeDefined()
  213. })
  214. it('rejects loading this Unix-only backend on Windows', async () => {
  215. // The bootstrap needs the POSIX `resource` module, a positional fd 3, and
  216. // negative-PID process-group signals — none on Windows. The constructor
  217. // must throw at load rather than register ctx.codeRuntime and defer the
  218. // failure to the first run.
  219. const original = process.platform
  220. Object.defineProperty(process, 'platform', { value: 'win32', configurable: true })
  221. try {
  222. const ctx = new Context()
  223. await expect(ctx.plugin(PythonCodeRuntime, {})).rejects.toThrow(/requires a Unix platform/)
  224. } finally {
  225. Object.defineProperty(process, 'platform', { value: original, configurable: true })
  226. }
  227. })
  228. it('rejects a binding global that is not a Python identifier or is reserved', async () => {
  229. const { runtime } = await setup()
  230. await expect(runtime.run({
  231. program: 'return 1',
  232. bindings: [{ global: '1bad', functions: {} }],
  233. })).rejects.toThrow(/is not a usable Python identifier/)
  234. await expect(runtime.run({
  235. program: 'return 1',
  236. bindings: [{ global: 'class', functions: {} }],
  237. })).rejects.toThrow(/is not a usable Python identifier/)
  238. })
  239. it('rejects duplicate binding namespaces', async () => {
  240. const { runtime } = await setup()
  241. await expect(runtime.run({
  242. program: 'return 1',
  243. bindings: [
  244. { global: 'tools', functions: {} },
  245. { global: 'tools', functions: {} },
  246. ],
  247. })).rejects.toThrow(/duplicate binding global/)
  248. })
  249. it('rejects run() after disposal, and unregisters ctx.codeRuntime', async () => {
  250. const { ctx, fiber, runtime } = await setup()
  251. await fiber.dispose()
  252. await expect(runtime.run({ program: 'return 1', bindings: [] }))
  253. .rejects.toThrow(/after disposal/)
  254. expect(ctx.get('codeRuntime')).toBeUndefined()
  255. })
  256. it('short-circuits when the request signal is already aborted', async () => {
  257. const { runtime } = await setup()
  258. const signal = AbortSignal.abort('already-cancelled')
  259. const result = await runtime.run({ program: 'return 1', bindings: [], signal })
  260. expect(result.error?.kind).toBe('abort')
  261. expect(result.error?.message).toContain('already-cancelled')
  262. expect(result.logs).toEqual([])
  263. })
  264. it('short-circuits on an already-aborted signal whose reason cannot be converted', async () => {
  265. // The pre-flight arm converted the reason with a bare `String()`, so a
  266. // hostile reason threw out of `run()` — the seam promises to reject only for
  267. // misuse, and a caller's cancellation token is not misuse.
  268. const { runtime } = await setup()
  269. const signal = AbortSignal.abort({
  270. [Symbol.toPrimitive]() { throw new Error('reason blew up') },
  271. })
  272. const result = await runtime.run({ program: 'return 1', bindings: [], signal })
  273. expect(result.error?.kind).toBe('abort')
  274. expect(result.error?.message).toBe('<unrenderable rejection value>')
  275. expect(result.logs).toEqual([])
  276. })
  277. it('runs the interpreter from materialized scripts outside the package, and removes them per run', async () => {
  278. // The interpreter is an EXTERNAL process, so it can only open paths the OS
  279. // resolves. Inside the single-file Python-SDK executable the packaged `py/`
  280. // directory lives in pkg's virtual filesystem, which Node reads through its
  281. // patched `fs` but `python3` cannot see, so spawning from that path fails
  282. // with ENOENT. The scripts are therefore copied to a real directory first.
  283. //
  284. // The path is read from the child's own `__main__` module, so it proves
  285. // where the interpreter actually loaded the entry script — asserting on a
  286. // host-side constant would only restate the source. The program namespace
  287. // seeds `__name__` but no `__file__`, hence the module lookup.
  288. // `protocol.py` must land in the SAME directory, since `bootstrap.py` puts
  289. // its own directory on `sys.path` to import it; the run completing at all
  290. // already exercises that import.
  291. const { runtime } = await setup()
  292. const entryOf = async (): Promise<string> => {
  293. const result = await runtime.run({ program: 'import sys\nreturn sys.modules["__main__"].__file__', bindings: [] })
  294. expect(result.error).toBeUndefined()
  295. return result.value as string
  296. }
  297. const entry = await entryOf()
  298. expect(entry.endsWith('/bootstrap.py')).toBe(true)
  299. const dir = dirname(entry)
  300. expect(dir.startsWith(realpathSync(tmpdir()))).toBe(true)
  301. expect(dir).not.toContain('/packages/')
  302. // Staging is per RUN and removed at settlement, so by the time `run()`
  303. // resolved the directory is already gone — nothing survives to be rewritten
  304. // by a later run. `protocol.py` had to be beside the entry script for the run
  305. // to complete at all, since `bootstrap.py` imports it off `sys.path`.
  306. expect(existsSync(dir)).toBe(false)
  307. // A second run stages its own copy rather than reusing the first.
  308. expect(dirname(await entryOf())).not.toBe(dir)
  309. })
  310. it('contains a program that rewrites its own bootstrap to the run that did it', async () => {
  311. // The child runs as the same UID as the host, so `0o700` does not stop model
  312. // code from rewriting the scripts it was started from —
  313. // `sys.modules['__main__'].__file__` names them. While all runs shared one
  314. // staged copy, a program that overwrote `bootstrap.py` broke the NEXT run
  315. // (measured: it settled as `worker-exit`), and substituted code would have
  316. // run before the resource limits were applied.
  317. const { runtime } = await setup({ maxWallMs: 10_000 })
  318. const sabotage = await runtime.run({
  319. program: [
  320. 'import sys',
  321. 'path = sys.modules["__main__"].__file__',
  322. 'open(path, "w").write("raise SystemExit(1)\\n")',
  323. 'return path',
  324. ].join('\n'),
  325. bindings: [],
  326. })
  327. expect(sabotage.error).toBeUndefined()
  328. // The damage stayed inside the run that caused it.
  329. const after = await runtime.run({ program: 'return 1 + 1', bindings: [] })
  330. expect(after.error).toBeUndefined()
  331. expect(after.value).toBe(2)
  332. }, 20_000)
  333. it('leaves no subprocess or scripts behind when disposal races the first run', async () => {
  334. // Staging runs SYNCHRONOUSLY so no async boundary opens between `run()` and
  335. // the point where `execute` registers the run in `live` and installs the
  336. // abort listener. With an `await` there, a disposal landing in that window
  337. // saw an empty `live`, returned, removed the script directory, and let the
  338. // continuation spawn a subprocess after the fiber was gone.
  339. //
  340. // `dispose()` is called in the same synchronous turn as `run()`, with no
  341. // `await` between them, so it lands exactly in that window.
  342. //
  343. // The leak assertion compares before and after rather than requiring an
  344. // empty tmpdir: other tests in this file build runtimes they never dispose,
  345. // so only the directories this test adds are its own evidence.
  346. const staged = (): string[] =>
  347. readdirSync(realpathSync(tmpdir())).filter(name => name.startsWith('dsh-code-runtime-python-'))
  348. const before = new Set(staged())
  349. const { fiber, runtime } = await setup({ maxWallMs: 8_000 })
  350. const pending = runtime.run({ program: 'import time\nwhile True: time.sleep(0.1)', bindings: [] })
  351. const disposed = fiber.dispose()
  352. const result = await pending
  353. await disposed
  354. // Whatever the run reports, it must be terminal and must not be a success.
  355. expect(result.value).toBeUndefined()
  356. expect(['abort', 'worker-exit', 'timeout']).toContain(result.error?.kind)
  357. // Disposal is to quiescence, so this run's directory is gone once it
  358. // resolves, and nothing recreated it afterwards.
  359. expect(staged().filter(name => !before.has(name))).toEqual([])
  360. }, 15_000)
  361. it('settles as abort when the signal fires in the same turn as the first run', async () => {
  362. // Same window, the other listener. `addEventListener('abort')` does not
  363. // replay an event that already fired, so an abort landing before the
  364. // listener was installed used to be missed entirely and the program ran to
  365. // success or the wall ceiling instead of resolving as `abort`. Synchronous
  366. // staging keeps the pre-flight check and the listener in one turn, leaving
  367. // no gap for the signal to slip through.
  368. const { runtime } = await setup({ maxWallMs: 4_000, graceMs: 200 })
  369. const controller = new AbortController()
  370. const pending = runtime.run({
  371. program: 'import time\nwhile True: time.sleep(0.1)',
  372. bindings: [],
  373. signal: controller.signal,
  374. })
  375. controller.abort('same-turn-abort')
  376. const result = await pending
  377. expect(result.error?.kind).toBe('abort')
  378. expect(result.error?.message).toContain('same-turn-abort')
  379. }, 15_000)
  380. it('reports a staging failure as worker-exit instead of rejecting run()', async () => {
  381. // Staging touches the filesystem, so it can fail for reasons that are not
  382. // the caller's doing: a full or read-only temp filesystem, or a deployment
  383. // that failed to ship the packaged scripts. Those are SUBSTRATE failures,
  384. // the same class as a child that cannot start, and the seam reserves
  385. // rejection for misuse — so `run()` must resolve, not throw.
  386. //
  387. // `TMPDIR` is the honest lever: `mkdtempSync` builds its path from
  388. // `os.tmpdir()`, so pointing it at a path that is not a directory makes the
  389. // real call fail without stubbing the module under test.
  390. const previous = process.env.TMPDIR
  391. const notADirectory = join(await mkdtemp(join(tmpdir(), 'dsh-staging-')), 'file')
  392. await writeFile(notADirectory, '')
  393. process.env.TMPDIR = notADirectory
  394. try {
  395. const { runtime } = await setup()
  396. const result = await runtime.run({ program: 'return 1', bindings: [] })
  397. expect(result.error?.kind).toBe('worker-exit')
  398. expect(result.error?.message).toContain('failed to stage the python bootstrap')
  399. expect(result.logs).toEqual([])
  400. } finally {
  401. if (previous === undefined) delete process.env.TMPDIR
  402. else process.env.TMPDIR = previous
  403. }
  404. })
  405. it('leaves no staging directory behind when a script copy fails', async () => {
  406. // `mkdtempSync` succeeding and a later `copyFileSync` failing is its own
  407. // case: the directory exists but is only partially populated. Recording it
  408. // before the copies would leak it, because `run` retries staging on the next
  409. // call and overwrites the single recorded path — teardown could then remove
  410. // only the newest attempt. Staging must clean up its own partial directory.
  411. //
  412. // Only `copyFileSync` is stubbed, and only for the second script, so
  413. // `mkdtempSync` really runs and the directory under assertion is real.
  414. const staged = (): string[] =>
  415. readdirSync(realpathSync(tmpdir())).filter(name => name.startsWith('dsh-code-runtime-python-'))
  416. const before = new Set(staged())
  417. failNextCopyOf.value = 'protocol.py'
  418. try {
  419. const { runtime } = await setup()
  420. const result = await runtime.run({ program: 'return 1', bindings: [] })
  421. expect(result.error?.kind).toBe('worker-exit')
  422. expect(result.error?.message).toContain('failed to stage the python bootstrap')
  423. // The partial directory is gone, so nothing accumulates across retries.
  424. expect(staged().filter(name => !before.has(name))).toEqual([])
  425. } finally {
  426. failNextCopyOf.value = undefined
  427. }
  428. }, 15_000)
  429. })
  430. describe('PythonCodeRuntime — process identity', () => {
  431. it('reads a live process start time and distinguishes it from an absent pid', () => {
  432. // The teardown guard signals `-child.pid` with a RAW `process.kill`, which
  433. // (unlike `child.kill()`) has no handle check, so it would reach a recycled
  434. // pgid during the window between the leader being reaped and `close` firing.
  435. // A pid alone cannot separate the original from its replacement -- both
  436. // answer `kill(pid, 0)` -- so the guard compares START TIME, and this pins
  437. // that the reading is stable for one process and absent for a pid that
  438. // cannot be read.
  439. const own = readProcessStart(process.pid)
  440. if (process.platform === 'linux') {
  441. // Same process, two reads: the identity must be stable, or the guard would
  442. // refuse to signal its own live group.
  443. expect(own).toBeDefined()
  444. expect(readProcessStart(process.pid)).toBe(own)
  445. // Pid 0 is never a readable /proc entry, so the guard degrades to
  446. // undefined rather than throwing on a teardown path. This is also the
  447. // reading a REAPED leader produces -- its /proc entry is gone while the
  448. // group it led can still hold survivors -- so `undefined` must NOT be
  449. // treated as an identity mismatch. Reading it as one refused the SIGKILL
  450. // that the same-group survivor tests depend on, which is why they went red
  451. // on Linux while passing on Darwin (where the reader always returns
  452. // undefined and the guard is inert).
  453. expect(readProcessStart(0)).toBeUndefined()
  454. } else {
  455. // Darwin has no /proc: the reader reports undefined, and `killGroup`
  456. // signals the pgid without the identity re-check instead of paying a `ps`
  457. // fork per signal.
  458. expect(own).toBeUndefined()
  459. }
  460. })
  461. })
  462. describe('PythonCodeRuntime — inherited resource limits', () => {
  463. it('runs under an inherited hard limit tighter than addressSpaceMb', async () => {
  464. // An unprivileged process may lower a hard rlimit but never raise it. Under
  465. // a harness started with `ulimit -v` below `addressSpaceBytes`, requesting
  466. // the configured cap made `setrlimit` raise `ValueError` and every run
  467. // returned a bootstrap exception — even though the inherited limit is
  468. // STRONGER than the one asked for. The bootstrap clamps to the inherited
  469. // hard limit instead, so the run proceeds under the stricter bound.
  470. //
  471. // `pythonBin` is the honest lever: a wrapper that lowers RLIMIT_AS and then
  472. // execs the real interpreter reproduces the inherited-limit condition
  473. // without touching this test process's own limits.
  474. const dir = await mkdtemp(join(tmpdir(), 'dsh-rlimit-'))
  475. const wrapper = join(dir, 'python3-capped')
  476. // 256 MiB, half the 512 MiB addressSpaceMb default, so the requested cap is
  477. // unambiguously above the inherited ceiling.
  478. await writeFile(wrapper, '#!/bin/sh\nulimit -v 262144\nexec python3 "$@"\n', { mode: 0o755 })
  479. const { runtime } = await setup({ pythonBin: wrapper })
  480. const result = await runtime.run({
  481. program: 'import resource\nreturn resource.getrlimit(resource.RLIMIT_AS)[1]',
  482. bindings: [],
  483. })
  484. expect(result.error).toBeUndefined()
  485. // The applied hard limit is the inherited one, not the configured 512 MiB.
  486. expect(result.value).toBe(256 * 1024 * 1024)
  487. }, 15_000)
  488. it('rejects at boot when an inherited RLIMIT_AS is too tight for the output budgets', async () => {
  489. // The host gate validates the output budgets against the CONFIGURED
  490. // addressSpaceMb, but a launch environment can inherit a STRICTER RLIMIT_AS
  491. // (a `ulimit -v` wrapper below addressSpaceMb), which the bootstrap clamps the
  492. // effective limit down to — leaving the budgets sized for a ceiling the child
  493. // never gets, so a near-budget output would OOM mid-run as an opaque
  494. // worker-exit. The bootstrap re-checks both budgets against the EFFECTIVE
  495. // clamped limit and fails loud at boot instead. A 128 MiB inherited limit
  496. // leaves 64 MiB budgetable (~5 MiB admissible under the 12x multiple), under
  497. // which a 32 MiB maxLogBytes — admitted by the 512 MiB configured default — is
  498. // rejected. The rejection surfaces as an 'exception' (bootstrap's
  499. // setrlimit-phase failure class), not a mid-run OOM. The repro is Linux-only
  500. // (macOS ignores `ulimit -v`); there the run proceeds.
  501. const dir = await mkdtemp(join(tmpdir(), 'dsh-rlimit-'))
  502. const wrapper = join(dir, 'python3-tight')
  503. await writeFile(wrapper, '#!/bin/sh\nulimit -v 131072\nexec python3 "$@"\n', { mode: 0o755 })
  504. const { runtime } = await setup({ pythonBin: wrapper, maxLogBytes: 32 * 1024 * 1024, addressSpaceMb: 512 })
  505. const result = await runtime.run({ program: 'return 1', bindings: [] })
  506. if (process.platform === 'darwin') {
  507. expect(result.error).toBeUndefined()
  508. } else {
  509. // The re-check raises inside bootstrap's resource-limit block, which
  510. // reports every setrlimit-phase failure as kind 'exception'; the message
  511. // discriminates this config rejection from a generic setrlimit error.
  512. expect(result.error?.kind).toBe('exception')
  513. expect(result.error?.message).toContain('too large for the inherited RLIMIT_AS')
  514. }
  515. }, 15_000)
  516. it('applies the configured limits when nothing tighter is inherited', async () => {
  517. // The clamp must not weaken the normal path: with an infinite inherited hard
  518. // limit there is nothing to clamp against, and RLIM_INFINITY compares as -1,
  519. // so treating it as a numeric bound would collapse every limit to -1.
  520. const { runtime } = await setup({ cpuSeconds: 42, addressSpaceMb: 400 })
  521. const result = await runtime.run({
  522. // `getrlimit` returns a tuple, which the lossless-JSON completion check
  523. // rejects; the pair is listed explicitly rather than converted.
  524. program: 'import resource\ncpu = resource.getrlimit(resource.RLIMIT_CPU)\nreturn [cpu[0], cpu[1], resource.getrlimit(resource.RLIMIT_AS)[1]]',
  525. bindings: [],
  526. })
  527. expect(result.error).toBeUndefined()
  528. // Soft at cpuSeconds, hard at +1 (the SIGKILL backstop), address space at
  529. // the configured megabytes — exactly what the unclamped path applied.
  530. expect(result.value).toEqual([42, 43, 400 * 1024 * 1024])
  531. }, 15_000)
  532. it('preserves an inherited soft limit stricter than the configured cap', async () => {
  533. // Clamping reads BOTH inherited bounds, not just the hard one. A deployment
  534. // that inherited a soft rlimit below the configured cap must keep that
  535. // stricter soft: returning the configured value would RAISE the effective
  536. // soft limit, loosening containment. The wrapper lowers only the SOFT CPU
  537. // limit (`ulimit -S -t`) and leaves the hard limit unlimited, so the
  538. // requested soft (`cpuSeconds`) sits above the inherited soft — the case that
  539. // exposed the bug. RLIMIT_CPU is used because macOS ignores `ulimit -v`
  540. // (RLIMIT_AS), which is exactly why the backend skips address space there.
  541. const dir = await mkdtemp(join(tmpdir(), 'dsh-rlimit-soft-'))
  542. const wrapper = join(dir, 'python3-soft-capped')
  543. // Soft CPU 5 s, well below the configured 30 s, hard left unlimited.
  544. await writeFile(wrapper, '#!/bin/sh\nulimit -S -t 5\nexec python3 "$@"\n', { mode: 0o755 })
  545. const { runtime } = await setup({ pythonBin: wrapper, cpuSeconds: 30 })
  546. const result = await runtime.run({
  547. program: 'import resource\nreturn resource.getrlimit(resource.RLIMIT_CPU)[0]',
  548. bindings: [],
  549. })
  550. expect(result.error).toBeUndefined()
  551. // The applied SOFT limit is the inherited 5 s, not the configured 30 s.
  552. expect(result.value).toBe(5)
  553. }, 15_000)
  554. it('reports a CPU overrun under a dual-limit ulimit as a timeout, not a worker-exit', async () => {
  555. // `ulimit -t N` sets BOTH the soft and hard CPU limit to N. The kernel
  556. // checks the hard limit and SIGKILLs a busy loop directly, so with
  557. // soft == hard the SIGXCPU signal is never delivered — and the host
  558. // classifies a CPU overrun ONLY on `signal === 'SIGXCPU'`, so the overrun
  559. // would be misreported as a `worker-exit` instead of a timeout. `_clamped`
  560. // now lowers a clamped soft==hard result by one unit (when hard >= 2), so
  561. // the SIGXCPU signal fires at the softer limit and the run reports a
  562. // timeout. This uses `ulimit -t 2` (hard == 2, so the soft is lowered to 1)
  563. // and leaves SIGXCPU unhandled, so the kernel terminates the busy loop at
  564. // 1 s with SIGXCPU and the host classifies it as a timeout.
  565. const dir = await mkdtemp(join(tmpdir(), 'dsh-rlimit-dual-'))
  566. const wrapper = join(dir, 'python3-dual-capped')
  567. // Both soft and hard CPU 2 s; configured cpuSeconds 30 s.
  568. await writeFile(wrapper, '#!/bin/sh\nulimit -t 2\nexec python3 "$@"\n', { mode: 0o755 })
  569. const { runtime } = await setup({ pythonBin: wrapper, cpuSeconds: 30, maxWallMs: 12_000 })
  570. const result = await runtime.run({
  571. program: [
  572. 'while True:',
  573. ' pass',
  574. 'return "unreachable"',
  575. ].join('\n'),
  576. bindings: [],
  577. })
  578. expect(result.error?.kind).toBe('timeout')
  579. expect(result.error?.message).toContain('CPU time exhausted')
  580. }, 15_000)
  581. it('reports a timeout when a program masks SIGXCPU and returns past the soft limit', async () => {
  582. // A program can mask SIGXCPU (pthread_sigmask SIG_BLOCK), burn past the
  583. // soft CPU limit, and return during the soft-to-hard gap. The settlement
  584. // recheck (`die_if_cpu_exhausted`) must UNBLOCK the signal before
  585. // re-delivering it, or the SIGXCPU stays pending and the child exits
  586. // normally with a success result. With the unblock, the re-delivered
  587. // SIGXCPU (default disposition) terminates the child and the host
  588. // classifies the run as a timeout. Fail-before: without the unblock the
  589. // run reports `value: "escaped"` and no error. The masking is guarded by
  590. // hasattr so the case is a no-op on platforms without pthread_sigmask.
  591. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 12_000 })
  592. const result = await runtime.run({
  593. program: [
  594. 'import signal, time',
  595. 'if hasattr(signal, "pthread_sigmask"):',
  596. ' signal.pthread_sigmask(signal.SIG_BLOCK, {signal.SIGXCPU})',
  597. 'end = time.process_time() + 1.05',
  598. 'while time.process_time() < end:',
  599. ' pass',
  600. 'return "escaped"',
  601. ].join('\n'),
  602. bindings: [],
  603. })
  604. expect(result.error?.kind).toBe('timeout')
  605. expect(result.value).toBeUndefined()
  606. }, 20_000)
  607. it('reports a timeout when a program traps AND masks SIGXCPU and returns past the soft limit', async () => {
  608. // The mask-only case exercises the unblock; the trap+mask combination is
  609. // the harder one: a program that installed a custom handler AND masked the
  610. // signal has that PENDING handler run the moment the signal is unblocked
  611. // (CPython delivers it at the next eval-breaker checkpoint in model code),
  612. // and the handler re-masks — so the settlement recheck must restore the
  613. // default disposition BEFORE unblocking. With SIG_DFL restored first, the
  614. // pending signal kills the process inside the kernel with no bytecode
  615. // window; without it, the handler re-blocks and the child exits normally
  616. // with a success value. Fail-before: the run reports `value: "escaped"`.
  617. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 12_000 })
  618. const result = await runtime.run({
  619. program: [
  620. 'import signal, time',
  621. 'if hasattr(signal, "pthread_sigmask"):',
  622. ' def h(signum, frame):',
  623. ' signal.pthread_sigmask(signal.SIG_BLOCK, {signal.SIGXCPU})',
  624. ' signal.signal(signal.SIGXCPU, h)',
  625. ' signal.pthread_sigmask(signal.SIG_BLOCK, {signal.SIGXCPU})',
  626. ' end = time.process_time() + 1.05',
  627. ' while time.process_time() < end:',
  628. ' pass',
  629. 'return "escaped"',
  630. ].join('\n'),
  631. bindings: [],
  632. })
  633. expect(result.error?.kind).toBe('timeout')
  634. expect(result.value).toBeUndefined()
  635. }, 20_000)
  636. it('rechecks CPU at settlement against the effective inherited soft limit', async () => {
  637. // The settlement-time CPU recheck must compare against the EFFECTIVE soft
  638. // limit (`_clamped` may have lowered it to a stricter inherited value), not
  639. // the configured `cpuSeconds`. A program that traps SIGXCPU, burns past the
  640. // inherited soft, and returns inside the soft-to-hard gap would otherwise be
  641. // compared to the configured value and falsely reported successful, bypassing
  642. // the inherited limit. The wrapper sets a 1 s soft CPU limit; the program
  643. // traps SIGXCPU and busy-loops past it, then returns — the recheck must
  644. // re-deliver SIGXCPU so the host classifies the run as a timeout.
  645. const dir = await mkdtemp(join(tmpdir(), 'dsh-cpu-recheck-'))
  646. const wrapper = join(dir, 'python3-cpu-capped')
  647. await writeFile(wrapper, '#!/bin/sh\nulimit -S -t 1\nexec python3 "$@"\n', { mode: 0o755 })
  648. const { runtime } = await setup({ pythonBin: wrapper, cpuSeconds: 30, maxWallMs: 12_000 })
  649. const result = await runtime.run({
  650. program: [
  651. 'import signal, time',
  652. // Trap SIGXCPU so the soft limit does not terminate the program; burn
  653. // CPU well past the inherited 1 s soft, then return normally.
  654. 'signal.signal(signal.SIGXCPU, lambda *a: None)',
  655. 'end = time.process_time() + 2.5',
  656. 'while time.process_time() < end:',
  657. ' pass',
  658. 'return "returned"',
  659. ].join('\n'),
  660. bindings: [],
  661. })
  662. // The recheck compares spent CPU against the effective 1 s soft, not 30 s, so
  663. // the run is a timeout rather than a false success.
  664. expect(result.error?.kind).toBe('timeout')
  665. }, 20_000)
  666. })
  667. describe('PythonCodeRuntime — programs and bindings', () => {
  668. it('runs a top-level script, captures print output, and returns `result`', async () => {
  669. const { runtime } = await setup()
  670. const result = await runtime.run({
  671. program: [
  672. 'x = 40',
  673. 'y = 2',
  674. 'print("hello", x + y)',
  675. 'return {"answer": x + y}',
  676. ].join('\n'),
  677. bindings: [],
  678. })
  679. expect(result.error).toBeUndefined()
  680. expect(result.value).toEqual({ answer: 42 })
  681. // `print` in Python emits: text, ' ', text, '\n'. Concat the captured
  682. // fragments and assert the model-visible message survives.
  683. expect(result.logs.join('')).toContain('hello 42')
  684. // 15s: this is usually the suite's first real subprocess — a cold python3
  685. // start (interpreter + asyncio import) on a loaded CI runner can exceed
  686. // the 5s default alone; later tests reuse the warm page cache.
  687. }, 15_000)
  688. it('bridges binding calls both ways and rejects the program-side call on a host rejection', async () => {
  689. const { runtime } = await setup()
  690. const calls: unknown[] = []
  691. const result = await runtime.run({
  692. program: [
  693. 'first = await tools.echo({"n": 1})',
  694. 'caught = ""',
  695. 'try:',
  696. ' await tools.fail({})',
  697. 'except RuntimeError as e:',
  698. ' caught = str(e)',
  699. 'return {"first": first, "caught": caught}',
  700. ].join('\n'),
  701. bindings: tools({
  702. echo: async (args) => { calls.push(args); return { echoed: args as CodeJsonValue } },
  703. fail: async () => { throw new Error('nope') },
  704. }),
  705. })
  706. expect(result.error).toBeUndefined()
  707. expect(result.value).toEqual({ first: { echoed: { n: 1 } }, caught: 'nope' })
  708. expect(calls).toEqual([{ n: 1 }])
  709. })
  710. it('keeps decoding binding replies when _decode_json_plain is rebound', async () => {
  711. // read_frame_async resolves _decode_json_plain at call time; a program that
  712. // rebinds __main__._decode_json_plain would otherwise kill the reply pump
  713. // (a broken decode strands every pending Future to the wall clock). The
  714. // decode primitives are def-time captures on the channel methods, so a
  715. // rebind cannot break reply delivery.
  716. const { runtime } = await setup()
  717. const result = await runtime.run({
  718. program: [
  719. 'import __main__',
  720. '__main__._decode_json_plain = None',
  721. 'first = await tools.echo({"n": 1})',
  722. 'return first',
  723. ].join('\n'),
  724. bindings: tools({
  725. echo: async args => ({ echoed: args as CodeJsonValue }),
  726. }),
  727. })
  728. expect(result.error).toBeUndefined()
  729. expect(result.value).toEqual({ echoed: { n: 1 } })
  730. }, 15_000)
  731. it('keeps dispatch working when _lossless_json_violation, asyncio, and send_sync are rebound', async () => {
  732. // dispatch binds _lossless_json_violation, asyncio.get_event_loop, and the
  733. // channel's send method into _run locals before the program runs, so a
  734. // rebind of __main__._lossless_json_violation/__main__.asyncio/
  735. // __main__.ProtocolChannel.send_sync cannot turn a legitimate binding call
  736. // into an exception or a wall-clock timeout.
  737. const { runtime } = await setup()
  738. const result = await runtime.run({
  739. program: [
  740. 'import __main__',
  741. 'def boom(*a, **k):',
  742. ' raise RuntimeError("hijacked")',
  743. '__main__._lossless_json_violation = boom',
  744. '__main__.asyncio = boom',
  745. '__main__.ProtocolChannel.send_sync = boom',
  746. '__main__._encode_json_plain = boom',
  747. '__main__.ProtocolChannel.write_encoded = boom',
  748. 'first = await tools.echo({"n": 1})',
  749. 'return first',
  750. ].join('\n'),
  751. bindings: tools({
  752. echo: async args => ({ echoed: args as CodeJsonValue }),
  753. }),
  754. })
  755. expect(result.error).toBeUndefined()
  756. expect(result.value).toEqual({ echoed: { n: 1 } })
  757. }, 15_000)
  758. it('keeps the reply pump reading when the read_frame_async class attribute is rebound', async () => {
  759. // _pump_replies' frame reader is a bound method captured by _run before the
  760. // program runs and passed in as an explicit argument, so a program rebinding
  761. // `__main__.ProtocolChannel.read_frame_async` cannot redirect the pump (a
  762. // body-local `channel.read_frame_async` lookup would resolve the rebound
  763. // class attribute, since the pump starts after the program's top-level
  764. // statements).
  765. const { runtime } = await setup()
  766. const result = await runtime.run({
  767. program: [
  768. 'import __main__',
  769. 'async def boom(*a, **k):',
  770. ' raise RuntimeError("hijacked reader")',
  771. '__main__.ProtocolChannel.read_frame_async = boom',
  772. 'first = await tools.echo({"n": 1})',
  773. 'return first',
  774. ].join('\n'),
  775. bindings: tools({
  776. echo: async args => ({ echoed: args as CodeJsonValue }),
  777. }),
  778. })
  779. expect(result.error).toBeUndefined()
  780. expect(result.value).toEqual({ echoed: { n: 1 } })
  781. }, 15_000)
  782. it('keeps the rejection contract when _BindingRejection is rebound', async () => {
  783. // `dispatch`'s except clause resolves `_BindingRejection` at call time; a
  784. // program that rebinds `__main__._BindingRejection = ValueError` would
  785. // otherwise let the internal marker type leak into model code (the program
  786. // would catch a `ValueError` for a host rejection). The class is now bound
  787. // into `_run` locals before the program runs, so a host rejection still
  788. // surfaces as the declared `RuntimeError`.
  789. const { runtime } = await setup()
  790. const result = await runtime.run({
  791. program: [
  792. 'import __main__',
  793. '__main__._BindingRejection = ValueError',
  794. 'caught = ""',
  795. 'try:',
  796. ' await tools.fail({})',
  797. 'except RuntimeError as e:',
  798. ' caught = e.args[0] if e.args else ""',
  799. 'except Exception as e:',
  800. ' caught = "WRONG TYPE: " + type(e).__name__',
  801. 'return caught',
  802. ].join('\n'),
  803. bindings: tools({
  804. fail: async () => { throw new Error('nope') },
  805. }),
  806. })
  807. expect(result.error).toBeUndefined()
  808. expect(result.value).toBe('nope')
  809. }, 15_000)
  810. it('still answers the call when the rejection value cannot be converted to a string', async () => {
  811. // `messageOf` calls `String(error)`, which runs the value's own conversion,
  812. // and this call site is a DETACHED async reply callback. A rejection whose
  813. // `Symbol.toPrimitive` throws therefore escaped as an unhandled rejection:
  814. // the reply frame was never written, the program stayed blocked on `await`,
  815. // and the run degraded to a `maxWallMs` timeout (observed) — a host with no
  816. // `unhandledRejection` listener would exit instead. The rejection must reach
  817. // the program as an ordinary error carrying a fixed placeholder.
  818. const { runtime } = await setup({ maxWallMs: 8_000 })
  819. const result = await runtime.run({
  820. program: [
  821. 'try:',
  822. ' await tools.hostile({})',
  823. 'except RuntimeError as e:',
  824. ' return "rejected: " + str(e)',
  825. 'return "no rejection"',
  826. ].join('\n'),
  827. bindings: tools({
  828. hostile: async () => {
  829. throw { [Symbol.toPrimitive]() { throw new Error('toPrimitive blew up') } }
  830. },
  831. }),
  832. })
  833. expect(result.error).toBeUndefined()
  834. expect(result.value).toBe('rejected: <unrenderable rejection value>')
  835. }, 15_000)
  836. it('still answers the call when an Error carries a cyclic value in place of its message', async () => {
  837. // `Error.message` is typed `string` but is a plain writable property, so a
  838. // rejection can carry any value there. Returning it verbatim handed a
  839. // non-string to `sendReply`, breaching `encodeJsonPlain`'s JSON-plain
  840. // precondition: a cyclic object grew the encoder stack until the host threw
  841. // RangeError from the detached reply callback, so no reply frame was written
  842. // and the run degraded to a `maxWallMs` timeout (observed). The conversion
  843. // must contain it — `String()` on a cycle throws inside the guard and lands
  844. // on the placeholder, so the program sees an ordinary error.
  845. const { runtime } = await setup({ maxWallMs: 8_000 })
  846. const result = await runtime.run({
  847. program: [
  848. 'try:',
  849. ' await tools.hostile({})',
  850. 'except RuntimeError as e:',
  851. ' return "rejected: " + str(e)',
  852. 'return "no rejection"',
  853. ].join('\n'),
  854. bindings: tools({
  855. hostile: async () => {
  856. const cyclic: { self?: unknown; [Symbol.toPrimitive]: () => string } = {
  857. // A cycle alone is inert for `String()`; the throwing conversion is
  858. // what proves the guard runs rather than the encoder.
  859. [Symbol.toPrimitive]: () => { throw new Error('cyclic message') },
  860. }
  861. cyclic.self = cyclic
  862. const error = new Error('placeholder')
  863. // Writable per spec, so no cast is needed to install a non-string.
  864. ;(error as unknown as { message: unknown }).message = cyclic
  865. throw error
  866. },
  867. }),
  868. })
  869. expect(result.error).toBeUndefined()
  870. expect(result.value).toBe('rejected: <unrenderable rejection value>')
  871. }, 15_000)
  872. it('renders an Error whose message is a value with no JSON form', async () => {
  873. // The non-cyclic arm. A number would not discriminate: `scalarJson` renders
  874. // it as digits and the child `str()`s the field back, so it survives the
  875. // wire either way. `undefined` is the value that separates the two orders —
  876. // `scalarJson` emits a bare `undefined` token, so the reply line is not JSON
  877. // at all, the child's parse drops the frame, and the program stays blocked
  878. // on `await` until the wall ceiling (observed). Converting first sends the
  879. // string "undefined", which the program receives as an ordinary rejection.
  880. const { runtime } = await setup({ maxWallMs: 8_000 })
  881. const result = await runtime.run({
  882. program: [
  883. 'try:',
  884. ' await tools.absent({})',
  885. 'except RuntimeError as e:',
  886. ' return "rejected: " + str(e)',
  887. 'return "no rejection"',
  888. ].join('\n'),
  889. bindings: tools({
  890. absent: async () => {
  891. const error = new Error('placeholder')
  892. ;(error as unknown as { message: unknown }).message = undefined
  893. throw error
  894. },
  895. }),
  896. })
  897. expect(result.error).toBeUndefined()
  898. expect(result.value).toBe('rejected: undefined')
  899. }, 15_000)
  900. it('runs a program with no await', async () => {
  901. const { runtime } = await setup()
  902. const result = await runtime.run({
  903. program: 'return 2 + 2',
  904. bindings: [],
  905. })
  906. expect(result.error).toBeUndefined()
  907. expect(result.value).toBe(4)
  908. })
  909. it('returns JSON null whether the program returns None or falls off the end', async () => {
  910. // Python has no `undefined`: an async body that returns None and one that
  911. // never returns both yield None, so both complete as an exact JSON null.
  912. // (The worker/TS backend can tell `return undefined` from `return null`;
  913. // Python cannot, and reporting null for both is the honest rendering.)
  914. const { runtime } = await setup()
  915. const explicit = await runtime.run({ program: 'return None', bindings: [] })
  916. expect(explicit.error).toBeUndefined()
  917. expect(explicit.value).toBeNull()
  918. const noReturn = await runtime.run({ program: 'x = 1', bindings: [] })
  919. expect(noReturn.error).toBeUndefined()
  920. expect(noReturn.value).toBeNull()
  921. })
  922. it('settles with no value on a forged valueless done frame', async () => {
  923. // The child always sends a value now (return None → JSON null), so a done
  924. // frame with no value key can only be forged; the host settles it as a
  925. // value-less completion rather than crashing on the absent field.
  926. const { runtime } = await setup()
  927. const result = await runtime.run({
  928. program: [
  929. 'import os',
  930. 'os.write(3, b\'{"type":"done"}\\n\')',
  931. 'import time',
  932. 'time.sleep(5)',
  933. ].join('\n'),
  934. bindings: [],
  935. })
  936. expect(result.error).toBeUndefined()
  937. expect(result.value).toBeUndefined()
  938. })
  939. it('coalesces print arguments into one log line, not per-write fragments', async () => {
  940. // print("a","b") calls write() per arg/sep/newline; the stream must emit
  941. // one logical line "a b" so Code Mode's join(newline) does not insert
  942. // spurious blank lines. Two prints → exactly two entries, no empties.
  943. const { runtime } = await setup()
  944. const result = await runtime.run({
  945. program: ['print("a", "b")', 'print("c")', 'return None'].join('\n'),
  946. bindings: [],
  947. })
  948. expect(result.error).toBeUndefined()
  949. expect(result.logs).toEqual(['a b', 'c'])
  950. })
  951. it('flushes a print with no trailing newline', async () => {
  952. const { runtime } = await setup()
  953. const result = await runtime.run({
  954. program: ['print("partial", end="")', 'return None'].join('\n'),
  955. bindings: [],
  956. })
  957. expect(result.error).toBeUndefined()
  958. expect(result.logs).toEqual(['partial'])
  959. })
  960. it('aggregates a large newline-free native write into one log entry, not one per pipe chunk', async () => {
  961. // A single `os.write` larger than one pipe read arrives as several Node
  962. // `data` chunks. `logs` entries are joined with `\n` downstream, so pushing
  963. // one entry per transport chunk would insert model-visible newlines at
  964. // arbitrary pipe boundaries inside one native write. Stray capture holds a
  965. // per-stream residual and admits only on a real `\n`, so a 200 KiB blast
  966. // with no newline reads back as exactly one entry with no interior breaks.
  967. const { runtime } = await setup({ maxLogBytes: 300_000 })
  968. const size = 200_000
  969. const result = await runtime.run({
  970. program: ['import os', `os.write(1, b"A" * ${size})`, 'return None'].join('\n'),
  971. bindings: [],
  972. })
  973. expect(result.error).toBeUndefined()
  974. expect(result.logs).toEqual(['A'.repeat(size)])
  975. })
  976. it('splits native output on its own newlines, one entry per line', async () => {
  977. // The complement of the aggregation case: real newlines in a native write
  978. // still delimit entries, matching the child's line-granular `log` frames.
  979. const { runtime } = await setup()
  980. const result = await runtime.run({
  981. program: ['import os', 'os.write(1, b"one\\ntwo\\nthree")', 'return None'].join('\n'),
  982. bindings: [],
  983. })
  984. expect(result.error).toBeUndefined()
  985. expect(result.logs).toEqual(['one', 'two', 'three'])
  986. })
  987. it('bounds a newline-free native flood by the ledger instead of buffering it whole', async () => {
  988. // A newline-free write far larger than maxLogBytes must not accumulate in
  989. // the host-side residual: when the pending residual would cross the budget
  990. // it is admitted (and truncated) immediately, and once the ledger has
  991. // truncated, later chunks stop buffering entirely. The run still completes
  992. // and the captured output ends at the truncation marker rather than
  993. // retaining the whole flood.
  994. const { runtime } = await setup({ maxLogBytes: 4096 })
  995. const result = await runtime.run({
  996. program: ['import os', 'os.write(1, b"A" * 2_000_000)', 'return None'].join('\n'),
  997. bindings: [],
  998. })
  999. expect(result.error).toBeUndefined()
  1000. expect(result.logs.at(-1)).toBe(logTruncationMarker(4096))
  1001. // The retained output is bounded by the budget, not the 2 MB flood.
  1002. expect(result.logs.join('').length).toBeLessThan(4096)
  1003. })
  1004. it('bounds a newline-free single-character Python write drip by the fragment cap, not OOM', async () => {
  1005. // The child-side `_LogStream` buffers one fragment per `write` (so
  1006. // `print("x", end="")` does not concatenate quadratically). A newline-free
  1007. // drip of one character per call past a large `maxLogBytes` would otherwise
  1008. // accumulate one list slot (and one str object) per call — 25 M calls =
  1009. // ~25 M slots, which OOMs the host on its own accounting before the byte
  1010. // budget is reached. The stream seals the fragment list past
  1011. // `_PENDING_MAX_CHUNKS` into one joined block (character count unchanged),
  1012. // bounding the live fragment count exactly as the host-side `captureStray`
  1013. // seal does. This drives well past the cap and asserts the run still
  1014. // completes with a truncation marker rather than a MemoryError.
  1015. const { runtime } = await setup({ maxLogBytes: 4096 })
  1016. const result = await runtime.run({
  1017. program: [
  1018. 'import sys',
  1019. 'for _ in range(200_000):',
  1020. ' sys.stdout.write("x")',
  1021. 'return None',
  1022. ].join('\n'),
  1023. bindings: [],
  1024. })
  1025. expect(result.error).toBeUndefined()
  1026. expect(result.logs.at(-1)).toBe(logTruncationMarker(4096))
  1027. })
  1028. it('bounds a control-char-dense native residual by serialized cost, not raw length', async () => {
  1029. // A newline-free NUL flood passes the cheap `length + 3` lower bound at a
  1030. // raw length well under the budget, but each NUL serializes to `\u0000` (6
  1031. // bytes), so the true JSON cost is ~6x. The ledger must charge that
  1032. // serialized cost — and `jsonStringCostUpTo` must measure it WITHOUT
  1033. // allocating the escaped copy, so a near-budget line under a large
  1034. // maxLogBytes cannot momentarily allocate a multi-gigabyte `JSON.stringify`
  1035. // result. Under a small budget the residual is truncated once the serialized
  1036. // cost crosses it.
  1037. const { runtime } = await setup({ maxLogBytes: 4096 })
  1038. const result = await runtime.run({
  1039. program: ['import os', 'os.write(1, b"\\x00" * 4000)', 'return None'].join('\n'),
  1040. bindings: [],
  1041. })
  1042. expect(result.error).toBeUndefined()
  1043. expect(result.logs.at(-1)).toBe(logTruncationMarker(4096))
  1044. })
  1045. it('rejects an output budget that could breach addressSpaceMb during encode at load', async () => {
  1046. // The child builds, charges, and encodes a `maxLogBytes` log entry or a
  1047. // `maxValueBytes` completion value under RLIMIT_AS, and both trigger on
  1048. // character count against a serialized-byte budget — an astral character is
  1049. // one character but ~4 bytes stored and ~4 encoded, and THREE such copies are
  1050. // live at the peak (the caller's write argument, the slice/join handed to
  1051. // push, and the encode copy), so a budget approaching the address space lets a
  1052. // legitimate near-budget output breach it and die as worker-exit. The
  1053. // incompatible pair is rejected at load: each budget times the worst-case
  1054. // multiple (12) must fit the address space LEFT after the fixed interpreter
  1055. // baseline. Against a 256 MiB address space that leaves 192 MiB budgetable
  1056. // (~16 MiB admissible), so a 50 MB cap is far over; the default caps against
  1057. // 512 MiB are not. Both budgets are gated symmetrically — the value case sets
  1058. // a default-fitting maxLogBytes so the maxValueBytes check is what fires.
  1059. const ctxLog = new Context()
  1060. await expect(ctxLog.plugin(PythonCodeRuntime, { maxLogBytes: 50_000_000, addressSpaceMb: 256 }))
  1061. .rejects.toThrow(/maxLogBytes times the 12x worst-case Unicode expansion must fit/)
  1062. const ctxValue = new Context()
  1063. await expect(ctxValue.plugin(PythonCodeRuntime, { maxValueBytes: 50_000_000, addressSpaceMb: 256 }))
  1064. .rejects.toThrow(/maxValueBytes times the 12x worst-case Unicode expansion must fit/)
  1065. // Discriminates 12 from 8: a 48 MiB maxLogBytes against a 512 MiB address
  1066. // space leaves 448 MiB budgetable. 48*8 = 384 MiB fits (the old 8x multiple
  1067. // wrongly ADMITTED this), but 48*12 = 576 MiB does not. The ~12x peak this
  1068. // guards is the NEWLINE path's single near-budget write — the caller's own
  1069. // string, the line slice, and the encode copy live at once. The settlement
  1070. // flush is no longer the binding case: `flush_line` drops the pending chunks
  1071. // before its push, so it holds two copies, not three.
  1072. const ctxTwelve = new Context()
  1073. await expect(ctxTwelve.plugin(PythonCodeRuntime, { maxLogBytes: 48 * 1024 * 1024, addressSpaceMb: 512 }))
  1074. .rejects.toThrow(/maxLogBytes times the 12x worst-case Unicode expansion must fit/)
  1075. // An addressSpaceMb at or below the interpreter baseline leaves nothing
  1076. // budgetable, so no budget value can pass. It is rejected on its own terms:
  1077. // the budget loop would otherwise report "a limit of -1" (or -2796203 at
  1078. // 32 MiB) while naming maxLogBytes, sending the operator to the wrong knob.
  1079. const ctxBaseline = new Context()
  1080. await expect(ctxBaseline.plugin(PythonCodeRuntime, { addressSpaceMb: 64 }))
  1081. .rejects.toThrow(/addressSpaceMb must exceed the 67108864-byte interpreter baseline/)
  1082. const ctxBelow = new Context()
  1083. await expect(ctxBelow.plugin(PythonCodeRuntime, { addressSpaceMb: 32 }))
  1084. .rejects.toThrow(/addressSpaceMb must exceed the 67108864-byte interpreter baseline/)
  1085. // The default caps against the default 512 MiB address space load.
  1086. const ok = new Context()
  1087. const fiber = await ok.plugin(PythonCodeRuntime, { maxLogBytes: 65536, maxValueBytes: 32768, addressSpaceMb: 512 })
  1088. await fiber.dispose()
  1089. })
  1090. it('bounds an illegal-UTF-8 native residual by its U+FFFD-decoded cost', async () => {
  1091. // Every 0xFF byte is illegal in any UTF-8 sequence, so `toString('utf8')`
  1092. // renders each as U+FFFD (3 serialized bytes). `accrueStrayCost` must charge
  1093. // that 3, not the raw 1: otherwise the newline-free residual grows to a full
  1094. // budget's worth of RAW bytes before flushing — a ~3x undercount that near a
  1095. // large maxLogBytes retains hundreds of MiB then expands toward a ~1 GiB peak
  1096. // in flushStray's concat + toString. Paced single-byte writes (each its own
  1097. // `data` chunk, like the sealing case) expose the sub-chunk accrual: charged
  1098. // at 3 the residual crosses a 3072-byte budget after ~1024 bytes and flushes;
  1099. // charged at 1 it would need ~3072 bytes, so the peak residual triples. The
  1100. // largest merged buffer is the discriminator.
  1101. const realConcat = Buffer.concat.bind(Buffer)
  1102. let maxConcat = 0
  1103. Buffer.concat = (list: readonly Uint8Array[], total?: number): Buffer<ArrayBuffer> => {
  1104. const merged = realConcat(list, total)
  1105. if (merged.length > maxConcat) maxConcat = merged.length
  1106. return merged
  1107. }
  1108. let result: CodeRunResult
  1109. try {
  1110. const { runtime } = await setup({ maxLogBytes: 3072, maxWallMs: 30_000 })
  1111. result = await runtime.run({
  1112. program: [
  1113. 'import os',
  1114. 'for _ in range(6000):',
  1115. ' os.write(1, b"\\xff")',
  1116. ' os.sched_yield()',
  1117. 'return None',
  1118. ].join('\n'),
  1119. bindings: [],
  1120. })
  1121. } finally {
  1122. Buffer.concat = realConcat
  1123. }
  1124. expect(result.error).toBeUndefined()
  1125. expect(result.logs.at(-1)).toBe(logTruncationMarker(3072))
  1126. // Charged at 3, the residual flushes around 1024 raw bytes; the largest
  1127. // merged buffer stays well under 2048. A raw-byte undercount would let it
  1128. // reach ~3072 before flushing, so 2048 discriminates.
  1129. expect(maxConcat).toBeLessThan(2048)
  1130. })
  1131. it('charges a structurally-valid but illegal UTF-8 sequence its U+FFFD-decoded cost', async () => {
  1132. // A CESU-8 lone surrogate `ED A0 80` is structurally well-formed (a 3-byte
  1133. // lead plus two 0x80–0xBF continuations) but ILLEGAL: `toString('utf8')`
  1134. // renders each of the three bytes as its own U+FFFD (serialized cost 9), not
  1135. // one width-3 character. The newline-free flush trigger weighs the residual
  1136. // through `accrueStrayCost`, which must validate each lead's
  1137. // first-continuation range (ED excludes A0–BF) and charge the true 9 — else a
  1138. // CESU flood undercounts 3x and the residual grows toward a full budget's raw
  1139. // bytes before flushing, the same peak-memory vector as the 0xFF case. The
  1140. // bytes are written one at a time (each its own `data` chunk, no pipe
  1141. // coalescing) and `Buffer.concat` is wrapped to measure the peak residual.
  1142. const realConcat = Buffer.concat.bind(Buffer)
  1143. let maxConcat = 0
  1144. Buffer.concat = (list: readonly Uint8Array[], total?: number): Buffer<ArrayBuffer> => {
  1145. const merged = realConcat(list, total)
  1146. if (merged.length > maxConcat) maxConcat = merged.length
  1147. return merged
  1148. }
  1149. let result: CodeRunResult
  1150. try {
  1151. const { runtime } = await setup({ maxLogBytes: 3072, maxWallMs: 30_000 })
  1152. result = await runtime.run({
  1153. program: [
  1154. 'import os',
  1155. 'seq = (0xed, 0xa0, 0x80)',
  1156. 'for _ in range(2000):',
  1157. ' for b in seq:',
  1158. ' os.write(1, bytes((b,)))',
  1159. ' os.sched_yield()',
  1160. 'return None',
  1161. ].join('\n'),
  1162. bindings: [],
  1163. })
  1164. } finally {
  1165. Buffer.concat = realConcat
  1166. }
  1167. expect(result.error).toBeUndefined()
  1168. expect(result.logs.at(-1)).toBe(logTruncationMarker(3072))
  1169. // Each 3-byte sequence costs 9 (three U+FFFD), so single-byte-paced the
  1170. // residual crosses the 3072 budget after ~342 raw bytes and flushes; the
  1171. // largest merged buffer stays well under 2048. Charging the structural width
  1172. // 3 would need ~1024 raw bytes, tripling the peak past 2048.
  1173. expect(maxConcat).toBeLessThan(2048)
  1174. })
  1175. it('charges a lone surrogate its full six escaped bytes, not three', async () => {
  1176. // A forged `log` frame carrying `\ud800` escapes materializes lone
  1177. // surrogates after JSON.parse. `Buffer.byteLength` of U+FFFD is 3, but
  1178. // ES2019 well-formed `JSON.stringify` emits `\ud800` at 6 bytes, so charging
  1179. // the raw width would admit ~2x the configured budget of serialized bytes
  1180. // (the same family as the NUL-flood undercount, at 2x rather than 6x). The
  1181. // cost walker charges surrogates the full 6, so a flood truncates at budget.
  1182. // Forged on fd 3 because Python stdout will not emit lone surrogates.
  1183. const { runtime } = await setup({ maxLogBytes: 4096 })
  1184. const result = await runtime.run({
  1185. program: [
  1186. 'import os',
  1187. // 1000 \ud800 escapes: charged at the buggy raw width 1000 * 3 = 3000
  1188. // bytes fits under 4096 (wrongly admitted), but the correct serialized
  1189. // width 1000 * 6 = 6000 bytes is over budget — so the ledger must
  1190. // truncate. The count sits in the 683..1365 window where the two
  1191. // chargings disagree, making the test discriminate.
  1192. String.raw`frame = b'{"type":"log","text":"' + b'\\ud800' * 1000 + b'"}\n'`,
  1193. 'os.write(3, frame)',
  1194. 'return None',
  1195. ].join('\n'),
  1196. bindings: [],
  1197. })
  1198. expect(result.error).toBeUndefined()
  1199. expect(result.logs.at(-1)).toBe(logTruncationMarker(4096))
  1200. })
  1201. it('drops a second stray line in the same chunk once the first truncated the ledger', async () => {
  1202. // One `os.write` carrying two newline-terminated lines where the first
  1203. // exhausts maxLogBytes: the first line's admit truncates and marks the
  1204. // ledger, and the second line's admit — reached in the same `data` callback
  1205. // — must be the post-truncation no-op. Proves that branch is exercised, so
  1206. // it carries no v8-ignore. Kept to 108 bytes (< the smallest PIPE_BUF, 512 on
  1207. // macOS) so the whole payload lands in ONE atomic write and one `data`
  1208. // callback — the two newlines cannot split across callbacks and leave the
  1209. // branch un-exercised, which would be a hard-to-attribute per-file coverage
  1210. // flake. The first line's 100 bytes already exceed the 64-byte budget, so it truncates.
  1211. const { runtime } = await setup({ maxLogBytes: 64 })
  1212. const result = await runtime.run({
  1213. program: ['import os', 'os.write(1, b"A" * 100 + b"\\nSECOND\\n")', 'return None'].join('\n'),
  1214. bindings: [],
  1215. })
  1216. expect(result.error).toBeUndefined()
  1217. expect(result.logs.at(-1)).toBe(logTruncationMarker(64))
  1218. expect(result.logs.join('\n')).not.toContain('SECOND')
  1219. })
  1220. it('charges a broken multibyte sequence its U+FFFD bytes, split across pipe chunks', async () => {
  1221. // A 3-byte lead (0xE4) whose continuation never arrives — the next byte is a
  1222. // fresh ASCII 'A' — must be costed as U+FFFD (3) for the orphaned lead, not
  1223. // folded into a phantom character. Driven byte-by-byte so the lead and the
  1224. // breaking byte land in separate `data` chunks, exercising accrueStrayCost's
  1225. // cross-chunk broken-sequence branch. The run completes and the bytes are
  1226. // captured (rendered U+FFFD by toString), proving the walk resynchronizes.
  1227. const { runtime } = await setup({ maxLogBytes: 1024 })
  1228. const result = await runtime.run({
  1229. program: [
  1230. 'import os',
  1231. 'os.write(1, b"\\xe4")',
  1232. 'os.sched_yield()',
  1233. 'os.write(1, b"A\\n")',
  1234. 'return None',
  1235. ].join('\n'),
  1236. bindings: [],
  1237. })
  1238. expect(result.error).toBeUndefined()
  1239. expect(result.logs.join('')).toContain('A')
  1240. expect(result.logs.join('')).toContain('�')
  1241. })
  1242. it('charges the exact serialized cost of short-escape and quote/backslash characters', async () => {
  1243. // Exercises every branch of jsonStringCostUpTo's per-character cost: a tab
  1244. // and other C0 controls with short JSON forms (\t etc., 2 bytes), a quote
  1245. // and backslash (2 bytes each), a `\uXXXX` control (6 bytes), a multibyte
  1246. // BMP character (raw UTF-8 width), and plain ASCII. Under a budget large
  1247. // enough to admit it, the line survives verbatim — proving the cost walker
  1248. // does not over- or under-charge and the string round-trips unescaped.
  1249. const { runtime } = await setup({ maxLogBytes: 4096 })
  1250. const result = await runtime.run({
  1251. program: ['import os', String.raw`os.write(1, "\ta\"b\\c\x01é\n".encode("utf-8"))`, 'return None'].join('\n'),
  1252. bindings: [],
  1253. })
  1254. expect(result.error).toBeUndefined()
  1255. expect(result.logs).toEqual(['\ta"b\\c\x01é'])
  1256. })
  1257. it('fails a completion dict with a non-string key as invalid-output (no key coercion)', async () => {
  1258. // json.dumps would coerce {1: "a", "1": "b"} to a single "1" key, silently
  1259. // dropping data. The shape validator rejects it before encoding.
  1260. const { runtime } = await setup()
  1261. const result = await runtime.run({
  1262. program: 'return {1: "first", "1": "second"}',
  1263. bindings: [],
  1264. })
  1265. expect(result.value).toBeUndefined()
  1266. expect(result.error?.kind).toBe('invalid-output')
  1267. expect(result.error?.message).toContain('non-string dict key')
  1268. })
  1269. it('rejects a binding argument with a non-string dict key before dispatch', async () => {
  1270. const { runtime } = await setup()
  1271. let called = false
  1272. const result = await runtime.run({
  1273. program: [
  1274. 'caught = ""',
  1275. 'try:',
  1276. ' await tools.sink({1: "x"})',
  1277. 'except RuntimeError as e:',
  1278. ' caught = str(e)',
  1279. 'return caught',
  1280. ].join('\n'),
  1281. bindings: tools({ sink: async () => { called = true; return null } }),
  1282. })
  1283. expect(result.error).toBeUndefined()
  1284. expect(result.value).toContain('lossless JSON')
  1285. expect(called).toBe(false)
  1286. })
  1287. it('fails a non-JSON completion value as invalid-output (no repr substitution)', async () => {
  1288. // A set is not lossless JSON. The old draft substituted repr(); the seam
  1289. // now requires refusing the run instead.
  1290. const { runtime } = await setup()
  1291. const result = await runtime.run({
  1292. program: 'return {1, 2, 3}',
  1293. bindings: [],
  1294. })
  1295. expect(result.value).toBeUndefined()
  1296. expect(result.error?.kind).toBe('invalid-output')
  1297. expect(result.error?.message).toContain('lossless JSON')
  1298. expect(result.error?.message).toContain('set')
  1299. })
  1300. it('fails a negative-zero completion value as invalid-output (sign bit is lossy over JSON)', async () => {
  1301. // JSON serialization turns -0.0 into 0 (or JS -0), silently changing the
  1302. // sign bit; the canonical lossless-JSON boundary rejects it, so the
  1303. // Python side must too — as a completion and as a binding argument.
  1304. const { runtime } = await setup()
  1305. const completion = await runtime.run({
  1306. program: 'return -0.0',
  1307. bindings: [],
  1308. })
  1309. expect(completion.error?.kind).toBe('invalid-output')
  1310. expect(completion.error?.message).toContain('negative zero')
  1311. const argument = await runtime.run({
  1312. program: [
  1313. 'try:',
  1314. ' await tools.echo(-0.0)',
  1315. ' return "accepted"',
  1316. 'except RuntimeError as e:',
  1317. ' return str(e)',
  1318. ].join('\n'),
  1319. bindings: tools({ echo: async args => args as never }),
  1320. })
  1321. expect(argument.error).toBeUndefined()
  1322. expect(argument.value).toContain('negative zero')
  1323. })
  1324. it('fails a NaN completion value as invalid-output (allow_nan=False)', async () => {
  1325. // json.dumps would happily emit NaN by default, but NaN is not JSON; the
  1326. // bootstrap passes allow_nan=False so it fails as invalid-output.
  1327. const { runtime } = await setup()
  1328. const result = await runtime.run({
  1329. program: 'return float("nan")',
  1330. bindings: [],
  1331. })
  1332. expect(result.error?.kind).toBe('invalid-output')
  1333. })
  1334. it('fails an over-budget completion value as output-limit (child-side check)', async () => {
  1335. const { runtime } = await setup({ maxValueBytes: 64 })
  1336. const result = await runtime.run({
  1337. program: 'return "V" * 5000',
  1338. bindings: [],
  1339. })
  1340. expect(result.value).toBeUndefined()
  1341. expect(result.error?.kind).toBe('output-limit')
  1342. expect(result.error?.message).toContain('exceeded 64 bytes')
  1343. })
  1344. it('meters a control-heavy completion value without materializing its escaped form', async () => {
  1345. // The child's lower bound admits a string by CHARACTER count, then the meter
  1346. // charged what `_dump_string(current).encode()` returned -- building the
  1347. // escaped copy plus its encode. Each NUL escapes to six bytes, so metering a
  1348. // value the budget then REJECTS allocated ~6x the original twice over:
  1349. // measured at 228.9 MiB of peak for a 20M-NUL string, against 19.1 MiB for
  1350. // the counting path that returns the identical 120,000,002 bytes. Past
  1351. // RLIMIT_AS the meter died as `exception: MemoryError`, inverting the
  1352. // `output-limit` this seam promises for an over-budget value.
  1353. //
  1354. // 8M NULs is 8,000,002 raw but 48,000,002 escaped: over the 16 MiB budget
  1355. // only when charged the escaped cost, so this also pins that the cheap
  1356. // character bound alone does not decide the verdict.
  1357. const { runtime } = await setup({ maxValueBytes: 16 * 1024 * 1024, maxWallMs: 60_000 })
  1358. const result = await runtime.run({
  1359. program: 'return "\\x00" * 8_000_000',
  1360. bindings: [],
  1361. })
  1362. expect(result.value).toBeUndefined()
  1363. expect(result.error?.kind).toBe('output-limit')
  1364. }, 90_000)
  1365. it('rejects a wide completion as output-limit before materializing its traversal state', async () => {
  1366. // `[0] * 2000000` sits far above maxValueBytes but well below the frame
  1367. // ceiling. The folded checker must reject it via the pre-enqueue bound —
  1368. // BEFORE pushing two million elements onto the walk — so a small
  1369. // addressSpaceMb does not turn the check itself into an RLIMIT_AS death.
  1370. const { runtime } = await setup({ maxValueBytes: 64, addressSpaceMb: 256, maxWallMs: 15_000 })
  1371. const result = await runtime.run({
  1372. program: 'return [0] * 2000000',
  1373. bindings: [],
  1374. })
  1375. expect(result.value).toBeUndefined()
  1376. expect(result.error?.kind).toBe('output-limit')
  1377. expect(result.error?.message).toContain('exceeded 64 bytes')
  1378. }, 20_000)
  1379. it('rejects a wide dict as output-limit without materializing its items list', async () => {
  1380. // Same pre-enqueue bound on the dict branch: `len(current)` replaces
  1381. // `list(current.items())`, which allocated one tuple per member before the
  1382. // bound could reject the value. Two million entries under a 64-byte cap
  1383. // fits the 256 MiB address space as a dict but not as a dict PLUS a
  1384. // two-million-tuple list.
  1385. const { runtime } = await setup({ maxValueBytes: 64, addressSpaceMb: 256, maxWallMs: 15_000 })
  1386. const result = await runtime.run({
  1387. program: 'return {str(i): 0 for i in range(2000000)}',
  1388. bindings: [],
  1389. })
  1390. expect(result.value).toBeUndefined()
  1391. expect(result.error?.kind).toBe('output-limit')
  1392. expect(result.error?.message).toContain('exceeded 64 bytes')
  1393. }, 20_000)
  1394. it('meters a float completion in the host\'s number spelling', async () => {
  1395. // CPython's repr disagrees with the host's String(number): `1.0` is three
  1396. // bytes here and one there, `1e-07` pads the exponent the host writes as
  1397. // `1e-7`. Both sides meter the SAME budget, so the child must count the
  1398. // bytes the host will receive — otherwise a boundary-sized value is
  1399. // falsely reported as output-limit.
  1400. const { runtime } = await setup({ maxValueBytes: 1 })
  1401. const integral = await runtime.run({ program: 'return 1.0', bindings: [] })
  1402. expect(integral.error).toBeUndefined()
  1403. expect(integral.value).toBe(1)
  1404. const exponent = await setup({ maxValueBytes: 4 })
  1405. const small = await exponent.runtime.run({ program: 'return 1e-7', bindings: [] })
  1406. expect(small.error).toBeUndefined()
  1407. expect(small.value).toBe(1e-7)
  1408. // The spelling is a meter input, not a licence to overshoot: `1.5` is three
  1409. // bytes on both sides and still fails a two-byte budget.
  1410. const tight = await setup({ maxValueBytes: 2 })
  1411. const over = await tight.runtime.run({ program: 'return 1.5', bindings: [] })
  1412. expect(over.error?.kind).toBe('output-limit')
  1413. })
  1414. it('carries floats across the wire in the host\'s number spelling', async () => {
  1415. // The child ENCODES with the same speller it meters with, so the frame the
  1416. // host parses must reproduce every double exactly — including the branches
  1417. // where CPython and ECMAScript disagree (integral floats, sub-1e-6
  1418. // exponents, >= 1e21, and beyond-safe-range integral doubles whose exact
  1419. // digits differ from the shortest round-trip form).
  1420. const { runtime } = await setup()
  1421. const result = await runtime.run({
  1422. program: 'return [1.0, 100.0, 1.5, 0.1, 1e-7, 1e-6, 1e-5, 123.456, -2.5e-8, 1e21, float(2**60), 5e-324, 1.7976931348623157e308]',
  1423. bindings: [],
  1424. })
  1425. expect(result.error).toBeUndefined()
  1426. expect(result.value).toEqual([1, 100, 1.5, 0.1, 1e-7, 1e-6, 1e-5, 123.456, -2.5e-8, 1e21, 2 ** 60, 5e-324, 1.7976931348623157e308])
  1427. })
  1428. it('rejects a forged non-lossless done value host-side as invalid-output', async () => {
  1429. // A forged done frame bypasses the child's _check_done_value. JSON.parse
  1430. // turns 1e400 into Infinity; validateChildFrame no longer scans done.value,
  1431. // so the host's own checkDoneValue must catch the non-lossless number.
  1432. const { runtime } = await setup()
  1433. const result = await runtime.run({
  1434. program: [
  1435. 'import os',
  1436. String.raw`os.write(3, b'{"type":"done","value":1e400}' + b'\n')`,
  1437. 'import time',
  1438. 'time.sleep(5)',
  1439. ].join('\n'),
  1440. bindings: [],
  1441. })
  1442. expect(result.value).toBeUndefined()
  1443. expect(result.error?.kind).toBe('invalid-output')
  1444. expect(result.error?.message).toContain('non-lossless number')
  1445. })
  1446. it('reports a syntax error as an exception without settling with a value', async () => {
  1447. const { runtime } = await setup()
  1448. const result = await runtime.run({
  1449. program: '$$invalid python$$',
  1450. bindings: [],
  1451. })
  1452. expect(result.error?.kind).toBe('exception')
  1453. expect(result.error?.message).toContain('SyntaxError')
  1454. // The parse-time diagnostic must carry the same source label as compile and
  1455. // runtime tracebacks (ast.parse passes filename="<model>"); a stale
  1456. // "<unknown>" label would leak an inconsistent origin to the model.
  1457. expect(result.error?.message).toContain('File \"<model>\"')
  1458. expect(result.value).toBeUndefined()
  1459. })
  1460. it('reports a runtime raise as an exception with the traceback', async () => {
  1461. const { runtime } = await setup()
  1462. const result = await runtime.run({
  1463. program: 'raise ValueError("intentional")',
  1464. bindings: [],
  1465. })
  1466. expect(result.error?.kind).toBe('exception')
  1467. expect(result.error?.message).toContain('ValueError')
  1468. expect(result.error?.message).toContain('intentional')
  1469. })
  1470. it('bounds a deep exception cause chain instead of burning the wall budget formatting it', async () => {
  1471. // A chain thousands of links deep would make the rendering walk and
  1472. // format() linear in its length, consuming maxWallMs. Rendering is capped
  1473. // at 100 links with a marker; the run reports the exception well within
  1474. // budget rather than timing out.
  1475. const { runtime } = await setup({ maxValueBytes: 1024 * 1024, maxWallMs: 20_000 })
  1476. const start = Date.now()
  1477. const result = await runtime.run({
  1478. program: [
  1479. 'err = None',
  1480. 'for i in range(3000):',
  1481. ' try:',
  1482. ' raise ValueError(i) from err',
  1483. ' except ValueError as e:',
  1484. ' err = e',
  1485. 'raise err',
  1486. ].join('\n'),
  1487. bindings: [],
  1488. })
  1489. expect(result.error?.kind).toBe('exception')
  1490. expect(result.error?.message).toContain('exception chain truncated at 100 links')
  1491. expect(Date.now() - start).toBeLessThan(15_000)
  1492. }, 25_000)
  1493. it('bounds an over-cap chain without assigning to the live exception', async () => {
  1494. // The cap used to be applied by severing the over-cap link ON the live
  1495. // exception. An exception class overriding __setattr__ to raise turned that
  1496. // assignment into model code running inside the bootstrap's failure
  1497. // handler; the throw skipped the `done` send that sits after the handler,
  1498. // so the host blocked on fd 3 and reported a maxWallMs timeout instead of
  1499. // the model's own exception. Cutting the chain on the TracebackException
  1500. // COPY touches no model hook, so the marker still appears and the run
  1501. // reports `exception`.
  1502. const { runtime } = await setup({ maxValueBytes: 1024 * 1024, maxWallMs: 15_000 })
  1503. const start = Date.now()
  1504. const result = await runtime.run({
  1505. program: [
  1506. 'class Sealed(Exception):',
  1507. ' def __setattr__(self, name, value):',
  1508. ' raise RuntimeError("live mutation refused")',
  1509. 'err = None',
  1510. 'for i in range(150):',
  1511. ' try:',
  1512. ' raise Sealed(i) from err',
  1513. ' except Sealed as e:',
  1514. ' err = e',
  1515. 'raise err',
  1516. ].join('\n'),
  1517. bindings: [],
  1518. })
  1519. expect(result.error?.kind).toBe('exception')
  1520. expect(result.error?.message).toContain('Sealed')
  1521. expect(result.error?.message).toContain('exception chain truncated at 100 links')
  1522. // The sever attempt is what used to leak: its message must not appear, and
  1523. // the run must settle well inside the wall budget rather than timing out.
  1524. expect(result.error?.message).not.toContain('live mutation refused')
  1525. expect(Date.now() - start).toBeLessThan(10_000)
  1526. }, 20_000)
  1527. it('still sends done when rendering the diagnostic itself raises', async () => {
  1528. // format() reaches the exception's own __str__, so a model class whose
  1529. // __str__ raises can throw from inside the failure handler. CPython's
  1530. // _safe_string absorbs a raising __str__ during formatting, but the
  1531. // fallback must hold for any throw on that path (a raising __repr__ of an
  1532. // argument, a MemoryError under RLIMIT_AS), so the assertion is the
  1533. // invariant that matters: a `done` frame carrying `exception`, never a
  1534. // timeout, and never the failing renderer's own message.
  1535. const { runtime } = await setup({ maxWallMs: 10_000 })
  1536. const result = await runtime.run({
  1537. program: [
  1538. 'class Unprintable(Exception):',
  1539. ' def __str__(self):',
  1540. ' raise RuntimeError("str refused")',
  1541. ' def __repr__(self):',
  1542. ' raise RuntimeError("repr refused")',
  1543. 'raise Unprintable()',
  1544. ].join('\n'),
  1545. bindings: [],
  1546. })
  1547. expect(result.error?.kind).toBe('exception')
  1548. expect(result.error?.message).toContain('Unprintable')
  1549. expect(result.error?.message).not.toContain('str refused')
  1550. expect(result.error?.message).not.toContain('repr refused')
  1551. }, 15_000)
  1552. it('sends done with an inert diagnostic when the whole rendering path raises', async () => {
  1553. // Drive the fallback itself. `TracebackException.format` reads the
  1554. // exception class's `__module__` to decide whether to qualify the name, and
  1555. // a metaclass property can raise there — a throw INSIDE the formatter,
  1556. // reached with no rebinding of anything the bootstrap owns. Without the
  1557. // wrapper it escapes the handler, the `done` send never runs, and the host
  1558. // times out at maxWallMs.
  1559. const { runtime } = await setup({ maxWallMs: 10_000 })
  1560. const result = await runtime.run({
  1561. program: [
  1562. 'class Meta(type):',
  1563. ' @property',
  1564. ' def __module__(cls):',
  1565. ' raise RuntimeError("renderer refused")',
  1566. 'class Hostile(ValueError, metaclass=Meta):',
  1567. ' pass',
  1568. 'raise Hostile("original failure")',
  1569. ].join('\n'),
  1570. bindings: [],
  1571. })
  1572. expect(result.error?.kind).toBe('exception')
  1573. // The inert fallback names the class and a fixed literal; it must not carry
  1574. // the renderer's message, and must not have become a timeout. `__name__` is
  1575. // still a plain str here, so the class name survives.
  1576. expect(result.error?.message).toBe('Hostile: <diagnostic rendering failed>')
  1577. }, 15_000)
  1578. it('falls back to a placeholder class name when __name__ itself raises', async () => {
  1579. // The fallback reads type(exc).__name__, which a metaclass property can
  1580. // hijack. It must neither run that override's failure into the handler nor
  1581. // format a non-str __name__ into the message. The hostile `__module__` is
  1582. // what drives execution into the fallback in the first place.
  1583. const { runtime } = await setup({ maxWallMs: 10_000 })
  1584. const result = await runtime.run({
  1585. program: [
  1586. 'class Meta(type):',
  1587. ' @property',
  1588. ' def __module__(cls):',
  1589. ' raise RuntimeError("renderer refused")',
  1590. ' @property',
  1591. ' def __name__(cls):',
  1592. ' raise RuntimeError("name refused")',
  1593. 'class Nameless(Exception, metaclass=Meta):',
  1594. ' pass',
  1595. 'raise Nameless()',
  1596. ].join('\n'),
  1597. bindings: [],
  1598. })
  1599. expect(result.error?.kind).toBe('exception')
  1600. expect(result.error?.message).toBe('<unknown>: <diagnostic rendering failed>')
  1601. }, 15_000)
  1602. it('reports the real exception when the program rebinds every name the failure path uses', async () => {
  1603. // The bootstrap IS __main__, so `import __main__; __main__._X = ...` reaches
  1604. // any module global a call-time lookup would read. The failure path is the
  1605. // worst place for that: the reporter, the byte cap, the traceback formatter,
  1606. // the settlement flush and the `done` send all run AFTER the `except` block,
  1607. // so a replacement that raises skips the send, leaves the host blocked on
  1608. // fd 3, and the run reports a maxWallMs timeout instead of the model's own
  1609. // exception. Rebind all of them at once; the run must still carry the real
  1610. // ValueError.
  1611. const { runtime } = await setup({ maxWallMs: 10_000 })
  1612. const result = await runtime.run({
  1613. program: [
  1614. 'import __main__',
  1615. 'def boom(*a, **k):',
  1616. ' raise RuntimeError("hijacked")',
  1617. '__main__._SAFE_MODEL_TRACEBACK = boom',
  1618. '__main__._cap_message = boom',
  1619. '__main__._model_traceback = boom',
  1620. '__main__._UNRENDERABLE_DIAGNOSTIC = boom',
  1621. '__main__._LogStream.flush_line = boom',
  1622. // `send_done` writes via LOCALLY-BOUND `_encode_json_plain` +
  1623. // `ProtocolChannel.write_encoded`; rebinding these at call time must not
  1624. // redirect the done frame (a late lookup would be `boom` -> worker-exit).
  1625. '__main__.ProtocolChannel.send_sync = boom',
  1626. '__main__.ProtocolChannel.write_encoded = boom',
  1627. '__main__._encode_json_plain = boom',
  1628. 'raise ValueError("real failure")',
  1629. ].join('\n'),
  1630. bindings: [],
  1631. })
  1632. expect(result.error?.kind).toBe('exception')
  1633. expect(result.error?.message).toContain('ValueError: real failure')
  1634. expect(result.error?.message).not.toContain('hijacked')
  1635. }, 15_000)
  1636. it('still delivers a done frame when a transitive encode name is rebound', async () => {
  1637. // `send_done` binds `_encode_json_plain` and `ProtocolChannel.write_encoded`
  1638. // into locals, but those callables' BODIES still resolve transitive module
  1639. // globals at call time: `_encode_json_plain` reaches `_dump_scalar`/`_dump_string`/
  1640. // `json.dumps`, and `write_encoded` reaches `os.write`. This bootstrap is
  1641. // `__main__`, so rebinding `__main__._dump_scalar` to a raising function makes
  1642. // the error-frame encode throw AFTER the `except` block. `send_done` catches
  1643. // that and writes a fixed literal done frame (kind `exception`) with the
  1644. // LOCALLY-BOUND `_os_write`/`_memoryview`/`_FALLBACK_DONE_FRAME` captured
  1645. // before the program runs, so the host still gets a verdict — the run must be an
  1646. // `exception`, never a `worker-exit`. The real message is lost (the literal
  1647. // carries a fixed `<unrenderable>` text), which is acceptable: the verdict
  1648. // outranks the diagnostic detail.
  1649. const { runtime } = await setup({ maxWallMs: 10_000 })
  1650. const result = await runtime.run({
  1651. program: [
  1652. 'import __main__',
  1653. 'def boom(*a, **k):',
  1654. ' raise RuntimeError("hijacked")',
  1655. '__main__._dump_scalar = boom',
  1656. '__main__.os = boom',
  1657. // The fallback must also survive a rebind of its own primitives.
  1658. '__main__._os_write = boom',
  1659. '__main__._memoryview = boom',
  1660. '__main__._FALLBACK_DONE_FRAME = boom',
  1661. 'raise ValueError("real failure")',
  1662. ].join('\n'),
  1663. bindings: [],
  1664. })
  1665. expect(result.error?.kind).toBe('exception')
  1666. expect(result.error?.kind).not.toBe('worker-exit')
  1667. }, 15_000)
  1668. it('still reports a model exception when the program rebinds BaseException', async () => {
  1669. // `_run`'s outer try/except catches the program's failure and builds a
  1670. // `done` frame. The clause previously used the module-global `BaseException`,
  1671. // which the program (running as `__main__`) can rebind: `__main__.BaseException
  1672. // = RuntimeError` makes the `except BaseException` resolve to `RuntimeError`,
  1673. // so a subsequent `ValueError` does not match and escapes `_run` with no
  1674. // `done` frame — misreporting the run as a `worker-exit`. The exception class
  1675. // is now bound into a `_run` LOCAL before the program runs, so the rebind
  1676. // cannot change which class the clause catches; the run must still report an
  1677. // `exception`, not a `worker-exit`.
  1678. const { runtime } = await setup({ maxWallMs: 10_000 })
  1679. const result = await runtime.run({
  1680. program: [
  1681. 'import __main__',
  1682. '__main__.BaseException = RuntimeError',
  1683. 'raise ValueError("real failure")',
  1684. ].join('\n'),
  1685. bindings: [],
  1686. })
  1687. expect(result.error?.kind).toBe('exception')
  1688. expect(result.error?.kind).not.toBe('worker-exit')
  1689. }, 15_000)
  1690. it('still reports the exception when BaseException and the traceback reporter are rebound together', async () => {
  1691. // The two rebind families compose: `__main__.BaseException = ValueError`
  1692. // must not change which class the `_run` catch resolves (it is a pre-program
  1693. // local), and a rebound reporter (`_SAFE_MODEL_TRACEBACK`/`_cap_message`/
  1694. // `_model_traceback`/`_UNRENDERABLE_DIAGNOSTIC`) must not break the done
  1695. // frame — `safe_model_traceback` holds its primitives as import-time closure
  1696. // cells. A `KeyError` (not a `ValueError` subclass) escapes a catch that
  1697. // resolves to the rebound class, so without the local binding the run would
  1698. // misreport as `worker-exit`; with it, the run reports the exception and the
  1699. // fallback reporter still produces the fixed literal.
  1700. const { runtime } = await setup({ maxWallMs: 10_000 })
  1701. const result = await runtime.run({
  1702. program: [
  1703. 'import __main__',
  1704. 'def boom(*a, **k):',
  1705. ' raise RuntimeError("hijacked")',
  1706. '__main__.BaseException = ValueError',
  1707. '__main__._SAFE_MODEL_TRACEBACK = boom',
  1708. '__main__._cap_message = boom',
  1709. '__main__._model_traceback = boom',
  1710. '__main__._UNRENDERABLE_DIAGNOSTIC = boom',
  1711. 'raise KeyError("real failure")',
  1712. ].join('\n'),
  1713. bindings: [],
  1714. })
  1715. expect(result.error?.kind).toBe('exception')
  1716. expect(result.error?.kind).not.toBe('worker-exit')
  1717. }, 15_000)
  1718. it('rejects an fd-3 frame whose raw length exceeds the parse cap before joining it', async () => {
  1719. // The 64 MiB frame parse cap bounds the RAW frame bytes, not the decoded
  1720. // structure; a compact wide frame near that ceiling could decode to far
  1721. // more host memory. The unframed-buffer counter is checked against
  1722. // FRAME_PARSE_CAP_BYTES BEFORE the Buffer.concat join, so an oversized
  1723. // frame is dropped at one copy of its wire bytes instead of being fully
  1724. // joined (a second copy) and only then discarded in the line loop — the
  1725. // peak-memory doubling the pre-join check exists to prevent. Fail-before:
  1726. // without the check the frame is joined whole and parsed (its log text
  1727. // admitted, truncating the ledger), and the run completes normally.
  1728. const { runtime } = await setup({ maxWallMs: 60_000 })
  1729. const result = await runtime.run({
  1730. program: [
  1731. 'import os',
  1732. // One frame just past the 64 MiB parse cap.
  1733. 'os.write(3, b"{\\"type\\":\\"log\\",\\"text\\":\\"" + b"a" * (65 * 1024 * 1024) + b"\\"}\\n")',
  1734. 'return "done"',
  1735. ].join('\n'),
  1736. bindings: [],
  1737. })
  1738. expect(result.error?.kind).toBe('worker-exit')
  1739. expect(result.error?.message).toContain('protocol frame exceeded')
  1740. }, 90_000)
  1741. it('caps an oversized rejection diagnostic so an invalid completion stays invalid-output', async () => {
  1742. // _done_with_value caps its rejection diagnostic through _cap_message: a
  1743. // hostile class name (huge type(value).__name__) would otherwise push the
  1744. // done frame past the host's 64 MiB parse cap, misreporting an
  1745. // invalid-output run as a worker-exit. The diagnostic is capped to the
  1746. // value budget, so the frame always crosses the parser.
  1747. const { runtime } = await setup({ maxWallMs: 60_000 })
  1748. const result = await runtime.run({
  1749. program: [
  1750. 'return type("N" * (70 * 1024 * 1024), (), {})()',
  1751. ].join('\n'),
  1752. bindings: [],
  1753. })
  1754. expect(result.error?.kind).toBe('invalid-output')
  1755. expect(result.error?.kind).not.toBe('worker-exit')
  1756. }, 90_000)
  1757. it('appends a flushed unterminated line to the next entry without a fake newline', async () => {
  1758. // An explicit flush of an unterminated line (print(..., end='', flush=True))
  1759. // used to push a full log frame, so the following print() landed in a
  1760. // SECOND entry and logs.join('\n') rendered 'a\nb' for what the program
  1761. // printed as one line. The flush frame now carries `open: true` and the
  1762. // host appends the next frame to the same entry.
  1763. const { runtime } = await setup()
  1764. const result = await runtime.run({
  1765. program: [
  1766. "print('a', end='', flush=True)",
  1767. "print('b')",
  1768. 'return "done"',
  1769. ].join('\n'),
  1770. bindings: [],
  1771. })
  1772. expect(result.error).toBeUndefined()
  1773. expect(result.logs).toEqual(['ab'])
  1774. }, 15_000)
  1775. it('keeps a flushed unterminated line when the run ends with it still open', async () => {
  1776. // The settlement flush pushes the residual with `open: true`; finish()
  1777. // admits it so a program that commits a partial line and returns does not
  1778. // lose it from logs.
  1779. const { runtime } = await setup()
  1780. const result = await runtime.run({
  1781. program: [
  1782. "print('committed', end='', flush=True)",
  1783. 'return "done"',
  1784. ].join('\n'),
  1785. bindings: [],
  1786. })
  1787. expect(result.error).toBeUndefined()
  1788. expect(result.logs).toEqual(['committed'])
  1789. }, 15_000)
  1790. it('bounds a forged open-frame flood against the log budget', async () => {
  1791. // The open hold must be bounded by the ledger: without the exact-cost check
  1792. // a forged open flood would grow the held fragment without touching
  1793. // logBudget — unbounded host retention under a small budget. The flood now
  1794. // truncates to the marker like any over-budget log traffic.
  1795. const { runtime } = await setup({ maxLogBytes: 64 })
  1796. const result = await runtime.run({
  1797. program: [
  1798. 'import os',
  1799. // 2000 forged open frames, each under the frame parse cap.
  1800. 'for _ in range(2000):',
  1801. " os.write(3, b'{\"type\":\"log\",\"text\":\"a\",\"open\":true}\\n')",
  1802. 'return "done"',
  1803. ].join('\n'),
  1804. bindings: [],
  1805. })
  1806. expect(result.error).toBeUndefined()
  1807. expect(result.logs).toEqual([logTruncationMarker(64)])
  1808. }, 15_000)
  1809. it('keeps a float completion exact when the program mutates the decimal context', async () => {
  1810. // The float encoder's Decimal(repr(value)).normalize() used the process
  1811. // GLOBAL decimal context: a legitimate program setting
  1812. // `getcontext().prec = 2` silently rounded the completion value's digits,
  1813. // and `traps[Inexact] = True` made the encode raise, misclassifying a
  1814. // successful run as an exception. A fixed module-level Context(prec=28)
  1815. // makes the spelling decision context-independent.
  1816. const { runtime } = await setup()
  1817. const result = await runtime.run({
  1818. program: [
  1819. 'from decimal import getcontext',
  1820. 'getcontext().prec = 2',
  1821. 'getcontext().traps[__import__("decimal").Inexact] = True',
  1822. 'return 1.2345678901234567',
  1823. ].join('\n'),
  1824. bindings: [],
  1825. })
  1826. expect(result.error).toBeUndefined()
  1827. expect(result.value).toBe(1.2345678901234567)
  1828. }, 15_000)
  1829. it('bounds an over-cap exception-group nesting on the copy', async () => {
  1830. // Exception groups link through `exceptions`, not the cause/context
  1831. // dunders, so the cap has to count that edge too — otherwise a deeply
  1832. // nested group walks past the bound the marker claims to enforce.
  1833. const { runtime } = await setup({ maxValueBytes: 1024 * 1024, maxWallMs: 15_000 })
  1834. const result = await runtime.run({
  1835. program: [
  1836. 'group = ValueError("leaf")',
  1837. 'for i in range(150):',
  1838. ' group = ExceptionGroup(f"g{i}", [group])',
  1839. 'raise group',
  1840. ].join('\n'),
  1841. bindings: [],
  1842. })
  1843. expect(result.error?.kind).toBe('exception')
  1844. expect(result.error?.message).toContain('exception chain truncated at 100 links')
  1845. }, 20_000)
  1846. it('filters every bootstrap frame from the traceback of an uncaught binding rejection', async () => {
  1847. // A rejection re-raised by the bootstrap's dispatch adds bootstrap frames
  1848. // AFTER the model's own; only <model> frames may reach model-visible,
  1849. // durable output — a bootstrap.py path would leak host absolutes and make
  1850. // transcripts machine-dependent.
  1851. const { runtime } = await setup()
  1852. const result = await runtime.run({
  1853. program: 'await tools.boom({})',
  1854. bindings: tools({ boom: async () => { throw new Error('exploded') } }),
  1855. })
  1856. expect(result.error?.kind).toBe('exception')
  1857. expect(result.error?.message).toContain('exploded')
  1858. expect(result.error?.message).toContain('<model>')
  1859. expect(result.error?.message).not.toContain('bootstrap.py')
  1860. })
  1861. it('renders a non-Error thrown value from a host binding as its String form', async () => {
  1862. const { runtime } = await setup()
  1863. const result = await runtime.run({
  1864. program: [
  1865. 'caught = ""',
  1866. 'try:',
  1867. ' await tools.failRaw({})',
  1868. 'except RuntimeError as e:',
  1869. ' caught = str(e)',
  1870. 'return caught',
  1871. ].join('\n'),
  1872. bindings: tools({
  1873. failRaw: async () => { throw 'raw-nope' },
  1874. }),
  1875. })
  1876. expect(result.error).toBeUndefined()
  1877. expect(result.value).toContain('raw-nope')
  1878. })
  1879. it('reassembles a frame split across writes behind a completed one', async () => {
  1880. // One os.write carrying "<frame>\n<partial...>" leaves a non-empty
  1881. // residual after the newline loop; the tail must survive until its own
  1882. // newline arrives and then parse as a normal frame.
  1883. const { runtime } = await setup()
  1884. const result = await runtime.run({
  1885. program: [
  1886. 'import os, json',
  1887. 'head = json.dumps({"type":"log","text":"first"}).encode()',
  1888. 'tail = json.dumps({"type":"log","text":"second"}).encode()',
  1889. 'import time',
  1890. 'os.write(3, head + b"\\n" + tail[:5])',
  1891. 'time.sleep(0.2)',
  1892. 'os.write(3, tail[5:] + b"\\n")',
  1893. 'return "ok"',
  1894. ].join('\n'),
  1895. bindings: [],
  1896. })
  1897. expect(result.error).toBeUndefined()
  1898. expect(result.value).toBe('ok')
  1899. expect(result.logs).toContain('first')
  1900. expect(result.logs).toContain('second')
  1901. })
  1902. it('raises the declared errorClass with the member name on rejection', async () => {
  1903. // Code Mode declares { name: ToolCallError, memberNameProperty: toolName };
  1904. // a host rejection must surface as that class, carrying the failed tool.
  1905. const { runtime } = await setup()
  1906. const result = await runtime.run({
  1907. program: [
  1908. 'caught = ""',
  1909. 'try:',
  1910. ' await tools.fail({})',
  1911. 'except ToolCallError as e:',
  1912. ' caught = f"{type(e).__name__}:{e.toolName}:{e}"',
  1913. 'return caught',
  1914. ].join('\n'),
  1915. bindings: [{
  1916. global: 'tools',
  1917. functions: { fail: async () => { throw new Error('typed-nope') } },
  1918. errorClass: { name: 'ToolCallError', memberNameProperty: 'toolName' },
  1919. }],
  1920. })
  1921. expect(result.error).toBeUndefined()
  1922. expect(result.value).toBe('ToolCallError:fail:typed-nope')
  1923. })
  1924. it('keeps the declared error class catching when Exception and setattr are rebound', async () => {
  1925. // _make_error_class's minted __init__ def-time captures Exception and
  1926. // setattr, so a program rebinding __main__.Exception/__main__.setattr
  1927. // cannot break the rejection constructor: `except ToolCallError` must still
  1928. // catch and read the member property.
  1929. const { runtime } = await setup()
  1930. const result = await runtime.run({
  1931. program: [
  1932. 'import __main__',
  1933. 'def boom(*a, **k):',
  1934. ' raise RuntimeError("hijacked")',
  1935. '__main__.Exception = boom',
  1936. '__main__.setattr = boom',
  1937. 'caught = ""',
  1938. 'try:',
  1939. ' await tools.fail({})',
  1940. 'except ToolCallError as e:',
  1941. ' caught = f"{type(e).__name__}:{e.toolName}"',
  1942. 'return caught',
  1943. ].join('\n'),
  1944. bindings: [{
  1945. global: 'tools',
  1946. functions: { fail: async () => { throw new Error('typed-nope') } },
  1947. errorClass: { name: 'ToolCallError', memberNameProperty: 'toolName' },
  1948. }],
  1949. })
  1950. expect(result.error).toBeUndefined()
  1951. expect(result.value).toBe('ToolCallError:fail')
  1952. }, 15_000)
  1953. it('rejects an errorClass name colliding with its namespace global at the seam', async () => {
  1954. const { runtime } = await setup()
  1955. await expect(runtime.run({
  1956. program: 'return 1',
  1957. bindings: [{ global: 'tools', functions: {}, errorClass: { name: 'tools', memberNameProperty: 'toolName' } }],
  1958. })).rejects.toThrow(/collides with another injected global/)
  1959. })
  1960. it('rejects a namespace global colliding with a runtime-owned name at the seam', async () => {
  1961. // `__dsh_main__` passes the identifier check, but exec()ing the generated
  1962. // wrapper would silently overwrite the binding after injection. `console`
  1963. // is the WORKER backend's slot — refused here too so a namespace list
  1964. // valid on one backend is valid on all.
  1965. const { runtime } = await setup()
  1966. // `__debug__` is refused for a different reason than a collision: CPython
  1967. // compiles a bare `__debug__` reference to the constant True and refuses to
  1968. // assign the name at compile time, so an injected global under it is
  1969. // unreachable from the program — accepted by the seam, unusable here.
  1970. for (const global of ['__dsh_main__', 'console', '__debug__']) {
  1971. await expect(runtime.run({
  1972. program: 'x = 1',
  1973. bindings: [{ global, functions: {} }],
  1974. })).rejects.toThrow(/collides with a runtime-owned global/)
  1975. }
  1976. })
  1977. it('accepts a non-identifier memberNameProperty and rejects only an empty one', async () => {
  1978. // The seam permits any non-empty own property except the reserved
  1979. // members; Python setattr/getattr carry exotic names like `tool-name`,
  1980. // and the worker backend accepts them, so this backend must too.
  1981. const { runtime } = await setup()
  1982. const result = await runtime.run({
  1983. program: [
  1984. 'try:',
  1985. ' await tools.boom({})',
  1986. 'except ToolCallError as e:',
  1987. ' return getattr(e, "tool-name")',
  1988. ].join('\n'),
  1989. bindings: [{
  1990. global: 'tools',
  1991. functions: { boom: async () => { throw new Error('nope') } },
  1992. errorClass: { name: 'ToolCallError', memberNameProperty: 'tool-name' },
  1993. }],
  1994. })
  1995. expect(result.error).toBeUndefined()
  1996. expect(result.value).toBe('boom')
  1997. await expect(runtime.run({
  1998. program: 'return 1',
  1999. bindings: [{ global: 'tools', functions: {}, errorClass: { name: 'ToolCallError', memberNameProperty: '' } }],
  2000. })).rejects.toThrow(/memberNameProperty must be a non-empty attribute name/)
  2001. })
  2002. it('resolves a basename pythonBin to an absolute path (runs a real program)', async () => {
  2003. // A bare `python3` basename must resolve against PATH and actually launch
  2004. // under the empty-env spawn — exercises the accessSync success branch.
  2005. const { runtime } = await setup({ pythonBin: 'python3' })
  2006. const result = await runtime.run({ program: 'return 7', bindings: [] })
  2007. expect(result.error).toBeUndefined()
  2008. expect(result.value).toBe(7)
  2009. })
  2010. it('spawns via an absolute python path resolved from a basename against PATH', async () => {
  2011. // resolvePythonBin turns the default basename into an absolute path before
  2012. // the empty-env spawn; a basename with no PATH match falls through to the
  2013. // normal ENOENT worker-exit rather than throwing.
  2014. const { runtime } = await setup({ pythonBin: 'definitely-no-such-python-xyz' })
  2015. const result = await runtime.run({ program: 'return 1', bindings: [] })
  2016. expect(result.error?.kind).toBe('worker-exit')
  2017. })
  2018. it('rejects a memberNameProperty naming a constrained BaseException attribute', async () => {
  2019. // `__dict__`/`__class__` are constrained descriptors alongside
  2020. // `__traceback__` — setattr of a string raises TypeError while
  2021. // constructing the rejection — so every dunder is refused at the seam.
  2022. const { runtime } = await setup()
  2023. // name/message/stack are the seam's own exclusions (CodeBindingErrorClass
  2024. // forbids replacing them; the worker backend rejects them identically).
  2025. for (const member of ['__traceback__', '__dict__', '__class__', 'args', 'name', 'message', 'stack']) {
  2026. await expect(runtime.run({
  2027. program: 'return 1',
  2028. bindings: [{ global: 'tools', functions: {}, errorClass: { name: 'ToolCallError', memberNameProperty: member } }],
  2029. })).rejects.toThrow(/reserved error member/)
  2030. }
  2031. })
  2032. it('rejects a lossy binding resolution (NaN) instead of coercing it to null', async () => {
  2033. // JSON.stringify would turn NaN into null and drop undefined fields; the
  2034. // seam requires a descriptive rejection so data cannot silently corrupt.
  2035. const { runtime } = await setup()
  2036. const result = await runtime.run({
  2037. program: [
  2038. 'caught = ""',
  2039. 'try:',
  2040. ' await tools.bad({})',
  2041. 'except RuntimeError as e:',
  2042. ' caught = str(e)',
  2043. 'return caught',
  2044. ].join('\n'),
  2045. bindings: tools({ bad: async () => Number.NaN }),
  2046. })
  2047. expect(result.error).toBeUndefined()
  2048. expect(result.value).toContain('lossless JSON')
  2049. })
  2050. it('contains a forged pathological done value without crashing the host', async () => {
  2051. // A ~20k-deep nested array forged onto fd 3 would overflow a recursive
  2052. // JSON.stringify; the host's iterative encoder measures it stack-safely
  2053. // and fails it deterministically on the byte budget (40 kB > 32 KiB).
  2054. const { runtime } = await setup()
  2055. const result = await runtime.run({
  2056. program: [
  2057. 'import os, json',
  2058. 'depth = 20000',
  2059. 'payload = "[" * depth + "]" * depth',
  2060. 'os.write(3, b\'{"type":"done","value":\' + payload.encode() + b\'}\\n\')',
  2061. 'import time',
  2062. 'time.sleep(5)',
  2063. ].join('\n'),
  2064. bindings: [],
  2065. })
  2066. expect(result.value).toBeUndefined()
  2067. expect(result.error?.kind).toBe('output-limit')
  2068. })
  2069. it('preserves a deeply nested completion value below the byte budget', async () => {
  2070. // CodeJsonValue has no depth limit: a 10000-deep nested list is only
  2071. // ~20 kB — under maxValueBytes — and must cross intact. That depth
  2072. // overflows BOTH recursive serializers the pipeline used to rely on
  2073. // (CPython's json.dumps recursion limit ~1000s, V8's JSON.stringify), so
  2074. // it proves the child-side _encode_json_plain and the host-side
  2075. // encodeJsonPlain together. The host JSON.parse of the frame is iterative
  2076. // in V8 for arrays, so only the two encoders were at risk.
  2077. const { runtime } = await setup()
  2078. const result = await runtime.run({
  2079. program: [
  2080. 'v = None',
  2081. 'for _ in range(10000):',
  2082. ' v = [v]',
  2083. 'return v',
  2084. ].join('\n'),
  2085. bindings: [],
  2086. })
  2087. expect(result.error).toBeUndefined()
  2088. // Walk down iteratively (a recursive toEqual would itself overflow).
  2089. let depth = 0
  2090. let cursor: unknown = result.value
  2091. while (Array.isArray(cursor)) {
  2092. expect(cursor).toHaveLength(1)
  2093. cursor = cursor[0]
  2094. depth++
  2095. }
  2096. expect(depth).toBe(10000)
  2097. expect(cursor).toBeNull()
  2098. })
  2099. it('bridges a deeply nested binding resolution back into the program stack-safely', async () => {
  2100. // A binding resolution has no seam-level depth or byte cap; neither the
  2101. // host's reply serialization nor the CHILD's reply decode may die on
  2102. // recursion (json.loads raises RecursionError ~10k levels deep; the
  2103. // bootstrap decodes frames iteratively). 12000 levels sits past that
  2104. // limit while staying tiny in bytes.
  2105. const { runtime } = await setup()
  2106. const deep = ((): unknown => {
  2107. let v: unknown = null
  2108. for (let i = 0; i < 12000; i++) v = [v]
  2109. return v
  2110. })()
  2111. const result = await runtime.run({
  2112. program: [
  2113. 'v = await tools.deep({})',
  2114. 'depth = 0',
  2115. 'while isinstance(v, list):',
  2116. ' v = v[0]',
  2117. ' depth += 1',
  2118. 'return depth',
  2119. ].join('\n'),
  2120. bindings: tools({ deep: async () => deep as never }),
  2121. })
  2122. expect(result.error).toBeUndefined()
  2123. expect(result.value).toBe(12000)
  2124. })
  2125. it('rejects a reserved errorClass name at the seam', async () => {
  2126. const { runtime } = await setup()
  2127. await expect(runtime.run({
  2128. program: 'return 1',
  2129. bindings: [{
  2130. global: 'tools',
  2131. functions: {},
  2132. errorClass: { name: 'class', memberNameProperty: 'toolName' },
  2133. }],
  2134. })).rejects.toThrow(/errorClass.name "class" is not a usable Python identifier/)
  2135. })
  2136. it('routes a declared inherited-attribute name through the bridge via subscript', async () => {
  2137. // __class__ resolves on `object` before any fallback hook; the proxy's
  2138. // __getattribute__ intercepts declared names first, and subscript access
  2139. // is the SDK-advertised route for underscore names.
  2140. const { runtime } = await setup()
  2141. const seen: string[] = []
  2142. const result = await runtime.run({
  2143. program: [
  2144. 'a = await tools["__class__"]({"via": "subscript"})',
  2145. 'b = await tools.__class__({"via": "dot"})',
  2146. 'return [a, b]',
  2147. ].join('\n'),
  2148. bindings: tools({
  2149. '__class__': async () => { seen.push('called'); return 'bridged' },
  2150. }),
  2151. })
  2152. expect(result.error).toBeUndefined()
  2153. expect(result.value).toEqual(['bridged', 'bridged'])
  2154. expect(seen).toEqual(['called', 'called'])
  2155. })
  2156. it('rejects NaN binding arguments immediately instead of hanging', async () => {
  2157. // Default json.dumps would emit a non-standard NaN token that the host
  2158. // JSON.parse drops silently, hanging the call until the wall clock;
  2159. // allow_nan=False raises in-program right away.
  2160. const { runtime } = await setup({ maxWallMs: 8000 })
  2161. const start = Date.now()
  2162. const result = await runtime.run({
  2163. program: [
  2164. 'caught = ""',
  2165. 'try:',
  2166. ' await tools.echo({"x": float("nan")})',
  2167. 'except RuntimeError as e:',
  2168. ' caught = str(e)',
  2169. 'return caught',
  2170. ].join('\n'),
  2171. bindings: tools({ echo: async args => args as CodeJsonValue }),
  2172. })
  2173. expect(result.error).toBeUndefined()
  2174. expect(result.value).toContain('lossless JSON')
  2175. expect(Date.now() - start).toBeLessThan(5000)
  2176. })
  2177. it('carries large binding arguments well past maxValueBytes', async () => {
  2178. // Binding traffic has no seam byte cap: a call frame far larger than the
  2179. // completion budget must reach the host intact (the fd-3 ceiling is a
  2180. // fixed memory-safety bound, not an output budget).
  2181. const maxValueBytes = 4096
  2182. const { runtime } = await setup({ maxValueBytes })
  2183. let receivedLength = 0
  2184. const result = await runtime.run({
  2185. program: [
  2186. `big = "B" * ${maxValueBytes * 50}`,
  2187. 'r = await tools.measure({"payload": big})',
  2188. 'return r',
  2189. ].join('\n'),
  2190. bindings: tools({
  2191. measure: async (args) => {
  2192. receivedLength = ((args as { payload: string }).payload).length
  2193. return receivedLength
  2194. },
  2195. }),
  2196. })
  2197. expect(result.error).toBeUndefined()
  2198. expect(receivedLength).toBe(maxValueBytes * 50)
  2199. expect(result.value).toBe(maxValueBytes * 50)
  2200. })
  2201. it('rejects an unknown binding name inside the program with a matching error', async () => {
  2202. const { runtime } = await setup()
  2203. const result = await runtime.run({
  2204. program: [
  2205. 'caught = ""',
  2206. 'try:',
  2207. ' await tools.nope({})',
  2208. 'except (AttributeError, RuntimeError) as e:',
  2209. ' caught = str(e)',
  2210. 'return caught',
  2211. ].join('\n'),
  2212. bindings: tools({ known: async () => 'ok' }),
  2213. })
  2214. expect(result.error).toBeUndefined()
  2215. expect(result.value).toContain('nope')
  2216. })
  2217. it('bounds an unknown-binding diagnostic built from a forged call frame', async () => {
  2218. // `call.global` and `call.name` carry no byte cap of their own, only the
  2219. // 64 MiB fd-3 frame parse cap, and the reply interpolated them raw: one copy
  2220. // into the template result, one into the `JSON.stringify` escape, one into
  2221. // the `encodeJsonPlain` frame, one into the pipe write. Slicing each field
  2222. // to `maxValueBytes` code units first makes an 8 MiB forged name a
  2223. // 128-byte reply. The observable effect is the reply the child then has to
  2224. // READ: its fd-3 reader is unbuffered, so `readline` consumes an oversized
  2225. // reply one `read(2)` per byte and the run's own legitimate call never gets
  2226. // answered — measured under a 60 s ceiling, the 8 MiB case timed out and a
  2227. // 64 MiB case cost the host 509.9 MiB of heap against 120.3 MiB with the
  2228. // slices in place. The child's address space stays generous enough to BUILD
  2229. // the forgery, which is not what is under test.
  2230. const { runtime } = await setup({ maxValueBytes: 128, addressSpaceMb: 1024, maxWallMs: 20_000 })
  2231. const result = await runtime.run({
  2232. program: [
  2233. 'import os',
  2234. 'frame = b\'{"type":"call","id":9001,"global":"tools","name":"\' + b"n" * (8 * 1024 * 1024) + b\'","args":{}}\\n\'',
  2235. // One os.write returns short past the pipe buffer, and a partial frame
  2236. // would glue itself to the next one and be dropped as malformed, so the
  2237. // forgery goes out through a drain loop.
  2238. 'view = memoryview(frame)',
  2239. 'while view:',
  2240. ' view = view[os.write(3, view):]',
  2241. // A legitimate call after the forgery: its reply can only arrive once
  2242. // the child has read past whatever the forged frame was answered with.
  2243. 'await tools.known({})',
  2244. 'return "settled"',
  2245. ].join('\n'),
  2246. bindings: tools({ known: async () => 'ok' }),
  2247. })
  2248. expect(result.error).toBeUndefined()
  2249. expect(result.value).toBe('settled')
  2250. }, 40_000)
  2251. it('bridges a binding call reached via subscript access (tools["name"])', async () => {
  2252. // The SDK tells the model `await tools["my-tool"](args)` works for exotic
  2253. // names; the proxy's __getitem__ must route it through the bridge.
  2254. const { runtime } = await setup()
  2255. const result = await runtime.run({
  2256. program: [
  2257. 'r = await tools["my-tool"]({"n": 7})',
  2258. 'return r',
  2259. ].join('\n'),
  2260. bindings: tools({ 'my-tool': async args => ({ got: args as CodeJsonValue }) }),
  2261. })
  2262. expect(result.error).toBeUndefined()
  2263. expect(result.value).toEqual({ got: { n: 7 } })
  2264. })
  2265. it('raises KeyError for an undeclared subscript name', async () => {
  2266. const { runtime } = await setup()
  2267. const result = await runtime.run({
  2268. program: [
  2269. 'caught = ""',
  2270. 'try:',
  2271. ' await tools["absent"]({})',
  2272. 'except KeyError as e:',
  2273. ' caught = str(e)',
  2274. 'return caught',
  2275. ].join('\n'),
  2276. bindings: tools({ known: async () => 'ok' }),
  2277. })
  2278. expect(result.error).toBeUndefined()
  2279. expect(result.value).toContain('absent')
  2280. })
  2281. })
  2282. describe('PythonCodeRuntime — budgets, termination, disposal', () => {
  2283. it('kills a wall-clock runaway program via SIGTERM/SIGKILL and reports timeout', async () => {
  2284. const { runtime } = await setup({ maxWallMs: 500, graceMs: 200 })
  2285. const start = Date.now()
  2286. const result = await runtime.run({
  2287. program: 'import time\nwhile True: time.sleep(1)',
  2288. bindings: [],
  2289. })
  2290. const elapsed = Date.now() - start
  2291. // The wall timer may fire first or the exit-after-signal may resolve; both are ok.
  2292. expect(['timeout', 'worker-exit']).toContain(result.error?.kind)
  2293. // We got somewhere in the neighborhood of maxWallMs, not the underlying `sleep(1)`.
  2294. expect(elapsed).toBeLessThan(2000)
  2295. }, 5000)
  2296. it('aborts a run when the outer signal fires mid-flight', async () => {
  2297. const { runtime } = await setup({ maxWallMs: 10_000 })
  2298. const controller = new AbortController()
  2299. const settled: Promise<CodeRunResult> = runtime.run({
  2300. program: 'import time\nwhile True: time.sleep(0.1)',
  2301. bindings: [],
  2302. signal: controller.signal,
  2303. })
  2304. setTimeout(() => { controller.abort('outer-abort') }, 200)
  2305. const result = await settled
  2306. expect(['abort', 'worker-exit']).toContain(result.error?.kind)
  2307. }, 5000)
  2308. it('settles the run when a mid-flight abort reason cannot be converted', async () => {
  2309. // The listener converted the reason before calling `finish()`, so a hostile
  2310. // reason threw from inside an `AbortSignal` listener. Node reports that as an
  2311. // uncaught exception — it can terminate the host — and `finish()` never ran,
  2312. // so the run stayed live until the wall ceiling and misreported as `timeout`
  2313. // (observed) instead of the caller's cancellation. `maxWallMs` is short so
  2314. // that misreport is a fast assertion failure rather than a suite timeout.
  2315. const uncaught: unknown[] = []
  2316. const record = (error: unknown): void => { uncaught.push(error) }
  2317. process.on('uncaughtException', record)
  2318. try {
  2319. const { runtime } = await setup({ maxWallMs: 4_000, graceMs: 200 })
  2320. const controller = new AbortController()
  2321. const settled: Promise<CodeRunResult> = runtime.run({
  2322. program: 'import time\nwhile True: time.sleep(0.1)',
  2323. bindings: [],
  2324. signal: controller.signal,
  2325. })
  2326. setTimeout(() => {
  2327. controller.abort({ [Symbol.toPrimitive]() { throw new Error('reason blew up') } })
  2328. }, 200)
  2329. const result = await settled
  2330. expect(result.error?.kind).toBe('abort')
  2331. expect(result.error?.message).toBe('<unrenderable rejection value>')
  2332. expect(uncaught).toEqual([])
  2333. } finally {
  2334. process.off('uncaughtException', record)
  2335. }
  2336. }, 15_000)
  2337. it('disposes to quiescence: an in-flight run resolves as abort and the child exits', async () => {
  2338. const { fiber, runtime } = await setup({ maxWallMs: 10_000 })
  2339. const pending = runtime.run({
  2340. program: 'import time\nwhile True: time.sleep(0.1)',
  2341. bindings: [],
  2342. })
  2343. // Give the process time to spawn and start running.
  2344. await new Promise(resolve => setTimeout(resolve, 200))
  2345. await fiber.dispose()
  2346. const result = await pending
  2347. expect(['abort', 'worker-exit']).toContain(result.error?.kind)
  2348. }, 5000)
  2349. it('reports a spawn failure via a bogus python binary as worker-exit', async () => {
  2350. const { runtime } = await setup({ pythonBin: '/nonexistent/python-binary', maxWallMs: 3000 })
  2351. const result = await runtime.run({
  2352. program: 'return 1',
  2353. bindings: [],
  2354. })
  2355. expect(result.error?.kind).toBe('worker-exit')
  2356. }, 8000)
  2357. it('applies the strictest of the configured and inherited resource limits', async () => {
  2358. // This case used to drive the bootstrap's `applying resource limits failed`
  2359. // handler with `cpuSeconds: 2 ** 63`, asserting that a cap the child cannot
  2360. // apply fails the run rather than running it uncapped. That premise no longer
  2361. // holds, for two independent reasons, so the test now pins what is actually
  2362. // guaranteed instead of a path no admissible input reaches.
  2363. //
  2364. // First, `2 ** 63` is not a safe integer, so it is now rejected at LOAD as a
  2365. // configuration error — it can never reach the child at all. Second, even the
  2366. // largest admissible values are applied successfully, because `_clamped`
  2367. // bounds every requested pair by the inherited hard limit: an unprivileged
  2368. // process may lower a hard limit but never raise one, so the child keeps the
  2369. // stricter of the two rather than asking for something `setrlimit` refuses.
  2370. // The failure handler remains as a substrate guard (a platform whose kernel
  2371. // refuses the call for its own reasons), but it is no longer reachable from
  2372. // configuration, and a test that pretends otherwise documents a contract the
  2373. // code does not have.
  2374. //
  2375. // What is observable: a very large cap still yields a working run, and the
  2376. // containment it promises is met by the inherited ceiling.
  2377. const { runtime } = await setup({ cpuSeconds: Number.MAX_SAFE_INTEGER - 1, maxWallMs: 10_000 })
  2378. const result = await runtime.run({ program: 'return 1', bindings: [] })
  2379. expect(result.error).toBeUndefined()
  2380. expect(result.value).toBe(1)
  2381. }, 20_000)
  2382. it('settles as worker-exit when the child exits before sending done (no hang)', async () => {
  2383. // Regression: settlement must key off `close` (process reaped AND stdio
  2384. // drained), not `exit`. With `exit`, finish() re-armed a second exit
  2385. // listener that never fired — run() hung forever whenever the exit event
  2386. // beat the final fd-3 data (deterministic on macOS, a lost race elsewhere).
  2387. const { runtime } = await setup({ maxWallMs: 10_000 })
  2388. const result = await runtime.run({
  2389. program: 'import os\nos._exit(7)',
  2390. bindings: [],
  2391. })
  2392. expect(result.error?.kind).toBe('worker-exit')
  2393. expect(result.error?.message).toContain('code=7')
  2394. }, 5000)
  2395. it('classifies RLIMIT_CPU soft-limit expiry (SIGXCPU) as a timeout', async () => {
  2396. // A CPU hot loop burns the soft limit; the kernel delivers SIGXCPU, whose
  2397. // close signal the host maps to `timeout`. macOS re-delivers SIGXCPU
  2398. // differently, so we assert only kind/message here — CI's darwin leg
  2399. // validates real delivery. cpuSeconds must be an integer for setrlimit.
  2400. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 20_000 })
  2401. const result = await runtime.run({
  2402. program: 'while True: pass',
  2403. bindings: [],
  2404. })
  2405. expect(result.error?.kind).toBe('timeout')
  2406. expect(result.error?.message).toContain('CPU time exhausted')
  2407. }, 8000)
  2408. it('keeps an early self-inflicted SIGKILL a worker-exit, not a CPU timeout', async () => {
  2409. // The unsolicited-SIGKILL-as-timeout classification applies only when the
  2410. // CPU budget could have expired (wall time >= cpuSeconds). A SIGKILL
  2411. // seconds before that (cgroup OOM, an operator, os.kill) is substrate
  2412. // death and stays worker-exit per the orthogonal taxonomy.
  2413. const { runtime } = await setup({ cpuSeconds: 60, maxWallMs: 10_000 })
  2414. const result = await runtime.run({
  2415. program: [
  2416. 'import os, signal',
  2417. 'os.kill(os.getpid(), signal.SIGKILL)',
  2418. ].join('\n'),
  2419. bindings: [],
  2420. })
  2421. expect(result.error?.kind).toBe('worker-exit')
  2422. expect(result.error?.message).toContain('SIGKILL')
  2423. })
  2424. it('charges a forked descendant against the run CPU budget', async () => {
  2425. // RLIMIT_CPU is per-process and every child inherits a FRESH budget, so a
  2426. // program that shells out multiplies `cpuSeconds` by the number of
  2427. // descendants it starts. Measured before the aggregate meter existed: with
  2428. // cpuSeconds 1, two sequential busy children burned 2.0 CPU-seconds
  2429. // (RUSAGE_CHILDREN) and the run still returned a SUCCESS completion. The
  2430. // settle-time check meters RUSAGE_SELF + RUSAGE_CHILDREN and converts the
  2431. // overrun into the same SIGXCPU the untrapped soft limit sends.
  2432. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 30_000 })
  2433. const result = await runtime.run({
  2434. program: [
  2435. 'import subprocess, sys',
  2436. 'for _ in range(2):',
  2437. ' subprocess.run([sys.executable, "-c", "import time\\nt=time.time()\\nwhile time.time()-t<1.2: pass"])',
  2438. 'return "escaped the cpu budget"',
  2439. ].join('\n'),
  2440. bindings: [],
  2441. })
  2442. // Darwin's SIGXCPU re-delivery differs, so accept either terminal
  2443. // classification; what must NOT happen is the completion crossing.
  2444. expect(['timeout', 'worker-exit']).toContain(result.error?.kind)
  2445. expect(result.value).toBeUndefined()
  2446. }, 40_000)
  2447. it('does not charge wall time or a cheap descendant against the CPU budget', async () => {
  2448. // The meter is CPU, not wall clock, and it must not fire on a child that
  2449. // burns almost nothing: a sleeping program and a trivial subprocess both
  2450. // have to complete normally, or the check would reject every program that
  2451. // shells out.
  2452. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 30_000 })
  2453. const slept = await runtime.run({
  2454. program: 'import time\ntime.sleep(1.5)\nreturn "slept"',
  2455. bindings: [],
  2456. })
  2457. expect(slept.error).toBeUndefined()
  2458. expect(slept.value).toBe('slept')
  2459. const cheap = await runtime.run({
  2460. program: [
  2461. 'import subprocess, sys',
  2462. 'subprocess.run([sys.executable, "-c", "pass"])',
  2463. 'return "cheap child"',
  2464. ].join('\n'),
  2465. bindings: [],
  2466. })
  2467. expect(cheap.error).toBeUndefined()
  2468. expect(cheap.value).toBe('cheap child')
  2469. }, 40_000)
  2470. it('spends no part of addressSpaceMb on bootstrap machinery', async () => {
  2471. // RLIMIT_AS counts RESERVED address space, so anything the bootstrap maps
  2472. // for its own accounting is subtracted from the program's `addressSpaceMb`.
  2473. // A sampling thread for the descendant-CPU meter cost 72 MiB here (an 8 MiB
  2474. // stack plus a 64 MiB glibc per-thread malloc arena reservation) and turned
  2475. // the 2-million-entry dict rejection below into a MemoryError under a
  2476. // 256 MiB cap on a slower runner. Assert the child's own mappings directly
  2477. // rather than inferring the budget from a near-cap allocation, so the bound
  2478. // is read from /proc instead of from how much headroom one machine happens
  2479. // to have; 48 MiB is well above the ~30 MiB a bare interpreter maps and
  2480. // well below the 102 MiB the thread produced. `addressSpaceMb` itself is
  2481. // skipped on darwin (the dyld shared cache makes any practical cap
  2482. // unsettable) and /proc/self/maps does not exist there, so the mapping
  2483. // assertion is Linux-only; the completion path is checked everywhere.
  2484. const { runtime } = await setup({ maxValueBytes: 4096, addressSpaceMb: 256 })
  2485. const mapped = await runtime.run({
  2486. program: [
  2487. 'import sys',
  2488. 'if sys.platform != "linux":',
  2489. ' return 0',
  2490. 'total = 0',
  2491. 'with open("/proc/self/maps") as handle:',
  2492. ' for line in handle:',
  2493. ' low, high = (int(part, 16) for part in line.split(" ", 1)[0].split("-"))',
  2494. ' total += high - low',
  2495. 'return total // (1024 * 1024)',
  2496. ].join('\n'),
  2497. bindings: [],
  2498. })
  2499. expect(mapped.error).toBeUndefined()
  2500. expect(mapped.value).toBeLessThan(48)
  2501. }, 20_000)
  2502. it('spends no part of addressSpaceMb on the reply pump, across a binding await', async () => {
  2503. // The test above measures BEFORE the program yields, so it could not see the
  2504. // reply pump's cost: `loop.run_in_executor(None, read_frame)` created the
  2505. // default executor's first thread on the first `await tools.*`, and that
  2506. // thread's 8 MiB stack plus a 64 MiB glibc per-thread malloc arena are
  2507. // charged to RLIMIT_AS while the limit is already in force — measured, the
  2508. // child went from 30.34 MiB to 102.39 MiB across one binding call. Under a
  2509. // small `addressSpaceMb` the thread cannot start and a legitimate call hangs
  2510. // to `maxWallMs`; under a larger one an allocation that should have fit dies
  2511. // as MemoryError. `loop.add_reader` watches the fd with no thread at all.
  2512. //
  2513. // Measuring both sides inside one run is what discriminates: a single
  2514. // after-the-fact number cannot separate the pump's cost from the
  2515. // interpreter's own footprint. Linux-only for the same reason as above.
  2516. const { runtime } = await setup({ addressSpaceMb: 256, maxWallMs: 20_000 })
  2517. const result = await runtime.run({
  2518. program: [
  2519. 'import sys',
  2520. 'def mapped():',
  2521. ' if sys.platform != "linux":',
  2522. ' return 0',
  2523. ' total = 0',
  2524. ' with open("/proc/self/maps") as handle:',
  2525. ' for line in handle:',
  2526. ' low, high = (int(part, 16) for part in line.split(" ", 1)[0].split("-"))',
  2527. ' total += high - low',
  2528. ' return total // (1024 * 1024)',
  2529. 'before = mapped()',
  2530. 'echoed = await tools.echo({"ping": True})',
  2531. 'return {"before": before, "after": mapped(), "echoed": echoed}',
  2532. ].join('\n'),
  2533. bindings: tools({ echo: async args => args as CodeJsonValue }),
  2534. })
  2535. expect(result.error).toBeUndefined()
  2536. const value = result.value as { before: number; after: number; echoed: unknown }
  2537. // The binding call really happened, so the pump really ran.
  2538. expect(value.echoed).toEqual({ ping: true })
  2539. // Awaiting a binding maps nothing extra. The 8 MiB allowance absorbs ordinary
  2540. // heap growth while staying far below the 72 MiB a pump thread cost.
  2541. expect(value.after - value.before).toBeLessThan(8)
  2542. }, 30_000)
  2543. it('still terminates a program that ignores SIGXCPU (hard-limit backstop)', async () => {
  2544. // A hot loop under SIG_IGN burns through the soft limit; the kernel's
  2545. // hard limit (cpuSeconds + 1) SIGKILLs it. Only a kernel-authoritative
  2546. // SIGXCPU close classifies as the CPU timeout — a bare SIGKILL is
  2547. // indistinguishable from a cgroup OOM kill, so it reports worker-exit
  2548. // (Darwin re-delivers SIGXCPU instead, where the wall clock settles it
  2549. // as timeout). Either way the run TERMINATES within the budget — the
  2550. // backstop holds even when the classification is the opaque one.
  2551. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 6_000 })
  2552. const result = await runtime.run({
  2553. program: [
  2554. 'import signal',
  2555. 'signal.signal(signal.SIGXCPU, signal.SIG_IGN)',
  2556. 'while True: pass',
  2557. ].join('\n'),
  2558. bindings: [],
  2559. })
  2560. expect(['timeout', 'worker-exit']).toContain(result.error?.kind)
  2561. }, 12_000)
  2562. it('enforces the CPU budget even when the program monkeypatches the enforcement primitives', async () => {
  2563. // The check uses import-time-captured references, so replacing
  2564. // resource.getrusage / signal.signal / os.kill on the modules cannot
  2565. // defang it: a trapping program that also swaps the callables and burns
  2566. // past the budget still dies by the authoritative SIGXCPU.
  2567. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 15_000 })
  2568. const result = await runtime.run({
  2569. program: [
  2570. 'import signal, os, resource, time',
  2571. 'signal.signal(signal.SIGXCPU, lambda *a: None)',
  2572. 'resource.getrusage = lambda *a: (_ for _ in ()).throw(RuntimeError("nope"))',
  2573. 'os.kill = lambda *a: None',
  2574. 'signal.signal = lambda *a: None',
  2575. 'deadline = time.process_time() + 1.05',
  2576. 'while time.process_time() < deadline: pass',
  2577. 'return "escaped"',
  2578. ].join('\n'),
  2579. bindings: [],
  2580. })
  2581. expect(result.error?.kind).toBe('timeout')
  2582. expect(result.value).toBeUndefined()
  2583. }, 15_000)
  2584. it('re-delivers SIGXCPU when a trapping program returns inside the soft-to-hard gap', async () => {
  2585. // A program can trap SIGXCPU and settle during the one-second gap; the
  2586. // bootstrap re-checks the kernel CPU meter (getrusage) after settlement
  2587. // and dies by SIGXCPU with the default disposition restored, so the host
  2588. // still classifies the exhausted budget as a timeout instead of success.
  2589. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 15_000 })
  2590. const result = await runtime.run({
  2591. program: [
  2592. 'import signal, time',
  2593. 'fired = []',
  2594. 'signal.signal(signal.SIGXCPU, lambda *a: fired.append(1))',
  2595. 'deadline = time.process_time() + 1.05',
  2596. 'while time.process_time() < deadline: pass',
  2597. 'return "escaped"',
  2598. ].join('\n'),
  2599. bindings: [],
  2600. })
  2601. expect(result.error?.kind).toBe('timeout')
  2602. expect(result.error?.message).toContain('CPU time exhausted')
  2603. expect(result.value).toBeUndefined()
  2604. }, 15_000)
  2605. it('enforces the CPU budget when the program rebinds the enforcer on __main__', async () => {
  2606. // The bootstrap IS `__main__`, so `import __main__` reaches its globals.
  2607. // The enforcement callable holds its primitives in closure cells (not
  2608. // module attributes) and `_run` reads the callable into a frame local
  2609. // before the program starts, so neither replacing the global nor swapping
  2610. // the module's captured names changes what runs after settlement.
  2611. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 15_000 })
  2612. const result = await runtime.run({
  2613. program: [
  2614. 'import signal, time, __main__',
  2615. 'signal.signal(signal.SIGXCPU, lambda *a: None)',
  2616. '__main__._DIE_IF_CPU_EXHAUSTED = lambda *_: None',
  2617. 'deadline = time.process_time() + 1.05',
  2618. 'while time.process_time() < deadline: pass',
  2619. 'return "escaped"',
  2620. ].join('\n'),
  2621. bindings: [],
  2622. })
  2623. expect(result.error?.kind).toBe('timeout')
  2624. expect(result.value).toBeUndefined()
  2625. }, 15_000)
  2626. it('bounds a program that defeats the post-check by writing its closure cell', async () => {
  2627. // The closure-cell capture raises the cost of defeating the post-check; it
  2628. // does NOT make it unreachable, and nothing in-process could: a cell is
  2629. // writable through `fn.__closure__[i].cell_contents`, and `sys._getframe`
  2630. // reads _run's frame locals. This program does exactly that — walks to
  2631. // _run's frame, takes the enforcement callable, and replaces its captured
  2632. // `getrusage` with one reporting zero CPU used — then burns past cpuSeconds
  2633. // with SIGXCPU trapped. The run must still fail, because the bound that
  2634. // model code cannot forge is outside the interpreter: the RLIMIT_CPU HARD
  2635. // limit at cpuSeconds + 1, whose SIGKILL admits no handler. No success is
  2636. // reportable either way.
  2637. const { runtime } = await setup({ cpuSeconds: 1, maxWallMs: 20_000 })
  2638. const start = Date.now()
  2639. const result = await runtime.run({
  2640. program: [
  2641. 'import signal, sys, time',
  2642. 'signal.signal(signal.SIGXCPU, lambda *a: None)',
  2643. // Walk out of __dsh_main__ to _run's frame and take its local.
  2644. 'die = None',
  2645. 'depth = 1',
  2646. 'while depth < 12:',
  2647. ' frame = sys._getframe(depth)',
  2648. ' if "die_if_cpu_exhausted" in frame.f_locals:',
  2649. ' die = frame.f_locals["die_if_cpu_exhausted"]',
  2650. ' break',
  2651. ' depth += 1',
  2652. 'assert die is not None, "enforcer not reachable from the frame chain"',
  2653. 'class Zero:',
  2654. ' ru_utime = 0.0',
  2655. ' ru_stime = 0.0',
  2656. 'names = die.__code__.co_freevars',
  2657. 'die.__closure__[names.index("getrusage")].cell_contents = lambda *a: Zero()',
  2658. // Burn well past the soft limit into the hard limit's SIGKILL.
  2659. 'while True: pass',
  2660. ].join('\n'),
  2661. bindings: [],
  2662. })
  2663. // What holds on EVERY platform: the tampering bought no success. The run
  2664. // failed, carried no value, and the reported kind is one of the two
  2665. // kernel-level outcomes — never a completion.
  2666. expect(result.value).toBeUndefined()
  2667. expect(result.error?.kind === 'worker-exit' || result.error?.kind === 'timeout').toBe(true)
  2668. if (process.platform === 'linux') {
  2669. // Linux enforces the RLIMIT_CPU HARD limit at cpuSeconds + 1 promptly, so
  2670. // the CPU bound — not the 20 s wall ceiling — is what stops the program.
  2671. // Its SIGKILL is not SIGXCPU, so the orthogonal-failure taxonomy reports
  2672. // `worker-exit`: a bare SIGKILL is not evidence of CPU burn.
  2673. expect(result.error?.kind).toBe('worker-exit')
  2674. expect(Date.now() - start).toBeLessThan(15_000)
  2675. } else {
  2676. // Darwin does not deliver the hard limit's SIGKILL on the same schedule;
  2677. // observed on the macOS lane, a program that patches the post-check runs
  2678. // to the WALL ceiling instead. The CPU budget is therefore not the
  2679. // binding constraint against a tampering program there — the wall clock
  2680. // is. Asserted rather than skipped so the difference stays visible.
  2681. expect(result.error?.kind).toBe('timeout')
  2682. }
  2683. }, 30_000)
  2684. it('keeps a finished-but-not-closed run live so dispose awaits the child\'s death', async () => {
  2685. // finish() no longer drops the run from `live`; settle() (at close) does.
  2686. // A SIGTERM-trapping program with a small graceMs sits in the grace window
  2687. // after finish() fires — dispose() must not resolve until the SIGKILL
  2688. // backstop actually reaps the child. The program prints its pid (captured
  2689. // as a log even on abort); once dispose() resolves, that pid must be dead
  2690. // (process.kill(pid, 0) throws ESRCH).
  2691. const { fiber, runtime } = await setup({ maxWallMs: 10_000, graceMs: 400 })
  2692. // Deterministic readiness: the program reports its pid through a binding
  2693. // AFTER installing the trap, so dispose cannot race the spawn (a fixed
  2694. // sleep lost that race on slow CI runners — SIGTERM landed pre-trap).
  2695. let reportedPid!: (pid: number) => void
  2696. const trapReady = new Promise<number>((resolve) => { reportedPid = resolve })
  2697. const pending = runtime.run({
  2698. program: [
  2699. 'import signal, time, os',
  2700. 'signal.signal(signal.SIGTERM, lambda *a: None)',
  2701. 'await tools.ready({"pid": os.getpid()})',
  2702. 'while True: time.sleep(0.05)',
  2703. ].join('\n'),
  2704. bindings: tools({
  2705. ready: async (args) => {
  2706. reportedPid((args as { pid: number }).pid)
  2707. return 'ok'
  2708. },
  2709. }),
  2710. })
  2711. const pid = await trapReady
  2712. const start = Date.now()
  2713. await fiber.dispose()
  2714. const elapsed = Date.now() - start
  2715. const result = await pending
  2716. expect(['abort', 'worker-exit', 'timeout']).toContain(result.error?.kind)
  2717. // dispose() returned only after the grace window elapsed (the SIGTERM trap
  2718. // forces the SIGKILL backstop path), proving the run stayed live past finish().
  2719. expect(elapsed).toBeGreaterThanOrEqual(300)
  2720. expect(Number.isInteger(pid) && pid > 0).toBe(true)
  2721. // The child is fully reaped by the time dispose() resolved.
  2722. expect(() => process.kill(pid, 0)).toThrow(/ESRCH/)
  2723. }, 8000)
  2724. it('settles on the decided result even when a setsid-escaped orphan holds stdio open past close', async () => {
  2725. // `close` only fires once every inherited stdio stream drains. A descendant
  2726. // started with start_new_session=True escapes the child's process group, so
  2727. // the SIGTERM/SIGKILL aimed at that group never reaches it; if it inherited
  2728. // our stdout/stderr/fd 3 and outlives the run, `close` would never fire and
  2729. // run() would hang forever. The close-deadline backstop (graceMs + margin)
  2730. // must force settlement on the value the `done` frame already decided.
  2731. const { runtime } = await setup({ graceMs: 100 })
  2732. const start = Date.now()
  2733. const result = await runtime.run({
  2734. program: [
  2735. 'import subprocess, sys',
  2736. // Orphan in a fresh session, inheriting our stdout/stderr/fd 3, alive
  2737. // past the close-deadline so `close` cannot fire on its own. Its own
  2738. // 5 s self-exit is the leak ceiling AND the discriminator: it must stay
  2739. // ABOVE the < 4000 ms upper-bound assertion below, so if the deadline
  2740. // backstop failed to settle, settlement could only come from this
  2741. // self-exit at ~5 s and blow the bound — a sharper signal than the wall
  2742. // ceiling would give.
  2743. 'subprocess.Popen([sys.executable, "-c", "import time; time.sleep(5)"],',
  2744. ' start_new_session=True)',
  2745. 'return "escaped"',
  2746. ].join('\n'),
  2747. bindings: [],
  2748. })
  2749. const elapsed = Date.now() - start
  2750. // The done frame decided the value; the deadline settled it despite the
  2751. // orphan pinning the pipes open.
  2752. expect(result.error).toBeUndefined()
  2753. expect(result.value).toBe('escaped')
  2754. // Settlement waited for the backstop (graceMs + CLOSE_REAP_MARGIN_MS ≈ 2.1s),
  2755. // not the orphan's 5 s self-exit — proving the deadline, not a fallback, fired.
  2756. expect(elapsed).toBeGreaterThanOrEqual(1_500)
  2757. expect(elapsed).toBeLessThan(4_000)
  2758. }, 8000)
  2759. it('flushes a newline-free diagnostic when the closeDeadline forces settlement', async () => {
  2760. // A leader that writes an unterminated diagnostic via `os.write(1, ...)` and
  2761. // then exits, leaving a setsid orphan holding the pipes open, settles through
  2762. // the closeDeadline destroy() path — which fires no `end`. The residual must
  2763. // be flushed before destroy() drops it, or the diagnostic is lost from
  2764. // `logs`. The value is decided by the done frame; the diagnostic must survive.
  2765. const { runtime } = await setup({ graceMs: 100 })
  2766. const result = await runtime.run({
  2767. program: [
  2768. 'import os, subprocess, sys',
  2769. 'os.write(1, b"leader-diagnostic-no-newline")',
  2770. 'subprocess.Popen([sys.executable, "-c", "import time; time.sleep(5)"],',
  2771. ' start_new_session=True)',
  2772. 'return "escaped"',
  2773. ].join('\n'),
  2774. bindings: [],
  2775. })
  2776. expect(result.error).toBeUndefined()
  2777. expect(result.value).toBe('escaped')
  2778. expect(result.logs).toContain('leader-diagnostic-no-newline')
  2779. }, 8000)
  2780. it('closes the child stdin so a program read sees EOF instead of blocking', async () => {
  2781. // The host closes the child's stdin write handle immediately after spawn
  2782. // (the program is an async body that reads nothing from fd 0; a live pipe
  2783. // would hold a host-side handle open past the run). A program that DOES
  2784. // read fd 0 therefore sees EOF at once. Fail-before: with the handle left
  2785. // open and no data written, `sys.stdin.read()` blocks and the run would
  2786. // hang to maxWallMs as a timeout.
  2787. const { runtime } = await setup({ maxWallMs: 8_000 })
  2788. const result = await runtime.run({
  2789. program: [
  2790. 'import sys',
  2791. 'data = sys.stdin.read()',
  2792. 'return "read: " + repr(data)',
  2793. ].join('\n'),
  2794. bindings: [],
  2795. })
  2796. expect(result.error).toBeUndefined()
  2797. expect(result.value).toBe("read: ''")
  2798. }, 15_000)
  2799. it('keeps runtime type annotations as live classes, not PEP 563 strings, when the program reads them', async () => {
  2800. // bootstrap.py imports `from __future__ import annotations`; without
  2801. // dont_inherit=True on compile(), that PEP 563 flag leaks into the program's
  2802. // compiled code and stringifies its type annotations, changing the semantics
  2803. // of a legal program that reads `f.__annotations__` at runtime.
  2804. const { runtime } = await setup()
  2805. const result = await runtime.run({
  2806. program: [
  2807. 'def f(x: int) -> int:',
  2808. ' return x',
  2809. 'return f.__annotations__["x"].__name__',
  2810. ].join('\n'),
  2811. bindings: [],
  2812. })
  2813. expect(result.error).toBeUndefined()
  2814. expect(result.value).toBe('int')
  2815. }, 15_000)
  2816. it('reaps a same-group child that ignores SIGTERM and releases the pipes before close', async () => {
  2817. // The same-group counterpart to the setsid-orphan case above. A descendant
  2818. // left in the child's OWN process group (no setsid, so `kill(-pid)` reaches
  2819. // it) can ignore SIGTERM yet still release the inherited stdout/stderr/fd 3
  2820. // it does not hold — here by giving the Popen child DEVNULL streams and
  2821. // letting close_fds drop fd 3. The leader then writes `done` and exits, its
  2822. // `close` fires because the pipes drained, and settle() runs while that
  2823. // descendant is still alive. settle() then keeps a REF'd poll alive until the
  2824. // grace-window SIGKILL has emptied the whole process group, so the host cannot
  2825. // exit and reparent the survivor to init: no subprocess outlives the fiber.
  2826. //
  2827. // The descendant must have SIG_IGN installed BEFORE the host sends SIGTERM,
  2828. // or it dies from the default SIGTERM whether the fix is present or not — so
  2829. // it writes a readiness marker after trapping and the leader waits for that
  2830. // marker before returning. While alive it bumps a heartbeat file every 50 ms;
  2831. // the test asserts the heartbeat STOPS, which is what "no longer executing"
  2832. // means whether the killed descendant is reaped or lingers as a zombie (a
  2833. // SIGKILL'd process runs no more code either way). It sleeps 30 s as a safety
  2834. // net so a broken fix cannot leak it forever.
  2835. const handoff = await mkdtemp(join(tmpdir(), 'dsh-samegroup-'))
  2836. const readyMarker = join(handoff, 'ready')
  2837. const heartbeat = join(handoff, 'heartbeat')
  2838. const { runtime } = await setup({ maxWallMs: 10_000, graceMs: 300 })
  2839. const result = await runtime.run({
  2840. program: [
  2841. 'import subprocess, sys, os, time',
  2842. `marker = ${JSON.stringify(readyMarker)}`,
  2843. `heartbeat = ${JSON.stringify(heartbeat)}`,
  2844. // Same group (no start_new_session); ignores SIGTERM; holds none of the
  2845. // leader's pipes (DEVNULL std streams, close_fds drops fd 3). It writes
  2846. // the marker (argv[1]) only AFTER the trap is installed — so the leader
  2847. // cannot return, and the host cannot send SIGTERM, before it is ignored —
  2848. // then rewrites the heartbeat (argv[2]) every 50 ms for up to 30 s.
  2849. 'code = ("import signal, sys, time\\n"',
  2850. ' "signal.signal(signal.SIGTERM, signal.SIG_IGN)\\n"',
  2851. ' "open(sys.argv[1], \'w\').close()\\n"',
  2852. ' "end = time.time() + 30\\n"',
  2853. ' "while time.time() < end:\\n"',
  2854. ' " open(sys.argv[2], \'w\').close()\\n"',
  2855. ' " time.sleep(0.05)\\n")',
  2856. 'child = subprocess.Popen([sys.executable, "-c", code, marker, heartbeat],',
  2857. ' stdin=subprocess.DEVNULL,',
  2858. ' stdout=subprocess.DEVNULL,',
  2859. ' stderr=subprocess.DEVNULL)',
  2860. 'deadline = time.time() + 5',
  2861. 'while not os.path.exists(marker) and time.time() < deadline:',
  2862. ' time.sleep(0.02)',
  2863. 'return "spawned"',
  2864. ].join('\n'),
  2865. bindings: [],
  2866. })
  2867. expect(result.error).toBeUndefined()
  2868. expect(result.value).toBe('spawned')
  2869. // The trap really installed before the leader returned, so this is the
  2870. // SIGTERM-ignoring descendant, not one that would have died to the default.
  2871. expect(existsSync(readyMarker)).toBe(true)
  2872. // The grace-window SIGKILL (graceMs 300 + reap margin) empties the group. Once
  2873. // it has, the descendant stops bumping the heartbeat. Poll the heartbeat's
  2874. // mtime: two consecutive reads far enough apart with no change means it is no
  2875. // longer executing — true whether it was reaped or lingers as a zombie, so
  2876. // the assertion holds in a container whose init does not wait() orphans. The
  2877. // window (well under the 30 s self-timeout) proves the SIGKILL did the work.
  2878. const mtime = (): number => { try { return statSync(heartbeat).mtimeMs } catch { return 0 } }
  2879. const stopDeadline = Date.now() + 8_000
  2880. let last = mtime()
  2881. let still = false
  2882. while (Date.now() < stopDeadline) {
  2883. await new Promise(resolve => setTimeout(resolve, 400))
  2884. const now = mtime()
  2885. if (now === last && now !== 0) { still = true; break }
  2886. last = now
  2887. }
  2888. expect(still).toBe(true)
  2889. }, 20_000)
  2890. it('dispose awaits reaping of a same-group survivor from a completed run', async () => {
  2891. // The quiescence contract also holds for a run that ALREADY resolved: the run
  2892. // stays tracked in `live` until its process group is reaped, so a `dispose()`
  2893. // that races a just-returned run() still awaits the survivor rather than
  2894. // snapshotting an empty `live` and returning while it lives. Here the run
  2895. // completes (leaving a SIGTERM-ignoring same-group descendant), then dispose()
  2896. // is called; the heartbeat must be stale BY THE TIME dispose() resolves —
  2897. // proving teardown waited for the reap, not merely that the reap eventually
  2898. // happened.
  2899. const handoff = await mkdtemp(join(tmpdir(), 'dsh-dispose-quiesce-'))
  2900. const readyMarker = join(handoff, 'ready')
  2901. const heartbeat = join(handoff, 'heartbeat')
  2902. const { runtime, fiber } = await setup({ maxWallMs: 10_000, graceMs: 300 })
  2903. const result = await runtime.run({
  2904. program: [
  2905. 'import subprocess, sys, os, time',
  2906. `marker = ${JSON.stringify(readyMarker)}`,
  2907. `heartbeat = ${JSON.stringify(heartbeat)}`,
  2908. 'code = ("import signal, sys, time\\n"',
  2909. ' "signal.signal(signal.SIGTERM, signal.SIG_IGN)\\n"',
  2910. ' "open(sys.argv[1], \'w\').close()\\n"',
  2911. ' "end = time.time() + 30\\n"',
  2912. ' "while time.time() < end:\\n"',
  2913. ' " open(sys.argv[2], \'w\').close()\\n"',
  2914. ' " time.sleep(0.05)\\n")',
  2915. 'child = subprocess.Popen([sys.executable, "-c", code, marker, heartbeat],',
  2916. ' stdin=subprocess.DEVNULL,',
  2917. ' stdout=subprocess.DEVNULL,',
  2918. ' stderr=subprocess.DEVNULL)',
  2919. 'deadline = time.time() + 5',
  2920. 'while not os.path.exists(marker) and time.time() < deadline:',
  2921. ' time.sleep(0.02)',
  2922. 'return "spawned"',
  2923. ].join('\n'),
  2924. bindings: [],
  2925. })
  2926. expect(result.error).toBeUndefined()
  2927. expect(existsSync(readyMarker)).toBe(true)
  2928. // dispose() must not return until the group is reaped. After it resolves, the
  2929. // heartbeat must already be stale: read its mtime, wait past the heartbeat
  2930. // interval, and confirm it did not advance — the descendant is no longer
  2931. // executing (reaped or zombie), so teardown was genuinely quiescent.
  2932. await fiber.dispose()
  2933. const mtime = (): number => { try { return statSync(heartbeat).mtimeMs } catch { return 0 } }
  2934. const afterDispose = mtime()
  2935. // Pin the assertion to a heartbeat that actually ran: mtime() returns 0 when
  2936. // the file never existed, so without this the `toBe` below would pass
  2937. // vacuously (0 === 0) if the survivor never wrote a heartbeat at all.
  2938. expect(afterDispose).toBeGreaterThan(0)
  2939. await new Promise(resolve => setTimeout(resolve, 500))
  2940. expect(mtime()).toBe(afterDispose)
  2941. }, 20_000)
  2942. it('sends SIGKILL at the poll deadline when the event loop was blocked past both timers', async () => {
  2943. // If the host event loop is blocked (a big synchronous computation) from
  2944. // before the group-reap poll was scheduled until after the deadline, both the
  2945. // poll timer and the grace-window SIGKILL timer are overdue when the loop
  2946. // resumes. Node runs the earlier-scheduled poll first, so the SIGKILL timer
  2947. // may not have fired yet. The deadline arm must then send SIGKILL ITSELF
  2948. // rather than cancel the unfired escalation — otherwise a SIGTERM-ignoring
  2949. // same-group survivor is released for good. A synchronous busy-loop after
  2950. // run() resolves reproduces the block deterministically.
  2951. const handoff = await mkdtemp(join(tmpdir(), 'dsh-deadline-'))
  2952. const readyMarker = join(handoff, 'ready')
  2953. const heartbeat = join(handoff, 'heartbeat')
  2954. const graceMs = 300
  2955. const { runtime } = await setup({ maxWallMs: 10_000, graceMs })
  2956. const result = await runtime.run({
  2957. program: [
  2958. 'import subprocess, sys, os, time',
  2959. `marker = ${JSON.stringify(readyMarker)}`,
  2960. `heartbeat = ${JSON.stringify(heartbeat)}`,
  2961. 'code = ("import signal, sys, time\\n"',
  2962. ' "signal.signal(signal.SIGTERM, signal.SIG_IGN)\\n"',
  2963. ' "open(sys.argv[1], \'w\').close()\\n"',
  2964. ' "end = time.time() + 30\\n"',
  2965. ' "while time.time() < end:\\n"',
  2966. ' " open(sys.argv[2], \'w\').close()\\n"',
  2967. ' " time.sleep(0.05)\\n")',
  2968. 'child = subprocess.Popen([sys.executable, "-c", code, marker, heartbeat],',
  2969. ' stdin=subprocess.DEVNULL,',
  2970. ' stdout=subprocess.DEVNULL,',
  2971. ' stderr=subprocess.DEVNULL)',
  2972. 'deadline = time.time() + 5',
  2973. 'while not os.path.exists(marker) and time.time() < deadline:',
  2974. ' time.sleep(0.02)',
  2975. 'return "spawned"',
  2976. ].join('\n'),
  2977. bindings: [],
  2978. })
  2979. expect(result.error).toBeUndefined()
  2980. expect(existsSync(readyMarker)).toBe(true)
  2981. // Block the event loop synchronously past graceMs + CLOSE_REAP_MARGIN_MS
  2982. // (2000) with margin, so both timers are overdue when the loop resumes.
  2983. const blockUntil = Date.now() + graceMs + 2_000 + 800
  2984. while (Date.now() < blockUntil) { /* busy-wait, no yield */ }
  2985. // Yield: the overdue poll runs (group still non-empty, deadline passed) and
  2986. // must send SIGKILL itself. The survivor then stops bumping the heartbeat.
  2987. const mtime = (): number => { try { return statSync(heartbeat).mtimeMs } catch { return 0 } }
  2988. const stopDeadline = Date.now() + 5_000
  2989. let last = mtime()
  2990. let stopped = false
  2991. while (Date.now() < stopDeadline) {
  2992. await new Promise(resolve => setTimeout(resolve, 400))
  2993. const now = mtime()
  2994. if (now === last && now !== 0) { stopped = true; break }
  2995. last = now
  2996. }
  2997. expect(stopped).toBe(true)
  2998. }, 20_000)
  2999. })
  3000. describe('PythonCodeRuntime — hostile peer', () => {
  3001. it('drops garbage bytes and unknown-shape frames posted directly to fd 3', async () => {
  3002. // The model program can reach fd 3 and write anything. We inject a
  3003. // non-JSON line, a valid JSON but unknown-shape frame, and a broken done
  3004. // frame; the host must not crash, and the real `done` still settles the run.
  3005. const { runtime } = await setup()
  3006. const result = await runtime.run({
  3007. program: [
  3008. 'import os',
  3009. 'os.write(3, b"not-json\\n")',
  3010. 'os.write(3, b\'{"type":"unknown"}\\n\')',
  3011. 'os.write(3, b\'{"type":"done","error":{"message":42}}\\n\')',
  3012. 'return "survived"',
  3013. ].join('\n'),
  3014. bindings: [],
  3015. })
  3016. expect(result.error).toBeUndefined()
  3017. expect(result.value).toBe('survived')
  3018. })
  3019. it('answers a forged call frame for an unknown binding and never crashes', async () => {
  3020. // The unknown-binding reply path, driven through the id the host expects:
  3021. // the program lets its own first call claim id 0 and forges id 1, which the
  3022. // host answers with the `unknown binding` rejection the honest call would
  3023. // have received. A forged id out of sequence is dropped instead — that is
  3024. // the id-bound test below, not this one.
  3025. const { runtime } = await setup({ maxWallMs: 8_000 })
  3026. let seenLegitCall = false
  3027. const result = await runtime.run({
  3028. program: [
  3029. 'import os, json',
  3030. 'x = await tools.echo({"ping": True})',
  3031. 'os.write(3, json.dumps({"type":"call","id":1,"global":"tools","name":"forged","args":{}}).encode() + b"\\n")',
  3032. // The forged frame is answered, but nothing in the child awaits id 1, so
  3033. // the reply is ignored and the run completes on its own value.
  3034. 'return x',
  3035. ].join('\n'),
  3036. bindings: tools({
  3037. echo: async (args) => { seenLegitCall = true; return args as CodeJsonValue },
  3038. }),
  3039. })
  3040. expect(result.error).toBeUndefined()
  3041. expect(result.value).toEqual({ ping: true })
  3042. expect(seenLegitCall).toBe(true)
  3043. }, 15_000)
  3044. it('drops forged call frames whose ids are not the next in sequence, retaining no per-id state', async () => {
  3045. // The host used to remember every answered id in a Set, so a program could
  3046. // write an unbounded run of unique forged ids — each frame far below the
  3047. // 64 MiB cap, so nothing rejected them — and grow host memory for the
  3048. // whole run. Ids are consecutive from 0, so one counter replaces the set.
  3049. //
  3050. // The discriminator is that the forgeries must not be answered. Each names a
  3051. // binding that does exist, so a host answering them would run `echo` once
  3052. // per forgery; the count proves only the legitimate call was dispatched.
  3053. // Ids also run DESCENDING, so a high-water-mark test would drop the honest
  3054. // call that follows rather than the forgeries.
  3055. const { runtime } = await setup()
  3056. let echoCalls = 0
  3057. const result = await runtime.run({
  3058. program: [
  3059. 'import os, json',
  3060. 'for i in range(2000, 0, -1):',
  3061. ' os.write(3, json.dumps({"type":"call","id":i,"global":"tools","name":"echo","args":{"forged":i}}).encode() + b"\\n")',
  3062. 'x = await tools.echo({"ping": True})',
  3063. 'return x',
  3064. ].join('\n'),
  3065. bindings: tools({
  3066. echo: async (args) => { echoCalls += 1; return args as CodeJsonValue },
  3067. }),
  3068. })
  3069. expect(result.error).toBeUndefined()
  3070. expect(result.value).toEqual({ ping: true })
  3071. expect(echoCalls).toBe(1)
  3072. }, 15_000)
  3073. it('keeps answering calls a program makes after one with unserializable arguments', async () => {
  3074. // The child claims an id only once its write succeeds, so a call rejected
  3075. // child-side for non-lossless arguments leaves no gap. Were a gap possible,
  3076. // the host's exact-successor test would drop every later call and the run
  3077. // would hang to the wall ceiling instead of completing.
  3078. const { runtime } = await setup({ maxWallMs: 8_000 })
  3079. const seen: unknown[] = []
  3080. const result = await runtime.run({
  3081. program: [
  3082. 'caught = ""',
  3083. 'try:',
  3084. ' await tools.echo({"bad": float("inf")})',
  3085. 'except RuntimeError as e:',
  3086. ' caught = str(e)',
  3087. 'after = await tools.echo({"ok": True})',
  3088. 'return {"caught": caught, "after": after}',
  3089. ].join('\n'),
  3090. bindings: tools({
  3091. echo: async (args) => { seen.push(args); return args as CodeJsonValue },
  3092. }),
  3093. })
  3094. expect(result.error).toBeUndefined()
  3095. const value = result.value as { caught: string; after: unknown }
  3096. expect(value.caught).toContain('lossless JSON')
  3097. expect(value.after).toEqual({ ok: true })
  3098. // The rejected call never reached the host; the one after it did.
  3099. expect(seen).toEqual([{ ok: true }])
  3100. }, 15_000)
  3101. it('drops a forged frame carrying an integer outside JavaScript safe range', async () => {
  3102. // JSON.parse would silently round 9007199254740993 to ...992 BEFORE any
  3103. // validation, corrupting a dispatched argument or completion. The host
  3104. // scans the raw line and drops such frames as hostile traffic; the honest
  3105. // child cannot produce one (its validator rejects unsafe ints).
  3106. const { runtime } = await setup()
  3107. let dispatched: unknown
  3108. const result = await runtime.run({
  3109. program: [
  3110. 'import os',
  3111. // Forged call frame with an unsafe int argument, then a forged done
  3112. // frame with an unsafe int value — both must be dropped whole.
  3113. 'os.write(3, b\'{"type":"call","id":7,"global":"tools","name":"echo","args":9007199254740993}\\n\')',
  3114. 'os.write(3, b\'{"type":"done","value":9007199254740993}\\n\')',
  3115. 'x = await tools.echo({"ok": True})',
  3116. 'return x',
  3117. ].join('\n'),
  3118. bindings: tools({
  3119. echo: async (args) => { dispatched = args; return args as CodeJsonValue },
  3120. }),
  3121. })
  3122. expect(result.error).toBeUndefined()
  3123. // The forged done did not settle the run; the legit call and completion did.
  3124. expect(result.value).toEqual({ ok: true })
  3125. expect(dispatched).toEqual({ ok: true })
  3126. })
  3127. it('truncates host-side logs once the budget is exhausted and emits the marker', async () => {
  3128. // Set a tiny host-side budget; the Python side has a much larger one, so
  3129. // its LogBuffer will not truncate — the host ledger fires first.
  3130. const { runtime } = await setup({ maxLogBytes: 128 })
  3131. const result = await runtime.run({
  3132. program: [
  3133. 'for _ in range(50):',
  3134. ' print("aaaaaaaaaa")',
  3135. 'return "done"',
  3136. ].join('\n'),
  3137. bindings: [],
  3138. })
  3139. expect(result.error).toBeUndefined()
  3140. const markers = result.logs.filter(line => line.includes('log capture truncated at 128 bytes'))
  3141. expect(markers.length).toBeGreaterThanOrEqual(1)
  3142. })
  3143. it('reports an exception whose message holds an unpaired surrogate instead of stranding to the wall clock', async () => {
  3144. // A strict UTF-8 encode of "\ud800" throws while BUILDING the failure
  3145. // frame; the run would then hang to maxWallMs and misreport as timeout.
  3146. const { runtime } = await setup({ maxWallMs: 8_000 })
  3147. const result = await runtime.run({
  3148. program: String.raw`raise Exception("bad \ud800 surrogate")`,
  3149. bindings: [],
  3150. })
  3151. expect(result.error?.kind).toBe('exception')
  3152. expect(result.error?.message).toContain('bad')
  3153. expect(result.error?.message).toContain('surrogate')
  3154. })
  3155. it('carries a lone-surrogate completion string across the wire as its JSON escape', async () => {
  3156. // UTF-8 has no encoding for a lone surrogate, but JSON does: the ASCII
  3157. // `\ud800` escape, which JSON.parse reads back as the same UTF-16 code
  3158. // unit. `CodeJsonValue`, `snapshotJsonValue`, and the worker backend all
  3159. // accept such a string, so this backend must not narrow the shared seam.
  3160. const { runtime } = await setup()
  3161. const result = await runtime.run({
  3162. program: String.raw`return {"lone": "a\ud800b", "spelled": "😀"}`,
  3163. bindings: [],
  3164. })
  3165. expect(result.error).toBeUndefined()
  3166. // The lone half survives as the code unit itself; a spelled-out high-low
  3167. // PAIR folds into the astral character the host would hold for it.
  3168. expect(result.value).toEqual({ lone: 'a\ud800b', spelled: '\u{1f600}' })
  3169. })
  3170. it('meters a lone surrogate at its six escaped bytes, matching the host', async () => {
  3171. // The child and the host share maxValueBytes, so the child must charge the
  3172. // escape's six ASCII bytes (plus two quotes): eight fits, nine does not.
  3173. const { runtime } = await setup({ maxValueBytes: 8 })
  3174. const ok = await runtime.run({ program: String.raw`return "\ud800"`, bindings: [] })
  3175. expect(ok.error).toBeUndefined()
  3176. expect(ok.value).toBe('\ud800')
  3177. const over = await setup({ maxValueBytes: 7 })
  3178. const result = await over.runtime.run({ program: String.raw`return "\ud800"`, bindings: [] })
  3179. expect(result.error?.kind).toBe('output-limit')
  3180. })
  3181. it('passes a lone-surrogate binding argument through instead of failing the call', async () => {
  3182. // The argument validator shared the same over-narrow rejection; a host
  3183. // binding must receive the code unit the program passed.
  3184. const seen: unknown[] = []
  3185. const { runtime } = await setup()
  3186. const result = await runtime.run({
  3187. program: String.raw`return await tools.echo({"text": "x\udfff"})`,
  3188. bindings: tools({ echo: async (args: unknown) => { seen.push(args); return args as CodeJsonValue } }),
  3189. })
  3190. expect(result.error).toBeUndefined()
  3191. expect(seen).toEqual([{ text: 'x\udfff' }])
  3192. expect(result.value).toEqual({ text: 'x\udfff' })
  3193. })
  3194. it('meters a non-ASCII completion in UTF-8 JSON bytes, matching the host', async () => {
  3195. // json.dumps' default \uXXXX escaping would count "é" as 8 bytes while
  3196. // the host meter counts its UTF-8 JSON form (4); the shared budget must
  3197. // agree, so a 4-byte-fitting value passes a maxValueBytes of 4.
  3198. const { runtime } = await setup({ maxValueBytes: 4 })
  3199. const ok = await runtime.run({ program: 'return "é"', bindings: [] })
  3200. expect(ok.error).toBeUndefined()
  3201. expect(ok.value).toBe('é')
  3202. const over = await runtime.run({ program: 'return "éx"', bindings: [] })
  3203. expect(over.error?.kind).toBe('output-limit')
  3204. })
  3205. it('filters bootstrap frames from exception-group members (TaskGroup)', async () => {
  3206. // Python 3.11+ stores member stacks under TracebackException.exceptions;
  3207. // the <model>-frame filter must recurse into them too.
  3208. const { runtime } = await setup()
  3209. const result = await runtime.run({
  3210. program: [
  3211. 'import asyncio, sys',
  3212. 'if sys.version_info < (3, 11):',
  3213. ' raise ValueError("skip-old <model>")',
  3214. 'async def boom():',
  3215. ' raise ValueError("group-member")',
  3216. 'async with asyncio.TaskGroup() as tg:',
  3217. ' tg.create_task(boom())',
  3218. ].join('\n'),
  3219. bindings: [],
  3220. })
  3221. expect(result.error?.kind).toBe('exception')
  3222. expect(result.error?.message).toContain('<model>')
  3223. expect(result.error?.message).not.toContain('bootstrap.py')
  3224. })
  3225. it('keeps frames intact when a model thread floods logs while a large frame drains', async () => {
  3226. // os.write releases the GIL and a frame beyond PIPE_BUF is not atomic:
  3227. // without the writer lock + full-write loop, the printing thread could
  3228. // interleave bytes mid-frame and the host would drop the malformed JSON,
  3229. // hanging the run to the wall clock (or losing the completion).
  3230. const { runtime } = await setup({ maxValueBytes: 1024 * 1024, maxLogBytes: 4 * 1024 * 1024, maxWallMs: 15_000 })
  3231. const result = await runtime.run({
  3232. program: [
  3233. 'import threading',
  3234. 'stop = False',
  3235. 'def spam():',
  3236. ' while not stop:',
  3237. ' print("spam-line-" + "y" * 100)',
  3238. 't = threading.Thread(target=spam)',
  3239. 't.start()',
  3240. // A ~300 KiB completion — several PIPE_BUF units — while spam runs.
  3241. 'big = "x" * (300 * 1024)',
  3242. 'stop = True',
  3243. 't.join()',
  3244. 'return big',
  3245. ].join('\n'),
  3246. bindings: [],
  3247. })
  3248. expect(result.error).toBeUndefined()
  3249. expect(result.value).toBe('x'.repeat(300 * 1024))
  3250. }, 20_000)
  3251. it('settles cleanly while a daemon thread keeps writing unterminated log text', async () => {
  3252. // WARNING regression: the settlement `flush_out()/flush_err()` on the main
  3253. // coroutine read and clear `_LogStream._pending` and the shared LogBuffer
  3254. // ledger with NO lock, while a model daemon thread's `print`/`write` mutate
  3255. // the same state. Capturing the bound method (`out_stream.flush_line`) only
  3256. // fixes WHICH callable runs, not what it reads mid-flight: the flush could
  3257. // interleave with a concurrent write and join a `_pending` list being
  3258. // mutated under it, corrupting the ledger and costing the `done` frame — the
  3259. // run would then strand to the wall clock instead of completing. The shared
  3260. // re-entrant lock serializes them.
  3261. //
  3262. // A pure data race has no single bad input to reject deterministically, so
  3263. // this maximizes overlap: daemon threads emit UNTERMINATED writes (which
  3264. // pile into `_pending` rather than flushing per line) right up to the moment
  3265. // the body returns and settlement flushes. Repeated so the interleave lands.
  3266. for (let attempt = 0; attempt < 5; attempt++) {
  3267. const { runtime, fiber } = await setup({ maxLogBytes: 4 * 1024 * 1024, maxWallMs: 15_000 })
  3268. const result = await runtime.run({
  3269. program: [
  3270. 'import sys, threading',
  3271. 'stop = False',
  3272. 'def spam():',
  3273. ' while not stop:',
  3274. // No newline: the text accumulates in the stream's `_pending`, which is
  3275. // exactly the state the settlement flush also touches.
  3276. ' sys.stdout.write("tail-fragment-" + "z" * 64)',
  3277. 'workers = [threading.Thread(target=spam, daemon=True) for _ in range(4)]',
  3278. 'for t in workers: t.start()',
  3279. // Let the daemons build up pending writes, then return so settlement
  3280. // flushes while they are still mid-write.
  3281. 'import time; time.sleep(0.05)',
  3282. 'return "settled"',
  3283. ].join('\n'),
  3284. bindings: [],
  3285. })
  3286. expect(result.error).toBeUndefined()
  3287. expect(result.value).toBe('settled')
  3288. await fiber.dispose()
  3289. }
  3290. }, 30_000)
  3291. it('completes a binding called from a worker thread on its own event loop', async () => {
  3292. // A binding reply Future is created on the loop that ran `dispatch`. When the
  3293. // model calls a binding from a worker THREAD via `asyncio.run(tools.x(...))`,
  3294. // that Future belongs to the thread's loop, not the main loop where
  3295. // `_pump_replies` reads the reply. `asyncio.Future` is not thread-safe:
  3296. // completing it from another thread does not wake its own loop, so a direct
  3297. // `set_result` would strand the awaiting thread and the run would degrade to a
  3298. // wall-clock timeout. The pump must schedule completion on the Future's own
  3299. // loop via `call_soon_threadsafe`. The tight maxWallMs makes the pre-fix
  3300. // failure a fast timeout rather than a hang.
  3301. //
  3302. // The main coroutine yields with `await asyncio.sleep` while the worker runs,
  3303. // rather than a synchronous `t.join()`: joining would block the main thread,
  3304. // so the main loop could not run `_pump_replies` and the call would deadlock
  3305. // regardless of the fix — that blocks the pump, not the cross-loop delivery
  3306. // this test pins.
  3307. const { runtime } = await setup({ maxWallMs: 8_000 })
  3308. const seen: unknown[] = []
  3309. const result = await runtime.run({
  3310. program: [
  3311. 'import asyncio, threading',
  3312. 'result = {}',
  3313. 'def worker():',
  3314. // A fresh loop in this thread; the binding Future is created here.
  3315. ' result["value"] = asyncio.run(tools.echo({"from": "thread"}))',
  3316. 't = threading.Thread(target=worker)',
  3317. 't.start()',
  3318. 'while t.is_alive():',
  3319. ' await asyncio.sleep(0.02)',
  3320. 'return result["value"]',
  3321. ].join('\n'),
  3322. bindings: tools({
  3323. echo: async (args) => { seen.push(args); return args as CodeJsonValue },
  3324. }),
  3325. })
  3326. expect(result.error).toBeUndefined()
  3327. expect(result.value).toEqual({ from: 'thread' })
  3328. // The host binding actually ran (the reply round-tripped), not a timeout.
  3329. expect(seen).toEqual([{ from: 'thread' }])
  3330. }, 15_000)
  3331. it('keeps the reply pump alive when a late reply targets a closed thread loop', async () => {
  3332. // A binding called from a worker thread that ABANDONS the call (its
  3333. // `asyncio.run` is cancelled) leaves the pending entry holding that thread's
  3334. // loop, which `asyncio.run` closes on return. When the host later answers
  3335. // that call, `_pump_replies` schedules the completion onto the closed loop —
  3336. // `call_soon_threadsafe` raises `RuntimeError('Event loop is closed')`.
  3337. // Unguarded, that RuntimeError ends the pump task and strands every later
  3338. // reply; the guard drops the moot reply and keeps the pump serving.
  3339. //
  3340. // The ordering is a STRUCTURAL guarantee, not a timing window: the worker
  3341. // closes its loop before the main coroutine signals `closed`; the host
  3342. // answers the abandoned `slow` call (hitting the closed loop) before it
  3343. // answers `release`, because `release`'s handler only resolves `slow` first
  3344. // and then yields a microtask. So the pump provably meets the closed loop on
  3345. // `slow`'s reply before it must deliver `release`'s. Fail-before: the pump
  3346. // dies on `slow`, `release`'s reply is never read, and `await tools.release`
  3347. // hangs to the (small) maxWallMs as a timeout.
  3348. let releaseSlow!: () => void
  3349. const slowGate = new Promise<void>((resolve) => { releaseSlow = resolve })
  3350. const { runtime } = await setup({ maxWallMs: 6_000 })
  3351. const result = await runtime.run({
  3352. program: [
  3353. 'import asyncio, threading',
  3354. 'closed = threading.Event()',
  3355. 'def worker():',
  3356. ' async def body():',
  3357. // Abandon the call: wait_for cancels it, but the pending host-side entry
  3358. // survives (dispatch does not pop on cancellation), holding this loop.
  3359. ' try:',
  3360. ' await asyncio.wait_for(tools.slow({}), timeout=0.1)',
  3361. ' except asyncio.TimeoutError:',
  3362. ' pass',
  3363. ' asyncio.run(body())', // closes the thread's loop on return
  3364. ' closed.set()',
  3365. 't = threading.Thread(target=worker)',
  3366. 't.start()',
  3367. 'while not closed.is_set():',
  3368. ' await asyncio.sleep(0.02)',
  3369. // The loop is closed. Now the host answers slow (dead-loop reply) then
  3370. // release; the pump must survive the first to deliver the second.
  3371. 'after = await tools.release({})',
  3372. 'return after',
  3373. ].join('\n'),
  3374. bindings: tools({
  3375. slow: async () => {
  3376. // Answer only once the worker has closed its loop AND the main
  3377. // coroutine is awaiting release, so this reply reaches the pump against
  3378. // the closed loop.
  3379. await slowGate
  3380. return 'late'
  3381. },
  3382. release: async () => {
  3383. // Let slow's reply be written first, then yield a microtask so the
  3384. // pump processes the dead-loop reply before release's own reply lands.
  3385. releaseSlow()
  3386. await new Promise(resolve => setImmediate(resolve))
  3387. return 'released'
  3388. },
  3389. }),
  3390. })
  3391. expect(result.error).toBeUndefined()
  3392. // The pump survived the closed-loop reply and delivered the later binding.
  3393. expect(result.value).toBe('released')
  3394. }, 15_000)
  3395. it('keeps the reply pump alive when RuntimeError is rebound before the program runs', async () => {
  3396. // `_pump_replies` catches a closed-loop scheduling failure with `except
  3397. // _RuntimeError`. If that name were bound as a pump BODY local, it would be
  3398. // captured at pump-start — but `_run` reaches the model's top-level
  3399. // statements (which run before the pump's first step, since there is no
  3400. // suspension point between `create_task` and `await __dsh_main__`) with the
  3401. // rebind already applied, so `_RuntimeError` would capture the REBOUND class
  3402. // and the closed-loop `RuntimeError` would escape, killing the pump. Binding
  3403. // it as a DEF-TIME default argument captures the original before any model
  3404. // code runs. This rebinds `__main__.RuntimeError` as the very first program
  3405. // statement and drives the closed-loop worker pattern: the pump must survive
  3406. // the dead-loop reply and deliver the later binding.
  3407. let releaseSlow!: () => void
  3408. const slowGate = new Promise<void>((resolve) => { releaseSlow = resolve })
  3409. const { runtime } = await setup({ maxWallMs: 6_000 })
  3410. const result = await runtime.run({
  3411. program: [
  3412. 'import __main__',
  3413. '__main__.RuntimeError = ValueError',
  3414. 'import asyncio, threading',
  3415. 'closed = threading.Event()',
  3416. 'def worker():',
  3417. ' async def body():',
  3418. ' try:',
  3419. ' await asyncio.wait_for(tools.slow({}), timeout=0.1)',
  3420. ' except asyncio.TimeoutError:',
  3421. ' pass',
  3422. ' asyncio.run(body())',
  3423. ' closed.set()',
  3424. 't = threading.Thread(target=worker)',
  3425. 't.start()',
  3426. 'while not closed.is_set():',
  3427. ' await asyncio.sleep(0.02)',
  3428. 'after = await tools.release({})',
  3429. 'return after',
  3430. ].join('\n'),
  3431. bindings: tools({
  3432. slow: async () => { await slowGate; return 'late' },
  3433. release: async () => { releaseSlow(); await new Promise(resolve => setImmediate(resolve)); return 'released' },
  3434. }),
  3435. })
  3436. expect(result.error).toBeUndefined()
  3437. expect(result.value).toBe('released')
  3438. }, 15_000)
  3439. it('keeps a successful completion when _done_with_value is rebound', async () => {
  3440. // `_run` calls `_done_with_value(value, max_value_bytes)` after the program
  3441. // returns. The name is a module global, and this bootstrap IS `__main__`, so
  3442. // `__main__._done_with_value = boom` as a program statement would otherwise
  3443. // be resolved at call time and a legitimate success would be rewritten into
  3444. // an `exception`. `_run` now binds `done_with_value_bound = _done_with_value`
  3445. // before the program runs, so the entry name is immune; the run must still
  3446. // report the success value.
  3447. const { runtime } = await setup({ maxWallMs: 10_000 })
  3448. const result = await runtime.run({
  3449. program: [
  3450. 'import __main__',
  3451. 'def boom(*a, **k):',
  3452. ' raise RuntimeError("hijacked")',
  3453. '__main__._done_with_value = boom',
  3454. 'return 1',
  3455. ].join('\n'),
  3456. bindings: [],
  3457. })
  3458. expect(result.error).toBeUndefined()
  3459. expect(result.value).toBe(1)
  3460. }, 15_000)
  3461. it('round-trips an exactly representable large integer through a binding echo', async () => {
  3462. // The reply serializer must print BigInt digits for a beyond-safe
  3463. // integral double: String(2**60) emits a rounded form, and the child
  3464. // would receive a DIFFERENT integer than the binding resolved.
  3465. const { runtime } = await setup()
  3466. const result = await runtime.run({
  3467. program: [
  3468. 'v = await tools.echo(2**60)',
  3469. 'return v == 2**60',
  3470. ].join('\n'),
  3471. bindings: tools({ echo: async args => args as never }),
  3472. })
  3473. expect(result.error).toBeUndefined()
  3474. expect(result.value).toBe(true)
  3475. })
  3476. it('preserves an exactly representable large integer and rejects a rounding one', async () => {
  3477. // The canonical boundary accepts every JS-double-exact value: 2**53 and
  3478. // 2**60 round-trip exactly and must cross (matching the worker backend);
  3479. // 2**53+1 rounds and must fail as invalid-output.
  3480. const { runtime } = await setup()
  3481. const exact = await runtime.run({ program: 'return [2**53, 2**60]', bindings: [] })
  3482. expect(exact.error).toBeUndefined()
  3483. expect(exact.value).toEqual([2 ** 53, 2 ** 60])
  3484. const lossy = await runtime.run({ program: 'return 2**53 + 1', bindings: [] })
  3485. expect(lossy.error?.kind).toBe('invalid-output')
  3486. expect(lossy.error?.message).toContain('not exactly representable')
  3487. })
  3488. it('rejects a container subclass whose overridden methods hide its contents', async () => {
  3489. // A dict subclass returning [] from items() passes an isinstance check but
  3490. // serializes as {}, so the host would receive a value the program did not
  3491. // compute. Exact-type matching fails it as invalid-output instead. The
  3492. // worker backend rejects the prototype-equivalent shapes the same way.
  3493. const { runtime } = await setup()
  3494. const hidden = await runtime.run({
  3495. program: [
  3496. 'class Sneaky(dict):',
  3497. ' def items(self): return []',
  3498. ' def keys(self): return []',
  3499. ' def __iter__(self): return iter([])',
  3500. ' def __len__(self): return 0',
  3501. 'return Sneaky(secret="kept")',
  3502. ].join('\n'),
  3503. bindings: [],
  3504. })
  3505. expect(hidden.error?.kind).toBe('invalid-output')
  3506. expect(hidden.error?.message).toContain('unsupported type (Sneaky)')
  3507. // A list subclass is refused on the same rule.
  3508. const listish = await runtime.run({
  3509. program: ['class L(list):', ' def __iter__(self): return iter([])', 'return L([1, 2, 3])'].join('\n'),
  3510. bindings: [],
  3511. })
  3512. expect(listish.error?.kind).toBe('invalid-output')
  3513. expect(listish.error?.message).toContain('unsupported type (L)')
  3514. // The exact built-in containers still cross unchanged.
  3515. const plain = await runtime.run({ program: 'return {"secret": [1, 2]}', bindings: [] })
  3516. expect(plain.error).toBeUndefined()
  3517. expect(plain.value).toEqual({ secret: [1, 2] })
  3518. })
  3519. it('rejects a scalar subclass whose overrides disagree with what gets serialized', async () => {
  3520. // The validators checked scalars with isinstance, so a subclass passed
  3521. // every check by its real value while the ENCODER read an override — the
  3522. // host then received a value the walk never approved. Each case below is a
  3523. // distinct override reaching a distinct reader.
  3524. const { runtime } = await setup()
  3525. // _dump_float spells a float from repr(value), so an overridden __repr__
  3526. // decides the digits: F(2.5) serialized as 1.
  3527. const floated = await runtime.run({
  3528. program: [
  3529. 'class F(float):',
  3530. ' def __repr__(self): return "1.0"',
  3531. 'return F(2.5)',
  3532. ].join('\n'),
  3533. bindings: [],
  3534. })
  3535. expect(floated.error?.kind).toBe('invalid-output')
  3536. expect(floated.error?.message).toContain('unsupported type (F)')
  3537. // The JS-safe-range bound is two comparisons, so overriding them admits an
  3538. // int whose true digits (json.dumps reads the C-level value) the host's
  3539. // JSON.parse rounds: 9007199254740993 arrives as ...992.
  3540. const inted = await runtime.run({
  3541. program: [
  3542. 'class I(int):',
  3543. ' def __gt__(self, other): return False',
  3544. ' def __lt__(self, other): return False',
  3545. 'return I(2 ** 53 + 1)',
  3546. ].join('\n'),
  3547. bindings: [],
  3548. })
  3549. expect(inted.error?.kind).toBe('invalid-output')
  3550. expect(inted.error?.message).toContain('unsupported type (I)')
  3551. // The pre-encode size bound reads len(), so overriding it to 0 admits a
  3552. // string of any length past maxValueBytes.
  3553. const stringed = await runtime.run({
  3554. program: [
  3555. 'class S(str):',
  3556. ' def __len__(self): return 0',
  3557. 'return S("Q" * 100000)',
  3558. ].join('\n'),
  3559. bindings: [],
  3560. })
  3561. expect(stringed.error?.kind).toBe('invalid-output')
  3562. expect(stringed.error?.message).toContain('unsupported type (S)')
  3563. // A str-subclass dict KEY reaches the same len() bound.
  3564. const keyed = await runtime.run({
  3565. program: [
  3566. 'class S(str):',
  3567. ' def __len__(self): return 0',
  3568. 'return {S("Q" * 100000): 1}',
  3569. ].join('\n'),
  3570. bindings: [],
  3571. })
  3572. expect(keyed.error?.kind).toBe('invalid-output')
  3573. expect(keyed.error?.message).toContain('non-string dict key (S)')
  3574. // bool is an int subclass that IS lossless JSON, and the exact scalars all
  3575. // still cross unchanged.
  3576. const plain = await runtime.run({
  3577. program: 'return {"t": True, "f": False, "n": None, "i": 7, "d": 2.5, "s": "ok"}',
  3578. bindings: [],
  3579. })
  3580. expect(plain.error).toBeUndefined()
  3581. expect(plain.value).toEqual({ t: true, f: false, n: null, i: 7, d: 2.5, s: 'ok' })
  3582. })
  3583. it('rejects a scalar subclass passed as a binding argument', async () => {
  3584. // The uncapped binding-argument validator shares the exact-type rule, so
  3585. // the call fails through its rejection contract instead of dispatching a
  3586. // float whose digits come from an override.
  3587. const { runtime } = await setup()
  3588. const seen: CodeJsonValue[] = []
  3589. const result = await runtime.run({
  3590. program: [
  3591. 'class F(float):',
  3592. ' def __repr__(self): return "1.0"',
  3593. 'try:',
  3594. ' await tools.echo({"v": F(2.5)})',
  3595. 'except Exception as exc:',
  3596. ' return str(exc)',
  3597. ].join('\n'),
  3598. bindings: tools({ echo: async (args) => {
  3599. seen.push(args as CodeJsonValue)
  3600. return null
  3601. } }),
  3602. })
  3603. expect(result.error).toBeUndefined()
  3604. expect(result.value).toContain('unsupported type (F)')
  3605. expect(seen).toEqual([])
  3606. })
  3607. it('rejects a container subclass passed as a binding argument', async () => {
  3608. // Binding arguments run the uncapped validator, which must apply the same
  3609. // exact-type rule: the call fails descriptively instead of dispatching a
  3610. // value whose serialization disagrees with what was validated.
  3611. const { runtime } = await setup()
  3612. const seen: CodeJsonValue[] = []
  3613. const result = await runtime.run({
  3614. program: [
  3615. 'class Sneaky(dict):',
  3616. ' def items(self): return []',
  3617. 'try:',
  3618. ' await tools.echo(Sneaky(secret="kept"))',
  3619. 'except Exception as exc:',
  3620. ' return str(exc)',
  3621. ].join('\n'),
  3622. bindings: tools({ echo: async (args) => {
  3623. seen.push(args as CodeJsonValue)
  3624. return null
  3625. } }),
  3626. })
  3627. expect(result.error).toBeUndefined()
  3628. expect(result.value).toContain('unsupported type (Sneaky)')
  3629. expect(seen).toEqual([])
  3630. })
  3631. it('fails an oversized completion as output-limit without materializing its encoding', async () => {
  3632. // A 100 MiB string under maxValueBytes: 1024 must fail as output-limit.
  3633. // The address-space cap leaves room for the program to BUILD the string
  3634. // (one copy + interpreter) but not for the old full pre-check encode,
  3635. // which materialized chunk fragments plus the joined copy (~2 more
  3636. // copies) and died on RLIMIT_AS as MemoryError/worker-exit.
  3637. const { runtime } = await setup({ maxValueBytes: 1024, addressSpaceMb: 384, maxWallMs: 15_000 })
  3638. const result = await runtime.run({
  3639. program: 'return "x" * (100 * 1024 * 1024)',
  3640. bindings: [],
  3641. })
  3642. expect(result.error?.kind).toBe('output-limit')
  3643. expect(result.error?.message).toContain('exceeded 1024 bytes')
  3644. }, 20_000)
  3645. it('rejects a control-heavy oversized completion on its length, not its escaped copy', async () => {
  3646. // Every "\x00" escapes to the six bytes "\u0000", so the escaped form of a
  3647. // 40 MB string is ~240 MB. The walk must refuse on the cheap
  3648. // `len(current) + 2` lower bound; the 384 MiB address space holds the raw
  3649. // string but not its escaped expansion, so a pre-escape check dies on
  3650. // RLIMIT_AS instead of returning output-limit.
  3651. const { runtime } = await setup({ maxValueBytes: 1024, addressSpaceMb: 384, maxWallMs: 15_000 })
  3652. const result = await runtime.run({
  3653. program: 'return "\\x00" * (40 * 1024 * 1024)',
  3654. bindings: [],
  3655. })
  3656. expect(result.error?.kind).toBe('output-limit')
  3657. expect(result.error?.message).toContain('exceeded 1024 bytes')
  3658. }, 20_000)
  3659. it('truncates a single print far above maxLogBytes instead of dying on the encode', async () => {
  3660. // LogBuffer must reject via the cheap char-count lower bound BEFORE
  3661. // UTF-8-encoding the whole string: the full encode of a ~100 MB line
  3662. // would double the allocation and can breach RLIMIT_AS. 256 MiB
  3663. // address space comfortably holds one copy of the 100 MB string but
  3664. // not the pre-fix double allocation plus interpreter overhead spikes.
  3665. const { runtime } = await setup({ maxLogBytes: 1024, addressSpaceMb: 256, maxWallMs: 15_000 })
  3666. const result = await runtime.run({
  3667. program: [
  3668. 'print("x" * (100 * 1024 * 1024))',
  3669. 'return "done"',
  3670. ].join('\n'),
  3671. bindings: [],
  3672. })
  3673. expect(result.error).toBeUndefined()
  3674. expect(result.value).toBe('done')
  3675. expect(result.logs.some(line => line.includes('log capture truncated'))).toBe(true)
  3676. }, 20_000)
  3677. it('stops host capture at the child ledger truncation, keeping exactly one marker', async () => {
  3678. // The two ledgers exhaust independently. One child entry larger than
  3679. // `maxLogBytes` sends ONLY the marker, so the host budget is still nearly
  3680. // untouched — and the marker used to arrive as an ordinary `log` frame the
  3681. // host could not tell from program output. Text written afterwards was
  3682. // therefore retained AFTER the marker, contradicting the stop-after-
  3683. // truncation contract, and a later host-side exhaustion could append a
  3684. // second marker. The frame now carries `truncated: true`.
  3685. //
  3686. // `os.write(1, ...)` bypasses the child's own stream, so those bytes reach
  3687. // the host as stray stdout and take the host ledger path rather than the
  3688. // child's — which is exactly the route that leaked past the marker.
  3689. const { runtime } = await setup({ maxLogBytes: 64, maxWallMs: 10_000 })
  3690. const result = await runtime.run({
  3691. program: [
  3692. 'import os',
  3693. 'print("y" * 70000)',
  3694. 'os.write(1, b"AFTER")',
  3695. 'return "done"',
  3696. ].join('\n'),
  3697. bindings: [],
  3698. })
  3699. expect(result.error).toBeUndefined()
  3700. expect(result.value).toBe('done')
  3701. const markers = result.logs.filter(line => line.includes('log capture truncated'))
  3702. expect(markers).toHaveLength(1)
  3703. // The marker is the LAST entry: nothing was retained after truncation.
  3704. expect(result.logs.at(-1)).toBe(markers[0])
  3705. expect(result.logs.join('\n')).not.toContain('AFTER')
  3706. }, 20_000)
  3707. it('keeps one marker when a program forges repeated truncation frames', async () => {
  3708. // `truncated` is attacker-reachable: the program owns fd 3 and can write the
  3709. // flag itself, so the field is a hostile input rather than a trusted signal.
  3710. // Repeats must collapse to the single marker the contract promises, and only
  3711. // the literal `true` counts — a forged `"yes"` is rebuilt away by
  3712. // validateChildFrame, so that frame stays ordinary text.
  3713. const { runtime } = await setup({ maxLogBytes: 4096, maxWallMs: 10_000 })
  3714. const result = await runtime.run({
  3715. program: [
  3716. 'import os, json',
  3717. 'os.write(3, json.dumps({"type":"log","text":"first","truncated":"yes"}).encode() + b"\\n")',
  3718. 'os.write(3, json.dumps({"type":"log","text":"MARK-A","truncated":True}).encode() + b"\\n")',
  3719. 'os.write(3, json.dumps({"type":"log","text":"MARK-B","truncated":True}).encode() + b"\\n")',
  3720. 'return "done"',
  3721. ].join('\n'),
  3722. bindings: [],
  3723. })
  3724. expect(result.error).toBeUndefined()
  3725. expect(result.value).toBe('done')
  3726. // The non-boolean flag did not truncate, so its text was captured normally.
  3727. expect(result.logs).toContain('first')
  3728. // The first genuine flag stopped capture and emitted the HOST's own marker;
  3729. // the frame's own text is discarded, so neither payload appears.
  3730. expect(result.logs).not.toContain('MARK-A')
  3731. expect(result.logs).not.toContain('MARK-B')
  3732. expect(result.logs.at(-1)).toBe(logTruncationMarker(4096))
  3733. expect(result.logs.filter(line => line.includes('log capture truncated'))).toHaveLength(1)
  3734. }, 20_000)
  3735. it('discards the text of a forged truncation frame instead of retaining it', async () => {
  3736. // The marker branch bypasses `admit`, so retaining the frame's own text put
  3737. // attacker-controlled bytes into `logs` with no cap at all: measured, a 1 MiB
  3738. // forged text was retained whole under `maxLogBytes: 64`, and the only bound
  3739. // left was the 64 MiB frame parse cap. The host emits its own marker instead,
  3740. // so the retained size is fixed regardless of what the program sent.
  3741. const forgedBytes = 1024 * 1024
  3742. const { runtime } = await setup({ maxLogBytes: 64, maxWallMs: 20_000 })
  3743. const result = await runtime.run({
  3744. program: [
  3745. 'import os, json',
  3746. `big = "A" * ${forgedBytes}`,
  3747. 'os.write(3, json.dumps({"type":"log","truncated":True,"text":big}).encode() + b"\\n")',
  3748. 'return "done"',
  3749. ].join('\n'),
  3750. bindings: [],
  3751. })
  3752. expect(result.error).toBeUndefined()
  3753. expect(result.value).toBe('done')
  3754. // Only the host marker is kept, so the total stays orders of magnitude below
  3755. // what the forgery carried — and below the cap it was trying to escape.
  3756. expect(result.logs).toEqual([logTruncationMarker(64)])
  3757. expect(result.logs.join('').length).toBeLessThan(forgedBytes / 1000)
  3758. }, 30_000)
  3759. it('coalesces unframed fd-3 fragments without recopying the sealed prefix', async () => {
  3760. // The frame ceiling meters payload BYTES, but each retained chunk is its own
  3761. // Buffer with object and backing-store overhead the byte count cannot see:
  3762. // 5000 single-byte newline-free writes produced 5000 chunks holding 5031
  3763. // bytes, so a program pacing such writes could accumulate millions of objects
  3764. // inside the wall budget and exhaust the host heap far below 256 MiB.
  3765. //
  3766. // The observable behavior is that the run still completes normally: the
  3767. // fragments are coalesced rather than rejected, since a slow trickle of bytes
  3768. // is not itself a protocol violation.
  3769. //
  3770. // `Buffer.concat` is wrapped for the duration so the cumulative copy volume
  3771. // is measured rather than inferred: that total is what separates sealing into
  3772. // blocks from re-merging the whole buffer, and both shapes pass every
  3773. // behavioral assertion below.
  3774. //
  3775. // The trickle is terminated with its own newline before the real frame is
  3776. // written. Without that, those 5000 bytes prefix the frame on the SAME line,
  3777. // which then parses as junk and is dropped — correct framing behavior, but it
  3778. // would leave this test asserting the wrong thing.
  3779. // Bound at capture: `Buffer.concat` is a static method, and taking a bare
  3780. // reference to one trips no-unbound-method.
  3781. const realConcat = Buffer.concat.bind(Buffer)
  3782. let copied = 0
  3783. Buffer.concat = (list: readonly Uint8Array[], total?: number): Buffer<ArrayBuffer> => {
  3784. for (const part of list) copied += part.length
  3785. return realConcat(list, total)
  3786. }
  3787. const program = [
  3788. 'import os',
  3789. // Newline-free single-byte writes, spaced so each lands as its own read.
  3790. // 60000 rather than 5000: the trickle has to cross the seal threshold
  3791. // enough times for the two shapes to separate. At 5000 writes there are
  3792. // only four seals, so even the quadratic form copies well under a
  3793. // megabyte and the budget below could not tell them apart.
  3794. 'for _ in range(60000):',
  3795. ' os.write(3, b"x")',
  3796. ' os.sched_yield()',
  3797. 'os.write(3, b"\\n")',
  3798. // A real frame after the trickle proves framing still works on the
  3799. // coalesced residual.
  3800. 'print("after-trickle")',
  3801. 'return "done"',
  3802. ].join('\n')
  3803. let result: CodeRunResult
  3804. try {
  3805. const { runtime } = await setup({ maxWallMs: 30_000 })
  3806. result = await runtime.run({ program, bindings: [] })
  3807. } finally {
  3808. Buffer.concat = realConcat
  3809. }
  3810. expect(result.error).toBeUndefined()
  3811. expect(result.value).toBe('done')
  3812. expect(result.logs).toContain('after-trickle')
  3813. // Sealing appends a finished block rather than re-merging everything held, so
  3814. // each byte is copied once. Re-concatenating the whole buffer at every
  3815. // threshold made the cumulative copy volume quadratic — 10 MiB trickled a
  3816. // byte at a time copies 53.7 GB that way. A per-byte-copied budget is the
  3817. // discriminator, and it is measured rather than reasoned about: this shape
  3818. // copies about 119 KB for 60000 trickled bytes, the re-merging shape about
  3819. // 540 KB. 256 KiB sits between them with margin on both sides — most writes
  3820. // are coalesced by the pipe before they reach us, so the observed ratio is
  3821. // smaller than the asymptotic one, and the threshold has to sit where a real
  3822. // measurement lands rather than where the asymptote suggests.
  3823. expect(copied).toBeLessThan(256 * 1024)
  3824. }, 40_000)
  3825. it('seals trickled stray fragments into blocks without recopying the sealed prefix', async () => {
  3826. // The stray-capture buffer has the same object-overhead exposure as the fd-3
  3827. // reader above: each newline-free `data` chunk is its own Buffer, so a
  3828. // program pacing single-byte `os.write(1, ...)` accumulates one object per
  3829. // write, which the serialized-cost counter cannot see. Past MAX_PENDING_CHUNKS
  3830. // the fragments seal into a finished block; re-merging the whole residual at
  3831. // each threshold instead would copy the sealed prefix again and again, making
  3832. // the cumulative copy volume quadratic. `Buffer.concat` is wrapped to measure
  3833. // that volume — both shapes admit the same final log entry, so the copy total
  3834. // is the discriminator. maxLogBytes is raised so the trickle is retained,
  3835. // not truncated, which is what forces the fragments to accumulate and seal.
  3836. const realConcat = Buffer.concat.bind(Buffer)
  3837. let copied = 0
  3838. Buffer.concat = (list: readonly Uint8Array[], total?: number): Buffer<ArrayBuffer> => {
  3839. for (const part of list) copied += part.length
  3840. return realConcat(list, total)
  3841. }
  3842. let result: CodeRunResult
  3843. try {
  3844. const { runtime } = await setup({ maxLogBytes: 200_000, maxWallMs: 30_000 })
  3845. result = await runtime.run({
  3846. program: [
  3847. 'import os',
  3848. 'for _ in range(60000):',
  3849. ' os.write(1, b"x")',
  3850. ' os.sched_yield()',
  3851. 'os.write(1, b"\\n")',
  3852. 'return "done"',
  3853. ].join('\n'),
  3854. bindings: [],
  3855. })
  3856. } finally {
  3857. Buffer.concat = realConcat
  3858. }
  3859. expect(result.error).toBeUndefined()
  3860. expect(result.value).toBe('done')
  3861. // The trickle coalesces into one log line (no interior newlines). Its exact
  3862. // length depends on pipe coalescing, but it is one entry and non-empty.
  3863. expect(result.logs.length).toBe(1)
  3864. expect((result.logs[0] as string).length).toBeGreaterThan(0)
  3865. // Sealing appends a finished block rather than re-merging everything held, so
  3866. // each byte is copied a bounded number of times. Re-merging the whole
  3867. // residual at every seal threshold instead makes the cumulative copy volume
  3868. // quadratic. Measured like the fd-3 sibling above rather than reasoned about:
  3869. // this sealed shape copies about 120 KB for 60000 trickled bytes, the
  3870. // re-merging shape about 538 KB (the stray path adds one whole-residual
  3871. // concat at the terminating newline over the fd-3 sibling's 119/540, landing
  3872. // at the same order). 256 KiB sits between them with margin on both sides, so
  3873. // reverting the seal to a re-merge turns this assertion red.
  3874. expect(copied).toBeLessThan(256 * 1024)
  3875. }, 40_000)
  3876. it('caps a huge exception diagnostic child-side before it crosses the wire', async () => {
  3877. // A program can raise with a multi-megabyte message; the child must cap
  3878. // it at maxValueBytes before formatting/sending, not ship the whole
  3879. // payload for the host to truncate after parsing.
  3880. const { runtime } = await setup({ maxValueBytes: 1024 })
  3881. const result = await runtime.run({
  3882. program: 'raise ValueError("boom-" + "x" * (8 * 1024 * 1024))',
  3883. bindings: [],
  3884. })
  3885. expect(result.error?.kind).toBe('exception')
  3886. expect(result.error?.message).toContain('boom-')
  3887. expect(result.error?.message.endsWith('… [truncated]')).toBe(true)
  3888. expect(Buffer.byteLength(result.error?.message ?? '', 'utf8')).toBeLessThan(2048)
  3889. })
  3890. it('caps a control-heavy exception diagnostic by its serialized cost, not raw bytes', async () => {
  3891. // The diagnostic crosses fd 3 inside a JSON frame where a control character
  3892. // escapes sixfold (a NUL is one raw byte, six as `\u0000`). Capping by raw
  3893. // UTF-8 length would let a NUL-heavy message near maxValueBytes serialize to
  3894. // ~6x that and breach the frame ceiling — the silent worker-exit inversion
  3895. // the load-time cap check exists to prevent. The child meters the diagnostic
  3896. // by its serialized cost, so a NUL flood is truncated to fit the frame and
  3897. // the run still reports the exception rather than a worker-exit.
  3898. const { runtime } = await setup({ maxValueBytes: 4096 })
  3899. const result = await runtime.run({
  3900. // 512 KiB of NUL: ~3 MiB once escaped, far past the 4 KiB cap.
  3901. program: 'raise ValueError("\\x00" * (512 * 1024))',
  3902. bindings: [],
  3903. })
  3904. expect(result.error?.kind).toBe('exception')
  3905. expect(result.error?.message.endsWith('… [truncated]')).toBe(true)
  3906. // The SERIALIZED form (what the frame carried) fits the budget, so its raw
  3907. // length is well under it too — a raw-byte cap would have admitted ~4 KiB of
  3908. // NULs that serialize to ~24 KiB.
  3909. const serialized = JSON.stringify(result.error?.message ?? '')
  3910. expect(Buffer.byteLength(serialized, 'utf8')).toBeLessThanOrEqual(4096 + 8)
  3911. })
  3912. it('bounds a newline-free partial-line flood while the program is still running', async () => {
  3913. // print("x", end="") never completes a line, so nothing reaches the
  3914. // Python LogBuffer until settlement — the buffered tail must still hit
  3915. // the budget mid-run instead of growing without bound to RLIMIT/timeout.
  3916. const { runtime } = await setup({ maxLogBytes: 1024, maxWallMs: 15_000 })
  3917. const result = await runtime.run({
  3918. program: [
  3919. 'for _ in range(100000):',
  3920. ' print("xxxxxxxxxx", end="")',
  3921. 'return "done"',
  3922. ].join('\n'),
  3923. bindings: [],
  3924. })
  3925. expect(result.error).toBeUndefined()
  3926. expect(result.value).toBe('done')
  3927. expect(result.logs.some(line => line.includes('log capture truncated'))).toBe(true)
  3928. // The retained text is bounded by the budget, not the 1 MB the program wrote.
  3929. expect(result.logs.join('\n').length).toBeLessThan(4096)
  3930. }, 20_000)
  3931. it('discards empty writes instead of buffering one list slot each', async () => {
  3932. // An empty chunk adds no character, so the mid-run budget check (which
  3933. // compares buffered CHARS against the remaining ledger) can never fire on
  3934. // it. Buffering empty strings therefore grew `_pending` without bound —
  3935. // millions of slots per CPU second — until RLIMIT_AS turned an append into
  3936. // a MemoryError, long after the log ledger was exhausted. Two million
  3937. // empty writes must instead settle normally and contribute NO log entry,
  3938. // proving the chunk was dropped rather than joined at flush_line.
  3939. const { runtime } = await setup({ maxLogBytes: 256, addressSpaceMb: 256, maxWallMs: 20_000 })
  3940. const result = await runtime.run({
  3941. program: [
  3942. 'import sys',
  3943. 'for _ in range(2000000):',
  3944. ' sys.stdout.write("")',
  3945. 'return "done"',
  3946. ].join('\n'),
  3947. bindings: [],
  3948. })
  3949. expect(result.error).toBeUndefined()
  3950. expect(result.value).toBe('done')
  3951. expect(result.logs).toEqual([])
  3952. }, 30_000)
  3953. it('stops scanning a single-write newline flood once the log ledger truncates', async () => {
  3954. // One write carrying half a million newlines: the offset scan must exit the
  3955. // instant LogBuffer truncates rather than re-slicing and pushing every
  3956. // remaining line. If it kept scanning it would exhaust the CPU/wall budget;
  3957. // the run instead settles quickly with exactly one truncation marker.
  3958. const { runtime } = await setup({ maxLogBytes: 256, maxWallMs: 10_000 })
  3959. const start = Date.now()
  3960. const result = await runtime.run({
  3961. program: ['print("x\\n" * 500000, end="")', 'return "done"'].join('\n'),
  3962. bindings: [],
  3963. })
  3964. expect(result.error).toBeUndefined()
  3965. expect(result.value).toBe('done')
  3966. expect(result.logs.filter(line => line.includes('log capture truncated'))).toHaveLength(1)
  3967. expect(Date.now() - start).toBeLessThan(8_000)
  3968. }, 15_000)
  3969. it('bounds an oversized newline-terminated write before joining and slicing it', async () => {
  3970. // The newline branch slices the first line out of the write before
  3971. // `LogBuffer.push` can apply its cheap budget rejection, so a single
  3972. // over-budget write cost a full extra copy of itself in peak address space —
  3973. // the amplification that bound exists to avoid, applied one layer too late.
  3974. // Measured under a 400 MiB addressSpaceMb with the slice unbounded: writes
  3975. // of 200 MiB and up died on MemoryError inside `sys.stdout.write`, reported
  3976. // as the PROGRAM's own exception rather than the promised truncation marker.
  3977. // `"\\n".rjust(n, "A")` is a single allocation ending in the newline, so the
  3978. // payload itself fits and the only remaining allocation is the stream's own
  3979. // slice; 340 MiB of a 400 MiB cap cannot survive one more copy of it.
  3980. const { runtime } = await setup({ maxLogBytes: 256, addressSpaceMb: 400, maxWallMs: 30_000 })
  3981. const result = await runtime.run({
  3982. program: [
  3983. 'import sys',
  3984. 'payload = "\\n".rjust(340 * 1024 * 1024, "A")',
  3985. 'sys.stdout.write(payload)',
  3986. 'return "done"',
  3987. ].join('\n'),
  3988. bindings: [],
  3989. })
  3990. expect(result.error).toBeUndefined()
  3991. expect(result.value).toBe('done')
  3992. expect(result.logs).toEqual([logTruncationMarker(256)])
  3993. }, 40_000)
  3994. it('bounds a newline-free write against the already-buffered chunks before joining them', async () => {
  3995. // The newline-free arm buffers the write and then compared the buffered
  3996. // CHARACTER COUNT against the ledger — correct — but paid for the comparison
  3997. // with `"".join(self._pending)`, a second full copy of everything held. One
  3998. // buffered character is enough to make that join a copy of the whole
  3999. // following write. Measured under a 400 MiB addressSpaceMb with a 340 MiB
  4000. // second write: the join raised MemoryError inside `sys.stdout.write`, and
  4001. // because the oversized chunks stayed in `_pending` the settlement
  4002. // `flush_line` raised it again — that throw sits after the `except
  4003. // BaseException` block, so it costs the `done` frame and the run came back
  4004. // `timeout: wall-clock ceiling reached (30000ms)` with no logs at all. The
  4005. // bound must be applied BEFORE the join and the chunks dropped on that path,
  4006. // so the run settles with the truncation marker it promises.
  4007. const { runtime } = await setup({ maxLogBytes: 256, addressSpaceMb: 400, maxWallMs: 30_000 })
  4008. const result = await runtime.run({
  4009. program: [
  4010. 'import sys',
  4011. // One unterminated character first, so `_pending` is non-empty and the
  4012. // large write cannot take the "buffered text IS the write" shortcut.
  4013. 'sys.stdout.write("x")',
  4014. 'payload = "A" * (340 * 1024 * 1024)',
  4015. 'sys.stdout.write(payload)',
  4016. 'return "done"',
  4017. ].join('\n'),
  4018. bindings: [],
  4019. })
  4020. expect(result.error).toBeUndefined()
  4021. expect(result.value).toBe('done')
  4022. expect(result.logs).toEqual([logTruncationMarker(256)])
  4023. }, 40_000)
  4024. it('bounds a newline-terminated write against the already-buffered chunks before joining them', async () => {
  4025. // Same allocation, reached through the newline arm: with chunks pending, the
  4026. // whole write used to be appended and joined so the offset scan could run
  4027. // over one string. Only the FIRST line needs those chunks, so a pending
  4028. // chunk plus a 340 MiB newline-terminated write under a 400 MiB
  4029. // addressSpaceMb died on MemoryError in the join before the per-line bound
  4030. // could reject anything, and the retained chunks made the settlement flush
  4031. // die the same way: measured, `timeout: wall-clock ceiling reached
  4032. // (30000ms)`. The reconstructed first line is now checked against the ledger
  4033. // and only a budget-sized prefix of it is copied; the rest of the write is
  4034. // scanned in place.
  4035. const { runtime } = await setup({ maxLogBytes: 256, addressSpaceMb: 400, maxWallMs: 30_000 })
  4036. const result = await runtime.run({
  4037. program: [
  4038. 'import sys',
  4039. 'sys.stdout.write("x")',
  4040. 'payload = "\\n".rjust(340 * 1024 * 1024, "A")',
  4041. 'sys.stdout.write(payload)',
  4042. 'return "done"',
  4043. ].join('\n'),
  4044. bindings: [],
  4045. })
  4046. expect(result.error).toBeUndefined()
  4047. expect(result.value).toBe('done')
  4048. expect(result.logs).toEqual([logTruncationMarker(256)])
  4049. }, 40_000)
  4050. it('emits pending text on an explicit flush, before the run can be killed', async () => {
  4051. // `_LogStream` inherits TextIOBase's no-op `flush()`, so an explicit
  4052. // `print(..., flush=True)` or `sys.stdout.flush()` left the text in
  4053. // `_pending` with nothing to drain it but `flush_line` after settlement — a
  4054. // call a hanging or killed run never reaches. Measured: printing
  4055. // "before hang" with flush=True ahead of an infinite loop returned
  4056. // `logs: []`, losing the one diagnostic the program deliberately committed.
  4057. const { runtime } = await setup({ maxWallMs: 4_000 })
  4058. const result = await runtime.run({
  4059. program: [
  4060. 'import sys',
  4061. 'print("before hang", end="", flush=True)',
  4062. 'while True: pass',
  4063. ].join('\n'),
  4064. bindings: [],
  4065. })
  4066. expect(result.error?.kind).toBe('timeout')
  4067. expect(result.logs).toContain('before hang')
  4068. }, 15_000)
  4069. it('marks a dropped tail when the ledger lands on exactly zero remaining', async () => {
  4070. // One 100-character line costs 103 serialized bytes (quotes + separator),
  4071. // consuming a 104-byte budget minus the 1-byte array-envelope reservation
  4072. // (104 - 1 = 103) EXACTLY. Landing on zero never trips
  4073. // LogBuffer's "cost > remaining" branch, so `_truncated` stays unset and the
  4074. // stream's own `remaining > 0` guard silently discarded the unscanned tail —
  4075. // the run reported a complete log while dropping text. The tail must be
  4076. // pushed so the marker is emitted. (This surfaced only after empty writes
  4077. // stopped being buffered: `print` issues a trailing `write("")` whose
  4078. // buffered-empty path used to force the marker out incidentally.) A single
  4079. // wide line is used rather than many narrow ones so the CHILD ledger is the
  4080. // one that lands on zero: the host's identical ledger truncates first when
  4081. // many small entries precede the long marker text. `["y"*100]` serializes to
  4082. // exactly 104 bytes (103 payload + 1 envelope), so 104 is the smallest
  4083. // budget that admits the entry.
  4084. const { runtime } = await setup({ maxLogBytes: 104, maxWallMs: 10_000 })
  4085. const result = await runtime.run({
  4086. program: ['print("y" * 100 + "\\n" + "z" * 10, end="")', 'return "done"'].join('\n'),
  4087. bindings: [],
  4088. })
  4089. expect(result.error).toBeUndefined()
  4090. expect(result.value).toBe('done')
  4091. expect(result.logs).toContain('y'.repeat(100))
  4092. expect(result.logs.filter(line => line.includes('log capture truncated'))).toHaveLength(1)
  4093. // The dropped tail is not retained, but its loss is now reported.
  4094. expect(result.logs.some(line => line.includes('z'))).toBe(false)
  4095. }, 15_000)
  4096. it('keeps an admitted log within the serialized array envelope at the exact limit', async () => {
  4097. // Each entry is charged its JSON-string cost plus one separator byte, and
  4098. // the serialized outer logs array adds one more byte of envelope (two
  4099. // brackets and n-1 commas). The ledgers reserve that byte, so a result that
  4100. // exactly exhausts the ledger still serializes within the configured cap.
  4101. // At the 64-byte floor (the smallest admissible maxLogBytes): ledger 63,
  4102. // a 60-character line serializes as `"aaa...a"` (62 bytes) + 1 separator
  4103. // = 63, exactly exhausting the ledger and serializing as `["aaa...a"]`
  4104. // = 64 = the cap; a 61-character line costs 64 > 63 and truncates. The
  4105. // marker rides envelope, so the serialized logs run to cap + marker.
  4106. const { runtime } = await setup({ maxLogBytes: 64, maxWallMs: 10_000 })
  4107. const result = await runtime.run({
  4108. program: ['print("a" * 60 + "\\n" + "b" * 61, end="")', 'return "done"'].join('\n'),
  4109. bindings: [],
  4110. })
  4111. expect(result.error).toBeUndefined()
  4112. expect(result.value).toBe('done')
  4113. // The 60-character line was admitted; the 61-character line was not (a
  4114. // single 'b' would also match the marker's "bytes", so check for the line).
  4115. expect(result.logs).toContain('a'.repeat(60))
  4116. expect(result.logs.some(line => line.includes('b'.repeat(61)))).toBe(false)
  4117. expect(result.logs.some(line => line.includes('log capture truncated'))).toBe(true)
  4118. }, 15_000)
  4119. it('rejects a log budget too small to serialize the truncation marker', async () => {
  4120. // A maxLogBytes below 64 cannot serialize the truncation marker itself;
  4121. // it is rejected at construction so a marker-only truncated run cannot
  4122. // report more than the public cap. maxValueBytes keeps no floor beyond the
  4123. // positive-integer requirement (a completion can be 1 byte).
  4124. await expect(setup({ maxLogBytes: 63, maxWallMs: 10_000 })).rejects.toThrow(/must be at least 64/)
  4125. }, 15_000)
  4126. it('charges the JSON-escaped cost of control characters against the log ledger', async () => {
  4127. // A NUL renders as \u0000 (6 bytes) in the serialized outer logs; the
  4128. // ledger must charge that expansion, or a control-character flood admits
  4129. // 6x the configured cap.
  4130. const { runtime } = await setup({ maxLogBytes: 256 })
  4131. const result = await runtime.run({
  4132. program: [
  4133. 'for _ in range(500):',
  4134. ' print("\\x00" * 10)',
  4135. 'return "done"',
  4136. ].join('\n'),
  4137. bindings: [],
  4138. })
  4139. expect(result.error).toBeUndefined()
  4140. expect(result.logs.some(line => line.includes('log capture truncated'))).toBe(true)
  4141. // Serialized (escaped) size of retained entries stays in the budget's
  4142. // neighborhood: well under the ~30 kB an uncharged flood would retain.
  4143. const serialized = Buffer.byteLength(JSON.stringify(result.logs), 'utf8')
  4144. expect(serialized).toBeLessThan(1024)
  4145. })
  4146. it('charges the serialized cost child-side, so a control-heavy line truncates instead of being admitted whole', async () => {
  4147. // The child's ledger must charge what the entry costs on the wire, not its
  4148. // raw UTF-8 length: a NUL is one raw byte but six as its escape. A 24 MiB NUL
  4149. // line clears the cheap char-count lower bound (24 MiB < 32 MiB budget), so
  4150. // charging raw bytes would ADMIT it and emit a ~144 MiB escaped entry;
  4151. // charging the serialized cost (~144 MiB > the 32 MiB budget) rejects it
  4152. // before any encode and emits the marker instead. The address space (512 MiB,
  4153. // clearing the 12x load gate for a 32 MiB budget) is sized so the run loads;
  4154. // the gate separately guarantees a correctly-charged near-budget entry fits.
  4155. const { runtime } = await setup({ maxLogBytes: 32 * 1024 * 1024, addressSpaceMb: 512, maxWallMs: 20_000 })
  4156. const result = await runtime.run({
  4157. program: [
  4158. 'print("\\x00" * (24 * 1024 * 1024))',
  4159. 'return "done"',
  4160. ].join('\n'),
  4161. bindings: [],
  4162. })
  4163. expect(result.error).toBeUndefined()
  4164. expect(result.value).toBe('done')
  4165. expect(result.logs.filter(line => line.includes('log capture truncated'))).toHaveLength(1)
  4166. // Nothing of the line itself was retained: the ledger refused the whole entry.
  4167. expect(result.logs.every(line => !line.includes(String.fromCharCode(0)))).toBe(true)
  4168. }, 30_000)
  4169. it('bounds a huge unterminated tail after an early newline without copying it whole', async () => {
  4170. // The newline branch of _LogStream.write buffered the whole unterminated
  4171. // tail after the last newline into `_pending` before the flush trigger could
  4172. // bound it, so an early newline followed by a huge tail made a second full
  4173. // copy of the model's own string — a MemoryError the config gate cannot
  4174. // catch (the tail far exceeds maxLogBytes). The tail is now sliced to a
  4175. // budget-sized prefix, so the run truncates and completes. Linux-only RLIMIT_AS
  4176. // repro (Darwin skips the limit); on macOS this asserts the happy path.
  4177. //
  4178. // Sizing: the model builds `tail` (N) then the `"\n" + tail` write argument
  4179. // (another ~N), so construction peaks at ~2N — kept under the 384 MiB address
  4180. // space at N = 150 MiB (~300 MiB). The pre-fix code then buffered the whole
  4181. // ~150 MiB tail again, pushing past 384 MiB; the sliced prefix does not.
  4182. const { runtime } = await setup({ maxLogBytes: 256, addressSpaceMb: 384, maxWallMs: 20_000 })
  4183. const result = await runtime.run({
  4184. program: [
  4185. 'import sys',
  4186. 'tail = "A" * (150 * 1024 * 1024)',
  4187. 'sys.stdout.write("\\n" + tail)',
  4188. 'return "done"',
  4189. ].join('\n'),
  4190. bindings: [],
  4191. })
  4192. expect(result.error).toBeUndefined()
  4193. expect(result.value).toBe('done')
  4194. expect(result.logs.some(line => line.includes('log capture truncated'))).toBe(true)
  4195. }, 30_000)
  4196. it('flushes logs before framing the value so their peaks do not add against RLIMIT_AS', async () => {
  4197. // The load gate bounds maxLogBytes and maxValueBytes INDEPENDENTLY against the
  4198. // address space, each at the 12x worst case. But the child framed the
  4199. // completion value (materializing its escaped form to meter it, then encoding
  4200. // the frame) while a newline-free log tail still sat unflushed in _pending.
  4201. // Those two peaks added: two budgets each admitted alone could together breach
  4202. // RLIMIT_AS, dying as worker-exit instead of settling. The flush now runs
  4203. // before the value is framed, so the log pending is freed first.
  4204. //
  4205. // Config: 32 MiB each against 512 MiB (each 32*12 = 384 MiB < 448 MiB
  4206. // budgetable, so both load). The program writes ~33M astral chars with no
  4207. // newline (buffered ~132 MB, under the char-count flush trigger) then returns
  4208. // ~33M astral chars — a ~132 MB serialized value that is itself OVER the 32 MiB
  4209. // maxValueBytes, so the correct outcome is `output-limit`. Pre-fix the
  4210. // unflushed 132 MB plus the value's build-and-encode (~396 MB) exceeded 512 MiB
  4211. // and OOM'd (reported as exception/worker-exit); flushing first lets the value
  4212. // check complete (~460 MB alone) and report output-limit. On Darwin (no
  4213. // RLIMIT_AS) the value is over budget too, so output-limit holds either way;
  4214. // the OOM the reorder prevents is the Linux-only failure.
  4215. const { runtime } = await setup({
  4216. maxLogBytes: 32 * 1024 * 1024,
  4217. maxValueBytes: 32 * 1024 * 1024,
  4218. addressSpaceMb: 512,
  4219. maxWallMs: 20_000,
  4220. })
  4221. const result = await runtime.run({
  4222. program: [
  4223. 'import sys',
  4224. 'sys.stdout.write("\\U0001F600" * 33_000_000)',
  4225. 'return "\\U0001F600" * 33_000_000',
  4226. ].join('\n'),
  4227. bindings: [],
  4228. })
  4229. expect(result.error?.kind).toBe('output-limit')
  4230. }, 30_000)
  4231. it('checks and encodes a wide completion value in O(depth), not O(width)', async () => {
  4232. // A wide flat list serializes to ~2 bytes per element but the pre-fix walk
  4233. // enqueued one traversal tuple per element (_check_done_value) and one stack
  4234. // entry plus a separator marker per element (_encode_json_plain) — ~56 bytes
  4235. // per element, ~28x the serialized size. A value the byte meter admits could
  4236. // therefore OOM on the checker's or encoder's own bookkeeping, the inversion
  4237. // the load gate exists to prevent (the gate reserves 12x, not 28x). Both now
  4238. // walk with an O(depth) cursor that pulls one child at a time, so the only
  4239. // width-proportional allocation is the output string the meter bounded.
  4240. //
  4241. // Config: maxValueBytes 20 MiB against 384 MiB (20*12 = 240 MiB < 320 MiB
  4242. // budgetable, so it loads). `[0] * 6_000_000` is ~12 MB of JSON, under the
  4243. // 20 MiB budget, so it must round-trip. Pre-fix the ~400 MB of per-element
  4244. // frames plus the interpreter exceeded 384 MiB and returned MemoryError as an
  4245. // exception. Linux-only RLIMIT_AS repro; on macOS the value round-trips
  4246. // either way, but the fixture stays within the address space so it is honest.
  4247. //
  4248. // `maxWallMs` is 60s, not the 20s the memory assertion alone needs: the O(depth)
  4249. // cursor pulls 6M elements one at a time through Python-level frames, which costs
  4250. // ~11s on an idle machine and more under the coverage lane's V8 instrumentation
  4251. // with several workers sharing a box. This budget bounds the run without letting a
  4252. // loaded runner's scheduling latency read as a `timeout` — what this test asserts
  4253. // is the O(depth) memory shape, not a speed claim.
  4254. const { runtime } = await setup({ maxValueBytes: 20 * 1024 * 1024, addressSpaceMb: 384, maxWallMs: 60_000 })
  4255. const result = await runtime.run({ program: 'return [0] * 6_000_000', bindings: [] })
  4256. expect(result.error).toBeUndefined()
  4257. expect(Array.isArray(result.value)).toBe(true)
  4258. expect((result.value as number[]).length).toBe(6_000_000)
  4259. }, 90_000)
  4260. it('validates wide binding arguments in O(depth), not O(width)', async () => {
  4261. // The completion-value walks are budgeted; this one is not. `dispatch` runs
  4262. // `_lossless_json_violation` on the arguments the MODEL built, and no
  4263. // child-side byte budget bounds them first: the frame ceiling is the host's
  4264. // and applies only after this validation returns. A per-member traversal
  4265. // frame therefore turned a legitimate call into the program's own
  4266. // MemoryError. Measured with tracemalloc on the two walk shapes over this
  4267. // exact argument (JSON ~17 MB): the cursor peaks at 0.0 MiB of auxiliary
  4268. // state, the pre-fix `stack.extend` at 459.1 MiB -- past the 384 MiB
  4269. // configured below, so the discriminating failure is real. It is Linux-only:
  4270. // Darwin skips RLIMIT_AS, so this case round-trips there either way.
  4271. //
  4272. // The binding echoes its argument's length back, so the assertion proves the
  4273. // call actually round-tripped rather than merely avoiding a crash.
  4274. const { runtime } = await setup({ addressSpaceMb: 384, maxWallMs: 60_000 })
  4275. const result = await runtime.run({
  4276. program: 'return await tools.width([0] * 6_000_000)',
  4277. bindings: [{
  4278. global: 'tools',
  4279. functions: { width: async (items: unknown) => (items as number[]).length },
  4280. }],
  4281. })
  4282. expect(result.error).toBeUndefined()
  4283. expect(result.value).toBe(6_000_000)
  4284. }, 90_000)
  4285. it('decodes a multi-megabyte binding reply without regex backtracking state', async () => {
  4286. // The child parses every host reply with `_decode_json_plain`. Its scalar
  4287. // regex matched strings with a `(?:[^"\\]|\\.)*` repetition, which makes
  4288. // CPython's backtracking engine retain state proportional to the string's
  4289. // WIDTH -- measured at ~146 MiB of engine state for a 1 MiB string and
  4290. // ~558 MiB for 4 MiB. A legitimate multi-megabyte reply therefore raised
  4291. // MemoryError inside `_pump_replies`; because that pump is the only settler
  4292. // of the call's future, the run stranded until the wall clock reported a
  4293. // `timeout` instead of returning the value the binding produced.
  4294. //
  4295. // Strings now scan chunk-to-chunk over a character class (no backtracking
  4296. // state). Measured on this exact 4 MiB reply: the pre-fix regex peaks at
  4297. // 557.8 MiB, past the default 512 MiB address space, while the scanner peaks
  4298. // at the 4.0 MiB result itself. Linux-only, like the other RLIMIT_AS repros:
  4299. // Darwin does not apply the limit, so the spike is merely allocated there.
  4300. const reply = 'A'.repeat(4 * 1024 * 1024)
  4301. const { runtime } = await setup({ maxWallMs: 60_000 })
  4302. const result = await runtime.run({
  4303. program: 'value = await tools.big({})\nreturn len(value)',
  4304. bindings: [{ global: 'tools', functions: { big: async () => reply } }],
  4305. })
  4306. expect(result.error).toBeUndefined()
  4307. expect(result.value).toBe(reply.length)
  4308. }, 90_000)
  4309. it('drops a late binding resolution before snapshotting it', async () => {
  4310. // `sendReply` checks `settled`, but only after the resolution has been walked
  4311. // and copied by `snapshotJsonValue`. Binding resolution carries no seam-level
  4312. // byte cap, so a binding that resolves a wide value AFTER the run already
  4313. // settled (here on `maxWallMs`) spent host heap building a frame that is then
  4314. // discarded. The check now runs before the snapshot.
  4315. //
  4316. // The binding resolves well after the 1s wall clock with a 2M-element array;
  4317. // the run must still report `timeout`, and the late value must not appear.
  4318. let resolvedLate = false
  4319. const { runtime } = await setup({ maxWallMs: 1_000 })
  4320. const result = await runtime.run({
  4321. program: 'return await tools.slow({})',
  4322. bindings: [{
  4323. global: 'tools',
  4324. functions: {
  4325. slow: async () => {
  4326. await new Promise(resolve => setTimeout(resolve, 2_500))
  4327. resolvedLate = true
  4328. return Array.from({ length: 2_000_000 }, () => 0)
  4329. },
  4330. },
  4331. }],
  4332. })
  4333. expect(result.error?.kind).toBe('timeout')
  4334. expect(result.value).toBeUndefined()
  4335. // Pin that the late path actually ran, so the assertion above is not vacuous.
  4336. await new Promise(resolve => setTimeout(resolve, 2_000))
  4337. expect(resolvedLate).toBe(true)
  4338. }, 90_000)
  4339. it('paces concurrent binding replies instead of queueing every frame at once', async () => {
  4340. // Binding resolution carries no seam-level byte cap. Before pacing, a program
  4341. // resolving several large values in one `asyncio.gather` round encoded them
  4342. // all in the same turn and queued every frame in fd 3's writable buffer,
  4343. // which exhausted the host heap and killed the whole process rather than
  4344. // failing the run. Replies are now encoded one at a time, waiting for
  4345. // `drain` when the pipe is full.
  4346. //
  4347. // Eight concurrent 4 MiB replies (32 MiB of frames) must all round-trip. The
  4348. // program sums the lengths, so the assertion proves every reply arrived and
  4349. // was matched to its own call -- pacing must not drop or misroute any. What
  4350. // this case cannot show is the peak itself, which lives in the stream's
  4351. // buffer: measured directly on a 64 KiB-highWaterMark pipe with this same
  4352. // 8x4 MiB shape, the unpaced writes buffered 32.0 MiB while the paced ones
  4353. // peaked at 0.0 MiB.
  4354. const chunk = 'A'.repeat(4 * 1024 * 1024)
  4355. const { runtime } = await setup({ maxWallMs: 60_000 })
  4356. const result = await runtime.run({
  4357. program: [
  4358. 'import asyncio',
  4359. 'parts = await asyncio.gather(*[tools.chunk({}) for _ in range(8)])',
  4360. 'return sum(len(p) for p in parts)',
  4361. ].join('\n'),
  4362. bindings: [{ global: 'tools', functions: { chunk: async () => chunk } }],
  4363. })
  4364. expect(result.error).toBeUndefined()
  4365. expect(result.value).toBe(8 * chunk.length)
  4366. }, 90_000)
  4367. it('bounds a flood of zero-byte log lines through the per-entry separator charge', async () => {
  4368. // Blank print() lines carry zero content bytes; without the +1 separator
  4369. // charge they would bypass maxLogBytes entirely and grow the retained
  4370. // array without bound. Each empty entry costs one byte, so a 64-byte
  4371. // budget retains at most 64 entries before the marker.
  4372. const { runtime } = await setup({ maxLogBytes: 64, maxWallMs: 10_000 })
  4373. const result = await runtime.run({
  4374. program: [
  4375. 'for _ in range(10000):',
  4376. ' print()',
  4377. 'return "done"',
  4378. ].join('\n'),
  4379. bindings: [],
  4380. })
  4381. expect(result.error).toBeUndefined()
  4382. expect(result.logs.length).toBeLessThanOrEqual(65)
  4383. expect(result.logs.some(line => line.includes('log capture truncated'))).toBe(true)
  4384. })
  4385. it('reassembles multibyte UTF-8 split across stray-output pipe chunks', async () => {
  4386. // A single os.write far past the 64 KiB pipe buffer forces multiple
  4387. // 'data' chunks; when the boundary lands inside a multibyte sequence,
  4388. // per-chunk decoding would corrupt it into replacement characters. Raw bytes
  4389. // are buffered and only decoded once a complete line (or the whole tail at
  4390. // flush) is assembled, so the split sequence is whole by the time it is
  4391. // decoded. The payload spans every valid multibyte lead class so
  4392. // accrueStrayCost's per-lead continuation ranges are all exercised: U+0900
  4393. // (E0 A4 80, the range-restricted E0 lead), U+4F60 and U+597D (E4/E5, plain
  4394. // 3-byte), U+1F600 (F0, the range-restricted F0 lead), and U+10FFFF (F4 8F
  4395. // BF BF, the range-restricted F4 lead).
  4396. const { runtime } = await setup({ maxLogBytes: 1024 * 1024 })
  4397. const result = await runtime.run({
  4398. program: [
  4399. 'import os',
  4400. // os.write is one syscall and returns a partial count on a full
  4401. // pipe, so loop until the whole payload (odd prefix -> a chunk
  4402. // boundary lands inside a multibyte sequence) is out.
  4403. String.raw`payload = b"a" * 65535 + "\u0900\u4f60\u597d\U0001f600\U0010ffff".encode("utf-8")`,
  4404. 'view = memoryview(payload)',
  4405. 'while view:',
  4406. ' view = view[os.write(1, view):]',
  4407. 'return "done"',
  4408. ].join('\n'),
  4409. bindings: [],
  4410. })
  4411. expect(result.error).toBeUndefined()
  4412. const text = result.logs.join('')
  4413. expect(text).toContain('\u0900\u4f60\u597d\u{1f600}\u{10ffff}')
  4414. expect(text).not.toContain('\ufffd')
  4415. })
  4416. it('flushes a stray-output byte sequence left incomplete when the pipe ends', async () => {
  4417. // The child writes the first two bytes of a 3-byte UTF-8 character to fd 1
  4418. // and exits, so the pipe closes with the sequence unfinished in the raw
  4419. // residual. The 'end' flush decodes the residual with `toString('utf8')`,
  4420. // which renders the stranded bytes as U+FFFD instead of dropping them.
  4421. const { runtime } = await setup({ maxLogBytes: 1024 * 1024 })
  4422. const result = await runtime.run({
  4423. program: [
  4424. 'import os',
  4425. // b"\xe4\xbd" is the leading two bytes of U+4F60; no continuation byte
  4426. // follows before exit.
  4427. String.raw`os.write(1, b"\xe4\xbd")`,
  4428. 'return "done"',
  4429. ].join('\n'),
  4430. bindings: [],
  4431. })
  4432. expect(result.error).toBeUndefined()
  4433. expect(result.logs.join('')).toContain('�')
  4434. })
  4435. it('rejects reserved words of EITHER backend language as binding globals', async () => {
  4436. // The seam's portable contract: `lambda` (Python keyword, legal JS name)
  4437. // and `typeof` (JS keyword, legal Python name) are both refused, so a
  4438. // namespace list valid on one backend is valid on every backend.
  4439. const { runtime } = await setup()
  4440. for (const global of ['lambda', 'typeof']) {
  4441. await expect(runtime.run({
  4442. program: 'return 1',
  4443. bindings: [{ global, functions: {} }],
  4444. })).rejects.toThrow(/is not a usable Python identifier/)
  4445. }
  4446. })
  4447. it('captures stray stdout bytes the child writes bypassing sys.stdout', async () => {
  4448. // Model code that writes to fd 1 via os.write() bypasses the Python-side
  4449. // LogBuffer, so the host's stray-byte capture on child.stdout is what
  4450. // records it.
  4451. const { runtime } = await setup()
  4452. const result = await runtime.run({
  4453. program: [
  4454. 'import os',
  4455. 'os.write(1, b"stray stdout\\n")',
  4456. 'os.write(2, b"stray stderr\\n")',
  4457. 'return "done"',
  4458. ].join('\n'),
  4459. bindings: [],
  4460. })
  4461. expect(result.error).toBeUndefined()
  4462. expect(result.logs.join('')).toContain('stray stdout')
  4463. expect(result.logs.join('')).toContain('stray stderr')
  4464. })
  4465. it('flushes bytes written through sys.__stdout__/sys.__stderr__ before the done frame', async () => {
  4466. // The bootstrap only replaces sys.stdout/sys.stderr with the _LogStream;
  4467. // sys.__stdout__/sys.__stderr__ are the original block-buffered wrappers
  4468. // over fd 1/2. A program that writes through them without an explicit flush
  4469. // would lose those bytes when the host SIGTERMs the child right after the
  4470. // done frame (the default SIGTERM disposition terminates without
  4471. // interpreter finalization). The settlement flush now drains the original
  4472. // std streams before sending the done frame, so the bytes land in the
  4473. // kernel pipe buffer and the host's stray capture records them.
  4474. const { runtime } = await setup()
  4475. const result = await runtime.run({
  4476. program: [
  4477. 'import sys',
  4478. // `-u` makes the streams write-through; re-enable block buffering so
  4479. // the bytes sit in the wrapper until the SETTLEMENT drain flushes them
  4480. // — the drain path, not the -u immediate write, is what this case pins.
  4481. 'if hasattr(sys.__stdout__, "reconfigure"):',
  4482. ' sys.__stdout__.reconfigure(write_through=False)',
  4483. ' sys.__stderr__.reconfigure(write_through=False)',
  4484. 'sys.__stdout__.write("orig stdout\\n")',
  4485. 'sys.__stderr__.write("orig stderr\\n")',
  4486. 'return "done"',
  4487. ].join('\n'),
  4488. bindings: [],
  4489. })
  4490. expect(result.error).toBeUndefined()
  4491. expect(result.value).toBe('done')
  4492. expect(result.logs.join('')).toContain('orig stdout')
  4493. expect(result.logs.join('')).toContain('orig stderr')
  4494. }, 15_000)
  4495. it('escalates to SIGKILL when the program traps SIGTERM and ignores the grace period', async () => {
  4496. // A program that traps SIGTERM should still die: the kill() escalation
  4497. // fires SIGKILL after graceMs. The full run reports either timeout (wall)
  4498. // or worker-exit depending on which finish reason wins the race.
  4499. const { runtime } = await setup({ maxWallMs: 400, graceMs: 200 })
  4500. const result = await runtime.run({
  4501. program: [
  4502. 'import signal, time',
  4503. 'signal.signal(signal.SIGTERM, lambda *a: None)',
  4504. 'while True: time.sleep(1)',
  4505. ].join('\n'),
  4506. bindings: [],
  4507. })
  4508. expect(['timeout', 'worker-exit']).toContain(result.error?.kind)
  4509. }, 6000)
  4510. it('bounds the fd-3 receive buffer against a newline-free flood', async () => {
  4511. // A program looping os.write(3, ...) with no newline would grow the host
  4512. // accumulator unbounded (the child's RLIMIT_AS does not cover the host
  4513. // string). The frame cap is a fixed 64 MiB memory-safety invariant —
  4514. // deliberately NOT derived from maxValueBytes, because legitimate binding
  4515. // call frames may be large. We flood slightly past it in 8 MiB writes so
  4516. // the test terminates promptly once the guard trips.
  4517. const ceiling = 64 * 1024 * 1024
  4518. const { runtime } = await setup({ maxWallMs: 60_000, addressSpaceMb: 2048 })
  4519. const start = Date.now()
  4520. const result = await runtime.run({
  4521. program: [
  4522. 'import os',
  4523. `for _ in range(${Math.ceil((ceiling * 1.1) / (8 * 1024 * 1024))}):`,
  4524. ' os.write(3, b"A" * (8 * 1024 * 1024))',
  4525. 'return "never"',
  4526. ].join('\n'),
  4527. bindings: [],
  4528. })
  4529. const elapsed = Date.now() - start
  4530. expect(result.error?.kind).toBe('worker-exit')
  4531. expect(result.error?.message).toContain(`protocol frame exceeded ${ceiling} bytes`)
  4532. // The breach ends the run before the wall ceiling (the run did not idle
  4533. // out); absolute pipe throughput varies too much under parallel suites
  4534. // for a tight bound.
  4535. expect(elapsed).toBeLessThan(30_000)
  4536. }, 45_000)
  4537. it('fails a forged oversized done value host-side as output-limit', async () => {
  4538. // The Python-side _done_with_value check is bypassable by writing a done
  4539. // frame straight to fd 3. The host re-enforces maxValueBytes; the seam
  4540. // forbids substituting a truncated value, so the run FAILS as output-limit
  4541. // instead of returning a lie.
  4542. const maxValueBytes = 64
  4543. const { runtime } = await setup({ maxValueBytes })
  4544. const result = await runtime.run({
  4545. program: [
  4546. 'import os, json',
  4547. 'big = "B" * 5000',
  4548. 'os.write(3, json.dumps({"type":"done","value":big}).encode() + b"\\n")',
  4549. // The real done never sends; the forged one settles the run.
  4550. 'import time',
  4551. 'time.sleep(5)',
  4552. ].join('\n'),
  4553. bindings: [],
  4554. })
  4555. expect(result.value).toBeUndefined()
  4556. expect(result.error?.kind).toBe('output-limit')
  4557. expect(result.error?.message).toContain('exceeded 64 bytes')
  4558. }, 8000)
  4559. it('drops a forged oversized log frame on its code-unit lower bound, before escaping it', async () => {
  4560. // A forged `log` frame carrying a control-heavy string: NULs escape
  4561. // several-fold (one NUL -> six bytes `\u0000`). The raw frame stays under
  4562. // the host's 64 MiB parse cap (4 MiB of `\u0000` text = 24 MiB raw) while
  4563. // the escaped form would be ~24 MiB. Charging it required building that
  4564. // escaped copy first, so a 32-byte maxLogBytes could still force a large
  4565. // host allocation. The cheap `length + 3` lower bound truncates it instead.
  4566. // The host's own heap is what is under test, so keep the child's address
  4567. // space generous enough to BUILD the frame.
  4568. const { runtime } = await setup({ maxLogBytes: 128, addressSpaceMb: 1024, maxWallMs: 60_000 })
  4569. const before = process.memoryUsage().heapUsed
  4570. const result = await runtime.run({
  4571. program: [
  4572. 'import os',
  4573. // Written as a raw frame so the child's own ledger never sees it.
  4574. 'os.write(3, b\'{"type":"log","text":"\' + b"\\\\u0000" * (4 * 1024 * 1024) + b\'"}\\n\')',
  4575. 'return "settled"',
  4576. ].join('\n'),
  4577. bindings: [],
  4578. })
  4579. expect(result.error).toBeUndefined()
  4580. expect(result.value).toBe('settled')
  4581. // The frame was dropped as one truncation marker, not retained.
  4582. expect(result.logs).toEqual([logTruncationMarker(128)])
  4583. // The escaped copy (~144 MiB) was never materialized.
  4584. expect(process.memoryUsage().heapUsed - before).toBeLessThan(256 * 1024 * 1024)
  4585. }, 90_000)
  4586. it('charges a forged log frame its escaped cost once past the code-unit lower bound', async () => {
  4587. // The cheap lower bound only rejects what cannot possibly fit; a SHORT
  4588. // control-heavy frame clears it and must still be charged what it costs on
  4589. // the wire. Eleven NULs are 14 against the 64-byte ledger's cheap bound
  4590. // (six bytes each, two quotes, one separator), so the full charge truncates.
  4591. const { runtime } = await setup({ maxLogBytes: 64 })
  4592. const result = await runtime.run({
  4593. program: [
  4594. 'import os',
  4595. 'os.write(3, b\'{"type":"log","text":"\' + b"\\\\u0000" * 11 + b\'"}\\n\')',
  4596. 'return "settled"',
  4597. ].join('\n'),
  4598. bindings: [],
  4599. })
  4600. expect(result.error).toBeUndefined()
  4601. expect(result.value).toBe('settled')
  4602. expect(result.logs).toEqual([logTruncationMarker(64)])
  4603. }, 8000)
  4604. it('caps a forged done error.message from its code-unit prefix, never encoding the whole message', async () => {
  4605. // `Buffer.from(message)` on a message near the frame ceiling allocates a
  4606. // full UTF-8 copy before maxValueBytes applies. Only the first
  4607. // maxValueBytes code units can fit the cap, so only that prefix is encoded
  4608. // — at most 3x the cap in bytes. The message here is 48 MiB of ASCII: its
  4609. // full encode would be another 48 MiB in the host.
  4610. const maxValueBytes = 64
  4611. const { runtime } = await setup({ maxValueBytes, addressSpaceMb: 1024, maxWallMs: 60_000 })
  4612. const before = process.memoryUsage().heapUsed
  4613. const result = await runtime.run({
  4614. program: [
  4615. 'import os',
  4616. 'os.write(3, b\'{"type":"done","error":{"kind":"exception","message":"\' + b"E" * (48 * 1024 * 1024) + b\'"}}\\n\')',
  4617. 'import time',
  4618. 'time.sleep(30)',
  4619. ].join('\n'),
  4620. bindings: [],
  4621. })
  4622. expect(result.error?.kind).toBe('exception')
  4623. const message = result.error?.message ?? ''
  4624. // The marker's 15 bytes come OUT of the 64-byte cap, so 49 E's precede it
  4625. // and the whole string is exactly 64 bytes — not 64 plus the marker.
  4626. expect(message).toBe(`${'E'.repeat(maxValueBytes - 15)}… [truncated]`)
  4627. expect(Buffer.byteLength(message, 'utf8')).toBe(maxValueBytes)
  4628. // JSON.parse already holds the 48 MiB string; the cap must not add a
  4629. // second full-length copy on top of it.
  4630. expect(process.memoryUsage().heapUsed - before).toBeLessThan(256 * 1024 * 1024)
  4631. }, 90_000)
  4632. it('keeps a capped diagnostic within maxValueBytes, marker included', async () => {
  4633. // The marker is part of the emitted diagnostic, so its bytes are reserved
  4634. // from the cap rather than appended past it — the host meters this same
  4635. // field downstream. Checked on BOTH producers: the child's own _cap_message
  4636. // (a raised exception) and the host's capMessage (a forged done frame).
  4637. const maxValueBytes = 40
  4638. const { runtime } = await setup({ maxValueBytes })
  4639. const raised = await runtime.run({
  4640. program: 'raise ValueError("R" * 100000)',
  4641. bindings: [],
  4642. })
  4643. expect(raised.error?.kind).toBe('exception')
  4644. const raisedMessage = raised.error?.message ?? ''
  4645. expect(raisedMessage.endsWith('… [truncated]')).toBe(true)
  4646. expect(Buffer.byteLength(raisedMessage, 'utf8')).toBeLessThanOrEqual(maxValueBytes)
  4647. const forged = await runtime.run({
  4648. program: [
  4649. 'import os, json',
  4650. 'msg = "F" * 100000',
  4651. 'os.write(3, json.dumps({"type":"done","error":{"kind":"exception","message":msg}}).encode() + b"\\n")',
  4652. 'import time',
  4653. 'time.sleep(5)',
  4654. ].join('\n'),
  4655. bindings: [],
  4656. })
  4657. expect(forged.error?.kind).toBe('exception')
  4658. const forgedMessage = forged.error?.message ?? ''
  4659. expect(forgedMessage.endsWith('… [truncated]')).toBe(true)
  4660. expect(Buffer.byteLength(forgedMessage, 'utf8')).toBe(maxValueBytes)
  4661. }, 15_000)
  4662. it('emits the marker alone when the cap is smaller than the marker itself', async () => {
  4663. // With maxValueBytes below the marker's own 15 bytes there is no room for
  4664. // message text; the marker still goes out, so the truncation stays reported
  4665. // instead of the diagnostic silently becoming empty. Both producers agree.
  4666. const { runtime } = await setup({ maxValueBytes: 4 })
  4667. const raised = await runtime.run({ program: 'raise ValueError("R" * 500)', bindings: [] })
  4668. expect(raised.error?.kind).toBe('exception')
  4669. expect(raised.error?.message).toBe('… [truncated]')
  4670. const forged = await runtime.run({
  4671. program: [
  4672. 'import os, json',
  4673. 'os.write(3, json.dumps({"type":"done","error":{"kind":"exception","message":"F" * 500}}).encode() + b"\\n")',
  4674. 'import time',
  4675. 'time.sleep(5)',
  4676. ].join('\n'),
  4677. bindings: [],
  4678. })
  4679. expect(forged.error?.kind).toBe('exception')
  4680. expect(forged.error?.message).toBe('… [truncated]')
  4681. }, 15_000)
  4682. it('caps a forged done error.message without splitting a surrogate pair', async () => {
  4683. // At exactly maxValueBytes code units the prefix can end on a high
  4684. // surrogate whose low half sits just outside it. `Buffer.from` encodes that
  4685. // orphan as U+FFFD — the same corruption a mid-sequence byte cut causes —
  4686. // and those three replacement bytes sit past the marker-reserved budget, so
  4687. // the byte trim-back drops them.
  4688. const maxValueBytes = 32
  4689. const { runtime } = await setup({ maxValueBytes })
  4690. const result = await runtime.run({
  4691. program: [
  4692. 'import os, json',
  4693. // 32 ASCII chars then astral characters: code unit 32 is the first
  4694. // character's high surrogate (Python spells it as one code point, so
  4695. // json.dumps emits the raw 4 bytes the host reads back as a pair).
  4696. 'msg = "A" * 32 + "\\U0001f600" * 4',
  4697. 'os.write(3, json.dumps({"type":"done","error":{"kind":"exception","message":msg}}).encode() + b"\\n")',
  4698. 'import time',
  4699. 'time.sleep(5)',
  4700. ].join('\n'),
  4701. bindings: [],
  4702. })
  4703. expect(result.error?.kind).toBe('exception')
  4704. // 17 A's fill the marker-reserved budget; no orphaned half, no U+FFFD.
  4705. expect(result.error?.message).toBe(`${'A'.repeat(17)}… [truncated]`)
  4706. expect(Buffer.byteLength(result.error?.message ?? '', 'utf8')).toBe(maxValueBytes)
  4707. }, 8000)
  4708. it('returns a diagnostic under a third of the cap untouched, skipping the encode', async () => {
  4709. // Under maxValueBytes/3 code units a message cannot overflow the cap
  4710. // whatever it holds (3 bytes is the per-code-unit maximum), so the fast
  4711. // path returns it without encoding anything. Non-ASCII proves the bound is
  4712. // the code-unit count, not a byte assumption: 6 characters at 3 bytes each
  4713. // is 18 bytes, inside the 64-byte cap.
  4714. const { runtime } = await setup({ maxValueBytes: 64 })
  4715. const result = await runtime.run({
  4716. program: [
  4717. 'import os, json',
  4718. 'os.write(3, json.dumps({"type":"done","error":{"kind":"exception","message":"中文中文中文"}}).encode() + b"\\n")',
  4719. 'import time',
  4720. 'time.sleep(5)',
  4721. ].join('\n'),
  4722. bindings: [],
  4723. })
  4724. expect(result.error?.kind).toBe('exception')
  4725. expect(result.error?.message).toBe('中文中文中文')
  4726. }, 8000)
  4727. it('re-caps a forged done error.message host-side on a UTF-8 boundary', async () => {
  4728. // A forged done frame can carry an arbitrarily long error message; the
  4729. // host caps it to maxValueBytes and appends the shared marker. The
  4730. // message is emoji-dense and the cap is chosen so the marker-reserved
  4731. // 51-byte cut lands INSIDE a 4-byte sequence (one ASCII byte then 4-byte
  4732. // runs, so only a cut at 1 + 4k is aligned) — the cap must trim back to a
  4733. // code-point boundary rather than decode a replacement character, which
  4734. // would also exceed the cap.
  4735. const maxValueBytes = 66
  4736. const { runtime } = await setup({ maxValueBytes })
  4737. const result = await runtime.run({
  4738. program: [
  4739. 'import os, json',
  4740. 'msg = "E" + "\\U0001f600" * 2000',
  4741. 'os.write(3, json.dumps({"type":"done","error":{"kind":"exception","message":msg}}).encode() + b"\\n")',
  4742. 'import time',
  4743. 'time.sleep(5)',
  4744. ].join('\n'),
  4745. bindings: [],
  4746. })
  4747. expect(result.error?.kind).toBe('exception')
  4748. const message = result.error?.message ?? ''
  4749. expect(message.endsWith('… [truncated]')).toBe(true)
  4750. const marker = '… [truncated]'
  4751. const body = message.slice(0, message.length - marker.length)
  4752. // The WHOLE message, marker included, honors the cap.
  4753. expect(Buffer.byteLength(message, 'utf8')).toBeLessThanOrEqual(maxValueBytes)
  4754. // 'E' plus 12 emoji is 49 bytes: the trim-back walked the 51-byte budget
  4755. // down past two continuation bytes rather than splitting the 13th.
  4756. expect(body).toBe(`E${'\u{1f600}'.repeat(12)}`)
  4757. // The cut landed on a code-point boundary — no replacement character.
  4758. expect(body).not.toContain('\ufffd')
  4759. }, 8000)
  4760. it('bounds a single oversized newline-terminated line on fd 3', async () => {
  4761. // The same cap applies to one giant framed line. Write EXACTLY the
  4762. // cap with no newline — at the limit, not past it, so nothing trips —
  4763. // then a small newline tail, which is the chunk that crosses.
  4764. const ceiling = 64 * 1024 * 1024
  4765. const { runtime } = await setup({ maxWallMs: 60_000, addressSpaceMb: 2048 })
  4766. const result = await runtime.run({
  4767. program: [
  4768. 'import os',
  4769. 'chunk = b"A" * (8 * 1024 * 1024)',
  4770. `for _ in range(${ceiling / (8 * 1024 * 1024)}):`,
  4771. ' os.write(3, chunk)',
  4772. 'os.write(3, b"AAAA\\n")',
  4773. 'return "never"',
  4774. ].join('\n'),
  4775. bindings: [],
  4776. })
  4777. expect(result.error?.kind).toBe('worker-exit')
  4778. expect(result.error?.message).toContain(`protocol frame exceeded ${ceiling} bytes`)
  4779. }, 90_000)
  4780. it('rejects an over-cap newline-free fd-3 buffer without first joining it into one line', async () => {
  4781. // The cap has to be enforced on the byte COUNTER before Buffer.concat,
  4782. // not on the joined line afterwards: the join is a second copy of
  4783. // everything held, so a program could force roughly twice the advertised
  4784. // 64 MiB of host memory before anything rejected it.
  4785. //
  4786. // This program writes past the cap with no newline: the counter crosses on
  4787. // the 9th 8 MiB write (72 MiB) while the buffer is still a single unframed
  4788. // line, so the pre-join check rejects it without concat-ing a second copy.
  4789. // Checking the joined line instead would have produced a 72 MiB FIRST LINE
  4790. // that the per-line bound then dropped only after the doubling had happened.
  4791. const ceiling = 64 * 1024 * 1024
  4792. const { runtime } = await setup({ maxWallMs: 60_000, addressSpaceMb: 2048 })
  4793. const result = await runtime.run({
  4794. program: [
  4795. 'import os',
  4796. 'chunk = b"A" * (8 * 1024 * 1024)',
  4797. `for _ in range(${ceiling / (8 * 1024 * 1024) + 1}):`,
  4798. ' os.write(3, chunk)',
  4799. 'return "never"',
  4800. ].join('\n'),
  4801. bindings: [],
  4802. })
  4803. expect(result.value).toBeUndefined()
  4804. expect(result.error?.kind).toBe('worker-exit')
  4805. expect(result.error?.message).toContain(`protocol frame exceeded ${ceiling} bytes`)
  4806. }, 120_000)
  4807. it('keeps two within-cap frames whose combined buffer crosses the cap', async () => {
  4808. // The unframed byte counter charges the WHOLE buffer, which legitimately
  4809. // holds several frames each within FRAME_PARSE_CAP_BYTES. A first frame of
  4810. // exactly the cap followed by a second frame crosses the counter without
  4811. // either frame exceeding the cap; the first-frame check (not the counter)
  4812. // must let them through, or a legitimate near-cap frame plus a trailing
  4813. // frame would be misreported as a worker-exit.
  4814. const { runtime } = await setup({ maxWallMs: 60_000, addressSpaceMb: 2048 })
  4815. const result = await runtime.run({
  4816. program: [
  4817. 'import os',
  4818. 'chunk = b"A" * (8 * 1024 * 1024)',
  4819. // Exactly the cap, no newline — at the limit, so nothing trips.
  4820. 'for _ in range(8):',
  4821. ' os.write(3, chunk)',
  4822. // A newline, then a small legitimate log frame.
  4823. 'os.write(3, b"\\n{\\"type\\":\\"log\\",\\"text\\":\\"after-cap-frames\\"}\\n")',
  4824. 'return "done"',
  4825. ].join('\n'),
  4826. bindings: [],
  4827. })
  4828. expect(result.error).toBeUndefined()
  4829. expect(result.value).toBe('done')
  4830. expect(result.logs).toContain('after-cap-frames')
  4831. }, 120_000)
  4832. it('rejects an oversized first frame that lands on the sealing threshold with a newline', async () => {
  4833. // The fragment-count seal runs only on newline-free chunks (the ELSE half
  4834. // of the newline branch), so a chunk that carries the first newline always
  4835. // reaches the join and its first-frame check; sealing it into a block
  4836. // would empty pendingChunks, leave sawNewline false, and skip that check.
  4837. // Whether the pipe delivers exactly 1024 chunks is timing-dependent, but
  4838. // the oversized first frame (63.9 MiB of A's + 12289 more before the
  4839. // newline) exceeds FRAME_PARSE_CAP_BYTES no matter how it arrives — the
  4840. // case pins the worker-exit settlement, not a pre/post copy-count
  4841. // distinction (both orders reject an over-cap frame).
  4842. const { runtime } = await setup({ maxWallMs: 60_000, addressSpaceMb: 2048 })
  4843. const result = await runtime.run({
  4844. program: [
  4845. 'import os',
  4846. // 4 KiB writes are <= PIPE_BUF, so each os.write is atomic and the
  4847. // host sees one chunk per write; 16384 of them accumulate 64 MiB of
  4848. // newline-free bytes (16 fragment-count seals of 1024 chunks).
  4849. 'chunk = b"A" * 4096',
  4850. 'for _ in range(16384):',
  4851. ' os.write(3, chunk)',
  4852. // 12289 more A's push the first frame past 64 MiB; drain-loop so the
  4853. // write cannot truncate, then a newline and a small legitimate frame.
  4854. "data = b'A' * 12289 + b'\\n' + b'{\"type\":\"log\",\"text\":\"after-seal\"}\\n'",
  4855. 'view = memoryview(data)',
  4856. 'while view:',
  4857. ' view = view[os.write(3, view):]',
  4858. 'return "done"',
  4859. ].join('\n'),
  4860. bindings: [],
  4861. })
  4862. expect(result.error?.kind).toBe('worker-exit')
  4863. expect(result.error?.message).toContain('protocol frame exceeded')
  4864. }, 120_000)
  4865. })