vtcode-core 0.103.1

Core library for VT Code - a Rust-based terminal coding agent
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
//! Safe command registry: defines which commands and subcommands are safe to execute.
//!
//! This module implements the "safe-by-subcommand" pattern from Codex:
//! Instead of blocking entire commands, we maintain granular allowlists
//! of safe subcommands and forbid specific dangerous options.
//!
//! Example:
//! ```text
//! git branch     ✓ safe (read-only)
//! git reset      ✗ dangerous (destructive)
//! git status     ✓ safe (read-only)
//!
//! find .         ✓ safe
//! find . -delete ✗ dangerous (has -delete option)
//!
//! cargo check    ✓ safe (read-only check)
//! cargo clean    ✗ dangerous (destructive)
//! ```

use hashbrown::HashMap;

/// Result of a command safety check
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum SafetyDecision {
    /// Command is safe to execute
    Allow,
    /// Command is dangerous and should be blocked
    Deny(String),
    /// Safety status unknown; defer to policy evaluator
    Unknown,
}

/// Registry of safe commands and their safe subcommands/options
#[derive(Clone)]
pub struct SafeCommandRegistry {
    rules: HashMap<String, CommandRule>,
}

/// A rule for when a command is safe
#[derive(Clone)]
pub struct CommandRule {
    /// If Some, only these subcommands are allowed
    safe_subcommands: Option<rustc_hash::FxHashSet<String>>,
    /// These options make a command unsafe (e.g., "-delete" for find)
    forbidden_options: Vec<String>,
    /// Custom validation function for complex logic
    custom_check: Option<fn(&[String]) -> SafetyDecision>,
}

impl CommandRule {
    /// Creates a read-only safe command rule
    pub fn safe_readonly() -> Self {
        Self {
            safe_subcommands: None,
            forbidden_options: vec![],
            custom_check: None,
        }
    }

    /// Creates a rule with allowed subcommands
    pub fn with_allowed_subcommands(subcommands: Vec<&str>) -> Self {
        Self {
            safe_subcommands: Some(
                subcommands
                    .into_iter()
                    .map(|s| s.to_string())
                    .collect::<rustc_hash::FxHashSet<_>>(),
            ),
            forbidden_options: vec![],
            custom_check: None,
        }
    }

    /// Creates a rule with forbidden options
    pub fn with_forbidden_options(options: Vec<&str>) -> Self {
        Self {
            safe_subcommands: None,
            forbidden_options: options.into_iter().map(|s| s.to_string()).collect(),
            custom_check: None,
        }
    }
}

impl SafeCommandRegistry {
    /// Creates a new empty registry
    pub fn new() -> Self {
        Self {
            rules: Self::default_rules(),
        }
    }

    /// Builds the default safe command rules (Codex patterns + VT Code extensions)
    fn default_rules() -> HashMap<String, CommandRule> {
        let mut rules = HashMap::new();

        // ──── Git (safe: status, log, diff, show; branch is conditionally safe) ────
        // Note: git branch is NOT in the safe list because branch deletion (-d/-D/--delete)
        // is destructive. Only read-only branch operations (--show-current, --list) are safe.
        rules.insert(
            "git".to_string(),
            CommandRule {
                safe_subcommands: Some(
                    vec!["status", "log", "diff", "show"]
                        .into_iter()
                        .map(|s| s.to_string())
                        .collect(),
                ),
                forbidden_options: vec![],
                custom_check: Some(Self::check_git),
            },
        );

        // ──── Cargo (safe: check, build, clippy, fmt --check) ────
        rules.insert(
            "cargo".to_string(),
            CommandRule {
                safe_subcommands: Some(
                    vec!["check", "build", "clippy"]
                        .into_iter()
                        .map(|s| s.to_string())
                        .collect(),
                ),
                forbidden_options: vec![],
                custom_check: Some(Self::check_cargo),
            },
        );

        // ──── Find (forbid: -exec, -delete, -fls, -fprint*, -fprintf) ────
        rules.insert(
            "find".to_string(),
            CommandRule {
                safe_subcommands: None,
                forbidden_options: vec![
                    "-exec".to_string(),
                    "-execdir".to_string(),
                    "-ok".to_string(),
                    "-okdir".to_string(),
                    "-delete".to_string(),
                    "-fls".to_string(),
                    "-fprint".to_string(),
                    "-fprint0".to_string(),
                    "-fprintf".to_string(),
                ],
                custom_check: None,
            },
        );

        // ──── Base64 (forbid: -o, --output) ────
        rules.insert(
            "base64".to_string(),
            CommandRule {
                safe_subcommands: None,
                forbidden_options: vec!["-o".to_string(), "--output".to_string()],
                custom_check: Some(Self::check_base64),
            },
        );

        // ──── Sed (only allow -n {N|M,N}p pattern) ────
        rules.insert(
            "sed".to_string(),
            CommandRule {
                safe_subcommands: None,
                forbidden_options: vec![],
                custom_check: Some(Self::check_sed),
            },
        );

        // ──── Ripgrep (forbid: --pre, --hostname-bin, -z, --search-zip) ────
        rules.insert(
            "rg".to_string(),
            CommandRule {
                safe_subcommands: None,
                forbidden_options: vec![
                    "--pre".to_string(),
                    "--hostname-bin".to_string(),
                    "--search-zip".to_string(),
                    "-z".to_string(),
                ],
                custom_check: None,
            },
        );

        // ──── Safe read-only tools ────
        for cmd in &[
            "cat", "ls", "pwd", "echo", "grep", "head", "tail", "wc", "tr", "cut", "paste", "sort",
            "uniq", "rev", "seq", "expr", "uname", "whoami", "id", "stat", "which",
        ] {
            rules.insert(
                cmd.to_string(),
                CommandRule {
                    safe_subcommands: None,
                    forbidden_options: vec![],
                    custom_check: None,
                },
            );
        }

        rules
    }

