cellos-host-cellos 0.5.1

Recursive CellOS-in-CellOS backend — runs CellOS cells as nested supervisors. Used for federated and self-hosting topologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
//! Proprietary **CellOS** host backend (L2).
//!
//! Today this is a **simulated** runtime: in-memory cell records that **must** be removed on
//! `destroy` so tests can falsify residue. When the real kernel/userspace ABI exists, replace the
//! inner implementation with FFI/IPC while keeping the same [`CellBackend`] contract.
//!
//! # Subprocess spawn (E1-04)
//!
//! [`spawn_isolated_workload`] is the **only** sanctioned way for this backend to materialise a
//! child process. It enforces three FD-hygiene invariants on Unix:
//!
//! 1. **No ambient env.** The child gets `env_clear()` plus *exactly* the declared injection set —
//!    nothing inherited from the supervisor.
//! 2. **Stdio replaced with pipes.** stdin / stdout / stderr are wired to fresh pipes whose
//!    *parent* ends drop before the caller can write or read, so a child cannot reach back into
//!    the supervisor's terminal or log streams.
//! 3. **All FDs > 2 closed on exec.** A `pre_exec` closure walks `/proc/self/fd` and sets
//!    `FD_CLOEXEC` on every fd > 2. The kernel atomically closes those at `execve(2)` so a
//!    workload never inherits NATS sockets, broker handles, or audit-log writers.
//!
//! These guarantees are exercised by `tests/fd_isolation.rs`, which reads
//! `/proc/<child>/environ` of a real child and asserts byte-for-byte equality with the declared
//! injection set.

pub mod memory_broker;

pub use memory_broker::MemorySecretBroker;

use std::collections::HashMap;
#[cfg(target_os = "linux")]
use std::path::PathBuf;
use std::sync::Arc;

use async_trait::async_trait;
use tokio::sync::Mutex;
use tracing::instrument;
use uuid::Uuid;

use cellos_core::ports::{CellBackend, CellHandle, TeardownReport};
#[cfg(target_os = "linux")]
use cellos_core::sanitize_cgroup_leaf_segment;
use cellos_core::{CellosError, ExecutionCellDocument};

/// Declared environment injection set for [`spawn_isolated_workload`].
///
/// Order is preserved. Empty values are valid. Keys must not contain `=` or NUL.
#[derive(Debug, Clone, Default)]
pub struct WorkloadEnv {
    pairs: Vec<(String, String)>,
}

impl WorkloadEnv {
    pub fn new() -> Self {
        Self { pairs: Vec::new() }
    }

    /// Append a single `KEY=VALUE` pair. Returns an error if `key` is invalid.
    pub fn push(
        &mut self,
        key: impl Into<String>,
        value: impl Into<String>,
    ) -> Result<(), CellosError> {
        let k = key.into();
        let v = value.into();
        if k.is_empty() {
            return Err(CellosError::InvalidSpec("env key must be non-empty".into()));
        }
        if k.contains('=') || k.as_bytes().contains(&0u8) {
            return Err(CellosError::InvalidSpec(format!(
                "env key {k:?} contains '=' or NUL — refused"
            )));
        }
        if v.as_bytes().contains(&0u8) {
            return Err(CellosError::InvalidSpec(format!(
                "env value for {k:?} contains NUL — refused"
            )));
        }
        self.pairs.push((k, v));
        Ok(())
    }

    pub fn iter(&self) -> impl Iterator<Item = (&str, &str)> {
        self.pairs.iter().map(|(k, v)| (k.as_str(), v.as_str()))
    }

    pub fn len(&self) -> usize {
        self.pairs.len()
    }

    pub fn is_empty(&self) -> bool {
        self.pairs.is_empty()
    }
}

/// Handle to a spawned workload child. Drops do not kill — caller `wait()`s.
#[cfg(unix)]
pub struct SpawnedWorkload {
    child: std::process::Child,
}

#[cfg(unix)]
impl SpawnedWorkload {
    /// PID of the child process (still valid until [`SpawnedWorkload::wait`]).
    pub fn pid(&self) -> u32 {
        self.child.id()
    }

