bug(driver-mxc): StopSandbox discards sandbox_id and can stop a same-named sandbox in another workspace
Nadie ha tomado este issue todavía.
Evaluación
- Dificultad
- 3/5
- Tiempo estimado
- 1-2 días
- Aptitud para principiantes
- 76/100
Línea de trabajo
Comienza en crates/openshell-driver-mxc/src/grpc.rs, en StopSandbox y GetSandbox, y luego sigue backend stop_sandbox en crates/openshell-driver-mxc/src/driver.rs. Usa como contexto la prueba de nomenclatura con ámbito de workspace en crates/openshell-server/src/persistence/tests.rs y ejecuta las pruebas relevantes de Rust. Se considera terminado cuando las detenciones con ámbito de ID no pueden dirigirse a otra sandbox con el mismo nombre, las detenciones ambiguas basadas únicamente en el nombre fallan de forma determinista y DeleteSandbox ha sido auditado.
Escrito por el modelo de indexación a partir del texto del issue.
Descripción
User Story
As an operator running sandboxes across multiple workspaces on the MXC driver, I want a stop request to act on exactly the sandbox the gateway identified, so that stopping a sandbox in one workspace never interrupts an unrelated sandbox that happens to share its name.
Problem Statement
StopSandbox on the MXC driver discards the sandbox_id it receives and resolves the target by name alone.
crates/openshell-driver-mxc/src/grpc.rs:124-128:
if req.sandbox_name.is_empty() {
return Err(Status::invalid_argument("sandbox_name is required"));
}
self.backend.stop_sandbox(&req.sandbox_name).await?;
req.sandbox_id is never read. The backend then resolves by name (crates/openshell-driver-mxc/src/driver.rs:441):
let entry = registry
.values()
.find(|entry| entry.sandbox.name == sandbox_name)
.ok_or_else(|| tonic::Status::not_found(format!("sandbox {sandbox_name} not found")))?;
Nothing verifies afterward that the resolved entry is the one the request named.
Sandbox names are unique per workspace, not globally (crates/openshell-server/src/persistence/tests.rs:684, sqlite_name_unique_scoped_by_workspace), so two sandboxes in different workspaces can legitimately share a name. The MXC registry permits this: create_sandbox rejects duplicates by id only (driver.rs:389), never by name. With two same-named entries present, HashMap::values().find(...) picks one by iteration order.
The driver already carries the information needed to disambiguate — SandboxEntry.sandbox.workspace is populated (driver.rs:877) — and the same file already demonstrates the missing guard. GetSandbox performs a post-resolution id check (grpc.rs:90):
if !req.sandbox_id.is_empty() && req.sandbox_id != sandbox.id {
return Err(Status::failed_precondition("sandbox_id did not match the fetched sandbox"));
}
StopSandbox has no equivalent.
Impact / Why This Matters
The gateway always sends a valid sandbox_id on StopSandbox, so this misfires on ordinary traffic — no restart, retry, or unusual state is required. An operator stopping demo in one workspace can silently stop demo in another, terminating a live workload with no error surfaced to either caller. Which sandbox is hit depends on hash iteration order, so the failure is not reproducible run to run.
There is no workaround available to the caller: the request already carries the correct id and the driver ignores it. Avoiding the bug requires never reusing a sandbox name across workspaces on an MXC gateway, which contradicts the workspace-scoped naming the rest of the product guarantees.
Related: #3234 and #3240 address the same class of defect in the Docker driver.
Acceptance Criteria
-
StopSandboxresolves the target usingsandbox_idwhen the request supplies one, and does not fall back to the name in that case. - A stop request carrying a valid
sandbox_idnever acts on a different sandbox that shares thesandbox_name. - A name-only stop request that matches more than one sandbox fails with a deterministic error instead of selecting one by iteration order.
- Regression tests cover: id-scoped stop with two same-named sandboxes in different workspaces stops only the requested one; ambiguous name-only stop is rejected.
-
DeleteSandboxon the same driver is audited for the same weakness (grpc.rs:145-155forwards both fields; its backend path was not traced during this investigation).
Reproduction Steps
Code inspection; not reproduced against a running MXC gateway (Windows-only driver).
- Create workspaces
alphaandbetaon a gateway using the MXC compute driver. - Create a sandbox named
demoinalpha, and another nameddemoinbeta. Both are accepted — names are unique per workspace, and the MXC registry rejects duplicates by id only. - Issue
StopSandboxfor thedemoinbeta. The gateway sends both that sandbox's id and the namedemo. - Observe that the driver ignores the id and resolves
demoby name, so the sandbox stopped may be the one inalpha.
Environment
- OpenShell:
mainata0814443 - OS: Windows (MXC driver is Windows-only)
- Runtime, deployment, or integration: MXC compute driver, gateway with more than one workspace
- Lenguaje dominante
- Rust
- Estrellas
- 8.7k
- Forks
- 1.3k
- Merge medio
- 2 d 6 h
- PR fusionados (30 d)
- 297
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Más de NVIDIA/OpenShell
-
area:docs
Dificultad 1/5 Menos de una hora Aptitud para principiantes 88/100
-
state:triage-needed
Dificultad 2/5 1-3 horas Aptitud para principiantes 82/100
-
area:cli state:validated
Dificultad 2/5 1-3 horas Aptitud para principiantes 72/100
-
state:triage-needed
Dificultad 1/5 Menos de una hora Aptitud para principiantes 90/100
-
area:build spike state:review-ready state:stale
Dificultad 2/5 Medio día Aptitud para principiantes 68/100
Todos los issues de NVIDIA/OpenShell
Issues similares
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 75/100
-
state:needs triage
Dificultad 2/5 1-3 horas Aptitud para principiantes 70/100
zed-industries/zed#64680 · 2 comentarios ·
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 70/100
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 70/100
RustPython/RustPython#8802 ·
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 75/100
TheLarkInn/aipm#2390 ·