    /// Checks if a command is safe
    pub fn is_safe(&self, command: &[String]) -> SafetyDecision {
        if command.is_empty() {
            return SafetyDecision::Unknown;
        }

        let cmd_name = Self::extract_command_name(&command[0]);
        let Some(rule) = self.rules.get(cmd_name) else {
            return SafetyDecision::Unknown;
        };

        // Run custom check if defined
        if let Some(check_fn) = rule.custom_check {
            let result = check_fn(command);
            if result != SafetyDecision::Unknown {
                return result;
            }
        }

        // Check safe subcommands (if restricted list exists)
        if let Some(ref safe_subs) = rule.safe_subcommands {
            if command.len() < 2 {
                return SafetyDecision::Deny(format!("Command {} requires a subcommand", cmd_name));
            }
            let subcommand = &command[1];
            if !safe_subs.contains(subcommand) {
                return SafetyDecision::Deny(format!(
                    "Subcommand {} not in safe list for {}",
                    subcommand, cmd_name
                ));
            }
        }

        // Check forbidden options
        if !rule.forbidden_options.is_empty() {
            // Pre-calculate forbidden prefixes to avoid allocations in the loop
            let forbidden_with_eq: Vec<String> = rule
                .forbidden_options
                .iter()
                .map(|opt| format!("{}=", opt))
                .collect();

            for arg in command {
                for (i, forbidden) in rule.forbidden_options.iter().enumerate() {
                    if arg == forbidden || arg.starts_with(&forbidden_with_eq[i]) {
                        return SafetyDecision::Deny(format!(
                            "Option {} is not allowed for {}",
                            forbidden, cmd_name
                        ));
                    }
                }
            }
        }

        SafetyDecision::Allow
    }

    /// Extract base command name from full path (e.g., "/usr/bin/git" -> "git")
    fn extract_command_name(cmd: &str) -> &str {
        std::path::Path::new(cmd)
            .file_name()
            .and_then(|osstr| osstr.to_str())
            .unwrap_or(cmd)
    }

    // ──── Custom Checks ────

