agent-code-lib 0.16.0

Agent engine library: LLM providers, tools, query loop, memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
//! Integration tests for process-level sandboxing.
//!
//! The real end-to-end test is macOS-only because Seatbelt is the only
//! shipping strategy. On other platforms we still run a smoke test against
//! the disabled executor to guard the pass-through path.

use std::sync::Arc;

#[cfg(any(target_os = "macos", target_os = "linux"))]
use agent_code_lib::config::SandboxConfig;
use agent_code_lib::permissions::PermissionChecker;
use agent_code_lib::sandbox::SandboxExecutor;
use agent_code_lib::tools::bash::BashTool;
use agent_code_lib::tools::{Tool, ToolContext};
use tokio_util::sync::CancellationToken;

fn make_ctx(cwd: std::path::PathBuf, sandbox: Option<Arc<SandboxExecutor>>) -> ToolContext {
    ToolContext {
        cwd,
        cancel: CancellationToken::new(),
        permission_checker: Arc::new(PermissionChecker::allow_all()),
        verbose: false,
        plan_mode: false,
        file_cache: None,
        denial_tracker: None,
        task_manager: None,
        session_allows: None,
        permission_prompter: None,
        sandbox,
    }
}

#[tokio::test]
async fn bash_runs_normally_with_disabled_sandbox() {
    // Regression guard: wrapping with a disabled sandbox must not change
    // command behavior — `echo hello` still returns `hello` on stdout.
    let tmp = tempfile::tempdir().unwrap();
    let ctx = make_ctx(
        tmp.path().to_path_buf(),
        Some(Arc::new(SandboxExecutor::disabled())),
    );
    let bash = BashTool;
    let result = bash
        .call(serde_json::json!({"command": "echo hello"}), &ctx)
        .await
        .expect("bash echo hello should succeed");
    assert!(
        result.content.contains("hello"),
        "expected stdout to contain 'hello', got: {}",
        result.content
    );
    assert!(!result.is_error);
}

#[tokio::test]
async fn bash_runs_normally_without_sandbox_context() {
    // Second guard for the no-sandbox-threaded path (ctx.sandbox = None).
    let tmp = tempfile::tempdir().unwrap();
    let ctx = make_ctx(tmp.path().to_path_buf(), None);
    let bash = BashTool;
    let result = bash
        .call(serde_json::json!({"command": "echo goodbye"}), &ctx)
        .await
        .expect("bash echo goodbye should succeed");
    assert!(result.content.contains("goodbye"));
}

#[cfg(target_os = "macos")]
#[tokio::test]
async fn seatbelt_blocks_writes_outside_project_dir() {
    // End-to-end: enable sandbox, try to write to /etc, expect failure.
    let tmp = tempfile::tempdir().unwrap();
    let cfg = SandboxConfig {
        enabled: true,
        strategy: "seatbelt".to_string(),
        allowed_write_paths: vec![],
        forbidden_paths: vec![],
        allow_network: false,
    };
    let exec = Arc::new(SandboxExecutor::from_config(&cfg, tmp.path()));

    // Skip if seatbelt is unavailable (e.g. a minimal macOS CI image).
    if !exec.is_active() {
        eprintln!("skipping: seatbelt not available on this runner");
        return;
    }

    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let marker = "/etc/agent-code-sandbox-test-marker";
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo test > {marker}"),
            }),
            &ctx,
        )
        .await
        .expect("bash tool call should return a ToolResult even on sandbox denial");

    assert!(
        result.is_error
            || result.content.contains("Operation not permitted")
            || result.content.contains("sandbox")
            || result.content.contains("denied"),
        "expected sandbox denial, got: {}",
        result.content
    );

    // Defense in depth: confirm the marker file was not actually created.
    assert!(
        !std::path::Path::new(marker).exists(),
        "sandbox should have blocked creation of {marker}"
    );
}

