vmm: one-shot mode allocates CIDs outside the IdPool and is invisible to the VMM
Nessuno ha ancora preso questa issue.
Valutazione
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Idoneità per principianti
- 45/100
- Tipo di issue
- Bug
- Chiarezza
- Abbastanza chiara
- Stato di attività
- Tranquilla
- Stack tecnologico
- rust
- Ambito
- infrastructure
Direzione di ricerca
Inizia da vmm/src/one_shot.rs, in particolare da run_one_shot e dalla scansione dei CID, quindi segui app.rs reload_vms/reload_vms_sync e crates/dstackup/src/cid.rs. Confronta gli approcci di coordinamento proposti e determina come rappresentare i CID one-shot nel meccanismo di allocazione esistente. Il lavoro è completato quando le allocazioni simultanee one-shot e del servizio principale non possono selezionare lo stesso CID.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Descrizione
Summary
One-shot mode (vmm/src/one_shot.rs) and the main VMM service allocate vsock CIDs from the same configured range through two mechanisms that do not know about each other. Nothing prevents them from picking the same CID.
The two allocators
Main service — IdPool over [cid_start, cid_start + cid_pool_size), rebuilt on reload from the supervisor's process list (app.rs, reload_vms / reload_vms_sync).
One-shot — one_shot.rs:24-56:
// scan `ps aux` for qemu-system-x86_64 ... guest-cid=<n>
let mut one_shot_cid = config.cvm.cid_start;
while existing_cids.contains(&one_shot_cid) {
one_shot_cid += 1;
...
}
It starts at cid_start, avoids collisions by scraping ps aux, and never touches the pool.
Why they can collide
One-shot launches QEMU directly (cmd.status() at the end of run_one_shot) rather than registering the process with the supervisor. occupied_cids in both reload paths is built from supervisor.list(), so a one-shot VM's CID is invisible to the main service and never gets occupied in the pool.
The blindness is one-directional:
| sees the other's CIDs? | via | |
|---|---|---|
| one-shot → main service | yes | ps aux finds the qemu processes |
| main service → one-shot | no | one-shot never reaches the supervisor |
So the main service can allocate a CID that a running one-shot VM already holds.
Two secondary issues in the same code path:
- TOCTOU — the
ps auxscan and the QEMU launch are not atomic; a concurrent allocation in the window collides regardless. - Parsing — CIDs are recovered by string-splitting
ps auxoutput onguest-cid=, which is sensitive to how QEMU arguments are formatted.
Note on #907
Before #907, IdPool::allocate() had an off-by-one that made it skip cid_start entirely, while one-shot starts at cid_start. That incidentally kept the two apart. #907 fixed the off-by-one (correctly — one_shot.rs:48 and crates/dstackup/src/cid.rs both already treat the window as [start, start+size)), which removes the accidental separation.
This is not a regression introduced by #907. The protection only ever held for exactly one one-shot VM: a second one takes cid_start + 1, which was already inside the main pool's allocation range. The underlying problem is that the two allocators were never coordinated.
Possible directions
- Register one-shot processes with the supervisor so the existing pool machinery covers them.
- Reserve a dedicated range for one-shot outside
[cid_start, cid_start + cid_pool_size). - Have one-shot allocate through
IdPoolrather thanps aux.
(1) seems most consistent with how the rest of the system tracks VMs, but one-shot is deliberately a lighter path, so (2) may be the cheaper fix.
Confidence
The code paths are confirmed by reading: one-shot starts at cid_start, does not register with the supervisor, and both reload paths source occupied_cids from supervisor.list() only. Not verified on hardware — I have not observed an actual vsock CID collision, and I do not know how much one-shot mode is used in practice, which bounds how much this matters.
Found while reviewing #907.
- Lingua principale
- Rust
- Stelle
- 551
- Fork
- 97
- Merge medio
- 19h 22m
- PR unite (30g)
- 109
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 Dstack-TEE/dstack
-
Difficoltà 5/5 Più di una settimana Idoneità per principianti 30/100
Dstack-TEE/dstack#1301 ·
-
Difficoltà 3/5 1-2 giorni Idoneità per principianti 55/100
Dstack-TEE/dstack#1300 ·
-
Difficoltà 4/5 3-5 giorni Idoneità per principianti 48/100
Dstack-TEE/dstack#1299 ·
-
Difficoltà 4/5 3-5 giorni Idoneità per principianti 48/100
Dstack-TEE/dstack#1298 ·
-
P0
Difficoltà 5/5 Più di una settimana Idoneità per principianti 25/100
Dstack-TEE/dstack#1297 ·
Tutte le issue di Dstack-TEE/dstack
Issue simili
-
Replayed reasoning items send "content": null, which the Responses API schema does not permit Apertabug CLI custom-model
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
rust-bitcoin/rust-bitcoin#6930 · 1 commento ·
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
-
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100
fulcrumgenomics/ferro-hgvs#2251 ·
-
A-allocators A-docs C-enhancement T-libs
Difficoltà 2/5 1-3 ore Idoneità per principianti 75/100