runtime.spec.ts 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. import { mkdtemp, mkdir, readFile, readdir, rm, symlink } from 'node:fs/promises'
  2. import { homedir } from 'node:os'
  3. import { createServer, type Socket } from 'node:net'
  4. import { delimiter, join } from 'node:path'
  5. import { Context } from '@deepseek-ai/cordis'
  6. import Sandbox from '@deepseek-ai/dsh-sandbox-local'
  7. import { SandboxUnavailableError } from '@deepseek-ai/dsh-sandbox'
  8. import { describe, expect, it, onTestFinished, vi } from 'vitest'
  9. import type { CodeBindingFunction, CodeBindingNamespace, CodeRunRequest } from '@deepseek-ai/dsh-code-runtime'
  10. import type { Config } from '../src/index.ts'
  11. import { mountRuntime } from './setup.ts'
  12. /** Probe the sandbox independently so Node-runtime launch failures cannot skip enforcement tests. */
  13. const sandboxUsable = await (async () => {
  14. const probe = new Context()
  15. try {
  16. await probe.plugin(Sandbox, {})
  17. probe.sandbox.confine([process.execPath, '--version'], { mode: 'read-only', workspaceRoot: process.cwd() })
  18. return true
  19. } catch (error: unknown) {
  20. if (error instanceof SandboxUnavailableError) return false
  21. throw error
  22. } finally { await probe.fiber.dispose() }
  23. })()
  24. async function setup(config: Config = {}, mode: 'read-only' | 'workspace-write' | 'danger-full-access' = 'danger-full-access') {
  25. const root = await mkdtemp(join(homedir(), '.dsh-node-runtime-test-'))
  26. const cwd = join(root, 'workspace')
  27. await mkdir(cwd)
  28. const ctx = new Context()
  29. onTestFinished(async () => { await ctx.fiber.dispose(); await rm(root, { recursive: true, force: true }) })
  30. const runtime = await mountRuntime(ctx, config, { mode, workspaceRoot: cwd })
  31. const run = (request: CodeRunRequest) => runtime.run(runtime.resolve(request))
  32. return { ctx, runtime, root, cwd, run }
  33. }
  34. function bindings(functions: Record<string, CodeBindingFunction>): CodeBindingNamespace[] {
  35. return [{ global: 'tools', functions, errorClass: { name: 'ToolCallError', memberNameProperty: 'toolName' } }]
  36. }
  37. describe('Node program process', () => {
  38. it('runs erasable TypeScript in the resolved directory with an empty environment', async () => {
  39. const { run, cwd } = await setup()
  40. const result = await run({ program: 'const n: number = 6; console.log("ready"); return { n: n * 7, cwd: process.cwd(), env: { ...process.env } };', bindings: [] })
  41. expect(result.error).toBeUndefined()
  42. expect(result.value).toEqual({ n: 42, cwd, env: {} })
  43. expect(result.logs).toEqual(['ready'])
  44. expect(result.sandbox).toEqual({ mode: 'danger-full-access', denied: false })
  45. })
  46. it('keeps native startup paths available for nested Node creation with an empty model environment', async () => {
  47. const { run } = await setup()
  48. const result = await run({
  49. program: 'const {spawnSync}=await import("node:child_process"); const child=spawnSync(process.execPath,["-e","process.stdout.write(JSON.stringify(Object.keys(process.env)))"],{encoding:"utf8"}); return {env:Object.keys(process.env),status:child.status,error:child.error?.message ?? null,childKeys:JSON.parse(child.stdout || "[]")};',
  50. bindings: [],
  51. })
  52. expect(result.error).toBeUndefined()
  53. const value = result.value as { env: string[]; status: number | null; error: string | null; childKeys: string[] }
  54. expect(value.env).toEqual([])
  55. expect(value.status).toBe(0)
  56. expect(value.error).toBeNull()
  57. const nativeKeys = ['PATH', 'PATHEXT', 'SYSTEMROOT', 'WINDIR', 'TEMP', 'TMP']
  58. // CoreFoundation initializes this entry independently when a macOS child starts.
  59. if (process.platform === 'darwin') nativeKeys.push('__CF_USER_TEXT_ENCODING')
  60. expect(value.childKeys.filter(key => !nativeKeys.includes(key.toUpperCase()))).toEqual([])
  61. })
  62. it.skipIf(process.platform !== 'win32' || !sandboxUsable)('uses the common Windows grant lock and private native temp without exposing ambient values', async () => {
  63. const { run, root } = await setup({}, 'workspace-write')
  64. const temp = join(root, 'node-temp')
  65. const tmp = join(root, 'win32-temp')
  66. await mkdir(temp)
  67. await mkdir(tmp)
  68. onTestFinished(() => { vi.unstubAllEnvs() })
  69. vi.stubEnv('TEMP', temp)
  70. vi.stubEnv('TMP', tmp)
  71. vi.stubEnv('DSH_TEST_RUNTIME_SECRET', 'must-not-inherit')
  72. const childCode = 'const fs=require("node:fs"); const path=require("node:path"); const temp=require("node:os").tmpdir(); const file=path.join(temp,"native-temp.txt"); fs.writeFileSync(file,"native-temp"); fs.writeFileSync("native-observation.json",JSON.stringify({file,temp,env:Object.keys(process.env)}));'
  73. const result = await run({
  74. program: `const {spawnSync}=await import("node:child_process"); const child=spawnSync(process.execPath,["-e",${JSON.stringify(childCode)}],{stdio:"inherit"}); if(child.status!==0) throw new Error(child.error?.message ?? "native child failed"); const native=JSON.parse((await import("node:fs")).readFileSync("native-observation.json","utf8")); return {env:Object.keys(process.env),native,observed:await tools.inspect({path:native.file})};`,
  75. bindings: bindings({ inspect: async (args) => {
  76. const path = (args as { path: string }).path
  77. expect(path.startsWith(`${temp}\\dsh-`)).toBe(true)
  78. return await readFile(path, 'utf8')
  79. } }),
  80. })
  81. expect(result.error).toBeUndefined()
  82. const value = result.value as { env: string[]; native: { env: string[]; temp: string }; observed: string }
  83. expect(value.env).toEqual([])
  84. expect(value.native.env).not.toContain('DSH_TEST_RUNTIME_SECRET')
  85. expect(value.native.temp.startsWith(`${temp}\\dsh-`)).toBe(true)
  86. expect(value.observed).toBe('native-temp')
  87. expect((await readdir(join(tmp, 'dsh-acl-locks'))).some(name => name.endsWith('.lock'))).toBe(true)
  88. })
  89. it('returns binding values and preserves typed binding rejection', async () => {
  90. const { run } = await setup()
  91. const result = await run({
  92. program: 'const value = await tools.echo({ n: 42 }); let rejected; try { await tools.fail({}) } catch (e) { rejected = [e instanceof ToolCallError,e.name,e.toolName,e.message]; } return {value,rejected};',
  93. bindings: bindings({ echo: async args => args as { n: number }, fail: async () => { throw new Error('denied') } }),
  94. })
  95. expect(result.error).toBeUndefined()
  96. expect(result.value).toEqual({ value: { n: 42 }, rejected: [true, 'ToolCallError', 'fail', 'denied'] })
  97. })
  98. it('retains raw native stdout and stderr separately from control frames', async () => {
  99. const { run } = await setup()
  100. const result = await run({ program: 'const fs = await import("node:fs"); fs.writeSync(1,"native-out你好"); fs.writeSync(2,"native-err🙂"); return 42;', bindings: [] })
  101. expect(result.error).toBeUndefined()
  102. expect(result.value).toBe(42)
  103. expect(result.logs.join('')).toContain('native-out你好')
  104. expect(result.logs.join('')).toContain('native-err🙂')
  105. })
  106. it.each(['throw new Error("broken")', 'enum E { A }'])('reports program failure for %s', async (program) => {
  107. const { run } = await setup()
  108. expect((await run({ program, bindings: [] })).error?.kind).toBe('exception')
  109. })
  110. it('rejects lossy program output', async () => {
  111. const { run } = await setup()
  112. expect((await run({ program: 'return { value: undefined }', bindings: [] })).error?.kind).toBe('invalid-output')
  113. })
  114. it('enforces the combined output cap', async () => {
  115. const { run } = await setup({ maxOutputBytes: 80 })
  116. const result = await run({ program: 'console.log("x".repeat(500)); return 42;', bindings: [] })
  117. expect(result.error?.kind).toBe('output-limit')
  118. const bytes = Buffer.byteLength(JSON.stringify(result.logs)) + Buffer.byteLength(JSON.stringify(result.error?.message))
  119. expect(bytes).toBeLessThanOrEqual(80)
  120. })
  121. it('uses the default deadline and caps explicit requests', async () => {
  122. const { runtime } = await setup()
  123. expect(runtime.resolve({ program: '', bindings: [] }).timeoutMs).toBe(120_000)
  124. expect(runtime.resolve({ program: '', bindings: [], timeoutMs: 900_000 }).timeoutMs).toBe(600_000)
  125. for (const timeoutMs of [0, -1, NaN, Infinity]) expect(() => runtime.resolve({ program: '', bindings: [], timeoutMs })).toThrow()
  126. await expect(runtime.run({ program: '', bindings: [], cwd: process.cwd(), timeoutMs: 1000 })).rejects.toThrow('sandbox policy')
  127. })
  128. it.each(['for (;;) {}', 'await new Promise(() => {})'])('ends an unfinished program at its elapsed deadline: %s', async (program) => {
  129. const { run } = await setup({ timeoutMs: 600, graceMs: 50 })
  130. expect((await run({ program, bindings: [] })).error?.kind).toBe('timeout')
  131. })
  132. it('retains console output emitted immediately before a non-yielding program', async () => {
  133. const { run } = await setup({ timeoutMs: 1000, graceMs: 50 })
  134. const result = await run({ program: 'console.log("before hot loop"); for (;;) {}', bindings: [] })
  135. expect(result.error?.kind).toBe('timeout')
  136. expect(result.logs).toEqual(['before hot loop'])
  137. })
  138. it('does not pause the deadline while a binding is pending', async () => {
  139. const { run } = await setup({ timeoutMs: 1000, graceMs: 50 })
  140. const result = await run({ program: 'void tools.wait({}); for (;;) {}', bindings: bindings({ wait: () => new Promise(() => {}) }) })
  141. expect(result.error?.kind).toBe('timeout')
  142. })
  143. it('cancels a live program and closes its managed process', async () => {
  144. const { run } = await setup()
  145. const entered = Promise.withResolvers<undefined>()
  146. const controller = new AbortController()
  147. const active = run({ program: 'await tools.enter({}); for (;;) {}', signal: controller.signal, bindings: bindings({ enter: async () => { entered.resolve(undefined); return null } }) })
  148. await entered.promise
  149. controller.abort('stop')
  150. expect((await active).error).toEqual({ kind: 'abort', message: 'stop' })
  151. })
  152. it('closes a still-running descendant before returning the program result', async () => {
  153. const { run } = await setup()
  154. const connected = Promise.withResolvers<undefined>()
  155. const disconnected = Promise.withResolvers<undefined>()
  156. let peer: Socket | undefined
  157. const server = createServer((socket) => {
  158. peer = socket
  159. // A terminated peer can reset its connection instead of sending FIN.
  160. socket.on('error', () => {})
  161. socket.once('close', () => { disconnected.resolve(undefined) })
  162. connected.resolve(undefined)
  163. })
  164. onTestFinished(async () => {
  165. peer?.destroy()
  166. if (server.listening) await new Promise<void>((resolve, reject) => {
  167. server.close((error) => { if (error) reject(error); else resolve() })
  168. })
  169. })
  170. await new Promise<void>((resolve, reject) => {
  171. server.once('error', reject)
  172. server.listen(0, '127.0.0.1', resolve)
  173. })
  174. const address = server.address()
  175. if (address === null || typeof address === 'string') throw new Error('expected bound TCP listener')
  176. const child = `require('node:net').connect(${address.port},'127.0.0.1')`
  177. const result = await run({
  178. program: `const {spawn}=await import("node:child_process"); spawn(process.execPath,["-e",${JSON.stringify(child)}],{stdio:"ignore"}); await tools.connected({}); return 42;`,
  179. bindings: bindings({ connected: async () => { await connected.promise; return null } }),
  180. })
  181. expect(result.error).toBeUndefined()
  182. expect(result.value).toBe(42)
  183. await disconnected.promise
  184. })
  185. it('applies the configured V8 old-generation ceiling to each fresh Node process', async () => {
  186. const limits: number[] = []
  187. for (const maxOldGenerationSizeMb of [32, 64]) {
  188. const { run } = await setup({ maxOldGenerationSizeMb })
  189. const result = await run({ program: 'return (await import("node:v8")).getHeapStatistics().heap_size_limit;', bindings: [] })
  190. expect(result.error).toBeUndefined()
  191. if (typeof result.value !== 'number') throw new Error('expected V8 heap limit')
  192. limits.push(result.value)
  193. }
  194. expect(Number(limits[1]) - Number(limits[0])).toBe(32 * 1024 * 1024)
  195. })
  196. it('disposes active programs and rejects later execution', async () => {
  197. const { ctx, run, runtime } = await setup()
  198. const spec = runtime.resolve({ program: '', bindings: [] })
  199. const entered = Promise.withResolvers<undefined>()
  200. const active = run({ program: 'await tools.enter({}); await new Promise(() => {})', bindings: bindings({ enter: async () => { entered.resolve(undefined); return null } }) })
  201. await entered.promise
  202. await ctx.fiber.dispose()
  203. expect((await active).error?.kind).toBe('abort')
  204. await expect(runtime.run(spec)).rejects.toThrow('disposal')
  205. expect(() => runtime.resolve({ program: '', bindings: [] })).toThrow('disposal')
  206. expect(runtime.isolation).toBe('process')
  207. })
  208. it.each([
  209. 'const fs = await import("node:fs"); const b=Buffer.alloc(4); b.writeUInt32BE(4294967295); fs.writeSync(7,b); await new Promise(()=>{});',
  210. 'const fs = await import("node:fs"); const body=Buffer.from(JSON.stringify({type:"call",id:1,global:"tools",name:"undeclared",args:[]})); const h=Buffer.alloc(4); h.writeUInt32BE(body.length); fs.writeSync(7,Buffer.concat([h,body])); await new Promise(()=>{});',
  211. ])('refuses hostile program control traffic', async (program) => {
  212. const { run } = await setup()
  213. expect((await run({ program, bindings: [] })).error?.kind).toBe('protocol')
  214. })
  215. it.skipIf(!sandboxUsable)('applies read-only confinement to direct Node filesystem writes', async () => {
  216. const { run, cwd } = await setup({}, 'read-only')
  217. const path = join(cwd, 'denied.txt')
  218. const result = await run({ program: `await (await import('node:fs/promises')).writeFile(${JSON.stringify(path)}, 'denied')`, bindings: [] })
  219. expect(result.error?.kind).toBe('exception')
  220. expect(result.sandbox).toMatchObject({ mode: 'read-only', denied: true })
  221. await expect(readFile(path)).rejects.toMatchObject({ code: 'ENOENT' })
  222. })
  223. it.skipIf(process.platform === 'win32' || !sandboxUsable)('starts a confining launcher found only through the execution PATH', async () => {
  224. const { ctx, runtime, run, root } = await setup({}, 'read-only')
  225. const confine = ctx.sandbox.confine.bind(ctx.sandbox)
  226. const policy = runtime.resolve({ program: '', bindings: [] }).sandboxPolicy
  227. if (policy === undefined || policy.mode === 'danger-full-access') throw new Error('expected confined policy')
  228. const wrapped = confine([process.execPath, '--version'], { ...policy, mode: policy.mode })
  229. const original = wrapped.argv[0]
  230. if (original === undefined) throw new Error('expected sandbox launcher')
  231. const executable = await ctx.subprocess.resolveExecutable(original)
  232. const alias = 'ptc-private-sandbox-launcher'
  233. await symlink(executable, join(root, alias))
  234. const previousPath = process.env.PATH
  235. const substitute = vi.spyOn(ctx.sandbox, 'confine').mockImplementation((argv, selected) => {
  236. const result = confine(argv, selected)
  237. return { ...result, argv: [alias, ...result.argv.slice(1)] }
  238. })
  239. try {
  240. process.env.PATH = `${root}${delimiter}${previousPath ?? ''}`
  241. const result = await run({ program: 'return { env: Object.keys(process.env) };', bindings: [] })
  242. expect(result.error).toBeUndefined()
  243. expect(result.value).toEqual({ env: [] })
  244. } finally {
  245. substitute.mockRestore()
  246. if (previousPath === undefined) delete process.env.PATH
  247. else process.env.PATH = previousPath
  248. }
  249. })
  250. it.skipIf(!sandboxUsable)('permits workspace writes and denies a symlink to a sibling outside it', async () => {
  251. const { run, cwd, root } = await setup({}, 'workspace-write')
  252. const target = join(cwd, 'allowed.txt')
  253. expect((await run({ program: `await (await import('node:fs/promises')).writeFile(${JSON.stringify(target)}, 'allowed'); return true`, bindings: [] })).value).toBe(true)
  254. expect(await readFile(target, 'utf8')).toBe('allowed')
  255. const outside = join(root, 'outside')
  256. await mkdir(outside)
  257. await symlink(outside, join(cwd, 'escape'), process.platform === 'win32' ? 'junction' : 'dir')
  258. const result = await run({ program: `await (await import('node:fs/promises')).writeFile(${JSON.stringify(join(cwd, 'escape', 'denied.txt'))}, 'denied')`, bindings: [] })
  259. expect(result.error?.kind).toBe('exception')
  260. expect(result.sandbox).toMatchObject({ mode: 'workspace-write', denied: true })
  261. await expect(readFile(join(outside, 'denied.txt'))).rejects.toMatchObject({ code: 'ENOENT' })
  262. })
  263. })
  264. it('preserves empty console entries and bounds native output overflow', async () => {
  265. const { run } = await setup({ maxOutputBytes: 100 })
  266. const lines = await run({ program: 'console.log("a"); console.log(""); console.log("b")', bindings: [] })
  267. expect(lines.logs).toEqual(['a', '', 'b'])
  268. const overflow = await run({ program: 'const fs=await import("node:fs"); fs.writeSync(1,"HEAD-"+"x".repeat(100000));', bindings: [] })
  269. expect(overflow.error?.kind).toBe('output-limit')
  270. expect(overflow.logs.join('')).toContain('HEAD-')
  271. const bytes = Buffer.byteLength(JSON.stringify(overflow.logs)) + Buffer.byteLength(JSON.stringify(overflow.error?.message))
  272. expect(bytes).toBeLessThanOrEqual(100)
  273. })