Synced from monorepo Changes: - Workspace server: report `/ready` as failed with dwell on hub connect failure - Refresh OIDC token for the Grok agent in the shell - ACP terminal output recorder - Cross-platform provider auth commands in the shell - Default `/resume` to Grok sessions with a hint for hidden external sessions - Resume sessions by title with `--resume` - Limit app-builder archive size - Data-driven tag labels for slash commands - Doctor fixes for tmux - Custom provider gateways and subprocess environment policy in the shell - `/tutorial` — opt-in onboarding tour of Grok Build - Soft and required CLI version checks in the shell - Privacy banner env overrides survive live settings updates - Add remote flag to override the image-edit model - Return profile fields from auth info even when the access token is expired - Add edit control on queued prompt rows - Keep fail-closed policy when clearing orphans with no team - Setting to disable the Ctrl+Space/F8 voice shortcut - Pass `--raw` to pw-record so Linux dictation works on older PipeWire - Validate git URLs when adding marketplace entries - Stop shipping stale tool-doc parameter and tool names - Re-point dashboard attach after `/fork` only when the parent was attached - Surface Grok Computer media-generation results as file-path chunks - Clear web background-task tray on kill and keep the task description - Show privacy upsell banner in agent view until acted on - Add tools-server client callback surface - Protect persistent global hook sources Source-Revision: 95d84f443eddcbed6cbfd6eed22e2eafe6b3939d
91 lines
4 KiB
Rust
91 lines
4 KiB
Rust
//! Filesystem path tables for sandbox profiles.
|
|
//!
|
|
//! Collects device files, temp directories, and essential writable paths.
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
// ── Grok state directory ────────────────────────────────────────────────────
|
|
|
|
/// Grok state directory — always writable (`$GROK_HOME` or `~/.grok`).
|
|
pub(crate) fn grok_home() -> PathBuf {
|
|
xai_grok_config::grok_home()
|
|
}
|
|
|
|
// ── Device files & directories ──────────────────────────────────────────────
|
|
|
|
/// Device files that need write access for normal tool operation.
|
|
///
|
|
/// Without write access to these, common programs (git, curl, ssh, compilers)
|
|
/// break because they can't open `/dev/null` as an output sink, allocate PTYs,
|
|
/// or seed RNGs.
|
|
///
|
|
/// These are individual files (use `allow_file`, not `allow_path`).
|
|
/// Directory nodes under `/dev` belong in [`DEVICE_DIRS`].
|
|
#[cfg(all(feature = "enforce", unix))]
|
|
pub(crate) const DEVICE_FILES: &[&str] = &[
|
|
"/dev/null", // output sink — used by virtually every CLI tool
|
|
"/dev/zero", // zero source — used by memory allocators
|
|
"/dev/random", // entropy — used by crypto/TLS
|
|
"/dev/urandom", // entropy — used by crypto/TLS
|
|
"/dev/tty", // controlling terminal — used by git, ssh, gpg
|
|
"/dev/ptmx", // PTY allocation — used by terminal spawning
|
|
];
|
|
|
|
/// Device directories that need write access (use `allow_path`, not `allow_file`).
|
|
#[cfg(all(feature = "enforce", unix))]
|
|
pub(crate) const DEVICE_DIRS: &[&str] = &[
|
|
"/dev/pts", // PTY slaves (Linux)
|
|
"/dev/fd", // fd table (symlink to /proc/self/fd on Linux; a directory)
|
|
];
|
|
|
|
// ── Temporary directories ───────────────────────────────────────────────────
|
|
|
|
/// Temporary directories that need write access.
|
|
///
|
|
/// On Linux, `/tmp` is the standard temp directory.
|
|
/// On macOS, programs use both `/tmp` (symlink to `/private/tmp`) and
|
|
/// `/private/var/folders/` (the real `TMPDIR` / `NSTemporaryDirectory()`).
|
|
/// git, compilers, and other tools write temp files to `$TMPDIR` which
|
|
/// resolves to `/private/var/folders/xx/.../T/` on macOS.
|
|
pub(crate) fn temp_writable_paths() -> Vec<PathBuf> {
|
|
let mut paths = vec![PathBuf::from("/tmp"), PathBuf::from("/var/tmp")];
|
|
|
|
// macOS: /tmp → /private/tmp, but the real TMPDIR is under /private/var/folders.
|
|
// Also include /private/tmp since Seatbelt may resolve the symlink.
|
|
if cfg!(target_os = "macos") {
|
|
for p in ["/private/tmp", "/private/var/tmp", "/private/var/folders"] {
|
|
let pb = PathBuf::from(p);
|
|
if pb.exists() && pb.is_dir() {
|
|
paths.push(pb);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Respect $TMPDIR if it points somewhere else (e.g. custom Linux setups).
|
|
if let Ok(tmpdir) = std::env::var("TMPDIR") {
|
|
let pb = PathBuf::from(&tmpdir);
|
|
if pb.exists() && pb.is_dir() && !paths.contains(&pb) {
|
|
paths.push(pb);
|
|
}
|
|
}
|
|
|
|
paths
|
|
}
|
|
|
|
// ── Essential writable paths ────────────────────────────────────────────────
|
|
|
|
/// Writable directory paths for profiles that allow workspace writes (workspace, devbox, strict).
|
|
/// Device files are handled separately via `allow_file` in `to_capability_set_with_config`.
|
|
pub(crate) fn essential_writable_paths(workspace: &Path) -> Vec<PathBuf> {
|
|
let mut paths = vec![workspace.to_path_buf(), grok_home()];
|
|
paths.extend(temp_writable_paths());
|
|
paths
|
|
}
|
|
|
|
/// Writable directory paths for the read-only profile (minimal: just ~/.grok + temp).
|
|
/// Device files are handled separately via `allow_file` in `to_capability_set_with_config`.
|
|
pub(crate) fn essential_writable_paths_minimal() -> Vec<PathBuf> {
|
|
let mut paths = vec![grok_home()];
|
|
paths.extend(temp_writable_paths());
|
|
paths
|
|
}
|