    /// Wait for the child to exit and return its exit status.
    pub fn wait(&mut self) -> std::io::Result<std::process::ExitStatus> {
        self.child.wait()
    }

    /// Send SIGKILL to the child (best-effort; ignores ESRCH).
    pub fn kill(&mut self) -> std::io::Result<()> {
        self.child.kill()
    }
}

/// Spawn a workload subprocess with closed FD inheritance and a declared env injection set.
///
/// Contract (Unix):
/// - Child env is *exactly* `env` (no inheritance).
/// - stdin/stdout/stderr are connected to fresh pipes; the parent ends drop before this function
///   returns, so the child sees stdin EOF on its first read and any stdout/stderr writes go to
///   pipe ends with no parent reader (the kernel buffers up to one pipe-page, then SIGPIPE on
///   overflow — workloads that need stdio capture should use an explicit channel).
/// - All open file descriptors with `fd > 2` in the parent get `FD_CLOEXEC` set in the forked
///   child via `pre_exec`, so `execve(2)` atomically closes them. We deliberately set CLOEXEC
///   rather than calling `close(fd)` directly: another thread may have just opened a new FD with
///   the same number, and CLOEXEC is race-free against fork.
///
/// The argv must be non-empty. `argv[0]` is the program path.
#[cfg(unix)]
pub fn spawn_isolated_workload(
    argv: &[String],
    env: &WorkloadEnv,
) -> Result<SpawnedWorkload, CellosError> {
    use std::os::unix::process::CommandExt;
    use std::process::{Command, Stdio};

    if argv.is_empty() {
        return Err(CellosError::InvalidSpec(
            "spawn_isolated_workload: argv must be non-empty".into(),
        ));
    }

    let mut cmd = Command::new(&argv[0]);
    if argv.len() > 1 {
        cmd.args(&argv[1..]);
    }

    // Invariant 1: env_clear + only declared keys. No PATH, no LANG, nothing ambient.
    cmd.env_clear();
    for (k, v) in env.iter() {
        cmd.env(k, v);
    }

    // Invariant 2: stdio = pipes. The parent ends are owned by `Command` until spawn(); after
    // spawn() returns, we drop them immediately (we don't take stdin/stdout/stderr off `child`),
    // so the child sees EOF on stdin and orphaned write-ends on stdout/stderr.
    cmd.stdin(Stdio::piped());
    cmd.stdout(Stdio::piped());
    cmd.stderr(Stdio::piped());

    // Invariant 3: close all inherited FDs > 2 on exec. We CLOEXEC rather than close() to avoid
    // a race with concurrent threads opening new FDs at the same numeric slot.
    // SAFETY: pre_exec runs in the forked child only, before execve. Only async-signal-safe
    // operations are used (open/readdir/fcntl on /proc/self/fd, all syscalls).
    unsafe {
        cmd.pre_exec(|| {
            // /proc/self/fd is the canonical Linux/Unix-ish way to enumerate open FDs from
            // inside the process; on non-Linux Unix this may be missing — fall back to the
            // RLIMIT_NOFILE-bounded loop below.
            let mut walked = false;
            if let Ok(dir) = std::fs::read_dir("/proc/self/fd") {
                walked = true;
                for entry in dir.flatten() {
                    if let Ok(name) = entry.file_name().into_string() {
                        if let Ok(fd) = name.parse::<libc::c_int>() {
                            if fd > 2 {
                                // FD_CLOEXEC: closed atomically by the kernel on execve.
                                libc::fcntl(fd, libc::F_SETFD, libc::FD_CLOEXEC);
                            }
                        }
                    }
                }
            }
            if !walked {
                // Fallback for kernels without /proc: bound by RLIMIT_NOFILE, capped to a sane
                // ceiling so an `RLIM_INFINITY` limit doesn't make us walk billions of FDs.
                const FD_WALK_CEILING: libc::c_int = 65_536;
                let mut rl: libc::rlimit = libc::rlimit {
                    rlim_cur: 0,
                    rlim_max: 0,
                };
                let max: libc::c_int = if libc::getrlimit(libc::RLIMIT_NOFILE, &mut rl) == 0 {
                    if rl.rlim_cur > FD_WALK_CEILING as libc::rlim_t {
                        FD_WALK_CEILING
                    } else {
                        rl.rlim_cur as libc::c_int
                    }
                } else {
                    1024
                };
                let mut fd: libc::c_int = 3;
                while fd < max {
                    libc::fcntl(fd, libc::F_SETFD, libc::FD_CLOEXEC);
                    fd += 1;
                }
            }
            Ok(())
        });
    }

    let mut child = cmd.spawn().map_err(|e| {
        CellosError::Host(format!(
            "spawn_isolated_workload: spawn {:?} failed: {e}",
            argv[0]
        ))
    })?;

    // Drop the **parent** ends of the pipes immediately so the child sees stdin EOF and any
    // stdout/stderr writes go to a pipe with no parent reader. We do *not* expose
    // stdin/stdout/stderr through `SpawnedWorkload` — capture is an explicit, separate concern.
    drop(child.stdin.take());
    drop(child.stdout.take());
    drop(child.stderr.take());

    Ok(SpawnedWorkload { child })
}