#[cfg(target_os = "macos")]
#[tokio::test]
async fn seatbelt_allows_writes_inside_project_dir() {
    // Regression guard: writes inside the project directory must still
    // succeed when the sandbox is active, otherwise the sandbox is useless.
    let tmp = tempfile::tempdir().unwrap();
    let cfg = SandboxConfig {
        enabled: true,
        strategy: "seatbelt".to_string(),
        allowed_write_paths: vec![],
        forbidden_paths: vec![],
        allow_network: false,
    };
    let exec = Arc::new(SandboxExecutor::from_config(&cfg, tmp.path()));

    if !exec.is_active() {
        eprintln!("skipping: seatbelt not available on this runner");
        return;
    }

    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let result = bash
        .call(
            serde_json::json!({
                "command": "echo sandboxed > inside.txt && cat inside.txt",
            }),
            &ctx,
        )
        .await
        .expect("bash tool call should succeed");
    assert!(
        !result.is_error,
        "inside-project write failed: {}",
        result.content
    );
    assert!(result.content.contains("sandboxed"));
}

// ──────────────────────────────────────────────────────────────────
//  Bypass-flag regression tests
// ──────────────────────────────────────────────────────────────────

#[cfg(target_os = "macos")]
#[tokio::test]
async fn dangerously_disable_sandbox_bypasses_when_allowed() {
    // With allow_bypass=true (the default), setting
    // `dangerouslyDisableSandbox: true` must let the command through
    // the sandbox wrapper — verified by successfully writing to /tmp,
    // which is not in the sandbox policy's allow list.
    let tmp = tempfile::tempdir().unwrap();
    let cfg = SandboxConfig {
        enabled: true,
        strategy: "seatbelt".to_string(),
        allowed_write_paths: vec![],
        forbidden_paths: vec![],
        allow_network: false,
    };
    let exec = Arc::new(SandboxExecutor::from_config(&cfg, tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: seatbelt not available");
        return;
    }
    assert!(exec.allow_bypass());

    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    // Probe path: a writable location outside the temp project dir.
    let probe = format!("/tmp/agent-code-bypass-{}", std::process::id());
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo bypass > {probe} && rm {probe} && echo ok"),
                "dangerouslyDisableSandbox": true,
            }),
            &ctx,
        )
        .await
        .expect("bash call should succeed");
    assert!(
        !result.is_error,
        "bypass path should succeed; got: {}",
        result.content
    );
    assert!(result.content.contains("ok"));
}

#[cfg(target_os = "macos")]
#[tokio::test]
async fn dangerously_disable_sandbox_is_ignored_when_bypass_denied() {
    // With allow_bypass=false (e.g. security.disable_bypass_permissions=true),
    // `dangerouslyDisableSandbox: true` must still wrap the command.
    // Writing to /etc should fail exactly like the non-bypassed case.
    let tmp = tempfile::tempdir().unwrap();
    let cfg = SandboxConfig {
        enabled: true,
        strategy: "seatbelt".to_string(),
        allowed_write_paths: vec![],
        forbidden_paths: vec![],
        allow_network: false,
    };
    let exec = Arc::new(SandboxExecutor::from_config_with_bypass(
        &cfg,
        tmp.path(),
        false, // disable bypass
    ));
    if !exec.is_active() {
        eprintln!("skipping: seatbelt not available");
        return;
    }
    assert!(!exec.allow_bypass());

    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let marker = "/etc/agent-code-sandbox-bypass-denied-marker";
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo test > {marker}"),
                "dangerouslyDisableSandbox": true,
            }),
            &ctx,
        )
        .await
        .expect("bash call should return a ToolResult");

    assert!(
        result.is_error || result.content.contains("Operation not permitted"),
        "write should have been blocked despite bypass flag, got: {}",
        result.content
    );
    assert!(!std::path::Path::new(marker).exists());
}

// ──────────────────────────────────────────────────────────────────
//  Environment / cwd / allow-list regression tests
// ──────────────────────────────────────────────────────────────────

