Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions python/antigravity/harness_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,30 @@ class HarnessConfigError(ValueError):
"""Raised when request harness_config is not a valid overlay."""


class ConversationIdError(ValueError):
"""Raised when a request's conversation_id is unusable as a save_dir name."""


def _validate_conversation_id(conversation_id: str) -> None:
"""Guards conversation_id for safe use as a save_dir path component.

Rejects empty ids and path separators / "." / ".." so a request cannot
escape state_dir. The id-format contract (length, charset) is left to the
Antigravity harness (forwarded cascade_id) to avoid the layers drifting.
"""
if not conversation_id:
raise ConversationIdError("conversation_id must be set")
if "/" in conversation_id or "\\" in conversation_id:
raise ConversationIdError(
"conversation_id must not contain a path separator, got "
f"{conversation_id!r}"
)
if conversation_id in (".", ".."):
raise ConversationIdError(
f"conversation_id must not be a path component, got {conversation_id!r}"
)


class VertexKwargs(TypedDict, total=False):
"""Typed subset of LocalAgentConfig kwargs needed to enable Vertex AI.

Expand Down Expand Up @@ -236,6 +260,24 @@ async def Connect(self, request_iterator, context):
async def _run_turn(self, request):
print(f"[gRPC] Connect turn requested. conv_id={request.conversation_id}")

# Guard conversation_id for safe use as a save_dir path component
# below. The id-format contract (length, charset) is owned by the
# Antigravity harness via the forwarded cascade_id.
try:
_validate_conversation_id(request.conversation_id)
except ConversationIdError as exc:
yield ax_pb2.HarnessResponse(
conversation_id=request.conversation_id,
end=ax_pb2.HarnessEnd(
state=ax_pb2.STATE_FAILED,
error=ax_pb2.Error(
code=3, # INVALID_ARGUMENT
description=f"Invalid conversation_id: {exc}",
),
),
)
return

# 1. Retrieve and check messages
ax_messages = request.start.messages
if not ax_messages:
Expand Down
75 changes: 75 additions & 0 deletions python/antigravity/harness_server_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
import grpc
from python.proto import ax_pb2, ax_pb2_grpc, content_pb2
from python.antigravity.harness_server import AntigravityHarnessServiceServicer
from python.antigravity.harness_server import ConversationIdError
from python.antigravity.harness_server import HarnessConfigError
from python.antigravity.harness_server import _validate_conversation_id
from google.antigravity import LocalAgentConfig

@pytest.fixture
Expand Down Expand Up @@ -618,3 +620,76 @@ def test_harness_config_unknown_field_names_are_reported(mock_config, tmp_path):
assert "unknown config field(s): aaa_bad, zzz_bad" in msg
assert "system_instructions" not in msg



@pytest.mark.parametrize("conv_id", [
"conv-1", # short ids are fine here; the harness owns the format contract
"conv-test",
"11111111-2222-3333-4444-555555555555",
"a", # single char, still a safe dir name
])
def test_validate_conversation_id_accepts_path_safe(conv_id):
# Should not raise: these are all usable as a save_dir path component.
_validate_conversation_id(conv_id)


@pytest.mark.parametrize(("conv_id", "error"), [
("", "must be set"),
("..", "path component"),
(".", "path component"),
("../escape", "path separator"),
("a/b", "path separator"),
("nested/../conv", "path separator"),
("back\\slash", "path separator"),
])
def test_validate_conversation_id_rejects_unsafe(conv_id, error):
with pytest.raises(ConversationIdError, match=error):
_validate_conversation_id(conv_id)


def test_run_turn_unsafe_conversation_id_maps_to_invalid_argument(mock_config, tmp_path):
# An unsafe conversation_id is rejected at the boundary: the turn yields a
# single STATE_FAILED end frame with INVALID_ARGUMENT, before any agent runs.
async def _run():
servicer = AntigravityHarnessServiceServicer(mock_config, tmp_path)
req = ax_pb2.HarnessRequest(
conversation_id="../escape",
harness_id="antigravity",
start=ax_pb2.HarnessStart(
messages=[ax_pb2.Message(
role="user",
content=content_pb2.Content(text=content_pb2.TextContent(text="hi")),
)],
),
)
responses = [r async for r in servicer._run_turn(req)]
assert len(responses) == 1
assert responses[0].end.state == ax_pb2.STATE_FAILED
assert responses[0].end.error.code == 3
assert "Invalid conversation_id" in responses[0].end.error.description

asyncio.run(_run())


def test_run_turn_rejects_conversation_id_before_creating_save_dir(mock_config, tmp_path):
# Validation must happen before conversation_id is used as a storage
# directory name, so a rejected id leaves no directory behind under (or
# outside) state_dir.
async def _run():
servicer = AntigravityHarnessServiceServicer(mock_config, tmp_path)
req = ax_pb2.HarnessRequest(
conversation_id="../escape",
harness_id="antigravity",
start=ax_pb2.HarnessStart(
messages=[ax_pb2.Message(
role="user",
content=content_pb2.Content(text=content_pb2.TextContent(text="hi")),
)],
),
)
responses = [r async for r in servicer._run_turn(req)]
assert len(responses) == 1
assert responses[0].end.state == ax_pb2.STATE_FAILED
assert list(tmp_path.iterdir()) == []

asyncio.run(_run())
Loading