/// Non-Unix stub: this backend does not spawn host subprocesses on non-Unix platforms.
#[cfg(not(unix))]
pub fn spawn_isolated_workload(_argv: &[String], _env: &WorkloadEnv) -> Result<(), CellosError> {
    Err(CellosError::Host(
        "spawn_isolated_workload: host subprocess spawn is Unix-only".into(),
    ))
}

#[derive(Debug, Clone)]
struct CellRecord {
    #[allow(dead_code)]
    run_token: Uuid,
    /// cgroup v2 leaf created at `create` (Linux + `CELLOS_CGROUP_PARENT`); removed in `destroy`.
    #[cfg(target_os = "linux")]
    cgroup_path: Option<PathBuf>,
}

/// Simulated proprietary host: tracks active cells; **destroy** removes all host-side state for that id.
#[derive(Clone)]
pub struct ProprietaryCellBackend {
    cells: Arc<Mutex<HashMap<String, CellRecord>>>,
}

impl Default for ProprietaryCellBackend {
    fn default() -> Self {
        Self::new()
    }
}

impl ProprietaryCellBackend {
    pub fn new() -> Self {
        Self {
            cells: Arc::new(Mutex::new(HashMap::new())),
        }
    }

    /// How many cells the host still considers **live** (tests + operators; not an auth decision).
    pub async fn tracked_cell_count(&self) -> usize {
        self.cells.lock().await.len()
    }

    /// True if any host-tracked state remains for this `cell_id`.
    pub async fn has_tracked_state(&self, cell_id: &str) -> bool {
        self.cells.lock().await.contains_key(cell_id)
    }
}

/// cgroup v2 leaf under `CELLOS_CGROUP_PARENT` (unified hierarchy; parent must exist and be writable).
#[cfg(target_os = "linux")]
fn linux_cgroup_leaf_for_cell(cell_id: &str) -> Result<Option<PathBuf>, CellosError> {
    let Ok(raw) = std::env::var("CELLOS_CGROUP_PARENT") else {
        return Ok(None);
    };
    let parent = raw.trim();
    if parent.is_empty() {
        return Ok(None);
    }
    let leaf = PathBuf::from(parent).join(format!(
        "cellos_{}_{}",
        sanitize_cgroup_leaf_segment(cell_id),
        Uuid::new_v4()
    ));
    std::fs::create_dir(&leaf).map_err(|e| {
        CellosError::Host(format!(
            "CELLOS_CGROUP_PARENT: create cgroup leaf {}: {e}",
            leaf.display()
        ))
    })?;
    Ok(Some(leaf))
}