#[cfg(target_os = "macos")]
#[tokio::test]
async fn sandboxed_bash_preserves_cwd() {
    // Regression: wrapping the command via sandbox-exec must not drop
    // the current_dir setting. Verified by running `pwd` and comparing.
    let tmp = tempfile::tempdir().unwrap();
    let cfg = SandboxConfig {
        enabled: true,
        strategy: "seatbelt".to_string(),
        allowed_write_paths: vec![],
        forbidden_paths: vec![],
        allow_network: false,
    };
    let exec = Arc::new(SandboxExecutor::from_config(&cfg, tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: seatbelt not available");
        return;
    }
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let result = bash
        .call(serde_json::json!({"command": "pwd"}), &ctx)
        .await
        .expect("pwd should succeed");
    assert!(!result.is_error, "pwd failed: {}", result.content);
    // Canonicalize because macOS tempdirs live under /private/var but
    // bash prints the unresolved form.
    let expected = std::fs::canonicalize(tmp.path()).unwrap();
    assert!(
        result.content.contains(&*expected.display().to_string())
            || result.content.contains(&*tmp.path().display().to_string()),
        "pwd output did not match temp dir: {}",
        result.content
    );
}

#[cfg(target_os = "macos")]
#[tokio::test]
async fn sandboxed_bash_can_write_to_allowed_path() {
    // Regression: an explicit entry in allowed_write_paths must be
    // honored, not just the project directory.
    let tmp = tempfile::tempdir().unwrap();
    let extra = tempfile::tempdir().unwrap();
    let cfg = SandboxConfig {
        enabled: true,
        strategy: "seatbelt".to_string(),
        allowed_write_paths: vec![extra.path().display().to_string()],
        forbidden_paths: vec![],
        allow_network: false,
    };
    let exec = Arc::new(SandboxExecutor::from_config(&cfg, tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: seatbelt not available");
        return;
    }
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let target = extra.path().join("probe.txt");
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo allowed > {}", target.display()),
            }),
            &ctx,
        )
        .await
        .expect("bash call should succeed");
    assert!(
        !result.is_error,
        "write to allowed_write_paths entry should succeed: {}",
        result.content
    );
    assert!(
        target.exists(),
        "target file should exist at {}",
        target.display()
    );
}

// ──────────────────────────────────────────────────────────────────
//  Linux bwrap regression tests
// ──────────────────────────────────────────────────────────────────

#[cfg(target_os = "linux")]
fn bwrap_cfg(allowed_write_paths: Vec<String>) -> SandboxConfig {
    SandboxConfig {
        enabled: true,
        strategy: "bwrap".to_string(),
        allowed_write_paths,
        forbidden_paths: vec![],
        // Leave network on so package-manager-style commands in bash
        // do not appear to hang while CI runs these tests.
        allow_network: true,
    }
}

#[cfg(target_os = "linux")]
#[tokio::test]
async fn bwrap_blocks_writes_outside_project_dir() {
    let tmp = tempfile::tempdir().unwrap();
    let exec = Arc::new(SandboxExecutor::from_config(&bwrap_cfg(vec![]), tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: bwrap not available on this runner");
        return;
    }
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let marker = "/etc/agent-code-bwrap-test-marker";
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo test > {marker} 2>&1; echo exit=$?"),
            }),
            &ctx,
        )
        .await
        .expect("bash tool call should return a ToolResult");

    // The ro-bind / / mount means /etc is read-only inside the namespace;
    // the write will fail with Permission denied / Read-only file system.
    assert!(
        result.content.contains("denied")
            || result.content.contains("Read-only")
            || result.content.contains("exit=1"),
        "expected denial, got: {}",
        result.content
    );
    assert!(
        !std::path::Path::new(marker).exists(),
        "marker file must not have leaked onto the host at {marker}"
    );
}

#[cfg(target_os = "linux")]
#[tokio::test]
async fn bwrap_allows_writes_inside_project_dir() {
    let tmp = tempfile::tempdir().unwrap();
    let exec = Arc::new(SandboxExecutor::from_config(&bwrap_cfg(vec![]), tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: bwrap not available");
        return;
    }
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let result = bash
        .call(
            serde_json::json!({
                "command": "echo sandboxed > inside.txt && cat inside.txt",
            }),
            &ctx,
        )
        .await
        .expect("bash call should succeed");
    assert!(
        !result.is_error,
        "inside-project write failed: {}",
        result.content
    );
    assert!(result.content.contains("sandboxed"));
}

#[cfg(target_os = "linux")]
#[tokio::test]
async fn bwrap_honors_allowed_write_paths() {
    let tmp = tempfile::tempdir().unwrap();
    let extra = tempfile::tempdir().unwrap();
    let extra_path = extra.path().display().to_string();
    let exec = Arc::new(SandboxExecutor::from_config(
        &bwrap_cfg(vec![extra_path.clone()]),
        tmp.path(),
    ));
    if !exec.is_active() {
        eprintln!("skipping: bwrap not available");
        return;
    }
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let target = extra.path().join("probe.txt");
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo allowed > {}", target.display()),
            }),
            &ctx,
        )
        .await
        .expect("bash call should succeed");
    assert!(
        !result.is_error,
        "write to allowed_write_paths entry should succeed: {}",
        result.content
    );
    assert!(
        target.exists(),
        "target file should exist at {}",
        target.display()
    );
}

