koda-sandbox 0.2.19

Capability-aware sandbox layer for Koda — kernel-enforced FS/net/exec policies (refs #934)
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
//! Path defense primitives — application-layer hardening against escape attacks.
//!
//! These complement the kernel sandbox (seatbelt/bwrap) by catching attacks
//! that happen *before* a syscall is issued, such as symlink-based redirects
//! and TOCTOU races on new-file writes.
//!
//! The design mirrors Claude Code's `fsOperations.ts` and
//! `permissions/filesystem.ts`:
//!
//! | This module              | CC equivalent                           |
//! |--------------------------|-----------------------------------------|
//! | [`find_symlink_in_path`] | implicit in `safeResolvePath` (lstat loop) |
//! | [`resolve_deepest_existing_ancestor`] | `resolveDeepestExistingAncestorSync` |
//! | [`paths_for_write_check`]| `getPathsForPermissionCheck`            |
//! | [`is_path_inside`]       | `pathInWorkingPath`                     |
//! | [`is_dangerous_system_path`] | `isDangerousRemovalPath`            |
//!
//! ## Attack classes addressed
//!
//! 1. **Symlink escape** — `./evil → /etc/shadow`. Without chain expansion
//!    the policy check sees `./evil` (inside root); the write lands at
//!    `/etc/shadow`. `paths_for_write_check` expands the full chain and
//!    checks every link.
//!
//! 2. **Dangling-symlink new-file bypass** — `./data/ → /etc/cron.d/`
//!    (directory symlink, target doesn't exist yet at check time). The
//!    write creates a cron job outside the root. `resolve_deepest_existing_ancestor`
//!    walks up to the first real component, canonicalizes it, and rejoins
//!    the non-existing tail so the check sees the real destination.
//!
//! 3. **Catastrophic deletion** — `rm -rf /usr`. `is_dangerous_system_path`
//!    blocks unconditionally regardless of allow rules.
//!
//! 4. **macOS private-symlink bypass** — `/tmp` is a symlink to
//!    `/private/tmp`. Without normalization, a path starting with
//!    `/private/tmp/…` would fail an `is_path_inside(path, /tmp)` check.
//!    Both sides are canonicalized by callers; `is_path_inside` uses
//!    Rust's `Path::starts_with` which is component-aware.
//!
//! ## Invariants
//!
//! - **No panics.** Every function is total; I/O errors are absorbed and
//!   reported through the return type or cause a graceful false-positive
//!   (fail closed on permission checks, fail open on non-existence checks
//!   where the path will be created fresh).
//! - **No blocking inside async**. All functions are synchronous. Callers
//!   in async contexts must use `tokio::task::spawn_blocking` if needed.
//! - **No TOCTOU widening**. We never `stat` the same path twice; we
//!   `symlink_metadata` once and branch on the result immediately.

use std::collections::HashSet;
use std::path::{Component, Path, PathBuf};

/// Maximum symlink hops before we declare a cycle and stop.
/// Matches Linux/macOS `SYMLOOP_MAX` (40) and the CC implementation.
///
/// Acts as the **upper ceiling** on per-write symlink walking. The kernel
/// itself refuses to follow more than this many links, so walking beyond
/// it would be wasted I/O — anything deeper would be denied at the syscall
/// anyway.
const MAX_SYMLINK_DEPTH: usize = 40;

/// Minimum symlink hops the deny-rule walker is **always** willing to follow,
/// regardless of policy.
///
/// Acts as the **lower floor** that prevents the trust-derived
/// `mandatory_deny_search_depth` from weakening the symlink-chain check
/// below a defensible baseline. Plan mode declares depth = 3 for perf,
/// but giving up that early would let an agent register a 4-hop chain
/// (cheap to construct) and bypass the deny check.
///
/// 8 covers the realistic short-chain attack patterns (link → link →
/// dir/file) while still leaving meaningful headroom under `MAX_SYMLINK_DEPTH`
/// for genuinely paranoid (Auto) mode.
const MIN_SAFE_SYMLINK_DEPTH: usize = 8;

// ── 1. find_symlink_in_path ───────────────────────────────────────────────

/// Walk every *existing* prefix of `path` via `symlink_metadata` (lstat)
/// and return the first component that is a symlink, or `None` if every
/// existing component resolves to a real file/directory.
///
/// The walk is prefix-by-prefix (`/a`, `/a/b`, `/a/b/c`, …) and stops
/// at the first non-existing component — we can't lstat what doesn't exist.
///
/// ## Example
///
/// ```
/// # use std::path::Path;
/// // If /tmp is a symlink to /private/tmp on macOS:
/// // find_symlink_in_path(Path::new("/tmp/work/file.txt")) → Some("/tmp")
/// ```
///
/// ## Errors
///
/// Returns `Err` only for unexpected I/O (e.g. permission denied on `lstat`).
/// `ENOENT` is treated as "end of existing prefix" and causes `Ok(None)`.
pub fn find_symlink_in_path(path: &Path) -> std::io::Result<Option<PathBuf>> {
    let mut current = PathBuf::new();

    for component in path.components() {
        match component {
            Component::RootDir | Component::Prefix(_) => {
                current.push(component.as_os_str());
                continue; // root and drive letters are never symlinks
            }
            Component::CurDir | Component::ParentDir => {
                current.push(component.as_os_str());
                continue; // logical — don't lstat `.` or `..`
            }
            Component::Normal(part) => {
                current.push(part);
            }
        }

        match std::fs::symlink_metadata(&current) {
            Ok(meta) if meta.file_type().is_symlink() => {
                return Ok(Some(current));
            }
            Ok(_) => {} // real entry — continue
            Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
                break; // path component doesn't exist; nothing more to walk
            }
            Err(e) => return Err(e),
        }
    }

    Ok(None)
}