#[async_trait]
impl CellBackend for ProprietaryCellBackend {
    #[instrument(skip(self, spec))]
    async fn create(&self, spec: &ExecutionCellDocument) -> Result<CellHandle, CellosError> {
        if spec.spec.id.is_empty() {
            return Err(CellosError::InvalidSpec("spec.id must be non-empty".into()));
        }
        let id = spec.spec.id.clone();
        let mut map = self.cells.lock().await;
        if map.contains_key(&id) {
            return Err(CellosError::Host(format!(
                "cell id {id:?} already active on host (no duplicate live cells)"
            )));
        }
        #[cfg(target_os = "linux")]
        let cgroup_path = linux_cgroup_leaf_for_cell(&id)?;
        #[cfg(not(target_os = "linux"))]
        let cgroup_path = None;

        map.insert(
            id.clone(),
            CellRecord {
                run_token: Uuid::new_v4(),
                #[cfg(target_os = "linux")]
                cgroup_path: cgroup_path.clone(),
            },
        );
        Ok(CellHandle {
            cell_id: id,
            cgroup_path,
            // This backend does not own nftables enforcement; the supervisor's
            // host-subprocess path surfaces the signal via `run_cell_command`.
            nft_rules_applied: None,
            // FC-08: host-subprocess backend has no boot artifact manifest.
            kernel_digest_sha256: None,
            rootfs_digest_sha256: None,
            firecracker_digest_sha256: None,
        })
    }

    #[instrument(skip(self, handle))]
    async fn destroy(&self, handle: &CellHandle) -> Result<TeardownReport, CellosError> {
        let mut map = self.cells.lock().await;
        let removed = map.remove(&handle.cell_id);
        if removed.is_none() {
            return Err(CellosError::Host(format!(
                "cell {:?} unknown or already destroyed (no double-teardown)",
                handle.cell_id
            )));
        }
        #[cfg(target_os = "linux")]
        if let Some(rec) = &removed {
            if let Some(ref p) = rec.cgroup_path {
                if let Err(e) = std::fs::remove_dir(p) {
                    tracing::warn!(
                        target: "cellos.host.proprietary",
                        path = %p.display(),
                        error = %e,
                        "cgroup leaf cleanup failed (non-fatal)"
                    );
                }
            }
        }
        let peers_tracked_after = map.len();
        Ok(TeardownReport {
            cell_id: handle.cell_id.clone(),
            destroyed: true,
            peers_tracked_after,
        })
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn destroy_removes_tracked_state_same_id_can_run_again() {
        let host = ProprietaryCellBackend::new();
        let doc = sample_doc("cell-a");

        let h1 = host.create(&doc).await.unwrap();
        assert_eq!(host.tracked_cell_count().await, 1);
        host.destroy(&h1).await.unwrap();
        assert_eq!(host.tracked_cell_count().await, 0);
        assert!(!host.has_tracked_state("cell-a").await);

        let h2 = host.create(&doc).await.unwrap();
        assert_eq!(h2.cell_id, "cell-a");
        host.destroy(&h2).await.unwrap();
        assert_eq!(host.tracked_cell_count().await, 0);
    }

    #[tokio::test]
    async fn double_destroy_errors() {
        let host = ProprietaryCellBackend::new();
        let doc = sample_doc("x");
        let h = host.create(&doc).await.unwrap();
        host.destroy(&h).await.unwrap();
        let err = host.destroy(&h).await.unwrap_err();
        match err {
            CellosError::Host(_) => {}
            e => panic!("expected Host error, got {e:?}"),
        }
    }

    #[tokio::test]
    async fn teardown_report_peers_tracked_after_counts_remaining_cells() {
        let host = ProprietaryCellBackend::new();
        let a = host.create(&sample_doc("a")).await.unwrap();
        let b = host.create(&sample_doc("b")).await.unwrap();
        let r = host.destroy(&a).await.unwrap();
        assert!(r.destroyed);
        assert_eq!(r.peers_tracked_after, 1);
        assert!(host.has_tracked_state("b").await);
        let r2 = host.destroy(&b).await.unwrap();
        assert_eq!(r2.peers_tracked_after, 0);
    }

    fn sample_doc(id: &str) -> ExecutionCellDocument {
        serde_json::from_value(serde_json::json!({
            "apiVersion": "cellos.io/v1",
            "kind": "ExecutionCell",
            "spec": {
                "id": id,
                "authority": { "secretRefs": [] },
                "lifetime": { "ttlSeconds": 60 }
            }
        }))
        .unwrap()
    }
}