Onefly d8d110c637
fix(sandbox): prevent AIO subagent session eviction (#5178)
* fix(sandbox): prevent AIO subagent session eviction

* fix(sandbox): address PR 5178 review issues

* fix(sandbox): handle transient session and metadata failures

* fix(sandbox): fence capacity upgrades and validate reused limits

* docs(sandbox): restore list indentation and trim guidance

* fix(ci): stabilize Buzz persistence test and trim sandbox guidance

---------

Co-authored-by: ranxi2001 <ranxi2001@users.noreply.github.com>
Co-authored-by: Willem Jiang <willem.jiang@gmail.com>
2026-09-17 07:45:19 +08:00

780 lines
35 KiB
Python

import base64
import errno
import logging
import threading
import uuid
from dataclasses import dataclass, field
import httpx
from agent_sandbox import Sandbox as AioSandboxClient
from agent_sandbox.core.api_error import ApiError
from deerflow.config.paths import VIRTUAL_PATH_PREFIX
from deerflow.sandbox.remote_list_dir import parse_remote_list_dir_output, remote_list_dir_command
from deerflow.sandbox.sandbox import Sandbox, _validate_extra_env
from deerflow.sandbox.search import GrepMatch, path_matches, should_ignore_path, truncate_line
from .backend import sandbox_http_trust_env
logger = logging.getLogger(__name__)
_MAX_DOWNLOAD_SIZE = 100 * 1024 * 1024 # 100 MB
_ERROR_OBSERVATION_SIGNATURE = "'ErrorObservation' object has no attribute 'exit_code'"
# Env-bearing commands require the bash.exec API (POST /v1/bash/exec), which the
# all-in-one-sandbox image only ships since 1.9.x. Older images (including any
# ``latest`` tag frozen on the 1.0.0.x line) answer 404 for the whole /v1/bash/*
# namespace. That raw 404 is useless to the model (it just retries), so the
# sandbox fails fast with this operator-facing message instead (#3921).
_BASH_EXEC_UNSUPPORTED_ERROR = (
"Error: this sandbox image does not support per-command environment injection "
"(POST /v1/bash/exec returned 404), which is required to run skills that declare "
"required-secrets. This is a deployment issue that retrying cannot fix: upgrade the "
"sandbox image to all-in-one-sandbox >= 1.9.3 (set `sandbox.image` in config.yaml, "
"e.g. pin the tag `1.11.0`) and recreate the sandbox container, then try again."
)
@dataclass
class _ScopedShellSession:
"""One server-side shell session serialized within an agent execution."""
lock: threading.Lock = field(default_factory=threading.Lock)
session_id: str | None = None
class AioSandbox(Sandbox):
"""Sandbox implementation using the agent-infra/sandbox Docker container.
This sandbox connects to a running AIO sandbox container via HTTP API.
Lead/direct calls retain the legacy serialized shell. Delegated executions
receive separate server-side sessions, with commands serialized only inside
the same execution scope, so parallel subagents cannot corrupt one another's
shell state (see #1433 and #5128).
"""
#: The legacy exec path reuses one persistent shell session across calls,
#: so shell state (exports, cwd, functions) carries from one command into
#: the next — recorded bash evidence cannot prove a clean environment.
persistent_shell_sessions = True
def __init__(
self,
id: str,
base_url: str,
home_dir: str | None = None,
request_headers: dict[str, str] | None = None,
):
"""Initialize the AIO sandbox.
Args:
id: Unique identifier for this sandbox instance.
base_url: URL of the sandbox API (e.g., http://localhost:8080).
home_dir: Home directory inside the sandbox. If None, will be fetched from the sandbox.
request_headers: Trusted control-plane headers required by a local
relay. These are never injected into sandbox commands.
"""
super().__init__(id)
self._base_url = base_url
client_kwargs = {
"base_url": base_url,
"timeout": 600,
}
if request_headers:
client_kwargs["headers"] = dict(request_headers)
if sandbox_http_trust_env(base_url):
self._client = AioSandboxClient(**client_kwargs)
else:
direct_client = httpx.Client(timeout=600, follow_redirects=True, trust_env=False)
self._client = AioSandboxClient(**client_kwargs, httpx_client=direct_client)
self._home_dir = home_dir
self._lock = threading.Lock()
self._scope_registry_lock = threading.Lock()
self._scoped_shell_sessions: dict[str, _ScopedShellSession] = {}
self._recovery_session_id: str | None = None
self._default_shell_corrupted = False
self._closed = False
# Set to True after bash.exec answers 404 (image predates /v1/bash/*),
# so later env-bearing calls fail fast instead of re-hitting HTTP (#3921).
self._bash_exec_unsupported = False
@property
def base_url(self) -> str:
return self._base_url
def close(self) -> None:
"""Best-effort close of the host-side HTTP client owned by this sandbox.
The agent_sandbox SDK is Fern-generated and exposes no ``close()`` /
``__exit__``, so we reach the socket-owning ``httpx.Client`` explicitly
through its attribute chain::
Sandbox._client_wrapper -> SyncClientWrapper
.httpx_client -> Fern HttpClient (a wrapper, NOT httpx.Client)
.httpx_client -> httpx.Client <- the real socket owner
Closing it releases pooled sockets so long-running provider lifecycles
do not accumulate unreclaimed host-side resources (#2872).
Resolution is most-specific-first with graceful degradation: if a future
SDK adds a top-level ``Sandbox.close()`` it is picked up automatically
without changing this code. Idempotent, thread-safe, and non-fatal:
failures during teardown are logged and swallowed so provider/backend
cleanup is never blocked.
"""
# Close admission for scoped commands before draining their sessions.
# A scoped call that already registered itself remains in this snapshot
# and is joined through its per-scope lock below; later calls fail
# without creating an orphaned registry entry.
with self._scope_registry_lock:
if self._closed:
return
self._closed = True
scoped_sessions = list(self._scoped_shell_sessions.items())
self._scoped_shell_sessions.clear()
for scope_id, scoped in scoped_sessions:
with scoped.lock:
if scoped.session_id is not None and self._client is not None:
self._cleanup_session_best_effort(
self._client,
scoped.session_id,
context=f"execution scope {scope_id}",
)
scoped.session_id = None
with self._lock:
if self._recovery_session_id is not None and self._client is not None:
self._cleanup_session_best_effort(
self._client,
self._recovery_session_id,
context="default recovery session",
)
self._recovery_session_id = None
client = self._client
# Drop the reference under the lock for use-after-close safety: any
# later command on this instance fails loudly instead of reusing a
# half-closed client.
self._client = None
if client is None:
return
# Walk from the real httpx.Client up to the top-level client, picking the
# first object that actually exposes close().
wrapper = getattr(client, "_client_wrapper", None)
fern_http = getattr(wrapper, "httpx_client", None)
real_httpx = getattr(fern_http, "httpx_client", None)
target = next(
(c for c in (real_httpx, fern_http, client) if c is not None and hasattr(c, "close")),
None,
)
if target is None:
logger.debug("AioSandbox %s: no closable client found, nothing to release", self.id)
return
try:
target.close()
except Exception as e:
logger.warning(f"Error closing AioSandbox client for {self.id}: {e}")
@staticmethod
def _cleanup_session_best_effort(client, session_id: str, *, context: str) -> None:
try:
client.shell.cleanup_session(session_id)
except Exception as cleanup_error:
logger.warning(
"Failed to release shell session %s (%s): %s",
session_id,
context,
cleanup_error,
)
@staticmethod
def _format_shell_result(result) -> tuple[str, int | None]:
data = result.data if result else None
output = data.output if data else ""
exit_code = getattr(data, "exit_code", None) if data else None
return output, exit_code
@staticmethod
def _is_missing_shell_session_error(error: ApiError) -> bool:
body = error.body
if error.status_code != 404 or not isinstance(body, dict):
return False
message = body.get("message")
return isinstance(message, str) and "session not found" in message.casefold()
@staticmethod
def _cleanup_bash_session_best_effort(client, session_id: str) -> None:
try:
client.bash.close_session(session_id)
except Exception as cleanup_error:
logger.warning(
"Failed to release transient bash session %s: %s",
session_id,
cleanup_error,
)
def _create_shell_session(self, client) -> str:
session_id = str(uuid.uuid4())
client.shell.create_session(id=session_id)
return session_id
def _exec_shell(self, client, command: str, *, session_id: str | None) -> tuple[str, int | None]:
kwargs = {
"command": command,
"no_change_timeout": self._DEFAULT_NO_CHANGE_TIMEOUT,
}
if session_id is not None:
kwargs["id"] = session_id
return self._format_shell_result(client.shell.exec_command(**kwargs))
def _rotate_and_retry_shell(
self,
client,
command: str,
*,
corrupted_session_id: str | None,
context: str,
) -> tuple[str, int | None, str | None]:
if corrupted_session_id is not None:
self._cleanup_session_best_effort(
client,
corrupted_session_id,
context=f"corrupted {context}",
)
replacement_id = self._create_shell_session(client)
try:
output, exit_code = self._exec_shell(
client,
command,
session_id=replacement_id,
)
except BaseException:
self._cleanup_session_best_effort(
client,
replacement_id,
context=f"abandoned replacement for {context}",
)
raise
if output and _ERROR_OBSERVATION_SIGNATURE in output:
self._cleanup_session_best_effort(
client,
replacement_id,
context=f"failed replacement for {context}",
)
return output, exit_code, None
return output, exit_code, replacement_id
def execute_command_in_scope(
self,
command: str,
env: dict[str, str] | None = None,
timeout: float | None = None,
*,
scope_id: str | None = None,
) -> str:
"""Run no-env commands in one persistent session per subagent run.
Commands within a scope remain serialized, while independent subagents
use distinct server-side sessions and can execute concurrently. Secret-
bearing commands keep the existing fresh ``bash.exec`` behavior.
"""
if env or scope_id is None:
return self.execute_command(command, env=env, timeout=timeout)
del timeout
_validate_extra_env(env)
try:
with self._scope_registry_lock:
if self._closed:
raise RuntimeError("sandbox client is closed")
scoped = self._scoped_shell_sessions.setdefault(
scope_id,
_ScopedShellSession(),
)
with scoped.lock:
# Registration and command execution are separated by the
# per-scope wait. Revalidate identity after that wait so a
# release/close which removed this exact scope is a hard
# lifecycle fence: queued callers cannot resurrect a session
# on an orphaned registry entry.
with self._scope_registry_lock:
if self._closed or self._scoped_shell_sessions.get(scope_id) is not scoped:
raise RuntimeError("sandbox command scope is no longer active")
client = self._client
if client is None:
raise RuntimeError("sandbox client is closed")
if scoped.session_id is None:
scoped.session_id = self._create_shell_session(client)
try:
output, exit_code = self._exec_shell(
client,
command,
session_id=scoped.session_id,
)
except ApiError as error:
if not self._is_missing_shell_session_error(error):
raise
logger.warning("Execution-scoped sandbox shell session is missing; recreating it once")
scoped.session_id = None
output, exit_code, scoped.session_id = self._rotate_and_retry_shell(
client,
command,
corrupted_session_id=None,
context="execution scope after missing session",
)
if scoped.session_id is not None and output and _ERROR_OBSERVATION_SIGNATURE in output:
logger.warning("ErrorObservation detected in sandbox output for execution scope; rotating session")
output, exit_code, scoped.session_id = self._rotate_and_retry_shell(
client,
command,
corrupted_session_id=scoped.session_id,
context="execution scope",
)
return self._render_shell_output(output, exit_code)
except Exception as e:
logger.error(f"Failed to execute command in sandbox: {e}")
return f"Error: {e}"
def release_command_scope(self, scope_id: str) -> None:
"""Clean up one subagent's explicit server-side shell session."""
with self._scope_registry_lock:
scoped = self._scoped_shell_sessions.pop(scope_id, None)
if scoped is None:
return
with scoped.lock:
if scoped.session_id is None or self._client is None:
return
self._cleanup_session_best_effort(
self._client,
scoped.session_id,
context=f"execution scope {scope_id}",
)
scoped.session_id = None
@staticmethod
def _render_shell_output(output: str, exit_code: int | None) -> str:
if exit_code not in (0, None):
output = f"{output}\nExit Code: {exit_code}" if output else f"Command exited with code {exit_code}"
return output if output else "(no output)"
@property
def home_dir(self) -> str:
"""Get the home directory inside the sandbox."""
if self._home_dir is None:
context = self._client.sandbox.get_context()
self._home_dir = context.home_dir
return self._home_dir
# Default no_change_timeout for exec_command (seconds). Matches the
# client-level timeout so that long-running commands which produce no
# output are not prematurely terminated by the sandbox's built-in 120 s
# default.
_DEFAULT_NO_CHANGE_TIMEOUT = 600
# Wall-clock hard timeout for env-bearing commands routed through bash.exec.
# The bash.exec API exposes no idle/no-change timeout (unlike
# shell.exec_command's ``no_change_timeout`` on the legacy path), so
# env-bearing commands are bounded by total elapsed wall-clock time, not
# time-since-last-output. Kept at the same numeric value as the legacy idle
# budget so the two paths broadly agree on how long a single command may
# run; a future SDK that exposes an idle timeout on bash.exec should switch
# this call site to it.
_DEFAULT_HARD_TIMEOUT = 600.0
def execute_command(
self,
command: str,
env: dict[str, str] | None = None,
timeout: float | None = None,
) -> str:
"""Execute a shell command in the sandbox.
Uses a lock to serialize unscoped requests. The AIO sandbox container's
implicit persistent shell corrupts when hit with concurrent
``exec_command`` calls (returning ``ErrorObservation`` instead of real
output). If corruption is detected despite the lock (e.g. multiple
processes sharing a sandbox), the replacement session is promoted for
subsequent calls rather than returning to the corrupted implicit one.
Args:
command: The command to execute.
env: Optional per-call environment variables (request-scoped secrets,
issue #3861). When provided, the command runs via the ``bash.exec``
API (which supports per-command env) on a fresh explicitly released
session, so the secrets are scoped to this single command and never
persist; secret values travel in the structured ``env`` field, never
in the command string. When ``None`` the legacy persistent-shell path
runs unchanged.
timeout: Optional per-call timeout. The current sandbox SDK does not
expose a command-level timeout distinct from its client/request
timeout, so DeerFlow keeps using the backend's default here.
Returns:
The output of the command.
"""
del timeout
# Validate ``env`` keys before forwarding them to the ``bash.exec`` API.
# The public ``Sandbox.execute_command`` contract accepts arbitrary dict
# keys; enforcing the POSIX env-var name rule keeps the contract
# consistent with the local and e2b sandboxes and catches unsafe keys
# early. ``_validate_extra_env`` is a no-op when ``env`` is None or empty.
_validate_extra_env(env)
if env:
return self._execute_with_env(command, env)
with self._lock:
try:
client = self._client
if getattr(self, "_closed", False) or client is None:
raise RuntimeError("sandbox client is closed")
if self._default_shell_corrupted and self._recovery_session_id is None:
# Once the implicit session emits ErrorObservation, never
# target it again. A failed replacement is cleaned up and
# the next call starts another explicit session.
self._recovery_session_id = self._create_shell_session(client)
recovered_missing_session = False
try:
output, exit_code = self._exec_shell(
client,
command,
session_id=self._recovery_session_id,
)
except ApiError as error:
if not self._is_missing_shell_session_error(error):
raise
logger.warning("Default sandbox shell session is missing; recreating it once")
self._default_shell_corrupted = True
self._recovery_session_id = None
recovered_missing_session = True
output, exit_code, self._recovery_session_id = self._rotate_and_retry_shell(
client,
command,
corrupted_session_id=None,
context="default shell after missing session",
)
if not recovered_missing_session and output and _ERROR_OBSERVATION_SIGNATURE in output:
self._default_shell_corrupted = True
logger.warning("ErrorObservation detected in sandbox output, retrying on a fresh session")
output, exit_code, self._recovery_session_id = self._rotate_and_retry_shell(
client,
command,
corrupted_session_id=self._recovery_session_id,
context="default shell",
)
return self._render_shell_output(output, exit_code)
except Exception as e:
logger.error(f"Failed to execute command in sandbox: {e}")
return f"Error: {e}"
def _execute_with_env(self, command: str, env: dict[str, str]) -> str:
"""Execute a command with per-call environment variables injected.
The persistent-shell ``shell.exec_command`` API has no env parameter, so
injected commands use the ``bash.exec`` API which accepts per-command env.
Each call creates an explicit transient session and closes it after the
command, so injected request-scoped secrets are scoped to this command,
never persist across calls, and do not consume the server's session
capacity after completion. Secret values travel in the structured
``env`` field, never in the command string.
Trade-off of the fresh-session choice: consecutive env-bearing bash calls
within the same skill do not share session state (cwd, sourced venv,
exported variables). This mirrors the LocalSandbox model (each call is a
fresh subprocess) and is intentional — a shared session_id would let
request-scoped secrets ride the session env into later commands, which the
SDK does not contractually forbid. Skills that need setup must fold it into
a single command (e.g. ``cd /mnt/user-data/workspace && source .venv/bin/activate && python run.py``).
The ``_ERROR_OBSERVATION_SIGNATURE`` recovery contract is shared with the
legacy persistent-shell path: if the (unlikely, since each call is a fresh
session) corruption marker shows up, the call is retried on another fresh
session rather than returned verbatim.
Images older than all-in-one-sandbox 1.9.x have no ``/v1/bash/*`` routes;
there is no fallback on the legacy shell path that would keep the secret
values out of the command string, so the only safe behaviour is to fail
fast with an actionable error (#3921).
"""
if self._bash_exec_unsupported:
return _BASH_EXEC_UNSUPPORTED_ERROR
output = self._run_bash_exec(command, env)
if output and _ERROR_OBSERVATION_SIGNATURE in output:
logger.warning("ErrorObservation detected in bash.exec output, retrying on a fresh session")
retried = self._run_bash_exec(command, env)
if retried and _ERROR_OBSERVATION_SIGNATURE not in retried:
return retried
return output
def _run_bash_exec(self, command: str, env: dict[str, str]) -> str:
"""Single bash.exec invocation in an explicitly released fresh session."""
with self._lock:
for attempt in range(2):
session_id = str(uuid.uuid4())
session_created = False
try:
self._client.bash.create_session(session_id=session_id)
session_created = True
result = self._client.bash.exec(
command=command,
session_id=session_id,
env=env,
hard_timeout=self._DEFAULT_HARD_TIMEOUT,
)
data = result.data if result else None
stdout = (data.stdout or "") if data else ""
stderr = (data.stderr or "") if data else ""
exit_code = getattr(data, "exit_code", None) if data else None
output = stdout
if stderr:
output += f"\nStd Error:\n{stderr}" if output else stderr
if exit_code not in (0, None):
# Mirror LocalSandbox: keep the actual shell status in the
# output text (acceptance-checklist evidence).
output = f"{output}\nExit Code: {exit_code}" if output else f"Command exited with code {exit_code}"
return output if output else "(no output)"
except ApiError as e:
if self._is_missing_shell_session_error(e):
if attempt == 0:
logger.warning("Transient bash.exec session disappeared; retrying once")
continue
logger.error("Failed to execute command with injected env: bash.exec session disappeared after retry")
return "Error: bash.exec session disappeared after retry"
if e.status_code == 404:
self._bash_exec_unsupported = True
logger.error("Sandbox %s does not support bash.exec (/v1/bash/exec returned 404); env-bearing commands are unavailable until the sandbox image is upgraded to all-in-one-sandbox >= 1.9.3", self.id)
return _BASH_EXEC_UNSUPPORTED_ERROR
logger.error(f"Failed to execute command with injected env in sandbox: {e}")
return f"Error: {e}"
except Exception as e:
logger.error(f"Failed to execute command with injected env in sandbox: {e}")
return f"Error: {e}"
finally:
if session_created:
self._cleanup_bash_session_best_effort(self._client, session_id)
return "Error: bash.exec session disappeared after retry"
def read_file(
self,
path: str,
start_line: int | None = None,
end_line: int | None = None,
) -> str:
"""Read the content of a file in the sandbox.
Args:
path: The absolute path of the file to read.
Returns:
The content of the file.
"""
try:
kwargs = {}
if start_line is not None:
kwargs["start_line"] = max(start_line - 1, 0)
if end_line is not None:
kwargs["end_line"] = max(end_line, 0)
result = self._client.file.read_file(file=path, **kwargs)
return result.data.content if result.data else ""
except Exception as e:
logger.error(f"Failed to read file in sandbox: {e}")
return f"Error: {e}"
def download_file(self, path: str) -> bytes:
"""Download file bytes from the sandbox.
Raises:
PermissionError: If the path contains '..' traversal segments or is
outside ``VIRTUAL_PATH_PREFIX``.
OSError: If the file cannot be retrieved from the sandbox.
"""
# Reject path traversal before sending to the container API.
# LocalSandbox gets this implicitly via _resolve_path;
# here the path is forwarded verbatim so we must check explicitly.
normalised = path.replace("\\", "/")
for segment in normalised.split("/"):
if segment == "..":
logger.error(f"Refused download due to path traversal: {path}")
raise PermissionError(f"Access denied: path traversal detected in '{path}'")
stripped_path = normalised.lstrip("/")
allowed_prefix = VIRTUAL_PATH_PREFIX.lstrip("/")
if stripped_path != allowed_prefix and not stripped_path.startswith(f"{allowed_prefix}/"):
logger.error("Refused download outside allowed directory: path=%s, allowed_prefix=%s", path, VIRTUAL_PATH_PREFIX)
raise PermissionError(f"Access denied: path must be under '{VIRTUAL_PATH_PREFIX}': '{path}'")
with self._lock:
try:
chunks: list[bytes] = []
total = 0
for chunk in self._client.file.download_file(path=path):
total += len(chunk)
if total > _MAX_DOWNLOAD_SIZE:
raise OSError(
errno.EFBIG,
f"File exceeds maximum download size of {_MAX_DOWNLOAD_SIZE} bytes",
path,
)
chunks.append(chunk)
return b"".join(chunks)
except OSError:
raise
except Exception as e:
logger.error(f"Failed to download file in sandbox: {e}")
raise OSError(f"Failed to download file '{path}' from sandbox: {e}") from e
def list_dir(self, path: str, max_depth: int = 2) -> list[str]:
"""List the contents of a directory in the sandbox.
Args:
path: The absolute path of the directory to list.
max_depth: The maximum depth to traverse. Default is 2.
Returns:
The contents of the directory.
"""
resolved = path
with self._lock:
try:
result = self._client.shell.exec_command(
command=remote_list_dir_command(resolved, max_depth),
no_change_timeout=self._DEFAULT_NO_CHANGE_TIMEOUT,
)
except Exception as e:
logger.error(f"Failed to list directory in sandbox: {e}")
raise OSError(f"Failed to list directory '{resolved}' in sandbox: {e}") from e
if result.data is None:
raise OSError(f"Failed to list directory '{resolved}' in sandbox: empty response")
return parse_remote_list_dir_output(
result.data.output or "",
resolved,
pipeline_exit_code=getattr(result.data, "exit_code", None),
)
def write_file(self, path: str, content: str, append: bool = False) -> None:
"""Write content to a file in the sandbox.
Args:
path: The absolute path of the file to write to.
content: The text content to write to the file.
append: Whether to append the content to the file.
"""
with self._lock:
try:
if append:
self._client.file.write_file(file=path, content=content, append=True)
else:
self._client.file.write_file(file=path, content=content)
except Exception as e:
logger.error(f"Failed to write file in sandbox: {e}")
raise
def glob(self, path: str, pattern: str, *, include_dirs: bool = False, max_results: int = 200) -> tuple[list[str], bool]:
if not include_dirs:
result = self._client.file.find_files(path=path, glob=pattern)
files = result.data.files if result.data and result.data.files else []
filtered = [file_path for file_path in files if not should_ignore_path(file_path)]
truncated = len(filtered) > max_results
return filtered[:max_results], truncated
result = self._client.file.list_path(path=path, recursive=True, show_hidden=False)
entries = result.data.files if result.data and result.data.files else []
matches: list[str] = []
root_path = path.rstrip("/") or "/"
root_prefix = root_path if root_path == "/" else f"{root_path}/"
for entry in entries:
if entry.path != root_path and not entry.path.startswith(root_prefix):
continue
if should_ignore_path(entry.path):
continue
rel_path = entry.path[len(root_path) :].lstrip("/")
if path_matches(pattern, rel_path):
matches.append(entry.path)
# Look one match past the cap before deciding. Returning on
# the max-th match cannot tell a listing that held exactly
# ``max_results`` from one that held more, so an exhausted
# listing was reported as truncated; it also returned a match
# for ``max_results=0``. The ``include_dirs=False`` branch
# below and the shared ``parse_remote_search_output`` path
# decide the same way.
if len(matches) > max_results:
return matches[:max_results], True
return matches, False
def grep(
self,
path: str,
pattern: str,
*,
glob: str | None = None,
literal: bool = False,
case_sensitive: bool = False,
max_results: int = 100,
) -> tuple[list[GrepMatch], bool]:
import re as _re
regex_source = _re.escape(pattern) if literal else pattern
# Validate the pattern locally so an invalid regex raises re.error
# (caught by grep_tool's except re.error handler) rather than a
# generic remote API error.
_re.compile(regex_source, 0 if case_sensitive else _re.IGNORECASE)
total_cap = max(max_results * 4, max_results + 50)
result = self._client.file.grep_files(
path=path,
pattern=pattern,
case_insensitive=not case_sensitive,
fixed_strings=literal,
max_results=total_cap,
max_file_size="1M",
recursive=True,
)
data = result.data
provider_matches = data.matches if data and data.matches else []
root = path.rstrip("/") or "/"
root_prefix = root if root == "/" else f"{root}/"
matches: list[GrepMatch] = []
truncated = bool(data and data.truncated)
for match in provider_matches:
file_path = match.file
if should_ignore_path(file_path):
continue
if file_path == root:
rel_path = file_path.rsplit("/", 1)[-1]
elif file_path.startswith(root_prefix):
rel_path = file_path[len(root_prefix) :]
else:
continue
if glob is not None and not path_matches(glob, rel_path):
continue
matches.append(
GrepMatch(
path=file_path,
line_number=match.line_number,
line=truncate_line(match.line_content),
)
)
if len(matches) >= max_results:
truncated = True
break
return matches, truncated
def update_file(self, path: str, content: bytes) -> None:
"""Update a file with binary content in the sandbox.
Args:
path: The absolute path of the file to update.
content: The binary content to write to the file.
"""
with self._lock:
try:
base64_content = base64.b64encode(content).decode("utf-8")
self._client.file.write_file(file=path, content=base64_content, encoding="base64")
except Exception as e:
logger.error(f"Failed to update file in sandbox: {e}")
raise