#[cfg(target_os = "linux")]
#[tokio::test]
async fn bwrap_preserves_cwd() {
    let tmp = tempfile::tempdir().unwrap();
    let exec = Arc::new(SandboxExecutor::from_config(&bwrap_cfg(vec![]), tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: bwrap not available");
        return;
    }
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let result = bash
        .call(serde_json::json!({"command": "pwd"}), &ctx)
        .await
        .expect("pwd should succeed");
    assert!(!result.is_error, "pwd failed: {}", result.content);
    let expected = std::fs::canonicalize(tmp.path()).unwrap();
    assert!(
        result.content.contains(&*expected.display().to_string())
            || result.content.contains(&*tmp.path().display().to_string()),
        "pwd output did not match temp dir: {}",
        result.content
    );
}

#[cfg(target_os = "linux")]
#[tokio::test]
async fn bwrap_dangerously_disable_sandbox_bypasses_when_allowed() {
    let tmp = tempfile::tempdir().unwrap();
    let exec = Arc::new(SandboxExecutor::from_config(&bwrap_cfg(vec![]), tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: bwrap not available");
        return;
    }
    assert!(exec.allow_bypass());
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let probe = format!("/tmp/agent-code-bwrap-bypass-{}", std::process::id());
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo bypass > {probe} && rm {probe} && echo ok"),
                "dangerouslyDisableSandbox": true,
            }),
            &ctx,
        )
        .await
        .expect("bash call should succeed");
    assert!(
        !result.is_error,
        "bypass path should succeed; got: {}",
        result.content
    );
    assert!(result.content.contains("ok"));
}

#[cfg(target_os = "linux")]
#[tokio::test]
async fn bwrap_dangerously_disable_sandbox_is_ignored_when_bypass_denied() {
    let tmp = tempfile::tempdir().unwrap();
    let exec = Arc::new(SandboxExecutor::from_config_with_bypass(
        &bwrap_cfg(vec![]),
        tmp.path(),
        false,
    ));
    if !exec.is_active() {
        eprintln!("skipping: bwrap not available");
        return;
    }
    assert!(!exec.allow_bypass());
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let marker = "/etc/agent-code-bwrap-bypass-denied-marker";
    let result = bash
        .call(
            serde_json::json!({
                "command": format!("echo test > {marker} 2>&1; echo exit=$?"),
                "dangerouslyDisableSandbox": true,
            }),
            &ctx,
        )
        .await
        .expect("bash call should return a ToolResult");
    assert!(
        result.content.contains("denied")
            || result.content.contains("Read-only")
            || result.content.contains("exit=1"),
        "write should have been blocked despite bypass flag, got: {}",
        result.content
    );
    assert!(!std::path::Path::new(marker).exists());
}

#[cfg(target_os = "macos")]
#[tokio::test]
async fn sandboxed_bash_reads_remain_broadly_allowed() {
    // The sandbox grants broad read access so tools can introspect the
    // filesystem. Reading /etc/hosts (present on every macOS box) must
    // still work under the sandbox.
    let tmp = tempfile::tempdir().unwrap();
    let cfg = SandboxConfig {
        enabled: true,
        strategy: "seatbelt".to_string(),
        allowed_write_paths: vec![],
        forbidden_paths: vec![],
        allow_network: false,
    };
    let exec = Arc::new(SandboxExecutor::from_config(&cfg, tmp.path()));
    if !exec.is_active() {
        eprintln!("skipping: seatbelt not available");
        return;
    }
    let ctx = make_ctx(tmp.path().to_path_buf(), Some(exec));
    let bash = BashTool;
    let result = bash
        .call(serde_json::json!({"command": "head -1 /etc/hosts"}), &ctx)
        .await
        .expect("read should succeed");
    assert!(
        !result.is_error,
        "reading /etc/hosts should be allowed: {}",
        result.content
    );
}