// ── 2. resolve_deepest_existing_ancestor ─────────────────────────────────

/// Resolve the deepest *existing* ancestor of `path` through symlinks and
/// return the resolved path with non-existing tail segments re-joined.
///
/// Returns `Some(resolved)` when at least one existing ancestor contains
/// a symlink. Returns `None` when no symlinks are present in the existing
/// prefix (the path's existing portion is already canonical).
///
/// ## Why this matters
///
/// Standard `canonicalize` fails with `ENOENT` for non-existing paths, so
/// a simple `canonicalize(path)` is useless for new-file write checks.
/// Without this function, an agent can bypass write policy via a dangling
/// directory symlink:
///
/// ```text
/// ./uploads/ → /var/www/html/     # symlink created by prior action
/// Write("./uploads/backdoor.php") # check sees "./uploads/" (inside root)
///                                 # write lands at /var/www/html/backdoor.php
/// ```
///
/// This function catches that: it walks up to `./uploads`, detects the
/// symlink, and returns `/var/www/html/backdoor.php` — outside the root.
///
/// ## Equivalent
///
/// Claude Code's `resolveDeepestExistingAncestorSync` in `fsOperations.ts`.
pub fn resolve_deepest_existing_ancestor(path: &Path) -> std::io::Result<Option<PathBuf>> {
    let mut tail: Vec<std::ffi::OsString> = Vec::new();
    let mut dir = path.to_path_buf();

    while let Some(parent_ref) = dir.parent() {
        let parent = parent_ref.to_path_buf();

        match std::fs::symlink_metadata(&dir) {
            Ok(meta) if meta.file_type().is_symlink() => {
                // Found a symlink (live or dangling). Try canonicalize first
                // (handles chained symlinks); fall back to readlink for
                // dangling ones whose target doesn't exist yet.
                let resolved = match std::fs::canonicalize(&dir) {
                    Ok(r) => r,
                    Err(_) => {
                        // Dangling — readlink gives us the raw target.
                        let target = std::fs::read_link(&dir)?;
                        if target.is_absolute() {
                            target
                        } else {
                            dir.parent().map(|p| p.join(&target)).unwrap_or(target)
                        }
                    }
                };
                // Rejoin any non-existing tail that was popped earlier.
                let final_path = tail.iter().rev().fold(resolved, |acc, seg| acc.join(seg));
                return Ok(Some(final_path));
            }
            Ok(_) => {
                // Existing non-symlink: canonicalize resolves any symlinks
                // lurking in *its* ancestors. If canonicalize returns a
                // different path, a symlink existed somewhere above.
                match std::fs::canonicalize(&dir) {
                    Ok(canon) if canon != dir => {
                        let final_path = tail.iter().rev().fold(canon, |acc, seg| acc.join(seg));
                        return Ok(Some(final_path));
                    }
                    Ok(_) => return Ok(None),  // no symlink anywhere above
                    Err(_) => return Ok(None), // EACCES etc — fail open
                }
            }
            Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
                // Non-existing component — pop it and walk up.
                if let Some(name) = dir.file_name() {
                    tail.push(name.to_os_string());
                }
                dir = parent;
                continue;
            }
            Err(e) => return Err(e),
        }
    }

    Ok(None)
}

