Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ca8c5efc22 | |||
| a40d31f789 |
@@ -1,9 +0,0 @@
|
|||||||
[run]
|
|
||||||
branch = True
|
|
||||||
source = .
|
|
||||||
|
|
||||||
[report]
|
|
||||||
omit =
|
|
||||||
bot_bottle/egress_addon.py
|
|
||||||
bot_bottle/cli/tui.py
|
|
||||||
tests/*
|
|
||||||
@@ -39,14 +39,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: "3.12"
|
python-version: "3.12"
|
||||||
|
|
||||||
- name: Install dev requirements
|
|
||||||
run: python3 -m pip install -r requirements-dev.txt
|
|
||||||
|
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
run: python3 -m coverage run -m unittest discover -t . -s tests/unit -v
|
run: python3 -m unittest discover -t . -s tests/unit -v
|
||||||
|
|
||||||
- name: Report unit coverage
|
|
||||||
run: python3 -m coverage report -m
|
|
||||||
|
|
||||||
integration:
|
integration:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -22,4 +22,3 @@ venv/
|
|||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
.mypy_cache/
|
.mypy_cache/
|
||||||
.ruff_cache/
|
.ruff_cache/
|
||||||
.coverage
|
|
||||||
|
|||||||
@@ -7,13 +7,10 @@ with a curated set of skills and env vars. The point is to run agents with
|
|||||||
broad permissions inside a sandbox, so a misbehaving agent cannot reach the
|
broad permissions inside a sandbox, so a misbehaving agent cannot reach the
|
||||||
host. A Python CLI (entry point `cli.py`, package `bot_bottle/`) orchestrates
|
host. A Python CLI (entry point `cli.py`, package `bot_bottle/`) orchestrates
|
||||||
the runtime lifecycle and the copying of skills and env vars into it.
|
the runtime lifecycle and the copying of skills and env vars into it.
|
||||||
The default backend on compatible macOS hosts is macos-container:
|
The default backend is smolmachines on macOS: agents run in a libkrun
|
||||||
agents and sidecar bundles run through Apple's `container` CLI without
|
micro-VM, while the sidecar bundle still uses Docker. The legacy Docker
|
||||||
requiring Docker. The smolmachines backend remains available with
|
backend remains available with `BOT_BOTTLE_BACKEND=docker` or
|
||||||
`BOT_BOTTLE_BACKEND=smolmachines` or `--backend=smolmachines`; agents
|
`--backend=docker`.
|
||||||
run in a libkrun micro-VM, while the sidecar bundle still uses Docker.
|
|
||||||
The legacy Docker backend remains available with `BOT_BOTTLE_BACKEND=docker`
|
|
||||||
or `--backend=docker`.
|
|
||||||
|
|
||||||
## Goals
|
## Goals
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
# bot-bottle
|
# bot-bottle
|
||||||
|
|
||||||
[](https://gitea.dideric.is/didericis/bot-bottle/actions?workflow=test.yml)
|
[](https://gitea.dideric.is/didericis/bot-bottle/actions?workflow=test.yml)
|
||||||
[](https://github.com/PyCQA/pylint)
|
[](https://github.com/PyCQA/pylint)
|
||||||
[](https://github.com/microsoft/pyright)
|
[](https://github.com/microsoft/pyright)
|
||||||
|
|
||||||
**Problem:** Developer wants to run a coding agent without supervision, but they don't want a prompt injected or misbehaving agent wrecking their environment or exfiltrating sensitive data.
|
**Problem:** Developer wants to run a coding agent without supervision, but they don't want a prompt injected or misbehaving agent wrecking their environment or exfiltrating sensitive data.
|
||||||
@@ -14,8 +14,7 @@
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- **Per-bottle egress allowlist** — TLS-bumped HTTP/HTTPS chokepoint with a per-manifest host allowlist; per-route path/method/header `matches` filtering; outbound DLP scanning for known tokens and secrets, inbound DLP scanning for prompt-injection attempts; DoH and arbitrary hosts blocked by default.
|
- **Per-bottle egress allowlist** — TLS-bumped HTTP/HTTPS chokepoint with a per-manifest host allowlist and request-body DLP scanner; DoH and arbitrary hosts blocked by default.
|
||||||
- **Per-route token-match policy** — each egress route picks what happens when the outbound DLP catches a token via `dlp.outbound_on_match`: `supervise` (default) holds the request and surfaces it in `./cli.py supervise` for approval (an approved value is remembered for the life of the proxy); `redact` scrubs the value and forwards; `block` is a hard `403`. Cuts false-positive friction without weakening default-deny.
|
|
||||||
- **Tokens the agent never sees** — host secrets live in a sidecar; the agent dials `http://sidecar:9099/<path>` and the proxy strips inbound `Authorization` and injects the real token before forwarding. `printenv` in the agent shows proxy URLs only.
|
- **Tokens the agent never sees** — host secrets live in a sidecar; the agent dials `http://sidecar:9099/<path>` and the proxy strips inbound `Authorization` and injects the real token before forwarding. `printenv` in the agent shows proxy URLs only.
|
||||||
- **Gitleaks-scanned push (git-gate)** — `bottle.git` remotes route through a per-bottle `git daemon` that gitleaks-scans incoming refs pre-receive and forwards clean refs upstream over SSH. The agent never holds the upstream credential.
|
- **Gitleaks-scanned push (git-gate)** — `bottle.git` remotes route through a per-bottle `git daemon` that gitleaks-scans incoming refs pre-receive and forwards clean refs upstream over SSH. The agent never holds the upstream credential.
|
||||||
- **Manifest-scoped skills + secrets** — each bottle declares its skills, env, git identity, remotes, and egress routes; unknown keys die at load.
|
- **Manifest-scoped skills + secrets** — each bottle declares its skills, env, git identity, remotes, and egress routes; unknown keys die at load.
|
||||||
@@ -24,15 +23,12 @@
|
|||||||
- **Parallel, isolated bottles** — each bottle runs in its own backend-owned isolation boundary; bottles don't share state or talk to each other.
|
- **Parallel, isolated bottles** — each bottle runs in its own backend-owned isolation boundary; bottles don't share state or talk to each other.
|
||||||
- **Provider templates (Claude, Codex)** — `Dockerfile.claude` / `Dockerfile.codex`, or a bottle-supplied Dockerfile. Claude auth via long-lived OAuth token; Codex via opt-in host device-auth forwarding.
|
- **Provider templates (Claude, Codex)** — `Dockerfile.claude` / `Dockerfile.codex`, or a bottle-supplied Dockerfile. Claude auth via long-lived OAuth token; Codex via opt-in host device-auth forwarding.
|
||||||
- **gVisor auto-detect** — on Linux hosts where `runsc` is registered with Docker, every bottle launches under it for a userspace syscall barrier; no manifest config required.
|
- **gVisor auto-detect** — on Linux hosts where `runsc` is registered with Docker, every bottle launches under it for a userspace syscall barrier; no manifest config required.
|
||||||
- **Apple Container backend (macOS default when available)** — runs the agent and sidecar bundle with Apple's `container` CLI, using a host-only agent network plus a separate sidecar egress network.
|
- **Smolmachines backend (macOS default)** — runs the agent in a libkrun micro-VM while the sidecar bundle stays in Docker. TSI and smolmachines DNS filtering close the raw DNS exfiltration gap that exists in the legacy Docker backend.
|
||||||
- **Smolmachines backend** — runs the agent in a libkrun micro-VM while the sidecar bundle stays in Docker. TSI and smolmachines DNS filtering close the raw DNS exfiltration gap that exists in the legacy Docker backend.
|
- **Legacy Docker backend** — still available for examples, CI, and hosts without smolvm via `BOT_BOTTLE_BACKEND=docker` or `--backend=docker`.
|
||||||
- **Legacy Docker backend** — still available for examples, CI, and hosts without Apple Container via `BOT_BOTTLE_BACKEND=docker` or `--backend=docker`.
|
|
||||||
|
|
||||||
## Architecture
|
## Architecture
|
||||||
|
|
||||||
On the default macOS Apple Container backend, a bottle is an agent container on a host-only internal network plus a sidecar bundle attached to both that internal network and a NAT egress network. The agent gets HTTP(S)_PROXY and CA bundle env vars pointing at the sidecar's internal-network IP, so HTTP/HTTPS traffic flows through the sidecar instead of direct egress. `bottle.git` / git-gate is intentionally deferred on this backend until a safe Apple Container key-delivery path exists.
|
On the default smolmachines backend, a bottle is an agent micro-VM plus a Docker sidecar bundle for egress, git-gate, and supervise. The VM reaches the sidecars through a per-bottle loopback alias allowed by TSI; smolmachines handles DNS filtering below the guest OS.
|
||||||
|
|
||||||
On the smolmachines backend, a bottle is an agent micro-VM plus a Docker sidecar bundle for egress, git-gate, and supervise. The VM reaches the sidecars through a per-bottle loopback alias allowed by TSI; smolmachines handles DNS filtering below the guest OS.
|
|
||||||
|
|
||||||
On the legacy Docker backend, the same logical bottle is two containers per agent: an `agent` container and a `sidecars` container. They share a per-agent Docker `--internal` network; the agent has no default route off-box.
|
On the legacy Docker backend, the same logical bottle is two containers per agent: an `agent` container and a `sidecars` container. They share a per-agent Docker `--internal` network; the agent has no default route off-box.
|
||||||
|
|
||||||
@@ -71,9 +67,9 @@ When the agent exits, `cli.py` tears down every sidecar and both networks; nothi
|
|||||||
|
|
||||||
## Quickstart
|
## Quickstart
|
||||||
|
|
||||||
On compatible macOS hosts, the default backend requires Apple's `container` CLI and does not require Docker. The smolmachines backend requires Docker on the host for the sidecar bundle plus smolvm. The legacy Docker backend requires Docker. Claude bottles also need a long-lived Claude Code OAuth token (`claude setup-token`) exported as `BOT_BOTTLE_CLAUDE_OAUTH_TOKEN`.
|
Requires Docker on the host for the sidecar bundle, smolvm on macOS for the default backend, and a long-lived Claude Code OAuth token (`claude setup-token`) exported as `BOT_BOTTLE_CLAUDE_OAUTH_TOKEN`.
|
||||||
|
|
||||||
Use `BOT_BOTTLE_BACKEND=docker ./cli.py start <agent>` on hosts where Apple Container is not installed and Docker is the desired backend.
|
Use `BOT_BOTTLE_BACKEND=docker ./cli.py start <agent>` on hosts where smolvm is not installed.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
./cli.py start <agent> # builds the image on first run, drops you into claude
|
./cli.py start <agent> # builds the image on first run, drops you into claude
|
||||||
@@ -107,15 +103,8 @@ egress:
|
|||||||
routes:
|
routes:
|
||||||
- host: gitea.dideric.is
|
- host: gitea.dideric.is
|
||||||
auth:
|
auth:
|
||||||
scheme: token # Bearer | token
|
scheme: token
|
||||||
token_ref: BOT_BOTTLE_GITEA_TOKEN
|
token_ref: BOT_BOTTLE_GITEA_TOKEN
|
||||||
matches: # optional — restrict to specific paths/methods/headers
|
|
||||||
- paths:
|
|
||||||
- {type: prefix, value: /api/v1/}
|
|
||||||
methods: [GET, POST, PATCH, DELETE]
|
|
||||||
dlp: # optional — per-route detector overrides (default: all on)
|
|
||||||
outbound_detectors: [token_patterns, known_secrets]
|
|
||||||
inbound_detectors: false # disable response scanning for this host
|
|
||||||
---
|
---
|
||||||
|
|
||||||
The `gitea-dev` bottle. Provider auth via the inherited Claude route;
|
The `gitea-dev` bottle. Provider auth via the inherited Claude route;
|
||||||
@@ -134,26 +123,6 @@ skills:
|
|||||||
You help maintain Gitea-hosted projects.
|
You help maintain Gitea-hosted projects.
|
||||||
````
|
````
|
||||||
|
|
||||||
**Egress route fields:**
|
|
||||||
|
|
||||||
| Field | Required | Description |
|
|
||||||
|---|---|---|
|
|
||||||
| `host` | yes | Hostname to allowlist. One entry per host. |
|
|
||||||
| `role` | no | Reserved for future use. The key is recognised but any value is currently rejected at load. Provider auth routes (e.g. Claude's `api.anthropic.com`) are injected automatically from `agent_provider.auth_token`, not via `role`. |
|
|
||||||
| `auth.scheme` | when `auth` present | `Bearer` or `token`. Injected by the proxy; the agent never sees the value. |
|
|
||||||
| `auth.token_ref` | when `auth` present | Env-var name holding the secret on the host. |
|
|
||||||
| `matches` | no | Array of `{paths, methods, headers}` filters. A request must match at least one entry (if any are given) to be forwarded. |
|
|
||||||
| `matches[].paths` | no | Array of `{type, value}`. `type` is `prefix` (default), `exact`, or `regex`. |
|
|
||||||
| `matches[].methods` | no | Array of HTTP method strings, e.g. `[GET, POST]`. |
|
|
||||||
| `matches[].headers` | no | Array of `{name, value, type}`. `type` is `exact` (default) or `regex`. |
|
|
||||||
| `dlp` | no | Per-route DLP overrides. Omit to use defaults (all detectors on). |
|
|
||||||
| `dlp.outbound_detectors` | no | `false` disables outbound scanning; list restricts to named detectors (`token_patterns`, `known_secrets`). |
|
|
||||||
| `dlp.inbound_detectors` | no | `false` disables inbound scanning; list restricts to named detectors (`naive_injection_detection`). |
|
|
||||||
| `dlp.outbound_on_match` | no | What to do when an outbound token is detected: `supervise` (default for manifest routes — hold for operator approval), `redact` (scrub the value and forward), or `block` (hard 403). Agent-provider routes (e.g. `api.anthropic.com`) default to `redact`. |
|
|
||||||
| `git.fetch` | no | `true` permits smart HTTP clone/fetch (`git-upload-pack`) for this host. Push (`git-receive-pack`) remains blocked. |
|
|
||||||
|
|
||||||
When an outbound DLP detector matches a token, the route's `dlp.outbound_on_match` policy decides what happens. Under the default `supervise`, the proxy queues an `egress-token-allow` proposal for the operator's `./cli.py supervise` TUI and holds the request open until it is answered (or `EGRESS_TOKEN_ALLOW_TIMEOUT_SECONDS`, default 300s, elapses — after which it fails closed). The operator never sees the raw token, only the host, method, path, and a redacted snippet; approving adds the value to an in-memory safelist for the life of the egress proxy. Under `redact`, the matched value is scrubbed from the body, headers, and path and the request is forwarded (failing closed if a match lands somewhere unredactable, like the hostname). Under `block` it stays a hard `403`. Structural blocks (CRLF injection) and not-in-allowlist host blocks are always hard `403`s regardless of policy.
|
|
||||||
|
|
||||||
More examples in `examples/`. Full design lives under `docs/prds/`; the trust-boundary rationale is in `docs/prds/0011-per-file-md-manifest.md`.
|
More examples in `examples/`. Full design lives under `docs/prds/`; the trust-boundary rationale is in `docs/prds/0011-per-file-md-manifest.md`.
|
||||||
|
|
||||||
## Trademarks
|
## Trademarks
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ class AgentProviderRuntime:
|
|||||||
prompt_mode: PromptMode
|
prompt_mode: PromptMode
|
||||||
bypass_args: tuple[str, ...]
|
bypass_args: tuple[str, ...]
|
||||||
resume_args: tuple[str, ...]
|
resume_args: tuple[str, ...]
|
||||||
|
remote_control_args: tuple[str, ...]
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
@@ -239,7 +240,7 @@ class AgentProvider(ABC):
|
|||||||
BottleBackend.provision_workspace against the running bottle."""
|
BottleBackend.provision_workspace against the running bottle."""
|
||||||
from .log import info
|
from .log import info
|
||||||
|
|
||||||
manifest_bottle = plan.manifest.bottle
|
manifest_bottle = plan.spec.manifest.bottle_for(plan.spec.agent_name)
|
||||||
if manifest_bottle.git:
|
if manifest_bottle.git:
|
||||||
from .git_gate import GIT_GATE_HOSTNAME, git_gate_render_gitconfig
|
from .git_gate import GIT_GATE_HOSTNAME, git_gate_render_gitconfig
|
||||||
gate_host = getattr(plan, "git_gate_insteadof_host", GIT_GATE_HOSTNAME)
|
gate_host = getattr(plan, "git_gate_insteadof_host", GIT_GATE_HOSTNAME)
|
||||||
@@ -370,15 +371,6 @@ def build_agent_provision_plan(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def provider_startup_args(
|
|
||||||
provider_settings: dict[str, object] | None,
|
|
||||||
) -> tuple[str, ...]:
|
|
||||||
raw = (provider_settings or {}).get("startup_args", ())
|
|
||||||
if not isinstance(raw, (list, tuple)):
|
|
||||||
return ()
|
|
||||||
return tuple(arg for arg in raw if isinstance(arg, str))
|
|
||||||
|
|
||||||
|
|
||||||
def prompt_args(
|
def prompt_args(
|
||||||
prompt_mode: PromptMode,
|
prompt_mode: PromptMode,
|
||||||
prompt_path: str | None,
|
prompt_path: str | None,
|
||||||
@@ -390,7 +382,7 @@ def prompt_args(
|
|||||||
if prompt_mode == "append_file":
|
if prompt_mode == "append_file":
|
||||||
return ["--append-system-prompt-file", prompt_path]
|
return ["--append-system-prompt-file", prompt_path]
|
||||||
if prompt_mode == "read_prompt_file":
|
if prompt_mode == "read_prompt_file":
|
||||||
if argv and ("resume" in argv or "remote-control" in argv):
|
if argv and "resume" in argv:
|
||||||
return []
|
return []
|
||||||
return [f"Read and follow the instructions in {prompt_path}."]
|
return [f"Read and follow the instructions in {prompt_path}."]
|
||||||
if prompt_mode == "print_read_prompt_file":
|
if prompt_mode == "print_read_prompt_file":
|
||||||
|
|||||||
@@ -24,10 +24,9 @@ backend exposes five methods:
|
|||||||
enough metadata for callers (CLI `list active`, dashboard
|
enough metadata for callers (CLI `list active`, dashboard
|
||||||
agents pane) to render a row.
|
agents pane) to render a row.
|
||||||
|
|
||||||
Selection is driven by `--backend` on `start` or BOT_BOTTLE_BACKEND
|
Selection is driven by `--backend` on `start` or
|
||||||
(env var). When neither is set, compatible macOS hosts default to
|
BOT_BOTTLE_BACKEND (env var; default "smolmachines"). Per PRD 0003 the
|
||||||
`macos-container`; other hosts default to `smolmachines`. Per PRD 0003
|
manifest does not carry a backend field; the host picks.
|
||||||
the manifest does not carry a backend field; the host picks.
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
@@ -45,7 +44,7 @@ from ..agent_provider import AgentProvisionPlan, get_provider, build_agent_provi
|
|||||||
from ..egress import EgressPlan
|
from ..egress import EgressPlan
|
||||||
from ..git_gate import GitGatePlan
|
from ..git_gate import GitGatePlan
|
||||||
from ..log import die, info
|
from ..log import die, info
|
||||||
from ..manifest import Manifest, ManifestIndex
|
from ..manifest import ManifestGitEntry, Manifest
|
||||||
from ..supervise import SupervisePlan
|
from ..supervise import SupervisePlan
|
||||||
from ..util import expand_tilde
|
from ..util import expand_tilde
|
||||||
from ..env import resolve_env, ResolvedEnv
|
from ..env import resolve_env, ResolvedEnv
|
||||||
@@ -61,7 +60,7 @@ class BottleSpec:
|
|||||||
Resolved values (image names, container name, scratch paths, runsc
|
Resolved values (image names, container name, scratch paths, runsc
|
||||||
availability) live on the plan, not the spec."""
|
availability) live on the plan, not the spec."""
|
||||||
|
|
||||||
manifest: ManifestIndex
|
manifest: Manifest
|
||||||
agent_name: str
|
agent_name: str
|
||||||
copy_cwd: bool
|
copy_cwd: bool
|
||||||
user_cwd: str
|
user_cwd: str
|
||||||
@@ -80,7 +79,6 @@ class BottlePlan(ABC):
|
|||||||
(e.g. DockerBottlePlan) add backend-specific resolved fields."""
|
(e.g. DockerBottlePlan) add backend-specific resolved fields."""
|
||||||
|
|
||||||
spec: BottleSpec
|
spec: BottleSpec
|
||||||
manifest: Manifest
|
|
||||||
stage_dir: Path
|
stage_dir: Path
|
||||||
git_gate_plan: GitGatePlan
|
git_gate_plan: GitGatePlan
|
||||||
|
|
||||||
@@ -109,12 +107,13 @@ class BottlePlan(ABC):
|
|||||||
def workspace_plan(self) -> WorkspacePlan:
|
def workspace_plan(self) -> WorkspacePlan:
|
||||||
return workspace_plan(self.spec, guest_home=self.guest_home)
|
return workspace_plan(self.spec, guest_home=self.guest_home)
|
||||||
|
|
||||||
def print(self) -> None:
|
def print(self, *, remote_control: bool) -> None:
|
||||||
"""Render the y/N preflight summary to stderr."""
|
"""Render the y/N preflight summary to stderr."""
|
||||||
|
del remote_control
|
||||||
spec = self.spec
|
spec = self.spec
|
||||||
manifest = self.manifest
|
manifest = spec.manifest
|
||||||
agent = manifest.agent
|
agent = manifest.agents[spec.agent_name]
|
||||||
bottle = manifest.bottle
|
bottle = manifest.bottle_for(spec.agent_name)
|
||||||
|
|
||||||
env_names = visible_agent_env_names(
|
env_names = visible_agent_env_names(
|
||||||
sorted(
|
sorted(
|
||||||
@@ -131,7 +130,7 @@ class BottlePlan(ABC):
|
|||||||
print_multi("skills ", list(agent.skills))
|
print_multi("skills ", list(agent.skills))
|
||||||
info(f"bottle : {agent.bottle}")
|
info(f"bottle : {agent.bottle}")
|
||||||
|
|
||||||
identity = manifest.git_identity_summary()
|
identity = manifest.git_identity_summary(spec.agent_name)
|
||||||
if identity:
|
if identity:
|
||||||
info(f" git identity : {identity}")
|
info(f" git identity : {identity}")
|
||||||
|
|
||||||
@@ -191,7 +190,7 @@ class ActiveAgent:
|
|||||||
of sidecar daemons currently up for this bottle (`egress`,
|
of sidecar daemons currently up for this bottle (`egress`,
|
||||||
`git-gate`, `supervise`); the dashboard uses it to
|
`git-gate`, `supervise`); the dashboard uses it to
|
||||||
gate edit verbs. `backend_name` is the matching key in
|
gate edit verbs. `backend_name` is the matching key in
|
||||||
`_BACKENDS` (`docker` / `smolmachines` / `macos-container`) — used by the active-
|
`_BACKENDS` (`docker` / `smolmachines`) — used by the active-
|
||||||
list rendering to disambiguate and by the dashboard's
|
list rendering to disambiguate and by the dashboard's
|
||||||
re-attach path."""
|
re-attach path."""
|
||||||
|
|
||||||
@@ -289,14 +288,15 @@ class BottleBackend(ABC, Generic[PlanT, CleanupT]):
|
|||||||
write_launch_metadata,
|
write_launch_metadata,
|
||||||
)
|
)
|
||||||
|
|
||||||
manifest = self._validate(spec)
|
self._validate(spec)
|
||||||
|
|
||||||
self._preflight()
|
self._preflight()
|
||||||
|
|
||||||
manifest_bottle = manifest.bottle
|
manifest = spec.manifest
|
||||||
|
manifest_bottle = manifest.bottle_for(spec.agent_name)
|
||||||
manifest_agent_provider = manifest_bottle.agent_provider
|
manifest_agent_provider = manifest_bottle.agent_provider
|
||||||
agent_provider = get_provider(manifest_agent_provider.template)
|
agent_provider = get_provider(manifest_agent_provider.template)
|
||||||
resolved_env = resolve_env(manifest)
|
resolved_env = resolve_env(manifest, spec.agent_name)
|
||||||
workspace = workspace_plan(spec, guest_home=agent_provider.guest_home)
|
workspace = workspace_plan(spec, guest_home=agent_provider.guest_home)
|
||||||
|
|
||||||
slug = mint_slug(spec)
|
slug = mint_slug(spec)
|
||||||
@@ -312,7 +312,7 @@ class BottleBackend(ABC, Generic[PlanT, CleanupT]):
|
|||||||
else:
|
else:
|
||||||
agent_dockerfile_path = str(agent_provider.dockerfile)
|
agent_dockerfile_path = str(agent_provider.dockerfile)
|
||||||
|
|
||||||
agent_dir, prompt_file = prepare_agent_state_dir(slug, manifest)
|
agent_dir, prompt_file = prepare_agent_state_dir(slug, spec)
|
||||||
|
|
||||||
agent_provision_plan = build_agent_provision_plan(
|
agent_provision_plan = build_agent_provision_plan(
|
||||||
template=manifest_agent_provider.template,
|
template=manifest_agent_provider.template,
|
||||||
@@ -336,7 +336,6 @@ class BottleBackend(ABC, Generic[PlanT, CleanupT]):
|
|||||||
|
|
||||||
return self._resolve_plan(
|
return self._resolve_plan(
|
||||||
spec,
|
spec,
|
||||||
manifest=manifest,
|
|
||||||
slug=slug,
|
slug=slug,
|
||||||
resolved_env=resolved_env,
|
resolved_env=resolved_env,
|
||||||
agent_provision_plan=agent_provision_plan,
|
agent_provision_plan=agent_provision_plan,
|
||||||
@@ -355,18 +354,18 @@ class BottleBackend(ABC, Generic[PlanT, CleanupT]):
|
|||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def _validate(self, spec: BottleSpec) -> Manifest:
|
def _validate(self, spec: BottleSpec) -> None:
|
||||||
"""Cross-backend pre-launch checks. Parses the selected agent and
|
"""Cross-backend pre-launch checks. Confirms the agent exists,
|
||||||
its bottle (raising ManifestError on invalid content), confirms
|
the named skills are present on the host, and every git
|
||||||
skills are present on the host, and every git IdentityFile resolves.
|
IdentityFile resolves. Subclasses with additional preconditions
|
||||||
|
should override and call `super()._validate(spec)` first."""
|
||||||
Returns the loaded Manifest for the selected agent. Subclasses with
|
manifest = spec.manifest
|
||||||
additional preconditions should override and call
|
manifest.require_agent(spec.agent_name)
|
||||||
`super()._validate(spec)` first."""
|
agent = manifest.agents[spec.agent_name]
|
||||||
manifest = spec.manifest.load_for_agent(spec.agent_name)
|
bottle = manifest.bottle_for(spec.agent_name)
|
||||||
self._validate_skills(manifest.agent.skills)
|
self._validate_skills(agent.skills)
|
||||||
self._validate_agent_provider_dockerfile(spec, manifest)
|
self._validate_git_entries(bottle.git)
|
||||||
return manifest
|
self._validate_agent_provider_dockerfile(spec)
|
||||||
|
|
||||||
def _validate_skills(self, skills: Sequence[str]) -> None:
|
def _validate_skills(self, skills: Sequence[str]) -> None:
|
||||||
"""Each named skill must be a directory under the host's
|
"""Each named skill must be a directory under the host's
|
||||||
@@ -380,8 +379,18 @@ class BottleBackend(ABC, Generic[PlanT, CleanupT]):
|
|||||||
f"Create it under ~/.claude/skills/, then re-run."
|
f"Create it under ~/.claude/skills/, then re-run."
|
||||||
)
|
)
|
||||||
|
|
||||||
def _validate_agent_provider_dockerfile(self, spec: BottleSpec, manifest: Manifest) -> None:
|
def _validate_git_entries(self, entries: Sequence[ManifestGitEntry]) -> None:
|
||||||
bottle = manifest.bottle
|
"""Each entry's IdentityFile must exist on the host (after
|
||||||
|
expanding leading ~) — the git-gate copies it in at start time
|
||||||
|
to authenticate the upstream push (PRD 0008). Shape is already
|
||||||
|
enforced by Manifest validation; this only checks presence."""
|
||||||
|
for entry in entries:
|
||||||
|
key = expand_tilde(entry.IdentityFile)
|
||||||
|
if not os.path.isfile(key):
|
||||||
|
die(f"git upstream key file not found for '{entry.Name}': {key}")
|
||||||
|
|
||||||
|
def _validate_agent_provider_dockerfile(self, spec: BottleSpec) -> None:
|
||||||
|
bottle = spec.manifest.bottle_for(spec.agent_name)
|
||||||
dockerfile = bottle.agent_provider.dockerfile
|
dockerfile = bottle.agent_provider.dockerfile
|
||||||
if not dockerfile:
|
if not dockerfile:
|
||||||
return
|
return
|
||||||
@@ -391,14 +400,13 @@ class BottleBackend(ABC, Generic[PlanT, CleanupT]):
|
|||||||
if not path.is_file():
|
if not path.is_file():
|
||||||
die(
|
die(
|
||||||
f"agent_provider.dockerfile for bottle "
|
f"agent_provider.dockerfile for bottle "
|
||||||
f"'{manifest.agent.bottle}' not found: {path}"
|
f"'{spec.manifest.agents[spec.agent_name].bottle}' not found: {path}"
|
||||||
)
|
)
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
def _resolve_plan(self,
|
def _resolve_plan(self,
|
||||||
spec: BottleSpec,
|
spec: BottleSpec,
|
||||||
*,
|
*,
|
||||||
manifest: Manifest,
|
|
||||||
slug: str,
|
slug: str,
|
||||||
resolved_env: ResolvedEnv,
|
resolved_env: ResolvedEnv,
|
||||||
agent_provision_plan: AgentProvisionPlan,
|
agent_provision_plan: AgentProvisionPlan,
|
||||||
@@ -522,14 +530,8 @@ class BottleBackend(ABC, Generic[PlanT, CleanupT]):
|
|||||||
# each backend module can pull BottleSpec / BottlePlan / BottleBackend
|
# each backend module can pull BottleSpec / BottlePlan / BottleBackend
|
||||||
# via `from . import ...` without hitting a partially-initialized module.
|
# via `from . import ...` without hitting a partially-initialized module.
|
||||||
from .docker import DockerBottleBackend # noqa: E402 # pylint: disable=wrong-import-position
|
from .docker import DockerBottleBackend # noqa: E402 # pylint: disable=wrong-import-position
|
||||||
from .macos_container import MacosContainerBottleBackend # noqa: E402 # pylint: disable=wrong-import-position
|
|
||||||
from .smolmachines import SmolmachinesBottleBackend # noqa: E402 # pylint: disable=wrong-import-position
|
from .smolmachines import SmolmachinesBottleBackend # noqa: E402 # pylint: disable=wrong-import-position
|
||||||
|
|
||||||
# Freezer is imported after the backend classes for the same reason:
|
|
||||||
# Freezer.commit_slug constructs ActiveAgent, which must be fully
|
|
||||||
# defined first.
|
|
||||||
from .freeze import CommitCancelled, Freezer, get_freezer # noqa: E402 # pylint: disable=wrong-import-position
|
|
||||||
|
|
||||||
|
|
||||||
# The dict is heterogeneous: each value is a BottleBackend specialized
|
# The dict is heterogeneous: each value is a BottleBackend specialized
|
||||||
# over its own plan type. Concrete plan types are erased here because
|
# over its own plan type. Concrete plan types are erased here because
|
||||||
@@ -537,7 +539,6 @@ from .freeze import CommitCancelled, Freezer, get_freezer # noqa: E402 # pylin
|
|||||||
# unparameterized methods (prepare → plan → launch(plan), cleanup, etc.).
|
# unparameterized methods (prepare → plan → launch(plan), cleanup, etc.).
|
||||||
_BACKENDS: dict[str, BottleBackend[Any, Any]] = {
|
_BACKENDS: dict[str, BottleBackend[Any, Any]] = {
|
||||||
"docker": DockerBottleBackend(),
|
"docker": DockerBottleBackend(),
|
||||||
"macos-container": MacosContainerBottleBackend(),
|
|
||||||
"smolmachines": SmolmachinesBottleBackend(),
|
"smolmachines": SmolmachinesBottleBackend(),
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -550,24 +551,17 @@ def get_bottle_backend(
|
|||||||
`name` precedence:
|
`name` precedence:
|
||||||
1. explicit arg (CLI `--backend=<name>` passes through here)
|
1. explicit arg (CLI `--backend=<name>` passes through here)
|
||||||
2. BOT_BOTTLE_BACKEND env var
|
2. BOT_BOTTLE_BACKEND env var
|
||||||
3. `macos-container` on compatible macOS hosts
|
3. default `smolmachines`
|
||||||
4. default `smolmachines`
|
|
||||||
|
|
||||||
Dies with a pointer at the known backends if the chosen name
|
Dies with a pointer at the known backends if the chosen name
|
||||||
isn't implemented."""
|
isn't implemented."""
|
||||||
resolved = name or os.environ.get("BOT_BOTTLE_BACKEND") or _default_backend_name()
|
resolved = name or os.environ.get("BOT_BOTTLE_BACKEND") or "smolmachines"
|
||||||
if resolved not in _BACKENDS:
|
if resolved not in _BACKENDS:
|
||||||
known = ", ".join(sorted(_BACKENDS))
|
known = ", ".join(sorted(_BACKENDS))
|
||||||
die(f"unknown backend {resolved!r}; known backends: {known}")
|
die(f"unknown backend {resolved!r}; known backends: {known}")
|
||||||
return _BACKENDS[resolved]
|
return _BACKENDS[resolved]
|
||||||
|
|
||||||
|
|
||||||
def _default_backend_name() -> str:
|
|
||||||
if has_backend("macos-container"):
|
|
||||||
return "macos-container"
|
|
||||||
return "smolmachines"
|
|
||||||
|
|
||||||
|
|
||||||
def known_backend_names() -> tuple[str, ...]:
|
def known_backend_names() -> tuple[str, ...]:
|
||||||
"""Sorted tuple of all backend keys in `_BACKENDS`. Used by
|
"""Sorted tuple of all backend keys in `_BACKENDS`. Used by
|
||||||
argparse (`--backend` choices) and the dashboard's backend
|
argparse (`--backend` choices) and the dashboard's backend
|
||||||
@@ -617,12 +611,9 @@ __all__ = [
|
|||||||
"BottleCleanupPlan",
|
"BottleCleanupPlan",
|
||||||
"BottlePlan",
|
"BottlePlan",
|
||||||
"BottleSpec",
|
"BottleSpec",
|
||||||
"CommitCancelled",
|
|
||||||
"ExecResult",
|
"ExecResult",
|
||||||
"Freezer",
|
|
||||||
"enumerate_active_agents",
|
"enumerate_active_agents",
|
||||||
"get_bottle_backend",
|
"get_bottle_backend",
|
||||||
"get_freezer",
|
|
||||||
"has_backend",
|
"has_backend",
|
||||||
"known_backend_names",
|
"known_backend_names",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ from ...egress import EgressPlan
|
|||||||
from ...env import ResolvedEnv
|
from ...env import ResolvedEnv
|
||||||
from ...git_gate import GitGatePlan
|
from ...git_gate import GitGatePlan
|
||||||
from ...supervise import SupervisePlan
|
from ...supervise import SupervisePlan
|
||||||
from ...manifest import Manifest
|
|
||||||
from .. import ActiveAgent, BottleBackend, BottleSpec
|
from .. import ActiveAgent, BottleBackend, BottleSpec
|
||||||
from . import cleanup as _cleanup
|
from . import cleanup as _cleanup
|
||||||
from . import enumerate as _enumerate
|
from . import enumerate as _enumerate
|
||||||
@@ -64,7 +63,6 @@ class DockerBottleBackend(BottleBackend["DockerBottlePlan", "DockerBottleCleanup
|
|||||||
self,
|
self,
|
||||||
spec: BottleSpec,
|
spec: BottleSpec,
|
||||||
*,
|
*,
|
||||||
manifest: Manifest,
|
|
||||||
slug: str,
|
slug: str,
|
||||||
resolved_env: ResolvedEnv,
|
resolved_env: ResolvedEnv,
|
||||||
agent_provision_plan: AgentProvisionPlan,
|
agent_provision_plan: AgentProvisionPlan,
|
||||||
@@ -75,7 +73,6 @@ class DockerBottleBackend(BottleBackend["DockerBottlePlan", "DockerBottleCleanup
|
|||||||
) -> DockerBottlePlan:
|
) -> DockerBottlePlan:
|
||||||
return _resolve_plan.resolve_plan(
|
return _resolve_plan.resolve_plan(
|
||||||
spec,
|
spec,
|
||||||
manifest=manifest,
|
|
||||||
slug=slug,
|
slug=slug,
|
||||||
resolved_env=resolved_env,
|
resolved_env=resolved_env,
|
||||||
agent_provision_plan=agent_provision_plan,
|
agent_provision_plan=agent_provision_plan,
|
||||||
|
|||||||
@@ -28,8 +28,6 @@ from typing import Any
|
|||||||
from ...egress import (
|
from ...egress import (
|
||||||
EGRESS_HOSTNAME,
|
EGRESS_HOSTNAME,
|
||||||
EGRESS_ROUTES_IN_CONTAINER,
|
EGRESS_ROUTES_IN_CONTAINER,
|
||||||
egress_agent_env_entries,
|
|
||||||
egress_sidecar_env_entries,
|
|
||||||
)
|
)
|
||||||
from ...git_gate import GIT_GATE_HOSTNAME
|
from ...git_gate import GIT_GATE_HOSTNAME
|
||||||
from ...log import die, warn
|
from ...log import die, warn
|
||||||
@@ -136,8 +134,9 @@ def _sidecar_bundle_service(plan: DockerBottlePlan) -> dict[str, Any]:
|
|||||||
ep = plan.egress_plan
|
ep = plan.egress_plan
|
||||||
volumes.append(_bind(ep.mitmproxy_ca_host_path, EGRESS_CA_IN_CONTAINER))
|
volumes.append(_bind(ep.mitmproxy_ca_host_path, EGRESS_CA_IN_CONTAINER))
|
||||||
if ep.routes:
|
if ep.routes:
|
||||||
volumes.append(_bind(ep.routes_path.parent, str(Path(EGRESS_ROUTES_IN_CONTAINER).parent)))
|
volumes.append(_bind(ep.routes_path, EGRESS_ROUTES_IN_CONTAINER))
|
||||||
env.extend(egress_sidecar_env_entries(ep))
|
for token_env in sorted(ep.token_env_map.keys()):
|
||||||
|
env.append(token_env)
|
||||||
|
|
||||||
# --- git-gate -----------------------------------------------------
|
# --- git-gate -----------------------------------------------------
|
||||||
gp = plan.git_gate_plan
|
gp = plan.git_gate_plan
|
||||||
@@ -221,7 +220,6 @@ def _agent_service(plan: DockerBottlePlan) -> dict[str, Any]:
|
|||||||
# never lands on argv or in the compose file.
|
# never lands on argv or in the compose file.
|
||||||
for name in sorted(plan.forwarded_env.keys()):
|
for name in sorted(plan.forwarded_env.keys()):
|
||||||
env.append(name)
|
env.append(name)
|
||||||
env.extend(egress_agent_env_entries(plan.egress_plan))
|
|
||||||
|
|
||||||
service: dict[str, Any] = {
|
service: dict[str, Any] = {
|
||||||
"image": plan.image,
|
"image": plan.image,
|
||||||
|
|||||||
@@ -1,21 +1,24 @@
|
|||||||
"""Host-side helper for egress sidecar inspection and live updates.
|
"""Host-side helper for egress sidecar inspection (issue #198).
|
||||||
|
|
||||||
The approve path uses this module to validate a proposed routes file,
|
`_merge_single_route`, `add_route`, and `apply_routes_change` were
|
||||||
write it to the bottle's live egress state dir, and signal the sidecar
|
removed when the egress-block MCP tool was dropped. The remaining
|
||||||
bundle so the mitmproxy addon reloads it.
|
helpers support runtime inspection and validation of the routes file
|
||||||
|
without modifying it at runtime.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import os
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from ...egress import EGRESS_ROUTES_IN_CONTAINER
|
from ...egress import EGRESS_ROUTES_IN_CONTAINER
|
||||||
from ...log import warn
|
from ...egress_addon_core import load_routes
|
||||||
from ..egress_apply import EgressApplicator, EgressApplyError
|
|
||||||
from .sidecar_bundle import sidecar_bundle_container_name
|
from .sidecar_bundle import sidecar_bundle_container_name
|
||||||
|
|
||||||
|
|
||||||
|
class EgressApplyError(RuntimeError):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def fetch_current_routes(slug: str) -> str:
|
def fetch_current_routes(slug: str) -> str:
|
||||||
container = sidecar_bundle_container_name(slug)
|
container = sidecar_bundle_container_name(slug)
|
||||||
r = subprocess.run(
|
r = subprocess.run(
|
||||||
@@ -30,31 +33,17 @@ def fetch_current_routes(slug: str) -> str:
|
|||||||
return r.stdout
|
return r.stdout
|
||||||
|
|
||||||
|
|
||||||
class DockerEgressApplicator(EgressApplicator):
|
def validate_routes_content(content: str) -> None:
|
||||||
def _signal_bundle_reload(self, slug: str) -> None:
|
try:
|
||||||
container = sidecar_bundle_container_name(slug)
|
load_routes(content)
|
||||||
result = subprocess.run(
|
except ValueError as e:
|
||||||
["docker", "kill", "--signal", "HUP", container],
|
raise EgressApplyError(
|
||||||
capture_output=True, text=True, check=False, env=os.environ,
|
f"proposed routes.yaml is not valid: {e}"
|
||||||
)
|
) from e
|
||||||
if result.returncode != 0:
|
|
||||||
last_error = (result.stderr or "").strip() or (result.stdout or "").strip()
|
|
||||||
warn(
|
|
||||||
f"egress: routes updated on disk for {slug}, but bundle reload failed: "
|
|
||||||
f"{last_error or 'docker kill failed'}"
|
|
||||||
)
|
|
||||||
raise EgressApplyError(
|
|
||||||
f"could not reload egress bundle {container}: "
|
|
||||||
f"{last_error or 'docker kill failed'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
applicator = DockerEgressApplicator()
|
|
||||||
|
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"DockerEgressApplicator",
|
|
||||||
"EgressApplyError",
|
"EgressApplyError",
|
||||||
"applicator",
|
|
||||||
"fetch_current_routes",
|
"fetch_current_routes",
|
||||||
|
"validate_routes_content",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
"""DockerFreezer — snapshot a Docker bottle via `docker commit`."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from .. import ActiveAgent
|
|
||||||
from ..freeze import Freezer
|
|
||||||
from .util import commit_container
|
|
||||||
from ...log import info
|
|
||||||
|
|
||||||
|
|
||||||
class DockerFreezer(Freezer):
|
|
||||||
"""Freezes a Docker bottle by running `docker commit`."""
|
|
||||||
|
|
||||||
backend_name = "docker"
|
|
||||||
|
|
||||||
def _freeze(self, agent: ActiveAgent) -> str:
|
|
||||||
container = f"bot-bottle-{agent.slug}"
|
|
||||||
image_tag = f"bot-bottle-committed-{agent.slug}:latest"
|
|
||||||
commit_container(container, image_tag)
|
|
||||||
return image_tag
|
|
||||||
|
|
||||||
def _export_hint(self, slug: str, image_ref: str) -> None:
|
|
||||||
info(f"to export for migration: docker save {image_ref} -o {slug}.tar")
|
|
||||||
@@ -47,7 +47,6 @@ from ...bottle_state import (
|
|||||||
bottle_state_dir,
|
bottle_state_dir,
|
||||||
egress_state_dir,
|
egress_state_dir,
|
||||||
git_gate_state_dir,
|
git_gate_state_dir,
|
||||||
read_committed_image,
|
|
||||||
)
|
)
|
||||||
from .compose import (
|
from .compose import (
|
||||||
bottle_plan_to_compose,
|
bottle_plan_to_compose,
|
||||||
@@ -76,7 +75,7 @@ def launch(
|
|||||||
Teardown on exit."""
|
Teardown on exit."""
|
||||||
stack = ExitStack()
|
stack = ExitStack()
|
||||||
|
|
||||||
_bottle_for_revoke = plan.manifest.bottle
|
_bottle_for_revoke = plan.spec.manifest.bottle_for(plan.spec.agent_name)
|
||||||
_git_gate_dir_for_revoke = git_gate_state_dir(plan.slug)
|
_git_gate_dir_for_revoke = git_gate_state_dir(plan.slug)
|
||||||
|
|
||||||
def teardown() -> None:
|
def teardown() -> None:
|
||||||
@@ -92,22 +91,12 @@ def launch(
|
|||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Step 1: agent image. Use a committed snapshot when one exists
|
# Step 1: agent image build. Sidecar images get built lazily by
|
||||||
# and is present in the local daemon; otherwise build from the
|
# `docker compose up` via the renderer's `build:` directives.
|
||||||
# Dockerfile. Sidecar images get built lazily by `docker compose
|
docker_mod.build_image(
|
||||||
# up` via the renderer's `build:` directives.
|
plan.image, _REPO_DIR,
|
||||||
committed = read_committed_image(plan.slug)
|
dockerfile=plan.dockerfile_path,
|
||||||
if committed and docker_mod.image_exists(committed):
|
)
|
||||||
info(f"using committed image {committed!r}")
|
|
||||||
plan = dataclasses.replace(
|
|
||||||
plan,
|
|
||||||
agent_provision=dataclasses.replace(plan.agent_provision, image=committed),
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
docker_mod.build_image(
|
|
||||||
plan.image, _REPO_DIR,
|
|
||||||
dockerfile=plan.dockerfile_path,
|
|
||||||
)
|
|
||||||
|
|
||||||
internal_network = network_mod.network_name_for_slug(plan.slug)
|
internal_network = network_mod.network_name_for_slug(plan.slug)
|
||||||
egress_network = network_mod.network_egress_name_for_slug(plan.slug)
|
egress_network = network_mod.network_egress_name_for_slug(plan.slug)
|
||||||
@@ -187,7 +176,7 @@ def launch(
|
|||||||
agent_command=plan.agent_command,
|
agent_command=plan.agent_command,
|
||||||
agent_prompt_mode=plan.agent_prompt_mode,
|
agent_prompt_mode=plan.agent_prompt_mode,
|
||||||
agent_provider_template=plan.agent_provider_template,
|
agent_provider_template=plan.agent_provider_template,
|
||||||
terminal_title=f"{plan.spec.label} ({plan.spec.agent_name})" if plan.spec.label else plan.spec.agent_name,
|
terminal_title=plan.spec.label or plan.spec.agent_name,
|
||||||
terminal_color=plan.spec.color,
|
terminal_color=plan.spec.color,
|
||||||
agent_workdir=plan.workspace_plan.workdir,
|
agent_workdir=plan.workspace_plan.workdir,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ from .. import BottleSpec
|
|||||||
from ...env import ResolvedEnv
|
from ...env import ResolvedEnv
|
||||||
from ...agent_provider import AgentProvisionPlan
|
from ...agent_provider import AgentProvisionPlan
|
||||||
from ...egress import EgressPlan
|
from ...egress import EgressPlan
|
||||||
from ...manifest import Manifest
|
|
||||||
from ...supervise import SupervisePlan
|
from ...supervise import SupervisePlan
|
||||||
from ...git_gate import GitGatePlan
|
from ...git_gate import GitGatePlan
|
||||||
|
|
||||||
@@ -32,7 +31,6 @@ def build_guest_env(resolved_env: ResolvedEnv) -> dict[str, str]:
|
|||||||
|
|
||||||
def resolve_plan(
|
def resolve_plan(
|
||||||
spec: BottleSpec,
|
spec: BottleSpec,
|
||||||
manifest: Manifest,
|
|
||||||
slug: str,
|
slug: str,
|
||||||
resolved_env: ResolvedEnv,
|
resolved_env: ResolvedEnv,
|
||||||
agent_provision_plan: AgentProvisionPlan,
|
agent_provision_plan: AgentProvisionPlan,
|
||||||
@@ -50,7 +48,6 @@ def resolve_plan(
|
|||||||
|
|
||||||
return DockerBottlePlan(
|
return DockerBottlePlan(
|
||||||
spec=spec,
|
spec=spec,
|
||||||
manifest=manifest,
|
|
||||||
stage_dir=stage_dir,
|
stage_dir=stage_dir,
|
||||||
slug=slug,
|
slug=slug,
|
||||||
forwarded_env=dict(resolved_env.forwarded),
|
forwarded_env=dict(resolved_env.forwarded),
|
||||||
|
|||||||
@@ -152,21 +152,6 @@ def build_image(ref: str, context: str, *, dockerfile: str = "") -> None:
|
|||||||
# )
|
# )
|
||||||
|
|
||||||
|
|
||||||
def commit_container(container_name: str, image_tag: str) -> None:
|
|
||||||
"""Run `docker commit <container_name> <image_tag>` to snapshot the
|
|
||||||
running container's filesystem state as a local Docker image."""
|
|
||||||
result = subprocess.run(
|
|
||||||
["docker", "commit", container_name, image_tag],
|
|
||||||
capture_output=True, text=True, check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"docker commit {container_name!r} → {image_tag!r} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
info(f"committed {container_name!r} → {image_tag!r}")
|
|
||||||
|
|
||||||
|
|
||||||
def image_id(ref: str) -> str:
|
def image_id(ref: str) -> str:
|
||||||
"""Return the content-addressed image ID (e.g.
|
"""Return the content-addressed image ID (e.g.
|
||||||
`sha256:abcd...`) for `ref`. The smolmachines backend keys its
|
`sha256:abcd...`) for `ref`. The smolmachines backend keys its
|
||||||
|
|||||||
@@ -1,54 +0,0 @@
|
|||||||
"""Shared base class for host-side egress apply across backends.
|
|
||||||
|
|
||||||
Each backend subclasses EgressApplicator and overrides _signal_bundle_reload
|
|
||||||
with the backend-specific kill command.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from ..bottle_state import egress_state_dir
|
|
||||||
from ..egress import EGRESS_ROUTES_FILENAME
|
|
||||||
from ..egress_addon_core import LOG_OFF, load_config
|
|
||||||
|
|
||||||
|
|
||||||
class EgressApplyError(RuntimeError):
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class EgressApplicator(ABC):
|
|
||||||
def apply_routes_change(self, slug: str, content: str) -> tuple[str, str]:
|
|
||||||
"""Persist `content` to the live routes file and reload egress."""
|
|
||||||
self.validate_routes_content(content)
|
|
||||||
routes_path = self._routes_path(slug)
|
|
||||||
routes_path.parent.mkdir(parents=True, exist_ok=True)
|
|
||||||
before = routes_path.read_text(encoding="utf-8") if routes_path.exists() else ""
|
|
||||||
routes_path.write_text(content, encoding="utf-8")
|
|
||||||
routes_path.chmod(0o600)
|
|
||||||
self._signal_bundle_reload(slug)
|
|
||||||
return before, content
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def validate_routes_content(content: str) -> None:
|
|
||||||
try:
|
|
||||||
config = load_config(content)
|
|
||||||
except ValueError as e:
|
|
||||||
raise EgressApplyError(
|
|
||||||
f"proposed routes.yaml is not valid: {e}"
|
|
||||||
) from e
|
|
||||||
if config.log != LOG_OFF:
|
|
||||||
raise EgressApplyError(
|
|
||||||
"proposed routes.yaml must not change egress logging"
|
|
||||||
)
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def _routes_path(slug: str) -> Path:
|
|
||||||
return egress_state_dir(slug) / EGRESS_ROUTES_FILENAME
|
|
||||||
|
|
||||||
@abstractmethod
|
|
||||||
def _signal_bundle_reload(self, slug: str) -> None: ...
|
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["EgressApplicator", "EgressApplyError"]
|
|
||||||
@@ -1,100 +0,0 @@
|
|||||||
"""Freezer — snapshot a running bottle to a resumable artifact.
|
|
||||||
|
|
||||||
Follows the same pattern as BottleBackend: a shared base class with
|
|
||||||
common post-freeze steps (write committed-image path, mark preserved,
|
|
||||||
print resume hint) and backend-specific subclasses in their respective
|
|
||||||
backend directories.
|
|
||||||
|
|
||||||
Entry points:
|
|
||||||
Freezer.commit(agent) — freeze by ActiveAgent
|
|
||||||
Freezer.commit_slug(slug) — convenience wrapper for cmd_commit
|
|
||||||
get_freezer(backend_name) — factory
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from abc import ABC, abstractmethod
|
|
||||||
|
|
||||||
from . import ActiveAgent
|
|
||||||
from ..bottle_state import mark_preserved, write_committed_image
|
|
||||||
from ..log import die, info
|
|
||||||
|
|
||||||
|
|
||||||
class CommitCancelled(Exception):
|
|
||||||
"""Raised by Freezer._freeze when the user declines a confirmation prompt."""
|
|
||||||
|
|
||||||
|
|
||||||
class Freezer(ABC):
|
|
||||||
"""Freezes a running bottle to a resumable artifact.
|
|
||||||
|
|
||||||
The base class owns the shared post-commit steps:
|
|
||||||
- write_committed_image — records the artifact path in per-bottle state
|
|
||||||
- mark_preserved — prevents teardown from removing the state dir
|
|
||||||
- resume hint — printed to stderr after the snapshot
|
|
||||||
|
|
||||||
Subclasses implement _freeze with the backend-specific snapshot
|
|
||||||
operation and optionally override _export_hint for migration hints.
|
|
||||||
"""
|
|
||||||
|
|
||||||
backend_name: str
|
|
||||||
|
|
||||||
def commit(self, agent: ActiveAgent) -> None:
|
|
||||||
"""Freeze the bottle for `agent` to a resumable artifact.
|
|
||||||
|
|
||||||
Calls _freeze for the backend-specific snapshot, then writes the
|
|
||||||
committed image reference to per-bottle state and marks the bottle
|
|
||||||
preserved so the next `./cli.py resume` boots from the snapshot.
|
|
||||||
|
|
||||||
Raises CommitCancelled if the user declines an interactive
|
|
||||||
confirmation prompt (e.g. the macos-container stop prompt).
|
|
||||||
"""
|
|
||||||
image_ref = self._freeze(agent)
|
|
||||||
write_committed_image(agent.slug, image_ref)
|
|
||||||
mark_preserved(agent.slug)
|
|
||||||
info(f"to resume from this snapshot: ./cli.py resume {agent.slug}")
|
|
||||||
self._export_hint(agent.slug, image_ref)
|
|
||||||
|
|
||||||
@abstractmethod
|
|
||||||
def _freeze(self, agent: ActiveAgent) -> str:
|
|
||||||
"""Backend-specific snapshot. Returns the image tag or artifact path
|
|
||||||
stored by write_committed_image. Raises CommitCancelled if the user
|
|
||||||
declines a stop-confirmation prompt."""
|
|
||||||
|
|
||||||
def _export_hint(self, slug: str, image_ref: str) -> None:
|
|
||||||
"""Optionally print an export-for-migration hint after committing.
|
|
||||||
Overridden by backends that provide a meaningful export command."""
|
|
||||||
|
|
||||||
def commit_slug(self, slug: str) -> None:
|
|
||||||
"""Convenience entry for cmd_commit when only a slug is available."""
|
|
||||||
from ..bottle_state import read_metadata
|
|
||||||
metadata = read_metadata(slug)
|
|
||||||
agent = ActiveAgent(
|
|
||||||
backend_name=self.backend_name,
|
|
||||||
slug=slug,
|
|
||||||
agent_name=metadata.agent_name if metadata else "",
|
|
||||||
started_at=metadata.started_at if metadata else "",
|
|
||||||
services=(),
|
|
||||||
)
|
|
||||||
self.commit(agent)
|
|
||||||
|
|
||||||
|
|
||||||
def get_freezer(backend_name: str) -> Freezer:
|
|
||||||
"""Return the Freezer for the named backend.
|
|
||||||
|
|
||||||
backend_name "" is treated as "docker" for backward compatibility
|
|
||||||
with state dirs written before the backend field was added."""
|
|
||||||
resolved = backend_name or "docker"
|
|
||||||
if resolved == "docker":
|
|
||||||
from .docker.freezer import DockerFreezer
|
|
||||||
return DockerFreezer()
|
|
||||||
if resolved == "macos-container":
|
|
||||||
from .macos_container.freezer import MacosContainerFreezer
|
|
||||||
return MacosContainerFreezer()
|
|
||||||
if resolved == "smolmachines":
|
|
||||||
from .smolmachines.freezer import SmolmachinesFreezer
|
|
||||||
return SmolmachinesFreezer()
|
|
||||||
die(
|
|
||||||
f"commit is only supported for docker, macos-container, and "
|
|
||||||
f"smolmachines; backend {backend_name!r} has no freezer"
|
|
||||||
)
|
|
||||||
raise AssertionError("unreachable")
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
"""macOS Apple Container backend.
|
|
||||||
|
|
||||||
Selectable via `BOT_BOTTLE_BACKEND=macos-container`. This package owns
|
|
||||||
the Apple `container` CLI integration; launch remains gated until the
|
|
||||||
sidecar network enforcement shape is implemented.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from .backend import MacosContainerBottleBackend
|
|
||||||
|
|
||||||
__all__ = ["MacosContainerBottleBackend"]
|
|
||||||
@@ -1,87 +0,0 @@
|
|||||||
"""MacosContainerBottleBackend — Apple Container implementation."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from contextlib import contextmanager
|
|
||||||
from pathlib import Path
|
|
||||||
from typing import Generator, Sequence
|
|
||||||
|
|
||||||
from ...agent_provider import AgentProvisionPlan
|
|
||||||
from ...egress import EgressPlan
|
|
||||||
from ...env import ResolvedEnv
|
|
||||||
from ...git_gate import GitGatePlan
|
|
||||||
from ...supervise import SupervisePlan
|
|
||||||
from ...manifest import Manifest
|
|
||||||
from .. import ActiveAgent, BottleBackend, BottleSpec
|
|
||||||
from . import cleanup as _cleanup
|
|
||||||
from . import enumerate as _enumerate
|
|
||||||
from . import launch as _launch
|
|
||||||
from . import resolve_plan as _resolve_plan
|
|
||||||
from . import util as _container
|
|
||||||
from .bottle import MacosContainerBottle
|
|
||||||
from .bottle_cleanup_plan import MacosContainerBottleCleanupPlan
|
|
||||||
from .bottle_plan import MacosContainerBottlePlan
|
|
||||||
|
|
||||||
|
|
||||||
class MacosContainerBottleBackend(
|
|
||||||
BottleBackend["MacosContainerBottlePlan", "MacosContainerBottleCleanupPlan"]
|
|
||||||
):
|
|
||||||
"""Apple Container backend. Selected by
|
|
||||||
`BOT_BOTTLE_BACKEND=macos-container` or
|
|
||||||
`--backend=macos-container`."""
|
|
||||||
|
|
||||||
name = "macos-container"
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def is_available(cls) -> bool:
|
|
||||||
return _container.is_available()
|
|
||||||
|
|
||||||
def _preflight(self) -> None:
|
|
||||||
_resolve_plan.preflight()
|
|
||||||
|
|
||||||
def _build_guest_env(self, resolved_env: ResolvedEnv) -> dict[str, str]:
|
|
||||||
return _resolve_plan.build_guest_env(resolved_env)
|
|
||||||
|
|
||||||
def _resolve_plan(
|
|
||||||
self,
|
|
||||||
spec: BottleSpec,
|
|
||||||
*,
|
|
||||||
manifest: Manifest,
|
|
||||||
slug: str,
|
|
||||||
resolved_env: ResolvedEnv,
|
|
||||||
agent_provision_plan: AgentProvisionPlan,
|
|
||||||
egress_plan: EgressPlan,
|
|
||||||
git_gate_plan: GitGatePlan,
|
|
||||||
supervise_plan: SupervisePlan | None,
|
|
||||||
stage_dir: Path,
|
|
||||||
) -> MacosContainerBottlePlan:
|
|
||||||
return _resolve_plan.resolve_plan(
|
|
||||||
spec,
|
|
||||||
manifest=manifest,
|
|
||||||
slug=slug,
|
|
||||||
resolved_env=resolved_env,
|
|
||||||
agent_provision_plan=agent_provision_plan,
|
|
||||||
egress_plan=egress_plan,
|
|
||||||
supervise_plan=supervise_plan,
|
|
||||||
git_gate_plan=git_gate_plan,
|
|
||||||
stage_dir=stage_dir,
|
|
||||||
)
|
|
||||||
|
|
||||||
@contextmanager
|
|
||||||
def launch(
|
|
||||||
self, plan: MacosContainerBottlePlan
|
|
||||||
) -> Generator[MacosContainerBottle, None, None]:
|
|
||||||
with _launch.launch(plan, provision=self.provision) as bottle:
|
|
||||||
yield bottle
|
|
||||||
|
|
||||||
def prepare_cleanup(self) -> MacosContainerBottleCleanupPlan:
|
|
||||||
return _cleanup.prepare_cleanup()
|
|
||||||
|
|
||||||
def cleanup(self, plan: MacosContainerBottleCleanupPlan) -> None:
|
|
||||||
_cleanup.cleanup(plan)
|
|
||||||
|
|
||||||
def enumerate_active(self) -> Sequence[ActiveAgent]:
|
|
||||||
return _enumerate.enumerate_active()
|
|
||||||
|
|
||||||
def supervise_mcp_url(self, plan: MacosContainerBottlePlan) -> str:
|
|
||||||
return plan.agent_supervise_url
|
|
||||||
@@ -1,131 +0,0 @@
|
|||||||
"""Bottle handle for Apple's `container` CLI."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
from typing import Callable, cast
|
|
||||||
|
|
||||||
from ...agent_provider import PromptMode, prompt_args
|
|
||||||
from .. import Bottle, ExecResult
|
|
||||||
from ..terminal import exec_shell_script
|
|
||||||
from . import pty_forward as _pty_forward
|
|
||||||
|
|
||||||
|
|
||||||
_PTY_FORWARD_SCRIPT = _pty_forward.__file__
|
|
||||||
_TERMINAL_ENV_NAMES = (
|
|
||||||
"TERM",
|
|
||||||
"COLORTERM",
|
|
||||||
"TERM_PROGRAM",
|
|
||||||
"TERM_PROGRAM_VERSION",
|
|
||||||
"KITTY_WINDOW_ID",
|
|
||||||
"KITTY_PID",
|
|
||||||
"WEZTERM_PANE",
|
|
||||||
"WEZTERM_UNIX_SOCKET",
|
|
||||||
"GHOSTTY_BIN_DIR",
|
|
||||||
"GHOSTTY_RESOURCES_DIR",
|
|
||||||
"ITERM_SESSION_ID",
|
|
||||||
"VTE_VERSION",
|
|
||||||
"KONSOLE_VERSION",
|
|
||||||
"ALACRITTY_WINDOW_ID",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _terminal_env_names() -> tuple[str, ...]:
|
|
||||||
return tuple(
|
|
||||||
name for name in _TERMINAL_ENV_NAMES
|
|
||||||
if name == "TERM" or os.environ.get(name)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class MacosContainerBottle(Bottle):
|
|
||||||
def __init__(
|
|
||||||
self,
|
|
||||||
container: str,
|
|
||||||
teardown: Callable[[], None],
|
|
||||||
prompt_path_in_container: str | None,
|
|
||||||
*,
|
|
||||||
agent_command: str = "claude",
|
|
||||||
agent_prompt_mode: PromptMode = "append_file",
|
|
||||||
agent_provider_template: str = "claude",
|
|
||||||
terminal_title: str = "",
|
|
||||||
terminal_color: str = "",
|
|
||||||
agent_workdir: str = "/home/node",
|
|
||||||
):
|
|
||||||
self.name = container
|
|
||||||
self._teardown = teardown
|
|
||||||
self.prompt_path = prompt_path_in_container
|
|
||||||
self._agent_prompt_mode = agent_prompt_mode
|
|
||||||
self.agent_command = agent_command
|
|
||||||
self.terminal_title = terminal_title
|
|
||||||
self.terminal_color = terminal_color
|
|
||||||
self.agent_provider_template = agent_provider_template
|
|
||||||
self.agent_workdir = agent_workdir
|
|
||||||
self._closed = False
|
|
||||||
|
|
||||||
def agent_argv(self, argv: list[str], *, tty: bool = True) -> list[str]:
|
|
||||||
full_argv = list(argv)
|
|
||||||
full_argv.extend(
|
|
||||||
prompt_args(
|
|
||||||
cast(PromptMode, self._agent_prompt_mode),
|
|
||||||
self.prompt_path,
|
|
||||||
argv=full_argv,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
container_exec = ["container", "exec"]
|
|
||||||
if tty:
|
|
||||||
container_exec.extend(["--interactive", "--tty"])
|
|
||||||
# Forward terminal capability hints so TUIs can enable modified-key
|
|
||||||
# protocols. Use bare env names: values stay in the child env, not
|
|
||||||
# on argv, and pty_forward supplies a TERM fallback when needed.
|
|
||||||
for name in _terminal_env_names():
|
|
||||||
container_exec.extend(["--env", name])
|
|
||||||
if self.agent_workdir and self.agent_workdir != "/home/node":
|
|
||||||
container_exec.extend(["--workdir", self.agent_workdir])
|
|
||||||
container_exec.extend([self.name, self.agent_command, *full_argv])
|
|
||||||
if tty:
|
|
||||||
# Wrap with the raw-mode forwarder: container exec does not put
|
|
||||||
# the host terminal into raw mode itself, so the line discipline
|
|
||||||
# buffers modifier-key sequences until CR. The wrapper sets raw
|
|
||||||
# mode before exec and restores it on exit.
|
|
||||||
return [sys.executable, _PTY_FORWARD_SCRIPT, "--", *container_exec]
|
|
||||||
return container_exec
|
|
||||||
|
|
||||||
def exec_agent(self, argv: list[str], *, tty: bool = True) -> int:
|
|
||||||
agent_argv = self.agent_argv(argv, tty=tty)
|
|
||||||
script = (
|
|
||||||
exec_shell_script(agent_argv, self.terminal_title, self.terminal_color)
|
|
||||||
if tty else None
|
|
||||||
)
|
|
||||||
if script is None:
|
|
||||||
return subprocess.run(agent_argv, check=False).returncode
|
|
||||||
return subprocess.run(["sh", "-lc", script], check=False).returncode
|
|
||||||
|
|
||||||
def exec(self, script: str, *, user: str = "node") -> ExecResult:
|
|
||||||
result = subprocess.run(
|
|
||||||
["container", "exec", "--user", user, "--interactive",
|
|
||||||
self.name, "sh", "-s"],
|
|
||||||
input=script,
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
return ExecResult(
|
|
||||||
returncode=result.returncode,
|
|
||||||
stdout=result.stdout,
|
|
||||||
stderr=result.stderr,
|
|
||||||
)
|
|
||||||
|
|
||||||
def cp_in(self, host_path: str, container_path: str) -> None:
|
|
||||||
subprocess.run(
|
|
||||||
["container", "cp", host_path, f"{self.name}:{container_path}"],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
check=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
def close(self) -> None:
|
|
||||||
if self._closed:
|
|
||||||
return
|
|
||||||
self._closed = True
|
|
||||||
self._teardown()
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
"""Cleanup plan for the macOS Apple Container backend."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from dataclasses import dataclass
|
|
||||||
|
|
||||||
from ...log import info
|
|
||||||
from .. import BottleCleanupPlan
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
|
||||||
class MacosContainerBottleCleanupPlan(BottleCleanupPlan):
|
|
||||||
containers: tuple[str, ...] = ()
|
|
||||||
networks: tuple[str, ...] = ()
|
|
||||||
|
|
||||||
def print(self) -> None:
|
|
||||||
if not self.containers and not self.networks:
|
|
||||||
info("macos-container cleanup: nothing to remove")
|
|
||||||
return
|
|
||||||
for name in self.containers:
|
|
||||||
info(f"macos-container container: {name}")
|
|
||||||
for name in self.networks:
|
|
||||||
info(f"macos-container network: {name}")
|
|
||||||
|
|
||||||
@property
|
|
||||||
def empty(self) -> bool:
|
|
||||||
return not self.containers and not self.networks
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
"""Plan type for the macOS Apple Container backend."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from dataclasses import dataclass, field
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from ...agent_provider import PromptMode
|
|
||||||
from .. import BottlePlan
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
|
||||||
class MacosContainerBottlePlan(BottlePlan):
|
|
||||||
slug: str
|
|
||||||
forwarded_env: dict[str, str] = field(repr=False)
|
|
||||||
agent_proxy_url: str = ""
|
|
||||||
agent_git_gate_url: str = ""
|
|
||||||
agent_supervise_url: str = ""
|
|
||||||
|
|
||||||
@property
|
|
||||||
def container_name(self) -> str:
|
|
||||||
return self.agent_provision.instance_name
|
|
||||||
|
|
||||||
@property
|
|
||||||
def image(self) -> str:
|
|
||||||
return self.agent_provision.image
|
|
||||||
|
|
||||||
@property
|
|
||||||
def dockerfile_path(self) -> str:
|
|
||||||
return self.agent_provision.dockerfile
|
|
||||||
|
|
||||||
@property
|
|
||||||
def prompt_file(self) -> Path:
|
|
||||||
return self.agent_provision.prompt_file
|
|
||||||
|
|
||||||
@property
|
|
||||||
def agent_command(self) -> str:
|
|
||||||
return self.agent_provision.command
|
|
||||||
|
|
||||||
@property
|
|
||||||
def agent_prompt_mode(self) -> PromptMode:
|
|
||||||
return self.agent_provision.prompt_mode
|
|
||||||
|
|
||||||
@property
|
|
||||||
def agent_provider_template(self) -> str:
|
|
||||||
return self.agent_provision.template
|
|
||||||
|
|
||||||
@property
|
|
||||||
def git_gate_insteadof_host(self) -> str:
|
|
||||||
if self.agent_git_gate_url.startswith("http://"):
|
|
||||||
return self.agent_git_gate_url.removeprefix("http://").rstrip("/")
|
|
||||||
return super().git_gate_insteadof_host
|
|
||||||
|
|
||||||
@property
|
|
||||||
def git_gate_insteadof_scheme(self) -> str:
|
|
||||||
if self.agent_git_gate_url.startswith("http://"):
|
|
||||||
return "http"
|
|
||||||
return super().git_gate_insteadof_scheme
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
"""Cleanup for the macOS Apple Container backend."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
from ...log import info, warn
|
|
||||||
from . import util as container_mod
|
|
||||||
from .bottle_cleanup_plan import MacosContainerBottleCleanupPlan
|
|
||||||
|
|
||||||
_PREFIX = "bot-bottle-"
|
|
||||||
_BUNDLE_PREFIX = "bot-bottle-sidecars-"
|
|
||||||
|
|
||||||
|
|
||||||
def _list_prefixed_containers() -> list[str]:
|
|
||||||
result = subprocess.run(
|
|
||||||
["container", "list", "--all", "--quiet"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
warn(f"container list failed: {result.stderr.strip()}")
|
|
||||||
return []
|
|
||||||
return sorted(
|
|
||||||
name for name in (line.strip() for line in result.stdout.splitlines())
|
|
||||||
if name.startswith(_PREFIX) or name.startswith(_BUNDLE_PREFIX)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _list_prefixed_networks() -> list[str]:
|
|
||||||
result = subprocess.run(
|
|
||||||
["container", "network", "list", "--quiet"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return []
|
|
||||||
return sorted(
|
|
||||||
name for name in (line.strip() for line in result.stdout.splitlines())
|
|
||||||
if name.startswith(_PREFIX)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def prepare_cleanup() -> MacosContainerBottleCleanupPlan:
|
|
||||||
container_mod.require_container()
|
|
||||||
return MacosContainerBottleCleanupPlan(
|
|
||||||
containers=tuple(_list_prefixed_containers()),
|
|
||||||
networks=tuple(_list_prefixed_networks()),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def cleanup(plan: MacosContainerBottleCleanupPlan) -> None:
|
|
||||||
for name in plan.containers:
|
|
||||||
info(f"container delete --force {name}")
|
|
||||||
subprocess.run(
|
|
||||||
["container", "delete", "--force", name],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
for name in plan.networks:
|
|
||||||
info(f"container network delete {name}")
|
|
||||||
subprocess.run(
|
|
||||||
["container", "network", "delete", name],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
"""Host-side egress apply for the macos-container backend.
|
|
||||||
|
|
||||||
Uses `container kill --signal HUP` (Apple Container framework) instead
|
|
||||||
of `docker kill` to signal the sidecar bundle.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
from ...log import warn
|
|
||||||
from ..egress_apply import EgressApplicator, EgressApplyError
|
|
||||||
from .launch import sidecar_container_name
|
|
||||||
|
|
||||||
|
|
||||||
class MacOSContainerEgressApplicator(EgressApplicator):
|
|
||||||
def _signal_bundle_reload(self, slug: str) -> None:
|
|
||||||
container = sidecar_container_name(slug)
|
|
||||||
result = subprocess.run(
|
|
||||||
["container", "kill", "--signal", "HUP", container],
|
|
||||||
capture_output=True, text=True, check=False, env=os.environ,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
last_error = (result.stderr or "").strip() or (result.stdout or "").strip()
|
|
||||||
warn(
|
|
||||||
f"egress: routes updated on disk for {slug}, but bundle reload failed: "
|
|
||||||
f"{last_error or 'container kill failed'}"
|
|
||||||
)
|
|
||||||
raise EgressApplyError(
|
|
||||||
f"could not reload egress bundle {container}: "
|
|
||||||
f"{last_error or 'container kill failed'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
applicator = MacOSContainerEgressApplicator()
|
|
||||||
|
|
||||||
|
|
||||||
__all__ = ["MacOSContainerEgressApplicator", "EgressApplyError", "applicator"]
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
"""Active-agent enumeration for the macOS Apple Container backend."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import subprocess
|
|
||||||
|
|
||||||
from ...bottle_state import read_metadata
|
|
||||||
from .. import ActiveAgent
|
|
||||||
|
|
||||||
_PREFIX = "bot-bottle-"
|
|
||||||
_SIDECAR_PREFIX = "bot-bottle-sidecars-"
|
|
||||||
|
|
||||||
|
|
||||||
def enumerate_active() -> list[ActiveAgent]:
|
|
||||||
result = subprocess.run(
|
|
||||||
["container", "list", "--quiet"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return []
|
|
||||||
out: list[ActiveAgent] = []
|
|
||||||
for name in sorted(line.strip() for line in result.stdout.splitlines()):
|
|
||||||
if not name.startswith(_PREFIX):
|
|
||||||
continue
|
|
||||||
if name.startswith(_SIDECAR_PREFIX):
|
|
||||||
continue
|
|
||||||
slug = name[len(_PREFIX):]
|
|
||||||
metadata = read_metadata(slug)
|
|
||||||
out.append(ActiveAgent(
|
|
||||||
backend_name="macos-container",
|
|
||||||
slug=slug,
|
|
||||||
agent_name=metadata.agent_name if metadata else "?",
|
|
||||||
started_at=metadata.started_at if metadata else "",
|
|
||||||
services=(),
|
|
||||||
label=metadata.label if metadata else "",
|
|
||||||
color=metadata.color if metadata else "",
|
|
||||||
))
|
|
||||||
return out
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
"""MacosContainerFreezer — snapshot a macOS container bottle.
|
|
||||||
|
|
||||||
Apple Container removes containers when they stop, making stop-then-export
|
|
||||||
impossible. Instead, commit_container execs into the running container and
|
|
||||||
streams the root filesystem via tar. The bottle continues running after commit.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from .. import ActiveAgent
|
|
||||||
from ..freeze import Freezer
|
|
||||||
from .util import commit_container
|
|
||||||
from ...log import info
|
|
||||||
|
|
||||||
|
|
||||||
class MacosContainerFreezer(Freezer):
|
|
||||||
"""Freezes a macOS-container bottle via exec-tar + image rebuild."""
|
|
||||||
|
|
||||||
backend_name = "macos-container"
|
|
||||||
|
|
||||||
def _freeze(self, agent: ActiveAgent) -> str:
|
|
||||||
container = f"bot-bottle-{agent.slug}"
|
|
||||||
image_tag = f"bot-bottle-committed-{agent.slug}:latest"
|
|
||||||
commit_container(container, image_tag)
|
|
||||||
return image_tag
|
|
||||||
|
|
||||||
def _export_hint(self, slug: str, image_ref: str) -> None:
|
|
||||||
info(
|
|
||||||
f"to export for migration: "
|
|
||||||
f"container image save {image_ref} -o {slug}.tar"
|
|
||||||
)
|
|
||||||
@@ -1,432 +0,0 @@
|
|||||||
"""Launch flow for the macOS Apple Container backend.
|
|
||||||
|
|
||||||
This backend keeps the explicit proxy-env enforcement model for v1:
|
|
||||||
the agent container is attached only to a host-only Apple Container
|
|
||||||
network, while the sidecar bundle is attached to a NAT network first
|
|
||||||
and the host-only network second. The sidecar's host-only IP is
|
|
||||||
discovered from `container inspect` and stamped into the agent's
|
|
||||||
HTTP_PROXY / HTTPS_PROXY env vars.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import dataclasses
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
from contextlib import ExitStack, contextmanager
|
|
||||||
from pathlib import Path
|
|
||||||
from typing import Callable, Generator
|
|
||||||
|
|
||||||
from ...bottle_state import (
|
|
||||||
egress_state_dir,
|
|
||||||
git_gate_state_dir,
|
|
||||||
read_committed_image,
|
|
||||||
)
|
|
||||||
from ...egress import (
|
|
||||||
EGRESS_ROUTES_IN_CONTAINER,
|
|
||||||
egress_agent_env_entries,
|
|
||||||
egress_resolve_token_values,
|
|
||||||
egress_sidecar_env_entries,
|
|
||||||
)
|
|
||||||
from ...git_gate import revoke_git_gate_provisioned_keys
|
|
||||||
from ...log import die, info, warn
|
|
||||||
from ...supervise import QUEUE_DIR_IN_CONTAINER, SUPERVISE_PORT
|
|
||||||
from ...util import expand_tilde
|
|
||||||
from ..docker.egress import EGRESS_CA_IN_CONTAINER, EGRESS_PORT
|
|
||||||
from ..docker.git_gate import (
|
|
||||||
GIT_GATE_ACCESS_HOOK_IN_CONTAINER,
|
|
||||||
GIT_GATE_CREDS_DIR_IN_CONTAINER,
|
|
||||||
GIT_GATE_ENTRYPOINT_IN_CONTAINER,
|
|
||||||
GIT_GATE_HOOK_IN_CONTAINER,
|
|
||||||
)
|
|
||||||
from ..docker.sidecar_bundle import (
|
|
||||||
SIDECAR_BUNDLE_DOCKERFILE,
|
|
||||||
SIDECAR_BUNDLE_IMAGE,
|
|
||||||
)
|
|
||||||
from ..docker.egress import egress_tls_init
|
|
||||||
from ..util import AGENT_CA_BUNDLE, AGENT_CA_PATH
|
|
||||||
from . import util as container_mod
|
|
||||||
from .bottle import MacosContainerBottle
|
|
||||||
from .bottle_plan import MacosContainerBottlePlan
|
|
||||||
|
|
||||||
|
|
||||||
_REPO_DIR = str(Path(__file__).resolve().parent.parent.parent.parent)
|
|
||||||
_AGENT_SLEEP_SECONDS = "2147483647"
|
|
||||||
_GIT_HTTP_PORT = 9420
|
|
||||||
_GIT_GATE_READY_FILE = "/run/git-gate/ready"
|
|
||||||
|
|
||||||
|
|
||||||
def internal_network_name(slug: str) -> str:
|
|
||||||
return f"bot-bottle-net-{slug}"
|
|
||||||
|
|
||||||
|
|
||||||
def egress_network_name(slug: str) -> str:
|
|
||||||
return f"bot-bottle-egress-{slug}"
|
|
||||||
|
|
||||||
|
|
||||||
def sidecar_container_name(slug: str) -> str:
|
|
||||||
return f"bot-bottle-sidecars-{slug}"
|
|
||||||
|
|
||||||
|
|
||||||
@contextmanager
|
|
||||||
def launch(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
*,
|
|
||||||
provision: Callable[[MacosContainerBottlePlan, "MacosContainerBottle"], str | None],
|
|
||||||
) -> Generator[MacosContainerBottle, None, None]:
|
|
||||||
"""Build, run, provision, and yield an Apple Container bottle."""
|
|
||||||
stack = ExitStack()
|
|
||||||
bottle_for_revoke = plan.manifest.bottle
|
|
||||||
git_gate_dir_for_revoke = git_gate_state_dir(plan.slug)
|
|
||||||
|
|
||||||
def teardown() -> None:
|
|
||||||
teardown_exc: BaseException | None = None
|
|
||||||
try:
|
|
||||||
stack.close()
|
|
||||||
except BaseException as exc: # noqa: W0718 - teardown must continue
|
|
||||||
teardown_exc = exc
|
|
||||||
warn(f"macos-container teardown failed: {exc!r}")
|
|
||||||
revoke_git_gate_provisioned_keys(bottle_for_revoke, git_gate_dir_for_revoke)
|
|
||||||
if teardown_exc is not None:
|
|
||||||
raise teardown_exc
|
|
||||||
|
|
||||||
try:
|
|
||||||
plan = _mint_certs(plan)
|
|
||||||
plan = _build_images(plan)
|
|
||||||
|
|
||||||
internal_network = internal_network_name(plan.slug)
|
|
||||||
egress_network = egress_network_name(plan.slug)
|
|
||||||
_create_networks(internal_network, egress_network, stack)
|
|
||||||
|
|
||||||
sidecar_name = sidecar_container_name(plan.slug)
|
|
||||||
container_mod.force_remove_container(sidecar_name)
|
|
||||||
_start_sidecar_bundle(plan, sidecar_name, internal_network, egress_network)
|
|
||||||
stack.callback(container_mod.force_remove_container, sidecar_name)
|
|
||||||
_stage_git_gate(plan, sidecar_name)
|
|
||||||
|
|
||||||
sidecar_ip = container_mod.container_ipv4_on_network(
|
|
||||||
sidecar_name, internal_network,
|
|
||||||
)
|
|
||||||
plan = _stamp_agent_urls(plan, sidecar_ip)
|
|
||||||
|
|
||||||
container_mod.force_remove_container(plan.container_name)
|
|
||||||
_start_agent(plan, internal_network, sidecar_ip)
|
|
||||||
stack.callback(container_mod.force_remove_container, plan.container_name)
|
|
||||||
|
|
||||||
bottle = MacosContainerBottle(
|
|
||||||
plan.container_name,
|
|
||||||
teardown,
|
|
||||||
None,
|
|
||||||
agent_command=plan.agent_command,
|
|
||||||
agent_prompt_mode=plan.agent_prompt_mode,
|
|
||||||
agent_provider_template=plan.agent_provider_template,
|
|
||||||
terminal_title=f"{plan.spec.label} ({plan.spec.agent_name})" if plan.spec.label else plan.spec.agent_name,
|
|
||||||
terminal_color=plan.spec.color,
|
|
||||||
agent_workdir=plan.workspace_plan.workdir,
|
|
||||||
)
|
|
||||||
bottle.prompt_path = provision(plan, bottle)
|
|
||||||
|
|
||||||
yield bottle
|
|
||||||
finally:
|
|
||||||
teardown()
|
|
||||||
|
|
||||||
|
|
||||||
def _mint_certs(plan: MacosContainerBottlePlan) -> MacosContainerBottlePlan:
|
|
||||||
egress_ca_host, egress_ca_cert_only = egress_tls_init(
|
|
||||||
egress_state_dir(plan.slug),
|
|
||||||
)
|
|
||||||
egress_plan = dataclasses.replace(
|
|
||||||
plan.egress_plan,
|
|
||||||
mitmproxy_ca_host_path=egress_ca_host,
|
|
||||||
mitmproxy_ca_cert_only_host_path=egress_ca_cert_only,
|
|
||||||
)
|
|
||||||
return dataclasses.replace(plan, egress_plan=egress_plan)
|
|
||||||
|
|
||||||
|
|
||||||
def _build_images(plan: MacosContainerBottlePlan) -> MacosContainerBottlePlan:
|
|
||||||
container_mod.build_image(
|
|
||||||
SIDECAR_BUNDLE_IMAGE,
|
|
||||||
_REPO_DIR,
|
|
||||||
dockerfile=SIDECAR_BUNDLE_DOCKERFILE,
|
|
||||||
)
|
|
||||||
committed = read_committed_image(plan.slug)
|
|
||||||
if committed and container_mod.image_exists(committed):
|
|
||||||
info(f"using committed image {committed!r}")
|
|
||||||
return dataclasses.replace(
|
|
||||||
plan,
|
|
||||||
agent_provision=dataclasses.replace(
|
|
||||||
plan.agent_provision,
|
|
||||||
image=committed,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
container_mod.build_image(
|
|
||||||
plan.image,
|
|
||||||
_REPO_DIR,
|
|
||||||
dockerfile=plan.dockerfile_path,
|
|
||||||
)
|
|
||||||
return plan
|
|
||||||
|
|
||||||
|
|
||||||
def _create_networks(
|
|
||||||
internal_network: str,
|
|
||||||
egress_network: str,
|
|
||||||
stack: ExitStack,
|
|
||||||
) -> None:
|
|
||||||
container_mod.create_network(internal_network, internal=True)
|
|
||||||
stack.callback(container_mod.remove_network, internal_network)
|
|
||||||
container_mod.create_network(egress_network)
|
|
||||||
stack.callback(container_mod.remove_network, egress_network)
|
|
||||||
|
|
||||||
|
|
||||||
def _start_sidecar_bundle(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
sidecar_name: str,
|
|
||||||
internal_network: str,
|
|
||||||
egress_network: str,
|
|
||||||
) -> None:
|
|
||||||
argv = _sidecar_run_argv(plan, sidecar_name, internal_network, egress_network)
|
|
||||||
effective_env = {**dict(os.environ), **plan.agent_provision.provisioned_env}
|
|
||||||
token_values = egress_resolve_token_values(
|
|
||||||
plan.egress_plan.token_env_map, effective_env,
|
|
||||||
)
|
|
||||||
env = {**os.environ, **token_values}
|
|
||||||
info(f"container run sidecar bundle {sidecar_name}")
|
|
||||||
result = subprocess.run(
|
|
||||||
argv, capture_output=True, text=True, env=env, check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container run for sidecar bundle {sidecar_name} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _start_agent(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
internal_network: str,
|
|
||||||
sidecar_ip: str,
|
|
||||||
) -> None:
|
|
||||||
argv = _agent_run_argv(plan, internal_network, sidecar_ip)
|
|
||||||
env = {
|
|
||||||
**os.environ,
|
|
||||||
**plan.forwarded_env,
|
|
||||||
}
|
|
||||||
info(f"container run agent {plan.container_name}")
|
|
||||||
result = subprocess.run(
|
|
||||||
argv, capture_output=True, text=True, env=env, check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container run for agent {plan.container_name} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _stamp_agent_urls(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
sidecar_ip: str,
|
|
||||||
) -> MacosContainerBottlePlan:
|
|
||||||
proxy_url = f"http://{sidecar_ip}:{EGRESS_PORT}"
|
|
||||||
supervise_url = ""
|
|
||||||
if plan.supervise_plan is not None:
|
|
||||||
supervise_url = f"http://{sidecar_ip}:{SUPERVISE_PORT}/"
|
|
||||||
git_gate_url = ""
|
|
||||||
if plan.git_gate_plan.upstreams:
|
|
||||||
git_gate_url = f"http://{sidecar_ip}:{_GIT_HTTP_PORT}"
|
|
||||||
return dataclasses.replace(
|
|
||||||
plan,
|
|
||||||
agent_proxy_url=proxy_url,
|
|
||||||
agent_git_gate_url=git_gate_url,
|
|
||||||
agent_supervise_url=supervise_url,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _stage_git_gate(plan: MacosContainerBottlePlan, sidecar_name: str) -> None:
|
|
||||||
gp = plan.git_gate_plan
|
|
||||||
if not gp.upstreams:
|
|
||||||
return
|
|
||||||
|
|
||||||
container_mod.exec_container(
|
|
||||||
sidecar_name,
|
|
||||||
[
|
|
||||||
"mkdir",
|
|
||||||
"-p",
|
|
||||||
str(Path(GIT_GATE_HOOK_IN_CONTAINER).parent),
|
|
||||||
GIT_GATE_CREDS_DIR_IN_CONTAINER,
|
|
||||||
"/git",
|
|
||||||
str(Path(_GIT_GATE_READY_FILE).parent),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
for host_path, container_path in _git_gate_files(plan):
|
|
||||||
container_mod.copy_into_container(
|
|
||||||
sidecar_name, host_path, container_path,
|
|
||||||
)
|
|
||||||
|
|
||||||
container_mod.exec_container(
|
|
||||||
sidecar_name,
|
|
||||||
[
|
|
||||||
"sh",
|
|
||||||
"-c",
|
|
||||||
"chmod 755 "
|
|
||||||
f"{GIT_GATE_ENTRYPOINT_IN_CONTAINER} "
|
|
||||||
f"{GIT_GATE_HOOK_IN_CONTAINER} "
|
|
||||||
f"{GIT_GATE_ACCESS_HOOK_IN_CONTAINER} && "
|
|
||||||
f"chmod 600 {GIT_GATE_CREDS_DIR_IN_CONTAINER}/* && "
|
|
||||||
f"touch {_GIT_GATE_READY_FILE}",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _git_gate_files(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
) -> tuple[tuple[str, str], ...]:
|
|
||||||
gp = plan.git_gate_plan
|
|
||||||
files: list[tuple[str, str]] = [
|
|
||||||
(str(gp.entrypoint_script), GIT_GATE_ENTRYPOINT_IN_CONTAINER),
|
|
||||||
(str(gp.hook_script), GIT_GATE_HOOK_IN_CONTAINER),
|
|
||||||
(str(gp.access_hook_script), GIT_GATE_ACCESS_HOOK_IN_CONTAINER),
|
|
||||||
]
|
|
||||||
for upstream in gp.upstreams:
|
|
||||||
files.append((
|
|
||||||
expand_tilde(upstream.identity_file),
|
|
||||||
f"{GIT_GATE_CREDS_DIR_IN_CONTAINER}/{upstream.name}-key",
|
|
||||||
))
|
|
||||||
if upstream.known_hosts_file:
|
|
||||||
files.append((
|
|
||||||
str(upstream.known_hosts_file),
|
|
||||||
f"{GIT_GATE_CREDS_DIR_IN_CONTAINER}/{upstream.name}-known_hosts",
|
|
||||||
))
|
|
||||||
return tuple(files)
|
|
||||||
|
|
||||||
|
|
||||||
def _sidecar_run_argv(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
sidecar_name: str,
|
|
||||||
internal_network: str,
|
|
||||||
egress_network: str,
|
|
||||||
) -> list[str]:
|
|
||||||
argv = [
|
|
||||||
"container", "run",
|
|
||||||
"--name", sidecar_name,
|
|
||||||
"--detach",
|
|
||||||
"--rm",
|
|
||||||
"--network", egress_network,
|
|
||||||
"--network", internal_network,
|
|
||||||
"--dns", _sidecar_dns(),
|
|
||||||
"--env", f"BOT_BOTTLE_SIDECAR_DAEMONS={','.join(_sidecar_daemons(plan))}",
|
|
||||||
]
|
|
||||||
for entry in _sidecar_env_entries(plan):
|
|
||||||
argv += ["--env", entry]
|
|
||||||
for host_path, container_path, read_only in _sidecar_mounts(plan):
|
|
||||||
argv += ["--mount", _mount_spec(host_path, container_path, read_only)]
|
|
||||||
argv.append(SIDECAR_BUNDLE_IMAGE)
|
|
||||||
return argv
|
|
||||||
|
|
||||||
|
|
||||||
def _agent_run_argv(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
internal_network: str,
|
|
||||||
sidecar_ip: str,
|
|
||||||
) -> list[str]:
|
|
||||||
argv = [
|
|
||||||
"container", "run",
|
|
||||||
"--name", plan.container_name,
|
|
||||||
"--detach",
|
|
||||||
"--network", internal_network,
|
|
||||||
]
|
|
||||||
for entry in _agent_env_entries(plan, sidecar_ip):
|
|
||||||
argv += ["--env", entry]
|
|
||||||
argv += [plan.image, "sleep", _AGENT_SLEEP_SECONDS]
|
|
||||||
return argv
|
|
||||||
|
|
||||||
|
|
||||||
def _sidecar_dns() -> str:
|
|
||||||
return container_mod.dns_server()
|
|
||||||
|
|
||||||
|
|
||||||
def _sidecar_daemons(plan: MacosContainerBottlePlan) -> tuple[str, ...]:
|
|
||||||
daemons = ["egress"]
|
|
||||||
if plan.git_gate_plan.upstreams:
|
|
||||||
daemons += ["git-gate", "git-http"]
|
|
||||||
if plan.supervise_plan is not None:
|
|
||||||
daemons.append("supervise")
|
|
||||||
return tuple(daemons)
|
|
||||||
|
|
||||||
|
|
||||||
def _sidecar_env_entries(plan: MacosContainerBottlePlan) -> tuple[str, ...]:
|
|
||||||
env: list[str] = list(egress_sidecar_env_entries(plan.egress_plan))
|
|
||||||
if plan.git_gate_plan.upstreams:
|
|
||||||
env.append(f"BOT_BOTTLE_GIT_GATE_READY_FILE={_GIT_GATE_READY_FILE}")
|
|
||||||
if plan.supervise_plan is not None:
|
|
||||||
env += [
|
|
||||||
f"SUPERVISE_BOTTLE_SLUG={plan.slug}",
|
|
||||||
f"SUPERVISE_QUEUE_DIR={QUEUE_DIR_IN_CONTAINER}",
|
|
||||||
f"SUPERVISE_PORT={SUPERVISE_PORT}",
|
|
||||||
]
|
|
||||||
return tuple(env)
|
|
||||||
|
|
||||||
|
|
||||||
def _sidecar_mounts(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
) -> tuple[tuple[str, str, bool], ...]:
|
|
||||||
mounts: list[tuple[str, str, bool]] = []
|
|
||||||
|
|
||||||
ep = plan.egress_plan
|
|
||||||
mounts.append((
|
|
||||||
str(ep.mitmproxy_ca_host_path.parent),
|
|
||||||
str(Path(EGRESS_CA_IN_CONTAINER).parent),
|
|
||||||
False,
|
|
||||||
))
|
|
||||||
if ep.routes:
|
|
||||||
mounts.append((
|
|
||||||
str(ep.routes_path.parent),
|
|
||||||
str(Path(EGRESS_ROUTES_IN_CONTAINER).parent),
|
|
||||||
True,
|
|
||||||
))
|
|
||||||
|
|
||||||
sp = plan.supervise_plan
|
|
||||||
if sp is not None:
|
|
||||||
mounts.append((str(sp.queue_dir), QUEUE_DIR_IN_CONTAINER, False))
|
|
||||||
|
|
||||||
return tuple(mounts)
|
|
||||||
|
|
||||||
def _mount_spec(host_path: str, container_path: str, read_only: bool) -> str:
|
|
||||||
spec = f"type=bind,source={host_path},target={container_path}"
|
|
||||||
if read_only:
|
|
||||||
spec += ",readonly"
|
|
||||||
return spec
|
|
||||||
|
|
||||||
|
|
||||||
def _agent_env_entries(
|
|
||||||
plan: MacosContainerBottlePlan,
|
|
||||||
sidecar_ip: str,
|
|
||||||
) -> tuple[str, ...]:
|
|
||||||
proxy_url = f"http://{sidecar_ip}:{EGRESS_PORT}"
|
|
||||||
no_proxy = _agent_no_proxy(plan, sidecar_ip)
|
|
||||||
env = [
|
|
||||||
f"HTTPS_PROXY={proxy_url}",
|
|
||||||
f"HTTP_PROXY={proxy_url}",
|
|
||||||
f"https_proxy={proxy_url}",
|
|
||||||
f"http_proxy={proxy_url}",
|
|
||||||
f"NO_PROXY={no_proxy}",
|
|
||||||
f"no_proxy={no_proxy}",
|
|
||||||
f"NODE_EXTRA_CA_CERTS={AGENT_CA_PATH}",
|
|
||||||
f"SSL_CERT_FILE={AGENT_CA_BUNDLE}",
|
|
||||||
f"REQUESTS_CA_BUNDLE={AGENT_CA_BUNDLE}",
|
|
||||||
]
|
|
||||||
if plan.agent_git_gate_url:
|
|
||||||
env.append(f"GIT_GATE_URL={plan.agent_git_gate_url}")
|
|
||||||
if plan.agent_supervise_url:
|
|
||||||
env.append(f"MCP_SUPERVISE_URL={plan.agent_supervise_url}")
|
|
||||||
for name, value in sorted(plan.agent_provision.guest_env.items()):
|
|
||||||
env.append(f"{name}={value}")
|
|
||||||
for name in sorted(plan.forwarded_env.keys()):
|
|
||||||
env.append(name)
|
|
||||||
env.extend(egress_agent_env_entries(plan.egress_plan))
|
|
||||||
return tuple(env)
|
|
||||||
|
|
||||||
|
|
||||||
def _agent_no_proxy(plan: MacosContainerBottlePlan, sidecar_ip: str) -> str:
|
|
||||||
hosts = ["localhost", "127.0.0.1", sidecar_ip]
|
|
||||||
return ",".join(hosts)
|
|
||||||
@@ -1,70 +0,0 @@
|
|||||||
"""Host-side raw-mode wrapper for `container exec --interactive --tty`.
|
|
||||||
|
|
||||||
Apple's `container exec --interactive --tty` does not set the host terminal to
|
|
||||||
raw mode before starting its I/O relay. Without raw mode the kernel line
|
|
||||||
discipline buffers modifier-key escape sequences (e.g. Shift+Enter in
|
|
||||||
modifyOtherKeys mode produces \\x1b[13;2~) until a carriage-return arrives, so
|
|
||||||
they never reach Claude Code inside the container.
|
|
||||||
|
|
||||||
This module sets the host terminal to raw mode, spawns the inner argv (the
|
|
||||||
container exec command), and restores the original terminal attributes on
|
|
||||||
exit. When stdin is not a TTY (piped invocations, CI) it falls through to a
|
|
||||||
bare subprocess.run so callers do not need to special-case non-interactive
|
|
||||||
contexts.
|
|
||||||
|
|
||||||
Usage (the `--` separator is the API contract — everything after it is the
|
|
||||||
inner command):
|
|
||||||
|
|
||||||
python pty_forward.py -- container exec --interactive --tty <name> <cmd>
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import os
|
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
import termios
|
|
||||||
import tty
|
|
||||||
|
|
||||||
|
|
||||||
def _inner_env() -> dict[str, str]:
|
|
||||||
env = dict(os.environ)
|
|
||||||
env.setdefault("TERM", "xterm-256color")
|
|
||||||
return env
|
|
||||||
|
|
||||||
|
|
||||||
def _run_inner(inner: list[str]) -> int:
|
|
||||||
return subprocess.run(inner, check=False, env=_inner_env()).returncode
|
|
||||||
|
|
||||||
|
|
||||||
def main(argv: list[str]) -> int:
|
|
||||||
"""Entry point. ``argv`` shape: ``-- <inner-argv...>``."""
|
|
||||||
if len(argv) < 2 or argv[0] != "--":
|
|
||||||
sys.stderr.write(
|
|
||||||
"usage: python pty_forward.py -- <container-exec-argv...>\n"
|
|
||||||
)
|
|
||||||
return 2
|
|
||||||
inner = argv[1:]
|
|
||||||
|
|
||||||
try:
|
|
||||||
fd = sys.stdin.fileno()
|
|
||||||
except OSError:
|
|
||||||
return _run_inner(inner)
|
|
||||||
|
|
||||||
if not os.isatty(fd):
|
|
||||||
return _run_inner(inner)
|
|
||||||
|
|
||||||
try:
|
|
||||||
old = termios.tcgetattr(fd)
|
|
||||||
except termios.error:
|
|
||||||
return _run_inner(inner)
|
|
||||||
|
|
||||||
try:
|
|
||||||
tty.setraw(fd)
|
|
||||||
return _run_inner(inner)
|
|
||||||
finally:
|
|
||||||
termios.tcsetattr(fd, termios.TCSADRAIN, old)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
sys.exit(main(sys.argv[1:]))
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
"""Prepare step for the macOS Apple Container backend."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from ...agent_provider import AgentProvisionPlan
|
|
||||||
from ...egress import EgressPlan
|
|
||||||
from ...env import ResolvedEnv
|
|
||||||
from ...git_gate import GitGatePlan
|
|
||||||
from ...supervise import SupervisePlan
|
|
||||||
from ...manifest import Manifest
|
|
||||||
from .. import BottleSpec
|
|
||||||
from . import util as container_mod
|
|
||||||
from .bottle_plan import MacosContainerBottlePlan
|
|
||||||
|
|
||||||
|
|
||||||
def preflight() -> None:
|
|
||||||
container_mod.require_container()
|
|
||||||
|
|
||||||
|
|
||||||
def build_guest_env(resolved_env: ResolvedEnv) -> dict[str, str]:
|
|
||||||
return dict(resolved_env.literals)
|
|
||||||
|
|
||||||
|
|
||||||
def resolve_plan(
|
|
||||||
spec: BottleSpec,
|
|
||||||
manifest: Manifest,
|
|
||||||
slug: str,
|
|
||||||
resolved_env: ResolvedEnv,
|
|
||||||
agent_provision_plan: AgentProvisionPlan,
|
|
||||||
egress_plan: EgressPlan,
|
|
||||||
supervise_plan: SupervisePlan | None,
|
|
||||||
git_gate_plan: GitGatePlan,
|
|
||||||
stage_dir: Path,
|
|
||||||
) -> MacosContainerBottlePlan:
|
|
||||||
return MacosContainerBottlePlan(
|
|
||||||
spec=spec,
|
|
||||||
manifest=manifest,
|
|
||||||
stage_dir=stage_dir,
|
|
||||||
slug=slug,
|
|
||||||
forwarded_env=dict(resolved_env.forwarded),
|
|
||||||
git_gate_plan=git_gate_plan,
|
|
||||||
egress_plan=egress_plan,
|
|
||||||
supervise_plan=supervise_plan,
|
|
||||||
agent_provision=agent_provision_plan,
|
|
||||||
)
|
|
||||||
@@ -1,471 +0,0 @@
|
|||||||
"""Host-side primitives for Apple's `container` CLI."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import json
|
|
||||||
import os
|
|
||||||
import ipaddress
|
|
||||||
import platform
|
|
||||||
import shutil
|
|
||||||
import subprocess
|
|
||||||
import tempfile
|
|
||||||
import time
|
|
||||||
from typing import Iterable
|
|
||||||
|
|
||||||
from ...log import die, info
|
|
||||||
|
|
||||||
|
|
||||||
_CONTAINER = "container"
|
|
||||||
_DEFAULT_DNS = "1.1.1.1"
|
|
||||||
|
|
||||||
|
|
||||||
def is_macos() -> bool:
|
|
||||||
return platform.system() == "Darwin"
|
|
||||||
|
|
||||||
|
|
||||||
def is_available() -> bool:
|
|
||||||
return is_macos() and shutil.which(_CONTAINER) is not None
|
|
||||||
|
|
||||||
|
|
||||||
def require_container() -> None:
|
|
||||||
"""Fail with an install pointer if Apple Container is unavailable."""
|
|
||||||
if not is_macos():
|
|
||||||
info("BOT_BOTTLE_BACKEND=macos-container requires macOS.")
|
|
||||||
die("macos-container backend is only supported on macOS")
|
|
||||||
if shutil.which(_CONTAINER) is None:
|
|
||||||
info("Apple Container is required but was not found on PATH.")
|
|
||||||
info("Install: https://github.com/apple/container/releases")
|
|
||||||
die("container not found")
|
|
||||||
_require_container_service()
|
|
||||||
|
|
||||||
|
|
||||||
def _require_container_service() -> None:
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "system", "status"],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
info("Apple Container system service is not running.")
|
|
||||||
info("Start it with: container system start")
|
|
||||||
die("container system service not running")
|
|
||||||
|
|
||||||
|
|
||||||
def dns_server() -> str:
|
|
||||||
override = os.environ.get("BOT_BOTTLE_MACOS_CONTAINER_DNS", "").strip()
|
|
||||||
if override:
|
|
||||||
return override
|
|
||||||
return _host_ipv4_dns() or _DEFAULT_DNS
|
|
||||||
|
|
||||||
|
|
||||||
def build_image(ref: str, context: str, *, dockerfile: str = "") -> None:
|
|
||||||
"""Build an OCI image with Apple's BuildKit-backed `container build`."""
|
|
||||||
info(
|
|
||||||
f"building image {ref} from {context} with Apple Container "
|
|
||||||
"(layer cache keeps repeat builds fast)"
|
|
||||||
)
|
|
||||||
_ensure_builder_dns()
|
|
||||||
args = [_CONTAINER, "build", "-t", ref, "--dns", dns_server()]
|
|
||||||
if dockerfile:
|
|
||||||
# `container build` resolves -f relative to the current working
|
|
||||||
# directory, not the build context. Anchor a relative Dockerfile to
|
|
||||||
# the context so builds work from any cwd.
|
|
||||||
if not os.path.isabs(dockerfile):
|
|
||||||
dockerfile = os.path.join(context, dockerfile)
|
|
||||||
args.extend(["-f", dockerfile])
|
|
||||||
args.append(context)
|
|
||||||
subprocess.run(args, check=True)
|
|
||||||
|
|
||||||
|
|
||||||
def commit_container(container_name: str, image_tag: str) -> None:
|
|
||||||
"""Snapshot a running Apple Container as a local image.
|
|
||||||
|
|
||||||
`container export` requires a stopped container, but Apple Container
|
|
||||||
removes containers when they stop, making stop-then-export impossible.
|
|
||||||
Instead, exec into the running container as root and stream the root
|
|
||||||
filesystem out via tar, then build a new image from that archive.
|
|
||||||
The bottle continues running after commit.
|
|
||||||
"""
|
|
||||||
with tempfile.TemporaryDirectory(prefix="bot-bottle-container-commit.") as tmp:
|
|
||||||
rootfs_tar = os.path.join(tmp, "rootfs.tar")
|
|
||||||
dockerfile = os.path.join(tmp, "Dockerfile")
|
|
||||||
with open(rootfs_tar, "wb") as tar_out:
|
|
||||||
result = subprocess.run(
|
|
||||||
[
|
|
||||||
_CONTAINER, "exec",
|
|
||||||
"--user", "root",
|
|
||||||
container_name,
|
|
||||||
"tar", "--create",
|
|
||||||
"--exclude=./proc",
|
|
||||||
"--exclude=./sys",
|
|
||||||
"--exclude=./dev",
|
|
||||||
"--exclude=./run",
|
|
||||||
"--file=-",
|
|
||||||
"--directory=/",
|
|
||||||
".",
|
|
||||||
],
|
|
||||||
stdout=tar_out,
|
|
||||||
stderr=subprocess.PIPE,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container exec tar {container_name!r} failed: "
|
|
||||||
f"{(result.stderr or b'').decode().strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
with open(dockerfile, "w", encoding="utf-8") as f:
|
|
||||||
f.write(
|
|
||||||
"FROM scratch\n"
|
|
||||||
"ADD rootfs.tar /\n"
|
|
||||||
"USER node\n"
|
|
||||||
"WORKDIR /home/node\n"
|
|
||||||
)
|
|
||||||
build_image(image_tag, tmp, dockerfile=dockerfile)
|
|
||||||
info(f"committed {container_name!r} → {image_tag!r}")
|
|
||||||
|
|
||||||
|
|
||||||
def _ensure_builder_dns() -> None:
|
|
||||||
dns = dns_server()
|
|
||||||
status = _builder_status()
|
|
||||||
override = os.environ.get("BOT_BOTTLE_MACOS_CONTAINER_DNS", "").strip()
|
|
||||||
if _builder_running(status) and _builder_resolves_build_hosts():
|
|
||||||
if override and not _builder_has_dns(status, dns):
|
|
||||||
_restart_builder_with_dns(dns)
|
|
||||||
return
|
|
||||||
_restart_builder_with_dns(dns)
|
|
||||||
|
|
||||||
|
|
||||||
def _restart_builder_with_dns(dns: str) -> None:
|
|
||||||
subprocess.run(
|
|
||||||
[_CONTAINER, "builder", "stop"],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
subprocess.run(
|
|
||||||
[_CONTAINER, "builder", "start", "--dns", dns],
|
|
||||||
check=True,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _host_ipv4_dns() -> str:
|
|
||||||
if not is_macos():
|
|
||||||
return ""
|
|
||||||
result = subprocess.run(
|
|
||||||
["scutil", "--dns"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return ""
|
|
||||||
blocks: list[list[str]] = []
|
|
||||||
current: list[str] = []
|
|
||||||
for line in result.stdout.splitlines():
|
|
||||||
if line.startswith("resolver #") and current:
|
|
||||||
blocks.append(current)
|
|
||||||
current = []
|
|
||||||
current.append(line)
|
|
||||||
if current:
|
|
||||||
blocks.append(current)
|
|
||||||
for direct_only in (True, False):
|
|
||||||
for block in blocks:
|
|
||||||
text = "\n".join(block)
|
|
||||||
if direct_only and "Directly Reachable Address" not in text:
|
|
||||||
continue
|
|
||||||
for line in block:
|
|
||||||
if "nameserver[" not in line or ":" not in line:
|
|
||||||
continue
|
|
||||||
candidate = line.split(":", 1)[1].strip()
|
|
||||||
if _usable_ipv4(candidate):
|
|
||||||
return candidate
|
|
||||||
return ""
|
|
||||||
|
|
||||||
|
|
||||||
def _usable_ipv4(value: str) -> bool:
|
|
||||||
try:
|
|
||||||
address = ipaddress.ip_address(value)
|
|
||||||
except ValueError:
|
|
||||||
return False
|
|
||||||
return (
|
|
||||||
address.version == 4
|
|
||||||
and not address.is_loopback
|
|
||||||
and not address.is_link_local
|
|
||||||
and not address.is_multicast
|
|
||||||
and not address.is_unspecified
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _builder_status() -> list[dict[str, object]]:
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "builder", "status", "--format", "json"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return []
|
|
||||||
try:
|
|
||||||
data = json.loads(result.stdout or "[]")
|
|
||||||
except json.JSONDecodeError:
|
|
||||||
return []
|
|
||||||
if isinstance(data, list):
|
|
||||||
return [entry for entry in data if isinstance(entry, dict)]
|
|
||||||
if isinstance(data, dict):
|
|
||||||
return [data]
|
|
||||||
return []
|
|
||||||
|
|
||||||
|
|
||||||
def _builder_running(status: list[dict[str, object]]) -> bool:
|
|
||||||
for entry in status:
|
|
||||||
entry_status = entry.get("status")
|
|
||||||
if isinstance(entry_status, dict) and entry_status.get("state") == "running":
|
|
||||||
return True
|
|
||||||
return False
|
|
||||||
|
|
||||||
|
|
||||||
def _builder_dns_nameservers(status: list[dict[str, object]]) -> list[str]:
|
|
||||||
out: list[str] = []
|
|
||||||
for entry in status:
|
|
||||||
config = entry.get("configuration")
|
|
||||||
config_dns = config.get("dns") if isinstance(config, dict) else None
|
|
||||||
nameservers = (
|
|
||||||
config_dns.get("nameservers")
|
|
||||||
if isinstance(config_dns, dict)
|
|
||||||
else None
|
|
||||||
)
|
|
||||||
if not isinstance(nameservers, list):
|
|
||||||
continue
|
|
||||||
out.extend(name for name in nameservers if isinstance(name, str))
|
|
||||||
return out
|
|
||||||
|
|
||||||
|
|
||||||
def _builder_has_dns(status: list[dict[str, object]], dns: str) -> bool:
|
|
||||||
return dns in _builder_dns_nameservers(status)
|
|
||||||
|
|
||||||
|
|
||||||
def _builder_resolves_build_hosts() -> bool:
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "exec", "buildkit", "getent", "hosts", "deb.debian.org"],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
return result.returncode == 0
|
|
||||||
|
|
||||||
|
|
||||||
def image_exists(ref: str) -> bool:
|
|
||||||
return _silent_run([_CONTAINER, "image", "inspect", ref]) == 0
|
|
||||||
|
|
||||||
|
|
||||||
def container_exists(name: str) -> bool:
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "list", "--all", "--quiet"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return False
|
|
||||||
return name in {line.strip() for line in result.stdout.splitlines()}
|
|
||||||
|
|
||||||
|
|
||||||
def container_is_running(name: str) -> bool:
|
|
||||||
"""Return True if the named container is currently running.
|
|
||||||
|
|
||||||
`container list` without `--all` lists only running containers."""
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "list", "--quiet"],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return False
|
|
||||||
return name in {line.strip() for line in result.stdout.splitlines()}
|
|
||||||
|
|
||||||
|
|
||||||
def stop_container(name: str) -> None:
|
|
||||||
"""Stop the named container without deleting it."""
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "stop", name],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container stop {name!r} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def force_remove_container(name: str) -> None:
|
|
||||||
if container_exists(name):
|
|
||||||
subprocess.run(
|
|
||||||
[_CONTAINER, "delete", "--force", name],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def copy_into_container(name: str, host_path: str, container_path: str) -> None:
|
|
||||||
cmd = [_CONTAINER, "cp", host_path, f"{name}:{container_path}"]
|
|
||||||
result = _run_container_op(cmd)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container cp into {name}:{container_path} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def exec_container(name: str, argv: list[str]) -> None:
|
|
||||||
result = _run_container_op([_CONTAINER, "exec", name, *argv])
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container exec in {name} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _run_container_op(cmd: list[str]) -> subprocess.CompletedProcess[str]:
|
|
||||||
result = subprocess.run(
|
|
||||||
cmd,
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
for _ in range(19):
|
|
||||||
if result.returncode == 0:
|
|
||||||
return result
|
|
||||||
time.sleep(0.1)
|
|
||||||
result = subprocess.run(
|
|
||||||
cmd,
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
return result
|
|
||||||
|
|
||||||
|
|
||||||
def create_network(name: str, *, internal: bool = False) -> None:
|
|
||||||
args = [
|
|
||||||
_CONTAINER, "network", "create",
|
|
||||||
"--label", "bot-bottle.backend=macos-container",
|
|
||||||
]
|
|
||||||
if internal:
|
|
||||||
args.append("--internal")
|
|
||||||
args.append(name)
|
|
||||||
result = subprocess.run(
|
|
||||||
args, capture_output=True, text=True, check=False,
|
|
||||||
)
|
|
||||||
if result.returncode == 0:
|
|
||||||
return
|
|
||||||
if "already exists" in (result.stderr or "").lower():
|
|
||||||
return
|
|
||||||
die(
|
|
||||||
f"container network create {name} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def remove_network(name: str) -> None:
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "network", "delete", name],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
def inspect_container(name: str) -> dict[str, object]:
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "inspect", name],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container inspect {name} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
try:
|
|
||||||
data = json.loads(result.stdout or "[]")
|
|
||||||
except json.JSONDecodeError as exc:
|
|
||||||
die(f"container inspect {name} returned malformed JSON: {exc}")
|
|
||||||
if isinstance(data, list) and data and isinstance(data[0], dict):
|
|
||||||
return data[0]
|
|
||||||
if isinstance(data, dict):
|
|
||||||
return data
|
|
||||||
die(f"container inspect {name} returned an unexpected shape")
|
|
||||||
raise AssertionError("unreachable")
|
|
||||||
|
|
||||||
|
|
||||||
def container_ipv4_on_network(name: str, network: str) -> str:
|
|
||||||
data = inspect_container(name)
|
|
||||||
status = data.get("status")
|
|
||||||
networks = status.get("networks") if isinstance(status, dict) else None
|
|
||||||
if not isinstance(networks, list):
|
|
||||||
die(f"container inspect {name} did not include status.networks")
|
|
||||||
for entry in networks:
|
|
||||||
if not isinstance(entry, dict):
|
|
||||||
continue
|
|
||||||
if entry.get("network") != network:
|
|
||||||
continue
|
|
||||||
raw = entry.get("ipv4Address")
|
|
||||||
if not isinstance(raw, str) or not raw:
|
|
||||||
die(f"container {name} has no IPv4 address on {network}")
|
|
||||||
return raw.split("/", 1)[0]
|
|
||||||
die(f"container {name} is not attached to network {network}")
|
|
||||||
raise AssertionError("unreachable")
|
|
||||||
|
|
||||||
|
|
||||||
def image_id(ref: str) -> str:
|
|
||||||
"""Return the image digest/ID from `container image inspect`.
|
|
||||||
|
|
||||||
The command returns JSON on current Apple Container releases. Keep
|
|
||||||
parsing narrow and fatal so callers do not cache on an empty key.
|
|
||||||
"""
|
|
||||||
import json
|
|
||||||
|
|
||||||
result = subprocess.run(
|
|
||||||
[_CONTAINER, "image", "inspect", ref],
|
|
||||||
capture_output=True,
|
|
||||||
text=True,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
if result.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"container image inspect for {ref!r} failed: "
|
|
||||||
f"{(result.stderr or '').strip() or '<no stderr>'}"
|
|
||||||
)
|
|
||||||
try:
|
|
||||||
data = json.loads(result.stdout or "{}")
|
|
||||||
except json.JSONDecodeError as exc:
|
|
||||||
die(f"container image inspect for {ref!r} returned malformed JSON: {exc}")
|
|
||||||
if isinstance(data, list) and data:
|
|
||||||
data = data[0]
|
|
||||||
if isinstance(data, dict):
|
|
||||||
value = data.get("id") or data.get("digest") or data.get("ID")
|
|
||||||
if value:
|
|
||||||
return str(value)
|
|
||||||
die(f"container image inspect for {ref!r} did not include an image id")
|
|
||||||
raise AssertionError("unreachable")
|
|
||||||
|
|
||||||
|
|
||||||
def save(ref: str, output: str) -> None:
|
|
||||||
subprocess.run([_CONTAINER, "image", "save", ref, "-o", output], check=True)
|
|
||||||
|
|
||||||
|
|
||||||
def _silent_run(cmd: Iterable[str]) -> int:
|
|
||||||
return subprocess.run(
|
|
||||||
list(cmd),
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
).returncode
|
|
||||||
@@ -26,25 +26,15 @@ from ..bottle_state import (
|
|||||||
)
|
)
|
||||||
from ..egress import Egress, EgressPlan
|
from ..egress import Egress, EgressPlan
|
||||||
from ..git_gate import GitGate, GitGatePlan
|
from ..git_gate import GitGate, GitGatePlan
|
||||||
from ..manifest import Manifest, ManifestBottle
|
from ..manifest import ManifestBottle
|
||||||
from ..supervise import Supervise, SupervisePlan
|
from ..supervise import Supervise, SupervisePlan
|
||||||
from . import BottleSpec
|
from . import BottleSpec
|
||||||
|
|
||||||
|
|
||||||
def mint_slug(spec: BottleSpec) -> str:
|
def mint_slug(spec: BottleSpec) -> str:
|
||||||
"""Return the bottle identity: the recorded identity for a resume,
|
"""Return the bottle identity: the recorded identity for a resume,
|
||||||
or a freshly minted one for a new start.
|
or a freshly minted one for a new start."""
|
||||||
|
return spec.identity or bottle_identity(spec.agent_name)
|
||||||
When a label is provided it becomes the full slug (no random suffix),
|
|
||||||
so two launches with the same label collide by design. When no label
|
|
||||||
is given the identity is minted with a random suffix to avoid
|
|
||||||
collisions between anonymous launches of the same agent."""
|
|
||||||
if spec.identity:
|
|
||||||
return spec.identity
|
|
||||||
if spec.label:
|
|
||||||
from .docker import util as docker_mod
|
|
||||||
return docker_mod.slugify(spec.label)
|
|
||||||
return bottle_identity(spec.agent_name)
|
|
||||||
|
|
||||||
|
|
||||||
def write_launch_metadata(
|
def write_launch_metadata(
|
||||||
@@ -66,10 +56,11 @@ def write_launch_metadata(
|
|||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
def prepare_agent_state_dir(slug: str, manifest: Manifest) -> tuple[Path, Path]:
|
def prepare_agent_state_dir(slug: str, spec: BottleSpec) -> tuple[Path, Path]:
|
||||||
"""Create the agent state subdir, write the prompt file.
|
"""Create the agent state subdir, write the prompt file.
|
||||||
Returns (agent_dir, prompt_file)."""
|
Returns (agent_dir, prompt_file)."""
|
||||||
agent = manifest.agent
|
manifest = spec.manifest
|
||||||
|
agent = manifest.agents[spec.agent_name]
|
||||||
agent_dir = agent_state_dir(slug)
|
agent_dir = agent_state_dir(slug)
|
||||||
agent_dir.mkdir(parents=True, exist_ok=True)
|
agent_dir.mkdir(parents=True, exist_ok=True)
|
||||||
prompt_file = agent_dir / "prompt.txt"
|
prompt_file = agent_dir / "prompt.txt"
|
||||||
|
|||||||
@@ -18,7 +18,6 @@ from ...egress import EgressPlan
|
|||||||
from ...env import ResolvedEnv
|
from ...env import ResolvedEnv
|
||||||
from ...git_gate import GitGatePlan
|
from ...git_gate import GitGatePlan
|
||||||
from ...supervise import SupervisePlan
|
from ...supervise import SupervisePlan
|
||||||
from ...manifest import Manifest
|
|
||||||
from .. import ActiveAgent, BottleBackend, BottleSpec
|
from .. import ActiveAgent, BottleBackend, BottleSpec
|
||||||
from . import cleanup as _cleanup
|
from . import cleanup as _cleanup
|
||||||
from . import enumerate as _enumerate
|
from . import enumerate as _enumerate
|
||||||
@@ -56,7 +55,6 @@ class SmolmachinesBottleBackend(
|
|||||||
self,
|
self,
|
||||||
spec: BottleSpec,
|
spec: BottleSpec,
|
||||||
*,
|
*,
|
||||||
manifest: Manifest,
|
|
||||||
slug: str,
|
slug: str,
|
||||||
resolved_env: ResolvedEnv,
|
resolved_env: ResolvedEnv,
|
||||||
agent_provision_plan: AgentProvisionPlan,
|
agent_provision_plan: AgentProvisionPlan,
|
||||||
@@ -67,7 +65,6 @@ class SmolmachinesBottleBackend(
|
|||||||
) -> SmolmachinesBottlePlan:
|
) -> SmolmachinesBottlePlan:
|
||||||
return _resolve_plan.resolve_plan(
|
return _resolve_plan.resolve_plan(
|
||||||
spec,
|
spec,
|
||||||
manifest=manifest,
|
|
||||||
slug=slug,
|
slug=slug,
|
||||||
resolved_env=resolved_env,
|
resolved_env=resolved_env,
|
||||||
agent_provision_plan=agent_provision_plan,
|
agent_provision_plan=agent_provision_plan,
|
||||||
|
|||||||
@@ -145,12 +145,7 @@ class SmolmachinesBottle(Bottle):
|
|||||||
script = exec_shell_script(agent_argv, self.terminal_title, self.terminal_color) if tty else None
|
script = exec_shell_script(agent_argv, self.terminal_title, self.terminal_color) if tty else None
|
||||||
if script is None:
|
if script is None:
|
||||||
return subprocess.run(agent_argv, check=False).returncode
|
return subprocess.run(agent_argv, check=False).returncode
|
||||||
# Use sh -c (not -lc) so the script inherits PATH from the calling
|
return subprocess.run(["sh", "-lc", script], check=False).returncode
|
||||||
# process. sh -l sources login-shell init files (e.g. /etc/profile)
|
|
||||||
# which may NOT include smolvm's location when it was installed via
|
|
||||||
# homebrew. The calling process (./cli.py) already has smolvm on PATH
|
|
||||||
# (provision steps succeed), so -c is sufficient.
|
|
||||||
return subprocess.run(["sh", "-c", script], check=False).returncode
|
|
||||||
|
|
||||||
# smolvm/libkrun can SIGKILL an otherwise-normal exec during
|
# smolvm/libkrun can SIGKILL an otherwise-normal exec during
|
||||||
# early-VM provisioning. Retry once after a short settle so
|
# early-VM provisioning. Retry once after a short settle so
|
||||||
|
|||||||
@@ -1,21 +0,0 @@
|
|||||||
"""Egress apply for the smolmachines backend.
|
|
||||||
|
|
||||||
The smolmachines sidecar bundle runs as a host-side Docker container,
|
|
||||||
so egress signalling is identical to the docker backend.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from ..docker.egress_apply import ( # noqa: F401
|
|
||||||
DockerEgressApplicator,
|
|
||||||
EgressApplyError,
|
|
||||||
applicator,
|
|
||||||
fetch_current_routes,
|
|
||||||
)
|
|
||||||
|
|
||||||
__all__ = [
|
|
||||||
"DockerEgressApplicator",
|
|
||||||
"EgressApplyError",
|
|
||||||
"applicator",
|
|
||||||
"fetch_current_routes",
|
|
||||||
]
|
|
||||||
@@ -1,145 +0,0 @@
|
|||||||
"""SmolmachinesFreezer — snapshot a smolmachines bottle.
|
|
||||||
|
|
||||||
`smolvm pack create --from-vm` requires the VM to be stopped, and smolvm
|
|
||||||
removes VMs when stopped (same issue as Apple Container). Instead, exec
|
|
||||||
into the running VM as root to write a gzip-compressed tar of the root
|
|
||||||
filesystem to /var/tmp, then copy it to the host with `smolvm machine cp`,
|
|
||||||
build a Docker image from the archive, convert it to a smolmachine artifact
|
|
||||||
via the existing registry pipeline, and record the sidecar path. The VM
|
|
||||||
stays running throughout."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import tempfile
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from .. import ActiveAgent
|
|
||||||
from ..freeze import Freezer
|
|
||||||
from ..docker import util as docker_mod
|
|
||||||
from .local_registry import crane_push_tarball, ephemeral_registry
|
|
||||||
from .smolvm import machine_cp, machine_exec, pack_create
|
|
||||||
from ...bottle_state import bottle_state_dir
|
|
||||||
from ...log import die, info
|
|
||||||
|
|
||||||
|
|
||||||
# Temp file written inside the VM during commit. Lives in /var/tmp
|
|
||||||
# (on-disk, unlike tmpfs /tmp) to survive for machine_cp.
|
|
||||||
_VM_COMMIT_TAR = "/var/tmp/.bot-bottle-commit.tar.gz"
|
|
||||||
|
|
||||||
|
|
||||||
class SmolmachinesFreezer(Freezer):
|
|
||||||
"""Freezes a smolmachines bottle via exec-tar + Docker image + smolmachine pack.
|
|
||||||
|
|
||||||
The VM is NOT stopped. We exec into the running VM to write a compressed
|
|
||||||
tar of the root filesystem to /var/tmp, copy it to the host with
|
|
||||||
machine_cp, build a Docker image (Docker's ADD decompresses .tar.gz
|
|
||||||
automatically), then run the same image→registry→pack_create pipeline
|
|
||||||
that _ensure_smolmachine uses for fresh builds."""
|
|
||||||
|
|
||||||
backend_name = "smolmachines"
|
|
||||||
|
|
||||||
def _freeze(self, agent: ActiveAgent) -> str:
|
|
||||||
machine = f"bot-bottle-{agent.slug}"
|
|
||||||
image_ref = f"bot-bottle-committed-{agent.slug}:latest"
|
|
||||||
output_dir = bottle_state_dir(agent.slug)
|
|
||||||
output_dir.mkdir(parents=True, exist_ok=True)
|
|
||||||
binary = output_dir / "committed-smolmachine"
|
|
||||||
sidecar = output_dir / "committed-smolmachine.smolmachine"
|
|
||||||
_snapshot_running_vm(machine, image_ref, binary)
|
|
||||||
return str(sidecar)
|
|
||||||
|
|
||||||
def _export_hint(self, slug: str, image_ref: str) -> None:
|
|
||||||
info(f"to export for migration: cp {image_ref} {slug}.smolmachine")
|
|
||||||
|
|
||||||
|
|
||||||
def _snapshot_running_vm(machine: str, image_ref: str, binary: Path) -> None:
|
|
||||||
"""Exec-tar the running VM, build a Docker image, and pack to a smolmachine.
|
|
||||||
|
|
||||||
binary: destination for the launcher (sibling .smolmachine is the artifact
|
|
||||||
that machine_create --from consumes, same convention as pack_create).
|
|
||||||
"""
|
|
||||||
with tempfile.TemporaryDirectory(prefix="bot-bottle-vm-commit.") as tmp:
|
|
||||||
tmp_path = Path(tmp)
|
|
||||||
# Use .tar.gz — Docker ADD decompresses automatically and the
|
|
||||||
# compressed archive fits in the VM's /var/tmp more easily.
|
|
||||||
rootfs_tar_gz = tmp_path / "rootfs.tar.gz"
|
|
||||||
dockerfile = tmp_path / "Dockerfile"
|
|
||||||
|
|
||||||
_exec_tar_to_file(machine, rootfs_tar_gz)
|
|
||||||
|
|
||||||
dockerfile.write_text(
|
|
||||||
"FROM scratch\n"
|
|
||||||
"ADD rootfs.tar.gz /\n"
|
|
||||||
"USER node\n"
|
|
||||||
"WORKDIR /home/node\n"
|
|
||||||
)
|
|
||||||
docker_mod.build_image(image_ref, str(tmp_path), dockerfile=str(dockerfile))
|
|
||||||
|
|
||||||
image_tarball = binary.parent / "committed.image.tar"
|
|
||||||
docker_mod.save(image_ref, str(image_tarball))
|
|
||||||
try:
|
|
||||||
with ephemeral_registry() as handle:
|
|
||||||
digest = docker_mod.image_id(image_ref).split(":", 1)[-1][:16]
|
|
||||||
push_ref = f"{handle.push_endpoint}/bot-bottle-committed:{digest}"
|
|
||||||
pack_ref = f"{handle.pull_endpoint}/bot-bottle-committed:{digest}"
|
|
||||||
crane_push_tarball(handle, str(image_tarball), push_ref)
|
|
||||||
pack_create(pack_ref, binary)
|
|
||||||
finally:
|
|
||||||
image_tarball.unlink(missing_ok=True)
|
|
||||||
|
|
||||||
|
|
||||||
def _exec_tar_to_file(machine: str, dest: Path) -> None:
|
|
||||||
"""Snapshot the running VM's root filesystem to dest (.tar.gz).
|
|
||||||
|
|
||||||
Writes a gzip-compressed tar to _VM_COMMIT_TAR inside the VM via
|
|
||||||
machine_exec (same mechanism as provisioning), then copies it to the
|
|
||||||
host with machine_cp. This avoids binary-stdout piping through the
|
|
||||||
smolvm exec channel, which does not reliably handle large binary output.
|
|
||||||
|
|
||||||
A connectivity probe (machine_exec true) runs first so a concurrent-exec
|
|
||||||
limitation (smolvm may reject a second exec while -i -t is active) is
|
|
||||||
reported clearly rather than as a silent failure."""
|
|
||||||
# Connectivity probe — if smolvm rejects concurrent exec while an
|
|
||||||
# interactive session is running, fail clearly here.
|
|
||||||
probe = machine_exec(machine, ["true"])
|
|
||||||
if probe.returncode != 0:
|
|
||||||
die(
|
|
||||||
f"smolvm exec is not available for {machine!r} "
|
|
||||||
f"(exit {probe.returncode}: {probe.stderr.strip() or probe.stdout.strip() or '<no output>'}). "
|
|
||||||
f"If an interactive session is active, smolvm may not support concurrent exec."
|
|
||||||
)
|
|
||||||
|
|
||||||
# Create the compressed tar inside the VM.
|
|
||||||
# tar exits 1 when files change during archiving (normal for a live
|
|
||||||
# filesystem); only treat exit > 1 as fatal.
|
|
||||||
tar_result = machine_exec(
|
|
||||||
machine,
|
|
||||||
[
|
|
||||||
"tar", "--create", "--gzip",
|
|
||||||
"--exclude=./proc",
|
|
||||||
"--exclude=./sys",
|
|
||||||
"--exclude=./dev",
|
|
||||||
"--exclude=./run",
|
|
||||||
# /tmp and /var/tmp are ephemeral. Their stale contents
|
|
||||||
# (e.g. /tmp/claude-<uid>) have uid remapped by smolvm's
|
|
||||||
# pack process, causing Claude Code to refuse to use them
|
|
||||||
# on resume. Exclude both; _init_vm recreates them with
|
|
||||||
# mkdir -p + correct ownership on every boot.
|
|
||||||
"--exclude=./tmp",
|
|
||||||
"--exclude=./var/tmp",
|
|
||||||
f"--file={_VM_COMMIT_TAR}",
|
|
||||||
"--directory=/",
|
|
||||||
".",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
if tar_result.returncode > 1:
|
|
||||||
die(
|
|
||||||
f"smolvm exec tar {machine!r} failed (exit {tar_result.returncode}): "
|
|
||||||
f"{tar_result.stderr.strip() or tar_result.stdout.strip() or '<no output>'}"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Copy from VM to host, then clean up.
|
|
||||||
try:
|
|
||||||
machine_cp(f"{machine}:{_VM_COMMIT_TAR}", str(dest))
|
|
||||||
finally:
|
|
||||||
machine_exec(machine, ["rm", "-f", _VM_COMMIT_TAR])
|
|
||||||
@@ -23,9 +23,7 @@ from typing import Callable, Generator
|
|||||||
|
|
||||||
from ...egress import (
|
from ...egress import (
|
||||||
EGRESS_ROUTES_IN_CONTAINER,
|
EGRESS_ROUTES_IN_CONTAINER,
|
||||||
egress_agent_env_entries,
|
|
||||||
egress_resolve_token_values,
|
egress_resolve_token_values,
|
||||||
egress_sidecar_env_entries,
|
|
||||||
)
|
)
|
||||||
from ...supervise import QUEUE_DIR_IN_CONTAINER, SUPERVISE_PORT
|
from ...supervise import QUEUE_DIR_IN_CONTAINER, SUPERVISE_PORT
|
||||||
from ...util import expand_tilde
|
from ...util import expand_tilde
|
||||||
@@ -42,12 +40,8 @@ from ..docker.git_gate import (
|
|||||||
GIT_GATE_HOOK_IN_CONTAINER,
|
GIT_GATE_HOOK_IN_CONTAINER,
|
||||||
)
|
)
|
||||||
from ...git_gate import revoke_git_gate_provisioned_keys
|
from ...git_gate import revoke_git_gate_provisioned_keys
|
||||||
from ...log import info, warn
|
from ...log import warn
|
||||||
from ...bottle_state import (
|
from ...bottle_state import egress_state_dir, git_gate_state_dir
|
||||||
egress_state_dir,
|
|
||||||
git_gate_state_dir,
|
|
||||||
read_committed_image,
|
|
||||||
)
|
|
||||||
from . import loopback_alias as _loopback
|
from . import loopback_alias as _loopback
|
||||||
from . import sidecar_bundle as _bundle
|
from . import sidecar_bundle as _bundle
|
||||||
from . import smolvm as _smolvm
|
from . import smolvm as _smolvm
|
||||||
@@ -91,7 +85,14 @@ def launch(
|
|||||||
plan = _start_bundle(plan, network, loopback_ip, stack)
|
plan = _start_bundle(plan, network, loopback_ip, stack)
|
||||||
plan = _discover_urls(plan, loopback_ip)
|
plan = _discover_urls(plan, loopback_ip)
|
||||||
|
|
||||||
agent_from_path = _agent_from_path(plan)
|
# Build the agent image and pack it into a `.smolmachine`
|
||||||
|
# artifact (or hit the per-Dockerfile-digest cache). Runs
|
||||||
|
# here, not in prepare, so the docker-build output doesn't
|
||||||
|
# garble the dashboard's preflight modal.
|
||||||
|
agent_from_path = _ensure_smolmachine(
|
||||||
|
plan.agent_image,
|
||||||
|
dockerfile=plan.agent_dockerfile_path,
|
||||||
|
)
|
||||||
|
|
||||||
_launch_vm(plan, agent_from_path, loopback_ip, stack)
|
_launch_vm(plan, agent_from_path, loopback_ip, stack)
|
||||||
_init_vm(plan)
|
_init_vm(plan)
|
||||||
@@ -103,7 +104,7 @@ def launch(
|
|||||||
agent_command=plan.agent_command,
|
agent_command=plan.agent_command,
|
||||||
agent_prompt_mode=plan.agent_prompt_mode,
|
agent_prompt_mode=plan.agent_prompt_mode,
|
||||||
agent_provider_template=plan.agent_provider_template,
|
agent_provider_template=plan.agent_provider_template,
|
||||||
terminal_title=f"{plan.spec.label} ({plan.spec.agent_name})" if plan.spec.label else plan.spec.agent_name,
|
terminal_title=plan.spec.label or plan.spec.agent_name,
|
||||||
terminal_color=plan.spec.color,
|
terminal_color=plan.spec.color,
|
||||||
agent_workdir=plan.workspace_plan.workdir,
|
agent_workdir=plan.workspace_plan.workdir,
|
||||||
)
|
)
|
||||||
@@ -129,7 +130,7 @@ def _teardown_smolmachines(
|
|||||||
except BaseException as exc: # noqa: W0718 — teardown must not fail
|
except BaseException as exc: # noqa: W0718 — teardown must not fail
|
||||||
teardown_exc = exc
|
teardown_exc = exc
|
||||||
warn(f"smolmachines teardown failed: {exc!r}")
|
warn(f"smolmachines teardown failed: {exc!r}")
|
||||||
bottle = plan.manifest.bottle
|
bottle = plan.spec.manifest.bottle_for(plan.spec.agent_name)
|
||||||
revoke_git_gate_provisioned_keys(bottle, git_gate_state_dir(plan.slug))
|
revoke_git_gate_provisioned_keys(bottle, git_gate_state_dir(plan.slug))
|
||||||
if teardown_exc is not None:
|
if teardown_exc is not None:
|
||||||
raise teardown_exc
|
raise teardown_exc
|
||||||
@@ -216,23 +217,16 @@ def _discover_urls(
|
|||||||
agent_supervise_url = f"http://{loopback_ip}:{supervise_host_port}/"
|
agent_supervise_url = f"http://{loopback_ip}:{supervise_host_port}/"
|
||||||
|
|
||||||
existing_no_proxy = plan.guest_env.get("NO_PROXY", "localhost,127.0.0.1")
|
existing_no_proxy = plan.guest_env.get("NO_PROXY", "localhost,127.0.0.1")
|
||||||
no_proxy = f"{existing_no_proxy},{loopback_ip}"
|
|
||||||
guest_env = {
|
guest_env = {
|
||||||
**plan.guest_env,
|
**plan.guest_env,
|
||||||
"HTTPS_PROXY": agent_proxy_url,
|
"HTTPS_PROXY": agent_proxy_url,
|
||||||
"HTTP_PROXY": agent_proxy_url,
|
"HTTP_PROXY": agent_proxy_url,
|
||||||
"https_proxy": agent_proxy_url,
|
"NO_PROXY": f"{existing_no_proxy},{loopback_ip}",
|
||||||
"http_proxy": agent_proxy_url,
|
|
||||||
"NO_PROXY": no_proxy,
|
|
||||||
"no_proxy": no_proxy,
|
|
||||||
}
|
}
|
||||||
if agent_git_gate_host:
|
if agent_git_gate_host:
|
||||||
guest_env["GIT_GATE_URL"] = f"http://{agent_git_gate_host}"
|
guest_env["GIT_GATE_URL"] = f"http://{agent_git_gate_host}"
|
||||||
if agent_supervise_url:
|
if agent_supervise_url:
|
||||||
guest_env["MCP_SUPERVISE_URL"] = agent_supervise_url
|
guest_env["MCP_SUPERVISE_URL"] = agent_supervise_url
|
||||||
for entry in egress_agent_env_entries(plan.egress_plan):
|
|
||||||
name, value = entry.split("=", 1)
|
|
||||||
guest_env[name] = value
|
|
||||||
|
|
||||||
return dataclasses.replace(
|
return dataclasses.replace(
|
||||||
plan,
|
plan,
|
||||||
@@ -281,16 +275,10 @@ def _init_vm(plan: SmolmachinesBottlePlan) -> None:
|
|||||||
All folded into one sh -c to avoid back-to-back exec calls
|
All folded into one sh -c to avoid back-to-back exec calls
|
||||||
immediately after machine_start (libkrun exec-channel race).
|
immediately after machine_start (libkrun exec-channel race).
|
||||||
|
|
||||||
mkdir -p guards: when booting from a committed snapshot, /tmp and
|
|
||||||
/var/tmp are excluded from the archive (they're ephemeral and their
|
|
||||||
stale contents would have wrong uid after smolvm's uid remap). The
|
|
||||||
directories must be created before chown/chmod can set permissions.
|
|
||||||
|
|
||||||
wait_exec_ready polls until the exec channel is ready for the
|
wait_exec_ready polls until the exec channel is ready for the
|
||||||
subsequent provision calls, replacing the empirical sleep."""
|
subsequent provision calls, replacing the empirical sleep."""
|
||||||
_smolvm.machine_exec(plan.machine_name, [
|
_smolvm.machine_exec(plan.machine_name, [
|
||||||
"sh", "-c",
|
"sh", "-c",
|
||||||
"mkdir -p /tmp /var/tmp && "
|
|
||||||
"chown -R node:node /home/node && "
|
"chown -R node:node /home/node && "
|
||||||
"chown root:root /tmp /var/tmp && "
|
"chown root:root /tmp /var/tmp && "
|
||||||
"chmod 1777 /tmp /var/tmp",
|
"chmod 1777 /tmp /var/tmp",
|
||||||
@@ -320,8 +308,12 @@ def _bundle_launch_spec(
|
|||||||
ep = plan.egress_plan
|
ep = plan.egress_plan
|
||||||
volumes.append((str(ep.mitmproxy_ca_host_path), EGRESS_CA_IN_CONTAINER, True))
|
volumes.append((str(ep.mitmproxy_ca_host_path), EGRESS_CA_IN_CONTAINER, True))
|
||||||
if ep.routes:
|
if ep.routes:
|
||||||
volumes.append((str(ep.routes_path.parent), str(Path(EGRESS_ROUTES_IN_CONTAINER).parent), True))
|
volumes.append((str(ep.routes_path), EGRESS_ROUTES_IN_CONTAINER, True))
|
||||||
env.extend(egress_sidecar_env_entries(ep))
|
# Bare-name entries for upstream-token slots. Their values
|
||||||
|
# come from the docker-run subprocess env (inherited from
|
||||||
|
# the operator's shell), never landing on argv.
|
||||||
|
for token_env in sorted(ep.token_env_map.keys()):
|
||||||
|
env.append(token_env)
|
||||||
|
|
||||||
# --- git-gate ---------------------------------------------
|
# --- git-gate ---------------------------------------------
|
||||||
gp = plan.git_gate_plan
|
gp = plan.git_gate_plan
|
||||||
@@ -390,30 +382,6 @@ def _resolve_token_env(
|
|||||||
return egress_resolve_token_values(plan.egress_plan.token_env_map, effective_env)
|
return egress_resolve_token_values(plan.egress_plan.token_env_map, effective_env)
|
||||||
|
|
||||||
|
|
||||||
def _agent_from_path(plan: SmolmachinesBottlePlan) -> Path:
|
|
||||||
"""Return the `.smolmachine` artifact used for `machine create --from`.
|
|
||||||
|
|
||||||
Prefer a committed VM artifact when one is recorded and still
|
|
||||||
present. If the file was removed, fall back to the normal image
|
|
||||||
build + pack cache path.
|
|
||||||
"""
|
|
||||||
committed = read_committed_image(plan.slug)
|
|
||||||
if committed:
|
|
||||||
committed_path = Path(committed)
|
|
||||||
if committed_path.is_file():
|
|
||||||
info(f"using committed smolmachine {str(committed_path)!r}")
|
|
||||||
return committed_path
|
|
||||||
|
|
||||||
# Build the agent image and pack it into a `.smolmachine`
|
|
||||||
# artifact (or hit the per-Dockerfile-digest cache). Runs here,
|
|
||||||
# not in prepare, so the docker-build output doesn't garble the
|
|
||||||
# dashboard's preflight modal.
|
|
||||||
return _ensure_smolmachine(
|
|
||||||
plan.agent_image,
|
|
||||||
dockerfile=plan.agent_dockerfile_path,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _ensure_smolmachine(image_ref: str, *, dockerfile: str = "") -> Path:
|
def _ensure_smolmachine(image_ref: str, *, dockerfile: str = "") -> Path:
|
||||||
"""Build the agent docker image and convert it into a
|
"""Build the agent docker image and convert it into a
|
||||||
`.smolmachine` artifact, caching the result under
|
`.smolmachine` artifact, caching the result under
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ from __future__ import annotations
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from .. import BottleSpec
|
from .. import BottleSpec
|
||||||
from ...manifest import Manifest
|
|
||||||
from ...env import ResolvedEnv
|
from ...env import ResolvedEnv
|
||||||
from ...agent_provider import AgentProvisionPlan
|
from ...agent_provider import AgentProvisionPlan
|
||||||
from ...egress import EgressPlan
|
from ...egress import EgressPlan
|
||||||
@@ -47,7 +46,6 @@ def build_guest_env(resolved_env: ResolvedEnv) -> dict[str, str]:
|
|||||||
|
|
||||||
def resolve_plan(
|
def resolve_plan(
|
||||||
spec: BottleSpec,
|
spec: BottleSpec,
|
||||||
manifest: Manifest,
|
|
||||||
slug: str,
|
slug: str,
|
||||||
resolved_env: ResolvedEnv,
|
resolved_env: ResolvedEnv,
|
||||||
agent_provision_plan: AgentProvisionPlan,
|
agent_provision_plan: AgentProvisionPlan,
|
||||||
@@ -69,7 +67,6 @@ def resolve_plan(
|
|||||||
|
|
||||||
return SmolmachinesBottlePlan(
|
return SmolmachinesBottlePlan(
|
||||||
spec=spec,
|
spec=spec,
|
||||||
manifest=manifest,
|
|
||||||
stage_dir=stage_dir,
|
stage_dir=stage_dir,
|
||||||
slug=slug,
|
slug=slug,
|
||||||
bundle_subnet=subnet,
|
bundle_subnet=subnet,
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ smolvm binary."""
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import json
|
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess
|
||||||
import time
|
import time
|
||||||
@@ -95,16 +94,6 @@ def pack_create(image: str, output: Path) -> None:
|
|||||||
_smolvm("pack", "create", "--image", image, "-o", str(output))
|
_smolvm("pack", "create", "--image", image, "-o", str(output))
|
||||||
|
|
||||||
|
|
||||||
def pack_create_from_vm(name: str, output: Path) -> None:
|
|
||||||
"""`smolvm pack create --from-vm <name> -o <output>`.
|
|
||||||
|
|
||||||
Snapshots an existing persistent VM into a pack artifact. As
|
|
||||||
with `pack_create`, smolvm writes a launcher at `output` and the
|
|
||||||
bootable sidecar at `output.smolmachine`.
|
|
||||||
"""
|
|
||||||
_smolvm("pack", "create", "--from-vm", name, "-o", str(output))
|
|
||||||
|
|
||||||
|
|
||||||
# --- Machine lifecycle ---------------------------------------------------
|
# --- Machine lifecycle ---------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
@@ -154,21 +143,6 @@ def machine_create(
|
|||||||
_smolvm(*args)
|
_smolvm(*args)
|
||||||
|
|
||||||
|
|
||||||
def machine_is_running(name: str) -> bool:
|
|
||||||
"""Return True if the named VM is in the 'running' state."""
|
|
||||||
result = _smolvm("machine", "ls", "--json", check=False)
|
|
||||||
if result.returncode != 0:
|
|
||||||
return False
|
|
||||||
try:
|
|
||||||
machines = json.loads(result.stdout or "[]")
|
|
||||||
except ValueError:
|
|
||||||
return False
|
|
||||||
return any(
|
|
||||||
isinstance(m, dict) and m.get("name") == name and m.get("state") == "running"
|
|
||||||
for m in machines
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def machine_start(name: str) -> None:
|
def machine_start(name: str) -> None:
|
||||||
"""`smolvm machine start --name NAME`."""
|
"""`smolvm machine start --name NAME`."""
|
||||||
_smolvm("machine", "start", "--name", name)
|
_smolvm("machine", "start", "--name", name)
|
||||||
|
|||||||
@@ -12,11 +12,22 @@ import shlex
|
|||||||
# uses true/24-bit colors for its own chrome, which would otherwise bypass
|
# uses true/24-bit colors for its own chrome, which would otherwise bypass
|
||||||
# the palette entirely.
|
# the palette entirely.
|
||||||
_COLORS: dict[str, tuple[int, str, int, str, str]] = {
|
_COLORS: dict[str, tuple[int, str, int, str, str]] = {
|
||||||
"red": (9, "#e74c3c", 1, "#c0392b", "#200808"),
|
"black": (0, "#2d2d2d", 8, "#5c5c5c", "#0a0a0a"),
|
||||||
"green": (10, "#2ecc71", 2, "#27ae60", "#082008"),
|
"red": (1, "#c0392b", 9, "#e74c3c", "#1a0707"),
|
||||||
"yellow": (11, "#f1c40f", 3, "#d4ac0d", "#201808"),
|
"green": (2, "#27ae60", 10, "#2ecc71", "#071a09"),
|
||||||
"blue": (12, "#3498db", 4, "#2471a3", "#080820"),
|
"yellow": (3, "#d4ac0d", 11, "#f1c40f", "#1a1507"),
|
||||||
"magenta": (13, "#9b59b6", 5, "#7d3c98", "#160820"),
|
"blue": (4, "#2471a3", 12, "#3498db", "#07071a"),
|
||||||
|
"magenta": (5, "#7d3c98", 13, "#9b59b6", "#12071a"),
|
||||||
|
"cyan": (6, "#148f77", 14, "#1abc9c", "#071a1a"),
|
||||||
|
"white": (7, "#bdc3c7", 15, "#ecf0f1", "#111111"),
|
||||||
|
"bright-black": (8, "#5c5c5c", 0, "#2d2d2d", "#111111"),
|
||||||
|
"bright-red": (9, "#e74c3c", 1, "#c0392b", "#200808"),
|
||||||
|
"bright-green": (10, "#2ecc71", 2, "#27ae60", "#082008"),
|
||||||
|
"bright-yellow": (11, "#f1c40f", 3, "#d4ac0d", "#201808"),
|
||||||
|
"bright-blue": (12, "#3498db", 4, "#2471a3", "#080820"),
|
||||||
|
"bright-magenta": (13, "#9b59b6", 5, "#7d3c98", "#160820"),
|
||||||
|
"bright-cyan": (14, "#1abc9c", 6, "#148f77", "#082020"),
|
||||||
|
"bright-white": (15, "#ecf0f1", 7, "#bdc3c7", "#151515"),
|
||||||
}
|
}
|
||||||
|
|
||||||
# OSC 104 resets all indexed palette entries; OSC 111 resets default background.
|
# OSC 104 resets all indexed palette entries; OSC 111 resets default background.
|
||||||
|
|||||||
@@ -43,7 +43,6 @@ from . import supervise as _supervise
|
|||||||
# Directory layout: ~/.bot-bottle/state/<identity>/...
|
# Directory layout: ~/.bot-bottle/state/<identity>/...
|
||||||
_STATE_SUBDIR = "state"
|
_STATE_SUBDIR = "state"
|
||||||
_PER_BOTTLE_DOCKERFILE_NAME = "Dockerfile"
|
_PER_BOTTLE_DOCKERFILE_NAME = "Dockerfile"
|
||||||
_COMMITTED_IMAGE_NAME = "committed-image"
|
|
||||||
_TRANSCRIPT_SUBDIR = "transcript"
|
_TRANSCRIPT_SUBDIR = "transcript"
|
||||||
# Per-sidecar scratch subdirs. PRD 0018 chunk 2: bind-mount sources
|
# Per-sidecar scratch subdirs. PRD 0018 chunk 2: bind-mount sources
|
||||||
# live here so chunk 3's `docker compose up` can find them at stable
|
# live here so chunk 3's `docker compose up` can find them at stable
|
||||||
@@ -180,32 +179,6 @@ def write_per_bottle_dockerfile(identity: str, content: str) -> Path:
|
|||||||
return p
|
return p
|
||||||
|
|
||||||
|
|
||||||
def committed_image_path(identity: str) -> Path:
|
|
||||||
return bottle_state_dir(identity) / _COMMITTED_IMAGE_NAME
|
|
||||||
|
|
||||||
|
|
||||||
def write_committed_image(identity: str, image_tag: str) -> Path:
|
|
||||||
"""Persist the committed image tag for `identity`. The next
|
|
||||||
`cli.py resume <identity>` will boot from this image instead of
|
|
||||||
rebuilding from the Dockerfile."""
|
|
||||||
path = committed_image_path(identity)
|
|
||||||
path.parent.mkdir(parents=True, exist_ok=True)
|
|
||||||
path.write_text(image_tag.strip() + "\n")
|
|
||||||
path.chmod(0o644)
|
|
||||||
return path
|
|
||||||
|
|
||||||
|
|
||||||
def read_committed_image(identity: str) -> str | None:
|
|
||||||
"""Return the committed image tag for `identity`, or None if no
|
|
||||||
commit has been recorded. Used by the Docker launch step to skip
|
|
||||||
the Dockerfile build when a committed snapshot exists."""
|
|
||||||
path = committed_image_path(identity)
|
|
||||||
if not path.is_file():
|
|
||||||
return None
|
|
||||||
tag = path.read_text().strip()
|
|
||||||
return tag or None
|
|
||||||
|
|
||||||
|
|
||||||
def per_bottle_image_tag(identity: str) -> str:
|
def per_bottle_image_tag(identity: str) -> str:
|
||||||
"""Image tag for a rebuilt bottle. Distinct from the base
|
"""Image tag for a rebuilt bottle. Distinct from the base
|
||||||
bot-bottle-claude:latest so per-bottle rebuilds don't collide in
|
bot-bottle-claude:latest so per-bottle rebuilds don't collide in
|
||||||
@@ -341,7 +314,6 @@ __all__ = [
|
|||||||
"bottle_state_dir",
|
"bottle_state_dir",
|
||||||
"cleanup_state",
|
"cleanup_state",
|
||||||
"clear_preserve_marker",
|
"clear_preserve_marker",
|
||||||
"committed_image_path",
|
|
||||||
"egress_state_dir",
|
"egress_state_dir",
|
||||||
"git_gate_state_dir",
|
"git_gate_state_dir",
|
||||||
"is_preserved",
|
"is_preserved",
|
||||||
@@ -351,11 +323,9 @@ __all__ = [
|
|||||||
"per_bottle_dockerfile_path",
|
"per_bottle_dockerfile_path",
|
||||||
"per_bottle_image_tag",
|
"per_bottle_image_tag",
|
||||||
"preserve_marker_path",
|
"preserve_marker_path",
|
||||||
"read_committed_image",
|
|
||||||
"read_metadata",
|
"read_metadata",
|
||||||
"supervise_state_dir",
|
"supervise_state_dir",
|
||||||
"transcript_snapshot_dir",
|
"transcript_snapshot_dir",
|
||||||
"write_committed_image",
|
|
||||||
"write_metadata",
|
"write_metadata",
|
||||||
"write_per_bottle_dockerfile",
|
"write_per_bottle_dockerfile",
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"""Main CLI dispatcher.
|
"""Main CLI dispatcher.
|
||||||
|
|
||||||
Commands: cleanup, commit, edit, info, init, list, resume, start, supervise
|
Commands: cleanup, edit, info, init, list, resume, start, supervise
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
@@ -12,7 +12,6 @@ from ..manifest import ManifestError
|
|||||||
from ._common import PROG
|
from ._common import PROG
|
||||||
from . import list as _list_mod
|
from . import list as _list_mod
|
||||||
from .cleanup import cmd_cleanup
|
from .cleanup import cmd_cleanup
|
||||||
from .commit import cmd_commit
|
|
||||||
from .edit import cmd_edit
|
from .edit import cmd_edit
|
||||||
from .info import cmd_info
|
from .info import cmd_info
|
||||||
from .init import cmd_init
|
from .init import cmd_init
|
||||||
@@ -24,7 +23,6 @@ cmd_list = _list_mod.cmd_list
|
|||||||
|
|
||||||
COMMANDS = {
|
COMMANDS = {
|
||||||
"cleanup": cmd_cleanup,
|
"cleanup": cmd_cleanup,
|
||||||
"commit": cmd_commit,
|
|
||||||
"edit": cmd_edit,
|
"edit": cmd_edit,
|
||||||
"info": cmd_info,
|
"info": cmd_info,
|
||||||
"init": cmd_init,
|
"init": cmd_init,
|
||||||
@@ -39,7 +37,6 @@ def usage() -> None:
|
|||||||
sys.stderr.write(f"usage: {PROG} <command> [args...]\n\n")
|
sys.stderr.write(f"usage: {PROG} <command> [args...]\n\n")
|
||||||
sys.stderr.write("Commands:\n")
|
sys.stderr.write("Commands:\n")
|
||||||
sys.stderr.write(" cleanup stop and remove all active bot-bottle containers\n")
|
sys.stderr.write(" cleanup stop and remove all active bot-bottle containers\n")
|
||||||
sys.stderr.write(" commit snapshot a running bottle's container state to a Docker image\n")
|
|
||||||
sys.stderr.write(" edit open an agent in vim for editing\n")
|
sys.stderr.write(" edit open an agent in vim for editing\n")
|
||||||
sys.stderr.write(" info print env, skills, and prompt details for a named agent\n")
|
sys.stderr.write(" info print env, skills, and prompt details for a named agent\n")
|
||||||
sys.stderr.write(" init interactively create a new agent and add it to bot-bottle.json\n")
|
sys.stderr.write(" init interactively create a new agent and add it to bot-bottle.json\n")
|
||||||
|
|||||||
@@ -1,53 +0,0 @@
|
|||||||
"""commit: freeze a running bottle's state to a resumable artifact.
|
|
||||||
|
|
||||||
Docker bottles are committed to a local Docker image. Macos-container
|
|
||||||
bottles are exported and rebuilt as a local Apple Container image.
|
|
||||||
Smolmachines bottles are packed from the running VM into a
|
|
||||||
`.smolmachine` artifact. The resulting reference is stored in
|
|
||||||
per-bottle state so the next `./cli.py resume <slug>` boots from the
|
|
||||||
snapshot instead of rebuilding from the Dockerfile.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import argparse
|
|
||||||
|
|
||||||
from ..backend import enumerate_active_agents
|
|
||||||
from ..backend.freeze import CommitCancelled, get_freezer
|
|
||||||
from ..bottle_state import read_metadata
|
|
||||||
from ..log import die
|
|
||||||
from ._common import PROG
|
|
||||||
from . import tui
|
|
||||||
|
|
||||||
|
|
||||||
def cmd_commit(argv: list[str]) -> int:
|
|
||||||
parser = argparse.ArgumentParser(prog=f"{PROG} commit", add_help=True)
|
|
||||||
parser.add_argument(
|
|
||||||
"slug",
|
|
||||||
nargs="?",
|
|
||||||
default=None,
|
|
||||||
help=(
|
|
||||||
"bottle slug from `cli.py list active` "
|
|
||||||
"(omit to pick interactively)"
|
|
||||||
),
|
|
||||||
)
|
|
||||||
args = parser.parse_args(argv)
|
|
||||||
|
|
||||||
slug = args.slug
|
|
||||||
if slug is None:
|
|
||||||
active = enumerate_active_agents()
|
|
||||||
if not active:
|
|
||||||
die("no active bottles; start one with `./cli.py start`")
|
|
||||||
choices = [a.slug for a in active]
|
|
||||||
slug = tui.filter_select(choices, title="Select bottle to commit")
|
|
||||||
if slug is None:
|
|
||||||
return 0
|
|
||||||
|
|
||||||
metadata = read_metadata(slug)
|
|
||||||
backend = metadata.backend if metadata else ""
|
|
||||||
|
|
||||||
try:
|
|
||||||
get_freezer(backend).commit_slug(slug)
|
|
||||||
except CommitCancelled:
|
|
||||||
return 0
|
|
||||||
return 0
|
|
||||||
@@ -5,7 +5,7 @@ from __future__ import annotations
|
|||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
from ..log import info
|
from ..log import info
|
||||||
from ..manifest import ManifestIndex
|
from ..manifest import Manifest
|
||||||
from ._common import PROG, USER_CWD
|
from ._common import PROG, USER_CWD
|
||||||
|
|
||||||
|
|
||||||
@@ -14,12 +14,11 @@ def cmd_info(argv: list[str]) -> int:
|
|||||||
parser.add_argument("name", help="agent name defined in bot-bottle.json")
|
parser.add_argument("name", help="agent name defined in bot-bottle.json")
|
||||||
args = parser.parse_args(argv)
|
args = parser.parse_args(argv)
|
||||||
|
|
||||||
names = ManifestIndex.resolve(USER_CWD)
|
manifest = Manifest.resolve(USER_CWD)
|
||||||
names.require_agent(args.name)
|
manifest.require_agent(args.name)
|
||||||
manifest = names.load_for_agent(args.name)
|
|
||||||
|
|
||||||
agent = manifest.agent
|
agent = manifest.agents[args.name]
|
||||||
bottle = manifest.bottle
|
bottle = manifest.bottle_for(args.name)
|
||||||
env_names = list(bottle.env.keys())
|
env_names = list(bottle.env.keys())
|
||||||
prompt_first_line = agent.prompt.splitlines()[0] if agent.prompt else ""
|
prompt_first_line = agent.prompt.splitlines()[0] if agent.prompt else ""
|
||||||
|
|
||||||
@@ -32,7 +31,7 @@ def cmd_info(argv: list[str]) -> int:
|
|||||||
f"first line: {prompt_first_line or '(empty)'}"
|
f"first line: {prompt_first_line or '(empty)'}"
|
||||||
)
|
)
|
||||||
info(f"bottle : {agent.bottle}")
|
info(f"bottle : {agent.bottle}")
|
||||||
identity = manifest.git_identity_summary()
|
identity = manifest.git_identity_summary(args.name)
|
||||||
if identity:
|
if identity:
|
||||||
info(f" git identity : {identity}")
|
info(f" git identity : {identity}")
|
||||||
if bottle.git:
|
if bottle.git:
|
||||||
|
|||||||
+20
-9
@@ -7,15 +7,26 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
from ..backend import enumerate_active_agents
|
from ..backend import enumerate_active_agents
|
||||||
from ..manifest import ManifestIndex
|
from ..manifest import Manifest
|
||||||
from ._common import PROG, USER_CWD
|
from ._common import PROG, USER_CWD
|
||||||
|
|
||||||
_ANSI_COLOR_CODES: dict[str, str] = {
|
_ANSI_COLOR_CODES: dict[str, str] = {
|
||||||
"red": "\033[91m",
|
"black": "\033[30m",
|
||||||
"green": "\033[92m",
|
"red": "\033[31m",
|
||||||
"yellow": "\033[93m",
|
"green": "\033[32m",
|
||||||
"blue": "\033[94m",
|
"yellow": "\033[33m",
|
||||||
"magenta": "\033[95m",
|
"blue": "\033[34m",
|
||||||
|
"magenta": "\033[35m",
|
||||||
|
"cyan": "\033[36m",
|
||||||
|
"white": "\033[37m",
|
||||||
|
"bright-black": "\033[90m",
|
||||||
|
"bright-red": "\033[91m",
|
||||||
|
"bright-green": "\033[92m",
|
||||||
|
"bright-yellow": "\033[93m",
|
||||||
|
"bright-blue": "\033[94m",
|
||||||
|
"bright-magenta": "\033[95m",
|
||||||
|
"bright-cyan": "\033[96m",
|
||||||
|
"bright-white": "\033[97m",
|
||||||
}
|
}
|
||||||
_ANSI_RESET = "\033[0m"
|
_ANSI_RESET = "\033[0m"
|
||||||
|
|
||||||
@@ -40,8 +51,8 @@ def cmd_list(argv: list[str]) -> int:
|
|||||||
args = parser.parse_args(argv)
|
args = parser.parse_args(argv)
|
||||||
|
|
||||||
if args.scope == "available":
|
if args.scope == "available":
|
||||||
manifest = ManifestIndex.resolve(USER_CWD)
|
manifest = Manifest.resolve(USER_CWD)
|
||||||
for name in manifest.all_agent_names:
|
for name in manifest.agents.keys():
|
||||||
print(name)
|
print(name)
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
@@ -55,7 +66,7 @@ def cmd_list(argv: list[str]) -> int:
|
|||||||
# Tab-separated keeps the format stable for shell pipelines.
|
# Tab-separated keeps the format stable for shell pipelines.
|
||||||
for b in active:
|
for b in active:
|
||||||
services = ",".join(b.services) if b.services else "-"
|
services = ",".join(b.services) if b.services else "-"
|
||||||
display_name = f"{b.label} ({b.agent_name})" if b.label else b.agent_name
|
display_name = b.label if b.label else b.agent_name
|
||||||
colored_name = _ansi_label(display_name, b.color)
|
colored_name = _ansi_label(display_name, b.color)
|
||||||
print(f"{b.backend_name}\t{b.slug}\t{colored_name}\t{services}")
|
print(f"{b.backend_name}\t{b.slug}\t{colored_name}\t{services}")
|
||||||
return 0
|
return 0
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ import argparse
|
|||||||
from ..backend import BottleSpec
|
from ..backend import BottleSpec
|
||||||
from ..bottle_state import read_metadata
|
from ..bottle_state import read_metadata
|
||||||
from ..log import die
|
from ..log import die
|
||||||
from ..manifest import ManifestIndex
|
from ..manifest import Manifest
|
||||||
from ._common import PROG, USER_CWD
|
from ._common import PROG, USER_CWD
|
||||||
from .start import _launch_bottle
|
from .start import _launch_bottle
|
||||||
|
|
||||||
@@ -28,6 +28,7 @@ from .start import _launch_bottle
|
|||||||
def cmd_resume(argv: list[str]) -> int:
|
def cmd_resume(argv: list[str]) -> int:
|
||||||
parser = argparse.ArgumentParser(prog=f"{PROG} resume", add_help=True)
|
parser = argparse.ArgumentParser(prog=f"{PROG} resume", add_help=True)
|
||||||
parser.add_argument("--dry-run", action="store_true")
|
parser.add_argument("--dry-run", action="store_true")
|
||||||
|
parser.add_argument("--remote-control", action="store_true")
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"identity",
|
"identity",
|
||||||
help="bottle identity from a prior `start` (see its session-end output)",
|
help="bottle identity from a prior `start` (see its session-end output)",
|
||||||
@@ -41,7 +42,7 @@ def cmd_resume(argv: list[str]) -> int:
|
|||||||
f"check ~/.bot-bottle/state/ or run `cli.py start` to create a new bottle"
|
f"check ~/.bot-bottle/state/ or run `cli.py start` to create a new bottle"
|
||||||
)
|
)
|
||||||
|
|
||||||
manifest = ManifestIndex.resolve(USER_CWD)
|
manifest = Manifest.resolve(USER_CWD)
|
||||||
manifest.require_agent(metadata.agent_name)
|
manifest.require_agent(metadata.agent_name)
|
||||||
|
|
||||||
spec = BottleSpec(
|
spec = BottleSpec(
|
||||||
@@ -55,5 +56,6 @@ def cmd_resume(argv: list[str]) -> int:
|
|||||||
return _launch_bottle(
|
return _launch_bottle(
|
||||||
spec,
|
spec,
|
||||||
dry_run=args.dry_run,
|
dry_run=args.dry_run,
|
||||||
|
remote_control=args.remote_control,
|
||||||
backend_name=backend_name,
|
backend_name=backend_name,
|
||||||
)
|
)
|
||||||
|
|||||||
+16
-28
@@ -20,11 +20,9 @@ from ..agent_provider import runtime_for
|
|||||||
from ..backend import (
|
from ..backend import (
|
||||||
Bottle,
|
Bottle,
|
||||||
BottleSpec,
|
BottleSpec,
|
||||||
enumerate_active_agents,
|
|
||||||
get_bottle_backend,
|
get_bottle_backend,
|
||||||
known_backend_names,
|
known_backend_names,
|
||||||
)
|
)
|
||||||
from ..backend.docker import util as docker_mod
|
|
||||||
from ..backend.docker.bottle_plan import DockerBottlePlan
|
from ..backend.docker.bottle_plan import DockerBottlePlan
|
||||||
from ..bottle_state import (
|
from ..bottle_state import (
|
||||||
cleanup_state,
|
cleanup_state,
|
||||||
@@ -33,7 +31,7 @@ from ..bottle_state import (
|
|||||||
)
|
)
|
||||||
# from ..backend.docker.capability_apply import snapshot_transcript
|
# from ..backend.docker.capability_apply import snapshot_transcript
|
||||||
from ..log import info
|
from ..log import info
|
||||||
from ..manifest import ManifestIndex
|
from ..manifest import Manifest
|
||||||
from ._common import PROG, USER_CWD, read_tty_line
|
from ._common import PROG, USER_CWD, read_tty_line
|
||||||
from . import tui
|
from . import tui
|
||||||
|
|
||||||
@@ -42,13 +40,14 @@ def cmd_start(argv: list[str]) -> int:
|
|||||||
parser = argparse.ArgumentParser(prog=f"{PROG} start", add_help=True)
|
parser = argparse.ArgumentParser(prog=f"{PROG} start", add_help=True)
|
||||||
parser.add_argument("--dry-run", action="store_true")
|
parser.add_argument("--dry-run", action="store_true")
|
||||||
parser.add_argument("--cwd", action="store_true", help="copy host cwd into the running bottle")
|
parser.add_argument("--cwd", action="store_true", help="copy host cwd into the running bottle")
|
||||||
|
parser.add_argument("--remote-control", action="store_true")
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--backend",
|
"--backend",
|
||||||
choices=known_backend_names(),
|
choices=known_backend_names(),
|
||||||
default=None,
|
default=None,
|
||||||
help=(
|
help=(
|
||||||
"backend to launch the bottle on (default: $BOT_BOTTLE_BACKEND "
|
"backend to launch the bottle on (default: $BOT_BOTTLE_BACKEND "
|
||||||
"or host auto-selection). Overrides the env var when set."
|
"or 'smolmachines'). Overrides the env var when set."
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
@@ -61,12 +60,12 @@ def cmd_start(argv: list[str]) -> int:
|
|||||||
|
|
||||||
dry_run = args.dry_run or os.environ.get("BOT_BOTTLE_DRY_RUN") == "1"
|
dry_run = args.dry_run or os.environ.get("BOT_BOTTLE_DRY_RUN") == "1"
|
||||||
|
|
||||||
manifest = ManifestIndex.resolve(USER_CWD)
|
manifest = Manifest.resolve(USER_CWD)
|
||||||
|
|
||||||
agent_name: str | None = args.name
|
agent_name: str | None = args.name
|
||||||
if agent_name is None:
|
if agent_name is None:
|
||||||
agent_name = tui.filter_select(
|
agent_name = tui.filter_select(
|
||||||
manifest.all_agent_names,
|
sorted(manifest.agents.keys()),
|
||||||
title="Select agent",
|
title="Select agent",
|
||||||
)
|
)
|
||||||
if agent_name is None:
|
if agent_name is None:
|
||||||
@@ -75,7 +74,6 @@ def cmd_start(argv: list[str]) -> int:
|
|||||||
backend_name: str | None = args.backend
|
backend_name: str | None = args.backend
|
||||||
|
|
||||||
label, color = tui.name_color_modal(default_label=agent_name)
|
label, color = tui.name_color_modal(default_label=agent_name)
|
||||||
label, color = _resolve_unique_label(label, color)
|
|
||||||
|
|
||||||
spec = BottleSpec(
|
spec = BottleSpec(
|
||||||
manifest=manifest,
|
manifest=manifest,
|
||||||
@@ -88,6 +86,7 @@ def cmd_start(argv: list[str]) -> int:
|
|||||||
return _launch_bottle(
|
return _launch_bottle(
|
||||||
spec,
|
spec,
|
||||||
dry_run=dry_run,
|
dry_run=dry_run,
|
||||||
|
remote_control=args.remote_control,
|
||||||
backend_name=backend_name,
|
backend_name=backend_name,
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -108,8 +107,8 @@ def prepare_with_preflight(
|
|||||||
injected callable, prompt y/N via the injected callable.
|
injected callable, prompt y/N via the injected callable.
|
||||||
|
|
||||||
`backend_name` selects which backend prepares the plan
|
`backend_name` selects which backend prepares the plan
|
||||||
(`None` → `$BOT_BOTTLE_BACKEND` → host auto-selection). The CLI
|
(`None` → `$BOT_BOTTLE_BACKEND` → `smolmachines`). The CLI passes
|
||||||
passes whatever `--backend` resolved to.
|
whatever `--backend` resolved to.
|
||||||
|
|
||||||
Returns `(plan, identity)`. `plan` is None on dry-run or
|
Returns `(plan, identity)`. `plan` is None on dry-run or
|
||||||
operator-N, but `identity` is set as soon as `backend.prepare`
|
operator-N, but `identity` is set as soon as `backend.prepare`
|
||||||
@@ -132,7 +131,7 @@ def prepare_with_preflight(
|
|||||||
|
|
||||||
|
|
||||||
def attach_agent(
|
def attach_agent(
|
||||||
bottle: Bottle, *, resume: bool = False,
|
bottle: Bottle, *, remote_control: bool = False, resume: bool = False,
|
||||||
agent_provider_template: str = "claude",
|
agent_provider_template: str = "claude",
|
||||||
startup_args: tuple[str, ...] = (),
|
startup_args: tuple[str, ...] = (),
|
||||||
) -> int:
|
) -> int:
|
||||||
@@ -151,6 +150,8 @@ def attach_agent(
|
|||||||
"(Ctrl-D or 'exit' to leave; container will be removed)"
|
"(Ctrl-D or 'exit' to leave; container will be removed)"
|
||||||
)
|
)
|
||||||
agent_args = list(runtime.bypass_args)
|
agent_args = list(runtime.bypass_args)
|
||||||
|
if remote_control:
|
||||||
|
agent_args.extend(runtime.remote_control_args)
|
||||||
agent_args.extend(startup_args)
|
agent_args.extend(startup_args)
|
||||||
if resume:
|
if resume:
|
||||||
agent_args.extend(runtime.resume_args)
|
agent_args.extend(runtime.resume_args)
|
||||||
@@ -190,21 +191,6 @@ def _identity_from_plan(plan: object) -> str:
|
|||||||
return getattr(plan, "slug", "")
|
return getattr(plan, "slug", "")
|
||||||
|
|
||||||
|
|
||||||
def _resolve_unique_label(label: str, color: str) -> tuple[str, str]:
|
|
||||||
"""Re-prompt with a disclaimer until the label's slug is not already
|
|
||||||
in use among running bottles. Passes through unchanged when no
|
|
||||||
collision is found on the first check."""
|
|
||||||
while True:
|
|
||||||
slug_candidate = docker_mod.slugify(label)
|
|
||||||
active_slugs = {a.slug for a in enumerate_active_agents()}
|
|
||||||
if slug_candidate not in active_slugs:
|
|
||||||
return label, color
|
|
||||||
label, color = tui.name_color_modal(
|
|
||||||
default_label=label,
|
|
||||||
disclaimer=f'"{label}" is already in use',
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _text_prompt_yes() -> bool:
|
def _text_prompt_yes() -> bool:
|
||||||
"""Default `prompt_yes` for CLI use: reads y/N from the
|
"""Default `prompt_yes` for CLI use: reads y/N from the
|
||||||
controlling tty via stderr prompt + tty-line read."""
|
controlling tty via stderr prompt + tty-line read."""
|
||||||
@@ -214,9 +200,9 @@ def _text_prompt_yes() -> bool:
|
|||||||
return reply in ("y", "Y", "yes", "YES")
|
return reply in ("y", "Y", "yes", "YES")
|
||||||
|
|
||||||
|
|
||||||
def _text_render_preflight():
|
def _text_render_preflight(*, remote_control: bool):
|
||||||
def _render(plan: DockerBottlePlan) -> None:
|
def _render(plan: DockerBottlePlan) -> None:
|
||||||
plan.print()
|
plan.print(remote_control=remote_control)
|
||||||
return _render
|
return _render
|
||||||
|
|
||||||
|
|
||||||
@@ -224,6 +210,7 @@ def _launch_bottle(
|
|||||||
spec: BottleSpec,
|
spec: BottleSpec,
|
||||||
*,
|
*,
|
||||||
dry_run: bool,
|
dry_run: bool,
|
||||||
|
remote_control: bool,
|
||||||
backend_name: str | None = None,
|
backend_name: str | None = None,
|
||||||
) -> int:
|
) -> int:
|
||||||
"""Shared launch core for `start` and `resume`. Builds the plan,
|
"""Shared launch core for `start` and `resume`. Builds the plan,
|
||||||
@@ -235,7 +222,7 @@ def _launch_bottle(
|
|||||||
plan, identity = prepare_with_preflight(
|
plan, identity = prepare_with_preflight(
|
||||||
spec,
|
spec,
|
||||||
stage_dir=stage_dir,
|
stage_dir=stage_dir,
|
||||||
render_preflight=_text_render_preflight(),
|
render_preflight=_text_render_preflight(remote_control=remote_control),
|
||||||
prompt_yes=_text_prompt_yes,
|
prompt_yes=_text_prompt_yes,
|
||||||
dry_run=dry_run,
|
dry_run=dry_run,
|
||||||
backend_name=backend_name,
|
backend_name=backend_name,
|
||||||
@@ -248,6 +235,7 @@ def _launch_bottle(
|
|||||||
agent_provider_template = getattr(plan, "agent_provider_template", "claude")
|
agent_provider_template = getattr(plan, "agent_provider_template", "claude")
|
||||||
exit_code = attach_agent(
|
exit_code = attach_agent(
|
||||||
bottle,
|
bottle,
|
||||||
|
remote_control=remote_control,
|
||||||
agent_provider_template=agent_provider_template,
|
agent_provider_template=agent_provider_template,
|
||||||
startup_args=plan.agent_provision.startup_args,
|
startup_args=plan.agent_provision.startup_args,
|
||||||
)
|
)
|
||||||
|
|||||||
+43
-56
@@ -2,8 +2,8 @@
|
|||||||
act on them (approve / modify / reject).
|
act on them (approve / modify / reject).
|
||||||
|
|
||||||
Curses-based TUI; modify-then-approve shells out to $EDITOR. The
|
Curses-based TUI; modify-then-approve shells out to $EDITOR. The
|
||||||
Egress proposals are queued for operator review as full routes.yaml
|
approval handler wires to PRD 0016 (capability-block), which rebuilds
|
||||||
updates.
|
the bottle Dockerfile. The egress-block tool was removed in issue #198.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
@@ -20,19 +20,17 @@ from datetime import datetime, timezone
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from .. import supervise as _supervise
|
from .. import supervise as _supervise
|
||||||
from ..bottle_state import read_metadata
|
# from ..bottle_state import read_metadata
|
||||||
from ..backend.docker.egress_apply import (
|
# from ..backend.docker.capability_apply import (
|
||||||
EgressApplyError,
|
# CapabilityApplyError,
|
||||||
applicator as _docker_applicator,
|
# apply_capability_change,
|
||||||
)
|
# )
|
||||||
from ..backend.macos_container.egress_apply import (
|
|
||||||
applicator as _macos_applicator,
|
|
||||||
)
|
|
||||||
from ..backend.smolmachines.egress_apply import (
|
|
||||||
applicator as _smolmachines_applicator,
|
|
||||||
)
|
|
||||||
from ..log import Die, error, info
|
from ..log import Die, error, info
|
||||||
|
|
||||||
|
|
||||||
|
class CapabilityApplyError(RuntimeError):
|
||||||
|
"""Placeholder while capability_apply is disabled."""
|
||||||
|
|
||||||
from ..supervise import (
|
from ..supervise import (
|
||||||
COMPONENT_FOR_TOOL,
|
COMPONENT_FOR_TOOL,
|
||||||
AuditEntry,
|
AuditEntry,
|
||||||
@@ -41,10 +39,9 @@ from ..supervise import (
|
|||||||
STATUS_APPROVED,
|
STATUS_APPROVED,
|
||||||
STATUS_MODIFIED,
|
STATUS_MODIFIED,
|
||||||
STATUS_REJECTED,
|
STATUS_REJECTED,
|
||||||
TOOL_EGRESS_ALLOW,
|
TOOL_CAPABILITY_BLOCK,
|
||||||
TOOL_EGRESS_BLOCK,
|
|
||||||
TOOL_GITLEAKS_ALLOW,
|
TOOL_GITLEAKS_ALLOW,
|
||||||
TOOL_EGRESS_TOKEN_ALLOW,
|
archive_proposal,
|
||||||
list_pending_proposals,
|
list_pending_proposals,
|
||||||
render_diff,
|
render_diff,
|
||||||
write_audit_entry,
|
write_audit_entry,
|
||||||
@@ -55,11 +52,6 @@ from ._common import PROG
|
|||||||
|
|
||||||
_REFRESH_INTERVAL_MS = 1000
|
_REFRESH_INTERVAL_MS = 1000
|
||||||
|
|
||||||
# Proposal tools whose payload is a read-only report, not a file the operator
|
|
||||||
# edits: modify is unavailable and approval requires a recorded reason for the
|
|
||||||
# audit trail.
|
|
||||||
_REPORT_ONLY_TOOLS: tuple[str, ...] = (TOOL_GITLEAKS_ALLOW, TOOL_EGRESS_TOKEN_ALLOW)
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class QueuedProposal:
|
class QueuedProposal:
|
||||||
@@ -72,17 +64,7 @@ class QueuedProposal:
|
|||||||
# Errors any remediation engine may raise. Caught by the TUI key
|
# Errors any remediation engine may raise. Caught by the TUI key
|
||||||
# handlers and surfaced in the status line so a failed apply keeps
|
# handlers and surfaced in the status line so a failed apply keeps
|
||||||
# the proposal pending rather than crashing curses.
|
# the proposal pending rather than crashing curses.
|
||||||
ApplyError = (EgressApplyError,)
|
ApplyError = (CapabilityApplyError,)
|
||||||
|
|
||||||
|
|
||||||
def apply_routes_change(slug: str, content: str) -> tuple[str, str]:
|
|
||||||
meta = read_metadata(slug)
|
|
||||||
backend = meta.backend if meta is not None else ""
|
|
||||||
if backend == "macos-container":
|
|
||||||
return _macos_applicator.apply_routes_change(slug, content)
|
|
||||||
if backend == "smolmachines":
|
|
||||||
return _smolmachines_applicator.apply_routes_change(slug, content)
|
|
||||||
return _docker_applicator.apply_routes_change(slug, content)
|
|
||||||
|
|
||||||
|
|
||||||
def discover_pending() -> list[QueuedProposal]:
|
def discover_pending() -> list[QueuedProposal]:
|
||||||
@@ -132,9 +114,9 @@ def _detail_lines(
|
|||||||
|
|
||||||
|
|
||||||
def _suffix_for_tool(tool: str) -> str:
|
def _suffix_for_tool(tool: str) -> str:
|
||||||
if tool in (TOOL_EGRESS_ALLOW, TOOL_EGRESS_BLOCK):
|
if tool == TOOL_CAPABILITY_BLOCK:
|
||||||
return ".yaml"
|
return ".dockerfile"
|
||||||
if tool in (TOOL_GITLEAKS_ALLOW, TOOL_EGRESS_TOKEN_ALLOW):
|
if tool == TOOL_GITLEAKS_ALLOW:
|
||||||
return ".txt"
|
return ".txt"
|
||||||
return ".txt"
|
return ".txt"
|
||||||
|
|
||||||
@@ -150,14 +132,19 @@ def approve(
|
|||||||
) -> None:
|
) -> None:
|
||||||
"""Apply the proposal, write the waiting response, and audit it."""
|
"""Apply the proposal, write the waiting response, and audit it."""
|
||||||
status = STATUS_MODIFIED if final_file is not None else STATUS_APPROVED
|
status = STATUS_MODIFIED if final_file is not None else STATUS_APPROVED
|
||||||
file_to_apply = final_file if final_file is not None else qp.proposal.proposed_file
|
|
||||||
|
|
||||||
diff_before, diff_after = "", ""
|
diff_before, diff_after = "", ""
|
||||||
if qp.proposal.tool in (TOOL_EGRESS_ALLOW, TOOL_EGRESS_BLOCK):
|
# if qp.proposal.tool == TOOL_CAPABILITY_BLOCK:
|
||||||
diff_before, diff_after = apply_routes_change(
|
# _meta = read_metadata(qp.proposal.bottle_slug)
|
||||||
qp.proposal.bottle_slug,
|
# if _meta is not None and not _meta.compose_project:
|
||||||
file_to_apply,
|
# raise CapabilityApplyError(
|
||||||
)
|
# "capability-block remediation is not supported for smolmachines "
|
||||||
|
# "bottles. Reject this proposal or handle the capability change "
|
||||||
|
# "manually, then restart the bottle."
|
||||||
|
# )
|
||||||
|
# diff_before, diff_after = apply_capability_change(
|
||||||
|
# qp.proposal.bottle_slug, file_to_apply,
|
||||||
|
# )
|
||||||
|
|
||||||
response = Response(
|
response = Response(
|
||||||
proposal_id=qp.proposal.id,
|
proposal_id=qp.proposal.id,
|
||||||
@@ -170,6 +157,9 @@ def approve(
|
|||||||
qp, action=status, notes=notes,
|
qp, action=status, notes=notes,
|
||||||
diff_before=diff_before, diff_after=diff_after,
|
diff_before=diff_before, diff_after=diff_after,
|
||||||
)
|
)
|
||||||
|
if qp.proposal.tool in (TOOL_CAPABILITY_BLOCK, TOOL_GITLEAKS_ALLOW):
|
||||||
|
archive_proposal(qp.queue_dir, qp.proposal.id)
|
||||||
|
|
||||||
|
|
||||||
def reject(qp: QueuedProposal, *, reason: str) -> None:
|
def reject(qp: QueuedProposal, *, reason: str) -> None:
|
||||||
"""Write a rejection response and an audit entry."""
|
"""Write a rejection response and an audit entry."""
|
||||||
@@ -191,8 +181,8 @@ def _approve_from_tui(
|
|||||||
notes: str = "",
|
notes: str = "",
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Approve from curses, prompting for any tool-specific audit note."""
|
"""Approve from curses, prompting for any tool-specific audit note."""
|
||||||
if qp.proposal.tool in _REPORT_ONLY_TOOLS and final_file is None:
|
if qp.proposal.tool == TOOL_GITLEAKS_ALLOW and final_file is None:
|
||||||
notes = _prompt(stdscr, "allow reason (false positive / legitimately needed): ")
|
notes = _prompt(stdscr, "allow reason (test fixture/false positive): ")
|
||||||
if not notes:
|
if not notes:
|
||||||
return "approve aborted (empty reason)"
|
return "approve aborted (empty reason)"
|
||||||
approve(qp, final_file=final_file, notes=notes)
|
approve(qp, final_file=final_file, notes=notes)
|
||||||
@@ -271,10 +261,7 @@ def cmd_supervise(argv: list[str]) -> int:
|
|||||||
return e.code if isinstance(e.code, int) else 1
|
return e.code if isinstance(e.code, int) else 1
|
||||||
except Exception as e: # noqa: W0718 — catch supervise crash for logging
|
except Exception as e: # noqa: W0718 — catch supervise crash for logging
|
||||||
log_path = _write_crash_log(e)
|
log_path = _write_crash_log(e)
|
||||||
error(
|
error(f"supervise crashed: {type(e).__name__}: {e}")
|
||||||
f"supervise crashed: {type(e).__name__}: {e}",
|
|
||||||
context={"error_type": type(e).__name__, "crash_log": str(log_path)},
|
|
||||||
)
|
|
||||||
error(f"full traceback written to {log_path}")
|
error(f"full traceback written to {log_path}")
|
||||||
return 1
|
return 1
|
||||||
return 0
|
return 0
|
||||||
@@ -319,7 +306,7 @@ def _list_once() -> int:
|
|||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
def _try_init_green() -> int: # pragma: no cover
|
def _try_init_green() -> int:
|
||||||
"""Initialise a green color pair and return its attr, or 0."""
|
"""Initialise a green color pair and return its attr, or 0."""
|
||||||
try:
|
try:
|
||||||
curses.start_color()
|
curses.start_color()
|
||||||
@@ -330,7 +317,7 @@ def _try_init_green() -> int: # pragma: no cover
|
|||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
def _main_loop(stdscr: "curses._CursesWindow") -> None: # type: ignore # pragma: no cover
|
def _main_loop(stdscr: "curses._CursesWindow") -> None: # type: ignore
|
||||||
curses.curs_set(0)
|
curses.curs_set(0)
|
||||||
stdscr.timeout(_REFRESH_INTERVAL_MS)
|
stdscr.timeout(_REFRESH_INTERVAL_MS)
|
||||||
green_attr = _try_init_green()
|
green_attr = _try_init_green()
|
||||||
@@ -390,8 +377,8 @@ def _main_loop(stdscr: "curses._CursesWindow") -> None: # type: ignore # pragm
|
|||||||
except ApplyError as e:
|
except ApplyError as e:
|
||||||
status_line = f"apply failed: {e}"
|
status_line = f"apply failed: {e}"
|
||||||
elif key == ord("m"):
|
elif key == ord("m"):
|
||||||
if qp.proposal.tool in _REPORT_ONLY_TOOLS:
|
if qp.proposal.tool == TOOL_GITLEAKS_ALLOW:
|
||||||
status_line = f"modify unavailable for {qp.proposal.tool}"
|
status_line = "modify unavailable for gitleaks-allow"
|
||||||
continue
|
continue
|
||||||
edited = _modify(stdscr, qp)
|
edited = _modify(stdscr, qp)
|
||||||
if edited is None:
|
if edited is None:
|
||||||
@@ -420,7 +407,7 @@ def _render(
|
|||||||
status_line: str,
|
status_line: str,
|
||||||
*,
|
*,
|
||||||
green_attr: int = 0, # noqa: F841 — unused, but required by interface
|
green_attr: int = 0, # noqa: F841 — unused, but required by interface
|
||||||
) -> None: # pragma: no cover
|
) -> None:
|
||||||
stdscr.erase()
|
stdscr.erase()
|
||||||
h, w = stdscr.getmaxyx()
|
h, w = stdscr.getmaxyx()
|
||||||
header = f"bot-bottle supervise ({len(pending)} pending)"
|
header = f"bot-bottle supervise ({len(pending)} pending)"
|
||||||
@@ -471,7 +458,7 @@ def _detail_view(
|
|||||||
qp: QueuedProposal,
|
qp: QueuedProposal,
|
||||||
*,
|
*,
|
||||||
green_attr: int = 0,
|
green_attr: int = 0,
|
||||||
) -> None: # pragma: no cover
|
) -> None:
|
||||||
"""Render the full proposal. Scrollable. Press q to return."""
|
"""Render the full proposal. Scrollable. Press q to return."""
|
||||||
lines = _detail_lines(qp, green_attr=green_attr)
|
lines = _detail_lines(qp, green_attr=green_attr)
|
||||||
offset = 0
|
offset = 0
|
||||||
@@ -504,7 +491,7 @@ def _detail_view(
|
|||||||
pass
|
pass
|
||||||
return
|
return
|
||||||
elif key == ord("m"):
|
elif key == ord("m"):
|
||||||
if qp.proposal.tool in _REPORT_ONLY_TOOLS:
|
if qp.proposal.tool == TOOL_GITLEAKS_ALLOW:
|
||||||
return
|
return
|
||||||
edited = _modify(stdscr, qp)
|
edited = _modify(stdscr, qp)
|
||||||
if edited is not None:
|
if edited is not None:
|
||||||
@@ -523,7 +510,7 @@ def _detail_view(
|
|||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def _modify(stdscr: "curses._CursesWindow", qp: QueuedProposal) -> str | None: # type: ignore # pragma: no cover
|
def _modify(stdscr: "curses._CursesWindow", qp: QueuedProposal) -> str | None: # type: ignore
|
||||||
"""Suspend curses, open $EDITOR on the proposed file, return edited content."""
|
"""Suspend curses, open $EDITOR on the proposed file, return edited content."""
|
||||||
suffix = _suffix_for_tool(qp.proposal.tool)
|
suffix = _suffix_for_tool(qp.proposal.tool)
|
||||||
curses.endwin()
|
curses.endwin()
|
||||||
@@ -534,7 +521,7 @@ def _modify(stdscr: "curses._CursesWindow", qp: QueuedProposal) -> str | None:
|
|||||||
return edited
|
return edited
|
||||||
|
|
||||||
|
|
||||||
def _prompt(stdscr: "curses._CursesWindow", label: str) -> str: # type: ignore # pragma: no cover
|
def _prompt(stdscr: "curses._CursesWindow", label: str) -> str: # type: ignore
|
||||||
"""One-line input at the bottom of the screen."""
|
"""One-line input at the bottom of the screen."""
|
||||||
curses.curs_set(1)
|
curses.curs_set(1)
|
||||||
h, _ = stdscr.getmaxyx()
|
h, _ = stdscr.getmaxyx()
|
||||||
|
|||||||
+19
-19
@@ -226,15 +226,20 @@ def _addstr_safe(screen: Any, row: int, col: int, text: str, attr: int = curses.
|
|||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
_ANSI_COLORS = [
|
_ANSI_COLORS = [
|
||||||
"red", "green", "yellow", "blue", "magenta",
|
"red", "green", "blue", "yellow", "magenta", "cyan", "white", "black",
|
||||||
|
"bright-red", "bright-green", "bright-blue", "bright-yellow",
|
||||||
|
"bright-magenta", "bright-cyan", "bright-white", "bright-black",
|
||||||
]
|
]
|
||||||
|
|
||||||
_CURSES_COLOR_MAP: dict[str, int] = {
|
_CURSES_COLOR_MAP: dict[str, int] = {
|
||||||
|
"black": curses.COLOR_BLACK,
|
||||||
"red": curses.COLOR_RED,
|
"red": curses.COLOR_RED,
|
||||||
"green": curses.COLOR_GREEN,
|
"green": curses.COLOR_GREEN,
|
||||||
"yellow": curses.COLOR_YELLOW,
|
"yellow": curses.COLOR_YELLOW,
|
||||||
"blue": curses.COLOR_BLUE,
|
"blue": curses.COLOR_BLUE,
|
||||||
"magenta": curses.COLOR_MAGENTA,
|
"magenta": curses.COLOR_MAGENTA,
|
||||||
|
"cyan": curses.COLOR_CYAN,
|
||||||
|
"white": curses.COLOR_WHITE,
|
||||||
}
|
}
|
||||||
|
|
||||||
_COLOR_NONE = "(none)"
|
_COLOR_NONE = "(none)"
|
||||||
@@ -243,15 +248,11 @@ _COLOR_NONE = "(none)"
|
|||||||
def name_color_modal(
|
def name_color_modal(
|
||||||
default_label: str,
|
default_label: str,
|
||||||
*,
|
*,
|
||||||
disclaimer: str = "",
|
|
||||||
tty_path: str = "/dev/tty",
|
tty_path: str = "/dev/tty",
|
||||||
) -> tuple[str, str]:
|
) -> tuple[str, str]:
|
||||||
"""Present a two-step curses modal: first edit the agent label,
|
"""Present a two-step curses modal: first edit the agent label,
|
||||||
then optionally pick a color.
|
then optionally pick a color.
|
||||||
|
|
||||||
``disclaimer`` is shown below the input field — use it to surface
|
|
||||||
an error from a previous attempt (e.g. name already in use).
|
|
||||||
|
|
||||||
Returns ``(label, color)`` where ``color`` is one of the 16 ANSI
|
Returns ``(label, color)`` where ``color`` is one of the 16 ANSI
|
||||||
color name strings or ``""`` for no color. Falls back to
|
color name strings or ``""`` for no color. Falls back to
|
||||||
``(default_label, "")`` on any error (terminal too small, not a tty).
|
``(default_label, "")`` on any error (terminal too small, not a tty).
|
||||||
@@ -263,14 +264,14 @@ def name_color_modal(
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
fd_dup = os.dup(tty_fd.fileno())
|
fd_dup = os.dup(tty_fd.fileno())
|
||||||
return _run_name_color(default_label, tty_fd=fd_dup, disclaimer=disclaimer)
|
return _run_name_color(default_label, tty_fd=fd_dup)
|
||||||
except Exception: # noqa: BLE001 # pylint: disable=broad-exception-caught
|
except Exception: # noqa: BLE001 # pylint: disable=broad-exception-caught
|
||||||
return default_label, ""
|
return default_label, ""
|
||||||
finally:
|
finally:
|
||||||
tty_fd.close()
|
tty_fd.close()
|
||||||
|
|
||||||
|
|
||||||
def _run_name_color(default_label: str, *, tty_fd: int, disclaimer: str = "") -> tuple[str, str]:
|
def _run_name_color(default_label: str, *, tty_fd: int) -> tuple[str, str]:
|
||||||
import io
|
import io
|
||||||
orig_stdin = sys.__stdin__
|
orig_stdin = sys.__stdin__
|
||||||
orig_stdout = sys.__stdout__
|
orig_stdout = sys.__stdout__
|
||||||
@@ -285,7 +286,7 @@ def _run_name_color(default_label: str, *, tty_fd: int, disclaimer: str = "") ->
|
|||||||
curses.cbreak()
|
curses.cbreak()
|
||||||
screen.keypad(True)
|
screen.keypad(True)
|
||||||
try:
|
try:
|
||||||
label = _label_step(screen, default_label, disclaimer=disclaimer)
|
label = _label_step(screen, default_label)
|
||||||
color = _color_step(screen, label)
|
color = _color_step(screen, label)
|
||||||
finally:
|
finally:
|
||||||
screen.keypad(False)
|
screen.keypad(False)
|
||||||
@@ -298,14 +299,14 @@ def _run_name_color(default_label: str, *, tty_fd: int, disclaimer: str = "") ->
|
|||||||
return label, color
|
return label, color
|
||||||
|
|
||||||
|
|
||||||
def _label_step(screen: Any, default_label: str, *, disclaimer: str = "") -> str:
|
def _label_step(screen: Any, default_label: str) -> str:
|
||||||
"""Step 1: edit the label. First printable key replaces the
|
"""Step 1: edit the label. First printable key replaces the
|
||||||
pre-fill; subsequent keys append. Enter confirms."""
|
pre-fill; subsequent keys append. Enter confirms."""
|
||||||
text = default_label
|
text = default_label
|
||||||
replaced = False # True once the user has typed their first char
|
replaced = False # True once the user has typed their first char
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
_render_label(screen, text, disclaimer=disclaimer)
|
_render_label(screen, text)
|
||||||
try:
|
try:
|
||||||
key = screen.getch()
|
key = screen.getch()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
@@ -329,7 +330,7 @@ def _label_step(screen: Any, default_label: str, *, disclaimer: str = "") -> str
|
|||||||
text += chr(key)
|
text += chr(key)
|
||||||
|
|
||||||
|
|
||||||
def _render_label(screen: Any, text: str, *, disclaimer: str = "") -> None:
|
def _render_label(screen: Any, text: str) -> None:
|
||||||
screen.erase()
|
screen.erase()
|
||||||
rows, cols = screen.getmaxyx()
|
rows, cols = screen.getmaxyx()
|
||||||
sep = "─" * min(cols - 1, 40)
|
sep = "─" * min(cols - 1, 40)
|
||||||
@@ -337,12 +338,8 @@ def _render_label(screen: Any, text: str, *, disclaimer: str = "") -> None:
|
|||||||
_addstr_safe(screen, 1, 0, sep)
|
_addstr_safe(screen, 1, 0, sep)
|
||||||
_addstr_safe(screen, 2, 0, text[:cols - 1], curses.A_REVERSE)
|
_addstr_safe(screen, 2, 0, text[:cols - 1], curses.A_REVERSE)
|
||||||
_addstr_safe(screen, 3, 0, sep)
|
_addstr_safe(screen, 3, 0, sep)
|
||||||
row = 4
|
if rows > 5:
|
||||||
if disclaimer and rows > row + 1:
|
_addstr_safe(screen, 5, 0, "[any key] edit [Enter] confirm", curses.A_DIM)
|
||||||
_addstr_safe(screen, row, 0, disclaimer[:cols - 1], curses.A_BOLD)
|
|
||||||
row += 1
|
|
||||||
if rows > row + 1:
|
|
||||||
_addstr_safe(screen, row, 0, "[any key] edit [Enter] confirm", curses.A_DIM)
|
|
||||||
screen.refresh()
|
screen.refresh()
|
||||||
|
|
||||||
|
|
||||||
@@ -382,10 +379,13 @@ def _init_color_pairs() -> dict[str, int]:
|
|||||||
curses.use_default_colors()
|
curses.use_default_colors()
|
||||||
pair_idx = 2 # pair 1 reserved for other uses
|
pair_idx = 2 # pair 1 reserved for other uses
|
||||||
for name in _ANSI_COLORS:
|
for name in _ANSI_COLORS:
|
||||||
fg = _CURSES_COLOR_MAP.get(name, curses.COLOR_WHITE)
|
base = name.replace("bright-", "")
|
||||||
|
fg = _CURSES_COLOR_MAP.get(base, curses.COLOR_WHITE)
|
||||||
try:
|
try:
|
||||||
curses.init_pair(pair_idx, fg, -1)
|
curses.init_pair(pair_idx, fg, -1)
|
||||||
attr = curses.color_pair(pair_idx) | curses.A_BOLD
|
attr = curses.color_pair(pair_idx)
|
||||||
|
if name.startswith("bright-"):
|
||||||
|
attr |= curses.A_BOLD
|
||||||
attrs[name] = attr
|
attrs[name] = attr
|
||||||
pair_idx += 1
|
pair_idx += 1
|
||||||
except curses.error:
|
except curses.error:
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ RUN apt-get update \
|
|||||||
# build (`claude --version` returns 2.1.126). Bump deliberately when
|
# build (`claude --version` returns 2.1.126). Bump deliberately when
|
||||||
# rolling forward; an unpinned install would mean rebuilds silently pick
|
# rolling forward; an unpinned install would mean rebuilds silently pick
|
||||||
# up new behavior.
|
# up new behavior.
|
||||||
RUN npm install -g --no-fund --no-audit @anthropic-ai/claude-code@2.1.172 \
|
RUN npm install -g --no-fund --no-audit @anthropic-ai/claude-code@2.1.126 \
|
||||||
&& npm cache clean --force
|
&& npm cache clean --force
|
||||||
|
|
||||||
# Run as a non-root user. The node image already provides a `node` user
|
# Run as a non-root user. The node image already provides a `node` user
|
||||||
|
|||||||
@@ -20,7 +20,6 @@ from ...agent_provider import (
|
|||||||
AgentProvisionDir,
|
AgentProvisionDir,
|
||||||
AgentProvisionFile,
|
AgentProvisionFile,
|
||||||
AgentProvisionPlan,
|
AgentProvisionPlan,
|
||||||
provider_startup_args,
|
|
||||||
)
|
)
|
||||||
from ...backend.docker import util as docker_mod
|
from ...backend.docker import util as docker_mod
|
||||||
from ...egress import EgressRoute
|
from ...egress import EgressRoute
|
||||||
@@ -43,19 +42,41 @@ def _prompt_path(guest_home: str) -> str:
|
|||||||
|
|
||||||
|
|
||||||
_STATUS_LINE_COLORS = {
|
_STATUS_LINE_COLORS = {
|
||||||
"red": "\033[91m",
|
"black": "\033[30m",
|
||||||
"green": "\033[92m",
|
"red": "\033[31m",
|
||||||
"yellow": "\033[93m",
|
"green": "\033[32m",
|
||||||
"blue": "\033[94m",
|
"yellow": "\033[33m",
|
||||||
"magenta": "\033[95m",
|
"blue": "\033[34m",
|
||||||
|
"magenta": "\033[35m",
|
||||||
|
"cyan": "\033[36m",
|
||||||
|
"white": "\033[37m",
|
||||||
|
"bright-black": "\033[90m",
|
||||||
|
"bright-red": "\033[91m",
|
||||||
|
"bright-green": "\033[92m",
|
||||||
|
"bright-yellow": "\033[93m",
|
||||||
|
"bright-blue": "\033[94m",
|
||||||
|
"bright-magenta": "\033[95m",
|
||||||
|
"bright-cyan": "\033[96m",
|
||||||
|
"bright-white": "\033[97m",
|
||||||
}
|
}
|
||||||
|
|
||||||
_CLAUDE_THEME_COLORS = {
|
_CLAUDE_THEME_COLORS = {
|
||||||
"red": "redBright",
|
"black": "black",
|
||||||
"green": "greenBright",
|
"red": "red",
|
||||||
"yellow": "yellowBright",
|
"green": "green",
|
||||||
"blue": "blueBright",
|
"yellow": "yellow",
|
||||||
"magenta": "magentaBright",
|
"blue": "blue",
|
||||||
|
"magenta": "magenta",
|
||||||
|
"cyan": "cyan",
|
||||||
|
"white": "white",
|
||||||
|
"bright-black": "blackBright",
|
||||||
|
"bright-red": "redBright",
|
||||||
|
"bright-green": "greenBright",
|
||||||
|
"bright-yellow": "yellowBright",
|
||||||
|
"bright-blue": "blueBright",
|
||||||
|
"bright-magenta": "magentaBright",
|
||||||
|
"bright-cyan": "cyanBright",
|
||||||
|
"bright-white": "whiteBright",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -91,6 +112,7 @@ _RUNTIME = AgentProviderRuntime(
|
|||||||
prompt_mode="append_file",
|
prompt_mode="append_file",
|
||||||
bypass_args=("--dangerously-skip-permissions",),
|
bypass_args=("--dangerously-skip-permissions",),
|
||||||
resume_args=("--continue",),
|
resume_args=("--continue",),
|
||||||
|
remote_control_args=("--remote-control",),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -115,9 +137,8 @@ class ClaudeAgentProvider(AgentProvider):
|
|||||||
color: str = "",
|
color: str = "",
|
||||||
provider_settings: dict[str, object] | None = None,
|
provider_settings: dict[str, object] | None = None,
|
||||||
) -> AgentProvisionPlan:
|
) -> AgentProvisionPlan:
|
||||||
del forward_host_credentials, host_env
|
del forward_host_credentials, host_env, provider_settings
|
||||||
resolved_guest_env = dict(guest_env or {})
|
resolved_guest_env = dict(guest_env or {})
|
||||||
startup_args = provider_startup_args(provider_settings)
|
|
||||||
guest_home = self.guest_home
|
guest_home = self.guest_home
|
||||||
trusted_path = trusted_project_path or guest_home
|
trusted_path = trusted_project_path or guest_home
|
||||||
|
|
||||||
@@ -200,7 +221,6 @@ class ClaudeAgentProvider(AgentProvider):
|
|||||||
env_vars=env_vars,
|
env_vars=env_vars,
|
||||||
guest_env=resolved_guest_env,
|
guest_env=resolved_guest_env,
|
||||||
has_prompt=has_prompt,
|
has_prompt=has_prompt,
|
||||||
startup_args=startup_args,
|
|
||||||
dirs=dirs,
|
dirs=dirs,
|
||||||
files=tuple(files),
|
files=tuple(files),
|
||||||
egress_routes=egress_routes,
|
egress_routes=egress_routes,
|
||||||
@@ -213,7 +233,7 @@ class ClaudeAgentProvider(AgentProvider):
|
|||||||
when the agent has no skills."""
|
when the agent has no skills."""
|
||||||
from ...backend.util import host_skill_dir
|
from ...backend.util import host_skill_dir
|
||||||
|
|
||||||
agent = plan.manifest.agent
|
agent = plan.spec.manifest.agents[plan.spec.agent_name]
|
||||||
if not agent.skills:
|
if not agent.skills:
|
||||||
return
|
return
|
||||||
skills_dir = _skills_dir(plan.guest_home)
|
skills_dir = _skills_dir(plan.guest_home)
|
||||||
@@ -242,7 +262,7 @@ class ClaudeAgentProvider(AgentProvider):
|
|||||||
f"chown node:node {prompt_path} && chmod 600 {prompt_path}",
|
f"chown node:node {prompt_path} && chmod 600 {prompt_path}",
|
||||||
user="root",
|
user="root",
|
||||||
)
|
)
|
||||||
agent = plan.manifest.agent
|
agent = plan.spec.manifest.agents[plan.spec.agent_name]
|
||||||
return prompt_path if plan.agent_provision.has_prompt or agent.prompt else None
|
return prompt_path if plan.agent_provision.has_prompt or agent.prompt else None
|
||||||
|
|
||||||
def provision(self, plan: "BottlePlan", bottle: "Bottle") -> None:
|
def provision(self, plan: "BottlePlan", bottle: "Bottle") -> None:
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
# bot-bottle Codex provider image.
|
# bot-bottle Codex provider image.
|
||||||
#
|
#
|
||||||
# Mirrors the default Claude image shape: Node LTS, git/network tooling,
|
# Mirrors the default Claude image shape: Node LTS, git/network tooling,
|
||||||
# non-root node user, and the provider CLI installed for that user.
|
# non-root node user, and the provider CLI installed globally.
|
||||||
|
|
||||||
FROM node:22-slim
|
FROM node:22-slim
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends git ca-certificates curl procps \
|
&& apt-get install -y --no-install-recommends git ca-certificates curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# App-specific deps. Python isn't required by codex itself
|
# App-specific deps. Python isn't required by codex itself
|
||||||
@@ -17,15 +17,12 @@ RUN apt-get update \
|
|||||||
&& apt-get install -y --no-install-recommends python3 python3-pip python3-venv \
|
&& apt-get install -y --no-install-recommends python3 python3-pip python3-venv \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
RUN npm install -g --no-fund --no-audit @openai/codex@0.136.0 \
|
||||||
|
&& npm cache clean --force
|
||||||
|
|
||||||
USER node
|
USER node
|
||||||
WORKDIR /home/node
|
WORKDIR /home/node
|
||||||
|
|
||||||
ENV PATH="/home/node/.local/bin:${PATH}"
|
RUN mkdir -p /home/node/.codex
|
||||||
|
|
||||||
# Remote-control support requires the standalone Codex install layout
|
|
||||||
# under ~/.codex/packages/standalone/current. The npm package can run
|
|
||||||
# the TUI, but remote-control commands expect this installer-owned path.
|
|
||||||
RUN mkdir -p /home/node/.codex \
|
|
||||||
&& curl -fsSL https://chatgpt.com/codex/install.sh | sh
|
|
||||||
|
|
||||||
CMD ["codex"]
|
CMD ["codex"]
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ from ...agent_provider import (
|
|||||||
AgentProvisionCommand,
|
AgentProvisionCommand,
|
||||||
AgentProvisionFile,
|
AgentProvisionFile,
|
||||||
AgentProvisionPlan,
|
AgentProvisionPlan,
|
||||||
provider_startup_args,
|
|
||||||
)
|
)
|
||||||
from .codex_auth import codex_host_access_token, write_codex_dummy_auth_file
|
from .codex_auth import codex_host_access_token, write_codex_dummy_auth_file
|
||||||
from ...egress import CODEX_HOST_CREDENTIAL_TOKEN_REF, EgressRoute
|
from ...egress import CODEX_HOST_CREDENTIAL_TOKEN_REF, EgressRoute
|
||||||
@@ -55,6 +54,7 @@ _RUNTIME = AgentProviderRuntime(
|
|||||||
prompt_mode="read_prompt_file",
|
prompt_mode="read_prompt_file",
|
||||||
bypass_args=("--dangerously-bypass-approvals-and-sandbox",),
|
bypass_args=("--dangerously-bypass-approvals-and-sandbox",),
|
||||||
resume_args=("resume", "--last"),
|
resume_args=("resume", "--last"),
|
||||||
|
remote_control_args=(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -79,9 +79,8 @@ class CodexAgentProvider(AgentProvider):
|
|||||||
color: str = "",
|
color: str = "",
|
||||||
provider_settings: dict[str, object] | None = None,
|
provider_settings: dict[str, object] | None = None,
|
||||||
) -> AgentProvisionPlan:
|
) -> AgentProvisionPlan:
|
||||||
del auth_token, label, color
|
del auth_token, label, color, provider_settings
|
||||||
resolved_guest_env = dict(guest_env or {})
|
resolved_guest_env = dict(guest_env or {})
|
||||||
startup_args = provider_startup_args(provider_settings)
|
|
||||||
guest_home = self.guest_home
|
guest_home = self.guest_home
|
||||||
trusted_path = trusted_project_path or guest_home
|
trusted_path = trusted_project_path or guest_home
|
||||||
|
|
||||||
@@ -164,7 +163,6 @@ class CodexAgentProvider(AgentProvider):
|
|||||||
env_vars=env_vars,
|
env_vars=env_vars,
|
||||||
guest_env=resolved_guest_env,
|
guest_env=resolved_guest_env,
|
||||||
has_prompt=has_prompt,
|
has_prompt=has_prompt,
|
||||||
startup_args=startup_args,
|
|
||||||
dirs=tuple(dirs),
|
dirs=tuple(dirs),
|
||||||
files=tuple(files),
|
files=tuple(files),
|
||||||
pre_copy=tuple(pre_copy),
|
pre_copy=tuple(pre_copy),
|
||||||
@@ -179,7 +177,7 @@ class CodexAgentProvider(AgentProvider):
|
|||||||
skills."""
|
skills."""
|
||||||
from ...backend.util import host_skill_dir
|
from ...backend.util import host_skill_dir
|
||||||
|
|
||||||
agent = plan.manifest.agent
|
agent = plan.spec.manifest.agents[plan.spec.agent_name]
|
||||||
if not agent.skills:
|
if not agent.skills:
|
||||||
return
|
return
|
||||||
skills_dir = _skills_dir(plan.guest_home)
|
skills_dir = _skills_dir(plan.guest_home)
|
||||||
@@ -208,7 +206,7 @@ class CodexAgentProvider(AgentProvider):
|
|||||||
f"chown node:node {prompt_path} && chmod 600 {prompt_path}",
|
f"chown node:node {prompt_path} && chmod 600 {prompt_path}",
|
||||||
user="root",
|
user="root",
|
||||||
)
|
)
|
||||||
agent = plan.manifest.agent
|
agent = plan.spec.manifest.agents[plan.spec.agent_name]
|
||||||
return prompt_path if plan.agent_provision.has_prompt or agent.prompt else None
|
return prompt_path if plan.agent_provision.has_prompt or agent.prompt else None
|
||||||
|
|
||||||
def provision(self, plan: "BottlePlan", bottle: "Bottle") -> None:
|
def provision(self, plan: "BottlePlan", bottle: "Bottle") -> None:
|
||||||
@@ -263,8 +261,8 @@ class CodexAgentProvider(AgentProvider):
|
|||||||
return
|
return
|
||||||
info(f"registering supervise MCP server in agent codex config → {supervise_url}")
|
info(f"registering supervise MCP server in agent codex config → {supervise_url}")
|
||||||
r = bottle.exec(
|
r = bottle.exec(
|
||||||
f"codex mcp add {_SUPERVISE_MCP_NAME} --url "
|
f"codex mcp add --transport http "
|
||||||
f"{shlex.quote(supervise_url)}",
|
f"{_SUPERVISE_MCP_NAME} {supervise_url}",
|
||||||
user="node",
|
user="node",
|
||||||
)
|
)
|
||||||
if r.returncode != 0:
|
if r.returncode != 0:
|
||||||
@@ -272,7 +270,7 @@ class CodexAgentProvider(AgentProvider):
|
|||||||
f"`codex mcp add supervise` failed (exit {r.returncode}): "
|
f"`codex mcp add supervise` failed (exit {r.returncode}): "
|
||||||
f"{(r.stderr or r.stdout or '').strip()}. Inside the bottle, "
|
f"{(r.stderr or r.stdout or '').strip()}. Inside the bottle, "
|
||||||
f"register manually with: "
|
f"register manually with: "
|
||||||
f"codex mcp add supervise --url {shlex.quote(supervise_url)}"
|
f"codex mcp add --transport http supervise {supervise_url}"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@
|
|||||||
|
|
||||||
Generates ed25519 keypairs via `ssh-keygen` and registers / deletes
|
Generates ed25519 keypairs via `ssh-keygen` and registers / deletes
|
||||||
them using the Gitea deploy-key HTTP API. No new Python dependencies —
|
them using the Gitea deploy-key HTTP API. No new Python dependencies —
|
||||||
only stdlib `urllib.request` and `subprocess`.
|
only stdlib `urllib.request` and `subprocess`."""
|
||||||
|
|
||||||
Required token permissions (Gitea "Applications" → "Generate Token"):
|
|
||||||
- Repository: Read & Write
|
|
||||||
Grants POST /api/v1/repos/{owner}/{repo}/keys (create deploy key)
|
|
||||||
and DELETE /api/v1/repos/{owner}/{repo}/keys/{id} (revoke deploy key).
|
|
||||||
No other scopes are needed."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
@@ -19,7 +13,7 @@ import urllib.error
|
|||||||
import urllib.request
|
import urllib.request
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from ...deploy_key_provisioner import DeployKeyCollisionError, DeployKeyProvisioner
|
from ...deploy_key_provisioner import DeployKeyProvisioner
|
||||||
|
|
||||||
|
|
||||||
class GiteaDeployKeyProvisioner(DeployKeyProvisioner):
|
class GiteaDeployKeyProvisioner(DeployKeyProvisioner):
|
||||||
@@ -71,11 +65,6 @@ class GiteaDeployKeyProvisioner(DeployKeyProvisioner):
|
|||||||
body = json.loads(resp.read())
|
body = json.loads(resp.read())
|
||||||
except urllib.error.HTTPError as exc:
|
except urllib.error.HTTPError as exc:
|
||||||
_body = _read_error_body(exc)
|
_body = _read_error_body(exc)
|
||||||
if exc.code == 422:
|
|
||||||
raise DeployKeyCollisionError(
|
|
||||||
f"deploy key collision for {owner_repo!r} "
|
|
||||||
f"(title={title!r}): key title or content already registered — {_body}"
|
|
||||||
) from exc
|
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
f"failed to create deploy key for {owner_repo}: "
|
f"failed to create deploy key for {owner_repo}: "
|
||||||
f"HTTP {exc.code} — {_body}"
|
f"HTTP {exc.code} — {_body}"
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ from ...agent_provider import (
|
|||||||
AgentProvisionDir,
|
AgentProvisionDir,
|
||||||
AgentProvisionFile,
|
AgentProvisionFile,
|
||||||
AgentProvisionPlan,
|
AgentProvisionPlan,
|
||||||
provider_startup_args,
|
|
||||||
)
|
)
|
||||||
from ...egress import EgressRoute
|
from ...egress import EgressRoute
|
||||||
from ...log import die, info
|
from ...log import die, info
|
||||||
@@ -166,6 +165,7 @@ _RUNTIME = AgentProviderRuntime(
|
|||||||
prompt_mode="append_system_prompt",
|
prompt_mode="append_system_prompt",
|
||||||
bypass_args=(),
|
bypass_args=(),
|
||||||
resume_args=(),
|
resume_args=(),
|
||||||
|
remote_control_args=(),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -199,7 +199,6 @@ class PiAgentProvider(AgentProvider):
|
|||||||
models_payload, base_url, api_key_env, models, provider_name = (
|
models_payload, base_url, api_key_env, models, provider_name = (
|
||||||
_pi_models_json(settings)
|
_pi_models_json(settings)
|
||||||
)
|
)
|
||||||
extra_startup_args = provider_startup_args(provider_settings)
|
|
||||||
models_file = state_dir / "pi-models.json"
|
models_file = state_dir / "pi-models.json"
|
||||||
models_file.write_text(json.dumps(models_payload, indent=2) + "\n")
|
models_file.write_text(json.dumps(models_payload, indent=2) + "\n")
|
||||||
models_file.chmod(0o600)
|
models_file.chmod(0o600)
|
||||||
@@ -220,7 +219,6 @@ class PiAgentProvider(AgentProvider):
|
|||||||
startup_args=(
|
startup_args=(
|
||||||
"--models",
|
"--models",
|
||||||
",".join(f"{provider_name}/{model}" for model in models),
|
",".join(f"{provider_name}/{model}" for model in models),
|
||||||
*extra_startup_args,
|
|
||||||
),
|
),
|
||||||
dirs=(AgentProvisionDir(f"{guest_home}/.pi/agent"),),
|
dirs=(AgentProvisionDir(f"{guest_home}/.pi/agent"),),
|
||||||
files=(AgentProvisionFile(models_file, _models_path(guest_home)),),
|
files=(AgentProvisionFile(models_file, _models_path(guest_home)),),
|
||||||
@@ -234,7 +232,7 @@ class PiAgentProvider(AgentProvider):
|
|||||||
def provision_skills(self, plan: "BottlePlan", bottle: "Bottle") -> None:
|
def provision_skills(self, plan: "BottlePlan", bottle: "Bottle") -> None:
|
||||||
from ...backend.util import host_skill_dir
|
from ...backend.util import host_skill_dir
|
||||||
|
|
||||||
agent = plan.manifest.agent
|
agent = plan.spec.manifest.agents[plan.spec.agent_name]
|
||||||
if not agent.skills:
|
if not agent.skills:
|
||||||
return
|
return
|
||||||
skills_dir = _skills_dir(plan.guest_home)
|
skills_dir = _skills_dir(plan.guest_home)
|
||||||
|
|||||||
@@ -11,10 +11,6 @@ from __future__ import annotations
|
|||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
|
||||||
|
|
||||||
class DeployKeyCollisionError(RuntimeError):
|
|
||||||
"""Raised when a deploy key title or public key already exists on the repo."""
|
|
||||||
|
|
||||||
|
|
||||||
class DeployKeyProvisioner(ABC):
|
class DeployKeyProvisioner(ABC):
|
||||||
"""Manages a single deploy-key lifecycle on a remote forge."""
|
"""Manages a single deploy-key lifecycle on a remote forge."""
|
||||||
|
|
||||||
|
|||||||
+7
-190
@@ -15,8 +15,6 @@ import gzip
|
|||||||
import re
|
import re
|
||||||
import typing
|
import typing
|
||||||
import unicodedata
|
import unicodedata
|
||||||
from math import log2
|
|
||||||
from collections import Counter
|
|
||||||
from urllib.parse import quote as url_quote
|
from urllib.parse import quote as url_quote
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -80,27 +78,16 @@ TOKEN_PATTERNS: tuple[tuple[str, re.Pattern[str]], ...] = (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def scan_token_patterns(
|
def scan_token_patterns(text: str, *, location: str = "body") -> ScanResult | None:
|
||||||
text: str,
|
|
||||||
*,
|
|
||||||
location: str = "body",
|
|
||||||
safe_tokens: typing.AbstractSet[str] | None = None,
|
|
||||||
) -> ScanResult | None:
|
|
||||||
normalized = _normalize_text(text)
|
normalized = _normalize_text(text)
|
||||||
for name, pattern in TOKEN_PATTERNS:
|
for name, pattern in TOKEN_PATTERNS:
|
||||||
for m in pattern.finditer(normalized):
|
m = pattern.search(normalized)
|
||||||
value = m.group(0)
|
if m is not None:
|
||||||
# A value the supervisor has approved (PRD 0062) is no longer a
|
|
||||||
# block — keep scanning so a second, un-approved token in the
|
|
||||||
# same request is still caught.
|
|
||||||
if safe_tokens is not None and value in safe_tokens:
|
|
||||||
continue
|
|
||||||
return ScanResult(
|
return ScanResult(
|
||||||
severity="block",
|
severity="block",
|
||||||
reason=f"{name} found in {location}",
|
reason=f"{name} found in {location}",
|
||||||
location=location,
|
location=location,
|
||||||
context=_snippet(normalized, m.start(), m.end()),
|
context=_snippet(text, m.start(), m.end()),
|
||||||
matched=value,
|
|
||||||
)
|
)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -109,21 +96,20 @@ def redact_tokens(
|
|||||||
text: str,
|
text: str,
|
||||||
*,
|
*,
|
||||||
env: typing.Mapping[str, str] | None = None,
|
env: typing.Mapping[str, str] | None = None,
|
||||||
sensitive_prefixes: tuple[str, ...] = ("EGRESS_TOKEN_",),
|
|
||||||
) -> str:
|
) -> str:
|
||||||
"""Replace token pattern matches and (if env given) provisioned secrets with REDACT."""
|
"""Replace token pattern matches and (if env given) provisioned secrets with REDACT."""
|
||||||
for _, pattern in TOKEN_PATTERNS:
|
for _, pattern in TOKEN_PATTERNS:
|
||||||
text = pattern.sub(REDACT, text)
|
text = pattern.sub(REDACT, text)
|
||||||
if env is not None:
|
if env is not None:
|
||||||
for key, value in env.items():
|
for key, value in env.items():
|
||||||
if any(key.startswith(p) for p in sensitive_prefixes) and value:
|
if key.startswith("EGRESS_TOKEN_") and value:
|
||||||
for variant in _encoded_variants(value):
|
for variant in _encoded_variants(value):
|
||||||
text = text.replace(variant, REDACT)
|
text = text.replace(variant, REDACT)
|
||||||
return text
|
return text
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Known secrets detector
|
# Known secrets detector (Phase 1b)
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
def _encoded_variants(secret: str) -> list[str]:
|
def _encoded_variants(secret: str) -> list[str]:
|
||||||
@@ -164,179 +150,26 @@ def _encoded_variants(secret: str) -> list[str]:
|
|||||||
return variants
|
return variants
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Fragmentation-resistant helpers
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# Minimum length of alnum projection for projection-based checks to run.
|
|
||||||
# Short secrets produce too many false positives in projection space.
|
|
||||||
_ALNUM_MIN_LEN = 8
|
|
||||||
|
|
||||||
# Minimum window length for the partial-substring sliding scan.
|
|
||||||
PARTIAL_MATCH_MIN_LEN = 12
|
|
||||||
|
|
||||||
|
|
||||||
def _alnum_projection(text: str) -> str:
|
|
||||||
"""Return text with every non-alphanumeric character stripped.
|
|
||||||
|
|
||||||
Used for fragmentation-resistant matching: separator-injected secrets
|
|
||||||
(spaces, hyphens, dots inserted between characters) are identical to
|
|
||||||
their originals in alnum projection space.
|
|
||||||
"""
|
|
||||||
return "".join(c for c in text if c.isalnum())
|
|
||||||
|
|
||||||
|
|
||||||
def _find_partial_window(secret_alnum: str, text_alnum: str, min_len: int) -> int | None:
|
|
||||||
"""Return the position in text_alnum where any min_len-char window of
|
|
||||||
secret_alnum first appears, or None.
|
|
||||||
|
|
||||||
Slides a window of width min_len across secret_alnum and searches for
|
|
||||||
each window in text_alnum. The first hit position is returned.
|
|
||||||
"""
|
|
||||||
if len(secret_alnum) < min_len or len(text_alnum) < min_len:
|
|
||||||
return None
|
|
||||||
for i in range(len(secret_alnum) - min_len + 1):
|
|
||||||
window = secret_alnum[i:i + min_len]
|
|
||||||
pos = text_alnum.find(window)
|
|
||||||
if pos >= 0:
|
|
||||||
return pos
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def scan_known_secrets(
|
def scan_known_secrets(
|
||||||
text: str,
|
text: str,
|
||||||
*,
|
*,
|
||||||
location: str = "body",
|
location: str = "body",
|
||||||
env: typing.Mapping[str, str] | None = None,
|
env: typing.Mapping[str, str] | None = None,
|
||||||
sensitive_prefixes: tuple[str, ...] = ("EGRESS_TOKEN_",),
|
|
||||||
safe_tokens: typing.AbstractSet[str] | None = None,
|
|
||||||
) -> ScanResult | None:
|
) -> ScanResult | None:
|
||||||
if env is None:
|
if env is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# Pre-compute alnum projection of the scan text once; reused per secret.
|
|
||||||
text_alnum: str | None = None
|
|
||||||
|
|
||||||
for key, value in env.items():
|
for key, value in env.items():
|
||||||
if not any(key.startswith(p) for p in sensitive_prefixes) or not value:
|
if not key.startswith("EGRESS_TOKEN_") or not value:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Pass 1: exact match across encoded variants (original behaviour).
|
|
||||||
approved_exact = False
|
|
||||||
for variant in _encoded_variants(value):
|
for variant in _encoded_variants(value):
|
||||||
pos = text.find(variant)
|
pos = text.find(variant)
|
||||||
if pos >= 0:
|
if pos >= 0:
|
||||||
# The supervisor approves the exact encoded variant found
|
|
||||||
# (PRD 0062); a different encoding of the same secret is a
|
|
||||||
# fresh block.
|
|
||||||
if safe_tokens is not None and variant in safe_tokens:
|
|
||||||
approved_exact = True
|
|
||||||
continue
|
|
||||||
return ScanResult(
|
return ScanResult(
|
||||||
severity="block",
|
severity="block",
|
||||||
reason=f"provisioned secret from {key} found in {location}",
|
reason=f"provisioned secret from {key} found in {location}",
|
||||||
location=location,
|
location=location,
|
||||||
context=_snippet(text, pos, pos + len(variant)),
|
context=_snippet(text, pos, pos + len(variant)),
|
||||||
matched=variant,
|
|
||||||
)
|
)
|
||||||
if approved_exact:
|
|
||||||
# Exact match was found and approved; projection passes would
|
|
||||||
# fire on the same value, so skip them for this secret.
|
|
||||||
continue
|
|
||||||
|
|
||||||
# Pass 2 & 3: fragmentation-resistant projection checks.
|
|
||||||
secret_alnum = _alnum_projection(value)
|
|
||||||
if len(secret_alnum) < _ALNUM_MIN_LEN:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if text_alnum is None:
|
|
||||||
text_alnum = _alnum_projection(text)
|
|
||||||
|
|
||||||
# Pass 2: full alnum-projection exact match (catches separator injection).
|
|
||||||
pos2 = text_alnum.find(secret_alnum)
|
|
||||||
if pos2 >= 0:
|
|
||||||
return ScanResult(
|
|
||||||
severity="block",
|
|
||||||
reason=(
|
|
||||||
f"provisioned secret from {key} found in {location} "
|
|
||||||
f"(fragmented match — separator injection)"
|
|
||||||
),
|
|
||||||
location=location,
|
|
||||||
context=_snippet(text_alnum, pos2, pos2 + len(secret_alnum)),
|
|
||||||
)
|
|
||||||
|
|
||||||
# Pass 3: sliding-window partial match (catches chunked-substring leaks).
|
|
||||||
pos3 = _find_partial_window(secret_alnum, text_alnum, PARTIAL_MATCH_MIN_LEN)
|
|
||||||
if pos3 is not None:
|
|
||||||
return ScanResult(
|
|
||||||
severity="block",
|
|
||||||
reason=(
|
|
||||||
f"provisioned secret from {key} found in {location} "
|
|
||||||
f"(partial match — at least {PARTIAL_MATCH_MIN_LEN} consecutive "
|
|
||||||
f"alphanumeric chars)"
|
|
||||||
),
|
|
||||||
location=location,
|
|
||||||
context=_snippet(text_alnum, pos3, pos3 + PARTIAL_MATCH_MIN_LEN),
|
|
||||||
)
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Entropy detector (warn-only)
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# Sliding window size and step for the entropy scan.
|
|
||||||
ENTROPY_WINDOW = 64
|
|
||||||
ENTROPY_STEP = 32
|
|
||||||
|
|
||||||
# Bits-per-character threshold. Random ASCII printable ≈ 6.6 bits; random
|
|
||||||
# lowercase hex ≈ 4 bits; random base64url ≈ 6 bits. 5.5 sits above
|
|
||||||
# typical structured data (JSON, URLs) while staying below truly random
|
|
||||||
# content.
|
|
||||||
ENTROPY_BLOCK_THRESHOLD = 5.5
|
|
||||||
|
|
||||||
|
|
||||||
def _shannon_entropy(text: str) -> float:
|
|
||||||
if not text:
|
|
||||||
return 0.0
|
|
||||||
counts = Counter(text)
|
|
||||||
n = len(text)
|
|
||||||
return -sum((c / n) * log2(c / n) for c in counts.values())
|
|
||||||
|
|
||||||
|
|
||||||
def scan_entropy(
|
|
||||||
text: str,
|
|
||||||
*,
|
|
||||||
location: str = "body",
|
|
||||||
window: int = ENTROPY_WINDOW,
|
|
||||||
threshold: float = ENTROPY_BLOCK_THRESHOLD,
|
|
||||||
) -> ScanResult | None:
|
|
||||||
"""Warn-only detector: flag windows of `window` chars with Shannon entropy
|
|
||||||
above `threshold` bits per character.
|
|
||||||
|
|
||||||
Never blocks; always returns severity='warn'. Disabled by default —
|
|
||||||
routes must opt in via dlp.outbound_detectors=['entropy'].
|
|
||||||
"""
|
|
||||||
if not text:
|
|
||||||
return None
|
|
||||||
step = max(1, window // 2)
|
|
||||||
end = len(text)
|
|
||||||
# Scan overlapping windows; also check the final tail if shorter than window.
|
|
||||||
positions = list(range(0, end - window + 1, step))
|
|
||||||
if end < window:
|
|
||||||
positions = [0]
|
|
||||||
elif (end - window) % step != 0:
|
|
||||||
positions.append(end - window)
|
|
||||||
for i in positions:
|
|
||||||
chunk = text[i:i + window]
|
|
||||||
if _shannon_entropy(chunk) >= threshold:
|
|
||||||
return ScanResult(
|
|
||||||
severity="warn",
|
|
||||||
reason=f"high-entropy content in {location} (possible encrypted exfil)",
|
|
||||||
location=location,
|
|
||||||
context=_snippet(text, i, i + len(chunk)),
|
|
||||||
)
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
@@ -432,14 +265,6 @@ _CRLF_ENCODED_RE = re.compile(r"%0[dD]%0[aA]", re.ASCII)
|
|||||||
_CRLF_HEADER_INJECT_RE = re.compile(r"\r\n[A-Za-z][A-Za-z0-9\-]+\s*:", re.ASCII)
|
_CRLF_HEADER_INJECT_RE = re.compile(r"\r\n[A-Za-z][A-Za-z0-9\-]+\s*:", re.ASCII)
|
||||||
|
|
||||||
|
|
||||||
def strip_crlf(text: str) -> str:
|
|
||||||
"""Remove URL-encoded and literal CRLF injection sequences from a request
|
|
||||||
surface (PRD 0062 redact policy). Used to scrub the request line / headers
|
|
||||||
so the request can be forwarded instead of hard-blocked."""
|
|
||||||
text = _CRLF_ENCODED_RE.sub("", text)
|
|
||||||
return _CRLF_HEADER_INJECT_RE.sub(lambda m: m.group(0)[2:], text)
|
|
||||||
|
|
||||||
|
|
||||||
def scan_crlf_injection(text: str) -> ScanResult | None:
|
def scan_crlf_injection(text: str) -> ScanResult | None:
|
||||||
if _CRLF_ENCODED_RE.search(text):
|
if _CRLF_ENCODED_RE.search(text):
|
||||||
return ScanResult(
|
return ScanResult(
|
||||||
@@ -455,20 +280,12 @@ def scan_crlf_injection(text: str) -> ScanResult | None:
|
|||||||
|
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"ENTROPY_BLOCK_THRESHOLD",
|
|
||||||
"ENTROPY_WINDOW",
|
|
||||||
"ENTROPY_STEP",
|
|
||||||
"PARTIAL_MATCH_MIN_LEN",
|
|
||||||
"REDACT",
|
"REDACT",
|
||||||
"SNIPPET_CONTEXT",
|
"SNIPPET_CONTEXT",
|
||||||
"TOKEN_PATTERNS",
|
"TOKEN_PATTERNS",
|
||||||
"_alnum_projection",
|
|
||||||
"_shannon_entropy",
|
|
||||||
"redact_tokens",
|
"redact_tokens",
|
||||||
"scan_crlf_injection",
|
"scan_crlf_injection",
|
||||||
"scan_entropy",
|
|
||||||
"scan_known_secrets",
|
"scan_known_secrets",
|
||||||
"scan_naive_injection",
|
"scan_naive_injection",
|
||||||
"scan_token_patterns",
|
"scan_token_patterns",
|
||||||
"strip_crlf",
|
|
||||||
]
|
]
|
||||||
|
|||||||
+3
-85
@@ -10,14 +10,12 @@ specific and lives on concrete subclasses (see
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import dataclasses
|
import dataclasses
|
||||||
import secrets
|
|
||||||
from abc import ABC
|
from abc import ABC
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
from .egress_addon_core import (
|
from .egress_addon_core import (
|
||||||
ON_MATCH_REDACT,
|
|
||||||
HeaderMatch as CoreHeaderMatch,
|
HeaderMatch as CoreHeaderMatch,
|
||||||
MatchEntry as CoreMatchEntry,
|
MatchEntry as CoreMatchEntry,
|
||||||
PathMatch as CorePathMatch,
|
PathMatch as CorePathMatch,
|
||||||
@@ -33,51 +31,6 @@ CODEX_HOST_CREDENTIAL_TOKEN_REF = "BOT_BOTTLE_CODEX_HOST_ACCESS_TOKEN"
|
|||||||
EGRESS_HOSTNAME = "egress"
|
EGRESS_HOSTNAME = "egress"
|
||||||
|
|
||||||
EGRESS_ROUTES_IN_CONTAINER = "/etc/egress/routes.yaml"
|
EGRESS_ROUTES_IN_CONTAINER = "/etc/egress/routes.yaml"
|
||||||
EGRESS_ROUTES_FILENAME = Path(EGRESS_ROUTES_IN_CONTAINER).name
|
|
||||||
|
|
||||||
_CANARY_ENV_WORDS = (
|
|
||||||
"ACCORD",
|
|
||||||
"ANCHOR",
|
|
||||||
"ATLAS",
|
|
||||||
"CANON",
|
|
||||||
"CIPHER",
|
|
||||||
"EMBER",
|
|
||||||
"FALCON",
|
|
||||||
"HARBOR",
|
|
||||||
"LANTERN",
|
|
||||||
"MARBLE",
|
|
||||||
"NOVA",
|
|
||||||
"ORBIT",
|
|
||||||
"PIVOT",
|
|
||||||
"RADIUS",
|
|
||||||
"SUMMIT",
|
|
||||||
"VECTOR",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _random_canary_env() -> str:
|
|
||||||
first = secrets.choice(_CANARY_ENV_WORDS)
|
|
||||||
remaining = tuple(word for word in _CANARY_ENV_WORDS if word != first)
|
|
||||||
second = secrets.choice(remaining)
|
|
||||||
return f"{first}_{second}_SECRET"
|
|
||||||
|
|
||||||
|
|
||||||
def egress_sidecar_env_entries(plan: "EgressPlan") -> tuple[str, ...]:
|
|
||||||
"""Return sidecar env entries needed by egress across all backends."""
|
|
||||||
env: list[str] = []
|
|
||||||
if plan.routes:
|
|
||||||
env.extend(sorted(plan.token_env_map.keys()))
|
|
||||||
if plan.canary and plan.canary_env:
|
|
||||||
env.append(f"{plan.canary_env}={plan.canary}")
|
|
||||||
env.append(f"BOT_BOTTLE_SENSITIVE_PREFIXES={plan.canary_env}")
|
|
||||||
return tuple(env)
|
|
||||||
|
|
||||||
|
|
||||||
def egress_agent_env_entries(plan: "EgressPlan") -> tuple[str, ...]:
|
|
||||||
"""Return agent-visible egress env entries shared by all backends."""
|
|
||||||
if plan.canary and plan.canary_env:
|
|
||||||
return (f"{plan.canary_env}={plan.canary}",)
|
|
||||||
return ()
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
@@ -110,8 +63,6 @@ class EgressPlan:
|
|||||||
mitmproxy_ca_host_path: Path = Path()
|
mitmproxy_ca_host_path: Path = Path()
|
||||||
mitmproxy_ca_cert_only_host_path: Path = Path()
|
mitmproxy_ca_cert_only_host_path: Path = Path()
|
||||||
log: int = 0
|
log: int = 0
|
||||||
canary: str = ""
|
|
||||||
canary_env: str = ""
|
|
||||||
|
|
||||||
|
|
||||||
def egress_manifest_routes(
|
def egress_manifest_routes(
|
||||||
@@ -143,7 +94,6 @@ def egress_manifest_routes(
|
|||||||
git_fetch=r.GitFetch,
|
git_fetch=r.GitFetch,
|
||||||
outbound_detectors=r.OutboundDetectors,
|
outbound_detectors=r.OutboundDetectors,
|
||||||
inbound_detectors=r.InboundDetectors,
|
inbound_detectors=r.InboundDetectors,
|
||||||
outbound_on_match=r.OutboundOnMatch,
|
|
||||||
))
|
))
|
||||||
return tuple(out)
|
return tuple(out)
|
||||||
|
|
||||||
@@ -154,27 +104,12 @@ def egress_routes_for_bottle(
|
|||||||
) -> tuple[EgressRoute, ...]:
|
) -> tuple[EgressRoute, ...]:
|
||||||
manifest = egress_manifest_routes(bottle)
|
manifest = egress_manifest_routes(bottle)
|
||||||
provisioned_hosts = {pr.host.lower() for pr in provider_routes}
|
provisioned_hosts = {pr.host.lower() for pr in provider_routes}
|
||||||
merged = list(_default_provider_on_match(provider_routes)) + [
|
merged = list(provider_routes) + [
|
||||||
r for r in manifest if r.host.lower() not in provisioned_hosts
|
r for r in manifest if r.host.lower() not in provisioned_hosts
|
||||||
]
|
]
|
||||||
return _assign_token_slots(merged)
|
return _assign_token_slots(merged)
|
||||||
|
|
||||||
|
|
||||||
def _default_provider_on_match(
|
|
||||||
provider_routes: tuple[EgressRoute, ...],
|
|
||||||
) -> tuple[EgressRoute, ...]:
|
|
||||||
"""Provider routes (the agent talking to its own LLM API) default to the
|
|
||||||
`redact` on-match policy (PRD 0062): high-volume conversation payloads are
|
|
||||||
the worst source of token-shaped false positives, so a match is scrubbed
|
|
||||||
and forwarded rather than hard-blocked or queued for the operator. A
|
|
||||||
provider that sets `outbound_on_match` explicitly keeps its choice."""
|
|
||||||
return tuple(
|
|
||||||
r if r.outbound_on_match
|
|
||||||
else dataclasses.replace(r, outbound_on_match=ON_MATCH_REDACT)
|
|
||||||
for r in provider_routes
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _assign_token_slots(
|
def _assign_token_slots(
|
||||||
routes: list[EgressRoute],
|
routes: list[EgressRoute],
|
||||||
) -> tuple[EgressRoute, ...]:
|
) -> tuple[EgressRoute, ...]:
|
||||||
@@ -241,11 +176,7 @@ def _route_to_yaml_fields(r: Route) -> dict[str, object]:
|
|||||||
fields["matches"] = matches_data
|
fields["matches"] = matches_data
|
||||||
if r.git_fetch:
|
if r.git_fetch:
|
||||||
fields["git"] = {"fetch": True}
|
fields["git"] = {"fetch": True}
|
||||||
if (
|
if r.outbound_detectors is not None or r.inbound_detectors is not None:
|
||||||
r.outbound_detectors is not None
|
|
||||||
or r.inbound_detectors is not None
|
|
||||||
or r.outbound_on_match
|
|
||||||
):
|
|
||||||
dlp: dict[str, object] = {}
|
dlp: dict[str, object] = {}
|
||||||
if r.outbound_detectors is not None:
|
if r.outbound_detectors is not None:
|
||||||
dlp["outbound_detectors"] = (
|
dlp["outbound_detectors"] = (
|
||||||
@@ -257,8 +188,6 @@ def _route_to_yaml_fields(r: Route) -> dict[str, object]:
|
|||||||
False if not r.inbound_detectors
|
False if not r.inbound_detectors
|
||||||
else list(r.inbound_detectors)
|
else list(r.inbound_detectors)
|
||||||
)
|
)
|
||||||
if r.outbound_on_match:
|
|
||||||
dlp["outbound_on_match"] = r.outbound_on_match
|
|
||||||
fields["dlp"] = dlp
|
fields["dlp"] = dlp
|
||||||
return fields
|
return fields
|
||||||
|
|
||||||
@@ -330,8 +259,6 @@ def egress_render_routes(
|
|||||||
elif isinstance(dv, list):
|
elif isinstance(dv, list):
|
||||||
items_str = ", ".join(f'"{x}"' for x in dv)
|
items_str = ", ".join(f'"{x}"' for x in dv)
|
||||||
lines.append(f" {dk}: [{items_str}]")
|
lines.append(f" {dk}: [{items_str}]")
|
||||||
elif isinstance(dv, str):
|
|
||||||
lines.append(f' {dk}: "{dv}"')
|
|
||||||
return "\n".join(lines) + "\n"
|
return "\n".join(lines) + "\n"
|
||||||
|
|
||||||
|
|
||||||
@@ -368,27 +295,20 @@ class Egress(ABC):
|
|||||||
) -> EgressPlan:
|
) -> EgressPlan:
|
||||||
routes = egress_routes_for_bottle(bottle, provider_routes)
|
routes = egress_routes_for_bottle(bottle, provider_routes)
|
||||||
log = bottle.egress.Log
|
log = bottle.egress.Log
|
||||||
routes_path = stage_dir / EGRESS_ROUTES_FILENAME
|
routes_path = stage_dir / "egress_routes.yaml"
|
||||||
routes_path.write_text(egress_render_routes(routes, log=log))
|
routes_path.write_text(egress_render_routes(routes, log=log))
|
||||||
routes_path.chmod(0o600)
|
routes_path.chmod(0o600)
|
||||||
# Generate a per-session fake secret under a plausible random env name.
|
|
||||||
# The sidecar marks that exact env name as sensitive for known-secret
|
|
||||||
# scanning; the agent receives the same name/value as exfil bait.
|
|
||||||
canary = secrets.token_urlsafe(32)
|
|
||||||
return EgressPlan(
|
return EgressPlan(
|
||||||
slug=slug,
|
slug=slug,
|
||||||
routes_path=routes_path,
|
routes_path=routes_path,
|
||||||
routes=routes,
|
routes=routes,
|
||||||
token_env_map=egress_token_env_map(routes),
|
token_env_map=egress_token_env_map(routes),
|
||||||
log=log,
|
log=log,
|
||||||
canary=canary,
|
|
||||||
canary_env=_random_canary_env(),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"CODEX_HOST_CREDENTIAL_TOKEN_REF",
|
"CODEX_HOST_CREDENTIAL_TOKEN_REF",
|
||||||
"EGRESS_HOSTNAME",
|
"EGRESS_HOSTNAME",
|
||||||
"EGRESS_ROUTES_FILENAME",
|
|
||||||
"EGRESS_ROUTES_IN_CONTAINER",
|
"EGRESS_ROUTES_IN_CONTAINER",
|
||||||
"Egress",
|
"Egress",
|
||||||
"EgressPlan",
|
"EgressPlan",
|
||||||
@@ -397,7 +317,5 @@ __all__ = [
|
|||||||
"egress_render_routes",
|
"egress_render_routes",
|
||||||
"egress_resolve_token_values",
|
"egress_resolve_token_values",
|
||||||
"egress_routes_for_bottle",
|
"egress_routes_for_bottle",
|
||||||
"egress_agent_env_entries",
|
|
||||||
"egress_sidecar_env_entries",
|
|
||||||
"egress_token_env_map",
|
"egress_token_env_map",
|
||||||
]
|
]
|
||||||
|
|||||||
+24
-284
@@ -5,7 +5,7 @@ egress container."""
|
|||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import asyncio
|
import dataclasses
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import signal
|
import signal
|
||||||
@@ -17,15 +17,9 @@ from mitmproxy import http # type: ignore[import-not-found] # pylint: disable=
|
|||||||
from egress_addon_core import ( # type: ignore[import-not-found] # pylint: disable=import-error
|
from egress_addon_core import ( # type: ignore[import-not-found] # pylint: disable=import-error
|
||||||
LOG_BLOCKS,
|
LOG_BLOCKS,
|
||||||
LOG_FULL,
|
LOG_FULL,
|
||||||
DEFAULT_OUTBOUND_ON_MATCH,
|
|
||||||
ON_MATCH_BLOCK,
|
|
||||||
ON_MATCH_REDACT,
|
|
||||||
Config,
|
Config,
|
||||||
Route,
|
|
||||||
ScanResult,
|
|
||||||
build_inbound_scan_text,
|
build_inbound_scan_text,
|
||||||
build_outbound_scan_text,
|
build_outbound_scan_text,
|
||||||
build_token_allow_payload,
|
|
||||||
decide,
|
decide,
|
||||||
decide_git_fetch,
|
decide_git_fetch,
|
||||||
is_git_fetch_request,
|
is_git_fetch_request,
|
||||||
@@ -33,61 +27,28 @@ from egress_addon_core import ( # type: ignore[import-not-found] # pylint: dis
|
|||||||
load_config,
|
load_config,
|
||||||
match_route,
|
match_route,
|
||||||
outbound_scan_headers,
|
outbound_scan_headers,
|
||||||
route_to_yaml_dict,
|
|
||||||
scan_inbound,
|
scan_inbound,
|
||||||
scan_outbound,
|
scan_outbound,
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from dlp_detectors import redact_tokens, strip_crlf # type: ignore[import-not-found]
|
from dlp_detectors import redact_tokens # type: ignore[import-not-found]
|
||||||
except ImportError: # pragma: no cover - host-side path
|
except ImportError: # pragma: no cover - host-side path
|
||||||
from bot_bottle.dlp_detectors import ( # type: ignore[import-not-found]
|
from bot_bottle.dlp_detectors import redact_tokens # type: ignore[import-not-found]
|
||||||
redact_tokens,
|
|
||||||
strip_crlf,
|
|
||||||
)
|
|
||||||
|
|
||||||
try:
|
|
||||||
import supervise as _sv # type: ignore[import-not-found]
|
|
||||||
except ImportError: # pragma: no cover - host-side path
|
|
||||||
from bot_bottle import supervise as _sv # type: ignore[import-not-found]
|
|
||||||
|
|
||||||
|
|
||||||
DEFAULT_ROUTES_PATH = "/etc/egress/routes.yaml"
|
DEFAULT_ROUTES_PATH = "/etc/egress/routes.yaml"
|
||||||
|
|
||||||
INTROSPECT_HOST = "_egress.local"
|
INTROSPECT_HOST = "_egress.local"
|
||||||
|
|
||||||
# Seconds the egress proxy holds a token-blocked request open waiting for the
|
|
||||||
# operator's supervisor decision (PRD 0062), overridable via env.
|
|
||||||
DEFAULT_TOKEN_ALLOW_TIMEOUT_SECONDS = 300.0
|
|
||||||
# Filesystem poll cadence while awaiting the operator's response.
|
|
||||||
TOKEN_ALLOW_POLL_INTERVAL_SECONDS = 0.5
|
|
||||||
|
|
||||||
# Fixed operator guidance attached to every token-allow proposal.
|
|
||||||
_TOKEN_ALLOW_JUSTIFICATION = (
|
|
||||||
"egress DLP blocked an outbound request carrying a detected token. "
|
|
||||||
"Approve only if this value is a false positive or a credential this "
|
|
||||||
"request legitimately needs; the value is then allowed for the life of "
|
|
||||||
"this bottle's egress proxy."
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class EgressAddon:
|
class EgressAddon:
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
self.routes_path = os.environ.get("EGRESS_ROUTES", DEFAULT_ROUTES_PATH)
|
self.routes_path = os.environ.get("EGRESS_ROUTES", DEFAULT_ROUTES_PATH)
|
||||||
self.config: Config = Config(routes=())
|
self.config: Config = Config(routes=())
|
||||||
# Tokens the operator has approved this session (PRD 0062). In-memory
|
|
||||||
# only — a restart re-prompts. Mutated only from the asyncio loop that
|
|
||||||
# runs the addon hooks, so no lock is needed.
|
|
||||||
self.safe_tokens: set[str] = set()
|
|
||||||
self._supervise_queue_dir = os.environ.get("SUPERVISE_QUEUE_DIR", "").strip()
|
|
||||||
self._supervise_slug = os.environ.get("SUPERVISE_BOTTLE_SLUG", "").strip()
|
|
||||||
self._token_allow_timeout = _token_allow_timeout_from_env(os.environ)
|
|
||||||
self._reload(initial=True)
|
self._reload(initial=True)
|
||||||
self._install_sighup()
|
self._install_sighup()
|
||||||
|
|
||||||
def _supervise_available(self) -> bool:
|
|
||||||
return bool(self._supervise_queue_dir and self._supervise_slug)
|
|
||||||
|
|
||||||
def _reload(self, *, initial: bool = False) -> None:
|
def _reload(self, *, initial: bool = False) -> None:
|
||||||
try:
|
try:
|
||||||
text = Path(self.routes_path).read_text(encoding="utf-8")
|
text = Path(self.routes_path).read_text(encoding="utf-8")
|
||||||
@@ -121,7 +82,7 @@ class EgressAddon:
|
|||||||
def _serve_introspection(self, flow: http.HTTPFlow, path: str) -> None:
|
def _serve_introspection(self, flow: http.HTTPFlow, path: str) -> None:
|
||||||
if path == "/allowlist":
|
if path == "/allowlist":
|
||||||
payload = json.dumps(
|
payload = json.dumps(
|
||||||
{"routes": [route_to_yaml_dict(r) for r in self.config.routes]},
|
{"routes": [dataclasses.asdict(r) for r in self.config.routes]},
|
||||||
indent=2,
|
indent=2,
|
||||||
).encode("utf-8")
|
).encode("utf-8")
|
||||||
flow.response = http.Response.make(
|
flow.response = http.Response.make(
|
||||||
@@ -160,42 +121,31 @@ class EgressAddon:
|
|||||||
)
|
)
|
||||||
|
|
||||||
def _log_request(self, flow: http.HTTPFlow) -> None:
|
def _log_request(self, flow: http.HTTPFlow) -> None:
|
||||||
headers = {
|
|
||||||
k: redact_tokens(v, env=os.environ)
|
|
||||||
for k, v in flow.request.headers.items()
|
|
||||||
if k.lower() != "authorization"
|
|
||||||
}
|
|
||||||
body = redact_tokens(flow.request.get_text(strict=False) or "", env=os.environ)
|
|
||||||
sys.stderr.write(
|
sys.stderr.write(
|
||||||
json.dumps({
|
json.dumps({
|
||||||
"event": "egress_request",
|
"event": "egress_request",
|
||||||
"host": redact_tokens(flow.request.pretty_host, env=os.environ),
|
"host": redact_tokens(flow.request.pretty_host, env=os.environ),
|
||||||
"method": flow.request.method,
|
"method": flow.request.method,
|
||||||
"path": redact_tokens(flow.request.path, env=os.environ),
|
"path": redact_tokens(flow.request.path, env=os.environ),
|
||||||
"headers": headers,
|
"headers": dict(flow.request.headers),
|
||||||
"body": body,
|
"body": flow.request.get_text(strict=False) or "",
|
||||||
})
|
})
|
||||||
+ "\n"
|
+ "\n"
|
||||||
)
|
)
|
||||||
|
|
||||||
def _log_response(self, flow: http.HTTPFlow) -> None:
|
def _log_response(self, flow: http.HTTPFlow) -> None:
|
||||||
headers = {
|
|
||||||
k: redact_tokens(v, env=os.environ)
|
|
||||||
for k, v in flow.response.headers.items()
|
|
||||||
}
|
|
||||||
body = redact_tokens(flow.response.get_text(strict=False) or "", env=os.environ)
|
|
||||||
sys.stderr.write(
|
sys.stderr.write(
|
||||||
json.dumps({
|
json.dumps({
|
||||||
"event": "egress_response",
|
"event": "egress_response",
|
||||||
"host": flow.request.pretty_host,
|
"host": flow.request.pretty_host,
|
||||||
"status": flow.response.status_code,
|
"status": flow.response.status_code,
|
||||||
"headers": headers,
|
"headers": dict(flow.response.headers),
|
||||||
"body": body,
|
"body": flow.response.get_text(strict=False) or "",
|
||||||
})
|
})
|
||||||
+ "\n"
|
+ "\n"
|
||||||
)
|
)
|
||||||
|
|
||||||
async def request(self, flow: http.HTTPFlow) -> None:
|
def request(self, flow: http.HTTPFlow) -> None:
|
||||||
request_path, _, query = flow.request.path.partition("?")
|
request_path, _, query = flow.request.path.partition("?")
|
||||||
|
|
||||||
if flow.request.pretty_host == INTROSPECT_HOST:
|
if flow.request.pretty_host == INTROSPECT_HOST:
|
||||||
@@ -207,11 +157,21 @@ class EgressAddon:
|
|||||||
# Hostname is included to catch DNS-tunnelling exfiltration attempts.
|
# Hostname is included to catch DNS-tunnelling exfiltration attempts.
|
||||||
route = match_route(self.config.routes, flow.request.pretty_host)
|
route = match_route(self.config.routes, flow.request.pretty_host)
|
||||||
if route is not None:
|
if route is not None:
|
||||||
if not await self._handle_outbound_dlp(flow, route):
|
body = flow.request.get_text(strict=False) or ""
|
||||||
|
scan_text = build_outbound_scan_text(
|
||||||
|
flow.request.pretty_host,
|
||||||
|
request_path,
|
||||||
|
query,
|
||||||
|
outbound_scan_headers(route, dict(flow.request.headers)),
|
||||||
|
body,
|
||||||
|
)
|
||||||
|
dlp_result = scan_outbound(route, scan_text, os.environ)
|
||||||
|
if dlp_result is not None and dlp_result.severity == "block":
|
||||||
|
ctx = self._req_ctx(flow)
|
||||||
|
if dlp_result.context:
|
||||||
|
ctx = {**ctx, "context": dlp_result.context}
|
||||||
|
self._block(flow, f"egress DLP: {dlp_result.reason}", ctx=ctx)
|
||||||
return
|
return
|
||||||
# The redact policy may have rewritten the request line; recompute
|
|
||||||
# the path/query the git checks below rely on.
|
|
||||||
request_path, _, query = flow.request.path.partition("?")
|
|
||||||
|
|
||||||
if is_git_push_request(request_path, query):
|
if is_git_push_request(request_path, query):
|
||||||
self._block(
|
self._block(
|
||||||
@@ -261,202 +221,6 @@ class EgressAddon:
|
|||||||
if self.config.log >= LOG_FULL:
|
if self.config.log >= LOG_FULL:
|
||||||
self._log_request(flow)
|
self._log_request(flow)
|
||||||
|
|
||||||
def _block_dlp(self, flow: http.HTTPFlow, result: ScanResult) -> None:
|
|
||||||
ctx = self._req_ctx(flow)
|
|
||||||
if result.context:
|
|
||||||
ctx = {**ctx, "context": result.context}
|
|
||||||
self._block(flow, f"egress DLP: {result.reason}", ctx=ctx)
|
|
||||||
|
|
||||||
async def _handle_outbound_dlp(
|
|
||||||
self,
|
|
||||||
flow: http.HTTPFlow,
|
|
||||||
route: Route,
|
|
||||||
) -> bool:
|
|
||||||
"""Scan the outbound request and apply the route's on-match policy
|
|
||||||
(PRD 0062). Returns True if the request may be forwarded, False if a
|
|
||||||
403 response has been written to `flow`.
|
|
||||||
|
|
||||||
Loops so the supervise policy can re-scan after each approval — a
|
|
||||||
second, un-approved token in the same request is still caught."""
|
|
||||||
while True:
|
|
||||||
request_path, _, query = flow.request.path.partition("?")
|
|
||||||
body = flow.request.get_text(strict=False) or ""
|
|
||||||
headers = outbound_scan_headers(route, dict(flow.request.headers))
|
|
||||||
scan_text = build_outbound_scan_text(
|
|
||||||
flow.request.pretty_host, request_path, query, headers, body,
|
|
||||||
)
|
|
||||||
# CRLF is scanned only over the request line + headers, never the
|
|
||||||
# body (see scan_outbound) — a body is not an injection vector.
|
|
||||||
crlf_text = build_outbound_scan_text(
|
|
||||||
flow.request.pretty_host, request_path, query, headers, "",
|
|
||||||
)
|
|
||||||
result = scan_outbound(
|
|
||||||
route, scan_text, os.environ,
|
|
||||||
safe_tokens=self.safe_tokens, crlf_text=crlf_text,
|
|
||||||
)
|
|
||||||
if result is None or result.severity != "block":
|
|
||||||
return True
|
|
||||||
|
|
||||||
policy = route.outbound_on_match or DEFAULT_OUTBOUND_ON_MATCH
|
|
||||||
|
|
||||||
# redact scrubs every detection (tokens and structural CRLF) and
|
|
||||||
# forwards; it fails closed only if a match survives the scrub.
|
|
||||||
if policy == ON_MATCH_REDACT:
|
|
||||||
if self._redact_outbound(flow, route):
|
|
||||||
if self.config.log >= LOG_BLOCKS:
|
|
||||||
sys.stderr.write(json.dumps({
|
|
||||||
"event": "egress_redacted",
|
|
||||||
"reason": f"egress DLP: {result.reason}",
|
|
||||||
**self._req_ctx(flow),
|
|
||||||
}) + "\n")
|
|
||||||
return True
|
|
||||||
self._block(
|
|
||||||
flow,
|
|
||||||
f"egress DLP: {result.reason}; redaction could not remove "
|
|
||||||
"all matches (e.g. a match in the hostname)",
|
|
||||||
ctx=self._req_ctx(flow),
|
|
||||||
)
|
|
||||||
return False
|
|
||||||
|
|
||||||
# Structural blocks (CRLF, no safelist-able value) cannot be
|
|
||||||
# supervised — there is nothing to approve and remember — so under
|
|
||||||
# block/supervise they are a hard 403.
|
|
||||||
if policy == ON_MATCH_BLOCK or not result.matched:
|
|
||||||
self._block_dlp(flow, result)
|
|
||||||
return False
|
|
||||||
|
|
||||||
# supervise (default): hold the request for operator approval.
|
|
||||||
# Fall back to a hard 403 when supervise isn't wired for the bottle.
|
|
||||||
if not self._supervise_available():
|
|
||||||
self._block_dlp(flow, result)
|
|
||||||
return False
|
|
||||||
approved = await self._supervise_token_block(flow, request_path, result)
|
|
||||||
if not approved:
|
|
||||||
return False # _supervise_token_block wrote the 403 response
|
|
||||||
# loop: the approved value is now in safe_tokens; re-scan.
|
|
||||||
|
|
||||||
def _redact_outbound(self, flow: http.HTTPFlow, route: Route) -> bool:
|
|
||||||
"""Scrub detected tokens (and CRLF injection sequences) from the mutable
|
|
||||||
request surfaces (body, headers, path/query) and re-scan. Returns True
|
|
||||||
if the request is now clean; False if a block-severity match remains on
|
|
||||||
a surface redaction cannot rewrite (the hostname) so the caller fails
|
|
||||||
closed."""
|
|
||||||
body = flow.request.get_text(strict=False)
|
|
||||||
if body:
|
|
||||||
redacted_body = redact_tokens(body, env=os.environ)
|
|
||||||
if redacted_body != body:
|
|
||||||
flow.request.text = redacted_body
|
|
||||||
for name, value in list(flow.request.headers.items()):
|
|
||||||
if name.lower() == "host":
|
|
||||||
continue # routing-critical; never a legitimate token
|
|
||||||
redacted = strip_crlf(redact_tokens(value, env=os.environ))
|
|
||||||
if redacted != value:
|
|
||||||
flow.request.headers[name] = redacted
|
|
||||||
redacted_path = strip_crlf(redact_tokens(flow.request.path, env=os.environ))
|
|
||||||
if redacted_path != flow.request.path:
|
|
||||||
flow.request.path = redacted_path
|
|
||||||
|
|
||||||
request_path, _, query = flow.request.path.partition("?")
|
|
||||||
new_body = flow.request.get_text(strict=False) or ""
|
|
||||||
headers = outbound_scan_headers(route, dict(flow.request.headers))
|
|
||||||
scan_text = build_outbound_scan_text(
|
|
||||||
flow.request.pretty_host, request_path, query, headers, new_body,
|
|
||||||
)
|
|
||||||
crlf_text = build_outbound_scan_text(
|
|
||||||
flow.request.pretty_host, request_path, query, headers, "",
|
|
||||||
)
|
|
||||||
result = scan_outbound(route, scan_text, os.environ, crlf_text=crlf_text)
|
|
||||||
return result is None or result.severity != "block"
|
|
||||||
|
|
||||||
async def _supervise_token_block(
|
|
||||||
self,
|
|
||||||
flow: http.HTTPFlow,
|
|
||||||
request_path: str,
|
|
||||||
result: ScanResult,
|
|
||||||
) -> bool:
|
|
||||||
"""Route a token DLP block to the operator's supervisor queue and wait.
|
|
||||||
|
|
||||||
Returns True if the operator approved (the matched value is added to
|
|
||||||
`self.safe_tokens` and the caller re-scans); False if the request must
|
|
||||||
be blocked (a 403 response has been written to `flow`)."""
|
|
||||||
host = flow.request.pretty_host
|
|
||||||
payload = build_token_allow_payload(
|
|
||||||
redact_tokens(host, env=os.environ),
|
|
||||||
flow.request.method,
|
|
||||||
redact_tokens(request_path, env=os.environ),
|
|
||||||
result,
|
|
||||||
)
|
|
||||||
proposal = _sv.Proposal.new(
|
|
||||||
bottle_slug=self._supervise_slug,
|
|
||||||
tool=_sv.TOOL_EGRESS_TOKEN_ALLOW,
|
|
||||||
proposed_file=payload,
|
|
||||||
justification=_TOKEN_ALLOW_JUSTIFICATION,
|
|
||||||
current_file_hash=_sv.sha256_hex(payload),
|
|
||||||
)
|
|
||||||
queue_dir = Path(self._supervise_queue_dir)
|
|
||||||
try:
|
|
||||||
_sv.write_proposal(queue_dir, proposal)
|
|
||||||
except OSError as e:
|
|
||||||
sys.stderr.write(
|
|
||||||
f"egress: could not queue token-allow proposal: {e}; "
|
|
||||||
"blocking request\n"
|
|
||||||
)
|
|
||||||
self._block(flow, f"egress DLP: {result.reason}", ctx=self._req_ctx(flow))
|
|
||||||
return False
|
|
||||||
|
|
||||||
sys.stderr.write(json.dumps({
|
|
||||||
"event": "egress_token_supervise",
|
|
||||||
"reason": f"egress DLP: {result.reason}",
|
|
||||||
"proposal": proposal.id,
|
|
||||||
**self._req_ctx(flow),
|
|
||||||
}) + "\n")
|
|
||||||
|
|
||||||
response = await self._await_token_response(queue_dir, proposal.id)
|
|
||||||
_sv.archive_proposal(queue_dir, proposal.id)
|
|
||||||
|
|
||||||
if response is not None and response.status in (
|
|
||||||
_sv.STATUS_APPROVED, _sv.STATUS_MODIFIED,
|
|
||||||
):
|
|
||||||
self.safe_tokens.add(result.matched)
|
|
||||||
if self.config.log >= LOG_BLOCKS:
|
|
||||||
sys.stderr.write(json.dumps({
|
|
||||||
"event": "egress_token_allowed",
|
|
||||||
"reason": f"egress DLP: {result.reason}",
|
|
||||||
"proposal": proposal.id,
|
|
||||||
**self._req_ctx(flow),
|
|
||||||
}) + "\n")
|
|
||||||
return True
|
|
||||||
|
|
||||||
if response is None:
|
|
||||||
reason = (
|
|
||||||
f"egress DLP: {result.reason}; supervisor approval timed out "
|
|
||||||
f"after {self._token_allow_timeout:g}s"
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
reason = f"egress DLP: {result.reason}; supervisor rejected the request"
|
|
||||||
self._block(flow, reason, ctx=self._req_ctx(flow))
|
|
||||||
return False
|
|
||||||
|
|
||||||
async def _await_token_response(
|
|
||||||
self,
|
|
||||||
queue_dir: Path,
|
|
||||||
proposal_id: str,
|
|
||||||
) -> "_sv.Response | None":
|
|
||||||
"""Poll the queue dir for the operator's response without blocking the
|
|
||||||
proxy event loop. Returns the Response, or None on timeout."""
|
|
||||||
loop = asyncio.get_running_loop()
|
|
||||||
deadline = loop.time() + self._token_allow_timeout
|
|
||||||
while True:
|
|
||||||
try:
|
|
||||||
return _sv.read_response(queue_dir, proposal_id)
|
|
||||||
except (OSError, ValueError, KeyError):
|
|
||||||
# Not written yet, or a partial/malformed write — retry until
|
|
||||||
# the deadline, then fail closed.
|
|
||||||
pass
|
|
||||||
if loop.time() >= deadline:
|
|
||||||
return None
|
|
||||||
await asyncio.sleep(TOKEN_ALLOW_POLL_INTERVAL_SECONDS)
|
|
||||||
|
|
||||||
def response(self, flow: http.HTTPFlow) -> None:
|
def response(self, flow: http.HTTPFlow) -> None:
|
||||||
"""DLP inbound scan on response headers and body."""
|
"""DLP inbound scan on response headers and body."""
|
||||||
route = match_route(self.config.routes, flow.request.pretty_host)
|
route = match_route(self.config.routes, flow.request.pretty_host)
|
||||||
@@ -508,12 +272,7 @@ class EgressAddon:
|
|||||||
message = flow.websocket.messages[-1] # type: ignore[union-attr]
|
message = flow.websocket.messages[-1] # type: ignore[union-attr]
|
||||||
content = message.content.decode("utf-8", errors="replace")
|
content = message.content.decode("utf-8", errors="replace")
|
||||||
if message.from_client:
|
if message.from_client:
|
||||||
# A WebSocket data frame is not an HTTP request line, so CRLF is
|
result = scan_outbound(route, content, os.environ)
|
||||||
# not an injection vector here — scan only for credential leakage.
|
|
||||||
result = scan_outbound(
|
|
||||||
route, content, os.environ,
|
|
||||||
safe_tokens=self.safe_tokens, crlf_text="",
|
|
||||||
)
|
|
||||||
if result is not None and result.severity == "block":
|
if result is not None and result.severity == "block":
|
||||||
sys.stderr.write(f"egress DLP: {result.reason}\n")
|
sys.stderr.write(f"egress DLP: {result.reason}\n")
|
||||||
flow.kill() # type: ignore[union-attr]
|
flow.kill() # type: ignore[union-attr]
|
||||||
@@ -527,23 +286,4 @@ class EgressAddon:
|
|||||||
sys.stderr.write(f"egress DLP warn: {result.reason}\n")
|
sys.stderr.write(f"egress DLP warn: {result.reason}\n")
|
||||||
|
|
||||||
|
|
||||||
def _token_allow_timeout_from_env(env: "os._Environ[str]") -> float:
|
|
||||||
"""Read EGRESS_TOKEN_ALLOW_TIMEOUT_SECONDS; fall back to the default on an
|
|
||||||
unset or invalid value (a bad value should not wedge egress at boot)."""
|
|
||||||
raw = env.get("EGRESS_TOKEN_ALLOW_TIMEOUT_SECONDS", "").strip()
|
|
||||||
if not raw:
|
|
||||||
return DEFAULT_TOKEN_ALLOW_TIMEOUT_SECONDS
|
|
||||||
try:
|
|
||||||
value = float(raw)
|
|
||||||
except ValueError:
|
|
||||||
value = 0.0
|
|
||||||
if value <= 0:
|
|
||||||
sys.stderr.write(
|
|
||||||
"egress: invalid EGRESS_TOKEN_ALLOW_TIMEOUT_SECONDS="
|
|
||||||
f"{raw!r}; using default {DEFAULT_TOKEN_ALLOW_TIMEOUT_SECONDS:g}s\n"
|
|
||||||
)
|
|
||||||
return DEFAULT_TOKEN_ALLOW_TIMEOUT_SECONDS
|
|
||||||
return value
|
|
||||||
|
|
||||||
|
|
||||||
addons = [EgressAddon()]
|
addons = [EgressAddon()]
|
||||||
|
|||||||
+22
-159
@@ -34,18 +34,9 @@ VALID_METHODS = frozenset({
|
|||||||
"CONNECT",
|
"CONNECT",
|
||||||
})
|
})
|
||||||
|
|
||||||
OUTBOUND_DETECTOR_NAMES = frozenset({"token_patterns", "known_secrets", "entropy"})
|
OUTBOUND_DETECTOR_NAMES = frozenset({"token_patterns", "known_secrets"})
|
||||||
INBOUND_DETECTOR_NAMES = frozenset({"naive_injection_detection"})
|
INBOUND_DETECTOR_NAMES = frozenset({"naive_injection_detection"})
|
||||||
|
|
||||||
# Per-route policy for what the proxy does when an outbound DLP detector
|
|
||||||
# matches a token (PRD 0062).
|
|
||||||
ON_MATCH_BLOCK = "block" # hard 403, never overridable
|
|
||||||
ON_MATCH_REDACT = "redact" # scrub the matched value, forward the request
|
|
||||||
ON_MATCH_SUPERVISE = "supervise" # queue for operator approval, hold the request
|
|
||||||
OUTBOUND_ON_MATCH_VALUES = (ON_MATCH_BLOCK, ON_MATCH_REDACT, ON_MATCH_SUPERVISE)
|
|
||||||
# Unset resolves to supervise (fall back to block when supervise is not wired).
|
|
||||||
DEFAULT_OUTBOUND_ON_MATCH = ON_MATCH_SUPERVISE
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class PathMatch:
|
class PathMatch:
|
||||||
@@ -78,8 +69,6 @@ class Route:
|
|||||||
git_fetch: bool = False
|
git_fetch: bool = False
|
||||||
outbound_detectors: tuple[str, ...] | None = None
|
outbound_detectors: tuple[str, ...] | None = None
|
||||||
inbound_detectors: tuple[str, ...] | None = None
|
inbound_detectors: tuple[str, ...] | None = None
|
||||||
# "" means unset → DEFAULT_OUTBOUND_ON_MATCH. See OUTBOUND_ON_MATCH_VALUES.
|
|
||||||
outbound_on_match: str = ""
|
|
||||||
|
|
||||||
|
|
||||||
LOG_OFF = 0 # no logging
|
LOG_OFF = 0 # no logging
|
||||||
@@ -106,11 +95,6 @@ class ScanResult:
|
|||||||
reason: str
|
reason: str
|
||||||
location: str = "" # where the match was found, e.g. "body", "authorization header"
|
location: str = "" # where the match was found, e.g. "body", "authorization header"
|
||||||
context: str = "" # surrounding text with the match replaced by REDACT
|
context: str = "" # surrounding text with the match replaced by REDACT
|
||||||
# Raw substring the detector matched. Used inside the sidecar to key the
|
|
||||||
# supervisor-approved "safe tokens" set (PRD 0062); never logged or written
|
|
||||||
# to a proposal file. Empty for structural detectors (CRLF) that carry no
|
|
||||||
# safelist-able value.
|
|
||||||
matched: str = ""
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -234,12 +218,12 @@ def _parse_detectors(
|
|||||||
idx: int,
|
idx: int,
|
||||||
host: str,
|
host: str,
|
||||||
raw_dict: dict[str, object],
|
raw_dict: dict[str, object],
|
||||||
) -> tuple[tuple[str, ...] | None, tuple[str, ...] | None, str]:
|
) -> tuple[tuple[str, ...] | None, tuple[str, ...] | None]:
|
||||||
"""Parse the optional `dlp` block on a route, returning
|
"""Parse the optional `dlp` block on a route, returning
|
||||||
(outbound_detectors, inbound_detectors, outbound_on_match)."""
|
(outbound_detectors, inbound_detectors)."""
|
||||||
dlp_raw = raw_dict.get("dlp")
|
dlp_raw = raw_dict.get("dlp")
|
||||||
if dlp_raw is None:
|
if dlp_raw is None:
|
||||||
return None, None, ""
|
return None, None
|
||||||
label = f"route[{idx}] ({host})"
|
label = f"route[{idx}] ({host})"
|
||||||
if not isinstance(dlp_raw, dict):
|
if not isinstance(dlp_raw, dict):
|
||||||
raise ValueError(f"{label}: 'dlp' must be an object")
|
raise ValueError(f"{label}: 'dlp' must be an object")
|
||||||
@@ -276,24 +260,13 @@ def _parse_detectors(
|
|||||||
outbound = _parse_detector_field("outbound_detectors", OUTBOUND_DETECTOR_NAMES)
|
outbound = _parse_detector_field("outbound_detectors", OUTBOUND_DETECTOR_NAMES)
|
||||||
inbound = _parse_detector_field("inbound_detectors", INBOUND_DETECTOR_NAMES)
|
inbound = _parse_detector_field("inbound_detectors", INBOUND_DETECTOR_NAMES)
|
||||||
|
|
||||||
on_match = ""
|
|
||||||
on_match_raw = dlp.get("outbound_on_match")
|
|
||||||
if on_match_raw is not None:
|
|
||||||
if not isinstance(on_match_raw, str) or on_match_raw not in OUTBOUND_ON_MATCH_VALUES:
|
|
||||||
raise ValueError(
|
|
||||||
f"{label}: dlp.outbound_on_match must be one of "
|
|
||||||
f"{', '.join(OUTBOUND_ON_MATCH_VALUES)} (got {on_match_raw!r})"
|
|
||||||
)
|
|
||||||
on_match = on_match_raw
|
|
||||||
|
|
||||||
for k in dlp:
|
for k in dlp:
|
||||||
if k not in ("outbound_detectors", "inbound_detectors", "outbound_on_match"):
|
if k not in ("outbound_detectors", "inbound_detectors"):
|
||||||
raise ValueError(
|
raise ValueError(
|
||||||
f"{label}: dlp has unknown key {k!r}; accepted keys "
|
f"{label}: dlp has unknown key {k!r}; accepted keys "
|
||||||
f"are 'outbound_detectors', 'inbound_detectors', "
|
f"are 'outbound_detectors', 'inbound_detectors'"
|
||||||
f"'outbound_on_match'"
|
|
||||||
)
|
)
|
||||||
return outbound, inbound, on_match
|
return outbound, inbound
|
||||||
|
|
||||||
|
|
||||||
def parse_routes(payload: object) -> tuple[Route, ...]:
|
def parse_routes(payload: object) -> tuple[Route, ...]:
|
||||||
@@ -364,7 +337,7 @@ def _parse_one(idx: int, raw: object) -> Route:
|
|||||||
)
|
)
|
||||||
|
|
||||||
# dlp detectors
|
# dlp detectors
|
||||||
outbound_detectors, inbound_detectors, outbound_on_match = _parse_detectors(
|
outbound_detectors, inbound_detectors = _parse_detectors(
|
||||||
idx, host, raw_dict,
|
idx, host, raw_dict,
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -383,60 +356,16 @@ def _parse_one(idx: int, raw: object) -> Route:
|
|||||||
git_fetch=git_fetch,
|
git_fetch=git_fetch,
|
||||||
outbound_detectors=outbound_detectors,
|
outbound_detectors=outbound_detectors,
|
||||||
inbound_detectors=inbound_detectors,
|
inbound_detectors=inbound_detectors,
|
||||||
outbound_on_match=outbound_on_match,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _path_match_to_dict(pm: PathMatch) -> dict[str, object]:
|
def load_routes(text: str) -> tuple[Route, ...]:
|
||||||
d: dict[str, object] = {"value": pm.value}
|
"""Parse YAML text → routes."""
|
||||||
if pm.type != "prefix":
|
try:
|
||||||
d["type"] = pm.type
|
payload = parse_yaml_subset(text)
|
||||||
return d
|
except YamlSubsetError as e:
|
||||||
|
raise ValueError(f"routes payload: invalid YAML: {e}") from e
|
||||||
|
return parse_routes(payload)
|
||||||
def _header_match_to_dict(hm: HeaderMatch) -> dict[str, object]:
|
|
||||||
d: dict[str, object] = {"name": hm.name, "value": hm.value}
|
|
||||||
if hm.type != "exact":
|
|
||||||
d["type"] = hm.type
|
|
||||||
return d
|
|
||||||
|
|
||||||
|
|
||||||
def _match_entry_to_dict(me: MatchEntry) -> dict[str, object]:
|
|
||||||
d: dict[str, object] = {}
|
|
||||||
if me.paths:
|
|
||||||
d["paths"] = [_path_match_to_dict(p) for p in me.paths]
|
|
||||||
if me.methods:
|
|
||||||
d["methods"] = list(me.methods)
|
|
||||||
if me.headers:
|
|
||||||
d["headers"] = [_header_match_to_dict(h) for h in me.headers]
|
|
||||||
return d
|
|
||||||
|
|
||||||
|
|
||||||
def route_to_yaml_dict(r: Route) -> dict[str, object]:
|
|
||||||
"""Serialize a Route to YAML-schema-compatible dict.
|
|
||||||
|
|
||||||
Uses the same field names the YAML parser accepts, so the output
|
|
||||||
can be round-tripped directly into an `allow` or `egress-block`
|
|
||||||
proposal without translation. Fields that are empty/default are
|
|
||||||
omitted so the agent doesn't copy irrelevant keys."""
|
|
||||||
d: dict[str, object] = {"host": r.host}
|
|
||||||
if r.auth_scheme:
|
|
||||||
d["auth_scheme"] = r.auth_scheme
|
|
||||||
d["token_env"] = r.token_env
|
|
||||||
if r.matches:
|
|
||||||
d["matches"] = [_match_entry_to_dict(m) for m in r.matches]
|
|
||||||
if r.git_fetch:
|
|
||||||
d["git"] = {"fetch": True}
|
|
||||||
dlp: dict[str, object] = {}
|
|
||||||
if r.outbound_detectors is not None:
|
|
||||||
dlp["outbound_detectors"] = list(r.outbound_detectors)
|
|
||||||
if r.inbound_detectors is not None:
|
|
||||||
dlp["inbound_detectors"] = list(r.inbound_detectors)
|
|
||||||
if r.outbound_on_match:
|
|
||||||
dlp["outbound_on_match"] = r.outbound_on_match
|
|
||||||
if dlp:
|
|
||||||
d["dlp"] = dlp
|
|
||||||
return d
|
|
||||||
|
|
||||||
|
|
||||||
def parse_config(payload: object) -> "Config":
|
def parse_config(payload: object) -> "Config":
|
||||||
@@ -711,103 +640,43 @@ def scan_outbound(
|
|||||||
route: Route,
|
route: Route,
|
||||||
body: str | bytes,
|
body: str | bytes,
|
||||||
environ: typing.Mapping[str, str],
|
environ: typing.Mapping[str, str],
|
||||||
*,
|
|
||||||
safe_tokens: typing.AbstractSet[str] | None = None,
|
|
||||||
crlf_text: str | None = None,
|
|
||||||
) -> ScanResult | None:
|
) -> ScanResult | None:
|
||||||
# Lazy import to avoid circular deps and keep dlp_detectors optional
|
# Lazy import to avoid circular deps and keep dlp_detectors optional
|
||||||
# at import time (the sidecar copies it flat alongside this file).
|
# at import time (the sidecar copies it flat alongside this file).
|
||||||
try:
|
try:
|
||||||
from dlp_detectors import ( # type: ignore[import-not-found]
|
from dlp_detectors import ( # type: ignore[import-not-found]
|
||||||
scan_crlf_injection,
|
scan_crlf_injection,
|
||||||
scan_entropy,
|
|
||||||
scan_known_secrets,
|
scan_known_secrets,
|
||||||
scan_token_patterns,
|
scan_token_patterns,
|
||||||
)
|
)
|
||||||
except ImportError: # pragma: no cover - host-side path
|
except ImportError: # pragma: no cover - host-side path
|
||||||
from .dlp_detectors import ( # type: ignore[import-not-found]
|
from .dlp_detectors import ( # type: ignore[import-not-found]
|
||||||
scan_crlf_injection,
|
scan_crlf_injection,
|
||||||
scan_entropy,
|
|
||||||
scan_known_secrets,
|
scan_known_secrets,
|
||||||
scan_token_patterns,
|
scan_token_patterns,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Binary bodies: latin-1 is a bijective byte↔codepoint mapping that
|
text = body if isinstance(body, str) else body.decode("utf-8", errors="replace")
|
||||||
# preserves every byte value, so ASCII-range secret strings remain
|
|
||||||
# findable by str.find / regex. Prefer strict UTF-8 for valid text bodies.
|
|
||||||
if isinstance(body, bytes):
|
|
||||||
try:
|
|
||||||
text = body.decode("utf-8")
|
|
||||||
except UnicodeDecodeError:
|
|
||||||
text = body.decode("latin-1")
|
|
||||||
else:
|
|
||||||
text = body
|
|
||||||
|
|
||||||
# CRLF injection is only an attack in the request line + headers, never the
|
# CRLF injection is never legitimate — runs unconditionally, not gated
|
||||||
# body: an HTTP body is delimited by Content-Length, so CRLF bytes there
|
# by outbound_detectors config.
|
||||||
# cannot split the request. Scanning the body produces false positives on
|
result = scan_crlf_injection(text)
|
||||||
# legitimate form-encoded / multi-line content. Callers pass the
|
|
||||||
# body-excluded surfaces as `crlf_text`; `None` falls back to the full text
|
|
||||||
# for backward-compatible callers (host-side tests, websocket frames).
|
|
||||||
crlf_target = text if crlf_text is None else crlf_text
|
|
||||||
result = scan_crlf_injection(crlf_target)
|
|
||||||
if result is not None:
|
if result is not None:
|
||||||
return result
|
return result
|
||||||
|
|
||||||
if _detector_enabled(route.outbound_detectors, "token_patterns"):
|
if _detector_enabled(route.outbound_detectors, "token_patterns"):
|
||||||
result = scan_token_patterns(text, location="body", safe_tokens=safe_tokens)
|
result = scan_token_patterns(text, location="body")
|
||||||
if result is not None:
|
if result is not None:
|
||||||
return result
|
return result
|
||||||
|
|
||||||
if _detector_enabled(route.outbound_detectors, "known_secrets"):
|
if _detector_enabled(route.outbound_detectors, "known_secrets"):
|
||||||
# BOT_BOTTLE_SENSITIVE_PREFIXES lets operators add extra env prefixes
|
result = scan_known_secrets(text, location="body", env=environ)
|
||||||
# beyond EGRESS_TOKEN_* without changing the manifest schema.
|
|
||||||
extra_raw = environ.get("BOT_BOTTLE_SENSITIVE_PREFIXES", "")
|
|
||||||
extra = tuple(p for p in extra_raw.split(",") if p)
|
|
||||||
sensitive_prefixes = ("EGRESS_TOKEN_",) + extra
|
|
||||||
result = scan_known_secrets(
|
|
||||||
text, location="body", env=environ,
|
|
||||||
sensitive_prefixes=sensitive_prefixes, safe_tokens=safe_tokens,
|
|
||||||
)
|
|
||||||
if result is not None:
|
|
||||||
return result
|
|
||||||
|
|
||||||
# Entropy scanning requires explicit opt-in: it is NOT part of the
|
|
||||||
# default "all detectors" set because it produces false positives on
|
|
||||||
# legitimate base64 / binary payloads. Routes must list "entropy" in
|
|
||||||
# dlp.outbound_detectors to enable it.
|
|
||||||
if (
|
|
||||||
route.outbound_detectors is not None
|
|
||||||
and "entropy" in route.outbound_detectors
|
|
||||||
):
|
|
||||||
result = scan_entropy(text, location="body")
|
|
||||||
if result is not None:
|
if result is not None:
|
||||||
return result
|
return result
|
||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
def build_token_allow_payload(
|
|
||||||
host: str,
|
|
||||||
method: str,
|
|
||||||
path: str,
|
|
||||||
result: ScanResult,
|
|
||||||
) -> str:
|
|
||||||
"""Render the human-readable supervisor proposal body for an outbound
|
|
||||||
token block (PRD 0062). Carries the host/method/path, the detector
|
|
||||||
reason, and the redacted context snippet — never the raw token value."""
|
|
||||||
lines = [
|
|
||||||
"egress blocked an outbound request carrying a detected token",
|
|
||||||
f"host: {host}",
|
|
||||||
f"method: {method}",
|
|
||||||
f"path: {path}",
|
|
||||||
f"detector: {result.reason}",
|
|
||||||
]
|
|
||||||
if result.context:
|
|
||||||
lines.append(f"context: {result.context}")
|
|
||||||
return "\n".join(lines) + "\n"
|
|
||||||
|
|
||||||
|
|
||||||
def scan_inbound(
|
def scan_inbound(
|
||||||
route: Route,
|
route: Route,
|
||||||
body: str | bytes,
|
body: str | bytes,
|
||||||
@@ -829,14 +698,8 @@ def scan_inbound(
|
|||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"LOG_BLOCKS",
|
"LOG_BLOCKS",
|
||||||
"route_to_yaml_dict",
|
|
||||||
"LOG_FULL",
|
"LOG_FULL",
|
||||||
"LOG_OFF",
|
"LOG_OFF",
|
||||||
"ON_MATCH_BLOCK",
|
|
||||||
"ON_MATCH_REDACT",
|
|
||||||
"ON_MATCH_SUPERVISE",
|
|
||||||
"OUTBOUND_ON_MATCH_VALUES",
|
|
||||||
"DEFAULT_OUTBOUND_ON_MATCH",
|
|
||||||
"Config",
|
"Config",
|
||||||
"Decision",
|
"Decision",
|
||||||
"HeaderMatch",
|
"HeaderMatch",
|
||||||
@@ -846,13 +709,13 @@ __all__ = [
|
|||||||
"ScanResult",
|
"ScanResult",
|
||||||
"build_inbound_scan_text",
|
"build_inbound_scan_text",
|
||||||
"build_outbound_scan_text",
|
"build_outbound_scan_text",
|
||||||
"build_token_allow_payload",
|
|
||||||
"decide",
|
"decide",
|
||||||
"decide_git_fetch",
|
"decide_git_fetch",
|
||||||
"evaluate_matches",
|
"evaluate_matches",
|
||||||
"is_git_push_request",
|
"is_git_push_request",
|
||||||
"is_git_fetch_request",
|
"is_git_fetch_request",
|
||||||
"load_config",
|
"load_config",
|
||||||
|
"load_routes",
|
||||||
"match_route",
|
"match_route",
|
||||||
"outbound_scan_headers",
|
"outbound_scan_headers",
|
||||||
"parse_config",
|
"parse_config",
|
||||||
|
|||||||
+2
-2
@@ -114,7 +114,7 @@ def _read_secret_silent(name: str, prompt_body: str) -> str:
|
|||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
||||||
def resolve_env(manifest: Manifest) -> ResolvedEnv:
|
def resolve_env(manifest: Manifest, agent: str) -> ResolvedEnv:
|
||||||
"""Iterate the agent's env entries:
|
"""Iterate the agent's env entries:
|
||||||
- secret: prompt at runtime; carry value in forwarded
|
- secret: prompt at runtime; carry value in forwarded
|
||||||
- interpolated: read $HOST_VAR from os.environ; carry value in forwarded
|
- interpolated: read $HOST_VAR from os.environ; carry value in forwarded
|
||||||
@@ -124,7 +124,7 @@ def resolve_env(manifest: Manifest) -> ResolvedEnv:
|
|||||||
backend injects forwarded values via its launcher's env parameter."""
|
backend injects forwarded values via its launcher's env parameter."""
|
||||||
forwarded: dict[str, str] = {}
|
forwarded: dict[str, str] = {}
|
||||||
literals: dict[str, str] = {}
|
literals: dict[str, str] = {}
|
||||||
bottle = manifest.bottle
|
bottle = manifest.bottle_for(agent)
|
||||||
for name, raw in bottle.env.items():
|
for name, raw in bottle.env.items():
|
||||||
if not name:
|
if not name:
|
||||||
continue
|
continue
|
||||||
|
|||||||
+16
-24
@@ -461,8 +461,6 @@ while IFS=' ' read -r old new ref; do
|
|||||||
[ -z "$ref" ] && continue
|
[ -z "$ref" ] && continue
|
||||||
if [ "$new" = "$zero" ]; then
|
if [ "$new" = "$zero" ]; then
|
||||||
refspec=":$ref"
|
refspec=":$ref"
|
||||||
elif [ "$old" != "$zero" ] && ! git merge-base --is-ancestor "$old" "$new" 2>/dev/null; then
|
|
||||||
refspec="+$new:$ref"
|
|
||||||
else
|
else
|
||||||
refspec="$new:$ref"
|
refspec="$new:$ref"
|
||||||
fi
|
fi
|
||||||
@@ -550,12 +548,13 @@ def _provision_dynamic_key(
|
|||||||
Returns the host-side path to the private key file so the caller
|
Returns the host-side path to the private key file so the caller
|
||||||
can inject it into the GitGateUpstream as `identity_file`."""
|
can inject it into the GitGateUpstream as `identity_file`."""
|
||||||
from .deploy_key_provisioner import get_provisioner
|
from .deploy_key_provisioner import get_provisioner
|
||||||
pk = entry.Key
|
pk = entry.ProvisionedKey
|
||||||
token = os.environ.get(pk.forge_token_env)
|
assert pk is not None
|
||||||
|
token = os.environ.get(pk.token_env)
|
||||||
if token is None:
|
if token is None:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
f"git-gate.repos[{entry.Name!r}] key.forge_token_env"
|
f"git-gate.repos[{entry.Name!r}] provisioned_key.token_env"
|
||||||
f" = {pk.forge_token_env!r}: env var is not set"
|
f" = {pk.token_env!r}: env var is not set"
|
||||||
)
|
)
|
||||||
api_url = pk.api_url or f"https://{entry.UpstreamHost}"
|
api_url = pk.api_url or f"https://{entry.UpstreamHost}"
|
||||||
provisioner = get_provisioner(pk.provider, token, api_url)
|
provisioner = get_provisioner(pk.provider, token, api_url)
|
||||||
@@ -588,18 +587,18 @@ def revoke_git_gate_provisioned_keys(bottle: ManifestBottle, stage_dir: Path) ->
|
|||||||
address manually."""
|
address manually."""
|
||||||
from .deploy_key_provisioner import get_provisioner
|
from .deploy_key_provisioner import get_provisioner
|
||||||
for entry in bottle.git:
|
for entry in bottle.git:
|
||||||
if entry.Key.provider != "gitea":
|
if entry.ProvisionedKey is None:
|
||||||
continue
|
continue
|
||||||
pk = entry.Key
|
pk = entry.ProvisionedKey
|
||||||
id_file = stage_dir / f"{entry.Name}-deploy-key-id"
|
id_file = stage_dir / f"{entry.Name}-deploy-key-id"
|
||||||
if not id_file.exists():
|
if not id_file.exists():
|
||||||
continue
|
continue
|
||||||
key_id = id_file.read_text().strip()
|
key_id = id_file.read_text().strip()
|
||||||
token = os.environ.get(pk.forge_token_env)
|
token = os.environ.get(pk.token_env)
|
||||||
if token is None:
|
if token is None:
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
f"git-gate.repos[{entry.Name!r}] key.forge_token_env"
|
f"git-gate.repos[{entry.Name!r}] provisioned_key.token_env"
|
||||||
f" = {pk.forge_token_env!r}: env var is not set;"
|
f" = {pk.token_env!r}: env var is not set;"
|
||||||
f" cannot revoke deploy key {key_id}"
|
f" cannot revoke deploy key {key_id}"
|
||||||
)
|
)
|
||||||
api_url = pk.api_url or f"https://{entry.UpstreamHost}"
|
api_url = pk.api_url or f"https://{entry.UpstreamHost}"
|
||||||
@@ -612,14 +611,6 @@ def revoke_git_gate_provisioned_keys(bottle: ManifestBottle, stage_dir: Path) ->
|
|||||||
info(f"revoked deploy key {key_id} for git-gate.repos[{entry.Name!r}]")
|
info(f"revoked deploy key {key_id} for git-gate.repos[{entry.Name!r}]")
|
||||||
|
|
||||||
|
|
||||||
def _resolve_identity_file(entry: ManifestGitEntry, slug: str, stage_dir: Path) -> str:
|
|
||||||
"""Return the host-side SSH identity file path for this entry.
|
|
||||||
For gitea entries, provisions a fresh deploy key first."""
|
|
||||||
if entry.Key.provider == "gitea":
|
|
||||||
return _provision_dynamic_key(entry, slug, stage_dir)
|
|
||||||
return entry.IdentityFile
|
|
||||||
|
|
||||||
|
|
||||||
class GitGate(ABC):
|
class GitGate(ABC):
|
||||||
"""The per-agent git-gate. Encapsulates the host-side prepare
|
"""The per-agent git-gate. Encapsulates the host-side prepare
|
||||||
(upstream lift + entrypoint/hook render); the sidecar's
|
(upstream lift + entrypoint/hook render); the sidecar's
|
||||||
@@ -631,7 +622,7 @@ class GitGate(ABC):
|
|||||||
entrypoint, pre-receive hook, and access-hook scripts (mode
|
entrypoint, pre-receive hook, and access-hook scripts (mode
|
||||||
600) under `stage_dir`. Pure host-side, no docker subprocess.
|
600) under `stage_dir`. Pure host-side, no docker subprocess.
|
||||||
|
|
||||||
For `gitea` key entries, also generates and registers
|
For `provisioned_key` entries, also generates and registers
|
||||||
a fresh deploy key via the forge API and writes the private key
|
a fresh deploy key via the forge API and writes the private key
|
||||||
+ key ID to `stage_dir`.
|
+ key ID to `stage_dir`.
|
||||||
|
|
||||||
@@ -640,10 +631,11 @@ class GitGate(ABC):
|
|||||||
before passing the plan to `.start`."""
|
before passing the plan to `.start`."""
|
||||||
upstreams_list = list(git_gate_upstreams_for_bottle(bottle))
|
upstreams_list = list(git_gate_upstreams_for_bottle(bottle))
|
||||||
for i, entry in enumerate(bottle.git):
|
for i, entry in enumerate(bottle.git):
|
||||||
upstreams_list[i] = dataclasses.replace(
|
if entry.ProvisionedKey is not None:
|
||||||
upstreams_list[i],
|
key_file = _provision_dynamic_key(entry, slug, stage_dir)
|
||||||
identity_file=_resolve_identity_file(entry, slug, stage_dir),
|
upstreams_list[i] = dataclasses.replace(
|
||||||
)
|
upstreams_list[i], identity_file=key_file
|
||||||
|
)
|
||||||
upstreams = tuple(upstreams_list)
|
upstreams = tuple(upstreams_list)
|
||||||
entrypoint = stage_dir / "git_gate_entrypoint.sh"
|
entrypoint = stage_dir / "git_gate_entrypoint.sh"
|
||||||
entrypoint.write_text(git_gate_render_entrypoint(upstreams))
|
entrypoint.write_text(git_gate_render_entrypoint(upstreams))
|
||||||
|
|||||||
+10
-96
@@ -1,107 +1,21 @@
|
|||||||
"""Tiny logging wrappers. All output goes to stderr.
|
"""Tiny logging wrappers. All output goes to stderr."""
|
||||||
|
|
||||||
Two capabilities layer onto the bare wrappers (issue #252):
|
|
||||||
|
|
||||||
- **Levels.** `debug` / `info` / `warn` / `error` carry an ordered
|
|
||||||
severity. Output is gated by `BOT_BOTTLE_LOG_LEVEL` (debug | info |
|
|
||||||
warn | error; default `info`). A message emits when its severity is
|
|
||||||
at or above the threshold, so `debug` is silent by default and
|
|
||||||
`error` always surfaces (nothing sits above it) — which keeps the
|
|
||||||
fatal `die` path visible regardless of the configured level.
|
|
||||||
|
|
||||||
- **Context.** Every wrapper takes an optional `context` mapping that
|
|
||||||
renders as a parseable ` [k=v ...]` suffix (keys sorted; values with
|
|
||||||
whitespace/quotes are quoted), so failures can be filtered and
|
|
||||||
correlated instead of being flat strings.
|
|
||||||
|
|
||||||
With no `context` and the default level, output is byte-identical to the
|
|
||||||
original `bot-bottle: <msg>` / `bot-bottle: warning: <msg>` /
|
|
||||||
`bot-bottle: error: <msg>` lines — the 100+ existing call sites are
|
|
||||||
unaffected.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import os
|
|
||||||
import sys
|
import sys
|
||||||
from typing import Mapping, NoReturn
|
from typing import NoReturn
|
||||||
|
|
||||||
# Ordered severities. Gaps left between values so intermediate levels
|
|
||||||
# can be added later without renumbering.
|
|
||||||
DEBUG = 10
|
|
||||||
INFO = 20
|
|
||||||
WARN = 30
|
|
||||||
ERROR = 40
|
|
||||||
|
|
||||||
_LEVEL_NAMES: dict[str, int] = {
|
|
||||||
"debug": DEBUG,
|
|
||||||
"info": INFO,
|
|
||||||
"warn": WARN,
|
|
||||||
"warning": WARN,
|
|
||||||
"error": ERROR,
|
|
||||||
}
|
|
||||||
|
|
||||||
# Default threshold when BOT_BOTTLE_LOG_LEVEL is unset or unrecognised.
|
|
||||||
_DEFAULT_THRESHOLD = INFO
|
|
||||||
|
|
||||||
_LOG_LEVEL_ENV = "BOT_BOTTLE_LOG_LEVEL"
|
|
||||||
|
|
||||||
|
|
||||||
def _threshold() -> int:
|
def info(msg: str) -> None:
|
||||||
"""Resolve the active level threshold from the environment.
|
print(f"bot-bottle: {msg}", file=sys.stderr)
|
||||||
|
|
||||||
Read per-call (not cached) so the level can be changed at runtime
|
|
||||||
and so tests can patch `os.environ` without a reload. Unknown values
|
|
||||||
fall back to the default rather than raising — logging must never be
|
|
||||||
the thing that crashes the process."""
|
|
||||||
raw = os.environ.get(_LOG_LEVEL_ENV, "")
|
|
||||||
return _LEVEL_NAMES.get(raw.strip().lower(), _DEFAULT_THRESHOLD)
|
|
||||||
|
|
||||||
|
|
||||||
def _format_context(context: Mapping[str, object] | None) -> str:
|
def warn(msg: str) -> None:
|
||||||
"""Render a context mapping as a ` [k=v k2=v2]` suffix.
|
print(f"bot-bottle: warning: {msg}", file=sys.stderr)
|
||||||
|
|
||||||
Keys are sorted for stable, diffable output. Values that are empty or
|
|
||||||
contain whitespace or a quote are wrapped in double quotes (with inner
|
|
||||||
quotes escaped) so each `k=v` pair stays parseable. Empty/None context
|
|
||||||
renders as the empty string."""
|
|
||||||
if not context:
|
|
||||||
return ""
|
|
||||||
parts: list[str] = []
|
|
||||||
for key in sorted(context):
|
|
||||||
value = str(context[key])
|
|
||||||
if value == "" or any(ch.isspace() for ch in value) or '"' in value:
|
|
||||||
value = '"' + value.replace('"', '\\"') + '"'
|
|
||||||
parts.append(f"{key}={value}")
|
|
||||||
return " [" + " ".join(parts) + "]"
|
|
||||||
|
|
||||||
|
|
||||||
def _emit(
|
def error(msg: str) -> None:
|
||||||
level: int,
|
print(f"bot-bottle: error: {msg}", file=sys.stderr)
|
||||||
label: str,
|
|
||||||
msg: str,
|
|
||||||
context: Mapping[str, object] | None,
|
|
||||||
) -> None:
|
|
||||||
if level < _threshold():
|
|
||||||
return
|
|
||||||
prefix = f"{label}: " if label else ""
|
|
||||||
sys.stderr.write(f"bot-bottle: {prefix}{msg}{_format_context(context)}\n")
|
|
||||||
|
|
||||||
|
|
||||||
def debug(msg: str, *, context: Mapping[str, object] | None = None) -> None:
|
|
||||||
_emit(DEBUG, "debug", msg, context)
|
|
||||||
|
|
||||||
|
|
||||||
def info(msg: str, *, context: Mapping[str, object] | None = None) -> None:
|
|
||||||
_emit(INFO, "", msg, context)
|
|
||||||
|
|
||||||
|
|
||||||
def warn(msg: str, *, context: Mapping[str, object] | None = None) -> None:
|
|
||||||
_emit(WARN, "warning", msg, context)
|
|
||||||
|
|
||||||
|
|
||||||
def error(msg: str, *, context: Mapping[str, object] | None = None) -> None:
|
|
||||||
_emit(ERROR, "error", msg, context)
|
|
||||||
|
|
||||||
|
|
||||||
class Die(SystemExit):
|
class Die(SystemExit):
|
||||||
@@ -117,6 +31,6 @@ class Die(SystemExit):
|
|||||||
self.message = message
|
self.message = message
|
||||||
|
|
||||||
|
|
||||||
def die(msg: str, *, context: Mapping[str, object] | None = None) -> NoReturn:
|
def die(msg: str) -> NoReturn:
|
||||||
error(msg, context=context)
|
error(msg)
|
||||||
raise Die(1, msg)
|
raise Die(1, msg)
|
||||||
|
|||||||
+107
-203
@@ -19,7 +19,7 @@ Bottle schema (frontmatter):
|
|||||||
repos: { <name>: <git-gate-entry>, ... } # optional
|
repos: { <name>: <git-gate-entry>, ... } # optional
|
||||||
egress: { routes: [ <egress-route>, ... ] }
|
egress: { routes: [ <egress-route>, ... ] }
|
||||||
# route keys: host, matches, auth, role, dlp
|
# route keys: host, matches, auth, role, dlp
|
||||||
supervise: <bool> # optional (default true)
|
supervise: <bool> # optional
|
||||||
|
|
||||||
Agent schema (frontmatter):
|
Agent schema (frontmatter):
|
||||||
bottle: <bottle-name> # required
|
bottle: <bottle-name> # required
|
||||||
@@ -36,23 +36,10 @@ Bottles can ONLY live under $HOME. A bottles/ dir under $CWD is a
|
|||||||
warn at load time and contributes nothing. The trust boundary is
|
warn at load time and contributes nothing. The trust boundary is
|
||||||
expressed as filesystem layout rather than resolver logic.
|
expressed as filesystem layout rather than resolver logic.
|
||||||
|
|
||||||
Two types are exported:
|
Validation runs once at load. Manifest.from_json_obj is preserved
|
||||||
|
as a programmatic entry point (used by tests) that takes a dict
|
||||||
ManifestIndex — the multi-agent/bottle collection returned by
|
with the same field names — useful for building manifests without
|
||||||
resolve() and from_json_obj(). Used for agent
|
on-disk files.
|
||||||
selection (all_agent_names), validation
|
|
||||||
(require_agent), and lazy loading (load_for_agent).
|
|
||||||
This is the pre-preflight form.
|
|
||||||
|
|
||||||
Manifest — a single-agent/bottle value type holding exactly
|
|
||||||
one agent: ManifestAgent and one bottle:
|
|
||||||
ManifestBottle (with the agent's git-gate.user
|
|
||||||
already overlaid). Returned by load_for_agent().
|
|
||||||
This is the post-preflight form passed to backends.
|
|
||||||
|
|
||||||
ManifestIndex.from_json_obj is preserved as a programmatic entry
|
|
||||||
point (used by tests) that takes a dict with the same field names —
|
|
||||||
useful for building manifests without on-disk files.
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
@@ -69,7 +56,7 @@ from .manifest_egress import (
|
|||||||
ManifestEgressConfig,
|
ManifestEgressConfig,
|
||||||
ManifestEgressRoute,
|
ManifestEgressRoute,
|
||||||
)
|
)
|
||||||
from .manifest_git import ManifestGitEntry, ManifestGitUser, ManifestKeyConfig, parse_git_gate_config
|
from .manifest_git import ManifestGitEntry, ManifestGitUser, parse_git_gate_config
|
||||||
from .manifest_schema import BOTTLE_KEYS
|
from .manifest_schema import BOTTLE_KEYS
|
||||||
|
|
||||||
# Re-export everything that callers currently import from this module.
|
# Re-export everything that callers currently import from this module.
|
||||||
@@ -77,14 +64,12 @@ __all__ = [
|
|||||||
"ManifestError",
|
"ManifestError",
|
||||||
"ManifestGitEntry",
|
"ManifestGitEntry",
|
||||||
"ManifestGitUser",
|
"ManifestGitUser",
|
||||||
"ManifestKeyConfig",
|
|
||||||
"ManifestAgentProvider",
|
"ManifestAgentProvider",
|
||||||
"EGRESS_AUTH_SCHEMES",
|
"EGRESS_AUTH_SCHEMES",
|
||||||
"ManifestEgressRoute",
|
"ManifestEgressRoute",
|
||||||
"ManifestEgressConfig",
|
"ManifestEgressConfig",
|
||||||
"ManifestAgent",
|
"ManifestAgent",
|
||||||
"ManifestBottle",
|
"ManifestBottle",
|
||||||
"ManifestIndex",
|
|
||||||
"Manifest",
|
"Manifest",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -111,13 +96,13 @@ class ManifestBottle:
|
|||||||
# identity without any git-gate.repos upstreams, and vice versa.
|
# identity without any git-gate.repos upstreams, and vice versa.
|
||||||
git_user: ManifestGitUser = field(default_factory=ManifestGitUser)
|
git_user: ManifestGitUser = field(default_factory=ManifestGitUser)
|
||||||
egress: ManifestEgressConfig = field(default_factory=ManifestEgressConfig)
|
egress: ManifestEgressConfig = field(default_factory=ManifestEgressConfig)
|
||||||
# Per-bottle stuck-recovery sidecar (PRD 0013). When true (the
|
# Opt-in per-bottle stuck-recovery sidecar (PRD 0013). When true,
|
||||||
# default, issue #249), the launch step brings up a supervise
|
# the launch step brings up a supervise sidecar that exposes MCP
|
||||||
# sidecar that exposes MCP tools to the agent (egress-block,
|
# tools to the agent (egress-block, capability-block) plus mounts
|
||||||
# capability-block) plus mounts the current-config dir read-only
|
# the current-config dir read-only into the agent at
|
||||||
# into the agent at /etc/bot-bottle/current-config. Set
|
# /etc/bot-bottle/current-config. False (the default) skips the
|
||||||
# `supervise: false` to skip the sidecar and mount.
|
# sidecar and mount.
|
||||||
supervise: bool = True
|
supervise: bool = False
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_dict(cls, name: str, raw: object) -> "ManifestBottle":
|
def from_dict(cls, name: str, raw: object) -> "ManifestBottle":
|
||||||
@@ -190,7 +175,7 @@ class ManifestBottle:
|
|||||||
else ManifestEgressConfig()
|
else ManifestEgressConfig()
|
||||||
)
|
)
|
||||||
|
|
||||||
supervise_raw = d.get("supervise", True)
|
supervise_raw = d.get("supervise", False)
|
||||||
if not isinstance(supervise_raw, bool):
|
if not isinstance(supervise_raw, bool):
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"bottle '{name}' supervise must be a boolean "
|
f"bottle '{name}' supervise must be a boolean "
|
||||||
@@ -203,64 +188,14 @@ class ManifestBottle:
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _merge_git_user(
|
|
||||||
agent_user: ManifestGitUser, base_user: ManifestGitUser
|
|
||||||
) -> ManifestGitUser:
|
|
||||||
"""Merge the agent's git.user over the bottle's, agent-wins-on-non-empty."""
|
|
||||||
if agent_user.is_empty():
|
|
||||||
return base_user
|
|
||||||
return ManifestGitUser(
|
|
||||||
name=agent_user.name or base_user.name,
|
|
||||||
email=agent_user.email or base_user.email,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class Manifest:
|
class Manifest:
|
||||||
"""Single-agent/bottle value type. Returned by ManifestIndex.load_for_agent().
|
|
||||||
|
|
||||||
`bottle` is the effective bottle with the agent's git-gate.user already
|
|
||||||
overlaid per-field (agent wins on non-empty). Backends and provisioners
|
|
||||||
use this directly — no agent_name lookup needed."""
|
|
||||||
|
|
||||||
agent: ManifestAgent
|
|
||||||
bottle: ManifestBottle
|
|
||||||
|
|
||||||
def git_identity_summary(self) -> str | None:
|
|
||||||
"""One-line effective git identity with per-field provenance, e.g.
|
|
||||||
`name=claude (agent), email=eric@dideric.is (bottle)`.
|
|
||||||
Returns None when neither agent nor bottle sets an identity."""
|
|
||||||
over = self.agent.git_user # agent's declared git_user (pre-merge)
|
|
||||||
merged = self.bottle.git_user # effective git_user (post-merge)
|
|
||||||
if merged.is_empty():
|
|
||||||
return None
|
|
||||||
parts: list[str] = []
|
|
||||||
if merged.name:
|
|
||||||
parts.append(f"name={merged.name} ({'agent' if over.name else 'bottle'})")
|
|
||||||
if merged.email:
|
|
||||||
parts.append(f"email={merged.email} ({'agent' if over.email else 'bottle'})")
|
|
||||||
return ", ".join(parts)
|
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
|
||||||
class ManifestIndex:
|
|
||||||
"""Multi-agent/bottle collection. The pre-preflight form.
|
|
||||||
|
|
||||||
In lazy mode (from resolve()/from_md_dirs()) only filenames are scanned;
|
|
||||||
no file content is read. In eager mode (from from_json_obj()) all agents
|
|
||||||
and bottles are pre-parsed. Call load_for_agent() to get a single-value
|
|
||||||
Manifest ready for backend use."""
|
|
||||||
|
|
||||||
bottles: Mapping[str, ManifestBottle]
|
bottles: Mapping[str, ManifestBottle]
|
||||||
agents: Mapping[str, ManifestAgent]
|
agents: Mapping[str, ManifestAgent]
|
||||||
# Set by from_md_dirs; None in from_json_obj (test/programmatic) mode.
|
|
||||||
# Stores the manifest root dirs so load_for_agent can locate files later.
|
|
||||||
home_md: Path | None = field(default=None)
|
|
||||||
cwd_md: Path | None = field(default=None)
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def resolve(cls, cwd: str, *, missing_ok: bool = False) -> "ManifestIndex":
|
def resolve(cls, cwd: str, *, missing_ok: bool = False) -> "Manifest":
|
||||||
"""Walk the per-file manifest tree and build a ManifestIndex.
|
"""Walk the per-file manifest tree and build a Manifest.
|
||||||
|
|
||||||
Layout (PRD 0011):
|
Layout (PRD 0011):
|
||||||
$HOME/.bot-bottle/bottles/<name>.md — bottles (home-only)
|
$HOME/.bot-bottle/bottles/<name>.md — bottles (home-only)
|
||||||
@@ -273,7 +208,7 @@ class ManifestIndex:
|
|||||||
boundary.
|
boundary.
|
||||||
|
|
||||||
If `missing_ok` is true, a missing `$HOME/.bot-bottle/`
|
If `missing_ok` is true, a missing `$HOME/.bot-bottle/`
|
||||||
returns an empty index instead of dying. This is for
|
returns an empty manifest instead of dying. This is for
|
||||||
passive UI surfaces like the dashboard, which can still
|
passive UI surfaces like the dashboard, which can still
|
||||||
monitor already-running agents without launch config.
|
monitor already-running agents without launch config.
|
||||||
|
|
||||||
@@ -312,16 +247,25 @@ class ManifestIndex:
|
|||||||
cls,
|
cls,
|
||||||
home_dir: Path,
|
home_dir: Path,
|
||||||
cwd_dir: Path | None,
|
cwd_dir: Path | None,
|
||||||
) -> "ManifestIndex":
|
) -> "Manifest":
|
||||||
"""Return a names-only ManifestIndex. No file content is read; only
|
"""Programmatic entry point. Loads bottles from
|
||||||
filenames are scanned for the agent selector. Full parsing happens
|
`<home_dir>/bottles/`, home agents from `<home_dir>/agents/`,
|
||||||
later, per-agent, via `load_for_agent`.
|
and (if `cwd_dir` is passed) cwd agents from
|
||||||
|
`<cwd_dir>/agents/`. Cwd agents override home agents on
|
||||||
|
name collision. A `bottles/` subdir under `cwd_dir` is
|
||||||
|
logged as a warning and ignored.
|
||||||
|
|
||||||
A `bottles/` subdir under `cwd_dir` is logged as a warning and
|
Used by tests to build a Manifest from fixture directories
|
||||||
ignored — the filesystem layout IS the trust boundary.
|
|
||||||
|
|
||||||
Used by tests to build a ManifestIndex from fixture directories
|
|
||||||
without touching `os.environ`."""
|
without touching `os.environ`."""
|
||||||
|
bottles_dir = home_dir / "bottles"
|
||||||
|
from .manifest_loader import load_agents_from_dir, load_bottles_from_dir
|
||||||
|
|
||||||
|
bottles = load_bottles_from_dir(bottles_dir)
|
||||||
|
|
||||||
|
bottle_names = set(bottles.keys())
|
||||||
|
agents_dir = home_dir / "agents"
|
||||||
|
agents = load_agents_from_dir(agents_dir, bottle_names, source="$HOME")
|
||||||
|
|
||||||
if cwd_dir is not None:
|
if cwd_dir is not None:
|
||||||
stale_bottles = cwd_dir / "bottles"
|
stale_bottles = cwd_dir / "bottles"
|
||||||
if stale_bottles.is_dir():
|
if stale_bottles.is_dir():
|
||||||
@@ -335,11 +279,17 @@ class ManifestIndex:
|
|||||||
f"live under $HOME/.bot-bottle/bottles/ "
|
f"live under $HOME/.bot-bottle/bottles/ "
|
||||||
f"(PRD 0011). Move them or delete."
|
f"(PRD 0011). Move them or delete."
|
||||||
)
|
)
|
||||||
return cls(bottles={}, agents={}, home_md=home_dir, cwd_md=cwd_dir)
|
cwd_agents_dir = cwd_dir / "agents"
|
||||||
|
cwd_agents = load_agents_from_dir(
|
||||||
|
cwd_agents_dir, bottle_names, source="$CWD"
|
||||||
|
)
|
||||||
|
agents = {**agents, **cwd_agents}
|
||||||
|
|
||||||
|
return cls(bottles=bottles, agents=agents)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_json_obj(cls, obj: object) -> "ManifestIndex":
|
def from_json_obj(cls, obj: object) -> "Manifest":
|
||||||
"""Validate and build a ManifestIndex from a raw JSON-like dict."""
|
"""Validate and build a Manifest from a raw JSON-like dict."""
|
||||||
d = as_json_object(obj, "manifest")
|
d = as_json_object(obj, "manifest")
|
||||||
raw_bottles_obj = _section_dict(d.get("bottles"), "manifest 'bottles'")
|
raw_bottles_obj = _section_dict(d.get("bottles"), "manifest 'bottles'")
|
||||||
raw_agents = _section_dict(d.get("agents"), "manifest 'agents'")
|
raw_agents = _section_dict(d.get("agents"), "manifest 'agents'")
|
||||||
@@ -360,121 +310,75 @@ class ManifestIndex:
|
|||||||
}
|
}
|
||||||
return cls(bottles=bottles, agents=agents)
|
return cls(bottles=bottles, agents=agents)
|
||||||
|
|
||||||
@property
|
|
||||||
def all_agent_names(self) -> list[str]:
|
|
||||||
"""Sorted list of all discoverable agent names.
|
|
||||||
|
|
||||||
In names-only mode (from resolve/from_md_dirs) this scans agent
|
|
||||||
filenames without reading their content. In eager mode (from
|
|
||||||
from_json_obj) it returns the pre-parsed agents' names."""
|
|
||||||
if self.home_md is not None:
|
|
||||||
from .manifest_loader import scan_agent_names
|
|
||||||
home_names = set(scan_agent_names(self.home_md / "agents").keys())
|
|
||||||
cwd_names: set[str] = set()
|
|
||||||
if self.cwd_md is not None:
|
|
||||||
cwd_names = set(scan_agent_names(self.cwd_md / "agents").keys())
|
|
||||||
return sorted(home_names | cwd_names)
|
|
||||||
return sorted(self.agents.keys())
|
|
||||||
|
|
||||||
def load_for_agent(self, agent_name: str) -> "Manifest":
|
|
||||||
"""Parse the named agent and its bottle; return a single-value Manifest.
|
|
||||||
|
|
||||||
In lazy mode (from resolve/from_md_dirs) the agent file and its
|
|
||||||
bottle chain are read from disk for the first time here. In eager
|
|
||||||
mode (from_json_obj) the data is already parsed; this just filters
|
|
||||||
down to the requested agent and its bottle.
|
|
||||||
|
|
||||||
The returned Manifest.bottle has the agent's git-gate.user already
|
|
||||||
overlaid (agent wins on non-empty, per-field).
|
|
||||||
|
|
||||||
Always raises ManifestError if the agent is unknown or invalid.
|
|
||||||
Backends call this at preflight inside _validate."""
|
|
||||||
if self.home_md is None:
|
|
||||||
# Eager manifest (from_json_obj): data already parsed; filter to
|
|
||||||
# the one requested agent and its bottle so the returned Manifest
|
|
||||||
# always holds exactly one agent and one bottle regardless of path.
|
|
||||||
if agent_name not in self.agents:
|
|
||||||
available = ", ".join(sorted(self.agents.keys())) or "(none)"
|
|
||||||
raise ManifestError(
|
|
||||||
f"agent '{agent_name}' not defined. Available: {available}"
|
|
||||||
)
|
|
||||||
agent = self.agents[agent_name]
|
|
||||||
raw_bottle = self.bottles[agent.bottle]
|
|
||||||
merged = _merge_git_user(agent.git_user, raw_bottle.git_user)
|
|
||||||
bottle = raw_bottle if merged == raw_bottle.git_user else replace(raw_bottle, git_user=merged)
|
|
||||||
return Manifest(agent=agent, bottle=bottle)
|
|
||||||
|
|
||||||
from .manifest_loader import load_bottle_chain_from_dir, scan_agent_names
|
|
||||||
from .manifest_schema import validate_agent_frontmatter_keys
|
|
||||||
from .yaml_subset import YamlSubsetError, parse_frontmatter
|
|
||||||
|
|
||||||
# Locate the agent file; cwd wins over home on name collision.
|
|
||||||
home_agents = scan_agent_names(self.home_md / "agents")
|
|
||||||
cwd_agents: dict[str, Path] = {}
|
|
||||||
if self.cwd_md is not None:
|
|
||||||
cwd_agents = scan_agent_names(self.cwd_md / "agents")
|
|
||||||
merged_agents = {**home_agents, **cwd_agents}
|
|
||||||
|
|
||||||
if agent_name not in merged_agents:
|
|
||||||
available = ", ".join(sorted(merged_agents.keys())) or "(none)"
|
|
||||||
raise ManifestError(
|
|
||||||
f"agent '{agent_name}' not defined. Available: {available}"
|
|
||||||
)
|
|
||||||
|
|
||||||
agent_path = merged_agents[agent_name]
|
|
||||||
try:
|
|
||||||
fm, body = parse_frontmatter(agent_path.read_text())
|
|
||||||
except OSError as e:
|
|
||||||
raise ManifestError(f"could not read {agent_path}: {e}") from e
|
|
||||||
except YamlSubsetError as e:
|
|
||||||
raise ManifestError(f"{agent_path}: {e}") from e
|
|
||||||
|
|
||||||
validate_agent_frontmatter_keys(agent_path, fm.keys())
|
|
||||||
|
|
||||||
bottle_name = fm.get("bottle")
|
|
||||||
if not isinstance(bottle_name, str) or not bottle_name:
|
|
||||||
raise ManifestError(
|
|
||||||
f"agent '{agent_name}' must declare a 'bottle' field "
|
|
||||||
f"naming a defined bottle"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Load the bottle chain (may raise ManifestError).
|
|
||||||
bottles_dir = self.home_md / "bottles"
|
|
||||||
raw_bottle = load_bottle_chain_from_dir(bottle_name, bottles_dir)
|
|
||||||
|
|
||||||
# Build and validate the full ManifestAgent.
|
|
||||||
agent_dict: dict[str, object] = {
|
|
||||||
"bottle": bottle_name,
|
|
||||||
"skills": fm.get("skills", []),
|
|
||||||
"prompt": body.strip(),
|
|
||||||
}
|
|
||||||
if "git-gate" in fm:
|
|
||||||
agent_dict["git-gate"] = fm["git-gate"]
|
|
||||||
agent = ManifestAgent.from_dict(agent_name, agent_dict, {bottle_name})
|
|
||||||
|
|
||||||
merged_user = _merge_git_user(agent.git_user, raw_bottle.git_user)
|
|
||||||
bottle = raw_bottle if merged_user == raw_bottle.git_user else replace(raw_bottle, git_user=merged_user)
|
|
||||||
return Manifest(agent=agent, bottle=bottle)
|
|
||||||
|
|
||||||
def has_agent(self, name: str) -> bool:
|
def has_agent(self, name: str) -> bool:
|
||||||
return name in self.agents
|
return name in self.agents
|
||||||
|
|
||||||
def require_agent(self, name: str) -> None:
|
def require_agent(self, name: str) -> None:
|
||||||
"""Check that `name` is a discoverable agent. In names-only mode
|
|
||||||
this checks whether the .md file exists; in eager mode it checks
|
|
||||||
the pre-parsed agents dict. Does NOT parse file content."""
|
|
||||||
if self.has_agent(name):
|
if self.has_agent(name):
|
||||||
return
|
return
|
||||||
if self.home_md is not None:
|
available = ", ".join(self.agents.keys())
|
||||||
# Names-only mode: check file existence without parsing.
|
if available:
|
||||||
home_path = self.home_md / "agents" / f"{name}.md"
|
msg = f"agent '{name}' not defined in bot-bottle.json. Available: {available}"
|
||||||
cwd_path = (
|
raise ManifestError(msg)
|
||||||
self.cwd_md / "agents" / f"{name}.md"
|
|
||||||
if self.cwd_md else None
|
|
||||||
)
|
|
||||||
if home_path.is_file() or (cwd_path and cwd_path.is_file()):
|
|
||||||
return
|
|
||||||
available = ", ".join(self.all_agent_names) or "(none)"
|
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"agent '{name}' not defined. Available: {available}"
|
f"agent '{name}' not defined in bot-bottle.json (manifest is empty)."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def has_bottle(self, name: str) -> bool:
|
||||||
|
return name in self.bottles
|
||||||
|
|
||||||
|
def require_bottle(self, name: str) -> None:
|
||||||
|
if self.has_bottle(name):
|
||||||
|
return
|
||||||
|
available = ", ".join(self.bottles.keys())
|
||||||
|
if available:
|
||||||
|
raise ManifestError(
|
||||||
|
f"bottle '{name}' not defined in bot-bottle.json. "
|
||||||
|
f"Available bottles: {available}"
|
||||||
|
)
|
||||||
|
raise ManifestError(f"bottle '{name}' not defined in bot-bottle.json (no bottles defined).")
|
||||||
|
|
||||||
|
def _effective_git_user(self, agent_name: str) -> ManifestGitUser:
|
||||||
|
"""Merge the agent's git.user over the referenced bottle's,
|
||||||
|
per-field, agent-wins-on-non-empty (issue #94). Same overlay
|
||||||
|
the `extends:` resolver applies between bottles
|
||||||
|
(`_merge_bottles`)."""
|
||||||
|
agent = self.agents[agent_name]
|
||||||
|
base = self.bottles[agent.bottle].git_user
|
||||||
|
over = agent.git_user
|
||||||
|
if over.is_empty():
|
||||||
|
return base
|
||||||
|
return ManifestGitUser(
|
||||||
|
name=over.name or base.name,
|
||||||
|
email=over.email or base.email,
|
||||||
|
)
|
||||||
|
|
||||||
|
def bottle_for(self, agent_name: str) -> ManifestBottle:
|
||||||
|
"""Resolve the Bottle the named agent references, with the
|
||||||
|
agent's git.user overlaid on top. The validator guarantees both
|
||||||
|
lookups succeed for a manifest built via from_json_obj.
|
||||||
|
|
||||||
|
The overlay lives here, the single point both backends call to
|
||||||
|
resolve an agent's bottle, so the docker / smolmachines git
|
||||||
|
provisioners pick up the merged identity unchanged."""
|
||||||
|
bottle = self.bottles[self.agents[agent_name].bottle]
|
||||||
|
merged = self._effective_git_user(agent_name)
|
||||||
|
if merged == bottle.git_user:
|
||||||
|
return bottle
|
||||||
|
return replace(bottle, git_user=merged)
|
||||||
|
|
||||||
|
def git_identity_summary(self, agent_name: str) -> str | None:
|
||||||
|
"""One-line effective git identity with per-field provenance
|
||||||
|
for launch summaries, e.g.
|
||||||
|
`name=claude (agent), email=eric@dideric.is (bottle)`.
|
||||||
|
Returns None when neither agent nor bottle sets an identity."""
|
||||||
|
over = self.agents[agent_name].git_user
|
||||||
|
merged = self._effective_git_user(agent_name)
|
||||||
|
if merged.is_empty():
|
||||||
|
return None
|
||||||
|
parts: list[str] = []
|
||||||
|
if merged.name:
|
||||||
|
parts.append(f"name={merged.name} ({'agent' if over.name else 'bottle'})")
|
||||||
|
if merged.email:
|
||||||
|
parts.append(f"email={merged.email} ({'agent' if over.email else 'bottle'})")
|
||||||
|
return ", ".join(parts)
|
||||||
|
|||||||
@@ -199,10 +199,13 @@ def _parse_provider_settings(
|
|||||||
) -> dict[str, object]:
|
) -> dict[str, object]:
|
||||||
if raw is None:
|
if raw is None:
|
||||||
return {}
|
return {}
|
||||||
|
if template != "pi":
|
||||||
|
raise ManifestError(
|
||||||
|
f"bottle '{bottle_name}' agent_provider.settings is only "
|
||||||
|
"supported for template 'pi'"
|
||||||
|
)
|
||||||
settings = as_json_object(raw, f"bottle '{bottle_name}' agent_provider.settings")
|
settings = as_json_object(raw, f"bottle '{bottle_name}' agent_provider.settings")
|
||||||
|
allowed = {
|
||||||
common_allowed = {"startup_args"}
|
|
||||||
pi_allowed = {
|
|
||||||
"provider",
|
"provider",
|
||||||
"base_url",
|
"base_url",
|
||||||
"api",
|
"api",
|
||||||
@@ -215,37 +218,12 @@ def _parse_provider_settings(
|
|||||||
"supports_developer_role",
|
"supports_developer_role",
|
||||||
"supports_reasoning_effort",
|
"supports_reasoning_effort",
|
||||||
}
|
}
|
||||||
if template == "pi":
|
|
||||||
allowed = common_allowed | pi_allowed
|
|
||||||
elif template in ("claude", "codex"):
|
|
||||||
allowed = common_allowed
|
|
||||||
elif template not in PROVIDER_TEMPLATES:
|
|
||||||
return dict(settings)
|
|
||||||
else:
|
|
||||||
allowed = common_allowed
|
|
||||||
|
|
||||||
for key in settings:
|
for key in settings:
|
||||||
if key not in allowed:
|
if key not in allowed:
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"bottle '{bottle_name}' agent_provider.settings has unknown "
|
f"bottle '{bottle_name}' agent_provider.settings has unknown "
|
||||||
f"key {key!r}; allowed: {', '.join(sorted(allowed))}"
|
f"key {key!r}; allowed: {', '.join(sorted(allowed))}"
|
||||||
)
|
)
|
||||||
startup_args = settings.get("startup_args")
|
|
||||||
if startup_args is not None:
|
|
||||||
if not isinstance(startup_args, list):
|
|
||||||
raise ManifestError(
|
|
||||||
f"bottle '{bottle_name}' agent_provider.settings.startup_args "
|
|
||||||
f"must be an array of strings"
|
|
||||||
)
|
|
||||||
for i, arg in enumerate(startup_args):
|
|
||||||
if not isinstance(arg, str) or not arg:
|
|
||||||
raise ManifestError(
|
|
||||||
f"bottle '{bottle_name}' agent_provider.settings."
|
|
||||||
f"startup_args[{i}] must be a non-empty string"
|
|
||||||
)
|
|
||||||
if template != "pi":
|
|
||||||
return dict(settings)
|
|
||||||
|
|
||||||
for key in ("provider", "base_url", "api", "api_key", "api_key_env"):
|
for key in ("provider", "base_url", "api", "api_key", "api_key_env"):
|
||||||
value = settings.get(key)
|
value = settings.get(key)
|
||||||
if value is not None and (not isinstance(value, str) or not value):
|
if value is not None and (not isinstance(value, str) or not value):
|
||||||
|
|||||||
@@ -21,9 +21,6 @@ VALID_METHODS = frozenset({
|
|||||||
OUTBOUND_DETECTOR_NAMES = frozenset({"token_patterns", "known_secrets"})
|
OUTBOUND_DETECTOR_NAMES = frozenset({"token_patterns", "known_secrets"})
|
||||||
INBOUND_DETECTOR_NAMES = frozenset({"naive_injection_detection"})
|
INBOUND_DETECTOR_NAMES = frozenset({"naive_injection_detection"})
|
||||||
|
|
||||||
# What the proxy does on an outbound token match (PRD 0062).
|
|
||||||
OUTBOUND_ON_MATCH_VALUES = ("block", "redact", "supervise")
|
|
||||||
|
|
||||||
|
|
||||||
def validate_egress_routes(
|
def validate_egress_routes(
|
||||||
bottle_name: str,
|
bottle_name: str,
|
||||||
@@ -70,7 +67,6 @@ class ManifestEgressRoute:
|
|||||||
GitFetch: bool = False
|
GitFetch: bool = False
|
||||||
OutboundDetectors: tuple[str, ...] | None = None
|
OutboundDetectors: tuple[str, ...] | None = None
|
||||||
InboundDetectors: tuple[str, ...] | None = None
|
InboundDetectors: tuple[str, ...] | None = None
|
||||||
OutboundOnMatch: str = ""
|
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_dict(cls, bottle_name: str, idx: int, raw: object) -> "ManifestEgressRoute":
|
def from_dict(cls, bottle_name: str, idx: int, raw: object) -> "ManifestEgressRoute":
|
||||||
@@ -165,9 +161,8 @@ class ManifestEgressRoute:
|
|||||||
# --- dlp ---
|
# --- dlp ---
|
||||||
outbound_detectors: tuple[str, ...] | None = None
|
outbound_detectors: tuple[str, ...] | None = None
|
||||||
inbound_detectors: tuple[str, ...] | None = None
|
inbound_detectors: tuple[str, ...] | None = None
|
||||||
outbound_on_match = ""
|
|
||||||
if "dlp" in d:
|
if "dlp" in d:
|
||||||
outbound_detectors, inbound_detectors, outbound_on_match = _parse_dlp_block(
|
outbound_detectors, inbound_detectors = _parse_dlp_block(
|
||||||
label, d.get("dlp"),
|
label, d.get("dlp"),
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -206,7 +201,6 @@ class ManifestEgressRoute:
|
|||||||
GitFetch=git_fetch,
|
GitFetch=git_fetch,
|
||||||
OutboundDetectors=outbound_detectors,
|
OutboundDetectors=outbound_detectors,
|
||||||
InboundDetectors=inbound_detectors,
|
InboundDetectors=inbound_detectors,
|
||||||
OutboundOnMatch=outbound_on_match,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -329,7 +323,7 @@ def _parse_header_match(
|
|||||||
def _parse_dlp_block(
|
def _parse_dlp_block(
|
||||||
route_label: str,
|
route_label: str,
|
||||||
raw: object,
|
raw: object,
|
||||||
) -> tuple[tuple[str, ...] | None, tuple[str, ...] | None, str]:
|
) -> tuple[tuple[str, ...] | None, tuple[str, ...] | None]:
|
||||||
label = f"{route_label} dlp"
|
label = f"{route_label} dlp"
|
||||||
d = as_json_object(raw, label)
|
d = as_json_object(raw, label)
|
||||||
|
|
||||||
@@ -364,24 +358,13 @@ def _parse_dlp_block(
|
|||||||
outbound = _parse_field("outbound_detectors", OUTBOUND_DETECTOR_NAMES)
|
outbound = _parse_field("outbound_detectors", OUTBOUND_DETECTOR_NAMES)
|
||||||
inbound = _parse_field("inbound_detectors", INBOUND_DETECTOR_NAMES)
|
inbound = _parse_field("inbound_detectors", INBOUND_DETECTOR_NAMES)
|
||||||
|
|
||||||
on_match = ""
|
|
||||||
on_match_raw = d.get("outbound_on_match")
|
|
||||||
if on_match_raw is not None:
|
|
||||||
if not isinstance(on_match_raw, str) or on_match_raw not in OUTBOUND_ON_MATCH_VALUES:
|
|
||||||
raise ManifestError(
|
|
||||||
f"{label} outbound_on_match must be one of "
|
|
||||||
f"{', '.join(OUTBOUND_ON_MATCH_VALUES)} (got {on_match_raw!r})"
|
|
||||||
)
|
|
||||||
on_match = on_match_raw
|
|
||||||
|
|
||||||
for k in d:
|
for k in d:
|
||||||
if k not in ("outbound_detectors", "inbound_detectors", "outbound_on_match"):
|
if k not in ("outbound_detectors", "inbound_detectors"):
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"{label} has unknown key {k!r}; accepted keys are "
|
f"{label} has unknown key {k!r}; accepted keys are "
|
||||||
f"'outbound_detectors', 'inbound_detectors', "
|
f"'outbound_detectors', 'inbound_detectors'"
|
||||||
f"'outbound_on_match'"
|
|
||||||
)
|
)
|
||||||
return outbound, inbound, on_match
|
return outbound, inbound
|
||||||
|
|
||||||
|
|
||||||
LOG_LEVELS = frozenset({0, 1, 2})
|
LOG_LEVELS = frozenset({0, 1, 2})
|
||||||
|
|||||||
@@ -5,20 +5,16 @@ from __future__ import annotations
|
|||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .manifest import ManifestBottle
|
from .manifest import ManifestBottle, ManifestGitEntry
|
||||||
from .manifest_egress import ManifestEgressConfig
|
from .manifest_egress import ManifestEgressConfig
|
||||||
|
|
||||||
|
|
||||||
def resolve_bottles(raws: dict[str, dict[str, object]]) -> dict[str, ManifestBottle]:
|
def resolve_bottles(raws: dict[str, dict[str, object]]) -> dict[str, ManifestBottle]:
|
||||||
"""Apply `extends:` chains and return resolved ManifestBottle objects."""
|
"""Apply `extends:` chains and return resolved ManifestBottle objects."""
|
||||||
cache: dict[str, ManifestBottle] = {}
|
cache: dict[str, ManifestBottle] = {}
|
||||||
# Per-bottle effective git-gate.repos, as raw dicts keyed by repo name.
|
|
||||||
# Threaded alongside `cache` so a child can field-merge against its
|
|
||||||
# parent's repos without reconstructing them from parsed entries.
|
|
||||||
repos_cache: dict[str, dict[str, object]] = {}
|
|
||||||
for name in raws:
|
for name in raws:
|
||||||
if name not in cache:
|
if name not in cache:
|
||||||
_resolve_one_bottle(name, raws, cache, repos_cache, ())
|
_resolve_one_bottle(name, raws, cache, ())
|
||||||
return cache
|
return cache
|
||||||
|
|
||||||
|
|
||||||
@@ -26,7 +22,6 @@ def _resolve_one_bottle(
|
|||||||
name: str,
|
name: str,
|
||||||
raws: dict[str, dict[str, object]],
|
raws: dict[str, dict[str, object]],
|
||||||
cache: dict[str, ManifestBottle],
|
cache: dict[str, ManifestBottle],
|
||||||
repos_cache: dict[str, dict[str, object]],
|
|
||||||
seen: tuple[str, ...],
|
seen: tuple[str, ...],
|
||||||
) -> ManifestBottle:
|
) -> ManifestBottle:
|
||||||
from .manifest import ManifestBottle, ManifestError
|
from .manifest import ManifestBottle, ManifestError
|
||||||
@@ -46,7 +41,6 @@ def _resolve_one_bottle(
|
|||||||
if parent_name_raw is None:
|
if parent_name_raw is None:
|
||||||
bottle = ManifestBottle.from_dict(name, child_raw)
|
bottle = ManifestBottle.from_dict(name, child_raw)
|
||||||
cache[name] = bottle
|
cache[name] = bottle
|
||||||
repos_cache[name] = _resolve_repos_raw({}, child_raw)
|
|
||||||
return bottle
|
return bottle
|
||||||
|
|
||||||
if not isinstance(parent_name_raw, str):
|
if not isinstance(parent_name_raw, str):
|
||||||
@@ -66,33 +60,20 @@ def _resolve_one_bottle(
|
|||||||
f"bottle '{name}' extends '{parent_name}' which is not "
|
f"bottle '{name}' extends '{parent_name}' which is not "
|
||||||
f"defined. Available bottles: {avail}"
|
f"defined. Available bottles: {avail}"
|
||||||
)
|
)
|
||||||
parent = _resolve_one_bottle(
|
parent = _resolve_one_bottle(parent_name, raws, cache, seen + (name,))
|
||||||
parent_name, raws, cache, repos_cache, seen + (name,)
|
bottle = _merge_bottles(parent, child_raw, name)
|
||||||
)
|
|
||||||
merged_repos_raw = _resolve_repos_raw(repos_cache[parent_name], child_raw)
|
|
||||||
bottle = _merge_bottles(parent, child_raw, merged_repos_raw, name)
|
|
||||||
cache[name] = bottle
|
cache[name] = bottle
|
||||||
repos_cache[name] = merged_repos_raw
|
|
||||||
return bottle
|
return bottle
|
||||||
|
|
||||||
|
|
||||||
def _merge_bottles(
|
def _merge_bottles(
|
||||||
parent: ManifestBottle,
|
parent: ManifestBottle,
|
||||||
child_raw: dict[str, object],
|
child_raw: dict[str, object],
|
||||||
merged_repos_raw: dict[str, object],
|
|
||||||
name: str,
|
name: str,
|
||||||
) -> ManifestBottle:
|
) -> ManifestBottle:
|
||||||
"""Apply PRD 0025 merge rules."""
|
"""Apply PRD 0025 merge rules."""
|
||||||
from .manifest import ManifestBottle, ManifestGitUser
|
from .manifest import ManifestBottle, ManifestGitUser
|
||||||
from .manifest_egress import validate_egress_routes
|
from .manifest_egress import validate_egress_routes
|
||||||
from .manifest_util import as_json_object
|
|
||||||
|
|
||||||
# git-gate.repos: when the child declares repos, inject the already
|
|
||||||
# name-merged repo set (computed by _resolve_repos_raw) so the child
|
|
||||||
# parses with the full inherited+overridden list (issue #237).
|
|
||||||
if _child_declares_git_gate_repos(child_raw):
|
|
||||||
git_raw = as_json_object(child_raw.get("git-gate", {}), "child git-gate")
|
|
||||||
child_raw = {**child_raw, "git-gate": {**git_raw, "repos": merged_repos_raw}}
|
|
||||||
|
|
||||||
# Parse the child's declared fields into a ManifestBottle (with the
|
# Parse the child's declared fields into a ManifestBottle (with the
|
||||||
# usual defaults for anything missing). Validation runs the same
|
# usual defaults for anything missing). Validation runs the same
|
||||||
@@ -111,11 +92,11 @@ def _merge_bottles(
|
|||||||
email=child.git_user.email or parent.git_user.email,
|
email=child.git_user.email or parent.git_user.email,
|
||||||
)
|
)
|
||||||
|
|
||||||
# git-gate.repos: when declared, child.git already holds the merged
|
# git-gate.repos: missing means inherit; an explicit empty object
|
||||||
# set (an explicit empty dict clears parent, leaving child.git empty).
|
# clears; otherwise parent and child merge by UpstreamHost with
|
||||||
# When omitted, the parent's entries are inherited verbatim.
|
# child entries replacing duplicate hosts.
|
||||||
if _child_declares_git_gate_repos(child_raw):
|
if _child_declares_git_gate_repos(child_raw):
|
||||||
merged_git = child.git
|
merged_git = _merge_git_remotes(parent.git, child.git) if child.git else ()
|
||||||
else:
|
else:
|
||||||
merged_git = parent.git
|
merged_git = parent.git
|
||||||
|
|
||||||
@@ -149,45 +130,6 @@ def _merge_bottles(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _resolve_repos_raw(
|
|
||||||
parent_repos: dict[str, object],
|
|
||||||
child_raw: dict[str, object],
|
|
||||||
) -> dict[str, object]:
|
|
||||||
"""Compute a bottle's effective git-gate.repos as raw dicts.
|
|
||||||
|
|
||||||
Repos are keyed by name. When the child omits git-gate.repos it
|
|
||||||
inherits the parent's set verbatim; an explicit empty dict clears it.
|
|
||||||
Otherwise parent and child unite by name, with same-name entries
|
|
||||||
field-merged (parent fields are defaults, child fields win)."""
|
|
||||||
from .manifest_util import as_json_object
|
|
||||||
|
|
||||||
if not _child_declares_git_gate_repos(child_raw):
|
|
||||||
return parent_repos
|
|
||||||
child_repos = _declared_repos_raw(child_raw)
|
|
||||||
if not child_repos:
|
|
||||||
return {}
|
|
||||||
# Parent entries keep their order; child-only names are appended.
|
|
||||||
names = list(parent_repos) + [n for n in child_repos if n not in parent_repos]
|
|
||||||
return {
|
|
||||||
name: {
|
|
||||||
**as_json_object(parent_repos.get(name, {}), "parent git-gate repo"),
|
|
||||||
**as_json_object(child_repos.get(name, {}), "child git-gate repo"),
|
|
||||||
}
|
|
||||||
for name in names
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
def _declared_repos_raw(child_raw: dict[str, object]) -> dict[str, object]:
|
|
||||||
"""Return the child's explicitly declared git-gate.repos as raw dicts,
|
|
||||||
or an empty dict when none are declared."""
|
|
||||||
from .manifest_util import as_json_object
|
|
||||||
|
|
||||||
if not _child_declares_git_gate_repos(child_raw):
|
|
||||||
return {}
|
|
||||||
git_raw = as_json_object(child_raw.get("git-gate", {}), "child git-gate")
|
|
||||||
return as_json_object(git_raw.get("repos", {}), "child git-gate.repos")
|
|
||||||
|
|
||||||
|
|
||||||
def _child_declares_git_gate_repos(child_raw: dict[str, object]) -> bool:
|
def _child_declares_git_gate_repos(child_raw: dict[str, object]) -> bool:
|
||||||
from .manifest_util import as_json_object
|
from .manifest_util import as_json_object
|
||||||
|
|
||||||
@@ -198,6 +140,16 @@ def _child_declares_git_gate_repos(child_raw: dict[str, object]) -> bool:
|
|||||||
return "repos" in git_obj
|
return "repos" in git_obj
|
||||||
|
|
||||||
|
|
||||||
|
def _merge_git_remotes(
|
||||||
|
parent: tuple[ManifestGitEntry, ...],
|
||||||
|
child: tuple[ManifestGitEntry, ...],
|
||||||
|
) -> tuple[ManifestGitEntry, ...]:
|
||||||
|
by_host = {entry.UpstreamHost: entry for entry in parent}
|
||||||
|
for entry in child:
|
||||||
|
by_host[entry.UpstreamHost] = entry
|
||||||
|
return tuple(by_host.values())
|
||||||
|
|
||||||
|
|
||||||
def _merge_egress(
|
def _merge_egress(
|
||||||
parent: ManifestEgressConfig,
|
parent: ManifestEgressConfig,
|
||||||
child: ManifestEgressConfig,
|
child: ManifestEgressConfig,
|
||||||
|
|||||||
+66
-73
@@ -4,6 +4,7 @@ from __future__ import annotations
|
|||||||
|
|
||||||
import re
|
import re
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
from .manifest_util import ManifestError, as_json_object
|
from .manifest_util import ManifestError, as_json_object
|
||||||
|
|
||||||
@@ -12,8 +13,6 @@ from .manifest_util import ManifestError, as_json_object
|
|||||||
# defence; this regex is belt-and-suspenders and documents intent).
|
# defence; this regex is belt-and-suspenders and documents intent).
|
||||||
_GIT_NAME_RE = re.compile(r"^[A-Za-z0-9._-]+$")
|
_GIT_NAME_RE = re.compile(r"^[A-Za-z0-9._-]+$")
|
||||||
|
|
||||||
_KEY_PROVIDERS = {"static", "gitea"}
|
|
||||||
|
|
||||||
|
|
||||||
def _opt_str(value: object, label: str) -> str:
|
def _opt_str(value: object, label: str) -> str:
|
||||||
if value is None:
|
if value is None:
|
||||||
@@ -70,22 +69,20 @@ def validate_unique_git_names(bottle_name: str, git: tuple[ManifestGitEntry, ...
|
|||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
class ManifestKeyConfig:
|
class ManifestProvisionedKeyConfig:
|
||||||
"""Configuration for a repo's SSH key in git-gate.repos.
|
"""Configuration for automatic deploy-key lifecycle management
|
||||||
|
(PRD 0048). Used when a git-gate.repos entry opts out of a
|
||||||
|
static identity file and instead wants a fresh SSH keypair
|
||||||
|
generated at spin-up and revoked at teardown.
|
||||||
|
|
||||||
`provider` is either `"static"` (a pre-existing key on the host) or
|
`provider` names the contrib sub-package to load (e.g. `gitea`).
|
||||||
`"gitea"` (automatic deploy-key lifecycle via the Gitea API).
|
`token_env` is the name of a host-side env var carrying the API
|
||||||
|
token; the value is read at provision time, never stored on the
|
||||||
For `static`: `path` is the host-side absolute path to the SSH private key.
|
plan. `api_url` is the forge's HTTP API root; if empty, it is
|
||||||
|
derived from the upstream URL's host at provision time."""
|
||||||
For `gitea`: `forge_token_env` is the name of a host-side env var
|
|
||||||
carrying the Gitea API token; the value is read at provision time,
|
|
||||||
never stored on the plan. `api_url` is the forge's HTTP API root; if
|
|
||||||
empty, it is derived from the upstream URL's host at provision time."""
|
|
||||||
|
|
||||||
provider: str
|
provider: str
|
||||||
path: str = ""
|
token_env: str
|
||||||
forge_token_env: str = ""
|
|
||||||
api_url: str = ""
|
api_url: str = ""
|
||||||
|
|
||||||
|
|
||||||
@@ -102,16 +99,15 @@ class ManifestGitEntry:
|
|||||||
stashed in the `Upstream*` fields so the git-gate render step
|
stashed in the `Upstream*` fields so the git-gate render step
|
||||||
doesn't have to re-parse.
|
doesn't have to re-parse.
|
||||||
|
|
||||||
Manifest source: `git-gate.repos.<Name>` (PRD 0047/0048). A `key`
|
Manifest source: `git-gate.repos.<Name>` (PRD 0047/0048). Exactly
|
||||||
block is required; `key.provider` is `"static"` or `"gitea"`. For
|
one of `identity` (static key path) or `provisioned_key` (automatic
|
||||||
`static`, `IdentityFile` is populated at parse time from `key.path`.
|
lifecycle) must be present. The internal field names are stable."""
|
||||||
For `gitea`, `IdentityFile` is populated at provision time."""
|
|
||||||
|
|
||||||
Name: str
|
Name: str
|
||||||
Upstream: str
|
Upstream: str
|
||||||
Key: ManifestKeyConfig = ManifestKeyConfig(provider="")
|
|
||||||
IdentityFile: str = ""
|
IdentityFile: str = ""
|
||||||
KnownHostKey: str = ""
|
KnownHostKey: str = ""
|
||||||
|
ProvisionedKey: Optional[ManifestProvisionedKeyConfig] = None
|
||||||
RemoteKey: str = ""
|
RemoteKey: str = ""
|
||||||
UpstreamUser: str = ""
|
UpstreamUser: str = ""
|
||||||
UpstreamHost: str = ""
|
UpstreamHost: str = ""
|
||||||
@@ -124,8 +120,8 @@ class ManifestGitEntry:
|
|||||||
) -> "ManifestGitEntry":
|
) -> "ManifestGitEntry":
|
||||||
"""Parse one entry from `git-gate.repos.<repo_name>`.
|
"""Parse one entry from `git-gate.repos.<repo_name>`.
|
||||||
|
|
||||||
YAML keys: `url` (required), `key` (required object with
|
YAML keys: `url` (required), exactly one of `identity` or
|
||||||
`provider`, and provider-specific fields), `host_key` (optional).
|
`provisioned_key` (required), `host_key` (optional).
|
||||||
The repo_name becomes `Name`."""
|
The repo_name becomes `Name`."""
|
||||||
if not repo_name:
|
if not repo_name:
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
@@ -139,10 +135,10 @@ class ManifestGitEntry:
|
|||||||
label = f"git-gate.repos[{repo_name!r}]"
|
label = f"git-gate.repos[{repo_name!r}]"
|
||||||
d = as_json_object(raw, f"bottle '{bottle_name}' {label}")
|
d = as_json_object(raw, f"bottle '{bottle_name}' {label}")
|
||||||
for k in d:
|
for k in d:
|
||||||
if k not in {"url", "key", "host_key"}:
|
if k not in {"url", "identity", "provisioned_key", "host_key"}:
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"bottle '{bottle_name}' {label} has unknown key {k!r}; "
|
f"bottle '{bottle_name}' {label} has unknown key {k!r}; "
|
||||||
f"allowed: url, key, host_key"
|
f"allowed: url, identity, provisioned_key, host_key"
|
||||||
)
|
)
|
||||||
upstream = d.get("url")
|
upstream = d.get("url")
|
||||||
if not isinstance(upstream, str) or not upstream:
|
if not isinstance(upstream, str) or not upstream:
|
||||||
@@ -150,13 +146,32 @@ class ManifestGitEntry:
|
|||||||
f"bottle '{bottle_name}' {label} missing required string field 'url'"
|
f"bottle '{bottle_name}' {label} missing required string field 'url'"
|
||||||
)
|
)
|
||||||
|
|
||||||
if "key" not in d:
|
has_identity = "identity" in d
|
||||||
|
has_provisioned = "provisioned_key" in d
|
||||||
|
if has_identity and has_provisioned:
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"bottle '{bottle_name}' {label} missing required 'key' block"
|
f"bottle '{bottle_name}' {label} must set exactly one of "
|
||||||
|
f"'identity' or 'provisioned_key'; got both."
|
||||||
|
)
|
||||||
|
if not has_identity and not has_provisioned:
|
||||||
|
raise ManifestError(
|
||||||
|
f"bottle '{bottle_name}' {label} must set exactly one of "
|
||||||
|
f"'identity' or 'provisioned_key'; got neither."
|
||||||
)
|
)
|
||||||
key_config = _parse_key_config(bottle_name, label, d["key"])
|
|
||||||
|
|
||||||
ident = key_config.path if key_config.provider == "static" else ""
|
ident = ""
|
||||||
|
provisioned_key: Optional[ManifestProvisionedKeyConfig] = None
|
||||||
|
if has_identity:
|
||||||
|
raw_ident = d.get("identity")
|
||||||
|
if not isinstance(raw_ident, str) or not raw_ident:
|
||||||
|
raise ManifestError(
|
||||||
|
f"bottle '{bottle_name}' {label} 'identity' must be a non-empty string"
|
||||||
|
)
|
||||||
|
ident = raw_ident
|
||||||
|
else:
|
||||||
|
provisioned_key = _parse_provisioned_key_config(
|
||||||
|
bottle_name, label, d["provisioned_key"]
|
||||||
|
)
|
||||||
|
|
||||||
khk = _opt_str(
|
khk = _opt_str(
|
||||||
d.get("host_key"),
|
d.get("host_key"),
|
||||||
@@ -168,9 +183,9 @@ class ManifestGitEntry:
|
|||||||
return cls(
|
return cls(
|
||||||
Name=repo_name,
|
Name=repo_name,
|
||||||
Upstream=upstream,
|
Upstream=upstream,
|
||||||
Key=key_config,
|
|
||||||
IdentityFile=ident,
|
IdentityFile=ident,
|
||||||
KnownHostKey=khk,
|
KnownHostKey=khk,
|
||||||
|
ProvisionedKey=provisioned_key,
|
||||||
RemoteKey=host,
|
RemoteKey=host,
|
||||||
UpstreamUser=user,
|
UpstreamUser=user,
|
||||||
UpstreamHost=host,
|
UpstreamHost=host,
|
||||||
@@ -179,60 +194,38 @@ class ManifestGitEntry:
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _parse_key_config(
|
def _parse_provisioned_key_config(
|
||||||
bottle_name: str, label: str, raw: object
|
bottle_name: str, label: str, raw: object
|
||||||
) -> ManifestKeyConfig:
|
) -> ManifestProvisionedKeyConfig:
|
||||||
d = as_json_object(raw, f"bottle '{bottle_name}' {label}.key")
|
d = as_json_object(raw, f"bottle '{bottle_name}' {label}.provisioned_key")
|
||||||
|
for k in d:
|
||||||
|
if k not in {"provider", "token_env", "api_url"}:
|
||||||
|
raise ManifestError(
|
||||||
|
f"bottle '{bottle_name}' {label}.provisioned_key has unknown key {k!r}; "
|
||||||
|
f"allowed: provider, token_env, api_url"
|
||||||
|
)
|
||||||
provider = d.get("provider")
|
provider = d.get("provider")
|
||||||
if not isinstance(provider, str) or not provider:
|
if not isinstance(provider, str) or not provider:
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"bottle '{bottle_name}' {label}.key missing required "
|
f"bottle '{bottle_name}' {label}.provisioned_key missing required "
|
||||||
f"string field 'provider'"
|
f"string field 'provider'"
|
||||||
)
|
)
|
||||||
if provider not in _KEY_PROVIDERS:
|
token_env = d.get("token_env")
|
||||||
|
if not isinstance(token_env, str) or not token_env:
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"bottle '{bottle_name}' {label}.key provider {provider!r} is unknown; "
|
f"bottle '{bottle_name}' {label}.provisioned_key missing required "
|
||||||
f"allowed: {', '.join(sorted(_KEY_PROVIDERS))}"
|
f"string field 'token_env'"
|
||||||
)
|
)
|
||||||
|
api_url_raw = d.get("api_url", "")
|
||||||
if provider == "gitea":
|
if not isinstance(api_url_raw, str):
|
||||||
for k in d:
|
|
||||||
if k not in {"provider", "forge_token_env", "api_url"}:
|
|
||||||
raise ManifestError(
|
|
||||||
f"bottle '{bottle_name}' {label}.key has unknown key {k!r} "
|
|
||||||
f"for provider 'gitea'; allowed: provider, forge_token_env, api_url"
|
|
||||||
)
|
|
||||||
forge_token_env = d.get("forge_token_env")
|
|
||||||
if not isinstance(forge_token_env, str) or not forge_token_env:
|
|
||||||
raise ManifestError(
|
|
||||||
f"bottle '{bottle_name}' {label}.key missing required "
|
|
||||||
f"string field 'forge_token_env' for provider 'gitea'"
|
|
||||||
)
|
|
||||||
api_url_raw = d.get("api_url", "")
|
|
||||||
if not isinstance(api_url_raw, str):
|
|
||||||
raise ManifestError(
|
|
||||||
f"bottle '{bottle_name}' {label}.key 'api_url' must be a string"
|
|
||||||
)
|
|
||||||
return ManifestKeyConfig(
|
|
||||||
provider=provider,
|
|
||||||
forge_token_env=forge_token_env,
|
|
||||||
api_url=api_url_raw,
|
|
||||||
)
|
|
||||||
|
|
||||||
# provider == "static"
|
|
||||||
for k in d:
|
|
||||||
if k not in {"provider", "path"}:
|
|
||||||
raise ManifestError(
|
|
||||||
f"bottle '{bottle_name}' {label}.key has unknown key {k!r} "
|
|
||||||
f"for provider 'static'; allowed: provider, path"
|
|
||||||
)
|
|
||||||
path = d.get("path")
|
|
||||||
if not isinstance(path, str) or not path:
|
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
f"bottle '{bottle_name}' {label}.key missing required "
|
f"bottle '{bottle_name}' {label}.provisioned_key 'api_url' must be a string"
|
||||||
f"string field 'path' for provider 'static'"
|
|
||||||
)
|
)
|
||||||
return ManifestKeyConfig(provider=provider, path=path)
|
return ManifestProvisionedKeyConfig(
|
||||||
|
provider=provider,
|
||||||
|
token_env=token_env,
|
||||||
|
api_url=api_url_raw,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
@dataclass(frozen=True)
|
@dataclass(frozen=True)
|
||||||
|
|||||||
@@ -8,19 +8,21 @@ from typing import TYPE_CHECKING
|
|||||||
from .log import warn
|
from .log import warn
|
||||||
from .manifest_schema import (
|
from .manifest_schema import (
|
||||||
entity_name_from_path,
|
entity_name_from_path,
|
||||||
|
validate_agent_frontmatter_keys,
|
||||||
validate_bottle_frontmatter_keys,
|
validate_bottle_frontmatter_keys,
|
||||||
)
|
)
|
||||||
from .manifest_util import ManifestError
|
|
||||||
from .yaml_subset import YamlSubsetError, parse_frontmatter
|
from .yaml_subset import YamlSubsetError, parse_frontmatter
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
from .manifest import ManifestBottle
|
from .manifest import ManifestAgent, ManifestBottle
|
||||||
|
|
||||||
|
|
||||||
def check_stale_json(dir_path: Path, md_dir: Path, label: str) -> None:
|
def check_stale_json(dir_path: Path, md_dir: Path, label: str) -> None:
|
||||||
"""Die if `<dir_path>/bot-bottle.json` exists but `md_dir` does
|
"""Die if `<dir_path>/bot-bottle.json` exists but `md_dir` does
|
||||||
not. The manifest format changed in PRD 0011 and we do not want
|
not. The manifest format changed in PRD 0011 and we do not want
|
||||||
to silently leave the JSON content unused."""
|
to silently leave the JSON content unused."""
|
||||||
|
from .manifest import ManifestError
|
||||||
|
|
||||||
legacy = dir_path / "bot-bottle.json"
|
legacy = dir_path / "bot-bottle.json"
|
||||||
if legacy.is_file() and not md_dir.exists():
|
if legacy.is_file() and not md_dir.exists():
|
||||||
raise ManifestError(
|
raise ManifestError(
|
||||||
@@ -32,13 +34,48 @@ def check_stale_json(dir_path: Path, md_dir: Path, label: str) -> None:
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def scan_agent_names(agents_dir: Path) -> dict[str, Path]:
|
def load_bottles_from_dir(bottles_dir: Path) -> dict[str, ManifestBottle]:
|
||||||
"""Scan `<agents_dir>/*.md` for valid filenames and return `{name: path}`.
|
"""Walk `<bottles_dir>/*.md`, parse each as a bottle, and return
|
||||||
|
`{name: Bottle}`. Missing dir returns an empty dict."""
|
||||||
|
from .manifest import ManifestError
|
||||||
|
from .manifest_extends import resolve_bottles
|
||||||
|
|
||||||
No file content is read. Invalid filenames are skipped with a warning."""
|
raws: dict[str, dict[str, object]] = {}
|
||||||
result: dict[str, Path] = {}
|
if not bottles_dir.is_dir():
|
||||||
|
return {}
|
||||||
|
for path in sorted(bottles_dir.glob("*.md")):
|
||||||
|
name = entity_name_from_path(path)
|
||||||
|
if name is None:
|
||||||
|
warn(
|
||||||
|
f"skipping {path}: filename must match "
|
||||||
|
f"[a-z][a-z0-9-]*.md (got {path.name!r})"
|
||||||
|
)
|
||||||
|
continue
|
||||||
|
try:
|
||||||
|
fm, _body = parse_frontmatter(path.read_text())
|
||||||
|
except OSError as e:
|
||||||
|
raise ManifestError(f"could not read {path}: {e}") from e
|
||||||
|
except YamlSubsetError as e:
|
||||||
|
raise ManifestError(f"{path}: {e}") from e
|
||||||
|
validate_bottle_frontmatter_keys(path, fm.keys())
|
||||||
|
raws[name] = fm
|
||||||
|
return resolve_bottles(raws)
|
||||||
|
|
||||||
|
|
||||||
|
def load_agents_from_dir(
|
||||||
|
agents_dir: Path,
|
||||||
|
bottle_names: set[str],
|
||||||
|
*,
|
||||||
|
source: str, # noqa: F841 — unused, but required by interface
|
||||||
|
) -> dict[str, ManifestAgent]:
|
||||||
|
"""Walk `<agents_dir>/*.md`, parse each as an agent, and return
|
||||||
|
`{name: Agent}`. The Markdown body becomes the agent's prompt.
|
||||||
|
Missing dir returns an empty dict."""
|
||||||
|
from .manifest import ManifestAgent, ManifestError
|
||||||
|
|
||||||
|
out: dict[str, ManifestAgent] = {}
|
||||||
if not agents_dir.is_dir():
|
if not agents_dir.is_dir():
|
||||||
return result
|
return out
|
||||||
for path in sorted(agents_dir.glob("*.md")):
|
for path in sorted(agents_dir.glob("*.md")):
|
||||||
name = entity_name_from_path(path)
|
name = entity_name_from_path(path)
|
||||||
if name is None:
|
if name is None:
|
||||||
@@ -47,45 +84,22 @@ def scan_agent_names(agents_dir: Path) -> dict[str, Path]:
|
|||||||
f"[a-z][a-z0-9-]*.md (got {path.name!r})"
|
f"[a-z][a-z0-9-]*.md (got {path.name!r})"
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
result[name] = path
|
|
||||||
return result
|
|
||||||
|
|
||||||
|
|
||||||
def load_bottle_chain_from_dir(
|
|
||||||
bottle_name: str, bottles_dir: Path
|
|
||||||
) -> ManifestBottle:
|
|
||||||
"""Load `bottle_name` and its full `extends:` chain from `bottles_dir`,
|
|
||||||
returning the resolved ManifestBottle.
|
|
||||||
|
|
||||||
Only the files in the extends chain are read — unrelated bottle files
|
|
||||||
are never touched. Raises ManifestError on parse or validation failure."""
|
|
||||||
from .manifest_extends import resolve_bottles
|
|
||||||
|
|
||||||
raws: dict[str, dict[str, object]] = {}
|
|
||||||
to_load = [bottle_name]
|
|
||||||
while to_load:
|
|
||||||
name = to_load.pop()
|
|
||||||
if name in raws:
|
|
||||||
continue
|
|
||||||
path = bottles_dir / f"{name}.md"
|
|
||||||
if not path.is_file():
|
|
||||||
avail = ", ".join(
|
|
||||||
p.stem for p in sorted(bottles_dir.glob("*.md")) if p.is_file()
|
|
||||||
) or "(none)"
|
|
||||||
raise ManifestError(
|
|
||||||
f"bottle '{name}' not found at {path}. "
|
|
||||||
f"Available: {avail}"
|
|
||||||
)
|
|
||||||
try:
|
try:
|
||||||
fm, _body = parse_frontmatter(path.read_text())
|
fm, body = parse_frontmatter(path.read_text())
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
raise ManifestError(f"could not read {path}: {e}") from e
|
raise ManifestError(f"could not read {path}: {e}") from e
|
||||||
except YamlSubsetError as e:
|
except YamlSubsetError as e:
|
||||||
raise ManifestError(f"{path}: {e}") from e
|
raise ManifestError(f"{path}: {e}") from e
|
||||||
validate_bottle_frontmatter_keys(path, fm.keys())
|
validate_agent_frontmatter_keys(path, fm.keys())
|
||||||
raws[name] = dict(fm)
|
# Build the dict Agent.from_dict expects. The body becomes
|
||||||
parent = fm.get("extends")
|
# prompt; Claude Code passthrough fields stay in fm and get
|
||||||
if isinstance(parent, str):
|
# ignored by Agent.from_dict (reads bottle/skills/git-gate/prompt).
|
||||||
to_load.append(parent)
|
agent_dict: dict[str, object] = {
|
||||||
|
"bottle": fm.get("bottle"),
|
||||||
return resolve_bottles(raws)[bottle_name]
|
"skills": fm.get("skills", []),
|
||||||
|
"prompt": body.strip(),
|
||||||
|
}
|
||||||
|
if "git-gate" in fm:
|
||||||
|
agent_dict["git-gate"] = fm["git-gate"]
|
||||||
|
out[name] = ManifestAgent.from_dict(name, agent_dict, bottle_names)
|
||||||
|
return out
|
||||||
|
|||||||
@@ -59,7 +59,6 @@ class _DaemonSpec:
|
|||||||
# reads to inject `Authorization` headers on configured routes;
|
# reads to inject `Authorization` headers on configured routes;
|
||||||
# no other daemon in the bundle should see these values.
|
# no other daemon in the bundle should see these values.
|
||||||
_EGRESS_ONLY_ENV_PREFIXES: tuple[str, ...] = ("EGRESS_TOKEN_",)
|
_EGRESS_ONLY_ENV_PREFIXES: tuple[str, ...] = ("EGRESS_TOKEN_",)
|
||||||
_READY_GATED_DAEMONS: tuple[str, ...] = ("git-gate", "git-http")
|
|
||||||
|
|
||||||
|
|
||||||
def _env_for_daemon(name: str, base_env: dict[str, str]) -> dict[str, str]:
|
def _env_for_daemon(name: str, base_env: dict[str, str]) -> dict[str, str]:
|
||||||
@@ -83,22 +82,6 @@ _DAEMONS: tuple[_DaemonSpec, ...] = (
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _argv_for_daemon(name: str, argv: Sequence[str], env: dict[str, str]) -> list[str]:
|
|
||||||
ready_file = env.get("BOT_BOTTLE_GIT_GATE_READY_FILE", "").strip()
|
|
||||||
if name not in _READY_GATED_DAEMONS or not ready_file:
|
|
||||||
return list(argv)
|
|
||||||
return [
|
|
||||||
"/bin/sh",
|
|
||||||
"-c",
|
|
||||||
"while [ ! -f \"$BOT_BOTTLE_GIT_GATE_READY_FILE\" ]; do "
|
|
||||||
"sleep 0.1; "
|
|
||||||
"done; "
|
|
||||||
"exec \"$@\"",
|
|
||||||
name,
|
|
||||||
*argv,
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
def _selected_daemons(
|
def _selected_daemons(
|
||||||
env: dict[str, str],
|
env: dict[str, str],
|
||||||
all_daemons: Sequence[_DaemonSpec] | None = None,
|
all_daemons: Sequence[_DaemonSpec] | None = None,
|
||||||
@@ -135,13 +118,12 @@ def _pump(name: str, stream: IO[bytes]) -> None:
|
|||||||
|
|
||||||
|
|
||||||
def _spawn(spec: _DaemonSpec) -> subprocess.Popen[bytes]:
|
def _spawn(spec: _DaemonSpec) -> subprocess.Popen[bytes]:
|
||||||
env = _env_for_daemon(spec.name, dict(os.environ))
|
|
||||||
proc = subprocess.Popen(
|
proc = subprocess.Popen(
|
||||||
_argv_for_daemon(spec.name, spec.argv, env),
|
list(spec.argv),
|
||||||
stdout=subprocess.PIPE,
|
stdout=subprocess.PIPE,
|
||||||
stderr=subprocess.STDOUT,
|
stderr=subprocess.STDOUT,
|
||||||
bufsize=0,
|
bufsize=0,
|
||||||
env=env,
|
env=_env_for_daemon(spec.name, dict(os.environ)),
|
||||||
)
|
)
|
||||||
threading.Thread(
|
threading.Thread(
|
||||||
target=_pump, args=(spec.name, proc.stdout), daemon=True
|
target=_pump, args=(spec.name, proc.stdout), daemon=True
|
||||||
|
|||||||
+12
-27
@@ -5,7 +5,7 @@ queue/audit support. The sidecar (bot_bottle.supervise_server)
|
|||||||
sits on the bottle's internal network and exposes three MCP tools the
|
sits on the bottle's internal network and exposes three MCP tools the
|
||||||
agent calls when it hits a stuck-recovery category:
|
agent calls when it hits a stuck-recovery category:
|
||||||
|
|
||||||
* egress-block / allow — agent proposes a new routes.yaml
|
* egress-block — agent proposes a new routes.yaml
|
||||||
* capability-block — agent proposes a new agent Dockerfile
|
* capability-block — agent proposes a new agent Dockerfile
|
||||||
|
|
||||||
Each tool call: the agent passes the full proposed file plus a
|
Each tool call: the agent passes the full proposed file plus a
|
||||||
@@ -49,40 +49,29 @@ SUPERVISE_HOSTNAME = "supervise"
|
|||||||
SUPERVISE_PORT = 9100
|
SUPERVISE_PORT = 9100
|
||||||
|
|
||||||
TOOL_CAPABILITY_BLOCK = "capability-block"
|
TOOL_CAPABILITY_BLOCK = "capability-block"
|
||||||
TOOL_EGRESS_BLOCK = "egress-block"
|
|
||||||
TOOL_EGRESS_ALLOW = "egress-allow"
|
|
||||||
TOOL_GITLEAKS_ALLOW = "gitleaks-allow"
|
TOOL_GITLEAKS_ALLOW = "gitleaks-allow"
|
||||||
# Written directly by the egress addon (not an agent-facing MCP tool) when an
|
|
||||||
# outbound DLP token block is routed to the operator for override (PRD 0062).
|
|
||||||
TOOL_EGRESS_TOKEN_ALLOW = "egress-token-allow"
|
|
||||||
TOOL_LIST_EGRESS_ROUTES = "list-egress-routes"
|
TOOL_LIST_EGRESS_ROUTES = "list-egress-routes"
|
||||||
TOOLS: tuple[str, ...] = (
|
TOOLS: tuple[str, ...] = (
|
||||||
TOOL_EGRESS_ALLOW,
|
|
||||||
TOOL_CAPABILITY_BLOCK,
|
TOOL_CAPABILITY_BLOCK,
|
||||||
TOOL_EGRESS_BLOCK,
|
|
||||||
TOOL_GITLEAKS_ALLOW,
|
TOOL_GITLEAKS_ALLOW,
|
||||||
TOOL_EGRESS_TOKEN_ALLOW,
|
|
||||||
TOOL_LIST_EGRESS_ROUTES,
|
TOOL_LIST_EGRESS_ROUTES,
|
||||||
)
|
)
|
||||||
|
|
||||||
# The supervise sidecar uses these to query egress's
|
# The supervise sidecar uses these to query egress's
|
||||||
# introspection endpoint for the `list-egress-routes` MCP
|
# introspection endpoint for the `list-egress-routes` MCP
|
||||||
# tool. The hostname + port match egress's docker network
|
# tool. The hostname + port match egress's docker network
|
||||||
# listen port (see backend.docker.egress.EGRESS_PORT). The supervise
|
# alias + listen port (see bot_bottle.egress.EGRESS_HOSTNAME
|
||||||
# daemon runs inside the sidecar bundle alongside egress, so loopback
|
# and backend.docker.egress.EGRESS_PORT — the values
|
||||||
# is the stable address across docker, smolmachines, and Apple
|
# are inlined here so the in-container supervise_server doesn't
|
||||||
# Container backends.
|
# need to import the egress package).
|
||||||
EGRESS_FORWARD_PROXY = "http://127.0.0.1:9099"
|
EGRESS_FORWARD_PROXY = "http://egress:9099"
|
||||||
EGRESS_INTROSPECT_URL = "http://_egress.local/allowlist"
|
EGRESS_INTROSPECT_URL = "http://_egress.local/allowlist"
|
||||||
|
|
||||||
# capability-block has no on-disk config the operator edits in place
|
# capability-block has no on-disk config the operator edits in place
|
||||||
# (the Dockerfile is rebuilt, not patched), so it has no audit log
|
# (the Dockerfile is rebuilt, not patched), so it has no audit log
|
||||||
# here — those changes are captured by git history + the rebuild record
|
# here — those changes are captured by git history + the rebuild
|
||||||
# laid down in PRD 0016.
|
# record laid down in PRD 0016. egress-block was removed in issue #198.
|
||||||
COMPONENT_FOR_TOOL: dict[str, str] = {
|
COMPONENT_FOR_TOOL: dict[str, str] = {}
|
||||||
TOOL_EGRESS_ALLOW: "egress",
|
|
||||||
TOOL_EGRESS_BLOCK: "egress",
|
|
||||||
}
|
|
||||||
|
|
||||||
STATUS_APPROVED = "approved"
|
STATUS_APPROVED = "approved"
|
||||||
STATUS_MODIFIED = "modified"
|
STATUS_MODIFIED = "modified"
|
||||||
@@ -444,9 +433,9 @@ def sha256_hex(content: str) -> str:
|
|||||||
# Dockerfile and propose modifications.
|
# Dockerfile and propose modifications.
|
||||||
#
|
#
|
||||||
# routes.yaml + allowlist used to live here too; PRD 0017 chunk 3
|
# routes.yaml + allowlist used to live here too; PRD 0017 chunk 3
|
||||||
# moved them behind the `list-egress-routes` MCP tool (live state
|
# moved them behind the `list-egress-routes` MCP tool (live
|
||||||
# from egress's introspection endpoint) so the agent always sees
|
# state from egress's introspection endpoint) so the agent
|
||||||
# current data rather than a launch-time snapshot.
|
# always sees current data rather than a launch-time snapshot.
|
||||||
CURRENT_CONFIG_DOCKERFILE = "Dockerfile"
|
CURRENT_CONFIG_DOCKERFILE = "Dockerfile"
|
||||||
|
|
||||||
|
|
||||||
@@ -559,10 +548,6 @@ __all__ = [
|
|||||||
"EGRESS_FORWARD_PROXY",
|
"EGRESS_FORWARD_PROXY",
|
||||||
"EGRESS_INTROSPECT_URL",
|
"EGRESS_INTROSPECT_URL",
|
||||||
"TOOL_CAPABILITY_BLOCK",
|
"TOOL_CAPABILITY_BLOCK",
|
||||||
"TOOL_EGRESS_ALLOW",
|
|
||||||
"TOOL_EGRESS_BLOCK",
|
|
||||||
"TOOL_GITLEAKS_ALLOW",
|
|
||||||
"TOOL_EGRESS_TOKEN_ALLOW",
|
|
||||||
"TOOL_LIST_EGRESS_ROUTES",
|
"TOOL_LIST_EGRESS_ROUTES",
|
||||||
"archive_proposal",
|
"archive_proposal",
|
||||||
"audit_dir",
|
"audit_dir",
|
||||||
|
|||||||
+10
-115
@@ -1,8 +1,8 @@
|
|||||||
"""Supervise sidecar HTTP server (PRD 0013).
|
"""Supervise sidecar HTTP server (PRD 0013).
|
||||||
|
|
||||||
Per-bottle MCP server exposing tools the agent calls to propose config
|
Per-bottle MCP server exposing tools the agent calls to propose config
|
||||||
changes when stuck. The tools are `allow`, `egress-block`,
|
changes when stuck. The egress-block tool was removed in issue #198;
|
||||||
`capability-block`, and `list-egress-routes`.
|
the remaining tools are `capability-block` and `list-egress-routes`.
|
||||||
|
|
||||||
Each queued tool call:
|
Each queued tool call:
|
||||||
|
|
||||||
@@ -44,15 +44,9 @@ import urllib.request
|
|||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
try:
|
# Same-directory import inside the bundle container; `supervise.py`
|
||||||
# Same-directory imports inside the bundle container; these files are
|
# is COPYed alongside this file by Dockerfile.sidecars.
|
||||||
# COPYed flat under /app by Dockerfile.sidecars.
|
import supervise as _sv
|
||||||
from egress_addon_core import LOG_OFF, load_config
|
|
||||||
import supervise as _sv
|
|
||||||
except ModuleNotFoundError:
|
|
||||||
# Package imports for host-side tests and tooling.
|
|
||||||
from .egress_addon_core import LOG_OFF, load_config
|
|
||||||
from . import supervise as _sv
|
|
||||||
|
|
||||||
|
|
||||||
# --- JSON-RPC / MCP plumbing ----------------------------------------------
|
# --- JSON-RPC / MCP plumbing ----------------------------------------------
|
||||||
@@ -148,9 +142,8 @@ TOOL_DEFINITIONS: list[dict[str, object]] = [
|
|||||||
"allowlist. Returns JSON with one entry per allowed host, "
|
"allowlist. Returns JSON with one entry per allowed host, "
|
||||||
"each carrying its matches rules (if any) and whether "
|
"each carrying its matches rules (if any) and whether "
|
||||||
"the proxy injects Authorization for the route. Use this "
|
"the proxy injects Authorization for the route. Use this "
|
||||||
"before composing an `egress-allow` or `egress-block` proposal so "
|
"before composing an `egress-block` proposal so the new "
|
||||||
"the new routes file extends the live one rather than "
|
"routes file extends the live one rather than replacing it."
|
||||||
"replacing it."
|
|
||||||
),
|
),
|
||||||
"inputSchema": {
|
"inputSchema": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
@@ -158,90 +151,6 @@ TOOL_DEFINITIONS: list[dict[str, object]] = [
|
|||||||
"additionalProperties": False,
|
"additionalProperties": False,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": _sv.TOOL_EGRESS_ALLOW,
|
|
||||||
"description": (
|
|
||||||
"Request operator approval to change the bottle's egress "
|
|
||||||
"allowlist. Pass the full proposed routes.yaml content, not "
|
|
||||||
"just the new host, plus a justification. Use "
|
|
||||||
"`list-egress-routes` first so the proposal preserves existing "
|
|
||||||
"routes."
|
|
||||||
),
|
|
||||||
"inputSchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"routes_yaml": {
|
|
||||||
"type": "string",
|
|
||||||
"description": (
|
|
||||||
"Full proposed /etc/egress/routes.yaml content. "
|
|
||||||
"Each route entry accepts these keys:\n"
|
|
||||||
" host: <hostname> (required)\n"
|
|
||||||
" auth_scheme: Bearer|token (must pair with token_env)\n"
|
|
||||||
" token_env: <ENV_VAR_NAME> (must pair with auth_scheme)\n"
|
|
||||||
" matches: (optional list of match entries)\n"
|
|
||||||
" - paths: [{type: prefix|exact|regex, value: /...}]\n"
|
|
||||||
" methods: [GET, POST, ...]\n"
|
|
||||||
" headers: [{name: X-Hdr, value: val, type: exact|regex}]\n"
|
|
||||||
" git: (optional; omit to block git clone/fetch)\n"
|
|
||||||
" fetch: true\n"
|
|
||||||
" dlp: (optional DLP scanner overrides)\n"
|
|
||||||
" outbound_detectors: [token_patterns, known_secrets]\n"
|
|
||||||
" inbound_detectors: [naive_injection_detection]\n"
|
|
||||||
" outbound_on_match: block|redact|supervise (default supervise)\n"
|
|
||||||
"Omit any key that should use its default. "
|
|
||||||
"`list-egress-routes` returns routes in this same format."
|
|
||||||
),
|
|
||||||
},
|
|
||||||
"justification": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Why this egress route is needed.",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"required": ["routes_yaml", "justification"],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": _sv.TOOL_EGRESS_BLOCK,
|
|
||||||
"description": (
|
|
||||||
"Request operator approval to change the bottle's egress "
|
|
||||||
"allowlist after a blocked outbound request. Pass the full "
|
|
||||||
"proposed routes.yaml content plus a justification. Use "
|
|
||||||
"`list-egress-routes` first so the proposal preserves existing "
|
|
||||||
"routes."
|
|
||||||
),
|
|
||||||
"inputSchema": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"routes_yaml": {
|
|
||||||
"type": "string",
|
|
||||||
"description": (
|
|
||||||
"Full proposed /etc/egress/routes.yaml content. "
|
|
||||||
"Each route entry accepts these keys:\n"
|
|
||||||
" host: <hostname> (required)\n"
|
|
||||||
" auth_scheme: Bearer|token (must pair with token_env)\n"
|
|
||||||
" token_env: <ENV_VAR_NAME> (must pair with auth_scheme)\n"
|
|
||||||
" matches: (optional list of match entries)\n"
|
|
||||||
" - paths: [{type: prefix|exact|regex, value: /...}]\n"
|
|
||||||
" methods: [GET, POST, ...]\n"
|
|
||||||
" headers: [{name: X-Hdr, value: val, type: exact|regex}]\n"
|
|
||||||
" git: (optional; omit to block git clone/fetch)\n"
|
|
||||||
" fetch: true\n"
|
|
||||||
" dlp: (optional DLP scanner overrides)\n"
|
|
||||||
" outbound_detectors: [token_patterns, known_secrets]\n"
|
|
||||||
" inbound_detectors: [naive_injection_detection]\n"
|
|
||||||
" outbound_on_match: block|redact|supervise (default supervise)\n"
|
|
||||||
"Omit any key that should use its default. "
|
|
||||||
"`list-egress-routes` returns routes in this same format."
|
|
||||||
),
|
|
||||||
},
|
|
||||||
"justification": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "Why this egress route is needed.",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"required": ["routes_yaml", "justification"],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": _sv.TOOL_CAPABILITY_BLOCK,
|
"name": _sv.TOOL_CAPABILITY_BLOCK,
|
||||||
"description": (
|
"description": (
|
||||||
@@ -273,12 +182,11 @@ TOOL_DEFINITIONS: list[dict[str, object]] = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
# Map each proposal tool to the input field that carries the agent's
|
# Map each non-egress tool to the input field that carries the agent's
|
||||||
# payload (stored in Proposal.proposed_file).
|
# payload (stored in Proposal.proposed_file). egress-block builds its
|
||||||
|
# payload from structured input fields in `handle_egress_block`.
|
||||||
PROPOSED_FILE_FIELD: dict[str, str] = {
|
PROPOSED_FILE_FIELD: dict[str, str] = {
|
||||||
_sv.TOOL_EGRESS_ALLOW: "routes_yaml",
|
|
||||||
_sv.TOOL_CAPABILITY_BLOCK: "dockerfile",
|
_sv.TOOL_CAPABILITY_BLOCK: "dockerfile",
|
||||||
_sv.TOOL_EGRESS_BLOCK: "routes_yaml",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -295,19 +203,6 @@ def validate_proposed_file(tool: str, content: str) -> None:
|
|||||||
# Dockerfiles are too varied to validate syntactically beyond
|
# Dockerfiles are too varied to validate syntactically beyond
|
||||||
# non-empty. The operator reads the diff in the TUI.
|
# non-empty. The operator reads the diff in the TUI.
|
||||||
pass
|
pass
|
||||||
elif tool in (_sv.TOOL_EGRESS_ALLOW, _sv.TOOL_EGRESS_BLOCK):
|
|
||||||
try:
|
|
||||||
config = load_config(content)
|
|
||||||
except ValueError as e:
|
|
||||||
raise _RpcError(
|
|
||||||
ERR_INVALID_PARAMS,
|
|
||||||
f"{tool}: proposed routes.yaml is not valid: {e}",
|
|
||||||
) from e
|
|
||||||
if config.log != LOG_OFF:
|
|
||||||
raise _RpcError(
|
|
||||||
ERR_INVALID_PARAMS,
|
|
||||||
f"{tool}: proposed routes.yaml must not change egress logging",
|
|
||||||
)
|
|
||||||
else:
|
else:
|
||||||
raise _RpcError(ERR_INVALID_PARAMS, f"unknown tool {tool!r}")
|
raise _RpcError(ERR_INVALID_PARAMS, f"unknown tool {tool!r}")
|
||||||
|
|
||||||
|
|||||||
@@ -1,190 +0,0 @@
|
|||||||
# PRD 0059: macOS Container backend
|
|
||||||
|
|
||||||
- **Status:** Active
|
|
||||||
- **Author:** Codex
|
|
||||||
- **Created:** 2026-06-10
|
|
||||||
- **Issue:** #220
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
Add a `macos-container` backend that integrates Apple's `container`
|
|
||||||
CLI as a host runtime on macOS. The shipped slices register the
|
|
||||||
backend, implement reusable host primitives (`build`, `exec`, `cp`,
|
|
||||||
image inspection, cleanup, active enumeration), make launch runnable
|
|
||||||
with the proven two-network sidecar topology, and add real-runtime
|
|
||||||
coverage without weakening bot-bottle's sidecar egress model.
|
|
||||||
|
|
||||||
## Problem
|
|
||||||
|
|
||||||
bot-bottle currently has two local execution paths:
|
|
||||||
|
|
||||||
- `docker`, which runs the whole bottle topology through Docker
|
|
||||||
Compose.
|
|
||||||
- `smolmachines`, which runs the agent in smolvm but still depends on
|
|
||||||
Docker for the sidecar bundle and image-building pipeline.
|
|
||||||
|
|
||||||
Issue #220 explored removing Docker as a host dependency. A follow-up
|
|
||||||
review comment verified that smolvm can publish guest ports back to
|
|
||||||
host loopback and that another smolvm guest can reach that service
|
|
||||||
through the existing per-bottle loopback alias plus `--allow-cidr`
|
|
||||||
path. That keeps the VM-contained sidecar direction viable and rejects
|
|
||||||
the host-process sidecar fallback.
|
|
||||||
|
|
||||||
Apple's `container` CLI is another macOS-native way to run OCI images
|
|
||||||
as lightweight Linux VMs. Its current command surface includes
|
|
||||||
Docker-like `build`, `run`, `exec`, `cp`, port publishing, image
|
|
||||||
inspection, and user-defined networks. That makes it a plausible local
|
|
||||||
backend, but it does not remove the need to preserve bot-bottle's
|
|
||||||
sidecar enforcement property: the agent must not have a direct egress
|
|
||||||
path around the egress sidecar.
|
|
||||||
|
|
||||||
## Goals / Success Criteria
|
|
||||||
|
|
||||||
- `--backend=macos-container` and
|
|
||||||
`BOT_BOTTLE_BACKEND=macos-container` are accepted by the existing
|
|
||||||
backend selector.
|
|
||||||
- Compatible macOS hosts default to `macos-container` when
|
|
||||||
`BOT_BOTTLE_BACKEND` and `--backend` are both unset.
|
|
||||||
- Backend availability is true only on macOS hosts with `container` on
|
|
||||||
`PATH`.
|
|
||||||
- The backend has tested wrappers for Apple Container image build,
|
|
||||||
image inspection, container `exec`, container `cp`, cleanup, and
|
|
||||||
active-agent enumeration.
|
|
||||||
- Full launch uses a host-only internal network for the agent and a
|
|
||||||
separate NAT egress network for the sidecar bundle.
|
|
||||||
- The agent container does not attach to the egress network. It reaches
|
|
||||||
allowed outbound hosts through HTTP(S)_PROXY pointing at the
|
|
||||||
sidecar's internal-network IP.
|
|
||||||
- `bottle.git` / git-gate bottles fail loudly on this backend until a
|
|
||||||
safe Apple Container key-delivery path exists.
|
|
||||||
- Real-runtime integration coverage is present and guarded by macOS and
|
|
||||||
Apple Container availability.
|
|
||||||
|
|
||||||
## Non-goals
|
|
||||||
|
|
||||||
- Do not remove or deprecate the Docker backend.
|
|
||||||
- Do not remove or deprecate the smolmachines backend.
|
|
||||||
- Do not run sidecar daemons as host processes.
|
|
||||||
- Do not launch a degraded backend where the agent can bypass the
|
|
||||||
egress sidecar through direct network access.
|
|
||||||
- Do not require Docker Desktop as part of the macOS Container backend.
|
|
||||||
|
|
||||||
## Design
|
|
||||||
|
|
||||||
### Backend name
|
|
||||||
|
|
||||||
The selectable backend name is `macos-container`. The Python package
|
|
||||||
uses `bot_bottle.backend.macos_container` because module names cannot
|
|
||||||
contain hyphens.
|
|
||||||
|
|
||||||
### Availability and preflight
|
|
||||||
|
|
||||||
`MacosContainerBottleBackend.is_available()` returns true only when:
|
|
||||||
|
|
||||||
- `platform.system() == "Darwin"`
|
|
||||||
- `container` is discoverable on `PATH`
|
|
||||||
|
|
||||||
`prepare()` calls `require_container()`, which produces a concrete
|
|
||||||
install pointer and rejects non-macOS hosts.
|
|
||||||
|
|
||||||
### Implemented primitives
|
|
||||||
|
|
||||||
The backend owns an Apple Container wrapper module instead of reusing
|
|
||||||
Docker wrappers. The wrapper maps bot-bottle's backend needs to
|
|
||||||
Apple's CLI:
|
|
||||||
|
|
||||||
| bot-bottle need | Apple Container command |
|
|
||||||
|---|---|
|
|
||||||
| Build provider image | `container build -t <ref> [-f Dockerfile] <context>` |
|
|
||||||
| Run agent commands | `container exec [--interactive --tty] <id> ...` |
|
|
||||||
| Copy files into guest | `container cp <host> <id>:<path>` |
|
|
||||||
| Inspect image identity | `container image inspect <ref>` |
|
|
||||||
| Cleanup stale containers | `container delete --force <id>` |
|
|
||||||
| Cleanup stale networks | `container network delete <name>` |
|
|
||||||
| Active enumeration | `container list --quiet` |
|
|
||||||
|
|
||||||
The bottle handle mirrors `DockerBottle`: it builds a host argv for
|
|
||||||
foreground agent execution, pipes shell snippets through stdin for
|
|
||||||
`Bottle.exec`, and exposes `cp_in` for provisioning.
|
|
||||||
|
|
||||||
### Launch topology
|
|
||||||
|
|
||||||
`launch()` uses Apple Container's two-network topology:
|
|
||||||
|
|
||||||
- create a host-only internal network for the bottle;
|
|
||||||
- create a normal NAT egress network for the sidecar bundle;
|
|
||||||
- start the sidecar bundle attached to the egress network first and the
|
|
||||||
internal network second;
|
|
||||||
- discover the sidecar's internal-network IPv4 address from
|
|
||||||
`container inspect`;
|
|
||||||
- start the agent attached only to the internal network, with
|
|
||||||
HTTP_PROXY / HTTPS_PROXY / lowercase proxy vars pointing at the
|
|
||||||
sidecar IP and egress port.
|
|
||||||
|
|
||||||
This keeps the agent off the outbound network while preserving the
|
|
||||||
proxy-env contract that existing agent tooling already honors. The
|
|
||||||
integration smoke also removes the proxy env in-guest and confirms
|
|
||||||
direct egress fails.
|
|
||||||
|
|
||||||
### Deferred git-gate support
|
|
||||||
|
|
||||||
Apple Container currently rejects single-file bind mounts, and
|
|
||||||
`container cp` into a stopped container is not available. Starting the
|
|
||||||
container earlier would allow `container cp` into a running container,
|
|
||||||
but it would also mean delivering SSH private key material into a live
|
|
||||||
sidecar before the git-gate daemon is ready to own it. Mounting broad
|
|
||||||
host SSH directories is not acceptable.
|
|
||||||
|
|
||||||
For this PRD, `bottle.git` / git-gate support is explicitly deferred on
|
|
||||||
the `macos-container` backend. Bottles with git-gate upstreams fail
|
|
||||||
loudly and should use `docker` or `smolmachines` until a narrower key
|
|
||||||
delivery design lands.
|
|
||||||
|
|
||||||
## Implementation chunks
|
|
||||||
|
|
||||||
1. Register `macos-container`, add availability/preflight, bottle
|
|
||||||
handle, utility wrappers, cleanup, active enumeration, unit tests,
|
|
||||||
and this PRD.
|
|
||||||
2. Spike Apple Container networking against real macOS 26 hosts:
|
|
||||||
repeated `--network`, internal network egress behavior, published
|
|
||||||
loopback reachability from another container, DNS behavior, and
|
|
||||||
labels/JSON output stability.
|
|
||||||
3. Implement launch once the enforcement shape is proven. Reuse the
|
|
||||||
existing sidecar bundle image and daemon subset env contract where
|
|
||||||
possible.
|
|
||||||
4. Add real-runtime integration tests guarded by `container` presence
|
|
||||||
and macOS version.
|
|
||||||
5. Consider moving smolmachines sidecar/image-building work to
|
|
||||||
VM-contained or Apple Container-backed execution only after the
|
|
||||||
`macos-container` launch path is trustworthy.
|
|
||||||
|
|
||||||
## Testing Strategy
|
|
||||||
|
|
||||||
- Unit tests cover backend registration through `known_backend_names`.
|
|
||||||
- Unit tests cover availability/preflight behavior without requiring
|
|
||||||
macOS.
|
|
||||||
- Unit tests cover `MacosContainerBottle` command construction and
|
|
||||||
stdin-based shell execution.
|
|
||||||
- Unit tests cover cleanup and active enumeration parsing.
|
|
||||||
- Unit tests cover launch argv/env construction, sidecar mount
|
|
||||||
staging, sidecar IP parsing, and git-gate rejection.
|
|
||||||
- Integration tests run on macOS hosts with Apple Container installed
|
|
||||||
and verify that egress cannot bypass the sidecar. They also preflight
|
|
||||||
Apple Container BuildKit DNS because image builds must resolve
|
|
||||||
package mirrors before a launch smoke can be meaningful. The backend
|
|
||||||
probes the running builder before image builds and leaves it alone
|
|
||||||
when its current resolver works. If the probe fails, or if the
|
|
||||||
operator explicitly sets `BOT_BOTTLE_MACOS_CONTAINER_DNS`, the backend
|
|
||||||
restarts the Apple Container builder with the configured DNS server.
|
|
||||||
Without an explicit override, that server is discovered from the
|
|
||||||
host's directly reachable IPv4 resolver before falling back to a
|
|
||||||
public resolver.
|
|
||||||
|
|
||||||
## References
|
|
||||||
|
|
||||||
- [Issue #220 review comment](https://gitea.dideric.is/didericis/bot-bottle/issues/220#issuecomment-1980):
|
|
||||||
smolvm `--port/-p` can expose a guest service to host loopback, and
|
|
||||||
another smolvm guest can reach it through the existing per-bottle
|
|
||||||
loopback alias path.
|
|
||||||
- Apple Container command reference: `container run`, `build`, `exec`,
|
|
||||||
port publishing, and network commands.
|
|
||||||
@@ -1,159 +0,0 @@
|
|||||||
# PRD 0060: Commit bottle state to an image
|
|
||||||
|
|
||||||
- **Status:** Active
|
|
||||||
- **Author:** Claude
|
|
||||||
- **Created:** 2026-06-20
|
|
||||||
- **Issue:** #194
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
Add a `commit` CLI command that freezes a running bottle's state to a
|
|
||||||
resumable local artifact. Docker bottles are stored as Docker images;
|
|
||||||
smolmachines bottles are stored as `.smolmachine` artifacts. Operators
|
|
||||||
can then resume the bottle from that exact filesystem snapshot, or
|
|
||||||
export the artifact to migrate work to a different host.
|
|
||||||
|
|
||||||
## Problem
|
|
||||||
|
|
||||||
When a long-running agent session is interrupted — by a host reboot, a
|
|
||||||
network failure, or a planned infrastructure migration — the in-progress
|
|
||||||
container state is lost. `cli.py resume` rebuilds the agent image from
|
|
||||||
the Dockerfile and reprovi-sions the bottle, but that returns the guest
|
|
||||||
to its initial state, not to wherever the agent was mid-task.
|
|
||||||
|
|
||||||
There is no mechanism today to capture "what's installed / configured
|
|
||||||
inside the running container right now" and make it reproducible. The
|
|
||||||
`capability-block` flow writes a new Dockerfile and marks the bottle for
|
|
||||||
resume, but that only applies when the agent itself has requested a
|
|
||||||
capability change; it doesn't help the operator who wants to take a
|
|
||||||
snapshot before a planned host reboot or hardware migration.
|
|
||||||
|
|
||||||
## Goals / Success Criteria
|
|
||||||
|
|
||||||
- `./cli.py commit [<slug>]` takes a snapshot of the running agent and
|
|
||||||
stores it as a local artifact.
|
|
||||||
- Without a slug argument the command shows the same interactive picker
|
|
||||||
as `start` (the list of active slugs).
|
|
||||||
- The committed artifact reference is stored in per-bottle state so
|
|
||||||
that the next `./cli.py resume <slug>` automatically uses the
|
|
||||||
snapshot instead of rebuilding from the Dockerfile.
|
|
||||||
- `mark_preserved` is called so the state dir survives the normal
|
|
||||||
session-end cleanup.
|
|
||||||
- A backend-specific export hint is printed so operators know how to
|
|
||||||
migrate the snapshot.
|
|
||||||
- The command errors clearly on unsupported backends.
|
|
||||||
|
|
||||||
## Non-goals
|
|
||||||
|
|
||||||
- macOS-container backend support.
|
|
||||||
- Automatic commit on agent exit.
|
|
||||||
- Image push to a remote registry.
|
|
||||||
- Storing the image tag in the manifest or sharing it between operators.
|
|
||||||
|
|
||||||
## Design
|
|
||||||
|
|
||||||
### Docker image tag
|
|
||||||
|
|
||||||
`bot-bottle-committed-<slug>:latest` — namespaced under `bot-bottle-`
|
|
||||||
to match existing image naming conventions; `committed` distinguishes it
|
|
||||||
from the build-time image (`bot-bottle-claude:latest`) and the
|
|
||||||
capability-block rebuild image (`bot-bottle-rebuilt-<identity>:latest`).
|
|
||||||
|
|
||||||
### State storage
|
|
||||||
|
|
||||||
A new plain-text file `committed-image` is added to the per-bottle state
|
|
||||||
directory:
|
|
||||||
|
|
||||||
```
|
|
||||||
~/.bot-bottle/state/<identity>/
|
|
||||||
metadata.json
|
|
||||||
Dockerfile (capability-block override; optional)
|
|
||||||
committed-image (committed artifact reference; optional)
|
|
||||||
transcript/
|
|
||||||
```
|
|
||||||
|
|
||||||
`bottle_state.committed_image_path(identity)` returns the path.
|
|
||||||
`write_committed_image` / `read_committed_image` are the read/write
|
|
||||||
helpers, matching the existing `per_bottle_dockerfile` pattern. Docker
|
|
||||||
stores a Docker tag in this file; smolmachines stores the absolute path
|
|
||||||
to the committed `.smolmachine` artifact.
|
|
||||||
|
|
||||||
### `commit` command
|
|
||||||
|
|
||||||
```
|
|
||||||
./cli.py commit [<slug>]
|
|
||||||
```
|
|
||||||
|
|
||||||
1. Resolve slug (arg or interactive picker from `enumerate_active_agents`).
|
|
||||||
2. Check metadata and branch by backend.
|
|
||||||
3. For Docker, derive container name `bot-bottle-<slug>` and run
|
|
||||||
`docker commit <container> bot-bottle-committed-<slug>:latest`.
|
|
||||||
4. For smolmachines, derive machine name `bot-bottle-<slug>` and run
|
|
||||||
`smolvm pack create --from-vm <machine> -o ~/.bot-bottle/state/<slug>/committed-smolmachine`.
|
|
||||||
5. Write the Docker image tag or smolmachine artifact path to
|
|
||||||
`~/.bot-bottle/state/<slug>/committed-image`.
|
|
||||||
6. Call `mark_preserved(<slug>)` so the state dir survives session-end.
|
|
||||||
7. Print the resume hint and a backend-specific export example.
|
|
||||||
|
|
||||||
### Resume from committed image
|
|
||||||
|
|
||||||
`bot_bottle/backend/docker/launch.py` already rebuilds the agent image
|
|
||||||
at the top of the `launch` context manager. The change is a check
|
|
||||||
immediately before that step:
|
|
||||||
|
|
||||||
```python
|
|
||||||
committed = read_committed_image(plan.slug)
|
|
||||||
if committed and docker_mod.image_exists(committed):
|
|
||||||
info(f"using committed image {committed!r}")
|
|
||||||
plan = dataclasses.replace(
|
|
||||||
plan,
|
|
||||||
agent_provision=dataclasses.replace(plan.agent_provision, image=committed),
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
docker_mod.build_image(plan.image, _REPO_DIR, dockerfile=plan.dockerfile_path)
|
|
||||||
```
|
|
||||||
|
|
||||||
Replacing `agent_provision.image` propagates to `plan.image` (a
|
|
||||||
property) and from there to the Compose spec renderer's `_agent_service`
|
|
||||||
→ `image:` field, so the container boots from the committed snapshot.
|
|
||||||
The build step is skipped entirely when a committed image is found and
|
|
||||||
exists locally.
|
|
||||||
|
|
||||||
If the committed image has been deleted from the local daemon (e.g.
|
|
||||||
after `docker rmi` or a `docker system prune`), the launch falls back
|
|
||||||
to a normal Dockerfile build, matching the pre-commit behavior.
|
|
||||||
|
|
||||||
### Resume from committed smolmachine
|
|
||||||
|
|
||||||
`bot_bottle/backend/smolmachines/launch.py` checks the committed
|
|
||||||
reference before the normal Docker build -> pack cache path:
|
|
||||||
|
|
||||||
```python
|
|
||||||
committed = read_committed_image(plan.slug)
|
|
||||||
if committed and Path(committed).is_file():
|
|
||||||
return Path(committed)
|
|
||||||
return _ensure_smolmachine(plan.agent_image, dockerfile=plan.agent_dockerfile_path)
|
|
||||||
```
|
|
||||||
|
|
||||||
The returned path is passed to `smolvm machine create --from`, so the
|
|
||||||
resumed VM boots from the committed snapshot. If the artifact has been
|
|
||||||
deleted, launch falls back to the normal build and pack flow.
|
|
||||||
|
|
||||||
## Testing strategy
|
|
||||||
|
|
||||||
- Unit tests for `write_committed_image` / `read_committed_image` in
|
|
||||||
`tests/unit/test_bottle_state.py`, using the existing `_FakeHomeMixin`
|
|
||||||
pattern.
|
|
||||||
- Unit tests for `commit_container` in `tests/unit/test_docker_util_image.py`,
|
|
||||||
mocking `subprocess.run` and asserting on the `docker commit` argv.
|
|
||||||
- Unit tests for `cmd_commit` argument parsing, Docker commit,
|
|
||||||
smolmachines pack, and the unsupported backend error path, mocking
|
|
||||||
`enumerate_active_agents`, `commit_container`, and
|
|
||||||
`pack_create_from_vm`.
|
|
||||||
- Unit tests for the launch-step committed-image branch: patch
|
|
||||||
`read_committed_image` to return a tag, patch `image_exists` to return
|
|
||||||
True, and assert that `build_image` is not called and `plan.image` is
|
|
||||||
overridden.
|
|
||||||
- Unit tests for the smolmachines launch-step committed-artifact branch:
|
|
||||||
patch `read_committed_image` to return an existing path and assert the
|
|
||||||
normal `_ensure_smolmachine` path is skipped.
|
|
||||||
@@ -1,210 +0,0 @@
|
|||||||
# PRD 0062: Supervisor override for egress token blocks
|
|
||||||
|
|
||||||
- **Status:** Active
|
|
||||||
- **Author:** claude
|
|
||||||
- **Created:** 2026-06-24
|
|
||||||
- **Issue:** #261
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
Give each egress route a policy for what happens when an outbound DLP detector
|
|
||||||
matches a token, via `dlp.outbound_on_match: block | redact | supervise`
|
|
||||||
(default `supervise`):
|
|
||||||
|
|
||||||
- **`supervise`** (default) — route the block through the existing supervisor
|
|
||||||
approval queue instead of returning `403` immediately. The proxy holds the
|
|
||||||
request open until the operator approves or rejects it. On approval the
|
|
||||||
matched token is added to an in-memory "safe tokens" set so the request — and
|
|
||||||
any later request carrying the same token — flows through without
|
|
||||||
re-prompting.
|
|
||||||
- **`redact`** — scrub the matched value(s) from the request and forward it,
|
|
||||||
no operator in the loop. For routes where a token-shaped value is noise the
|
|
||||||
upstream doesn't need (telemetry/log sinks). Fails closed if a match lands on
|
|
||||||
a surface redaction can't rewrite (the hostname).
|
|
||||||
- **`block`** — the original hard `403`; never overridable. For routes where a
|
|
||||||
detected token must always stop.
|
|
||||||
|
|
||||||
The motivating goal is reducing friction from false positives without weakening
|
|
||||||
the default-deny posture: supervise keeps a human in the loop, redact is an
|
|
||||||
explicit per-route opt-in, and block stays available for sensitive routes.
|
|
||||||
|
|
||||||
## Problem
|
|
||||||
|
|
||||||
The outbound DLP detectors (`token_patterns`, `known_secrets`) are
|
|
||||||
deliberately aggressive: any string that looks like a credential is blocked
|
|
||||||
before it leaves the bottle. That is the right default, but it produces false
|
|
||||||
positives — a token-shaped value that is not actually a secret, or a credential
|
|
||||||
the agent legitimately needs to send to a declared host. Today the only
|
|
||||||
recovery is for the operator to notice the `egress DLP` 403 in the logs and
|
|
||||||
hand-edit the route's `dlp.outbound_detectors`, which disables the detector for
|
|
||||||
the whole route rather than allowing the one value.
|
|
||||||
|
|
||||||
The operator has no in-the-loop signal that a token block happened and no
|
|
||||||
fine-grained way to say "this specific value is fine."
|
|
||||||
|
|
||||||
## Goals / Success Criteria
|
|
||||||
|
|
||||||
1. An outbound DLP **token** block (a `ScanResult` carrying a matched secret
|
|
||||||
value) creates a supervisor proposal instead of an immediate `403`.
|
|
||||||
2. The egress proxy holds the blocked request open, polling for the operator's
|
|
||||||
response up to a bounded timeout.
|
|
||||||
3. The proposal shows the operator the host, method, path, the detector reason,
|
|
||||||
and a **redacted** context snippet — never the raw token value.
|
|
||||||
4. On `approved`/`modified`, the matched token value is added to an in-memory
|
|
||||||
safe-tokens set and the request proceeds normally; later requests carrying
|
|
||||||
the same value skip the block.
|
|
||||||
5. On `rejected`, timeout, malformed response, or missing supervisor wiring,
|
|
||||||
the request fails closed with the same `403` as today.
|
|
||||||
6. Structural blocks that carry no token value (CRLF injection) and the
|
|
||||||
route-not-allowlisted / git blocks are unchanged — they stay hard `403`s and
|
|
||||||
keep their existing agent-driven `allow` / `egress-block` MCP path.
|
|
||||||
7. The proxy event loop is not stalled while waiting: the wait is asynchronous,
|
|
||||||
so other flows keep being served.
|
|
||||||
|
|
||||||
## Non-goals
|
|
||||||
|
|
||||||
- Persisting the safe-tokens set across egress restarts. It lives in process
|
|
||||||
memory only; a restart re-prompts. (The issue explicitly defers persistence.)
|
|
||||||
- Supervising inbound (prompt-injection) blocks or WebSocket frame blocks.
|
|
||||||
WebSocket frames still honour the safe-tokens set for already-approved values
|
|
||||||
but cannot wait for approval (there is no response surface after upgrade).
|
|
||||||
- Generalising an approved secret across encodings. The safe-tokens set matches
|
|
||||||
the exact value the detector found.
|
|
||||||
- Replacing the per-route `dlp.outbound_detectors` override. That remains the
|
|
||||||
way to turn a detector off wholesale.
|
|
||||||
- Making `redact` the default. Silent redaction of a true false positive
|
|
||||||
corrupts legitimate data, so it is opt-in per route; `supervise` (human in
|
|
||||||
the loop) stays the default.
|
|
||||||
|
|
||||||
## Scope
|
|
||||||
|
|
||||||
### In scope
|
|
||||||
|
|
||||||
The minimum cut that ships, in build order:
|
|
||||||
|
|
||||||
1. **Core** — `ScanResult.matched`; thread `safe_tokens` through
|
|
||||||
`scan_outbound` / the token detectors; `build_token_allow_payload`.
|
|
||||||
2. **Supervise + TUI** — `TOOL_EGRESS_TOKEN_ALLOW`; TUI suffix, modify guard,
|
|
||||||
required approval reason.
|
|
||||||
3. **Addon glue** — async `request`, safe-tokens set, proposal write + async
|
|
||||||
poll, allow/block decision; pass `safe_tokens` into the WebSocket path.
|
|
||||||
4. **On-match policy** — `dlp.outbound_on_match` through manifest → render →
|
|
||||||
addon; `redact` surface scrub with fail-closed re-scan; policy dispatch in
|
|
||||||
the addon's outbound handler.
|
|
||||||
5. **Tests + docs** — core/supervise/TUI/manifest/render unit tests; README
|
|
||||||
egress + supervisor notes.
|
|
||||||
|
|
||||||
### Out of scope
|
|
||||||
|
|
||||||
The deferrals enumerated under **Non-goals** — restart persistence, inbound /
|
|
||||||
WebSocket-frame supervision, cross-encoding generalisation, replacing
|
|
||||||
`dlp.outbound_detectors`, and making `redact` the default.
|
|
||||||
|
|
||||||
## Proposed Design
|
|
||||||
|
|
||||||
### New services / components
|
|
||||||
|
|
||||||
A new proposal tool constant `egress-token-allow` (`TOOL_EGRESS_TOKEN_ALLOW`)
|
|
||||||
is added to `supervise.TOOLS`, and the egress addon gains an in-memory
|
|
||||||
safe-tokens set plus the policy-dispatch path that drives it.
|
|
||||||
|
|
||||||
On an outbound block the addon dispatches on the resolved policy:
|
|
||||||
|
|
||||||
- **Structural blocks always 403.** A `ScanResult` with no `matched` value
|
|
||||||
(CRLF injection) is a hard `403` regardless of policy — there is nothing to
|
|
||||||
redact or safelist.
|
|
||||||
- **`redact`** runs `redact_tokens` over the body, non-`host` header values,
|
|
||||||
and path/query, then re-scans. If the re-scan is clean the (rewritten)
|
|
||||||
request is forwarded; if a block-severity match remains (e.g. in the
|
|
||||||
hostname, or a unicode-evasion token redaction can't reach) it fails closed
|
|
||||||
with a `403`.
|
|
||||||
- **`block`** writes the `403` immediately.
|
|
||||||
- **`supervise`** runs the queue-and-wait loop, falling back to `block` when
|
|
||||||
supervise isn't wired for the bottle.
|
|
||||||
|
|
||||||
For `supervise`, the addon writes the proposal directly to
|
|
||||||
`SUPERVISE_QUEUE_DIR` (the queue is bind-mounted into the sidecar bundle and
|
|
||||||
shared by every daemon, exactly as git-gate's `gitleaks-allow` proposal in PRD
|
|
||||||
0061 does). The proposal's `proposed_file` is a human-readable text payload
|
|
||||||
built by `build_token_allow_payload`:
|
|
||||||
|
|
||||||
```
|
|
||||||
egress blocked an outbound request carrying a detected token
|
|
||||||
host: api.example.com
|
|
||||||
method: POST
|
|
||||||
path: /v1/ingest
|
|
||||||
detector: OpenAI API key found in body
|
|
||||||
context: ...before ******** after...
|
|
||||||
```
|
|
||||||
|
|
||||||
The justification tells the operator to approve only if the value is a false
|
|
||||||
positive or a credential the request legitimately needs. The addon then polls
|
|
||||||
`<proposal-id>.response.json` for `EGRESS_TOKEN_ALLOW_TIMEOUT_SECONDS` (default
|
|
||||||
300). `approved`/`modified` allow the request and add the value to the
|
|
||||||
safe-tokens set; `rejected`, malformed responses, and timeout fail the request
|
|
||||||
closed. The proposal + response are archived to `processed/` after a decision.
|
|
||||||
Because the wait happens inside mitmproxy's asyncio loop, the addon's `request`
|
|
||||||
hook is async and polls with `asyncio.sleep`, so concurrent flows are
|
|
||||||
unaffected.
|
|
||||||
|
|
||||||
### Existing code touched
|
|
||||||
|
|
||||||
- **Policy threading.** `dlp.outbound_on_match` is a per-route enum threaded
|
|
||||||
from the bottle manifest (`manifest_egress`) through the resolved route
|
|
||||||
(`egress.EgressRoute`), the rendered `routes.yaml` (`egress_render_routes`),
|
|
||||||
and the addon's `Route` (`egress_addon_core`). Unset renders nothing and
|
|
||||||
resolves to `supervise` at request time. The `list-egress-routes`
|
|
||||||
introspection endpoint round-trips it so the agent's proposals preserve it.
|
|
||||||
- **Provider-route default.** Agent-provider routes (the agent talking to its
|
|
||||||
own LLM API — `api.anthropic.com`, the Codex backend, etc.) are the worst
|
|
||||||
source of token-shaped false positives because the whole conversation payload
|
|
||||||
flows through them. `egress_routes_for_bottle` fills `outbound_on_match=redact`
|
|
||||||
on any provider route that doesn't set it explicitly; a provider that sets the
|
|
||||||
policy keeps its choice, and manifest routes are unaffected (they default to
|
|
||||||
`supervise`).
|
|
||||||
- **Scanners.** `scan_outbound` (and the token detectors `scan_token_patterns`
|
|
||||||
/ `scan_known_secrets` it calls) accept a `safe_tokens` set. A match whose
|
|
||||||
value is in `safe_tokens` is skipped, so an approved token no longer blocks;
|
|
||||||
the scanners keep searching past a safelisted match so a second, un-approved
|
|
||||||
secret in the same request is still caught. The WebSocket path is passed the
|
|
||||||
same `safe_tokens` set.
|
|
||||||
- **Supervisor UI.** `cli/supervise.py` renders `egress-token-allow` like
|
|
||||||
`gitleaks-allow`: the text payload is shown, modify is unavailable (there is
|
|
||||||
no file patch to edit), and approval prompts for a non-empty reason recorded
|
|
||||||
in the response notes. There is no on-disk config diff, so — like
|
|
||||||
`gitleaks-allow` and `capability-block` — it writes no egress audit-log entry.
|
|
||||||
- **Failure handling.** If `SUPERVISE_QUEUE_DIR` / `SUPERVISE_BOTTLE_SLUG` are
|
|
||||||
unset (supervise disabled for the bottle), the addon skips the queue and
|
|
||||||
returns the existing `403`. Any error writing the proposal or reading the
|
|
||||||
response also fails closed.
|
|
||||||
|
|
||||||
### Data model changes
|
|
||||||
|
|
||||||
- New per-route manifest field `dlp.outbound_on_match: block | redact |
|
|
||||||
supervise`, rendered into `routes.yaml` (omitted when unset).
|
|
||||||
- `ScanResult` gains a `matched: str = ""` field carrying the raw substring the
|
|
||||||
detector matched. The token detectors populate it; the structural CRLF
|
|
||||||
detector leaves it empty. The value stays inside the egress sidecar process —
|
|
||||||
never written to a log line (logs use the redacted `context`) nor to the
|
|
||||||
proposal file.
|
|
||||||
- Proposal text payload (above) plus `<proposal-id>.response.json` in
|
|
||||||
`SUPERVISE_QUEUE_DIR`, archived to `processed/` after a decision.
|
|
||||||
- New env var `EGRESS_TOKEN_ALLOW_TIMEOUT_SECONDS` (default 300).
|
|
||||||
|
|
||||||
### External dependencies
|
|
||||||
|
|
||||||
None. Reuses the existing supervisor queue (`SUPERVISE_QUEUE_DIR`) and the
|
|
||||||
mitmproxy addon framework already in the egress sidecar.
|
|
||||||
|
|
||||||
## Open questions
|
|
||||||
|
|
||||||
- Should `known_secrets` (provisioned `EGRESS_TOKEN_*` exfiltration) be
|
|
||||||
override-able at all, or only `token_patterns`? This PRD allows both —
|
|
||||||
approval is an explicit operator decision and the safe-tokens set matches the
|
|
||||||
exact found value — but a future revision could restrict `known_secrets` to
|
|
||||||
reject-only.
|
|
||||||
|
|
||||||
## References
|
|
||||||
|
|
||||||
- Issue #261
|
|
||||||
- PRD 0061 — `gitleaks-allow` supervisor proposal pattern this reuses.
|
|
||||||
@@ -1,189 +0,0 @@
|
|||||||
# PRD 0063: Strengthen outbound exfiltration detection
|
|
||||||
|
|
||||||
- **Status:** Active
|
|
||||||
- **Author:** claude
|
|
||||||
- **Created:** 2026-06-25
|
|
||||||
- **Issue:** #259
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
The current DLP system has two detection tiers: weak (vendor token regexes)
|
|
||||||
and strong (exact matching of provisioned `EGRESS_TOKEN_*` values in multiple
|
|
||||||
encodings). This PRD adds four complementary hardening layers in ranked order
|
|
||||||
of impact:
|
|
||||||
|
|
||||||
1. **Canary tokens** — inject a per-session fake secret into the agent's
|
|
||||||
environment; any outbound appearance is a zero-false-positive exfil signal.
|
|
||||||
2. **Broadened known-value scanning** — extend the strong tier beyond
|
|
||||||
`EGRESS_TOKEN_*` via a `BOT_BOTTLE_SENSITIVE_PREFIXES` sidecar env var.
|
|
||||||
3. **Fragmentation-resistant matching** — catch separator injection and
|
|
||||||
long-substring leaks via alnum projection and sliding-window substring
|
|
||||||
search.
|
|
||||||
4. **Entropy scoring** — warn-only flag on high-entropy blobs as a
|
|
||||||
complementary signal for encrypted exfil.
|
|
||||||
|
|
||||||
## Problem
|
|
||||||
|
|
||||||
After PRD 0056 the outbound scan covers all HTTP request surfaces (host, path,
|
|
||||||
query, headers, body). But the content-based strong tier only matches
|
|
||||||
`EGRESS_TOKEN_*` values and their encodings. Three gaps remain:
|
|
||||||
|
|
||||||
| Gap | How an agent exploits it |
|
|
||||||
|-----|--------------------------|
|
|
||||||
| No canary | There is no "can't be false-positive" signal |
|
|
||||||
| Narrow prefix filter | Sensitive values provisioned under other env prefixes (MCP keys, API keys injected via the agent provider) are invisible to `scan_known_secrets` |
|
|
||||||
| Fragmentation blindness | Inserting `-`, space, or `\n` between secret characters turns an exact-match into a miss |
|
|
||||||
|
|
||||||
## Goals / Success Criteria
|
|
||||||
|
|
||||||
1. Each launched bottle has a unique canary token in the agent's environment
|
|
||||||
under a randomized `WORD_WORD_SECRET` env var name. The egress sidecar gets
|
|
||||||
the same env var and registers that exact name through
|
|
||||||
`BOT_BOTTLE_SENSITIVE_PREFIXES`. Any outbound appearance of the canary
|
|
||||||
blocks the request as a known-secret match.
|
|
||||||
2. `scan_known_secrets` accepts a `sensitive_prefixes` parameter (default:
|
|
||||||
`("EGRESS_TOKEN_",)`). `scan_outbound` reads
|
|
||||||
`BOT_BOTTLE_SENSITIVE_PREFIXES` from `environ` and merges those prefixes
|
|
||||||
in, so operators can mark additional env vars as scanned values without
|
|
||||||
changing the manifest schema.
|
|
||||||
3. For every secret that passes exact-match, a secondary alnum-projection pass
|
|
||||||
checks for the secret with all non-alphanumeric characters stripped. This
|
|
||||||
catches separator-injection evasion (`MY-SECRET` → body contains
|
|
||||||
`MY SECRET`).
|
|
||||||
4. A sliding-window partial-match pass checks for long-enough contiguous
|
|
||||||
substrings of the secret's alnum projection in the text's alnum projection.
|
|
||||||
Any match ≥ `PARTIAL_MATCH_MIN_LEN` (12 chars) blocks with reason
|
|
||||||
`"partial match"`.
|
|
||||||
5. A new `scan_entropy` detector flags outbound text windows with Shannon
|
|
||||||
entropy ≥ `ENTROPY_BLOCK_THRESHOLD` (5.5 bits/char) at **warn** severity
|
|
||||||
only. It is registered under the new detector name `"entropy"` in
|
|
||||||
`OUTBOUND_DETECTOR_NAMES` and disabled by default (routes must opt in).
|
|
||||||
6. Binary request bodies are decoded via `latin-1` instead of
|
|
||||||
`utf-8 errors="replace"`, preserving every byte value and allowing
|
|
||||||
ASCII-range secrets to be found within binary payloads.
|
|
||||||
7. All new behaviour is unit-tested; existing tests pass unchanged.
|
|
||||||
|
|
||||||
## Non-goals
|
|
||||||
|
|
||||||
- Rolling per-host buffer for split-across-requests detection (state in the
|
|
||||||
stateless addon is complex; deferred).
|
|
||||||
- Additional vendor regexes.
|
|
||||||
- ML / embedding-based detection.
|
|
||||||
- Entropy-based hard blocks (warn only per the issue).
|
|
||||||
|
|
||||||
## Design
|
|
||||||
|
|
||||||
### Canary token flow
|
|
||||||
|
|
||||||
```
|
|
||||||
Egress.prepare()
|
|
||||||
canary = secrets.token_urlsafe(32)
|
|
||||||
canary_env = <random WORD_WORD_SECRET>
|
|
||||||
EgressPlan(canary=canary, canary_env=canary_env, ...)
|
|
||||||
|
|
||||||
Docker compose render:
|
|
||||||
sidecar env: <canary_env>=<canary>
|
|
||||||
sidecar env: BOT_BOTTLE_SENSITIVE_PREFIXES=<canary_env>
|
|
||||||
agent env: <canary_env>=<canary> ← visible to agent as a "secret"
|
|
||||||
|
|
||||||
macos-container launch: same literals added to sidecar + agent env entries
|
|
||||||
```
|
|
||||||
|
|
||||||
The sidecar uses `BOT_BOTTLE_SENSITIVE_PREFIXES` to make the random canary env
|
|
||||||
name part of the existing `scan_known_secrets` detector without adding a
|
|
||||||
manifest schema field.
|
|
||||||
|
|
||||||
### Broadened known-value scanning
|
|
||||||
|
|
||||||
`scan_known_secrets` gains a `sensitive_prefixes` parameter:
|
|
||||||
|
|
||||||
```python
|
|
||||||
def scan_known_secrets(
|
|
||||||
text: str,
|
|
||||||
*,
|
|
||||||
location: str = "body",
|
|
||||||
env: Mapping[str, str] | None = None,
|
|
||||||
sensitive_prefixes: tuple[str, ...] = ("EGRESS_TOKEN_",),
|
|
||||||
) -> ScanResult | None:
|
|
||||||
```
|
|
||||||
|
|
||||||
`scan_outbound` reads `BOT_BOTTLE_SENSITIVE_PREFIXES` (comma-separated list
|
|
||||||
of additional prefixes) from `environ` and appends them:
|
|
||||||
|
|
||||||
```python
|
|
||||||
extra = tuple(
|
|
||||||
p for p in environ.get("BOT_BOTTLE_SENSITIVE_PREFIXES", "").split(",") if p
|
|
||||||
)
|
|
||||||
sensitive_prefixes = ("EGRESS_TOKEN_",) + extra
|
|
||||||
```
|
|
||||||
|
|
||||||
`redact_tokens` receives the same treatment for consistent redaction.
|
|
||||||
|
|
||||||
### Fragmentation-resistant matching
|
|
||||||
|
|
||||||
A new helper `_alnum_projection(text)` strips all non-alphanumeric characters.
|
|
||||||
`scan_known_secrets` runs two passes per secret:
|
|
||||||
|
|
||||||
1. **Exact pass** — existing encoded-variant loop (unchanged).
|
|
||||||
2. **Alnum-projection pass** — if the secret's alnum projection has ≥ 8 chars,
|
|
||||||
check if it appears in the text's alnum projection. Match → block with
|
|
||||||
`"fragmented match (separator injection)"` reason.
|
|
||||||
3. **Partial-substring pass** — if the secret's alnum projection has ≥
|
|
||||||
`PARTIAL_MATCH_MIN_LEN` chars (12), slide a window of that length across the
|
|
||||||
secret's projection and look for each window in the text's alnum projection.
|
|
||||||
First match → block with `"partial match"` reason.
|
|
||||||
|
|
||||||
All three passes run only for the `"known_secrets"` detector; the token-pattern
|
|
||||||
and entropy detectors are unchanged.
|
|
||||||
|
|
||||||
### Entropy scoring
|
|
||||||
|
|
||||||
New public function:
|
|
||||||
|
|
||||||
```python
|
|
||||||
def scan_entropy(
|
|
||||||
text: str,
|
|
||||||
*,
|
|
||||||
location: str = "body",
|
|
||||||
window: int = ENTROPY_WINDOW, # 64
|
|
||||||
threshold: float = ENTROPY_BLOCK_THRESHOLD, # 5.5
|
|
||||||
) -> ScanResult | None:
|
|
||||||
```
|
|
||||||
|
|
||||||
Slides a window of `window` characters across `text` in steps of `window // 2`.
|
|
||||||
If any window's Shannon entropy exceeds `threshold`, returns a **warn**-severity
|
|
||||||
`ScanResult`. Never blocks.
|
|
||||||
|
|
||||||
`OUTBOUND_DETECTOR_NAMES` gains `"entropy"`. Routes opt in via their `dlp`
|
|
||||||
block; entropy scanning is **off by default** to avoid false-positive noise on
|
|
||||||
legitimate binary payloads.
|
|
||||||
|
|
||||||
### Binary body handling
|
|
||||||
|
|
||||||
In `scan_outbound`, the bytes → str decoding changes from:
|
|
||||||
|
|
||||||
```python
|
|
||||||
body.decode("utf-8", errors="replace")
|
|
||||||
```
|
|
||||||
|
|
||||||
to:
|
|
||||||
|
|
||||||
```python
|
|
||||||
body.decode("utf-8") if body is str else body.decode("latin-1")
|
|
||||||
```
|
|
||||||
|
|
||||||
`latin-1` is a bijective byte↔codepoint mapping; every byte value is preserved
|
|
||||||
as its corresponding Latin-1 code point, so ASCII-range secret strings remain
|
|
||||||
intact and `str.find` / regex still locate them correctly. The fallback from
|
|
||||||
strict UTF-8 is tried first so valid UTF-8 bodies are decoded faithfully.
|
|
||||||
|
|
||||||
## Implementation
|
|
||||||
|
|
||||||
Delivered in three commits on the same branch:
|
|
||||||
|
|
||||||
1. **DLP detector changes** — `_alnum_projection`, fragmentation passes,
|
|
||||||
`scan_entropy`, broadened `scan_known_secrets`, updated `scan_outbound` and
|
|
||||||
`redact_tokens`; all accompanying unit tests.
|
|
||||||
2. **Canary injection** — `EgressPlan.canary`, `Egress.prepare()`,
|
|
||||||
Docker compose + macos-container backend injection.
|
|
||||||
3. **PRD flip** — `Status: Draft → Active`.
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
# PRD 0064: LOG_FULL egress logging credential redaction
|
|
||||||
|
|
||||||
- **Status:** Active
|
|
||||||
- **Author:** claude
|
|
||||||
- **Created:** 2026-06-25
|
|
||||||
- **Issue:** #257
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
The `LOG_FULL` egress logging path (`_log_request` and `_log_response` in `egress_addon.py`) writes request/response headers and bodies to stderr without redaction and includes the sidecar-injected upstream `Authorization` header verbatim. This PR applies `redact_tokens` to header values and bodies in both log functions and strips the injected `Authorization` header from request logs entirely.
|
|
||||||
|
|
||||||
## Problem
|
|
||||||
|
|
||||||
`LOG_FULL` (log level 2) is intended for debugging egress traffic. When active it calls `_log_request` and `_log_response`. Both functions have two related bugs:
|
|
||||||
|
|
||||||
1. **Injected `Authorization` header exposure.** `_log_request` is called *after* the sidecar injects upstream credentials (`flow.request.headers["authorization"] = decision.inject_authorization`). The full header dict — including the live credential — is serialized to stderr. Any log collector that ingests the egress container's stderr will receive the upstream bearer token in plaintext.
|
|
||||||
|
|
||||||
2. **Unredacted bodies and header values.** Neither `_log_request` nor `_log_response` passes body or header values through `redact_tokens`. By contrast, `_req_ctx` (used for block/warn events) already calls `redact_tokens` on path and host. Any provisioned secret or recognized token pattern that appears in a request body, response body, or non-Authorization header value will be logged verbatim under `LOG_FULL`.
|
|
||||||
|
|
||||||
These two bugs compose: an agent that enables `LOG_FULL` and simultaneously triggers a request that carries a known token gains a write path from credentials → egress logs.
|
|
||||||
|
|
||||||
## Goals / Success Criteria
|
|
||||||
|
|
||||||
- `_log_request` never logs the `authorization` header in any form.
|
|
||||||
- `_log_request` applies `redact_tokens(value, env=os.environ)` to every other header value before serializing.
|
|
||||||
- `_log_request` applies `redact_tokens(body, env=os.environ)` to the request body before logging.
|
|
||||||
- `_log_response` applies `redact_tokens(value, env=os.environ)` to every response header value before logging.
|
|
||||||
- `_log_response` applies `redact_tokens(body, env=os.environ)` to the response body before logging.
|
|
||||||
- Unit tests cover each of the five cases above.
|
|
||||||
|
|
||||||
## Non-goals
|
|
||||||
|
|
||||||
- Redacting host or path in the full-log path (already covered by `_req_ctx` for block/warn events; `_log_request` already calls `redact_tokens` on host and path).
|
|
||||||
- Suppressing `LOG_FULL` or adding a new log level.
|
|
||||||
- Changing the outbound DLP scan logic.
|
|
||||||
|
|
||||||
## Design
|
|
||||||
|
|
||||||
### `_log_request`
|
|
||||||
|
|
||||||
```python
|
|
||||||
def _log_request(self, flow: http.HTTPFlow) -> None:
|
|
||||||
headers = {
|
|
||||||
k: redact_tokens(v, env=os.environ)
|
|
||||||
for k, v in flow.request.headers.items()
|
|
||||||
if k.lower() != "authorization"
|
|
||||||
}
|
|
||||||
body = redact_tokens(flow.request.get_text(strict=False) or "", env=os.environ)
|
|
||||||
sys.stderr.write(
|
|
||||||
json.dumps({
|
|
||||||
"event": "egress_request",
|
|
||||||
"host": redact_tokens(flow.request.pretty_host, env=os.environ),
|
|
||||||
"method": flow.request.method,
|
|
||||||
"path": redact_tokens(flow.request.path, env=os.environ),
|
|
||||||
"headers": headers,
|
|
||||||
"body": body,
|
|
||||||
})
|
|
||||||
+ "\n"
|
|
||||||
)
|
|
||||||
```
|
|
||||||
|
|
||||||
The `authorization` key is excluded because by the time `_log_request` is called the sidecar has already injected the upstream credential (`decision.inject_authorization`). Logging it would write a live bearer token to stderr on every allowed request. There is no safe subset to log — the value is always a live credential or empty.
|
|
||||||
|
|
||||||
### `_log_response`
|
|
||||||
|
|
||||||
```python
|
|
||||||
def _log_response(self, flow: http.HTTPFlow) -> None:
|
|
||||||
headers = {
|
|
||||||
k: redact_tokens(v, env=os.environ)
|
|
||||||
for k, v in flow.response.headers.items()
|
|
||||||
}
|
|
||||||
body = redact_tokens(flow.response.get_text(strict=False) or "", env=os.environ)
|
|
||||||
sys.stderr.write(
|
|
||||||
json.dumps({
|
|
||||||
"event": "egress_response",
|
|
||||||
"host": flow.request.pretty_host,
|
|
||||||
"status": flow.response.status_code,
|
|
||||||
"headers": headers,
|
|
||||||
"body": body,
|
|
||||||
})
|
|
||||||
+ "\n"
|
|
||||||
)
|
|
||||||
```
|
|
||||||
|
|
||||||
Response headers don't carry injected credentials, so no header name is suppressed — only the values are scrubbed by `redact_tokens`.
|
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
# PRD 0061: Gitleaks inline suppression supervision
|
# PRD prd-new: Gitleaks inline suppression supervision
|
||||||
|
|
||||||
- **Status:** Active
|
- **Status:** Active
|
||||||
- **Author:** codex
|
- **Author:** codex
|
||||||
@@ -1,360 +0,0 @@
|
|||||||
# Apple Container networking spike
|
|
||||||
|
|
||||||
Issue: https://gitea.dideric.is/didericis/bot-bottle/issues/230
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
Apple Container 1.0.0 on macOS 26 can support the core two-network
|
|
||||||
sidecar shape, but not as a drop-in Docker Compose clone.
|
|
||||||
|
|
||||||
The viable shape is:
|
|
||||||
|
|
||||||
- agent container on one `--internal` host-only network;
|
|
||||||
- sidecar bundle container on both the NAT egress network and the
|
|
||||||
host-only agent network;
|
|
||||||
- sidecar network flags ordered with the NAT network first, because
|
|
||||||
Apple Container chooses the first network as the default route;
|
|
||||||
- explicit DNS on the sidecar, because the tested NAT gateway routed
|
|
||||||
packets but did not resolve DNS;
|
|
||||||
- agent talks to sidecar by the sidecar's host-only-network IP, not by
|
|
||||||
container name or host-published loopback alias.
|
|
||||||
|
|
||||||
This is enough to unblock a cautious `macos-container` launch spike if
|
|
||||||
the backend records inspect-derived IPs and avoids depending on Docker
|
|
||||||
Compose-style aliases. It is not enough to reuse the Docker backend's
|
|
||||||
service-name assumptions unchanged.
|
|
||||||
|
|
||||||
## Local Environment
|
|
||||||
|
|
||||||
Tested on 2026-06-10:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ sw_vers
|
|
||||||
ProductName: macOS
|
|
||||||
ProductVersion: 26.5.1
|
|
||||||
BuildVersion: 25F80
|
|
||||||
|
|
||||||
$ uname -m
|
|
||||||
arm64
|
|
||||||
|
|
||||||
$ container --version
|
|
||||||
container CLI version 1.0.0 (build: release, commit: ee848e3)
|
|
||||||
|
|
||||||
$ container system version --format json
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"appName": "container",
|
|
||||||
"buildType": "release",
|
|
||||||
"commit": "ee848e3ebfd7c73b04dd419683be54fb450b8779",
|
|
||||||
"version": "1.0.0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"appName": "container-apiserver",
|
|
||||||
"buildType": "release",
|
|
||||||
"commit": "ee848e3ebfd7c73b04dd419683be54fb450b8779",
|
|
||||||
"version": "container-apiserver version 1.0.0 (build: release, commit: ee848e3)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
|
|
||||||
$ container system status --format json
|
|
||||||
{
|
|
||||||
"apiServerAppName": "container-apiserver",
|
|
||||||
"apiServerBuild": "release",
|
|
||||||
"apiServerCommit": "ee848e3ebfd7c73b04dd419683be54fb450b8779",
|
|
||||||
"apiServerVersion": "container-apiserver version 1.0.0 (build: release, commit: ee848e3)",
|
|
||||||
"appRoot": "/Users/didericis/Library/Application Support/com.apple.container/",
|
|
||||||
"installRoot": "/usr/local/",
|
|
||||||
"status": "running"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Apple Container was installed from the official signed 1.0.0 GitHub
|
|
||||||
release package, `container-1.0.0-installer-signed.pkg`. The package was
|
|
||||||
signed by `Developer ID Installer: Apple Inc. - Containerization
|
|
||||||
(UPBK2H6LZM)` and notarized by Apple.
|
|
||||||
|
|
||||||
## Commands Run
|
|
||||||
|
|
||||||
Create the networks:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container network create bb-spike-230-agent \
|
|
||||||
--internal \
|
|
||||||
--label bot-bottle.spike=apple-container-networking
|
|
||||||
|
|
||||||
container network create bb-spike-230-egress \
|
|
||||||
--label bot-bottle.spike=apple-container-networking
|
|
||||||
```
|
|
||||||
|
|
||||||
`container network inspect bb-spike-230-agent bb-spike-230-egress`
|
|
||||||
showed:
|
|
||||||
|
|
||||||
```json
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"configuration": {
|
|
||||||
"labels": {"bot-bottle.spike": "apple-container-networking"},
|
|
||||||
"mode": "hostOnly",
|
|
||||||
"name": "bb-spike-230-agent",
|
|
||||||
"plugin": "container-network-vmnet"
|
|
||||||
},
|
|
||||||
"id": "bb-spike-230-agent",
|
|
||||||
"status": {
|
|
||||||
"ipv4Gateway": "192.168.128.1",
|
|
||||||
"ipv4Subnet": "192.168.128.0/24"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"configuration": {
|
|
||||||
"labels": {"bot-bottle.spike": "apple-container-networking"},
|
|
||||||
"mode": "nat",
|
|
||||||
"name": "bb-spike-230-egress",
|
|
||||||
"plugin": "container-network-vmnet"
|
|
||||||
},
|
|
||||||
"id": "bb-spike-230-egress",
|
|
||||||
"status": {
|
|
||||||
"ipv4Gateway": "192.168.66.1",
|
|
||||||
"ipv4Subnet": "192.168.66.0/24"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
```
|
|
||||||
|
|
||||||
Repeated `--network` flags are accepted. With the agent network first,
|
|
||||||
the sidecar got two interfaces but the default route pointed at the
|
|
||||||
host-only gateway, so egress failed:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230-sidecar \
|
|
||||||
--label bot-bottle.spike=apple-container-networking \
|
|
||||||
--network bb-spike-230-agent \
|
|
||||||
--network bb-spike-230-egress \
|
|
||||||
--detach --rm docker.io/python:alpine \
|
|
||||||
sh -c 'mkdir -p /srv && printf ok >/srv/index.html && cd /srv && python3 -m http.server 80 --bind 0.0.0.0'
|
|
||||||
|
|
||||||
container exec bb-spike-230-sidecar sh -c 'ip route && cat /etc/resolv.conf'
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
default via 192.168.128.1 dev eth0
|
|
||||||
192.168.66.0/24 dev eth1 scope link src 192.168.66.3
|
|
||||||
192.168.128.0/24 dev eth0 scope link src 192.168.128.3
|
|
||||||
nameserver 192.168.128.1
|
|
||||||
```
|
|
||||||
|
|
||||||
With the NAT network first and explicit DNS, the sidecar can egress:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230-sidecar \
|
|
||||||
--label bot-bottle.spike=apple-container-networking \
|
|
||||||
--network bb-spike-230-egress \
|
|
||||||
--network bb-spike-230-agent \
|
|
||||||
--dns 1.1.1.1 \
|
|
||||||
--detach docker.io/python:alpine \
|
|
||||||
sh -c 'mkdir -p /srv && printf ok >/srv/index.html && cd /srv && python3 -m http.server 80 --bind 0.0.0.0'
|
|
||||||
|
|
||||||
container exec bb-spike-230-sidecar sh -c 'ip route; cat /etc/resolv.conf; wget -T 8 -O- https://example.com'
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
default via 192.168.66.1 dev eth0
|
|
||||||
192.168.66.0/24 dev eth0 scope link src 192.168.66.5
|
|
||||||
192.168.128.0/24 dev eth1 scope link src 192.168.128.7
|
|
||||||
nameserver 1.1.1.1
|
|
||||||
Connecting to example.com (172.66.147.243:443)
|
|
||||||
... 100%
|
|
||||||
```
|
|
||||||
|
|
||||||
Start an agent only on the host-only network:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230-agent \
|
|
||||||
--label bot-bottle.spike=apple-container-networking \
|
|
||||||
--network bb-spike-230-agent \
|
|
||||||
--detach docker.io/alpine:latest sleep 600
|
|
||||||
```
|
|
||||||
|
|
||||||
Agent network probes:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230-agent sh -c '
|
|
||||||
ip route
|
|
||||||
cat /etc/resolv.conf
|
|
||||||
wget -T 5 -O- http://192.168.128.7
|
|
||||||
wget -T 5 -O- http://bb-spike-230-sidecar || true
|
|
||||||
ping -c 2 1.1.1.1 || true
|
|
||||||
wget -T 5 -O- https://example.com || true
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
default via 192.168.128.1 dev eth0
|
|
||||||
192.168.128.0/24 dev eth0 scope link src 192.168.128.8
|
|
||||||
nameserver 192.168.128.1
|
|
||||||
Connecting to 192.168.128.7 (192.168.128.7:80)
|
|
||||||
ok
|
|
||||||
wget: bad address 'bb-spike-230-sidecar'
|
|
||||||
2 packets transmitted, 0 packets received, 100% packet loss
|
|
||||||
wget: bad address 'example.com'
|
|
||||||
```
|
|
||||||
|
|
||||||
Host-published loopback aliases work and are constrained to the bound
|
|
||||||
alias on the host:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230-sidecar-alias \
|
|
||||||
--label bot-bottle.spike=apple-container-networking \
|
|
||||||
--network bb-spike-230-egress \
|
|
||||||
--network bb-spike-230-agent \
|
|
||||||
--dns 1.1.1.1 \
|
|
||||||
--publish 127.0.0.31:18080:80 \
|
|
||||||
--detach docker.io/python:alpine \
|
|
||||||
sh -c 'mkdir -p /srv && printf ok >/srv/index.html && cd /srv && python3 -m http.server 80 --bind 0.0.0.0'
|
|
||||||
|
|
||||||
curl -fsS --max-time 5 http://127.0.0.31:18080
|
|
||||||
curl -fsS --max-time 5 http://127.0.0.1:18080
|
|
||||||
lsof -nP -iTCP:18080 -sTCP:LISTEN
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ curl -fsS --max-time 5 http://127.0.0.31:18080
|
|
||||||
ok
|
|
||||||
|
|
||||||
$ curl -fsS --max-time 5 http://127.0.0.1:18080
|
|
||||||
curl: (7) Failed to connect to 127.0.0.1 port 18080 after 0 ms: Couldn't connect to server
|
|
||||||
|
|
||||||
$ lsof -nP -iTCP:18080 -sTCP:LISTEN
|
|
||||||
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
|
|
||||||
container 17908 didericis 25u IPv4 ... 0t0 TCP 127.0.0.31:18080 (LISTEN)
|
|
||||||
```
|
|
||||||
|
|
||||||
The guest cannot reach that host loopback-published listener through
|
|
||||||
the host-only gateway or through its own loopback address:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230-agent sh -c '
|
|
||||||
wget -T 5 -O- http://192.168.128.10
|
|
||||||
wget -T 5 -O- http://192.168.128.1:18080 || true
|
|
||||||
wget -T 5 -O- http://127.0.0.31:18080 || true
|
|
||||||
wget -T 5 -O- http://bb-spike-230-sidecar-alias || true
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
Connecting to 192.168.128.10 (192.168.128.10:80)
|
|
||||||
ok
|
|
||||||
Connecting to 192.168.128.1:18080 (192.168.128.1:18080)
|
|
||||||
wget: can't connect to remote host (192.168.128.1): Connection refused
|
|
||||||
Connecting to 127.0.0.31:18080 (127.0.0.31:18080)
|
|
||||||
wget: can't connect to remote host (127.0.0.31): Connection refused
|
|
||||||
wget: bad address 'bb-spike-230-sidecar-alias'
|
|
||||||
```
|
|
||||||
|
|
||||||
## Answers
|
|
||||||
|
|
||||||
### 1. Does `container network create --internal` prevent outbound internet access?
|
|
||||||
|
|
||||||
Yes in this run. `--internal` produced a `hostOnly` network. An
|
|
||||||
internal-only agent had a default route to the host-only gateway, but
|
|
||||||
could not ping `1.1.1.1` and could not resolve or fetch
|
|
||||||
`https://example.com`.
|
|
||||||
|
|
||||||
### 2. Can `container run` attach one container to multiple networks?
|
|
||||||
|
|
||||||
Yes. Repeated `--network` flags produced multiple interfaces and the
|
|
||||||
inspect JSON preserved both network attachments.
|
|
||||||
|
|
||||||
Important caveat: network order matters. The first network became
|
|
||||||
`eth0`, supplied the default route, and supplied `/etc/resolv.conf`.
|
|
||||||
For a sidecar that needs internet egress, put the NAT network first and
|
|
||||||
the internal agent network second.
|
|
||||||
|
|
||||||
### 3. Can the sidecar bundle sit on both an internal agent network and an egress-capable network?
|
|
||||||
|
|
||||||
Yes. The sidecar had a NAT interface and a host-only interface. With the
|
|
||||||
NAT network first and explicit DNS, it could fetch `https://example.com`
|
|
||||||
while the agent on only the host-only network could not.
|
|
||||||
|
|
||||||
### 4. Can Apple Container provide stable network aliases or service discovery equivalent to Docker Compose aliases?
|
|
||||||
|
|
||||||
Not by default in this run. The agent could not resolve
|
|
||||||
`bb-spike-230-sidecar` or `bb-spike-230-sidecar-alias`, even though
|
|
||||||
those were the container names and hostnames in inspect output. The
|
|
||||||
agent could reach the sidecar by the sidecar's host-only-network IP.
|
|
||||||
|
|
||||||
The backend should not assume Docker Compose-style aliases. It should
|
|
||||||
read the sidecar's host-only IP from `container inspect` and inject
|
|
||||||
that concrete endpoint into the agent environment/config, or run a
|
|
||||||
small internal DNS/hosts-file setup as an explicit backend feature.
|
|
||||||
|
|
||||||
### 5. Can a published sidecar port bound to a per-bottle loopback alias be reached from another Apple Container guest and constrained to that alias?
|
|
||||||
|
|
||||||
Host-side alias binding works and is constrained on the host:
|
|
||||||
`127.0.0.31:18080` reached the sidecar, while `127.0.0.1:18080` failed.
|
|
||||||
|
|
||||||
Guest-to-host-published-loopback did not work. From the agent,
|
|
||||||
`192.168.128.1:18080` and `127.0.0.31:18080` both failed. For
|
|
||||||
agent-to-sidecar traffic, use the sidecar's internal network IP rather
|
|
||||||
than a host-published loopback alias.
|
|
||||||
|
|
||||||
### 6. What structured output is available for robust enumeration and cleanup?
|
|
||||||
|
|
||||||
Confirmed structured output:
|
|
||||||
|
|
||||||
- `container list --all --format json`
|
|
||||||
- `container inspect <container...>` as JSON
|
|
||||||
- `container image inspect <image...>` as JSON
|
|
||||||
- `container network list --format json`
|
|
||||||
- `container network inspect <network...>` as JSON
|
|
||||||
- `container system status --format json`
|
|
||||||
- `container system version --format json`
|
|
||||||
|
|
||||||
Useful fields observed:
|
|
||||||
|
|
||||||
- containers: `id`, `configuration.labels`,
|
|
||||||
`configuration.networks`, `configuration.publishedPorts`,
|
|
||||||
`status.state`, `status.networks[].network`,
|
|
||||||
`status.networks[].ipv4Address`, `status.networks[].ipv4Gateway`;
|
|
||||||
- networks: `id`, `configuration.name`, `configuration.labels`,
|
|
||||||
`configuration.mode`, `status.ipv4Gateway`, `status.ipv4Subnet`;
|
|
||||||
- images: `id`, `configuration.name`, `configuration.descriptor`,
|
|
||||||
`variants[].platform`, `variants[].size`.
|
|
||||||
|
|
||||||
### 7. Are labels supported on containers and networks enough to replace prefix-only discovery?
|
|
||||||
|
|
||||||
Labels are present in container and network inspect/list JSON, so they
|
|
||||||
are sufficient as metadata if the backend lists resources and filters
|
|
||||||
client-side. I did not find or validate a server-side label filter for
|
|
||||||
`container list` or `container network list`.
|
|
||||||
|
|
||||||
## Recommendation
|
|
||||||
|
|
||||||
Proceed with a narrow `macos-container` launch prototype, but encode
|
|
||||||
the Apple Container-specific constraints directly:
|
|
||||||
|
|
||||||
- create one host-only agent network and one NAT egress network per
|
|
||||||
bottle;
|
|
||||||
- start the sidecar bundle with `--network <egress>` before
|
|
||||||
`--network <agent>`;
|
|
||||||
- set sidecar DNS explicitly, ideally from the bottle/host policy
|
|
||||||
rather than hardcoding a public resolver;
|
|
||||||
- start the agent only on the host-only network;
|
|
||||||
- discover the sidecar's host-only IP from `container inspect` and pass
|
|
||||||
concrete URLs to the agent;
|
|
||||||
- use host loopback publishing only for host-to-sidecar access, not
|
|
||||||
guest-to-sidecar access;
|
|
||||||
- enumerate and clean up by labels plus name prefixes until/unless the
|
|
||||||
CLI adds label filters.
|
|
||||||
|
|
||||||
Do not implement the backend as a direct clone of Docker Compose
|
|
||||||
service aliases. That assumption failed in this run.
|
|
||||||
@@ -1,476 +0,0 @@
|
|||||||
# Apple Container transparent egress spike
|
|
||||||
|
|
||||||
Issue: https://gitea.dideric.is/didericis/bot-bottle/issues/230#issuecomment-1994
|
|
||||||
|
|
||||||
## Summary
|
|
||||||
|
|
||||||
Transparent egress is mechanically possible on Apple Container 1.0.0,
|
|
||||||
but it is not a free property of the platform and it is not a drop-in
|
|
||||||
replacement for `HTTP_PROXY` yet.
|
|
||||||
|
|
||||||
The spike proved two separate things:
|
|
||||||
|
|
||||||
- Plain routing/NAT works if the sidecar has `CAP_NET_ADMIN`, IP
|
|
||||||
forwarding, and masquerade rules, and if the agent default route is
|
|
||||||
changed to the sidecar's host-only-network IP.
|
|
||||||
- Transparent mitmproxy interception works if the sidecar redirects
|
|
||||||
agent-facing TCP 80/443 traffic to `mitmdump --mode transparent`.
|
|
||||||
Direct HTTP was logged by mitmproxy. Direct HTTPS reached mitmproxy;
|
|
||||||
it failed with normal certificate verification until the client
|
|
||||||
skipped verification, which is consistent with bot-bottle's existing
|
|
||||||
requirement that agents trust the sidecar CA.
|
|
||||||
- Running DNS on the sidecar and pointing the agent at the sidecar's
|
|
||||||
host-only IP also works. This is cleaner than relying on forwarded
|
|
||||||
UDP DNS to a public resolver and gives the backend a natural place to
|
|
||||||
enforce or observe DNS policy.
|
|
||||||
|
|
||||||
The hard blocker is agent routing. Apple Container 1.0.0 exposes no
|
|
||||||
documented `--network` gateway option. An ordinary agent container
|
|
||||||
cannot replace its default route:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ container exec bb-spike-230t-agent sh -c \
|
|
||||||
'ip route replace default via 192.168.128.2 dev eth0; ip route'
|
|
||||||
default via 192.168.128.1 dev eth0
|
|
||||||
192.168.128.0/24 dev eth0 scope link src 192.168.128.3
|
|
||||||
ip: RTNETLINK answers: Operation not permitted
|
|
||||||
```
|
|
||||||
|
|
||||||
The successful route-through-sidecar tests used `--cap-add
|
|
||||||
CAP_NET_ADMIN` on the agent so the route could be changed after start.
|
|
||||||
That is not an acceptable final design by itself: it expands the
|
|
||||||
agent's kernel-facing privilege and lets the agent mutate its own
|
|
||||||
network namespace. A production design needs either a backend-owned
|
|
||||||
init/shim that sets the route then drops privilege in a way the agent
|
|
||||||
cannot regain, a platform-supported gateway option, or a different
|
|
||||||
network attachment layer.
|
|
||||||
|
|
||||||
## Environment
|
|
||||||
|
|
||||||
Tested on 2026-06-10:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ sw_vers
|
|
||||||
ProductName: macOS
|
|
||||||
ProductVersion: 26.5.1
|
|
||||||
BuildVersion: 25F80
|
|
||||||
|
|
||||||
$ uname -m
|
|
||||||
arm64
|
|
||||||
|
|
||||||
$ container --version
|
|
||||||
container CLI version 1.0.0 (build: release, commit: ee848e3)
|
|
||||||
```
|
|
||||||
|
|
||||||
Apple Container system status:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"apiServerAppName": "container-apiserver",
|
|
||||||
"apiServerBuild": "release",
|
|
||||||
"apiServerCommit": "ee848e3ebfd7c73b04dd419683be54fb450b8779",
|
|
||||||
"apiServerVersion": "container-apiserver version 1.0.0 (build: release, commit: ee848e3)",
|
|
||||||
"appRoot": "/Users/didericis/Library/Application Support/com.apple.container/",
|
|
||||||
"installRoot": "/usr/local/",
|
|
||||||
"status": "running"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Baseline
|
|
||||||
|
|
||||||
Networks:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container network create bb-spike-230t-agent \
|
|
||||||
--internal \
|
|
||||||
--label bot-bottle.spike=transparent-egress
|
|
||||||
|
|
||||||
container network create bb-spike-230t-egress \
|
|
||||||
--label bot-bottle.spike=transparent-egress
|
|
||||||
```
|
|
||||||
|
|
||||||
Sidecar, dual-homed with NAT first:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230t-sidecar \
|
|
||||||
--label bot-bottle.spike=transparent-egress \
|
|
||||||
--network bb-spike-230t-egress \
|
|
||||||
--network bb-spike-230t-agent \
|
|
||||||
--dns 1.1.1.1 \
|
|
||||||
--detach docker.io/alpine:latest sleep 1800
|
|
||||||
```
|
|
||||||
|
|
||||||
Agent, host-only network:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230t-agent \
|
|
||||||
--label bot-bottle.spike=transparent-egress \
|
|
||||||
--network bb-spike-230t-agent \
|
|
||||||
--detach docker.io/alpine:latest sleep 1800
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed sidecar addresses:
|
|
||||||
|
|
||||||
```console
|
|
||||||
eth0 192.168.66.2/24 # NAT egress network
|
|
||||||
eth1 192.168.128.2/24 # host-only agent network
|
|
||||||
default via 192.168.66.1 dev eth0
|
|
||||||
nameserver 1.1.1.1
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed agent baseline:
|
|
||||||
|
|
||||||
```console
|
|
||||||
eth0 192.168.128.3/24
|
|
||||||
default via 192.168.128.1 dev eth0
|
|
||||||
nameserver 192.168.128.1
|
|
||||||
wget: bad address 'pypi.org'
|
|
||||||
```
|
|
||||||
|
|
||||||
That confirms the previous spike's baseline: sidecar can egress, agent
|
|
||||||
cannot egress directly.
|
|
||||||
|
|
||||||
## Plain NAT Test
|
|
||||||
|
|
||||||
Relaunch sidecar and agent with `CAP_NET_ADMIN`:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230t-sidecar \
|
|
||||||
--label bot-bottle.spike=transparent-egress \
|
|
||||||
--network bb-spike-230t-egress \
|
|
||||||
--network bb-spike-230t-agent \
|
|
||||||
--dns 1.1.1.1 \
|
|
||||||
--cap-add CAP_NET_ADMIN \
|
|
||||||
--detach docker.io/alpine:latest sleep 1800
|
|
||||||
|
|
||||||
container run --name bb-spike-230t-agent \
|
|
||||||
--label bot-bottle.spike=transparent-egress \
|
|
||||||
--network bb-spike-230t-agent \
|
|
||||||
--cap-add CAP_NET_ADMIN \
|
|
||||||
--detach docker.io/alpine:latest sleep 1800
|
|
||||||
```
|
|
||||||
|
|
||||||
Configure sidecar forwarding:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230t-sidecar sh -c '
|
|
||||||
apk add --no-cache iptables iproute2
|
|
||||||
sysctl -w net.ipv4.ip_forward=1
|
|
||||||
iptables -t nat -A POSTROUTING -s 192.168.128.0/24 -o eth0 -j MASQUERADE
|
|
||||||
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
|
|
||||||
iptables -A FORWARD -i eth0 -o eth1 -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
Point the agent at the sidecar:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230t-agent sh -c '
|
|
||||||
ip route replace default via 192.168.128.4 dev eth0
|
|
||||||
printf "nameserver 1.1.1.1\n" > /etc/resolv.conf
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
Normal direct PyPI fetch from the agent, with no proxy variables set:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230t-agent sh -c '
|
|
||||||
for v in HTTP_PROXY HTTPS_PROXY http_proxy https_proxy ALL_PROXY all_proxy; do
|
|
||||||
if [ -n "$(printenv "$v")" ]; then echo "$v=SET"; fi
|
|
||||||
done
|
|
||||||
wget -T 10 -O- https://pypi.org/simple/pip/ | head -c 120
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
Connecting to pypi.org (151.101.0.223:443)
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta name="pypi:repository-version" content="1.4">
|
|
||||||
```
|
|
||||||
|
|
||||||
Sidecar NAT counters increased:
|
|
||||||
|
|
||||||
```console
|
|
||||||
POSTROUTING MASQUERADE 3 packets / 168 bytes
|
|
||||||
FORWARD eth1 -> eth0 22 packets / 2806 bytes
|
|
||||||
FORWARD eth0 -> eth1 29 packets / 54781 bytes
|
|
||||||
```
|
|
||||||
|
|
||||||
Verdict: plain transparent routing through the sidecar works, but this
|
|
||||||
is only NAT. It does not apply bot-bottle's existing route allowlist,
|
|
||||||
authorization stripping/injection, or DLP logic.
|
|
||||||
|
|
||||||
## Transparent Mitmproxy Test
|
|
||||||
|
|
||||||
The current sidecar launcher uses explicit proxy mode:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
MODE="--mode regular@9099"
|
|
||||||
exec mitmdump $CONFDIR_FLAG $MODE $LISTEN_HOST_FLAG $TRUST_FLAG -s /app/egress_addon.py
|
|
||||||
```
|
|
||||||
|
|
||||||
So transparent egress needs a launcher mode change plus iptables
|
|
||||||
redirects.
|
|
||||||
|
|
||||||
Run a test mitmproxy container:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container run --name bb-spike-230t-mitm \
|
|
||||||
--label bot-bottle.spike=transparent-egress \
|
|
||||||
--network bb-spike-230t-egress \
|
|
||||||
--network bb-spike-230t-agent \
|
|
||||||
--dns 1.1.1.1 \
|
|
||||||
--cap-add CAP_NET_ADMIN \
|
|
||||||
--detach mitmproxy/mitmproxy:11.1.3 \
|
|
||||||
sh -c 'apt-get update >/tmp/apt.log &&
|
|
||||||
apt-get install -y --no-install-recommends iptables iproute2 >>/tmp/apt.log &&
|
|
||||||
echo 1 > /proc/sys/net/ipv4/ip_forward &&
|
|
||||||
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 80 -j REDIRECT --to-port 8080 &&
|
|
||||||
iptables -t nat -A PREROUTING -i eth1 -p tcp --dport 443 -j REDIRECT --to-port 8080 &&
|
|
||||||
mitmdump --mode transparent@8080 --set showhost=true --set ssl_insecure=true --set confdir=/tmp/mitm -v'
|
|
||||||
```
|
|
||||||
|
|
||||||
The container listened successfully:
|
|
||||||
|
|
||||||
```console
|
|
||||||
Transparent Proxy listening at *:8080.
|
|
||||||
```
|
|
||||||
|
|
||||||
It had an agent-facing address of `192.168.128.7`. Point the agent at
|
|
||||||
it and set DNS:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230t-agent sh -c '
|
|
||||||
ip route replace default via 192.168.128.7 dev eth0
|
|
||||||
printf "nameserver 1.1.1.1\n" > /etc/resolv.conf
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
DNS also needs NAT/forwarding because only TCP 80/443 is redirected:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230t-mitm sh -c '
|
|
||||||
iptables -t nat -A POSTROUTING -s 192.168.128.0/24 -o eth0 -j MASQUERADE
|
|
||||||
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
|
|
||||||
iptables -A FORWARD -i eth0 -o eth1 -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
An alternative, and likely better, DNS shape is to run a DNS forwarder on
|
|
||||||
the sidecar's host-only IP and point the agent at it. This was tested
|
|
||||||
with `dnsmasq`:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230t-mitm sh -c '
|
|
||||||
apt-get install -y --no-install-recommends dnsmasq
|
|
||||||
cat >/tmp/dnsmasq.conf <<EOF
|
|
||||||
no-daemon
|
|
||||||
listen-address=192.168.128.7
|
|
||||||
bind-interfaces
|
|
||||||
server=1.1.1.1
|
|
||||||
log-queries
|
|
||||||
log-facility=-
|
|
||||||
EOF
|
|
||||||
(dnsmasq --conf-file=/tmp/dnsmasq.conf >/tmp/dnsmasq.log 2>&1 &)
|
|
||||||
sleep 1
|
|
||||||
ss -lunp | grep :53
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
UNCONN 0 0 192.168.128.7:53 0.0.0.0:* users:(("dnsmasq",pid=515,fd=4))
|
|
||||||
```
|
|
||||||
|
|
||||||
Point the agent to sidecar DNS:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
container exec bb-spike-230t-agent sh -c '
|
|
||||||
printf "nameserver 192.168.128.7\n" > /etc/resolv.conf
|
|
||||||
nslookup pypi.org
|
|
||||||
'
|
|
||||||
```
|
|
||||||
|
|
||||||
Observed:
|
|
||||||
|
|
||||||
```console
|
|
||||||
Server: 192.168.128.7
|
|
||||||
Address: 192.168.128.7:53
|
|
||||||
|
|
||||||
Non-authoritative answer:
|
|
||||||
Name: pypi.org
|
|
||||||
Address: 151.101.128.223
|
|
||||||
Name: pypi.org
|
|
||||||
Address: 151.101.192.223
|
|
||||||
Name: pypi.org
|
|
||||||
Address: 151.101.64.223
|
|
||||||
Name: pypi.org
|
|
||||||
Address: 151.101.0.223
|
|
||||||
```
|
|
||||||
|
|
||||||
Direct HTTP from the agent worked and mitmproxy logged the request:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ container exec bb-spike-230t-agent sh -c \
|
|
||||||
'wget -T 10 -O- http://example.com | head -c 100'
|
|
||||||
Connecting to example.com (172.66.147.243:80)
|
|
||||||
<!doctype html><html lang="en"><head><title>Example Domain</title>
|
|
||||||
```
|
|
||||||
|
|
||||||
Mitmproxy log:
|
|
||||||
|
|
||||||
```console
|
|
||||||
192.168.128.5:39742: GET http://example.com/
|
|
||||||
Host: example.com
|
|
||||||
User-Agent: Wget
|
|
||||||
<< 200 OK 559b
|
|
||||||
```
|
|
||||||
|
|
||||||
After switching the agent to sidecar DNS, direct HTTP still hit
|
|
||||||
mitmproxy:
|
|
||||||
|
|
||||||
```console
|
|
||||||
192.168.128.5:50784: GET http://example.com/
|
|
||||||
Host: example.com
|
|
||||||
User-Agent: Wget
|
|
||||||
<< 200 OK 559b
|
|
||||||
```
|
|
||||||
|
|
||||||
Direct HTTPS from the agent reached mitmproxy but failed certificate
|
|
||||||
verification, as expected when the client does not trust the mitmproxy
|
|
||||||
CA:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ container exec bb-spike-230t-agent sh -c \
|
|
||||||
'wget -T 10 -O- https://pypi.org/simple/pip/ | head -c 100'
|
|
||||||
Connecting to pypi.org (151.101.128.223:443)
|
|
||||||
... certificate verify failed ...
|
|
||||||
```
|
|
||||||
|
|
||||||
Mitmproxy log:
|
|
||||||
|
|
||||||
```console
|
|
||||||
Client TLS handshake failed. The client does not trust the proxy's
|
|
||||||
certificate for pypi.org (tlsv1 alert unknown ca)
|
|
||||||
```
|
|
||||||
|
|
||||||
With verification disabled, the same direct URL succeeded and mitmproxy
|
|
||||||
logged the full HTTPS request:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ container exec bb-spike-230t-agent sh -c \
|
|
||||||
'wget --no-check-certificate -T 10 -O- https://pypi.org/simple/pip/ | head -c 100'
|
|
||||||
Connecting to pypi.org (151.101.128.223:443)
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta name="pypi:repository-version" content="1.4">
|
|
||||||
```
|
|
||||||
|
|
||||||
Mitmproxy log:
|
|
||||||
|
|
||||||
```console
|
|
||||||
192.168.128.5:32802: GET https://pypi.org/simple/pip/
|
|
||||||
Host: pypi.org
|
|
||||||
User-Agent: Wget
|
|
||||||
<< 200 OK 103k
|
|
||||||
```
|
|
||||||
|
|
||||||
After switching the agent to sidecar DNS, direct HTTPS still hit
|
|
||||||
mitmproxy:
|
|
||||||
|
|
||||||
```console
|
|
||||||
192.168.128.5:50254: GET https://pypi.org/simple/pip/
|
|
||||||
Host: pypi.org
|
|
||||||
User-Agent: Wget
|
|
||||||
<< 200 OK 103k
|
|
||||||
```
|
|
||||||
|
|
||||||
Verdict: transparent mitmproxy mode works in this topology. The bot
|
|
||||||
agent would still need the egress CA installed, which bot-bottle already
|
|
||||||
does for explicit proxy mode.
|
|
||||||
|
|
||||||
## Answers
|
|
||||||
|
|
||||||
### Can the sidecar become the agent network's default gateway?
|
|
||||||
|
|
||||||
Not directly through Apple Container's documented CLI. The installed
|
|
||||||
`container run --help` documents `--network
|
|
||||||
<name>[,mac=XX:XX:XX:XX:XX:XX][,mtu=VALUE]`; it does not document a
|
|
||||||
gateway option.
|
|
||||||
|
|
||||||
The route can be changed after container start only if the agent has
|
|
||||||
`CAP_NET_ADMIN`. Without it, `ip route replace default via <sidecar>`
|
|
||||||
fails with `Operation not permitted`.
|
|
||||||
|
|
||||||
### Can Apple Container support sidecar forwarding/NAT/transparent proxying?
|
|
||||||
|
|
||||||
Yes. A dual-homed sidecar with `CAP_NET_ADMIN` can enable IP forwarding,
|
|
||||||
set iptables NAT/forwarding rules, and route agent traffic out through
|
|
||||||
the NAT network.
|
|
||||||
|
|
||||||
Transparent mitmproxy interception also works with `PREROUTING`
|
|
||||||
redirects to `mitmdump --mode transparent`.
|
|
||||||
|
|
||||||
### What capabilities/custom image are required?
|
|
||||||
|
|
||||||
At minimum:
|
|
||||||
|
|
||||||
- sidecar needs `CAP_NET_ADMIN`;
|
|
||||||
- sidecar image needs `iptables`/`iproute2` or equivalent nftables
|
|
||||||
tooling;
|
|
||||||
- sidecar should run a DNS listener on its host-only IP, or otherwise
|
|
||||||
provide a controlled resolver path for the agent;
|
|
||||||
- sidecar launcher needs a transparent mode variant;
|
|
||||||
- agent route must be changed to the sidecar's host-only IP;
|
|
||||||
- agent DNS should point to the sidecar DNS listener;
|
|
||||||
- agent must trust the sidecar CA for HTTPS interception.
|
|
||||||
|
|
||||||
The tested agent route mutation required agent `CAP_NET_ADMIN`, which
|
|
||||||
should not be accepted as the final design without a privilege-dropping
|
|
||||||
init/shim story.
|
|
||||||
|
|
||||||
### Can host-level `pf` or vmnet rules replace agent route mutation?
|
|
||||||
|
|
||||||
Not tested. The successful transparent paths did not use host `pf`;
|
|
||||||
they used container-local routing and iptables. Host-level `pf` remains
|
|
||||||
a possible escape hatch if Apple Container cannot set a custom gateway
|
|
||||||
and we reject agent `CAP_NET_ADMIN`.
|
|
||||||
|
|
||||||
### Can existing route policy and DLP semantics be preserved?
|
|
||||||
|
|
||||||
Likely, but not fully validated in this spike. Mitmproxy transparent
|
|
||||||
mode produced normal HTTP flows with correct `Host` values for both
|
|
||||||
HTTP and HTTPS. The existing `egress_addon.py` hooks should still see
|
|
||||||
`flow.request.pretty_host`, method, path, headers, and response bodies.
|
|
||||||
|
|
||||||
But the current sidecar entrypoint only starts `mitmdump` in regular
|
|
||||||
explicit-proxy mode. A real implementation must add a transparent mode
|
|
||||||
launcher and then run the existing egress addon test suite against
|
|
||||||
transparent flows.
|
|
||||||
|
|
||||||
## Recommendation
|
|
||||||
|
|
||||||
Do not switch `macos-container` to transparent egress yet, but keep it
|
|
||||||
as a plausible implementation path.
|
|
||||||
|
|
||||||
The next implementation spike should focus on removing the agent
|
|
||||||
`CAP_NET_ADMIN` requirement. Acceptable options:
|
|
||||||
|
|
||||||
- find or add an Apple Container-supported default-gateway setting;
|
|
||||||
- start the agent through a tiny root init that sets route/DNS, drops
|
|
||||||
capabilities, and then execs the agent as the normal user;
|
|
||||||
- include a sidecar DNS service and set the agent resolver to the
|
|
||||||
sidecar's host-only IP as part of that init/setup path;
|
|
||||||
- avoid routing mutation by using host/vmnet-level packet redirection;
|
|
||||||
- explicitly decide that route mutation is only a convenience layer and
|
|
||||||
keep explicit proxy env vars for v1.
|
|
||||||
|
|
||||||
Bluntly: transparent egress is feasible, but not production-ready until
|
|
||||||
the agent route can be controlled without leaving network-admin power in
|
|
||||||
the agent runtime.
|
|
||||||
@@ -22,7 +22,7 @@ escapes**, and **whether credentials are short-lived and scoped**.
|
|||||||
- Outbound: Docker containers have full internet access by default; no egress monitoring on most home networks
|
- Outbound: Docker containers have full internet access by default; no egress monitoring on most home networks
|
||||||
- Lateral movement: compromised container can reach the LAN — NAS, other machines, internal services
|
- Lateral movement: compromised container can reach the LAN — NAS, other machines, internal services
|
||||||
- Notable: CVE-2025-59536 (CVSS 8.7, Feb 2026) — a poisoned `.claude/settings.json` in a repo gives RCE when Claude Code opens it. `--dangerously-skip-permissions` removes the last gate.
|
- Notable: CVE-2025-59536 (CVSS 8.7, Feb 2026) — a poisoned `.claude/settings.json` in a repo gives RCE when Claude Code opens it. `--dangerously-skip-permissions` removes the last gate.
|
||||||
- Supply chain: MCP servers, skills, and npm packages pulled during agent execution. A Jan 2026 large-scale empirical study of a 98,380-skill snapshot confirmed 157 malicious skills, ~71% of them credential harvesters. Exfiltration was overwhelmingly naive — plaintext HTTP to hardcoded endpoints; under 10% used any code obfuscation, and concealment was mostly at the documentation level, not the code level. ([Malicious Agent Skills in the Wild](https://arxiv.org/html/2602.06547v1), arXiv:2602.06547)
|
- Supply chain: MCP servers, skills, and npm packages pulled during agent execution. ~20% of ClawHub skills were found malicious in early 2026.
|
||||||
|
|
||||||
**What local topology protects:**
|
**What local topology protects:**
|
||||||
- No inbound attack surface — nothing listening on a public port
|
- No inbound attack surface — nothing listening on a public port
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
---
|
---
|
||||||
agent_provider:
|
agent_provider:
|
||||||
template: claude
|
template: claude
|
||||||
# auth_token names the host env var holding the Claude OAuth token. The
|
|
||||||
# provider injects a provider-owned api.anthropic.com egress route that
|
egress:
|
||||||
# re-injects this token as the Bearer header; the agent only ever sees a
|
routes:
|
||||||
# placeholder CLAUDE_CODE_OAUTH_TOKEN. DLP defaults (token_patterns,
|
- host: api.anthropic.com
|
||||||
# known_secrets outbound; naive_injection_detection inbound) apply to
|
role: claude_code_oauth
|
||||||
# that route. To scan additional hosts, declare them under egress.routes
|
auth:
|
||||||
# with per-route matches/dlp (see README "Egress route fields").
|
scheme: Bearer
|
||||||
auth_token: BOT_BOTTLE_CLAUDE_OAUTH_TOKEN
|
token_ref: BOT_BOTTLE_CLAUDE_OAUTH_TOKEN
|
||||||
---
|
---
|
||||||
|
|
||||||
Common Claude provider boundary. Drop this file into
|
Common Claude provider boundary. Drop this file into
|
||||||
|
|||||||
@@ -4,4 +4,3 @@
|
|||||||
|
|
||||||
pylint>=3.0.0
|
pylint>=3.0.0
|
||||||
pyright>=1.1.300
|
pyright>=1.1.300
|
||||||
coverage>=7.0.0
|
|
||||||
|
|||||||
+9
-9
@@ -10,7 +10,7 @@ import tempfile
|
|||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Any, Callable
|
from typing import Any, Callable
|
||||||
|
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
|
|
||||||
|
|
||||||
def fixture_minimal_dict() -> dict[str, Any]:
|
def fixture_minimal_dict() -> dict[str, Any]:
|
||||||
@@ -46,12 +46,12 @@ def fixture_with_git_dict() -> dict[str, Any]:
|
|||||||
"repos": {
|
"repos": {
|
||||||
"bot-bottle": {
|
"bot-bottle": {
|
||||||
"url": "ssh://git@gitea.dideric.is:30009/didericis/bot-bottle.git",
|
"url": "ssh://git@gitea.dideric.is:30009/didericis/bot-bottle.git",
|
||||||
"key": {"provider": "static", "path": "/dev/null"},
|
"identity": "/dev/null",
|
||||||
"host_key": "ssh-ed25519 AAAA...",
|
"host_key": "ssh-ed25519 AAAA...",
|
||||||
},
|
},
|
||||||
"foo": {
|
"foo": {
|
||||||
"url": "ssh://git@github.com/didericis/foo.git",
|
"url": "ssh://git@github.com/didericis/foo.git",
|
||||||
"key": {"provider": "static", "path": "/dev/null"},
|
"identity": "/dev/null",
|
||||||
"host_key": "ssh-ed25519 BBBB...",
|
"host_key": "ssh-ed25519 BBBB...",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -62,16 +62,16 @@ def fixture_with_git_dict() -> dict[str, Any]:
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def fixture_minimal() -> ManifestIndex:
|
def fixture_minimal() -> Manifest:
|
||||||
return ManifestIndex.from_json_obj(fixture_minimal_dict())
|
return Manifest.from_json_obj(fixture_minimal_dict())
|
||||||
|
|
||||||
|
|
||||||
def fixture_with_egress() -> ManifestIndex:
|
def fixture_with_egress() -> Manifest:
|
||||||
return ManifestIndex.from_json_obj(fixture_with_egress_dict())
|
return Manifest.from_json_obj(fixture_with_egress_dict())
|
||||||
|
|
||||||
|
|
||||||
def fixture_with_git() -> ManifestIndex:
|
def fixture_with_git() -> Manifest:
|
||||||
return ManifestIndex.from_json_obj(fixture_with_git_dict())
|
return Manifest.from_json_obj(fixture_with_git_dict())
|
||||||
|
|
||||||
|
|
||||||
def write_fixture(fn: Callable[[], dict[str, Any]]) -> Path:
|
def write_fixture(fn: Callable[[], dict[str, Any]]) -> Path:
|
||||||
|
|||||||
@@ -1,239 +0,0 @@
|
|||||||
"""Integration: macOS Container launch topology.
|
|
||||||
|
|
||||||
End-to-end against Apple's real `container` runtime. The smoke launches
|
|
||||||
a bottle with the experimental macOS Container backend and verifies the
|
|
||||||
properties that make the explicit-proxy launch acceptable:
|
|
||||||
|
|
||||||
- the agent can exec commands after provisioning;
|
|
||||||
- HTTP(S)_PROXY points at the sidecar's internal-network IP;
|
|
||||||
- allowlisted HTTPS reaches the egress sidecar;
|
|
||||||
- direct egress with proxy env removed fails from the internal-only
|
|
||||||
agent network;
|
|
||||||
- non-allowlisted proxy traffic is blocked.
|
|
||||||
|
|
||||||
Skipped under Gitea Actions and on hosts without Apple's `container`.
|
|
||||||
"""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import os
|
|
||||||
import platform
|
|
||||||
import shutil
|
|
||||||
import subprocess
|
|
||||||
import tempfile
|
|
||||||
import unittest
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
from bot_bottle.backend import BottleSpec, get_bottle_backend
|
|
||||||
from bot_bottle.backend.macos_container.util import (
|
|
||||||
dns_server as _container_dns_server,
|
|
||||||
is_available as _container_available,
|
|
||||||
)
|
|
||||||
from bot_bottle.manifest import ManifestIndex
|
|
||||||
|
|
||||||
|
|
||||||
_AGENT_PROMPT = "You are a launch smoke-test agent. Be brief."
|
|
||||||
|
|
||||||
|
|
||||||
def _minimal_agent_dockerfile(path: Path) -> None:
|
|
||||||
path.write_text(
|
|
||||||
"\n".join((
|
|
||||||
"FROM node:22-slim",
|
|
||||||
"RUN apt-get update \\",
|
|
||||||
" && apt-get install -y --no-install-recommends \\",
|
|
||||||
" ca-certificates curl git \\",
|
|
||||||
" && rm -rf /var/lib/apt/lists/*",
|
|
||||||
"USER node",
|
|
||||||
"WORKDIR /home/node",
|
|
||||||
"CMD [\"sleep\", \"infinity\"]",
|
|
||||||
"",
|
|
||||||
)),
|
|
||||||
encoding="utf-8",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _minimal_manifest(dockerfile: Path) -> ManifestIndex:
|
|
||||||
return ManifestIndex.from_json_obj({
|
|
||||||
"bottles": {
|
|
||||||
"dev": {
|
|
||||||
"agent_provider": {
|
|
||||||
"template": "pi",
|
|
||||||
"dockerfile": str(dockerfile),
|
|
||||||
"settings": {
|
|
||||||
"provider": "example",
|
|
||||||
"base_url": "https://example.com/v1",
|
|
||||||
"models": ["smoke"],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"egress": {
|
|
||||||
"routes": [
|
|
||||||
{"host": "example.com"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"agents": {
|
|
||||||
"demo": {
|
|
||||||
"skills": [],
|
|
||||||
"prompt": _AGENT_PROMPT,
|
|
||||||
"bottle": "dev",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
def _buildkit_dns_available() -> bool:
|
|
||||||
if platform.system() != "Darwin" or not _container_available():
|
|
||||||
return False
|
|
||||||
stage = Path(tempfile.mkdtemp(prefix="cb-container-buildkit-dns."))
|
|
||||||
image = "bot-bottle-buildkit-dns-check:latest"
|
|
||||||
try:
|
|
||||||
dockerfile = stage / "Dockerfile"
|
|
||||||
dockerfile.write_text(
|
|
||||||
"FROM debian:bookworm-slim\n"
|
|
||||||
"RUN getent hosts deb.debian.org\n",
|
|
||||||
encoding="utf-8",
|
|
||||||
)
|
|
||||||
result = subprocess.run(
|
|
||||||
[
|
|
||||||
"container", "build",
|
|
||||||
"--dns", _container_dns_server(),
|
|
||||||
"-t", image,
|
|
||||||
"-f", str(dockerfile),
|
|
||||||
str(stage),
|
|
||||||
],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
return result.returncode == 0
|
|
||||||
finally:
|
|
||||||
subprocess.run(
|
|
||||||
["container", "image", "delete", image],
|
|
||||||
stdout=subprocess.DEVNULL,
|
|
||||||
stderr=subprocess.DEVNULL,
|
|
||||||
check=False,
|
|
||||||
)
|
|
||||||
shutil.rmtree(stage, ignore_errors=True)
|
|
||||||
|
|
||||||
|
|
||||||
@unittest.skipIf(
|
|
||||||
os.environ.get("GITEA_ACTIONS") == "true",
|
|
||||||
"skipped under act_runner: cannot host Apple Container VMs",
|
|
||||||
)
|
|
||||||
@unittest.skipUnless(
|
|
||||||
platform.system() == "Darwin",
|
|
||||||
"Apple Container is macOS-only",
|
|
||||||
)
|
|
||||||
@unittest.skipUnless(
|
|
||||||
_container_available(),
|
|
||||||
"Apple Container not on PATH; install from "
|
|
||||||
"https://github.com/apple/container/releases",
|
|
||||||
)
|
|
||||||
@unittest.skipUnless(
|
|
||||||
_buildkit_dns_available(),
|
|
||||||
"Apple Container BuildKit cannot resolve deb.debian.org on this host",
|
|
||||||
)
|
|
||||||
class TestMacosContainerLaunch(unittest.TestCase):
|
|
||||||
"""Launch once and reuse the bottle across probes."""
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def setUpClass(cls) -> None:
|
|
||||||
cls.stage = Path(tempfile.mkdtemp(prefix="cb-macos-container-launch."))
|
|
||||||
cls._launch = None
|
|
||||||
cls.bottle = None
|
|
||||||
dockerfile = cls.stage / "Dockerfile.agent-smoke"
|
|
||||||
_minimal_agent_dockerfile(dockerfile)
|
|
||||||
os.environ["BOT_BOTTLE_BACKEND"] = "macos-container"
|
|
||||||
try:
|
|
||||||
backend = get_bottle_backend()
|
|
||||||
spec = BottleSpec(
|
|
||||||
manifest=_minimal_manifest(dockerfile),
|
|
||||||
agent_name="demo",
|
|
||||||
copy_cwd=False,
|
|
||||||
user_cwd=str(cls.stage),
|
|
||||||
)
|
|
||||||
cls.plan = backend.prepare(spec, stage_dir=cls.stage)
|
|
||||||
cls._launch = backend.launch(cls.plan)
|
|
||||||
cls.bottle = cls._launch.__enter__()
|
|
||||||
except BaseException:
|
|
||||||
if cls._launch is not None:
|
|
||||||
cls._launch.__exit__(None, None, None)
|
|
||||||
shutil.rmtree(cls.stage, ignore_errors=True)
|
|
||||||
os.environ.pop("BOT_BOTTLE_BACKEND", None)
|
|
||||||
raise
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def tearDownClass(cls) -> None:
|
|
||||||
try:
|
|
||||||
if cls._launch is not None:
|
|
||||||
cls._launch.__exit__(None, None, None)
|
|
||||||
finally:
|
|
||||||
shutil.rmtree(cls.stage, ignore_errors=True)
|
|
||||||
os.environ.pop("BOT_BOTTLE_BACKEND", None)
|
|
||||||
|
|
||||||
def test_smoke_exec_echo(self):
|
|
||||||
r = self.bottle.exec( # type: ignore[union-attr]
|
|
||||||
"echo hello-from-macos-container"
|
|
||||||
)
|
|
||||||
self.assertEqual(0, r.returncode, msg=r.stderr)
|
|
||||||
self.assertIn("hello-from-macos-container", r.stdout)
|
|
||||||
|
|
||||||
def test_proxy_env_points_at_sidecar_internal_ip(self):
|
|
||||||
r = self.bottle.exec( # type: ignore[union-attr]
|
|
||||||
"printf '%s\n' \"$HTTPS_PROXY\" \"$HTTP_PROXY\" "
|
|
||||||
"\"$NO_PROXY\" \"$NODE_EXTRA_CA_CERTS\""
|
|
||||||
)
|
|
||||||
self.assertEqual(0, r.returncode, msg=r.stderr)
|
|
||||||
values = [line.strip() for line in r.stdout.splitlines()]
|
|
||||||
self.assertEqual(4, len(values), values)
|
|
||||||
self.assertEqual(values[0], values[1], values)
|
|
||||||
self.assertRegex(values[0], r"^http://[0-9.]+:9099$")
|
|
||||||
self.assertNotIn("127.0.0.1", values[0])
|
|
||||||
sidecar_host = values[0].removeprefix("http://").removesuffix(":9099")
|
|
||||||
self.assertIn(sidecar_host, values[2])
|
|
||||||
self.assertEqual(
|
|
||||||
"/usr/local/share/ca-certificates/bot-bottle-mitm-ca.crt",
|
|
||||||
values[3],
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_allowlisted_https_reaches_egress_proxy(self):
|
|
||||||
r = self.bottle.exec( # type: ignore[union-attr]
|
|
||||||
"curl -fsS --max-time 20 https://example.com >/dev/null && echo OK"
|
|
||||||
)
|
|
||||||
self.assertEqual(0, r.returncode, msg=r.stderr + r.stdout)
|
|
||||||
self.assertIn("OK", r.stdout)
|
|
||||||
|
|
||||||
def test_direct_egress_bypass_without_proxy_fails(self):
|
|
||||||
r = self.bottle.exec( # type: ignore[union-attr]
|
|
||||||
"env -u HTTPS_PROXY -u HTTP_PROXY -u https_proxy -u http_proxy "
|
|
||||||
"curl -s --show-error --max-time 5 https://example.com 2>&1 || true"
|
|
||||||
)
|
|
||||||
self.assertTrue(
|
|
||||||
"refused" in r.stdout.lower()
|
|
||||||
or "timed out" in r.stdout.lower()
|
|
||||||
or "unreachable" in r.stdout.lower()
|
|
||||||
or "failed" in r.stdout.lower()
|
|
||||||
or "could not resolve" in r.stdout.lower()
|
|
||||||
or "connection reset" in r.stdout.lower(),
|
|
||||||
f"expected direct egress to fail; got: {r.stdout!r}",
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_non_allowlisted_host_fails_through_proxy(self):
|
|
||||||
r = self.bottle.exec( # type: ignore[union-attr]
|
|
||||||
"curl -s --show-error --max-time 10 https://iana.org 2>&1 || true"
|
|
||||||
)
|
|
||||||
self.assertTrue(
|
|
||||||
"403" in r.stdout
|
|
||||||
or "502" in r.stdout
|
|
||||||
or "blocked" in r.stdout.lower()
|
|
||||||
or "not allowed" in r.stdout.lower()
|
|
||||||
or "not in the bottle's egress.routes allowlist" in r.stdout.lower()
|
|
||||||
or "forbidden" in r.stdout.lower()
|
|
||||||
or "failed" in r.stdout.lower(),
|
|
||||||
f"expected non-allowlisted proxy request to fail; got: {r.stdout!r}",
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
unittest.main()
|
|
||||||
@@ -31,7 +31,7 @@ from pathlib import Path
|
|||||||
|
|
||||||
from bot_bottle.backend import BottleSpec, get_bottle_backend
|
from bot_bottle.backend import BottleSpec, get_bottle_backend
|
||||||
from bot_bottle.bottle_state import cleanup_state
|
from bot_bottle.bottle_state import cleanup_state
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
from tests._docker import skip_unless_docker
|
from tests._docker import skip_unless_docker
|
||||||
|
|
||||||
|
|
||||||
@@ -92,16 +92,17 @@ class TestSandboxEscape(unittest.TestCase):
|
|||||||
"on PATH: curl -sSL https://smolmachines.com/install.sh | sh"
|
"on PATH: curl -sSL https://smolmachines.com/install.sh | sh"
|
||||||
)
|
)
|
||||||
|
|
||||||
# Throwaway static key for the git-gate fixture. It need not
|
# Throwaway "identity file" so the manifest's _validate_git_entries
|
||||||
# be a real SSH key: test 5 reaches gitleaks before any SSH
|
# passes (it only checks `os.path.isfile`, not that the content is
|
||||||
# attempt anyway.
|
# a real SSH key). Test 5 reaches gitleaks before any SSH attempt
|
||||||
|
# anyway.
|
||||||
fd, kp = tempfile.mkstemp(prefix="sandbox-test-key.")
|
fd, kp = tempfile.mkstemp(prefix="sandbox-test-key.")
|
||||||
os.close(fd)
|
os.close(fd)
|
||||||
cls._key_path = Path(kp)
|
cls._key_path = Path(kp)
|
||||||
cls._key_path.write_text("placeholder\n")
|
cls._key_path.write_text("placeholder\n")
|
||||||
cls._key_path.chmod(0o600)
|
cls._key_path.chmod(0o600)
|
||||||
|
|
||||||
manifest = ManifestIndex.from_json_obj({
|
manifest = Manifest.from_json_obj({
|
||||||
"bottles": {
|
"bottles": {
|
||||||
"dev": {
|
"dev": {
|
||||||
# Three fake secrets — different shapes — land
|
# Three fake secrets — different shapes — land
|
||||||
@@ -123,10 +124,7 @@ class TestSandboxEscape(unittest.TestCase):
|
|||||||
"git-gate": {"repos": {
|
"git-gate": {"repos": {
|
||||||
"throwaway": {
|
"throwaway": {
|
||||||
"url": "ssh://git@unreachable.invalid:22/throwaway.git",
|
"url": "ssh://git@unreachable.invalid:22/throwaway.git",
|
||||||
"key": {
|
"identity": str(cls._key_path),
|
||||||
"provider": "static",
|
|
||||||
"path": str(cls._key_path),
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}},
|
}},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -22,15 +22,15 @@ from pathlib import Path
|
|||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from bot_bottle.backend import BottleSpec, get_bottle_backend
|
from bot_bottle.backend import BottleSpec, get_bottle_backend
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
from tests._docker import skip_unless_docker
|
from tests._docker import skip_unless_docker
|
||||||
|
|
||||||
|
|
||||||
def _manifest() -> ManifestIndex:
|
def _manifest() -> Manifest:
|
||||||
"""Bottle with supervise on so the bundle exercises egress +
|
"""Bottle with supervise on so the bundle exercises egress +
|
||||||
supervise. Git is off because a meaningful git-gate test needs
|
supervise. Git is off because a meaningful git-gate test needs
|
||||||
a real upstream and SSH keys — out of scope for a bundle smoke."""
|
a real upstream and SSH keys — out of scope for a bundle smoke."""
|
||||||
return ManifestIndex.from_json_obj({
|
return Manifest.from_json_obj({
|
||||||
"bottles": {
|
"bottles": {
|
||||||
"dev": {
|
"dev": {
|
||||||
"supervise": True,
|
"supervise": True,
|
||||||
|
|||||||
@@ -35,15 +35,15 @@ from pathlib import Path
|
|||||||
|
|
||||||
from bot_bottle.backend import BottleSpec, get_bottle_backend
|
from bot_bottle.backend import BottleSpec, get_bottle_backend
|
||||||
from bot_bottle.backend.smolmachines.smolvm import is_available as _smolvm_available
|
from bot_bottle.backend.smolmachines.smolvm import is_available as _smolvm_available
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
from tests._docker import skip_unless_docker
|
from tests._docker import skip_unless_docker
|
||||||
|
|
||||||
|
|
||||||
_AGENT_PROMPT = "You are demo. Be brief."
|
_AGENT_PROMPT = "You are demo. Be brief."
|
||||||
|
|
||||||
|
|
||||||
def _minimal_manifest() -> ManifestIndex:
|
def _minimal_manifest() -> Manifest:
|
||||||
return ManifestIndex.from_json_obj({
|
return Manifest.from_json_obj({
|
||||||
"bottles": {
|
"bottles": {
|
||||||
"dev": {
|
"dev": {
|
||||||
"egress": {
|
"egress": {
|
||||||
@@ -198,7 +198,6 @@ class TestSmolmachinesLaunch(unittest.TestCase):
|
|||||||
# connect fails, which is the property chunk 3 will
|
# connect fails, which is the property chunk 3 will
|
||||||
# preserve once egress is actually running.
|
# preserve once egress is actually running.
|
||||||
r = self.bottle.exec(
|
r = self.bottle.exec(
|
||||||
"env -u HTTPS_PROXY -u HTTP_PROXY -u https_proxy -u http_proxy "
|
|
||||||
f"curl -s --show-error --max-time 3 http://{self.plan.bundle_ip}:9099 "
|
f"curl -s --show-error --max-time 3 http://{self.plan.bundle_ip}:9099 "
|
||||||
"2>&1 || true"
|
"2>&1 || true"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ class TestAgentProviderRuntime(unittest.TestCase):
|
|||||||
instance_name="bot-bottle-test",
|
instance_name="bot-bottle-test",
|
||||||
prompt_file=prompt_file,
|
prompt_file=prompt_file,
|
||||||
label="review-api",
|
label="review-api",
|
||||||
color="cyan",
|
color="bright-cyan",
|
||||||
)
|
)
|
||||||
prompt = prompt_file.read_text()
|
prompt = prompt_file.read_text()
|
||||||
config = Path(tmp, "codex-config.toml").read_text()
|
config = Path(tmp, "codex-config.toml").read_text()
|
||||||
@@ -168,34 +168,6 @@ class TestAgentProviderRuntime(unittest.TestCase):
|
|||||||
self.assertEqual("~/.claude/statusline.sh", settings["statusLine"]["command"])
|
self.assertEqual("~/.claude/statusline.sh", settings["statusLine"]["command"])
|
||||||
self.assertEqual("custom:bot-bottle-research-ui", settings["theme"])
|
self.assertEqual("custom:bot-bottle-research-ui", settings["theme"])
|
||||||
|
|
||||||
def test_claude_plan_uses_startup_args_from_provider_settings(self):
|
|
||||||
with tempfile.TemporaryDirectory(prefix="bb-provider.") as tmp:
|
|
||||||
plan = build_agent_provision_plan(
|
|
||||||
template="claude",
|
|
||||||
dockerfile="",
|
|
||||||
state_dir=Path(tmp),
|
|
||||||
instance_name="bot-bottle-test",
|
|
||||||
prompt_file=Path(tmp) / "prompt.txt",
|
|
||||||
provider_settings={
|
|
||||||
"startup_args": ["--model", "opus"],
|
|
||||||
},
|
|
||||||
)
|
|
||||||
self.assertEqual(("--model", "opus"), plan.startup_args)
|
|
||||||
|
|
||||||
def test_codex_plan_uses_startup_args_from_provider_settings(self):
|
|
||||||
with tempfile.TemporaryDirectory(prefix="bb-provider.") as tmp:
|
|
||||||
plan = build_agent_provision_plan(
|
|
||||||
template="codex",
|
|
||||||
dockerfile="",
|
|
||||||
state_dir=Path(tmp),
|
|
||||||
instance_name="bot-bottle-test",
|
|
||||||
prompt_file=Path(tmp) / "prompt.txt",
|
|
||||||
provider_settings={
|
|
||||||
"startup_args": ["--model", "gpt-5-codex"],
|
|
||||||
},
|
|
||||||
)
|
|
||||||
self.assertEqual(("--model", "gpt-5-codex"), plan.startup_args)
|
|
||||||
|
|
||||||
def test_codex_forward_host_credentials_populates_egress_routes(self):
|
def test_codex_forward_host_credentials_populates_egress_routes(self):
|
||||||
with tempfile.TemporaryDirectory(prefix="bb-provider.") as tmp:
|
with tempfile.TemporaryDirectory(prefix="bb-provider.") as tmp:
|
||||||
home = Path(tmp) / "host-codex"
|
home = Path(tmp) / "host-codex"
|
||||||
@@ -422,24 +394,6 @@ class TestAgentProviderRuntime(unittest.TestCase):
|
|||||||
self.assertNotIn("OPENROUTER_API_KEY", plan.guest_env)
|
self.assertNotIn("OPENROUTER_API_KEY", plan.guest_env)
|
||||||
self.assertTrue(provider["compat"]["supportsReasoningEffort"])
|
self.assertTrue(provider["compat"]["supportsReasoningEffort"])
|
||||||
|
|
||||||
def test_pi_plan_appends_startup_args_from_provider_settings(self):
|
|
||||||
with tempfile.TemporaryDirectory(prefix="bb-provider.") as tmp:
|
|
||||||
plan = build_agent_provision_plan(
|
|
||||||
template="pi",
|
|
||||||
dockerfile="",
|
|
||||||
state_dir=Path(tmp),
|
|
||||||
instance_name="bot-bottle-test",
|
|
||||||
prompt_file=Path(tmp) / "prompt.txt",
|
|
||||||
provider_settings={
|
|
||||||
"models": ["qwen3:14b"],
|
|
||||||
"startup_args": ["--no-stream"],
|
|
||||||
},
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
("--models", "ollama/qwen3:14b", "--no-stream"),
|
|
||||||
plan.startup_args,
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_pi_prompt_mode_appends_system_prompt_interactively(self):
|
def test_pi_prompt_mode_appends_system_prompt_interactively(self):
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
["--append-system-prompt", "/home/node/.bot-bottle-prompt.txt"],
|
["--append-system-prompt", "/home/node/.bot-bottle-prompt.txt"],
|
||||||
|
|||||||
@@ -1,216 +0,0 @@
|
|||||||
"""Unit: Freezer class hierarchy."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import tempfile
|
|
||||||
import unittest
|
|
||||||
from pathlib import Path
|
|
||||||
from unittest.mock import patch
|
|
||||||
|
|
||||||
from bot_bottle import supervise, bottle_state
|
|
||||||
from bot_bottle.backend import ActiveAgent
|
|
||||||
from bot_bottle.backend.freeze import get_freezer
|
|
||||||
from bot_bottle.backend.docker.freezer import DockerFreezer
|
|
||||||
from bot_bottle.backend.macos_container.freezer import MacosContainerFreezer
|
|
||||||
from bot_bottle.backend.smolmachines.freezer import SmolmachinesFreezer
|
|
||||||
|
|
||||||
|
|
||||||
class _FakeHomeMixin:
|
|
||||||
def _setup_fake_home(self):
|
|
||||||
self._tmp = tempfile.TemporaryDirectory(prefix="freezer-test.")
|
|
||||||
original = supervise.bot_bottle_root
|
|
||||||
|
|
||||||
def fake_root() -> Path:
|
|
||||||
return Path(self._tmp.name) / ".bot-bottle"
|
|
||||||
|
|
||||||
supervise.bot_bottle_root = fake_root # type: ignore[assignment]
|
|
||||||
self._restore = lambda: setattr(supervise, "bot_bottle_root", original)
|
|
||||||
|
|
||||||
def _teardown_fake_home(self):
|
|
||||||
self._restore()
|
|
||||||
self._tmp.cleanup()
|
|
||||||
|
|
||||||
|
|
||||||
def _make_agent(slug: str, backend: str = "docker") -> ActiveAgent:
|
|
||||||
return ActiveAgent(
|
|
||||||
backend_name=backend,
|
|
||||||
slug=slug,
|
|
||||||
agent_name="dev",
|
|
||||||
started_at="t",
|
|
||||||
services=(),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class TestGetFreezer(unittest.TestCase):
|
|
||||||
def test_docker(self):
|
|
||||||
self.assertIsInstance(get_freezer("docker"), DockerFreezer)
|
|
||||||
|
|
||||||
def test_empty_backend_gives_docker(self):
|
|
||||||
self.assertIsInstance(get_freezer(""), DockerFreezer)
|
|
||||||
|
|
||||||
def test_macos_container(self):
|
|
||||||
self.assertIsInstance(get_freezer("macos-container"), MacosContainerFreezer)
|
|
||||||
|
|
||||||
def test_smolmachines(self):
|
|
||||||
self.assertIsInstance(get_freezer("smolmachines"), SmolmachinesFreezer)
|
|
||||||
|
|
||||||
def test_unknown_backend_dies(self):
|
|
||||||
with patch("bot_bottle.backend.freeze.die", side_effect=SystemExit("die")):
|
|
||||||
with self.assertRaises(SystemExit):
|
|
||||||
get_freezer("unknown-backend")
|
|
||||||
|
|
||||||
|
|
||||||
class TestFreezerBaseCommit(_FakeHomeMixin, unittest.TestCase):
|
|
||||||
"""The base Freezer.commit() owns the shared post-freeze steps."""
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self._setup_fake_home()
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
self._teardown_fake_home()
|
|
||||||
|
|
||||||
def test_writes_committed_image_and_marks_preserved(self):
|
|
||||||
slug = "dev-abc12"
|
|
||||||
bottle_state.write_metadata(bottle_state.BottleMetadata(
|
|
||||||
identity=slug, agent_name="dev", cwd="", copy_cwd=False,
|
|
||||||
started_at="t", backend="docker",
|
|
||||||
))
|
|
||||||
freezer = get_freezer("docker")
|
|
||||||
agent = _make_agent(slug)
|
|
||||||
|
|
||||||
with patch.object(freezer, "_freeze", return_value="bot-bottle-committed-dev-abc12:latest"), \
|
|
||||||
patch("bot_bottle.backend.freeze.info"):
|
|
||||||
freezer.commit(agent)
|
|
||||||
|
|
||||||
self.assertEqual(
|
|
||||||
"bot-bottle-committed-dev-abc12:latest",
|
|
||||||
bottle_state.read_committed_image(slug),
|
|
||||||
)
|
|
||||||
self.assertTrue(bottle_state.is_preserved(slug))
|
|
||||||
|
|
||||||
def test_commit_slug_passes_correct_slug_to_freeze(self):
|
|
||||||
slug = "dev-abc12"
|
|
||||||
bottle_state.write_metadata(bottle_state.BottleMetadata(
|
|
||||||
identity=slug, agent_name="dev", cwd="", copy_cwd=False,
|
|
||||||
started_at="t", backend="docker",
|
|
||||||
))
|
|
||||||
freezer = get_freezer("docker")
|
|
||||||
captured = {}
|
|
||||||
|
|
||||||
def capture_freeze(agent: ActiveAgent) -> str:
|
|
||||||
captured["slug"] = agent.slug
|
|
||||||
return "some-ref"
|
|
||||||
|
|
||||||
with patch.object(freezer, "_freeze", side_effect=capture_freeze), \
|
|
||||||
patch("bot_bottle.backend.freeze.info"):
|
|
||||||
freezer.commit_slug(slug)
|
|
||||||
|
|
||||||
self.assertEqual(slug, captured["slug"])
|
|
||||||
|
|
||||||
|
|
||||||
class TestDockerFreezer(_FakeHomeMixin, unittest.TestCase):
|
|
||||||
def setUp(self):
|
|
||||||
self._setup_fake_home()
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
self._teardown_fake_home()
|
|
||||||
|
|
||||||
def test_commits_container_and_records_image(self):
|
|
||||||
slug = "dev-abc12"
|
|
||||||
bottle_state.write_metadata(bottle_state.BottleMetadata(
|
|
||||||
identity=slug, agent_name="dev", cwd="", copy_cwd=False,
|
|
||||||
started_at="t", backend="docker",
|
|
||||||
))
|
|
||||||
freezer = DockerFreezer()
|
|
||||||
agent = _make_agent(slug)
|
|
||||||
|
|
||||||
with patch("bot_bottle.backend.docker.freezer.commit_container") as mock_commit, \
|
|
||||||
patch("bot_bottle.backend.freeze.info"), \
|
|
||||||
patch("bot_bottle.backend.docker.freezer.info"):
|
|
||||||
freezer.commit(agent)
|
|
||||||
|
|
||||||
mock_commit.assert_called_once_with(
|
|
||||||
f"bot-bottle-{slug}",
|
|
||||||
f"bot-bottle-committed-{slug}:latest",
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
f"bot-bottle-committed-{slug}:latest",
|
|
||||||
bottle_state.read_committed_image(slug),
|
|
||||||
)
|
|
||||||
self.assertTrue(bottle_state.is_preserved(slug))
|
|
||||||
|
|
||||||
|
|
||||||
class TestMacosContainerFreezer(_FakeHomeMixin, unittest.TestCase):
|
|
||||||
def setUp(self):
|
|
||||||
self._setup_fake_home()
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
self._teardown_fake_home()
|
|
||||||
|
|
||||||
def _write_meta(self, slug: str) -> None:
|
|
||||||
bottle_state.write_metadata(bottle_state.BottleMetadata(
|
|
||||||
identity=slug, agent_name="dev", cwd="", copy_cwd=False,
|
|
||||||
started_at="t", backend="macos-container",
|
|
||||||
))
|
|
||||||
|
|
||||||
def test_commits_running_container_without_stopping(self):
|
|
||||||
"""Commit should exec-tar the running container, not stop it."""
|
|
||||||
slug = "dev-abc12"
|
|
||||||
self._write_meta(slug)
|
|
||||||
freezer = MacosContainerFreezer()
|
|
||||||
agent = _make_agent(slug, "macos-container")
|
|
||||||
|
|
||||||
with patch("bot_bottle.backend.macos_container.freezer.commit_container") as mock_commit, \
|
|
||||||
patch("bot_bottle.backend.freeze.info"), \
|
|
||||||
patch("bot_bottle.backend.macos_container.freezer.info"):
|
|
||||||
freezer.commit(agent)
|
|
||||||
|
|
||||||
mock_commit.assert_called_once_with(
|
|
||||||
f"bot-bottle-{slug}",
|
|
||||||
f"bot-bottle-committed-{slug}:latest",
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
f"bot-bottle-committed-{slug}:latest",
|
|
||||||
bottle_state.read_committed_image(slug),
|
|
||||||
)
|
|
||||||
self.assertTrue(bottle_state.is_preserved(slug))
|
|
||||||
|
|
||||||
|
|
||||||
class TestSmolmachinesFreezer(_FakeHomeMixin, unittest.TestCase):
|
|
||||||
def setUp(self):
|
|
||||||
self._setup_fake_home()
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
self._teardown_fake_home()
|
|
||||||
|
|
||||||
def _write_meta(self, slug: str) -> None:
|
|
||||||
bottle_state.write_metadata(bottle_state.BottleMetadata(
|
|
||||||
identity=slug, agent_name="dev", cwd="", copy_cwd=False,
|
|
||||||
started_at="t", backend="smolmachines",
|
|
||||||
))
|
|
||||||
|
|
||||||
def test_snapshots_running_vm_without_stopping(self):
|
|
||||||
"""Commit should exec-tar the running VM, not stop it."""
|
|
||||||
slug = "dev-abc12"
|
|
||||||
self._write_meta(slug)
|
|
||||||
freezer = SmolmachinesFreezer()
|
|
||||||
agent = _make_agent(slug, "smolmachines")
|
|
||||||
|
|
||||||
with patch("bot_bottle.backend.smolmachines.freezer._snapshot_running_vm") as mock_snap, \
|
|
||||||
patch("bot_bottle.backend.freeze.info"), \
|
|
||||||
patch("bot_bottle.backend.smolmachines.freezer.info"):
|
|
||||||
freezer.commit(agent)
|
|
||||||
|
|
||||||
expected_binary = bottle_state.bottle_state_dir(slug) / "committed-smolmachine"
|
|
||||||
mock_snap.assert_called_once_with(
|
|
||||||
f"bot-bottle-{slug}",
|
|
||||||
f"bot-bottle-committed-{slug}:latest",
|
|
||||||
expected_binary,
|
|
||||||
)
|
|
||||||
expected_sidecar = str(expected_binary.with_suffix(".smolmachine"))
|
|
||||||
self.assertEqual(expected_sidecar, bottle_state.read_committed_image(slug))
|
|
||||||
self.assertTrue(bottle_state.is_preserved(slug))
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
unittest.main()
|
|
||||||
@@ -16,13 +16,12 @@ from bot_bottle import bottle_state
|
|||||||
from bot_bottle import supervise
|
from bot_bottle import supervise
|
||||||
from bot_bottle.backend import BottleSpec
|
from bot_bottle.backend import BottleSpec
|
||||||
from bot_bottle.backend.docker import DockerBottleBackend
|
from bot_bottle.backend.docker import DockerBottleBackend
|
||||||
from bot_bottle.backend.resolve_common import mint_slug
|
|
||||||
from bot_bottle.backend.smolmachines import SmolmachinesBottleBackend
|
from bot_bottle.backend.smolmachines import SmolmachinesBottleBackend
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
|
|
||||||
|
|
||||||
def _manifest() -> ManifestIndex:
|
def _manifest() -> Manifest:
|
||||||
return ManifestIndex.from_json_obj({
|
return Manifest.from_json_obj({
|
||||||
"bottles": {
|
"bottles": {
|
||||||
"dev": {
|
"dev": {
|
||||||
"env": {
|
"env": {
|
||||||
@@ -116,36 +115,5 @@ class TestSmolmachinesPrepare(_FakeStateMixin, unittest.TestCase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class TestMintSlug(unittest.TestCase):
|
|
||||||
def _spec(self, *, label: str = "", identity: str = "") -> BottleSpec:
|
|
||||||
manifest = _manifest()
|
|
||||||
return BottleSpec(
|
|
||||||
manifest=manifest,
|
|
||||||
agent_name="demo",
|
|
||||||
copy_cwd=False,
|
|
||||||
user_cwd="/tmp",
|
|
||||||
label=label,
|
|
||||||
identity=identity,
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_no_label_uses_agent_name_with_random_suffix(self) -> None:
|
|
||||||
slug = mint_slug(self._spec(label=""))
|
|
||||||
self.assertTrue(slug.startswith("demo-"), slug)
|
|
||||||
# random suffix present — slug is longer than just "demo"
|
|
||||||
self.assertGreater(len(slug), len("demo-"))
|
|
||||||
|
|
||||||
def test_label_becomes_exact_slug(self) -> None:
|
|
||||||
slug = mint_slug(self._spec(label="my-run"))
|
|
||||||
self.assertEqual("my-run", slug)
|
|
||||||
|
|
||||||
def test_label_with_spaces_slugified_no_suffix(self) -> None:
|
|
||||||
slug = mint_slug(self._spec(label="My Feature Run"))
|
|
||||||
self.assertEqual("my-feature-run", slug)
|
|
||||||
|
|
||||||
def test_identity_takes_precedence_over_label(self) -> None:
|
|
||||||
slug = mint_slug(self._spec(label="my-run", identity="fixed-id"))
|
|
||||||
self.assertEqual("fixed-id", slug)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
@@ -32,35 +32,8 @@ class TestGetBottleBackend(unittest.TestCase):
|
|||||||
b = get_bottle_backend()
|
b = get_bottle_backend()
|
||||||
self.assertEqual("smolmachines", b.name)
|
self.assertEqual("smolmachines", b.name)
|
||||||
|
|
||||||
def test_default_macos_container_when_available(self):
|
def test_default_smolmachines(self):
|
||||||
class _FakeBackend:
|
with patch.dict(os.environ, {}, clear=True):
|
||||||
name = "macos-container"
|
|
||||||
|
|
||||||
def is_available(self) -> bool:
|
|
||||||
return True
|
|
||||||
|
|
||||||
with patch.dict(os.environ, {}, clear=True), \
|
|
||||||
patch.object(backend_mod, "_BACKENDS", {
|
|
||||||
"macos-container": _FakeBackend(),
|
|
||||||
"smolmachines": _FakeBackend(),
|
|
||||||
}):
|
|
||||||
b = get_bottle_backend()
|
|
||||||
self.assertEqual("macos-container", b.name)
|
|
||||||
|
|
||||||
def test_default_smolmachines_when_macos_container_unavailable(self):
|
|
||||||
class _FakeBackend:
|
|
||||||
def __init__(self, name: str, available: bool) -> None:
|
|
||||||
self.name = name
|
|
||||||
self._available = available
|
|
||||||
|
|
||||||
def is_available(self) -> bool:
|
|
||||||
return self._available
|
|
||||||
|
|
||||||
with patch.dict(os.environ, {}, clear=True), \
|
|
||||||
patch.object(backend_mod, "_BACKENDS", {
|
|
||||||
"macos-container": _FakeBackend("macos-container", False),
|
|
||||||
"smolmachines": _FakeBackend("smolmachines", False),
|
|
||||||
}):
|
|
||||||
b = get_bottle_backend()
|
b = get_bottle_backend()
|
||||||
self.assertEqual("smolmachines", b.name)
|
self.assertEqual("smolmachines", b.name)
|
||||||
|
|
||||||
@@ -71,11 +44,8 @@ class TestGetBottleBackend(unittest.TestCase):
|
|||||||
|
|
||||||
|
|
||||||
class TestKnownBackendNames(unittest.TestCase):
|
class TestKnownBackendNames(unittest.TestCase):
|
||||||
def test_returns_backends_sorted(self):
|
def test_returns_both_backends_sorted(self):
|
||||||
self.assertEqual(
|
self.assertEqual(("docker", "smolmachines"), known_backend_names())
|
||||||
("docker", "macos-container", "smolmachines"),
|
|
||||||
known_backend_names(),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class TestEnumerateActiveAgents(unittest.TestCase):
|
class TestEnumerateActiveAgents(unittest.TestCase):
|
||||||
|
|||||||
@@ -11,14 +11,14 @@ class TestPalettePrintf(unittest.TestCase):
|
|||||||
def test_known_color_returns_printf(self):
|
def test_known_color_returns_printf(self):
|
||||||
cmd = palette_printf("red")
|
cmd = palette_printf("red")
|
||||||
self.assertTrue(cmd.startswith("printf '"))
|
self.assertTrue(cmd.startswith("printf '"))
|
||||||
self.assertIn("\\033]4;9;", cmd) # bright-red slot
|
self.assertIn("\\033]4;1;", cmd) # normal red
|
||||||
self.assertIn("\\033]4;1;", cmd) # normal-red slot
|
self.assertIn("\\033]4;9;", cmd) # bright red
|
||||||
self.assertIn("\\033]11;", cmd) # default background tint
|
self.assertIn("\\033]11;", cmd) # default background tint
|
||||||
|
|
||||||
def test_color_sets_both_palette_slots(self):
|
def test_bright_variant_sets_both_slots(self):
|
||||||
cmd = palette_printf("blue")
|
cmd = palette_printf("bright-blue")
|
||||||
self.assertIn("\\033]4;12;", cmd) # bright-blue slot
|
self.assertIn("\\033]4;12;", cmd) # bright-blue
|
||||||
self.assertIn("\\033]4;4;", cmd) # normal-blue slot
|
self.assertIn("\\033]4;4;", cmd) # blue
|
||||||
|
|
||||||
def test_unknown_color_returns_empty(self):
|
def test_unknown_color_returns_empty(self):
|
||||||
self.assertEqual("", palette_printf(""))
|
self.assertEqual("", palette_printf(""))
|
||||||
@@ -26,7 +26,10 @@ class TestPalettePrintf(unittest.TestCase):
|
|||||||
|
|
||||||
def test_all_named_colors_produce_output(self):
|
def test_all_named_colors_produce_output(self):
|
||||||
colors = [
|
colors = [
|
||||||
"red", "green", "yellow", "blue", "magenta",
|
"black", "red", "green", "yellow",
|
||||||
|
"blue", "magenta", "cyan", "white",
|
||||||
|
"bright-black", "bright-red", "bright-green", "bright-yellow",
|
||||||
|
"bright-blue", "bright-magenta", "bright-cyan", "bright-white",
|
||||||
]
|
]
|
||||||
for color in colors:
|
for color in colors:
|
||||||
with self.subTest(color=color):
|
with self.subTest(color=color):
|
||||||
@@ -62,7 +65,7 @@ class TestExecShellScript(unittest.TestCase):
|
|||||||
self.assertFalse(agent_part.startswith("exec "))
|
self.assertFalse(agent_part.startswith("exec "))
|
||||||
|
|
||||||
def test_title_and_color_both_appear(self):
|
def test_title_and_color_both_appear(self):
|
||||||
script = exec_shell_script(self._ARGV, terminal_title="bot", terminal_color="magenta")
|
script = exec_shell_script(self._ARGV, terminal_title="bot", terminal_color="cyan")
|
||||||
assert script is not None
|
assert script is not None
|
||||||
self.assertIn("bot", script)
|
self.assertIn("bot", script)
|
||||||
self.assertIn("\\033]4;", script)
|
self.assertIn("\\033]4;", script)
|
||||||
|
|||||||
@@ -17,11 +17,11 @@ from bot_bottle import supervise
|
|||||||
from bot_bottle.backend import Bottle, BottleSpec, ExecResult
|
from bot_bottle.backend import Bottle, BottleSpec, ExecResult
|
||||||
from bot_bottle.backend.docker import DockerBottleBackend
|
from bot_bottle.backend.docker import DockerBottleBackend
|
||||||
from bot_bottle.backend.smolmachines import SmolmachinesBottleBackend
|
from bot_bottle.backend.smolmachines import SmolmachinesBottleBackend
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
|
|
||||||
|
|
||||||
def _manifest() -> ManifestIndex:
|
def _manifest() -> Manifest:
|
||||||
return ManifestIndex.from_json_obj({
|
return Manifest.from_json_obj({
|
||||||
"bottles": {"dev": {}},
|
"bottles": {"dev": {}},
|
||||||
"agents": {
|
"agents": {
|
||||||
"demo": {
|
"demo": {
|
||||||
|
|||||||
@@ -277,56 +277,5 @@ class TestBottleMetadataBackend(_FakeHomeMixin, unittest.TestCase):
|
|||||||
self.assertEqual("", loaded.backend)
|
self.assertEqual("", loaded.backend)
|
||||||
|
|
||||||
|
|
||||||
class TestCommittedImage(_FakeHomeMixin, unittest.TestCase):
|
|
||||||
"""write_committed_image / read_committed_image round-trip."""
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self._setup_fake_home()
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
self._teardown_fake_home()
|
|
||||||
|
|
||||||
def test_returns_none_when_absent(self):
|
|
||||||
self.assertIsNone(bottle_state.read_committed_image("dev"))
|
|
||||||
|
|
||||||
def test_write_then_read_roundtrip(self):
|
|
||||||
bottle_state.write_committed_image("dev", "bot-bottle-committed-dev:latest")
|
|
||||||
self.assertEqual(
|
|
||||||
"bot-bottle-committed-dev:latest",
|
|
||||||
bottle_state.read_committed_image("dev"),
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_strips_trailing_newline_on_read(self):
|
|
||||||
path = bottle_state.committed_image_path("dev")
|
|
||||||
path.parent.mkdir(parents=True, exist_ok=True)
|
|
||||||
path.write_text("bot-bottle-committed-dev:latest\n\n")
|
|
||||||
self.assertEqual(
|
|
||||||
"bot-bottle-committed-dev:latest",
|
|
||||||
bottle_state.read_committed_image("dev"),
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_isolated_per_slug(self):
|
|
||||||
bottle_state.write_committed_image("dev", "bot-bottle-committed-dev:latest")
|
|
||||||
bottle_state.write_committed_image("api", "bot-bottle-committed-api:latest")
|
|
||||||
self.assertEqual(
|
|
||||||
"bot-bottle-committed-dev:latest",
|
|
||||||
bottle_state.read_committed_image("dev"),
|
|
||||||
)
|
|
||||||
self.assertEqual(
|
|
||||||
"bot-bottle-committed-api:latest",
|
|
||||||
bottle_state.read_committed_image("api"),
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_path_under_state_dir(self):
|
|
||||||
path = bottle_state.committed_image_path("dev")
|
|
||||||
self.assertTrue(str(path).endswith("/.bot-bottle/state/dev/committed-image"))
|
|
||||||
|
|
||||||
def test_empty_content_returns_none(self):
|
|
||||||
path = bottle_state.committed_image_path("dev")
|
|
||||||
path.parent.mkdir(parents=True, exist_ok=True)
|
|
||||||
path.write_text(" \n")
|
|
||||||
self.assertIsNone(bottle_state.read_committed_image("dev"))
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
@@ -1,143 +0,0 @@
|
|||||||
"""Unit: cli.py commit command."""
|
|
||||||
|
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
import tempfile
|
|
||||||
import unittest
|
|
||||||
from pathlib import Path
|
|
||||||
from unittest.mock import MagicMock, patch
|
|
||||||
|
|
||||||
from bot_bottle.cli.commit import cmd_commit
|
|
||||||
from bot_bottle import supervise
|
|
||||||
from bot_bottle import bottle_state
|
|
||||||
from bot_bottle.backend.freeze import CommitCancelled
|
|
||||||
|
|
||||||
|
|
||||||
class _FakeHomeMixin:
|
|
||||||
def _setup_fake_home(self):
|
|
||||||
self._tmp = tempfile.TemporaryDirectory(prefix="cli-commit-test.")
|
|
||||||
original = supervise.bot_bottle_root
|
|
||||||
|
|
||||||
def fake_root() -> Path:
|
|
||||||
return Path(self._tmp.name) / ".bot-bottle"
|
|
||||||
|
|
||||||
supervise.bot_bottle_root = fake_root # type: ignore[assignment]
|
|
||||||
self._restore = lambda: setattr(supervise, "bot_bottle_root", original)
|
|
||||||
|
|
||||||
def _teardown_fake_home(self):
|
|
||||||
self._restore()
|
|
||||||
self._tmp.cleanup()
|
|
||||||
|
|
||||||
|
|
||||||
class TestCmdCommitSlugArg(_FakeHomeMixin, unittest.TestCase):
|
|
||||||
"""cmd_commit with an explicit slug delegates to get_freezer."""
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self._setup_fake_home()
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
self._teardown_fake_home()
|
|
||||||
|
|
||||||
def _write_meta(self, slug: str, backend: str) -> None:
|
|
||||||
bottle_state.write_metadata(bottle_state.BottleMetadata(
|
|
||||||
identity=slug, agent_name="dev", cwd="", copy_cwd=False,
|
|
||||||
started_at="t", backend=backend,
|
|
||||||
))
|
|
||||||
|
|
||||||
def test_commits_docker_bottle(self):
|
|
||||||
slug = "dev-abc12"
|
|
||||||
self._write_meta(slug, "docker")
|
|
||||||
|
|
||||||
with patch("bot_bottle.cli.commit.get_freezer") as mock_gf:
|
|
||||||
mock_freezer = MagicMock()
|
|
||||||
mock_gf.return_value = mock_freezer
|
|
||||||
rc = cmd_commit([slug])
|
|
||||||
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
mock_gf.assert_called_once_with("docker")
|
|
||||||
mock_freezer.commit_slug.assert_called_once_with(slug)
|
|
||||||
|
|
||||||
def test_empty_backend_passed_to_get_freezer(self):
|
|
||||||
"""Old state dirs without a backend field pass '' to get_freezer."""
|
|
||||||
slug = "dev-abc12"
|
|
||||||
self._write_meta(slug, "")
|
|
||||||
|
|
||||||
with patch("bot_bottle.cli.commit.get_freezer") as mock_gf:
|
|
||||||
mock_freezer = MagicMock()
|
|
||||||
mock_gf.return_value = mock_freezer
|
|
||||||
rc = cmd_commit([slug])
|
|
||||||
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
mock_gf.assert_called_once_with("")
|
|
||||||
|
|
||||||
def test_commits_macos_container_bottle(self):
|
|
||||||
slug = "dev-abc12"
|
|
||||||
self._write_meta(slug, "macos-container")
|
|
||||||
|
|
||||||
with patch("bot_bottle.cli.commit.get_freezer") as mock_gf:
|
|
||||||
mock_freezer = MagicMock()
|
|
||||||
mock_gf.return_value = mock_freezer
|
|
||||||
rc = cmd_commit([slug])
|
|
||||||
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
mock_gf.assert_called_once_with("macos-container")
|
|
||||||
mock_freezer.commit_slug.assert_called_once_with(slug)
|
|
||||||
|
|
||||||
def test_commits_smolmachines_bottle(self):
|
|
||||||
slug = "dev-abc12"
|
|
||||||
self._write_meta(slug, "smolmachines")
|
|
||||||
|
|
||||||
with patch("bot_bottle.cli.commit.get_freezer") as mock_gf:
|
|
||||||
mock_freezer = MagicMock()
|
|
||||||
mock_gf.return_value = mock_freezer
|
|
||||||
rc = cmd_commit([slug])
|
|
||||||
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
mock_gf.assert_called_once_with("smolmachines")
|
|
||||||
|
|
||||||
def test_returns_zero_on_commit_cancelled(self):
|
|
||||||
slug = "dev-abc12"
|
|
||||||
self._write_meta(slug, "macos-container")
|
|
||||||
|
|
||||||
with patch("bot_bottle.cli.commit.get_freezer") as mock_gf:
|
|
||||||
mock_freezer = MagicMock()
|
|
||||||
mock_freezer.commit_slug.side_effect = CommitCancelled
|
|
||||||
mock_gf.return_value = mock_freezer
|
|
||||||
rc = cmd_commit([slug])
|
|
||||||
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
|
|
||||||
|
|
||||||
class TestCmdCommitNoActiveBottles(_FakeHomeMixin, unittest.TestCase):
|
|
||||||
def setUp(self):
|
|
||||||
self._setup_fake_home()
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
self._teardown_fake_home()
|
|
||||||
|
|
||||||
def test_dies_when_no_active_bottles_and_no_slug(self):
|
|
||||||
with patch(
|
|
||||||
"bot_bottle.cli.commit.enumerate_active_agents", return_value=[],
|
|
||||||
), patch(
|
|
||||||
"bot_bottle.cli.commit.die", side_effect=SystemExit("die"),
|
|
||||||
) as mock_die:
|
|
||||||
with self.assertRaises(SystemExit):
|
|
||||||
cmd_commit([])
|
|
||||||
|
|
||||||
mock_die.assert_called_once()
|
|
||||||
|
|
||||||
def test_returns_zero_when_picker_cancelled(self):
|
|
||||||
active = MagicMock()
|
|
||||||
active.slug = "dev-abc12"
|
|
||||||
with patch(
|
|
||||||
"bot_bottle.cli.commit.enumerate_active_agents", return_value=[active],
|
|
||||||
), patch(
|
|
||||||
"bot_bottle.cli.commit.tui.filter_select", return_value=None,
|
|
||||||
):
|
|
||||||
rc = cmd_commit([])
|
|
||||||
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
unittest.main()
|
|
||||||
@@ -14,13 +14,11 @@ from unittest.mock import MagicMock, patch
|
|||||||
|
|
||||||
import bot_bottle.cli.start as start_mod
|
import bot_bottle.cli.start as start_mod
|
||||||
import bot_bottle.cli.tui as tui_mod
|
import bot_bottle.cli.tui as tui_mod
|
||||||
from bot_bottle.backend import ActiveAgent
|
|
||||||
|
|
||||||
|
|
||||||
def _make_manifest(agent_names: list[str]):
|
def _make_manifest(agent_names: list[str]):
|
||||||
manifest = MagicMock()
|
manifest = MagicMock()
|
||||||
manifest.agents = {name: MagicMock() for name in agent_names}
|
manifest.agents = {name: MagicMock() for name in agent_names}
|
||||||
manifest.all_agent_names = sorted(agent_names)
|
|
||||||
return manifest
|
return manifest
|
||||||
|
|
||||||
|
|
||||||
@@ -31,7 +29,7 @@ class TestCmdStartSelector(unittest.TestCase):
|
|||||||
# Stub Manifest.resolve so no on-disk manifest is needed.
|
# Stub Manifest.resolve so no on-disk manifest is needed.
|
||||||
self._manifest = _make_manifest(["researcher", "implementer"])
|
self._manifest = _make_manifest(["researcher", "implementer"])
|
||||||
self._resolve_patch = patch(
|
self._resolve_patch = patch(
|
||||||
"bot_bottle.cli.start.ManifestIndex.resolve",
|
"bot_bottle.cli.start.Manifest.resolve",
|
||||||
return_value=self._manifest,
|
return_value=self._manifest,
|
||||||
)
|
)
|
||||||
self._resolve_patch.start()
|
self._resolve_patch.start()
|
||||||
@@ -135,63 +133,5 @@ class TestCmdStartSelector(unittest.TestCase):
|
|||||||
self._launch_mock.assert_not_called()
|
self._launch_mock.assert_not_called()
|
||||||
|
|
||||||
|
|
||||||
def _active_agent(slug: str) -> ActiveAgent:
|
|
||||||
return ActiveAgent(
|
|
||||||
backend_name="docker",
|
|
||||||
slug=slug,
|
|
||||||
agent_name="demo",
|
|
||||||
started_at="2026-01-01T00:00:00+00:00",
|
|
||||||
services=(),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class TestCmdStartLabelCollision(unittest.TestCase):
|
|
||||||
"""cmd_start re-prompts when the label's slug is already running."""
|
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self._manifest = _make_manifest(["researcher"])
|
|
||||||
patch("bot_bottle.cli.start.ManifestIndex.resolve", return_value=self._manifest).start()
|
|
||||||
self._launch_mock = patch(
|
|
||||||
"bot_bottle.cli.start._launch_bottle", return_value=0,
|
|
||||||
).start()
|
|
||||||
self.addCleanup(patch.stopall)
|
|
||||||
|
|
||||||
def test_no_collision_proceeds_without_reprompt(self):
|
|
||||||
with (
|
|
||||||
patch.object(tui_mod, "name_color_modal", return_value=("researcher", "")) as modal,
|
|
||||||
patch("bot_bottle.cli.start.enumerate_active_agents", return_value=[]),
|
|
||||||
):
|
|
||||||
rc = start_mod.cmd_start(["researcher"])
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
modal.assert_called_once()
|
|
||||||
self._launch_mock.assert_called_once()
|
|
||||||
|
|
||||||
def test_collision_reprompts_with_disclaimer(self):
|
|
||||||
collision_agent = _active_agent("researcher")
|
|
||||||
call_count = 0
|
|
||||||
|
|
||||||
def _modal(default_label: str, *, disclaimer: str = "", **_kw: object) -> tuple[str, str]:
|
|
||||||
nonlocal call_count
|
|
||||||
call_count += 1
|
|
||||||
if call_count == 1:
|
|
||||||
return "researcher", ""
|
|
||||||
return "researcher-2", ""
|
|
||||||
|
|
||||||
with (
|
|
||||||
patch.object(tui_mod, "name_color_modal", side_effect=_modal) as modal,
|
|
||||||
patch(
|
|
||||||
"bot_bottle.cli.start.enumerate_active_agents",
|
|
||||||
side_effect=[[collision_agent], []],
|
|
||||||
),
|
|
||||||
):
|
|
||||||
rc = start_mod.cmd_start(["researcher"])
|
|
||||||
|
|
||||||
self.assertEqual(0, rc)
|
|
||||||
self.assertEqual(2, modal.call_count)
|
|
||||||
second_call_kwargs = modal.call_args_list[1][1]
|
|
||||||
self.assertIn("researcher", second_call_kwargs.get("disclaimer", ""))
|
|
||||||
self.assertIn("already in use", second_call_kwargs.get("disclaimer", ""))
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
@@ -102,27 +102,6 @@ class TestAttachAgent(unittest.TestCase):
|
|||||||
bottle.argv,
|
bottle.argv,
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_remote_control_is_provider_startup_arg(self):
|
|
||||||
class Bottle:
|
|
||||||
argv: list[str] = []
|
|
||||||
|
|
||||||
def exec_agent(self, argv: list[str], *, tty: bool = True) -> int:
|
|
||||||
self.argv = list(argv)
|
|
||||||
return 0
|
|
||||||
|
|
||||||
bottle = Bottle()
|
|
||||||
exit_code = start_mod.attach_agent(
|
|
||||||
bottle, # type: ignore[arg-type]
|
|
||||||
agent_provider_template="codex",
|
|
||||||
startup_args=("remote-control",),
|
|
||||||
)
|
|
||||||
|
|
||||||
self.assertEqual(0, exit_code)
|
|
||||||
self.assertEqual(
|
|
||||||
["--dangerously-bypass-approvals-and-sandbox", "remote-control"],
|
|
||||||
bottle.argv,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
+18
-36
@@ -31,7 +31,7 @@ from bot_bottle.egress import (
|
|||||||
EgressRoute,
|
EgressRoute,
|
||||||
)
|
)
|
||||||
from bot_bottle.git_gate import GitGatePlan, GitGateUpstream
|
from bot_bottle.git_gate import GitGatePlan, GitGateUpstream
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
from bot_bottle.supervise import SupervisePlan
|
from bot_bottle.supervise import SupervisePlan
|
||||||
|
|
||||||
|
|
||||||
@@ -40,7 +40,7 @@ STAGE = Path("/tmp/cb-stage")
|
|||||||
STATE = Path("/tmp/cb-state")
|
STATE = Path("/tmp/cb-state")
|
||||||
|
|
||||||
|
|
||||||
def _manifest(*, supervise: bool, with_git: bool, with_egress: bool) -> ManifestIndex:
|
def _manifest(*, supervise: bool, with_git: bool, with_egress: bool) -> Manifest:
|
||||||
"""Minimal manifest with the toggles the chunk-1 matrix needs.
|
"""Minimal manifest with the toggles the chunk-1 matrix needs.
|
||||||
The renderer only reads from the plan, not the manifest, so this
|
The renderer only reads from the plan, not the manifest, so this
|
||||||
is just here to back BottleSpec."""
|
is just here to back BottleSpec."""
|
||||||
@@ -51,7 +51,7 @@ def _manifest(*, supervise: bool, with_git: bool, with_egress: bool) -> Manifest
|
|||||||
bottle["git-gate"] = {"repos": {
|
bottle["git-gate"] = {"repos": {
|
||||||
"upstream": {
|
"upstream": {
|
||||||
"url": "ssh://git@example.com:22/x/y.git",
|
"url": "ssh://git@example.com:22/x/y.git",
|
||||||
"key": {"provider": "static", "path": "/etc/hostname"},
|
"identity": "/etc/hostname", # any existing file
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
if with_egress:
|
if with_egress:
|
||||||
@@ -61,12 +61,22 @@ def _manifest(*, supervise: bool, with_git: bool, with_egress: bool) -> Manifest
|
|||||||
"auth": {"scheme": "Bearer", "token_ref": "TOK"},
|
"auth": {"scheme": "Bearer", "token_ref": "TOK"},
|
||||||
}],
|
}],
|
||||||
}
|
}
|
||||||
return ManifestIndex.from_json_obj({
|
return Manifest.from_json_obj({
|
||||||
"bottles": {"dev": bottle},
|
"bottles": {"dev": bottle},
|
||||||
"agents": {"demo": {"skills": [], "prompt": "", "bottle": "dev"}},
|
"agents": {"demo": {"skills": [], "prompt": "", "bottle": "dev"}},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
def _spec(*, supervise: bool, with_git: bool, with_egress: bool) -> BottleSpec:
|
||||||
|
return BottleSpec(
|
||||||
|
manifest=_manifest(
|
||||||
|
supervise=supervise, with_git=with_git, with_egress=with_egress,
|
||||||
|
),
|
||||||
|
agent_name="demo",
|
||||||
|
copy_cwd=False,
|
||||||
|
user_cwd="/tmp/x",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def _git_gate_plan(upstreams: tuple[GitGateUpstream, ...] = ()) -> GitGatePlan:
|
def _git_gate_plan(upstreams: tuple[GitGateUpstream, ...] = ()) -> GitGatePlan:
|
||||||
return GitGatePlan(
|
return GitGatePlan(
|
||||||
@@ -80,11 +90,7 @@ def _git_gate_plan(upstreams: tuple[GitGateUpstream, ...] = ()) -> GitGatePlan:
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _egress_plan(
|
def _egress_plan(routes: tuple[EgressRoute, ...] = ()) -> EgressPlan:
|
||||||
routes: tuple[EgressRoute, ...] = (),
|
|
||||||
*,
|
|
||||||
canary: bool = False,
|
|
||||||
) -> EgressPlan:
|
|
||||||
token_env_map = {
|
token_env_map = {
|
||||||
r.token_env: r.token_ref
|
r.token_env: r.token_ref
|
||||||
for r in routes
|
for r in routes
|
||||||
@@ -99,8 +105,6 @@ def _egress_plan(
|
|||||||
egress_network=f"bot-bottle-egress-{SLUG}",
|
egress_network=f"bot-bottle-egress-{SLUG}",
|
||||||
mitmproxy_ca_host_path=STATE / "egress-ca" / "mitmproxy-ca.pem",
|
mitmproxy_ca_host_path=STATE / "egress-ca" / "mitmproxy-ca.pem",
|
||||||
mitmproxy_ca_cert_only_host_path=STATE / "egress-ca" / "ca.pem",
|
mitmproxy_ca_cert_only_host_path=STATE / "egress-ca" / "ca.pem",
|
||||||
canary="fake-canary-value" if canary else "",
|
|
||||||
canary_env="CANON_ALPHA_SECRET" if canary else "",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -118,7 +122,6 @@ def _plan(
|
|||||||
with_git: bool = False,
|
with_git: bool = False,
|
||||||
with_egress: bool = False,
|
with_egress: bool = False,
|
||||||
supervise: bool = False,
|
supervise: bool = False,
|
||||||
canary: bool = False,
|
|
||||||
) -> DockerBottlePlan:
|
) -> DockerBottlePlan:
|
||||||
"""Build a fully-resolved DockerBottlePlan. Toggles cover the
|
"""Build a fully-resolved DockerBottlePlan. Toggles cover the
|
||||||
matrix the renderer's conditional-service logic branches on."""
|
matrix the renderer's conditional-service logic branches on."""
|
||||||
@@ -143,21 +146,14 @@ def _plan(
|
|||||||
roles=(),
|
roles=(),
|
||||||
),)
|
),)
|
||||||
|
|
||||||
index = _manifest(supervise=supervise, with_git=with_git, with_egress=with_egress)
|
spec = _spec(supervise=supervise, with_git=with_git, with_egress=with_egress)
|
||||||
spec = BottleSpec(
|
|
||||||
manifest=index,
|
|
||||||
agent_name="demo",
|
|
||||||
copy_cwd=False,
|
|
||||||
user_cwd="/tmp/x",
|
|
||||||
)
|
|
||||||
return DockerBottlePlan(
|
return DockerBottlePlan(
|
||||||
spec=spec,
|
spec=spec,
|
||||||
manifest=index.load_for_agent("demo"),
|
|
||||||
stage_dir=STAGE,
|
stage_dir=STAGE,
|
||||||
slug=SLUG,
|
slug=SLUG,
|
||||||
forwarded_env={"CLAUDE_CODE_OAUTH_TOKEN": "x"},
|
forwarded_env={"CLAUDE_CODE_OAUTH_TOKEN": "x"},
|
||||||
git_gate_plan=_git_gate_plan(upstreams),
|
git_gate_plan=_git_gate_plan(upstreams),
|
||||||
egress_plan=_egress_plan(routes, canary=canary),
|
egress_plan=_egress_plan(routes),
|
||||||
supervise_plan=_supervise_plan() if supervise else None,
|
supervise_plan=_supervise_plan() if supervise else None,
|
||||||
use_runsc=False,
|
use_runsc=False,
|
||||||
agent_provision=AgentProvisionPlan(
|
agent_provision=AgentProvisionPlan(
|
||||||
@@ -382,20 +378,6 @@ class TestSidecarBundleShape(unittest.TestCase):
|
|||||||
env_strings = sc["environment"]
|
env_strings = sc["environment"]
|
||||||
self.assertNotIn("EGRESS_TOKEN_0", env_strings)
|
self.assertNotIn("EGRESS_TOKEN_0", env_strings)
|
||||||
|
|
||||||
def test_canary_env_registered_as_sensitive_in_sidecar(self):
|
|
||||||
sc = self._render(canary=True)["services"]["sidecars"]
|
|
||||||
env_strings = sc["environment"]
|
|
||||||
self.assertIn("CANON_ALPHA_SECRET=fake-canary-value", env_strings)
|
|
||||||
self.assertIn(
|
|
||||||
"BOT_BOTTLE_SENSITIVE_PREFIXES=CANON_ALPHA_SECRET",
|
|
||||||
env_strings,
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_canary_env_visible_to_agent(self):
|
|
||||||
agent = self._render(canary=True)["services"]["agent"]
|
|
||||||
env_strings = agent["environment"]
|
|
||||||
self.assertIn("CANON_ALPHA_SECRET=fake-canary-value", env_strings)
|
|
||||||
|
|
||||||
def test_supervise_env_present_when_active(self):
|
def test_supervise_env_present_when_active(self):
|
||||||
sc = self._render(supervise=True)["services"]["sidecars"]
|
sc = self._render(supervise=True)["services"]["sidecars"]
|
||||||
env_strings = sc["environment"]
|
env_strings = sc["environment"]
|
||||||
@@ -413,7 +395,7 @@ class TestSidecarBundleShape(unittest.TestCase):
|
|||||||
"services"]["sidecars"]
|
"services"]["sidecars"]
|
||||||
targets = {v["target"] for v in sc["volumes"]}
|
targets = {v["target"] for v in sc["volumes"]}
|
||||||
self.assertIn("/home/mitmproxy/.mitmproxy/mitmproxy-ca.pem", targets)
|
self.assertIn("/home/mitmproxy/.mitmproxy/mitmproxy-ca.pem", targets)
|
||||||
self.assertIn("/etc/egress", targets)
|
self.assertIn("/etc/egress/routes.yaml", targets)
|
||||||
self.assertIn("/git-gate-entrypoint.sh", targets)
|
self.assertIn("/git-gate-entrypoint.sh", targets)
|
||||||
self.assertIn("/git-gate/creds/upstream-known_hosts", targets)
|
self.assertIn("/git-gate/creds/upstream-known_hosts", targets)
|
||||||
self.assertTrue(any("supervise/queue" in t or t.startswith("/run/supervise")
|
self.assertTrue(any("supervise/queue" in t or t.startswith("/run/supervise")
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ from bot_bottle.backend.docker.bottle_plan import DockerBottlePlan
|
|||||||
from bot_bottle.contrib.claude.agent_provider import ClaudeAgentProvider
|
from bot_bottle.contrib.claude.agent_provider import ClaudeAgentProvider
|
||||||
from bot_bottle.egress import EgressPlan
|
from bot_bottle.egress import EgressPlan
|
||||||
from bot_bottle.git_gate import GitGatePlan
|
from bot_bottle.git_gate import GitGatePlan
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
from bot_bottle.supervise import SupervisePlan
|
from bot_bottle.supervise import SupervisePlan
|
||||||
|
|
||||||
|
|
||||||
@@ -55,7 +55,7 @@ def _plan(
|
|||||||
bottle_json: dict = {"agent_provider": {"template": "claude"}} # type: ignore
|
bottle_json: dict = {"agent_provider": {"template": "claude"}} # type: ignore
|
||||||
if supervise:
|
if supervise:
|
||||||
bottle_json["supervise"] = True
|
bottle_json["supervise"] = True
|
||||||
index = ManifestIndex.from_json_obj({
|
manifest = Manifest.from_json_obj({
|
||||||
"bottles": {"dev": bottle_json},
|
"bottles": {"dev": bottle_json},
|
||||||
"agents": {
|
"agents": {
|
||||||
"demo": {
|
"demo": {
|
||||||
@@ -65,9 +65,8 @@ def _plan(
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
manifest = index.load_for_agent("demo")
|
|
||||||
spec = BottleSpec(
|
spec = BottleSpec(
|
||||||
manifest=index, agent_name="demo",
|
manifest=manifest, agent_name="demo",
|
||||||
copy_cwd=False, user_cwd="/tmp/x",
|
copy_cwd=False, user_cwd="/tmp/x",
|
||||||
)
|
)
|
||||||
supervise_plan = None
|
supervise_plan = None
|
||||||
@@ -79,7 +78,6 @@ def _plan(
|
|||||||
)
|
)
|
||||||
return DockerBottlePlan(
|
return DockerBottlePlan(
|
||||||
spec=spec,
|
spec=spec,
|
||||||
manifest=manifest,
|
|
||||||
stage_dir=Path("/tmp/stage"),
|
stage_dir=Path("/tmp/stage"),
|
||||||
slug="demo-abc12",
|
slug="demo-abc12",
|
||||||
forwarded_env={},
|
forwarded_env={},
|
||||||
@@ -278,7 +276,7 @@ class TestClaudeUiProvision(unittest.TestCase):
|
|||||||
instance_name="bot-bottle-demo-abc12",
|
instance_name="bot-bottle-demo-abc12",
|
||||||
prompt_file=prompt_file,
|
prompt_file=prompt_file,
|
||||||
label="research-ui",
|
label="research-ui",
|
||||||
color="blue",
|
color="bright-cyan",
|
||||||
)
|
)
|
||||||
settings = json.loads((state_dir / "claude-settings.json").read_text())
|
settings = json.loads((state_dir / "claude-settings.json").read_text())
|
||||||
statusline = (state_dir / "claude-statusline.sh").read_text()
|
statusline = (state_dir / "claude-statusline.sh").read_text()
|
||||||
@@ -290,9 +288,9 @@ class TestClaudeUiProvision(unittest.TestCase):
|
|||||||
self.assertEqual("~/.claude/statusline.sh", settings["statusLine"]["command"])
|
self.assertEqual("~/.claude/statusline.sh", settings["statusLine"]["command"])
|
||||||
self.assertEqual("custom:bot-bottle-research-ui", settings["theme"])
|
self.assertEqual("custom:bot-bottle-research-ui", settings["theme"])
|
||||||
self.assertIn("research-ui", statusline)
|
self.assertIn("research-ui", statusline)
|
||||||
self.assertIn("\x1b[94m", statusline)
|
self.assertIn("\x1b[96m", statusline)
|
||||||
self.assertEqual("dark", theme["base"])
|
self.assertEqual("dark", theme["base"])
|
||||||
self.assertEqual("ansi:blueBright", theme["overrides"]["claude"])
|
self.assertEqual("ansi:cyanBright", theme["overrides"]["claude"])
|
||||||
|
|
||||||
def test_runs_verify_commands(self):
|
def test_runs_verify_commands(self):
|
||||||
provision = AgentProvisionPlan(
|
provision = AgentProvisionPlan(
|
||||||
|
|||||||
@@ -24,14 +24,11 @@ from bot_bottle.backend.docker.bottle_plan import DockerBottlePlan
|
|||||||
from bot_bottle.contrib.codex.agent_provider import CodexAgentProvider
|
from bot_bottle.contrib.codex.agent_provider import CodexAgentProvider
|
||||||
from bot_bottle.egress import EgressPlan
|
from bot_bottle.egress import EgressPlan
|
||||||
from bot_bottle.git_gate import GitGatePlan
|
from bot_bottle.git_gate import GitGatePlan
|
||||||
from bot_bottle.manifest import ManifestIndex
|
from bot_bottle.manifest import Manifest
|
||||||
from bot_bottle.supervise import SupervisePlan
|
from bot_bottle.supervise import SupervisePlan
|
||||||
|
|
||||||
|
|
||||||
_URL = "http://supervise:9100/"
|
_URL = "http://supervise:9100/"
|
||||||
_CODEX_DOCKERFILE = (
|
|
||||||
Path(__file__).resolve().parents[2] / "bot_bottle/contrib/codex/Dockerfile"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def _make_bottle(exec_result: ExecResult | None = None) -> MagicMock:
|
def _make_bottle(exec_result: ExecResult | None = None) -> MagicMock:
|
||||||
@@ -58,7 +55,7 @@ def _plan(
|
|||||||
bottle_json: dict = {"agent_provider": {"template": "codex"}} # type: ignore
|
bottle_json: dict = {"agent_provider": {"template": "codex"}} # type: ignore
|
||||||
if supervise:
|
if supervise:
|
||||||
bottle_json["supervise"] = True
|
bottle_json["supervise"] = True
|
||||||
index = ManifestIndex.from_json_obj({
|
manifest = Manifest.from_json_obj({
|
||||||
"bottles": {"dev": bottle_json},
|
"bottles": {"dev": bottle_json},
|
||||||
"agents": {
|
"agents": {
|
||||||
"demo": {
|
"demo": {
|
||||||
@@ -68,9 +65,8 @@ def _plan(
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
manifest = index.load_for_agent("demo")
|
|
||||||
spec = BottleSpec(
|
spec = BottleSpec(
|
||||||
manifest=index, agent_name="demo",
|
manifest=manifest, agent_name="demo",
|
||||||
copy_cwd=False, user_cwd="/tmp/x",
|
copy_cwd=False, user_cwd="/tmp/x",
|
||||||
)
|
)
|
||||||
supervise_plan = None
|
supervise_plan = None
|
||||||
@@ -82,7 +78,6 @@ def _plan(
|
|||||||
)
|
)
|
||||||
return DockerBottlePlan(
|
return DockerBottlePlan(
|
||||||
spec=spec,
|
spec=spec,
|
||||||
manifest=manifest,
|
|
||||||
stage_dir=Path("/tmp/stage"),
|
stage_dir=Path("/tmp/stage"),
|
||||||
slug="demo-abc12",
|
slug="demo-abc12",
|
||||||
forwarded_env={},
|
forwarded_env={},
|
||||||
@@ -163,7 +158,7 @@ class TestCodexProvisionPrompt(unittest.TestCase):
|
|||||||
instance_name="bot-bottle-demo-abc12",
|
instance_name="bot-bottle-demo-abc12",
|
||||||
prompt_file=prompt_file,
|
prompt_file=prompt_file,
|
||||||
label="research-ui",
|
label="research-ui",
|
||||||
color="cyan",
|
color="bright-cyan",
|
||||||
)
|
)
|
||||||
config = (state_dir / "codex-config.toml").read_text()
|
config = (state_dir / "codex-config.toml").read_text()
|
||||||
prompt_text = prompt_file.read_text()
|
prompt_text = prompt_file.read_text()
|
||||||
@@ -279,12 +274,6 @@ class TestCodexProvision(unittest.TestCase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class TestCodexDockerfile(unittest.TestCase):
|
|
||||||
def test_installs_procps_for_remote_control_pid_management(self):
|
|
||||||
dockerfile = _CODEX_DOCKERFILE.read_text()
|
|
||||||
self.assertIn("procps", dockerfile)
|
|
||||||
|
|
||||||
|
|
||||||
class TestCodexSuperviseMcp(unittest.TestCase):
|
class TestCodexSuperviseMcp(unittest.TestCase):
|
||||||
def test_noop_when_supervise_disabled(self):
|
def test_noop_when_supervise_disabled(self):
|
||||||
bottle = _make_bottle()
|
bottle = _make_bottle()
|
||||||
@@ -301,10 +290,10 @@ class TestCodexSuperviseMcp(unittest.TestCase):
|
|||||||
bottle.exec.assert_called_once()
|
bottle.exec.assert_called_once()
|
||||||
script = bottle.exec.call_args.args[0]
|
script = bottle.exec.call_args.args[0]
|
||||||
self.assertEqual("node", bottle.exec.call_args.kwargs.get("user"))
|
self.assertEqual("node", bottle.exec.call_args.kwargs.get("user"))
|
||||||
self.assertEqual(
|
self.assertIn("codex mcp add", script)
|
||||||
f"codex mcp add supervise --url {_URL}",
|
self.assertIn("--transport http", script)
|
||||||
script,
|
self.assertIn("supervise", script)
|
||||||
)
|
self.assertIn(_URL, script)
|
||||||
|
|
||||||
def test_logs_warning_on_failure_but_does_not_raise(self):
|
def test_logs_warning_on_failure_but_does_not_raise(self):
|
||||||
bottle = _make_bottle(
|
bottle = _make_bottle(
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ from bot_bottle.contrib.gitea.deploy_key_provisioner import (
|
|||||||
GiteaDeployKeyProvisioner,
|
GiteaDeployKeyProvisioner,
|
||||||
_split_owner_repo,
|
_split_owner_repo,
|
||||||
)
|
)
|
||||||
from bot_bottle.deploy_key_provisioner import DeployKeyCollisionError
|
|
||||||
|
|
||||||
|
|
||||||
def _provisioner() -> GiteaDeployKeyProvisioner:
|
def _provisioner() -> GiteaDeployKeyProvisioner:
|
||||||
@@ -101,30 +100,6 @@ class TestCreate(unittest.TestCase):
|
|||||||
provisioner.create("owner/repo", "title")
|
provisioner.create("owner/repo", "title")
|
||||||
self.assertIn("403", str(ctx.exception))
|
self.assertIn("403", str(ctx.exception))
|
||||||
|
|
||||||
def test_create_raises_collision_error_on_422(self):
|
|
||||||
provisioner = _provisioner()
|
|
||||||
collision_body = json.dumps({
|
|
||||||
"errors": ["Key content already exists on this repository"],
|
|
||||||
"message": "422 Unprocessable Entity",
|
|
||||||
})
|
|
||||||
with patch(
|
|
||||||
"bot_bottle.contrib.gitea.deploy_key_provisioner.subprocess.run"
|
|
||||||
), patch(
|
|
||||||
"bot_bottle.contrib.gitea.deploy_key_provisioner.urllib.request.urlopen",
|
|
||||||
side_effect=_http_error(422, collision_body),
|
|
||||||
), patch(
|
|
||||||
"bot_bottle.contrib.gitea.deploy_key_provisioner.Path.read_bytes",
|
|
||||||
return_value=b"pk",
|
|
||||||
), patch(
|
|
||||||
"bot_bottle.contrib.gitea.deploy_key_provisioner.Path.read_text",
|
|
||||||
return_value="ssh-ed25519 AAAA\n",
|
|
||||||
):
|
|
||||||
with self.assertRaises(DeployKeyCollisionError) as ctx:
|
|
||||||
provisioner.create("owner/repo", "my-title")
|
|
||||||
msg = str(ctx.exception)
|
|
||||||
self.assertIn("owner/repo", msg)
|
|
||||||
self.assertIn("my-title", msg)
|
|
||||||
|
|
||||||
|
|
||||||
class TestDelete(unittest.TestCase):
|
class TestDelete(unittest.TestCase):
|
||||||
def test_delete_calls_correct_endpoint(self):
|
def test_delete_calls_correct_endpoint(self):
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user