bug(driver-mxc): StopSandbox discards sandbox_id and can stop a same-named sandbox in another workspace
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 3/5
- Tempo stimato
- 1-2 giorni
- Idoneità per principianti
- 76/100
Direzione di ricerca
Inizia da crates/openshell-driver-mxc/src/grpc.rs, in StopSandbox e GetSandbox, quindi segui backend stop_sandbox in crates/openshell-driver-mxc/src/driver.rs. Usa come contesto il test di denominazione con ambito workspace in crates/openshell-server/src/persistence/tests.rs ed esegui i test Rust pertinenti. Il lavoro è completato quando gli stop con ambito sull'ID non possono indirizzare un'altra sandbox con lo stesso nome, gli stop ambigui basati solo sul nome falliscono in modo deterministico e DeleteSandbox è stato sottoposto ad audit.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
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
- Lingua principale
- Rust
- Stelle
- 8.7k
- Fork
- 1.3k
- Merge medio
- 2g 6h
- PR unite (30g)
- 297
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Altre issue di NVIDIA/OpenShell
-
area:docs
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 88/100
-
state:triage-needed
Difficoltà 2/5 1-3 ore Idoneità per principianti 82/100
-
area:cli state:validated
Difficoltà 2/5 1-3 ore Idoneità per principianti 72/100
-
state:triage-needed
Difficoltà 1/5 Meno di un'ora Idoneità per principianti 90/100
-
area:build spike state:review-ready state:stale
Difficoltà 2/5 Mezza giornata Idoneità per principianti 68/100
Tutte le issue di NVIDIA/OpenShell
Issue simili
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
-
state:needs triage
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
zed-industries/zed#64680 · 2 commenti ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 70/100
RustPython/RustPython#8802 ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
TheLarkInn/aipm#2390 ·