// ── 3. paths_for_write_check ───────────────────────────────────────────

/// Clamp a policy-supplied symlink-chain depth into the safe operating
/// range `[MIN_SAFE_SYMLINK_DEPTH, MAX_SYMLINK_DEPTH]`.
///
/// Pure function — extracted so the floor/ceiling math can be pinned
/// directly without constructing 12-symlink chains in the test setup.
/// See [`paths_for_write_check`] for the policy semantics.
fn effective_chain_depth(policy_depth: u8) -> usize {
    (policy_depth as usize).clamp(MIN_SAFE_SYMLINK_DEPTH, MAX_SYMLINK_DEPTH)
}

/// Collect every path that must be validated before allowing a write to
/// `path`. The returned `Vec` always contains at least `[path]`.
///
/// For symlinks the list contains the original path, all intermediate link
/// targets in the chain, and the final resolved path. This ensures a deny
/// rule on `/etc/passwd` fires even when the agent writes through
/// `./evil.txt → /etc/passwd` — every hop is checked.
///
/// ## Algorithm (mirrors CC `getPathsForPermissionCheck`)
///
/// 1. Seed the set with the original path.
/// 2. If the path doesn't exist on disk, call
///    [`resolve_deepest_existing_ancestor`] to detect dangling-symlink
///    redirects and add the resolved destination.
/// 3. Otherwise follow the symlink chain: at each hop, add the current
///    target; break on non-symlink, FIFO/socket/device, or cycle.
/// 4. Cap hops at the **effective depth** — see below.
/// 5. Add the final `canonicalize()` result for completeness (resolves any
///    remaining directory-component symlinks).
///
/// ## Effective depth
///
/// The actual hop limit is
/// `clamp(deny_search_depth, MIN_SAFE_SYMLINK_DEPTH..=MAX_SYMLINK_DEPTH)`:
///
/// - **Floor at `MIN_SAFE_SYMLINK_DEPTH` (8)** — stops Plan mode's perf
///   tuning (depth = 3) from weakening the deny check below a defensible
///   baseline. A 4-hop bypass chain is cheap to construct, so capping
///   below 8 would be a real security regression.
/// - **Ceiling at `MAX_SYMLINK_DEPTH` (40)** — the kernel refuses past
///   `SYMLOOP_MAX` anyway, so walking deeper is wasted I/O.
///
/// `deny_search_depth = 0` is a legal sentinel meaning "use the floor";
/// callers without policy context can pass `0` and get safe behavior.
///
/// ## Errors
///
/// Never fails — I/O errors inside the chain walk are silently swallowed
/// and the function returns whatever it collected so far. The caller's
/// policy check is fail-closed: if we can't prove a path is inside the
/// root, it's denied.
pub fn paths_for_write_check(path: &Path, deny_search_depth: u8) -> Vec<PathBuf> {
    let mut result: HashSet<PathBuf> = HashSet::new();
    result.insert(path.to_path_buf());

    // ── Case A: path doesn't exist yet ────────────────────────────────────
    match std::fs::symlink_metadata(path) {
        Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
            // Could be a dangling symlink or a genuinely new file. Either
            // way, resolve the deepest existing ancestor so we know where
            // the write would *actually* land after the OS follows links.
            if let Ok(Some(resolved)) = resolve_deepest_existing_ancestor(path) {
                result.insert(resolved);
            }
            return result.into_iter().collect();
        }
        _ => {}
    }

    // ── Case B: path exists — follow the symlink chain ────────────────────
    let mut current = path.to_path_buf();
    let mut visited: HashSet<PathBuf> = HashSet::new();

    for _ in 0..effective_chain_depth(deny_search_depth) {
        if visited.contains(&current) {
            break; // cycle detected
        }
        visited.insert(current.clone());

        let meta = match std::fs::symlink_metadata(&current) {
            Ok(m) => m,
            Err(_) => break,
        };

        // Guard: FIFOs, sockets, and block/char devices can cause hangs or
        // irreversible side-effects. Stop the chain here (same guard as CC).
        #[cfg(unix)]
        {
            use std::os::unix::fs::FileTypeExt as _;
            let ft = meta.file_type();
            if ft.is_fifo() || ft.is_socket() || ft.is_block_device() || ft.is_char_device() {
                break;
            }
        }

        if !meta.file_type().is_symlink() {
            // Real file or directory — canonicalize and add the final path.
            if let Ok(canon) = std::fs::canonicalize(&current) {
                result.insert(canon);
            }
            break;
        }

        // Follow the symlink: readlink → resolve relative targets.
        let target = match std::fs::read_link(&current) {
            Ok(t) => t,
            Err(_) => break,
        };
        let next = if target.is_absolute() {
            target
        } else {
            match current.parent() {
                Some(parent) => parent.join(&target),
                None => break,
            }
        };

        result.insert(next.clone());
        current = next;
    }

    result.into_iter().collect()
}

