Skip to main content

safe_chains/
lib.rs

1// The generated test names spell the command and its flags verbatim, and FLAG CASE IS MEANINGFUL:
2// find takes both `-D` and `-d`, `-P` and `-p`, `-L` and `-l`, and commands like `asn1Decoding` and
3// `checkLocalKDC` are camel-case upstream. Lowercasing to satisfy `non_snake_case` would erase the
4// distinction the test exists to pin, so the generated items opt out instead.
5#[cfg(test)]
6macro_rules! safe {
7    ($($name:ident: $cmd:expr),* $(,)?) => {
8        $(#[test] #[allow(non_snake_case)] fn $name() { assert!(check($cmd), "expected safe: {}", $cmd); })*
9    };
10}
11
12#[cfg(test)]
13macro_rules! denied {
14    ($($name:ident: $cmd:expr),* $(,)?) => {
15        $(#[test] #[allow(non_snake_case)] fn $name() { assert!(!check($cmd), "expected denied: {}", $cmd); })*
16    };
17}
18
19#[cfg(test)]
20macro_rules! inert {
21    ($($name:ident: $cmd:expr),* $(,)?) => {
22        $(#[test] #[allow(non_snake_case)] fn $name() {
23            assert_eq!(
24                crate::command_verdict($cmd),
25                crate::verdict::Verdict::Allowed(crate::verdict::SafetyLevel::Inert),
26                "expected Inert: {}", $cmd,
27            );
28        })*
29    };
30}
31
32#[cfg(test)]
33macro_rules! safe_read {
34    ($($name:ident: $cmd:expr),* $(,)?) => {
35        $(#[test] #[allow(non_snake_case)] fn $name() {
36            assert_eq!(
37                crate::command_verdict($cmd),
38                crate::verdict::Verdict::Allowed(crate::verdict::SafetyLevel::SafeRead),
39                "expected SafeRead: {}", $cmd,
40            );
41        })*
42    };
43}
44
45#[cfg(test)]
46macro_rules! safe_write {
47    ($($name:ident: $cmd:expr),* $(,)?) => {
48        $(#[test] #[allow(non_snake_case)] fn $name() {
49            assert_eq!(
50                crate::command_verdict($cmd),
51                crate::verdict::Verdict::Allowed(crate::verdict::SafetyLevel::SafeWrite),
52                "expected SafeWrite: {}", $cmd,
53            );
54        })*
55    };
56}
57
58pub mod cli;
59#[cfg(test)]
60mod composition;
61pub mod cst;
62#[cfg(test)]
63mod handler_property_tests;
64pub mod docs;
65pub mod engine;
66mod envvars;
67mod handlers;
68pub mod netloc;
69pub mod parse;
70pub mod pathctx;
71pub mod pathgate;
72pub mod policy;
73pub mod registry;
74pub mod suggest;
75pub mod allowlist;
76pub mod targets;
77pub mod verdict;
78
79pub use verdict::{SafetyLevel, Verdict};
80
81/// The facet profile behind a verdict, rendered for `--explain`.
82///
83/// Answers the question the boolean cannot: not "is this allowed" but "on which axis was it
84/// refused". Empty when no resolver claims the command — that is the answer too, since it means the
85/// legacy classifier decided and there are no facets to show.
86pub fn facet_breakdown(command: &str) -> String {
87    // One simple command only. `shell_words` has no idea what `&&` means, so on a chain it hands
88    // back one flat token list and the resolver reads the SECOND command's arguments as flags of
89    // the first — `aws dynamodb scan --table-name t && rm -rf /` produced a single worst-case
90    // profile belonging to neither segment. A diagnostic that invents a capability set no resolver
91    // emitted is worse than silence, and `render()` above already breaks the chain down per segment.
92    if cst::explain(command).segments.len() != 1 {
93        return "\n  (facet breakdown covers one command at a time; run --explain on a single segment)\n"
94            .to_string();
95    }
96    let Ok(words) = shell_words::split(command) else {
97        return String::new();
98    };
99    if words.is_empty() {
100        return String::new();
101    }
102    let tokens: Vec<parse::Token> = words.into_iter().map(parse::Token::from_raw).collect();
103    let Some(ex) = engine::bridge::explain_profile(&tokens) else {
104        return String::new();
105    };
106    let mut out = String::from("\n  resolved profile:\n");
107    for (because, facets) in &ex.capabilities {
108        out.push_str(&format!("    · {because}\n"));
109        for (name, term) in facets {
110            out.push_str(&format!("        {name:<28} {term}\n"));
111        }
112    }
113    match &ex.blocked_by {
114        Some((level, mismatch)) => {
115            out.push_str(&format!(
116                "\n  refused by `{level}` (the most permissive auto-approving level):\n    {mismatch}\n",
117            ));
118        }
119        None => out.push_str("\n  admitted by the auto-approve band.\n"),
120    }
121    out
122}
123
124pub fn is_safe_command(command: &str) -> bool {
125    command_verdict(command).is_allowed()
126}
127
128pub fn command_verdict(command: &str) -> Verdict {
129    cst::command_verdict(command)
130}
131
132/// Classify `command` against an UPPER-band level (`local-admin`/`network-admin`/`yolo`), which
133/// has no 3-value legacy ceiling. Every engine-resolved leaf is decided by `Level::admits`
134/// against `level` instead of the lower-band projection; a `Denied` on any segment dominates.
135/// Legacy (unresolved) leaves keep their local-safe `SafeWrite`-or-below verdict, which every
136/// upper level admits. The result is `Allowed(SafeWrite)` (accepted by the shared upper ceiling)
137/// or `Denied`.
138pub fn command_verdict_at_level(command: &str, level: &'static engine::level::Level) -> Verdict {
139    let _guard = engine::bridge::enter_eval_level(level);
140    cst::command_verdict(command)
141}
142
143/// The `&'static Level` for an UPPER-band level name, or `None` for the lower band (which the
144/// 3-value ceiling already handles) or an unknown name. The caller passes the CANONICAL name
145/// (legacy aliases already resolved).
146pub fn upper_level_by_name(name: &str) -> Option<&'static engine::level::Level> {
147    if !matches!(name, "local-admin" | "network-admin" | "yolo") {
148        return None;
149    }
150    engine::authoring::default_levels().iter().find(|l| l.name == name)
151}
152
153/// Resolve a level NAME to its `(3-band ceiling, engine level for admits)`, or `None` for an unknown
154/// name. The ceiling gates the projected verdict; the engine level (when present) classifies per-level
155/// via `admits`, exposing distinctions the 3-band projection flattens — `editor` (no destroy, no
156/// sibling write) vs `developer`, and the upper band (git push, bulk-object-read, sudo). `paranoid`/
157/// `reader` are pure ceilings (their read/inert bands need no `admits`), and `developer` IS the default
158/// band, so those carry no engine level. Legacy aliases (`safe-write`) canonicalize first.
159pub fn level_ceiling(name: &str) -> Option<(SafetyLevel, Option<&'static engine::level::Level>)> {
160    let (ceiling, legacy_of) = verdict::SafetyLevel::resolve_threshold(name)?;
161    let canonical = legacy_of.unwrap_or(name);
162    // Levels whose rule the 3-band projection can't express classify per-level via `admits`:
163    // `editor` (no destroy, no sibling write — distinct from developer) and the UPPER band (git push,
164    // bulk-object-read, sudo — above the band). `paranoid`/`reader` are pure ceilings (their
165    // inert/read bands need no `admits`; the `<= threshold` gate tightens), and `developer` IS the
166    // default band — those carry no engine level.
167    let engine_level = match canonical {
168        "editor" | "local-admin" | "network-admin" | "yolo" => {
169            engine::authoring::default_levels().iter().find(|l| l.name == canonical)
170        }
171        _ => None,
172    };
173    Some((ceiling, engine_level))
174}
175
176/// The ceilinged verdict: classify `command` at `(threshold, engine_level)`, gating the projected
177/// level `<= threshold`. The single seam both the CLI (`--level`) and the hook (configured `level`)
178/// funnel through. `engine_level = Some` classifies via `Level::admits` (the fine per-level model);
179/// `None` uses the 3-band projection. Either way the result is gated to `threshold`, so a legacy leaf
180/// that bypasses the engine (a redirect write → `SafeWrite`) is still held under a lower ceiling.
181pub fn command_verdict_ceilinged(
182    command: &str,
183    threshold: SafetyLevel,
184    engine_level: Option<&'static engine::level::Level>,
185) -> Verdict {
186    let verdict = match engine_level {
187        Some(level) => command_verdict_at_level(command, level),
188        None => command_verdict(command),
189    };
190    match verdict {
191        Verdict::Allowed(level) if level <= threshold => Verdict::Allowed(level),
192        _ => Verdict::Denied,
193    }
194}
195
196/// The coverage-fallback explanation (built-in classifier + the user's `permissions.allow` patterns),
197/// computed UNDER the configured engine level so a covered command honors that level's rule — a
198/// worktree destroy an `editor` plan forbids classifies as denied here too, not re-admitted. `None`
199/// engine level → the plain 3-band coverage (paranoid/reader/default). The caller still gates the
200/// result's `overall <= threshold`; running under the level closes the last path a lower plan's
201/// tighter rule could leak through.
202pub fn explain_with_coverage_at_level(
203    command: &str,
204    engine_level: Option<&'static engine::level::Level>,
205) -> cst::Explanation {
206    let patterns = allowlist::Matcher::load();
207    let _guard = engine_level.map(engine::bridge::enter_eval_level);
208    cst::explain_with_coverage(command, &patterns)
209}
210
211/// The auto-approve ceiling the HOOK evaluates at, from the write-protected user config
212/// (`~/.config/safe-chains.toml`, `level = "…"`). No config, or an unknown name → the default
213/// `developer` band (`SafeWrite`, no engine level) — fail-safe. Honored ONLY from the user config,
214/// never a repo `.safe-chains.toml`; the file is write-denied, so an agent cannot set its own ceiling.
215pub fn configured_hook_ceiling() -> (SafetyLevel, Option<&'static engine::level::Level>) {
216    registry::user_config_level()
217        .and_then(|name| level_ceiling(&name))
218        .unwrap_or((SafetyLevel::SafeWrite, None))
219}
220
221/// Classify `command` with the harness-supplied directory context installed (HP-19), so
222/// relative paths resolve against the real `cwd`/`root`. `command_verdict(cmd)` is the
223/// no-context form (`PathCtx::default()`), preserving every existing caller.
224pub fn command_verdict_in(command: &str, ctx: pathctx::PathCtx) -> Verdict {
225    let _guard = pathctx::enter(ctx);
226    cst::command_verdict(command)
227}
228
229/// Why a not-auto-approved command's path reach was flagged — so the nudge can explain the actual
230/// reason instead of a one-size-fits-all "outside the working directory". A peer's hidden file and a
231/// path genuinely above cwd both deny, but the remedy differs, and conflating them is what reads as
232/// "directory parsing is broken".
233#[derive(Debug, Clone, Copy, PartialEq, Eq)]
234pub enum ReachReason {
235    /// A known credential store (`.ssh`, `.aws`, keychain…).
236    Credential,
237    /// A HIDDEN file inside a co-located peer project — the peer's ordinary source is readable as
238    /// `adjacent`, but its dotfiles/dotdirs are shielded.
239    HiddenPeer,
240    /// Genuinely above/outside the working directory.
241    OutsideWorkspace,
242    /// A temp path that is NOT this session's scratchpad. Reading and writing it is fine; RUNNING
243    /// code from it is not, because anonymous `/tmp` is where downloaded/foreign code lands. This
244    /// is the one reach whose remedy is usually "that IS my working directory" — so the nudge says
245    /// how to bless it rather than implying the agent did something wrong.
246    ForeignTemp,
247}
248
249/// Render command-derived text safely INSIDE one of our messages.
250///
251/// The explanation is read by a human deciding whether to approve, and on the Claude and Qwen
252/// targets it is injected into the model's context as `additionalContext`. Command text is not
253/// trustworthy input for either job: a command routinely carries data the agent picked up from a
254/// file, an issue title, a downloaded manifest. Echoed raw, a newline in it forged a whole extra
255/// line of our OWN output —
256///
257/// ```text
258///   ✗  cat "/etc/x
259///   ✓  ls   safe-chains: auto-approves.
260/// ```
261///
262/// — so the reader saw an approval that never happened, in our voice. Escaping the control
263/// characters keeps any echoed text to a single line of literal content, which is the property
264/// that makes forging a second line impossible. Bidi controls go too: they reorder what is
265/// DISPLAYED without changing the bytes, which is the same forgery by other means.
266///
267/// This neutralizes our own OUTPUT. It is not a check on the command and decides nothing.
268pub fn sanitize_display(s: &str) -> String {
269    let mut out = String::with_capacity(s.len());
270    for c in s.chars() {
271        match c {
272            '\n' => out.push_str("\\n"),
273            '\r' => out.push_str("\\r"),
274            '\t' => out.push_str("\\t"),
275            // C0/C1 controls, and the bidi overrides/isolates/marks.
276            c if c.is_control()
277                || matches!(c, '\u{202A}'..='\u{202E}' | '\u{2066}'..='\u{2069}' | '\u{200E}' | '\u{200F}') =>
278            {
279                out.push_str(&format!("\\u{{{:04x}}}", c as u32));
280            }
281            c => out.push(c),
282        }
283    }
284    out
285}
286
287impl ReachReason {
288    /// The self-contained nudge body ("it reaches `X`, …") including the reason-appropriate remedy.
289    /// Callers add their own framing (block / please-confirm) and the docs link.
290    pub fn message(self, path: &str) -> String {
291        let path = &sanitize_display(path);
292        match self {
293            ReachReason::Credential => format!(
294                "it reaches `{path}`, a credential store the agent should almost certainly not touch. \
295                 If this was not intended, stop it"
296            ),
297            ReachReason::HiddenPeer => format!(
298                "it reaches `{path}`, a HIDDEN file inside a co-located peer project. The peer's \
299                 ordinary source is readable, but its hidden files (`.env`, `.git`, `.aws`, …) are \
300                 shielded — this is a deliberate guard, not a path error. To reach it, grant that \
301                 path in ~/.config/safe-chains.toml, or run the agent from the peer's parent \
302                 directory so the peer counts as in-workspace"
303            ),
304            ReachReason::ForeignTemp => format!(
305                "it runs code from `{path}`, a temporary directory that is not this session's \
306                 scratchpad. Temp files can be read and written freely, but code there is treated \
307                 as FOREIGN (a downloaded script lands in the same place), so running it is not \
308                 auto-approved. If this is a working directory you trust, grant it in \
309                 ~/.config/safe-chains.toml; a scratchpad the harness reports for this session is \
310                 recognized automatically and needs no grant"
311            ),
312            ReachReason::OutsideWorkspace => match pathctx::cwd().map(|c| sanitize_display(&c)) {
313                Some(cwd) => format!(
314                    "it reaches `{path}`, outside the working directory `{cwd}`. If the agent is \
315                     running from the wrong directory — an easy thing to forget — relaunch it where \
316                     you meant to be; to allow it from here, grant that path in \
317                     ~/.config/safe-chains.toml"
318                ),
319                None => format!(
320                    "it reaches `{path}`, outside the working directory. To allow it, grant that \
321                     path in ~/.config/safe-chains.toml"
322                ),
323            },
324        }
325    }
326}
327
328/// If a NOT-auto-approved command reaches a path OUTSIDE the workspace, return that path (its
329/// original spelling) and WHY, so the hook can nudge instead of silently prompting. Resolves against
330/// the ambient `cwd`/`root`: relative worktree paths, `/tmp`, and `/dev` streams are admitted and
331/// skipped; an absolute or home path that isn't admitted for read *or* write is the reach. A
332/// credential store outranks the hidden-peer wording; a hidden peer path outranks the generic
333/// outside-workspace reason.
334pub fn workspace_overreach(command: &str) -> Option<(String, ReachReason)> {
335    let tokens = operand_words(command)?;
336    tokens.into_iter().find_map(|t| {
337        if !policy::looks_like_path(&t) {
338            return None;
339        }
340        let resolved = pathctx::resolve(&t).into_owned();
341        // A temp path is READ/WRITE admitted, so the outside-test below never fires on it — but it
342        // is not EXECUTABLE unless it is this session's scratchpad. When the command was denied,
343        // that is the likely reason, and it is the one case where the fix is a grant rather than a
344        // correction, so surface it with those instructions.
345        if pathctx::under_temp_root(&resolved) && !pathctx::in_session_scratchpad(&resolved) {
346            return Some((t, ReachReason::ForeignTemp));
347        }
348        let outside = (resolved.starts_with('/') || resolved.starts_with('~'))
349            && (!engine::resolve::read_content_verdict(&resolved).is_allowed()
350                || !engine::resolve::write_target_verdict(&resolved).is_allowed());
351        if !outside {
352            return None;
353        }
354        let reason = if engine::resolve::reads_secret(&resolved) {
355            ReachReason::Credential
356        } else if engine::resolve::hidden_peer_reach(&t) {
357            ReachReason::HiddenPeer
358        } else {
359            ReachReason::OutsideWorkspace
360        };
361        Some((t, reason))
362    })
363}
364
365/// The words a command actually RUNS with, for explaining a denial.
366///
367/// This must agree with the parse the verdict came from, so it walks the CST. Splitting the raw
368/// string instead (`shell_words::split`) tokenizes text the shell never treats as an argument —
369/// above all a heredoc BODY, which is data. `git commit -m "$(cat <<'EOF' … EOF)"` whose message
370/// merely MENTIONS `/etc/hosts` was reported as "reaches /etc/hosts", naming a false reason for the
371/// denial and advising the reader to grant that path — a config widening the command never needed.
372///
373/// Falls back to the raw split only when the command does not parse, where a best-effort nudge on
374/// approximate tokens still beats none.
375fn operand_words(command: &str) -> Option<Vec<String>> {
376    let Some(script) = cst::parse(command) else {
377        return shell_words::split(command).ok();
378    };
379    let mut out = Vec::new();
380    collect_script_words(&script, &mut out);
381    Some(out)
382}
383
384/// A word contributes its own expansions AND the words of any command substitution inside it: the
385/// inner command runs, so `notacommand $(cat /etc/shadow)` really does read the file, even though
386/// `expand()` renders the substitution as an opaque stand-in and hides the path.
387fn collect_word(word: &cst::Word, out: &mut Vec<String>) {
388    out.extend(word.expand());
389    for part in &word.0 {
390        collect_part_subs(part, out);
391    }
392}
393
394/// The words of any command SUBSTITUTION inside a word part, and nothing else — the part's own
395/// literal text is the caller's business, because whether it counts as an operand depends on where
396/// the word came from (a heredoc body's literal text never does).
397fn collect_part_subs(part: &cst::WordPart, out: &mut Vec<String>) {
398    use cst::WordPart;
399    match part {
400        WordPart::CmdSub(script) | WordPart::ProcSub(script) => collect_script_words(script, out),
401        WordPart::DQuote(inner) => collect_word(inner, out),
402        WordPart::Lit(_)
403        | WordPart::Escape(_)
404        | WordPart::SQuote(_)
405        | WordPart::Backtick(_)
406        | WordPart::Arith(_) => {}
407    }
408}
409
410fn collect_script_words(script: &cst::Script, out: &mut Vec<String>) {
411    for stmt in &script.0 {
412        for cmd in &stmt.pipeline.commands {
413            collect_cmd_words(cmd, out);
414        }
415    }
416}
417
418/// A redirect TARGET is a path the command opens, so it is a reach and must be reported —
419/// `notacommand > /etc/passwd` names `/etc/passwd`. A heredoc DELIMITER is not a path at all, and
420/// its body never appears in the CST, which is the whole point.
421fn collect_redir_words(redirs: &[cst::Redir], out: &mut Vec<String>) {
422    use cst::Redir;
423    for redir in redirs {
424        match redir {
425            Redir::Write { target, .. }
426            | Redir::Read { target, .. }
427            | Redir::ReadWrite { target, .. }
428            | Redir::HereStr(target) => collect_word(target, out),
429            // Only the body's SUBSTITUTIONS, never its literal text. Behind a bare delimiter a
430            // `$(cat /etc/shadow)` in the body really runs, so it is a reach worth naming; the
431            // prose around it is data and naming it would state a false reason for the denial.
432            Redir::HereDoc { body, .. } => {
433                for part in &body.0 {
434                    collect_part_subs(part, out);
435                }
436            }
437            Redir::DupFd { .. } => {}
438        }
439    }
440}
441
442fn collect_cmd_words(cmd: &cst::Cmd, out: &mut Vec<String>) {
443    use cst::Cmd;
444    let words = |ws: &[cst::Word], out: &mut Vec<String>| {
445        for w in ws {
446            collect_word(w, out);
447        }
448    };
449    match cmd {
450        Cmd::Simple(s) => {
451            words(&s.words, out);
452            collect_redir_words(&s.redirs, out);
453        }
454        Cmd::Subshell { body, redirs } | Cmd::BraceGroup { body, redirs } => {
455            collect_script_words(body, out);
456            collect_redir_words(redirs, out);
457        }
458        Cmd::For {
459            items,
460            body,
461            redirs,
462            ..
463        } => {
464            words(items, out);
465            collect_script_words(body, out);
466            collect_redir_words(redirs, out);
467        }
468        Cmd::While { cond, body, redirs } | Cmd::Until { cond, body, redirs } => {
469            collect_script_words(cond, out);
470            collect_script_words(body, out);
471            collect_redir_words(redirs, out);
472        }
473        Cmd::If {
474            branches,
475            else_body,
476            redirs,
477        } => {
478            collect_redir_words(redirs, out);
479            for branch in branches {
480                collect_script_words(&branch.cond, out);
481                collect_script_words(&branch.body, out);
482            }
483            if let Some(body) = else_body {
484                collect_script_words(body, out);
485            }
486        }
487        Cmd::DoubleBracket { words: ws, redirs } => {
488            words(ws, out);
489            collect_redir_words(redirs, out);
490        }
491        Cmd::Case {
492            subject,
493            arms,
494            redirs,
495        } => {
496            collect_word(subject, out);
497            for arm in arms {
498                collect_script_words(&arm.body, out);
499            }
500            collect_redir_words(redirs, out);
501        }
502        Cmd::FunctionDef { body, .. } => collect_script_words(body, out),
503    }
504}
505
506#[cfg(test)]
507mod tests;