    /// Git: allow status, log, diff, show; branch only for read-only operations
    fn check_git(command: &[String]) -> SafetyDecision {
        if command.len() < 2 {
            return SafetyDecision::Unknown;
        }

        if command
            .iter()
            .skip(1)
            .map(String::as_str)
            .any(crate::command_safety::dangerous_commands::git_global_option_requires_prompt)
        {
            return SafetyDecision::Deny(
                "git global options that redirect config, repository, or helper lookup are not allowed"
                    .to_string(),
            );
        }

        // Use the shared git subcommand finder to skip global options
        let subcommands = &["status", "log", "diff", "show", "branch"];
        let Some((idx, subcommand)) =
            crate::command_safety::dangerous_commands::find_git_subcommand(command, subcommands)
        else {
            return SafetyDecision::Unknown;
        };

        match subcommand {
            "status" | "log" | "diff" | "show" => SafetyDecision::Allow,
            "branch" => {
                // Only allow read-only branch operations
                let branch_args = &command[idx + 1..];
                let is_read_only = branch_args.iter().all(|arg| {
                    let arg = arg.as_str();
                    // Safe: --show-current, --list, -l (list), -v (verbose), -a (all), -r (remote)
                    // Unsafe: -d, -D, --delete, -m, -M, --move, -c, -C, --create
                    matches!(
                        arg,
                        "--show-current"
                            | "--list"
                            | "-l"
                            | "-v"
                            | "-vv"
                            | "-a"
                            | "-r"
                            | "--all"
                            | "--remote"
                            | "--verbose"
                            | "--format"
                    ) || arg.starts_with("--format=")
                        || arg.starts_with("--sort=")
                        || arg.starts_with("--contains=")
                        || arg.starts_with("--no-contains=")
                        || arg.starts_with("--merged=")
                        || arg.starts_with("--no-merged=")
                        || arg.starts_with("--points-at=")
                });

                // Also check for any delete/move/create flags
                let has_dangerous_flag = branch_args.iter().any(|arg| {
                    let arg = arg.as_str();
                    matches!(
                        arg,
                        "-d" | "-D"
                            | "--delete"
                            | "-m"
                            | "-M"
                            | "--move"
                            | "-c"
                            | "-C"
                            | "--create"
                            | "--set-upstream"
                            | "--set-upstream-to"
                            | "--unset-upstream"
                    ) || arg.starts_with("--delete=")
                        || arg.starts_with("--move=")
                        || arg.starts_with("--create=")
                        || arg.starts_with("--set-upstream-to=")
                });

                if has_dangerous_flag {
                    SafetyDecision::Deny(
                        "git branch with modification flags is not allowed".to_string(),
                    )
                } else if is_read_only || branch_args.is_empty() {
                    SafetyDecision::Allow
                } else {
                    // Unknown flags - be conservative
                    SafetyDecision::Deny(
                        "git branch with unknown flags requires approval".to_string(),
                    )
                }
            }
            _ => SafetyDecision::Unknown,
        }
    }

    /// Cargo: allow check, build, clippy
    fn check_cargo(command: &[String]) -> SafetyDecision {
        if command.len() < 2 {
            return SafetyDecision::Unknown;
        }
        match command[1].as_str() {
            "check" | "build" | "clippy" => SafetyDecision::Allow,
            "fmt" => {
                // cargo fmt --check is safe (read-only)
                if command.contains(&"--check".to_string()) {
                    SafetyDecision::Allow
                } else {
                    SafetyDecision::Deny("cargo fmt without --check is not allowed".to_string())
                }
            }
            _ => SafetyDecision::Deny(format!(
                "cargo {} is not in safe subcommand list",
                command[1]
            )),
        }
    }

    /// Base64: forbid output redirection
    fn check_base64(command: &[String]) -> SafetyDecision {
        const UNSAFE_OPTIONS: &[&str] = &["-o", "--output"];

        for arg in command.iter().skip(1) {
            if UNSAFE_OPTIONS.contains(&arg.as_str()) {
                return SafetyDecision::Deny(format!(
                    "base64 {} is not allowed (output redirection)",
                    arg
                ));
            }
            if arg.starts_with("--output=") || (arg.starts_with("-o") && arg != "-o") {
                return SafetyDecision::Deny(
                    "base64 output redirection is not allowed".to_string(),
                );
            }
        }
        SafetyDecision::Unknown
    }

    /// Sed: only allow `-n {N|M,N}p` pattern
    fn check_sed(command: &[String]) -> SafetyDecision {
        if command.len() <= 2 {
            return SafetyDecision::Unknown;
        }

        if command.len() <= 4
            && command.get(1).map(|s| s.as_str()) == Some("-n")
            && let Some(pattern) = command.get(2)
            && Self::is_valid_sed_n_arg(pattern)
        {
            return SafetyDecision::Allow;
        }

        SafetyDecision::Deny("sed only allows safe pattern: sed -n {N|M,N}p".to_string())
    }

    /// Helper: validate sed -n pattern
    fn is_valid_sed_n_arg(arg: &str) -> bool {
        // Pattern must end with 'p'
        let Some(core) = arg.strip_suffix('p') else {
            return false;
        };

        // Split on ',' and validate
        let parts: Vec<&str> = core.split(',').collect();
        match parts.as_slice() {
            // Single number: e.g., "10"
            [num] => !num.is_empty() && num.chars().all(|c| c.is_ascii_digit()),
            // Range: e.g., "1,5"
            [a, b] => {
                !a.is_empty()
                    && !b.is_empty()
                    && a.chars().all(|c| c.is_ascii_digit())
                    && b.chars().all(|c| c.is_ascii_digit())
            }
            _ => false,
        }
    }
}