// ── 4. is_path_inside ────────────────────────────────────────────────────

/// True when `path` is equal to `root` or is a descendant of `root`.
///
/// Both inputs **must be canonicalized** by the caller (via
/// `std::fs::canonicalize` or [`resolve_deepest_existing_ancestor`]).
/// This function does no I/O — it compares components directly.
///
/// Uses Rust's `Path::starts_with` which is component-aware:
/// - `is_path_inside("/etc/password", "/etc/pass")` → `false` ✅
/// - `is_path_inside("/etc/passwd", "/etc")` → `true` ✅
/// - `is_path_inside("/etc", "/etc")` → `true` ✅
///
/// ## Equivalent
///
/// Claude Code's `pathInWorkingPath` (after both sides are canonicalized).
#[inline]
pub fn is_path_inside(path: &Path, root: &Path) -> bool {
    path.starts_with(root)
}

// ── 5. is_dangerous_system_path ──────────────────────────────────────────

/// True when `path` is a system-critical location that should never be
/// the target of a write or deletion, even if a broad allow rule exists.
///
/// This is a last-resort guard — it fires *after* all other policy checks
/// and cannot be overridden by any allow rule.
///
/// ## Blocked paths (mirrors CC `isDangerousRemovalPath`)
///
/// | Category | Rule |
/// |---|---|
/// | Filesystem root | `/` exactly |
/// | Home directory | `$HOME` exactly (runtime check) |
/// | Direct children of root | `/usr`, `/etc`, `/var`, `/bin`, etc. — but `/usr/local` is **safe** |
/// | Glob wildcards | `*` or paths ending in `/*` |
/// | Windows drive roots | `C:\`, `C:\Windows`, etc. |
///
/// The "direct child of `/`" rule captures all of `/bin`, `/sbin`, `/etc`,
/// `/usr`, `/var`, `/dev`, `/proc`, `/sys`, `/tmp`, `/Library`,
/// `/System`, etc. without needing an explicit allowlist — matching CC's
/// `dirname(normalizedPath) === '/'` condition exactly.
///
/// ## Equivalent
///
/// Claude Code's `isDangerousRemovalPath` in `permissions/pathValidation.ts`.
pub fn is_dangerous_system_path(path: &Path) -> bool {
    // Glob wildcard check (guard for bash-expansion paths stored as PathBuf).
    {
        let s = path.to_string_lossy();
        if s == "*" || s.ends_with("/*") || s.ends_with("/\\*") {
            return true;
        }
    }

    // Root itself.
    if path == Path::new("/") {
        return true;
    }

    // Home directory exactly (not subdirectories — those are user data).
    if let Ok(home) = std::env::var("HOME")
        && path == Path::new(&home)
    {
        return true;
    }

    // Windows system paths.
    #[cfg(windows)]
    {
        let s = path.to_string_lossy().to_lowercase();
        // Drive roots: C:\ or C:
        if s.len() <= 3 && s.chars().nth(1) == Some(':') {
            return true;
        }
        // Direct children of drive root: C:\Windows, C:\Users, etc.
        // (exactly one path segment after the drive root)
        if let Some(parent) = path.parent() {
            let parent_s = parent.to_string_lossy().to_lowercase();
            if parent_s.len() <= 3 && parent_s.chars().nth(1) == Some(':') {
                return true;
            }
        }
    }

    // POSIX: direct children of root (parent == "/").
    if let Some(parent) = path.parent()
        && parent == Path::new("/")
    {
        return true;
    }

    false
}

