feat(smolmachines): resolve manifest env through resolve_env() (PRD 0038)
Before this change smolmachines prepare.py spliced bottle.env directly
into guest_env, so ?prompt and ${HOST_VAR} entries reached the VM as
raw sentinels rather than being prompted or interpolated.
After this change prepare.py calls resolve_env(), matching the Docker
backend's contract. Forwarded (secret/interpolated) values still flow
through smolvm -e K=V argv — the known exposure gap documented in PRD
0038's open question.
Closes #135
This commit is contained in:
@@ -28,6 +28,7 @@ from ...backend.docker.bottle_state import (
|
|||||||
write_metadata,
|
write_metadata,
|
||||||
)
|
)
|
||||||
from ...egress import Egress
|
from ...egress import Egress
|
||||||
|
from ...env import resolve_env
|
||||||
from ...git_gate import GitGate
|
from ...git_gate import GitGate
|
||||||
from ...pipelock import PipelockProxy
|
from ...pipelock import PipelockProxy
|
||||||
from ...supervise import Supervise
|
from ...supervise import Supervise
|
||||||
@@ -77,18 +78,18 @@ def resolve_plan(
|
|||||||
|
|
||||||
subnet, gateway, bundle_ip = smolmachines_bundle_subnet(slug)
|
subnet, gateway, bundle_ip = smolmachines_bundle_subnet(slug)
|
||||||
|
|
||||||
# Agent's env: the prepare-time view doesn't yet know the
|
# Agent's env: resolve through resolve_env() so ?prompt entries
|
||||||
# host loopback ports the bundle's daemons get published on
|
# are prompted and ${HOST_VAR} entries are interpolated — matching
|
||||||
# (those come from docker AFTER `docker run` returns), so
|
# the Docker backend's contract. Forwarded (secret/interpolated)
|
||||||
# HTTPS_PROXY / GIT_GATE_URL / MCP_SUPERVISE_URL are
|
# values still reach the guest as -e K=V smolvm flags because
|
||||||
# populated in launch.py and stamped onto guest_env there.
|
# smolvm 0.8.0 has no env-file or stdin injection path; this is
|
||||||
# What we set here is the part that doesn't depend on
|
# the known argv-exposure gap documented in PRD 0038.
|
||||||
# bundle bringup — bottle.env literals, the empty-NO_PROXY
|
# HTTPS_PROXY / GIT_GATE_URL / MCP_SUPERVISE_URL are populated
|
||||||
# safe default, and the TLS trust env trio
|
# in launch.py after bundle bringup.
|
||||||
# (NODE_EXTRA_CA_CERTS / SSL_CERT_FILE / REQUESTS_CA_BUNDLE)
|
resolved = resolve_env(manifest, spec.agent_name)
|
||||||
# pointing at Debian's update-ca-certificates output bundle.
|
|
||||||
guest_env: dict[str, str] = {
|
guest_env: dict[str, str] = {
|
||||||
**bottle.env,
|
**resolved.literals,
|
||||||
|
**resolved.forwarded,
|
||||||
"NO_PROXY": "localhost,127.0.0.1",
|
"NO_PROXY": "localhost,127.0.0.1",
|
||||||
"NODE_EXTRA_CA_CERTS": "/etc/ssl/certs/ca-certificates.crt",
|
"NODE_EXTRA_CA_CERTS": "/etc/ssl/certs/ca-certificates.crt",
|
||||||
"SSL_CERT_FILE": "/etc/ssl/certs/ca-certificates.crt",
|
"SSL_CERT_FILE": "/etc/ssl/certs/ca-certificates.crt",
|
||||||
|
|||||||
@@ -0,0 +1,133 @@
|
|||||||
|
"""Unit: smolmachines prepare.py env resolution (PRD 0038)."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import os
|
||||||
|
import tempfile
|
||||||
|
import unittest
|
||||||
|
from pathlib import Path
|
||||||
|
from unittest.mock import MagicMock, patch
|
||||||
|
|
||||||
|
from bot_bottle.agent_provider import AgentProvisionPlan
|
||||||
|
from bot_bottle.env import ResolvedEnv
|
||||||
|
|
||||||
|
|
||||||
|
class TestSmolmachinesResolveEnv(unittest.TestCase):
|
||||||
|
"""resolve_plan() must call resolve_env() and build guest_env
|
||||||
|
from the resolved values rather than from raw bottle.env."""
|
||||||
|
|
||||||
|
def _run_resolve_plan(
|
||||||
|
self,
|
||||||
|
resolved: ResolvedEnv,
|
||||||
|
*,
|
||||||
|
extra_host_env: dict[str, str] | None = None,
|
||||||
|
) -> dict[str, str]:
|
||||||
|
from bot_bottle.backend import BottleSpec
|
||||||
|
from bot_bottle.manifest import Manifest
|
||||||
|
|
||||||
|
with tempfile.TemporaryDirectory() as tmp:
|
||||||
|
stage = Path(tmp) / "stage"
|
||||||
|
stage.mkdir()
|
||||||
|
|
||||||
|
# Minimal manifest with one env literal so the spec is valid.
|
||||||
|
manifest = Manifest.from_json_obj({
|
||||||
|
"agents": {"myagent": {"bottle": "mybottle"}},
|
||||||
|
"bottles": {"mybottle": {"env": {"PLAIN": "literal-value"}}},
|
||||||
|
})
|
||||||
|
spec = BottleSpec(
|
||||||
|
manifest=manifest,
|
||||||
|
agent_name="myagent",
|
||||||
|
copy_cwd=False,
|
||||||
|
user_cwd=tmp,
|
||||||
|
identity="test-slug-00001",
|
||||||
|
)
|
||||||
|
|
||||||
|
from bot_bottle import supervise as _sup
|
||||||
|
orig_root = _sup.bot_bottle_root
|
||||||
|
_sup.bot_bottle_root = lambda: Path(tmp) / ".bot-bottle" # type: ignore[assignment]
|
||||||
|
|
||||||
|
host_env = {**os.environ, **(extra_host_env or {})}
|
||||||
|
|
||||||
|
try:
|
||||||
|
with (
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.resolve_env",
|
||||||
|
return_value=resolved) as mock_resolve,
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.smolmachines_preflight"),
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.smolmachines_bundle_subnet",
|
||||||
|
return_value=("10.99.0.0/24", "10.99.0.1", "10.99.0.2")),
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.GitGate") as mock_gg,
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.PipelockProxy") as mock_pl,
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.Egress") as mock_eg,
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.Supervise"),
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.agent_provision_plan") as mock_app,
|
||||||
|
patch("bot_bottle.backend.smolmachines.prepare.runtime_for"),
|
||||||
|
):
|
||||||
|
mock_gg.return_value.prepare.return_value = MagicMock()
|
||||||
|
mock_pl.return_value.prepare.return_value = MagicMock()
|
||||||
|
mock_eg.return_value.prepare.return_value = MagicMock()
|
||||||
|
def _make_provision(**kwargs):
|
||||||
|
return AgentProvisionPlan(
|
||||||
|
template="claude",
|
||||||
|
command="claude",
|
||||||
|
prompt_mode="append_file",
|
||||||
|
dockerfile="",
|
||||||
|
image="bot-bottle-claude:latest",
|
||||||
|
guest_env=dict(kwargs.get("guest_env") or {}),
|
||||||
|
)
|
||||||
|
mock_app.side_effect = lambda **kw: _make_provision(**kw)
|
||||||
|
|
||||||
|
from bot_bottle.backend.smolmachines.prepare import resolve_plan
|
||||||
|
plan = resolve_plan(spec, stage_dir=stage)
|
||||||
|
|
||||||
|
mock_resolve.assert_called_once_with(manifest, "myagent")
|
||||||
|
return dict(plan.guest_env)
|
||||||
|
finally:
|
||||||
|
_sup.bot_bottle_root = orig_root # type: ignore[assignment]
|
||||||
|
|
||||||
|
def test_literal_env_reaches_guest_env(self):
|
||||||
|
resolved = ResolvedEnv(
|
||||||
|
literals={"PLAIN": "hello"},
|
||||||
|
forwarded={},
|
||||||
|
)
|
||||||
|
guest_env = self._run_resolve_plan(resolved)
|
||||||
|
self.assertEqual("hello", guest_env["PLAIN"])
|
||||||
|
|
||||||
|
def test_forwarded_env_reaches_guest_env(self):
|
||||||
|
# Secrets / interpolated values land in forwarded; they must
|
||||||
|
# still reach the guest (argv exposure is the known gap).
|
||||||
|
resolved = ResolvedEnv(
|
||||||
|
literals={},
|
||||||
|
forwarded={"SECRET": "s3cr3t", "INTERP": "resolved-val"},
|
||||||
|
)
|
||||||
|
guest_env = self._run_resolve_plan(resolved)
|
||||||
|
self.assertEqual("s3cr3t", guest_env["SECRET"])
|
||||||
|
self.assertEqual("resolved-val", guest_env["INTERP"])
|
||||||
|
|
||||||
|
def test_raw_manifest_sentinel_not_in_guest_env(self):
|
||||||
|
# Before the fix, ?prompt and ${HOST} would appear verbatim.
|
||||||
|
# After the fix, resolve_env() is called so the caller sees
|
||||||
|
# the mocked resolved values (no raw sentinel survives).
|
||||||
|
resolved = ResolvedEnv(
|
||||||
|
literals={},
|
||||||
|
forwarded={"MY_SECRET": "actual-value"},
|
||||||
|
)
|
||||||
|
guest_env = self._run_resolve_plan(resolved)
|
||||||
|
for v in guest_env.values():
|
||||||
|
self.assertFalse(
|
||||||
|
v.startswith("?"),
|
||||||
|
f"raw secret sentinel survived in guest_env: {v!r}",
|
||||||
|
)
|
||||||
|
self.assertFalse(
|
||||||
|
v.startswith("${"),
|
||||||
|
f"raw interpolation sentinel survived in guest_env: {v!r}",
|
||||||
|
)
|
||||||
|
|
||||||
|
def test_tls_trust_env_always_present(self):
|
||||||
|
resolved = ResolvedEnv(literals={}, forwarded={})
|
||||||
|
guest_env = self._run_resolve_plan(resolved)
|
||||||
|
for key in ("NODE_EXTRA_CA_CERTS", "SSL_CERT_FILE", "REQUESTS_CA_BUNDLE"):
|
||||||
|
self.assertIn(key, guest_env, f"{key} missing from guest_env")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
||||||
Reference in New Issue
Block a user