impl Default for SafeCommandRegistry {
    fn default() -> Self {
        Self::new()
    }
}

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

    #[test]
    fn git_status_is_safe() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["git".to_string(), "status".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn git_global_options_require_approval() {
        let registry = SafeCommandRegistry::new();

        for cmd in [
            vec![
                "git".to_string(),
                "-c".to_string(),
                "core.pager=cat".to_string(),
                "show".to_string(),
                "HEAD:foo.rs".to_string(),
            ],
            vec![
                "git".to_string(),
                "--config-env".to_string(),
                "core.pager=PAGER".to_string(),
                "show".to_string(),
                "HEAD".to_string(),
            ],
            vec![
                "git".to_string(),
                "--git-dir=.evil-git".to_string(),
                "diff".to_string(),
                "HEAD~1..HEAD".to_string(),
            ],
            vec![
                "git".to_string(),
                "--work-tree".to_string(),
                ".".to_string(),
                "status".to_string(),
            ],
            vec![
                "git".to_string(),
                "--exec-path=.git/helpers".to_string(),
                "show".to_string(),
                "HEAD".to_string(),
            ],
            vec![
                "git".to_string(),
                "--namespace=attacker".to_string(),
                "show".to_string(),
                "HEAD".to_string(),
            ],
            vec![
                "git".to_string(),
                "--super-prefix=attacker/".to_string(),
                "show".to_string(),
                "HEAD".to_string(),
            ],
        ] {
            assert!(
                matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)),
                "expected {cmd:?} to require approval due to unsafe git global option",
            );
        }
    }

    #[test]
    fn git_reset_is_dangerous() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["git".to_string(), "reset".to_string()];
        assert!(matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)));
    }

    #[test]
    fn cargo_check_is_safe() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["cargo".to_string(), "check".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn cargo_clean_is_dangerous() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["cargo".to_string(), "clean".to_string()];
        assert!(matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)));
    }

    #[test]
    fn cargo_fmt_without_check_is_dangerous() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["cargo".to_string(), "fmt".to_string()];
        assert!(matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)));
    }

    #[test]
    fn cargo_fmt_with_check_is_safe() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec![
            "cargo".to_string(),
            "fmt".to_string(),
            "--check".to_string(),
        ];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn find_without_dangerous_options_is_allowed() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["find".to_string(), ".".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn find_with_delete_is_dangerous() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["find".to_string(), ".".to_string(), "-delete".to_string()];
        assert!(matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)));
    }

    #[test]
    fn find_with_exec_is_dangerous() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec![
            "find".to_string(),
            ".".to_string(),
            "-exec".to_string(),
            "rm".to_string(),
        ];
        assert!(matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)));
    }

    #[test]
    fn base64_without_output_is_allowed() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["base64".to_string(), "file.txt".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn base64_with_output_is_dangerous() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec![
            "base64".to_string(),
            "file.txt".to_string(),
            "-o".to_string(),
            "output.txt".to_string(),
        ];
        assert!(matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)));
    }

    #[test]
    fn sed_n_single_line_is_safe() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["sed".to_string(), "-n".to_string(), "10p".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn sed_n_range_is_safe() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["sed".to_string(), "-n".to_string(), "1,5p".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn sed_without_n_is_allowed() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["sed".to_string(), "s/foo/bar/g".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn rg_with_pre_is_dangerous() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec![
            "rg".to_string(),
            "--pre".to_string(),
            "some_command".to_string(),
            "pattern".to_string(),
        ];
        assert!(matches!(registry.is_safe(&cmd), SafetyDecision::Deny(_)));
    }

    #[test]
    fn cat_is_always_safe() {
        let registry = SafeCommandRegistry::new();
        let cmd = vec!["cat".to_string(), "file.txt".to_string()];
        assert_eq!(registry.is_safe(&cmd), SafetyDecision::Allow);
    }

    #[test]
    fn extract_command_name_from_path() {
        assert_eq!(
            SafeCommandRegistry::extract_command_name("/usr/bin/git"),
            "git"
        );
        assert_eq!(
            SafeCommandRegistry::extract_command_name("/usr/local/bin/cargo"),
            "cargo"
        );
        assert_eq!(SafeCommandRegistry::extract_command_name("git"), "git");
    }
}