// ── Tests ─────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;
    use std::fs;

    // ── is_path_inside ────────────────────────────────────────────────────

    #[test]
    fn same_path_is_inside() {
        assert!(is_path_inside(Path::new("/a/b"), Path::new("/a/b")));
    }

    #[test]
    fn child_is_inside() {
        assert!(is_path_inside(Path::new("/a/b/c"), Path::new("/a/b")));
    }

    #[test]
    fn sibling_is_not_inside() {
        assert!(!is_path_inside(Path::new("/a/bc"), Path::new("/a/b")));
    }

    #[test]
    fn parent_is_not_inside_child() {
        assert!(!is_path_inside(Path::new("/a"), Path::new("/a/b")));
    }

    #[test]
    fn prefix_match_respects_component_boundary() {
        // /etc/password must NOT match root /etc/pass
        assert!(!is_path_inside(
            Path::new("/etc/password"),
            Path::new("/etc/pass")
        ));
    }

    // ── is_dangerous_system_path ─────────────────────────────────

    #[test]
    fn root_is_dangerous() {
        assert!(is_dangerous_system_path(Path::new("/")));
    }

    #[test]
    fn direct_children_of_root_are_dangerous() {
        // Matches CC's `dirname(normalizedPath) === '/'` rule.
        for p in [
            "/usr",
            "/etc",
            "/bin",
            "/sbin",
            "/dev",
            "/proc",
            "/sys",
            "/var",
            "/tmp",
            "/boot",
            "/lib",
            "/lib64",
            "/System",
            "/Library",
            "/Applications",
        ] {
            assert!(
                is_dangerous_system_path(Path::new(p)),
                "{p} should be dangerous"
            );
        }
    }

    #[test]
    fn subdirs_of_system_dirs_are_safe() {
        // CC allows subdirs: /usr/local, /var/tmp/work, /tmp/myapp, etc.
        for p in [
            "/usr/local",
            "/usr/local/share",
            "/var/tmp/build",
            "/tmp/sandbox",
            "/etc/apache2",
        ] {
            assert!(
                !is_dangerous_system_path(Path::new(p)),
                "{p} should be safe"
            );
        }
    }

    #[test]
    fn user_project_dirs_are_safe() {
        for p in ["/home/user/project", "/Users/alice/work"] {
            assert!(
                !is_dangerous_system_path(Path::new(p)),
                "{p} should be safe"
            );
        }
    }

    #[test]
    fn glob_wildcards_are_dangerous() {
        assert!(is_dangerous_system_path(Path::new("*")));
        assert!(is_dangerous_system_path(Path::new("/home/user/*")));
    }

    // ── find_symlink_in_path ──────────────────────────────────────────────

    #[test]
    fn no_symlink_returns_none() {
        let tmp = tempfile::tempdir().unwrap();
        let file = tmp.path().join("real.txt");
        fs::write(&file, b"hi").unwrap();
        let result = find_symlink_in_path(&file).unwrap();
        // The tmp dir itself may be a symlink on macOS (/var → /private/var),
        // so just verify we don't panic. The real assertion is that when
        // there are no symlinks in a purely real path, we get None.
        // (We test the symlink case below.)
        let _ = result;
    }

    #[cfg(unix)]
    #[test]
    fn symlink_component_detected() {
        let tmp = tempfile::tempdir().unwrap();
        let real_dir = tmp.path().join("real");
        let link_dir = tmp.path().join("link");
        let target_file = real_dir.join("secret.txt");

        fs::create_dir_all(&real_dir).unwrap();
        fs::write(&target_file, b"secret").unwrap();
        std::os::unix::fs::symlink(&real_dir, &link_dir).unwrap();

        let path_through_link = link_dir.join("secret.txt");
        let found = find_symlink_in_path(&path_through_link).unwrap();
        assert!(found.is_some(), "should detect symlink component");
    }

    // ── paths_for_write_check ─────────────────────────────────────────────

    #[test]
    fn real_file_returns_at_least_original() {
        let tmp = tempfile::tempdir().unwrap();
        let file = tmp.path().join("plain.txt");
        fs::write(&file, b"x").unwrap();
        let paths = paths_for_write_check(&file, 0);
        assert!(paths.contains(&file) || paths.iter().any(|p| p.ends_with("plain.txt")));
    }

    #[cfg(unix)]
    #[test]
    fn symlink_expands_to_full_chain() {
        let tmp = tempfile::tempdir().unwrap();
        let real = tmp.path().join("real.txt");
        let link = tmp.path().join("link.txt");
        fs::write(&real, b"secret").unwrap();
        std::os::unix::fs::symlink(&real, &link).unwrap();

        let paths = paths_for_write_check(&link, 0);

        // Should contain at minimum: the link itself and the real target.
        assert!(paths.len() >= 2, "expected ≥2 paths, got {paths:?}");
        let has_real = paths.iter().any(|p| {
            p.ends_with("real.txt")
                || std::fs::canonicalize(p)
                    .ok()
                    .map(|c| c.ends_with("real.txt"))
                    .unwrap_or(false)
        });
        assert!(has_real, "resolved target should be in chain: {paths:?}");
    }

    #[cfg(unix)]
    #[test]
    fn dangling_symlink_ancestor_resolved() {
        let tmp = tempfile::tempdir().unwrap();
        let outside = tmp.path().join("outside");
        let link = tmp.path().join("link");

        // Dangling symlink — outside doesn't exist yet.
        std::os::unix::fs::symlink(&outside, &link).unwrap();

        let check_target = link.join("new_file.txt");
        let paths = paths_for_write_check(&check_target, 0);

        // The resolved path should point to outside/new_file.txt, not link/new_file.txt.
        let has_outside = paths.iter().any(|p| p.ends_with("outside/new_file.txt"));
        assert!(
            has_outside,
            "dangling symlink should resolve to outside dir: {paths:?}"
        );
    }

    // ── effective_chain_depth (PR-6a: trust-derived deny-search depth) ────────

    /// Load-bearing test for the security argument of
    /// `mandatory_deny_search_depth`'s floor: Plan mode declares depth = 3
    /// for perf, but we MUST never walk fewer than `MIN_SAFE_SYMLINK_DEPTH`
    /// hops or a 4-link bypass chain becomes a real escape.
    #[test]
    fn effective_chain_depth_respects_min_floor_for_plan_mode() {
        // Plan mode value from policy_for_agent.
        assert_eq!(effective_chain_depth(3), MIN_SAFE_SYMLINK_DEPTH);
        // Sentinel "no policy" value also routes through the floor.
        assert_eq!(effective_chain_depth(0), MIN_SAFE_SYMLINK_DEPTH);
        // Any policy below the floor pins to the floor.
        for d in 0..=MIN_SAFE_SYMLINK_DEPTH as u8 {
            assert_eq!(
                effective_chain_depth(d),
                MIN_SAFE_SYMLINK_DEPTH,
                "depth {d} must clamp UP to floor {MIN_SAFE_SYMLINK_DEPTH}"
            );
        }
    }

    /// Auto mode declares depth = 10. Verify that's allowed through
    /// unmodified — the floor only kicks in below MIN_SAFE.
    #[test]
    fn effective_chain_depth_passes_through_in_band_values() {
        // Safe = 5 — below floor, clamps up.
        assert_eq!(effective_chain_depth(5), MIN_SAFE_SYMLINK_DEPTH);
        // Auto = 10 — above floor, passes through.
        assert_eq!(effective_chain_depth(10), 10);
        // Mid-range value passes through unmodified.
        assert_eq!(effective_chain_depth(20), 20);
    }

    /// Load-bearing test for the ceiling: no policy value can push us
    /// past the kernel's own SYMLOOP_MAX. Walking deeper would be wasted
    /// I/O — the kernel rejects past 40 anyway.
    #[test]
    fn effective_chain_depth_caps_at_kernel_max() {
        assert_eq!(effective_chain_depth(40), MAX_SYMLINK_DEPTH);
        assert_eq!(effective_chain_depth(100), MAX_SYMLINK_DEPTH);
        assert_eq!(effective_chain_depth(u8::MAX), MAX_SYMLINK_DEPTH);
    }

    /// Strictly-monotone-non-decreasing across the [MIN_SAFE, MAX] band.
    /// If this fires, someone broke the clamp shape.
    #[test]
    fn effective_chain_depth_is_monotone_non_decreasing() {
        let mut prev = effective_chain_depth(0);
        for d in 1..=u8::MAX {
            let cur = effective_chain_depth(d);
            assert!(cur >= prev, "depth {d}: {cur} regressed from prev {prev}");
            prev = cur;
        }
    }

    // ── resolve_deepest_existing_ancestor ─────────────────────────────

    #[test]
    fn ancestor_no_symlink_returns_none() {
        let tmp = tempfile::tempdir().unwrap();
        let result = resolve_deepest_existing_ancestor(tmp.path()).unwrap();
        // tmp itself might be via /var → /private/var on macOS, so this
        // is always Some on macOS. On Linux it should be None.
        // Just assert no panic.
        let _ = result;
    }

    #[cfg(unix)]
    #[test]
    fn live_symlink_resolved() {
        let tmp = tempfile::tempdir().unwrap();
        let real_dir = tmp.path().join("real");
        let link_dir = tmp.path().join("link");
        fs::create_dir_all(&real_dir).unwrap();
        std::os::unix::fs::symlink(&real_dir, &link_dir).unwrap();

        let path = link_dir.join("new_file.txt");
        let resolved = resolve_deepest_existing_ancestor(&path).unwrap();
        let resolved = resolved.expect("should find a symlink");
        assert!(resolved.ends_with("real/new_file.txt"), "got: {resolved:?}");
    }
}