mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-11 04:00:38 +00:00
fix(code-runtime-python): seal stray fragments, flush by serialized cost, charge lone surrogates fully
Three follow-ups the review caught in the stray-capture rewrite, plus a cost undercount shared with the log ledger. Seal the stray fragment list into blocks past MAX_PENDING_CHUNKS, mirroring the fd-3 reader: a program pacing single-byte os.write(1, ...) calls otherwise accumulates one live Buffer per write, and the per-object overhead no byte count sees exhausts the host heap far below the budget. Flush the residual by its running SERIALIZED cost (serializedBufferCost, a per-byte lower bound) rather than raw byte count: a control-char-dense newline-free flood serializes several-fold, so a raw-byte threshold let it grow to a full budget's worth of raw bytes — up to ~6x what the ledger admits — before flushStray concat/decoded the whole ~256 MiB residual at once. Charge a lone surrogate its full six escaped bytes (\uXXXX under ES2019 well-formed JSON.stringify) in both jsonStringCostUpTo and serializedBufferCost, not the three bytes Buffer.byteLength reports for U+FFFD: a forged log frame flooding \ud800 escapes was undercharged by half and admitted ~2x maxLogBytes. Key the sync-spawn leak assertion off the exact bootstrap path from the mocked spawn's argv, immune to a sibling worker's concurrent staging. Refresh the stale load-check comment that named the replaced JSON.stringify mechanism. Add lone-surrogate, stray-sealing, and companion regression tests (per-file 100% coverage); update the Agent Note and zh pair.
This commit is contained in:
@@ -312,6 +312,23 @@ const TRUNCATION_MARKER = '… [truncated]'
|
||||
*/
|
||||
const TRUNCATION_MARKER_BYTES = Buffer.byteLength(TRUNCATION_MARKER, 'utf8')
|
||||
|
||||
/**
|
||||
* Serialized JSON byte width of one character, given its code point and the
|
||||
* one-character string. Control characters below 0x20 escape to `\uXXXX` (6)
|
||||
* except the five with short forms `\b \t \n \f \r` (2); `"` and `\` escape to
|
||||
* 2; a LONE surrogate escapes to `\uXXXX` (6) under ES2019 well-formed
|
||||
* `JSON.stringify`; everything else rides at its raw UTF-8 width.
|
||||
* @param code - the character's code point.
|
||||
* @param character - the one-character (or one-code-point) string.
|
||||
* @returns the character's serialized JSON byte width.
|
||||
*/
|
||||
function serializedCharCost(code: number, character: string): number {
|
||||
if (code < 0x20) return code === 0x08 || code === 0x09 || code === 0x0a || code === 0x0c || code === 0x0d ? 2 : 6
|
||||
if (code === 0x22 || code === 0x5c) return 2
|
||||
if (code >= 0xd800 && code <= 0xdfff) return 6
|
||||
return Buffer.byteLength(character, 'utf8')
|
||||
}
|
||||
|
||||
/**
|
||||
* Serialized JSON-string cost of `text` (the two quotes plus each character's
|
||||
* escaped byte width), measured WITHOUT materializing the escaped copy, and
|
||||
@@ -319,7 +336,9 @@ const TRUNCATION_MARKER_BYTES = Buffer.byteLength(TRUNCATION_MARKER, 'utf8')
|
||||
* allocate the whole escaped form first — up to sixfold a control-char-dense
|
||||
* string — so a near-budget line under a large `maxLogBytes` could momentarily
|
||||
* allocate over a gigabyte just to measure it. This walks code point by code
|
||||
* point and stops at the cap, so the measurement allocates nothing.
|
||||
* point (a matched surrogate pair yields its combined code point ≥ 0x10000; a
|
||||
* lone surrogate yields a value in 0xD800–0xDFFF that {@link serializedCharCost}
|
||||
* charges the full six escaped bytes) and stops at the cap, allocating nothing.
|
||||
* @param text - the candidate string.
|
||||
* @param maxBytes - the largest serialized size the caller can admit.
|
||||
* @returns the exact serialized byte cost, or `undefined` once it exceeds `maxBytes`.
|
||||
@@ -327,22 +346,38 @@ const TRUNCATION_MARKER_BYTES = Buffer.byteLength(TRUNCATION_MARKER, 'utf8')
|
||||
function jsonStringCostUpTo(text: string, maxBytes: number): number | undefined {
|
||||
let bytes = 2 // the enclosing quotes
|
||||
for (const character of text) {
|
||||
const code = character.codePointAt(0) as number
|
||||
// Control characters below 0x20 escape to `\uXXXX` (6) except the five with
|
||||
// short forms `\b \t \n \f \r` (2); `"` and `\` escape to 2; everything else
|
||||
// rides at its raw UTF-8 width.
|
||||
if (code < 0x20) {
|
||||
bytes += code === 0x08 || code === 0x09 || code === 0x0a || code === 0x0c || code === 0x0d ? 2 : 6
|
||||
} else if (code === 0x22 || code === 0x5c) {
|
||||
bytes += 2
|
||||
} else {
|
||||
bytes += Buffer.byteLength(character, 'utf8')
|
||||
}
|
||||
bytes += serializedCharCost(character.codePointAt(0) as number, character)
|
||||
if (bytes > maxBytes) return undefined
|
||||
}
|
||||
return bytes
|
||||
}
|
||||
|
||||
/**
|
||||
* Serialized-cost lower bound of raw UTF-8 `buf`, charged per byte without
|
||||
* decoding: a control byte below 0x20 costs 6 (`\uXXXX`) or 2 (the five
|
||||
* short-form escapes), `"`/`\` cost 2, and every other byte — including each
|
||||
* byte of a multibyte sequence — costs at least 1. It is exact for valid UTF-8
|
||||
* (a W-byte character serializes to W bytes) and a lower bound for invalid bytes
|
||||
* (each decodes to U+FFFD at 3 bytes but is charged 1); since each byte costs at
|
||||
* least its raw 1, the total is always ≥ the raw byte count, so a threshold on
|
||||
* this cost flushes no later than a raw-byte threshold and strictly earlier for
|
||||
* control-dense output. Used to bound the stray-capture residual by what the
|
||||
* ledger can actually admit rather than by raw length, so a NUL flood under a
|
||||
* large `maxLogBytes` flushes at roughly a sixth of the raw bytes instead of
|
||||
* accumulating the full budget's worth before `admit` truncates it.
|
||||
* @param buf - raw bytes from a stdout/stderr pipe chunk.
|
||||
* @returns the summed per-byte serialized cost.
|
||||
*/
|
||||
function serializedBufferCost(buf: Buffer): number {
|
||||
let cost = 0
|
||||
for (const byte of buf) {
|
||||
if (byte < 0x20) cost += byte === 0x08 || byte === 0x09 || byte === 0x0a || byte === 0x0c || byte === 0x0d ? 2 : 6
|
||||
else if (byte === 0x22 || byte === 0x5c) cost += 2
|
||||
else cost += 1
|
||||
}
|
||||
return cost
|
||||
}
|
||||
|
||||
/**
|
||||
* Cap a done-frame `error.message` to `maxValueBytes` host-side: a forged done
|
||||
* frame can carry an arbitrarily long message, so truncate by RAW UTF-8 byte
|
||||
@@ -547,8 +582,9 @@ export class PythonCodeRuntime extends CodeRuntime {
|
||||
// arrives as an over-ceiling frame and fails the run as `worker-exit`
|
||||
// instead of the `output-limit` the cap describes — a silent inversion, so
|
||||
// it fails at load. Both budgets are metered in SERIALIZED (JSON-escaped)
|
||||
// bytes — the host log ledger charges `Buffer.byteLength(JSON.stringify(text))`,
|
||||
// `checkDoneValue` measures the escaped form, and the producing-side
|
||||
// bytes — the host log ledger charges the serialized cost via
|
||||
// `jsonStringCostUpTo`, which walks to the cap without allocating the escaped
|
||||
// copy, `checkDoneValue` measures the escaped form, and the producing-side
|
||||
// `_cap_message` in the child also caps by serialized cost (which is why a
|
||||
// capped diagnostic still fits its frame) — so a payload admitted under the
|
||||
// cap occupies at most `cap + envelope` bytes on the wire; escaping is
|
||||
@@ -784,27 +820,46 @@ export class PythonCodeRuntime extends CodeRuntime {
|
||||
// child's own `log` frames are already line-granular; stray capture
|
||||
// matches them by splitting on `\n`.
|
||||
//
|
||||
// Buffered as raw `Buffer` chunks with a running byte counter, exactly
|
||||
// like the fd-3 reader below and for the same reasons: a string `+=`
|
||||
// accumulator re-copies the whole residual on every pipe chunk (quadratic
|
||||
// on a large newline-free write), and scanning it from index 0 each chunk
|
||||
// is a second quadratic. Appending a chunk is O(1); the split happens only
|
||||
// when a `\n` actually arrived. A newline never appears inside a UTF-8
|
||||
// multibyte sequence (continuation bytes are 0x80–0xBF), so splitting on
|
||||
// the raw 0x0a byte and decoding each complete line is safe without a
|
||||
// streaming decoder — a line's bytes are whole by construction.
|
||||
interface StrayBuffer { chunks: Buffer[]; bytes: number }
|
||||
const strayOut: StrayBuffer = { chunks: [], bytes: 0 }
|
||||
const strayErr: StrayBuffer = { chunks: [], bytes: 0 }
|
||||
// Buffered as raw `Buffer` chunks with a running SERIALIZED-cost counter,
|
||||
// exactly like the fd-3 reader below and for the same reasons: a string
|
||||
// `+=` accumulator re-copies the whole residual on every pipe chunk
|
||||
// (quadratic on a large newline-free write), and scanning it from index 0
|
||||
// each chunk is a second quadratic. Appending a chunk is O(1); the split
|
||||
// happens only when a `\n` actually arrived. A newline never appears inside
|
||||
// a UTF-8 multibyte sequence (continuation bytes are 0x80–0xBF), so
|
||||
// splitting on the raw 0x0a byte and decoding each complete line is safe
|
||||
// without a streaming decoder — a line's bytes are whole by construction.
|
||||
//
|
||||
// `chunks` also seals into `blocks` past MAX_PENDING_CHUNKS, mirroring the
|
||||
// fd-3 reader: without it a program pacing one-byte newline-free
|
||||
// `os.write`s accumulates one Buffer object per write, and the object plus
|
||||
// backing-store overhead — which no byte or cost count sees — exhausts the
|
||||
// host heap far below the budget. Sealing bounds the live object count.
|
||||
interface StrayBuffer { chunks: Buffer[]; blocks: Buffer[]; cost: number }
|
||||
const strayOut: StrayBuffer = { chunks: [], blocks: [], cost: 0 }
|
||||
const strayErr: StrayBuffer = { chunks: [], blocks: [], cost: 0 }
|
||||
const captureStray = (stray: StrayBuffer, chunk: Buffer): void => {
|
||||
// Once the ledger has truncated, stop buffering: admit() is a no-op past
|
||||
// that point, so continuing to accumulate would retain host memory for
|
||||
// output that can never be admitted.
|
||||
if (logsTruncated) return
|
||||
stray.chunks.push(chunk)
|
||||
stray.bytes += chunk.length
|
||||
// Track SERIALIZED cost, not raw bytes: a control-char-dense residual
|
||||
// (a NUL flood) serializes several-fold, so a raw-byte threshold would
|
||||
// let it grow to the full budget's worth of RAW bytes — up to ~6x what
|
||||
// the ledger can admit — before flushing. The per-byte cost is a lower
|
||||
// bound on the admitted line's exact cost, so flushing when it crosses
|
||||
// the budget bounds the residual by what `admit` can actually keep.
|
||||
stray.cost += serializedBufferCost(chunk)
|
||||
// Bound the live fragment count (see the seal rationale above), before
|
||||
// any concat so an over-count payload is never copied whole first.
|
||||
if (stray.chunks.length >= MAX_PENDING_CHUNKS) {
|
||||
stray.blocks.push(Buffer.concat(stray.chunks))
|
||||
stray.chunks = []
|
||||
}
|
||||
if (chunk.includes(0x0a)) {
|
||||
let buffered = Buffer.concat(stray.chunks)
|
||||
let buffered = Buffer.concat(stray.blocks.length > 0 ? [...stray.blocks, ...stray.chunks] : stray.chunks)
|
||||
stray.blocks = []
|
||||
let newline: number
|
||||
while ((newline = buffered.indexOf(0x0a)) >= 0) {
|
||||
admit(buffered.subarray(0, newline).toString('utf8'))
|
||||
@@ -813,17 +868,16 @@ export class PythonCodeRuntime extends CodeRuntime {
|
||||
// Carry the residual as a fresh right-sized copy, not the subarray view
|
||||
// (which would pin the whole concat allocation). See detachResidual.
|
||||
stray.chunks = detachResidual(buffered)
|
||||
stray.bytes = buffered.length
|
||||
stray.cost = serializedBufferCost(buffered)
|
||||
}
|
||||
// Newline-free residual is bounded by the ledger, not left to grow with
|
||||
// the stream: an `os.write(1, b"A"*N)` flood carrying no newline would
|
||||
// otherwise accumulate N bytes in host memory before `end`. When the
|
||||
// pending residual would cross the budget, admit it now — admit() charges
|
||||
// its serialized cost, truncates, and marks the ledger, and the
|
||||
// truncation short-circuit above stops buffering on the next chunk. The
|
||||
// raw byte count is a safe lower bound on the serialized cost, so this
|
||||
// fires no later than the budget is genuinely at risk.
|
||||
if (stray.bytes + 3 > logBudget) {
|
||||
// pending residual's serialized cost would cross the budget, flush it now
|
||||
// — admit() charges the exact serialized cost, truncates, and marks the
|
||||
// ledger, and the truncation short-circuit above stops buffering on the
|
||||
// next chunk. `+ 3` covers the two quotes and one separator admit adds.
|
||||
if (stray.cost + 3 > logBudget) {
|
||||
flushStray(stray)
|
||||
}
|
||||
}
|
||||
@@ -831,14 +885,15 @@ export class PythonCodeRuntime extends CodeRuntime {
|
||||
// above, on the pipe's `end` (normal drain), and — for the setsid-escapee
|
||||
// path where destroy() forces settlement without an `end` — explicitly in
|
||||
// the closeDeadline handler. Idempotent: it clears what it admits, so a
|
||||
// later flush is a no-op. The `chunks.length` guard is the only emptiness
|
||||
// later flush is a no-op. The `chunks`/`blocks` guard is the only emptiness
|
||||
// check needed — `data` never emits a zero-length Buffer, so a non-empty
|
||||
// chunk list always decodes to a non-empty tail.
|
||||
// fragment list always decodes to a non-empty tail.
|
||||
function flushStray(stray: StrayBuffer): void {
|
||||
if (stray.chunks.length === 0) return
|
||||
const tail = Buffer.concat(stray.chunks).toString('utf8')
|
||||
if (stray.chunks.length === 0 && stray.blocks.length === 0) return
|
||||
const tail = Buffer.concat([...stray.blocks, ...stray.chunks]).toString('utf8')
|
||||
stray.chunks = []
|
||||
stray.bytes = 0
|
||||
stray.blocks = []
|
||||
stray.cost = 0
|
||||
admit(tail)
|
||||
}
|
||||
child.stdout.on('data', (chunk: Buffer) => { captureStray(strayOut, chunk) })
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { EventEmitter } from 'node:events'
|
||||
import { readdirSync } from 'node:fs'
|
||||
import { existsSync } from 'node:fs'
|
||||
import { dirname } from 'node:path'
|
||||
import { PassThrough } from 'node:stream'
|
||||
import { tmpdir } from 'node:os'
|
||||
import { afterEach, describe, expect, it, vi } from 'vitest'
|
||||
import { Context } from 'cordis'
|
||||
|
||||
@@ -74,14 +74,18 @@ describe('PythonCodeRuntime — boot-write failure', () => {
|
||||
// misuse) and stranded the staging directory materializePyScripts had just
|
||||
// written, which only settle() removes. The fix catches it, unlinks the
|
||||
// directory, and resolves the same `worker-exit` class as an async ENOENT.
|
||||
// Snapshot as a SET, then assert no dir NEW relative to it survives. Strict
|
||||
// array equality would flake: vitest's forks pool runs runtime.spec.ts in a
|
||||
// sibling worker that concurrently creates and removes
|
||||
// `dsh-code-runtime-python-*` dirs, so a concurrent create OR delete in the
|
||||
// window would fail `toEqual`. The set difference is immune to both — it
|
||||
// only asserts THIS run left nothing behind.
|
||||
const before = new Set(readdirSync(tmpdir()).filter(name => name.startsWith('dsh-code-runtime-python-')))
|
||||
spawnMock.mockImplementation(() => { throw Object.assign(new Error('EMFILE: too many open files'), { code: 'EMFILE' }) })
|
||||
//
|
||||
// Capture THIS run's exact staging dir from the argv the mocked spawn
|
||||
// received (`['-I', <dir>/bootstrap.py]`) and assert only that path is gone.
|
||||
// A tmpdir scan — even a set difference against a pre-run snapshot — would
|
||||
// flake under vitest's forks pool: a sibling worker creating its own
|
||||
// `dsh-code-runtime-python-*` dir in the window reads as a leak here. Keying
|
||||
// off our own argv is fully isolated from concurrent staging.
|
||||
let stagedBootstrap: string | undefined
|
||||
spawnMock.mockImplementation((_bin: string, args: string[]) => {
|
||||
stagedBootstrap = args[args.length - 1]
|
||||
throw Object.assign(new Error('EMFILE: too many open files'), { code: 'EMFILE' })
|
||||
})
|
||||
const ctx = new Context()
|
||||
const fiber = await ctx.plugin(PythonCodeRuntime)
|
||||
const runtime = ctx.codeRuntime as InstanceType<typeof PythonCodeRuntime>
|
||||
@@ -90,8 +94,8 @@ describe('PythonCodeRuntime — boot-write failure', () => {
|
||||
|
||||
expect(result.error?.kind).toBe('worker-exit')
|
||||
expect(result.error?.message).toContain('python spawn error')
|
||||
const leaked = readdirSync(tmpdir()).filter(name => name.startsWith('dsh-code-runtime-python-') && !before.has(name))
|
||||
expect(leaked).toEqual([])
|
||||
expect(stagedBootstrap).toBeDefined()
|
||||
expect(existsSync(dirname(stagedBootstrap as string))).toBe(false)
|
||||
await fiber.dispose()
|
||||
})
|
||||
})
|
||||
|
||||
@@ -747,6 +747,33 @@ describe('PythonCodeRuntime — programs and bindings', () => {
|
||||
expect(result.logs.at(-1)).toBe(logTruncationMarker(4096))
|
||||
})
|
||||
|
||||
it('charges a lone surrogate its full six escaped bytes, not three', async () => {
|
||||
// A forged `log` frame carrying `\ud800` escapes materializes lone
|
||||
// surrogates after JSON.parse. `Buffer.byteLength` of U+FFFD is 3, but
|
||||
// ES2019 well-formed `JSON.stringify` emits `\ud800` at 6 bytes, so charging
|
||||
// the raw width would admit ~2x the configured budget of serialized bytes
|
||||
// (the same family as the NUL-flood undercount, at 2x rather than 6x). The
|
||||
// cost walker charges surrogates the full 6, so a flood truncates at budget.
|
||||
// Forged on fd 3 because Python stdout will not emit lone surrogates.
|
||||
const { runtime } = await setup({ maxLogBytes: 4096 })
|
||||
const result = await runtime.run({
|
||||
program: [
|
||||
'import os',
|
||||
// 1000 \ud800 escapes: charged at the buggy raw width 1000 * 3 = 3000
|
||||
// bytes fits under 4096 (wrongly admitted), but the correct serialized
|
||||
// width 1000 * 6 = 6000 bytes is over budget — so the ledger must
|
||||
// truncate. The count sits in the 683..1365 window where the two
|
||||
// chargings disagree, making the test discriminate.
|
||||
String.raw`frame = b'{"type":"log","text":"' + b'\\ud800' * 1000 + b'"}\n'`,
|
||||
'os.write(3, frame)',
|
||||
'return None',
|
||||
].join('\n'),
|
||||
bindings: [],
|
||||
})
|
||||
expect(result.error).toBeUndefined()
|
||||
expect(result.logs.at(-1)).toBe(logTruncationMarker(4096))
|
||||
})
|
||||
|
||||
it('charges the exact serialized cost of short-escape and quote/backslash characters', async () => {
|
||||
// Exercises every branch of jsonStringCostUpTo's per-character cost: a tab
|
||||
// and other C0 controls with short JSON forms (\t etc., 2 bytes), a quote
|
||||
@@ -3074,6 +3101,51 @@ describe('PythonCodeRuntime — hostile peer', () => {
|
||||
expect(copied).toBeLessThan(256 * 1024)
|
||||
}, 40_000)
|
||||
|
||||
it('seals trickled stray fragments into blocks without recopying the sealed prefix', async () => {
|
||||
// The stray-capture buffer has the same object-overhead exposure as the fd-3
|
||||
// reader above: each newline-free `data` chunk is its own Buffer, so a
|
||||
// program pacing single-byte `os.write(1, ...)` accumulates one object per
|
||||
// write, which the serialized-cost counter cannot see. Past MAX_PENDING_CHUNKS
|
||||
// the fragments seal into a finished block; re-merging the whole residual at
|
||||
// each threshold instead would copy the sealed prefix again and again, making
|
||||
// the cumulative copy volume quadratic. `Buffer.concat` is wrapped to measure
|
||||
// that volume — both shapes admit the same final log entry, so the copy total
|
||||
// is the discriminator. maxLogBytes is raised so the trickle is retained,
|
||||
// not truncated, which is what forces the fragments to accumulate and seal.
|
||||
const realConcat = Buffer.concat.bind(Buffer)
|
||||
let copied = 0
|
||||
Buffer.concat = (list: readonly Uint8Array[], total?: number): Buffer<ArrayBuffer> => {
|
||||
for (const part of list) copied += part.length
|
||||
return realConcat(list, total)
|
||||
}
|
||||
let result: CodeRunResult
|
||||
try {
|
||||
const { runtime } = await setup({ maxLogBytes: 200_000, maxWallMs: 30_000 })
|
||||
result = await runtime.run({
|
||||
program: [
|
||||
'import os',
|
||||
'for _ in range(60000):',
|
||||
' os.write(1, b"x")',
|
||||
' os.sched_yield()',
|
||||
'os.write(1, b"\\n")',
|
||||
'return "done"',
|
||||
].join('\n'),
|
||||
bindings: [],
|
||||
})
|
||||
} finally {
|
||||
Buffer.concat = realConcat
|
||||
}
|
||||
expect(result.error).toBeUndefined()
|
||||
expect(result.value).toBe('done')
|
||||
// The trickle coalesces into one log line (no interior newlines). Its exact
|
||||
// length depends on pipe coalescing, but it is one entry and non-empty.
|
||||
expect(result.logs.length).toBe(1)
|
||||
expect((result.logs[0] as string).length).toBeGreaterThan(0)
|
||||
// Sealing keeps each byte copied a bounded number of times; re-merging the
|
||||
// whole residual per threshold would push the total far past this.
|
||||
expect(copied).toBeLessThan(2 * 1024 * 1024)
|
||||
}, 40_000)
|
||||
|
||||
it('caps a huge exception diagnostic child-side before it crosses the wire', async () => {
|
||||
// A program can raise with a multi-megabyte message; the child must cap
|
||||
// it at maxValueBytes before formatting/sending, not ship the whole
|
||||
|
||||
Reference in New Issue
Block a user