all-smi 0.26.2

Command-line utility for monitoring GPU hardware. It provides a real-time view of GPU utilization, memory usage, temperature, power consumption, and other metrics.
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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
// Copyright 2025 Lablup Inc. and Jeongkyu Shin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! One-shot snapshot of hardware state.
//!
//! Backs the `all-smi snapshot` subcommand and the library-visible
//! [`run`] entry point. Reuses the existing Prometheus exporters from
//! [`crate::api::metrics`] rather than re-implementing them, so the
//! `snapshot --format prometheus` output stays byte-identical to a single
//! `/metrics` scrape of `all-smi api`.
//!
//! Submodule layout:
//!
//! * [`options`] — pure-data config (`SnapshotOptions`, `Snapshot`,
//!   `SnapshotError`, `SnapshotHardFailure`).
//! * [`collector`] — `SnapshotCollector` trait + default wrapper,
//!   `spawn_blocking` + `timeout` orchestration.
//! * [`query`] — dot-path evaluator used by the CSV serializer.
//! * [`serializers`] — format-specific writers (json, csv, prometheus).

use std::collections::HashSet;
use std::fs::{self, OpenOptions};
use std::io::{self, IsTerminal, Write};
use std::path::{Path, PathBuf};
use std::sync::Arc;

use anyhow::{Context, Result};
use serde_json::{Map, Value};

use crate::cli::{SnapshotFormat, SnapshotIncludes};

pub mod collector;
pub mod options;
pub mod query;
pub mod serializers;

pub use collector::{DefaultSnapshotCollector, SnapshotCollector, collect_once};
// Re-exports that form the public library surface. `#[allow(unused_imports)]`
// suppresses the "binary doesn't call them directly" warning — they're here
// for library consumers and integration tests.
#[allow(unused_imports)]
pub use options::{
    SNAPSHOT_SCHEMA_VERSION, Snapshot, SnapshotError, SnapshotHardFailure, SnapshotOptions,
};

/// Run the snapshot subcommand end-to-end: collect N samples, serialize
/// them per `opts.format`, and write to `opts.output` (or stdout).
///
/// # Exit-code convention
///
/// This function returns `anyhow::Result<()>`. The caller in `main.rs`
/// should distinguish three outcomes:
///
/// * `Ok(())` → exit `0`. The output was written; it may include partial
///   errors in the `errors` array.
/// * `Err` with a [`SnapshotHardFailure`] attached → exit `1` ("hard
///   failure": no devices collected at all across every sample).
/// * Any other `Err` → exit `1` with the error message on stderr.
///
/// # Blocking-pool considerations
///
/// Each reader runs inside `tokio::task::spawn_blocking` guarded by a
/// `tokio::time::timeout`. When a reader exceeds its budget the outer
/// future's `Elapsed` branch fires and the `JoinHandle` is dropped — but
/// `spawn_blocking` does **not** cancel the underlying OS thread. The
/// thread continues running until the wrapped syscall returns, occupying
/// one worker from Tokio's blocking pool (default cap 512). A misbehaving
/// NVML/TPU call can therefore leak a worker for the entire process
/// lifetime.
///
/// Callers embedding this function in a long-running service should
/// provision the Tokio runtime with a conservative
/// [`tokio::runtime::Builder::max_blocking_threads`] so a burst of
/// pathological readers cannot exhaust the pool. The CLI dispatch in
/// `main.rs` builds a short-lived runtime with
/// `max_blocking_threads(32)` per snapshot invocation for exactly this
/// reason.
pub async fn run(opts: SnapshotOptions) -> Result<()> {
    let collector = Arc::new(DefaultSnapshotCollector::new());
    run_with_collector(opts, collector).await
}

/// Generic entry point parameterised on a collector for testability.
pub async fn run_with_collector<C: SnapshotCollector + 'static>(
    opts: SnapshotOptions,
    collector: Arc<C>,
) -> Result<()> {
    let writer_is_stdout = opts.output.as_deref().is_none_or(|p| p == "-");
    let stdout_is_tty = io::stdout().is_terminal();

    // Collect all samples first so a file writer receives a single atomic
    // write instead of N interleaved ones. The Prometheus format only runs
    // a single sample (multi-sample Prometheus has no canonical shape), so
    // we cap the sample count there to 1 and log a warning.
    let sample_count = match opts.format {
        SnapshotFormat::Prometheus => {
            if opts.samples > 1 {
                eprintln!(
                    "warning: --samples > 1 is ignored for --format prometheus (single scrape)"
                );
            }
            1
        }
        _ => opts.samples.max(1),
    };

    let mut snapshots: Vec<Snapshot> = Vec::with_capacity(sample_count as usize);
    for i in 0..sample_count {
        if i > 0 && !opts.interval.is_zero() {
            tokio::time::sleep(opts.interval).await;
        }
        let snap = collect_once(collector.clone(), &opts.includes, opts.timeout_per_reader).await;
        snapshots.push(snap);
    }

    // Hard failure = every sample returned zero devices. Soft failure (at
    // least one device collected) still yields exit 0 with errors surfaced
    // inline.
    let hard_failure = snapshots.iter().all(|s| s.device_count() == 0);
    if hard_failure {
        return Err(anyhow::Error::new(SnapshotHardFailure));
    }

    // Materialise the output before opening the writer so a serialization
    // failure does not leave a half-written file on disk.
    let rendered = render(&opts, &snapshots, stdout_is_tty)?;

    if writer_is_stdout {
        let stdout = io::stdout();
        let mut handle = stdout.lock();
        handle
            .write_all(rendered.as_bytes())
            .context("failed to write snapshot to stdout")?;
        handle.flush().ok();
    } else {
        let path = opts.output.as_deref().unwrap();
        write_output_atomic(Path::new(path), &rendered)?;
    }

    Ok(())
}

/// Write `contents` to `final_path` atomically and with restrictive
/// permissions.
///
/// On Unix the temporary file is opened with `O_NOFOLLOW` and mode `0o600`
/// so an attacker cannot redirect the write via a pre-existing symlink and
/// the result is only readable by its owner. On Windows the file is opened
/// with `share_mode(0)` (exclusive access) — symlink TOCTOU on Windows is
/// handled with different mitigations which are out of scope for this
/// function.
///
/// The output is first written to a sibling file `<final_path>.tmp` (with
/// up to 64 collision retries), `sync_all`-ed, then renamed onto the final
/// path. Callers should assume the final file exists only if the function
/// returned `Ok(())`.
fn write_output_atomic(final_path: &Path, contents: &str) -> Result<()> {
    let tmp_path = pick_tmp_path(final_path);

    let file_result = {
        #[cfg(unix)]
        {
            use std::os::unix::fs::OpenOptionsExt;
            OpenOptions::new()
                .write(true)
                .create(true)
                .truncate(true)
                .custom_flags(libc::O_NOFOLLOW)
                .mode(0o600)
                .open(&tmp_path)
        }
        #[cfg(windows)]
        {
            use std::os::windows::fs::OpenOptionsExt;
            OpenOptions::new()
                .write(true)
                .create(true)
                .truncate(true)
                .share_mode(0)
                .open(&tmp_path)
        }
        #[cfg(not(any(unix, windows)))]
        {
            OpenOptions::new()
                .write(true)
                .create(true)
                .truncate(true)
                .open(&tmp_path)
        }
    };

    let mut file = file_result
        .with_context(|| format!("failed to create snapshot temp file {}", tmp_path.display()))?;

    if let Err(e) = file.write_all(contents.as_bytes()) {
        let _ = fs::remove_file(&tmp_path);
        return Err(e)
            .with_context(|| format!("failed to write snapshot data to {}", tmp_path.display()));
    }
    if let Err(e) = file.sync_all() {
        let _ = fs::remove_file(&tmp_path);
        return Err(e)
            .with_context(|| format!("failed to fsync snapshot temp file {}", tmp_path.display()));
    }
    drop(file);

    if let Err(e) = fs::rename(&tmp_path, final_path) {
        let _ = fs::remove_file(&tmp_path);
        return Err(e).with_context(|| {
            format!(
                "failed to rename snapshot temp file {} -> {}",
                tmp_path.display(),
                final_path.display()
            )
        });
    }

    Ok(())
}

/// Pick a temp-file path next to `final_path`. Starts with `<path>.tmp` and
/// appends a numeric suffix when that name is already taken to reduce
/// collision risk when multiple snapshot invocations target the same
/// directory concurrently.
fn pick_tmp_path(final_path: &Path) -> PathBuf {
    let base = {
        let mut p = final_path.as_os_str().to_os_string();
        p.push(".tmp");
        PathBuf::from(p)
    };
    if !base.exists() {
        return base;
    }
    for i in 1..=64 {
        let mut p = final_path.as_os_str().to_os_string();
        p.push(format!(".tmp.{i}"));
        let candidate = PathBuf::from(p);
        if !candidate.exists() {
            return candidate;
        }
    }
    // Fall back to the original base name: the open call will fail if the
    // conflicting file still exists, surfacing the error to the caller
    // rather than guessing forever.
    base
}

fn render(opts: &SnapshotOptions, snapshots: &[Snapshot], stdout_is_tty: bool) -> Result<String> {
    match opts.format {
        SnapshotFormat::Json => {
            let pretty = opts.effective_pretty(stdout_is_tty);
            serializers::json::render(snapshots, pretty)
        }
        SnapshotFormat::Csv => serializers::csv::render(opts, snapshots),
        SnapshotFormat::Prometheus => serializers::prometheus::render(snapshots),
    }
}

/// Recursively replace non-finite `f64` numbers (`NaN`, `+Inf`, `-Inf`)
/// inside a [`serde_json::Value`] with `Value::Null`. Called before any
/// serialization path so that neither the JSON nor CSV writers can abort
/// on a single misbehaving device field.
///
/// Rationale: `serde_json::Number::from_f64` refuses non-finite values,
/// which causes `to_string(snapshot)` to fail for the WHOLE snapshot when
/// any device carries a `NaN` (common on NVML drivers when a fan RPM is
/// unavailable, for example) or `Infinity` (some vendors emit `+Inf` for
/// "unknown"). Downgrading to `null` keeps the rest of the snapshot
/// intact — consumers that need a numeric default can substitute it
/// themselves.
pub fn sanitize_json_floats(v: &mut Value) {
    match v {
        Value::Number(n) => {
            if let Some(f) = n.as_f64()
                && !f.is_finite()
            {
                *v = Value::Null;
            }
        }
        Value::Array(arr) => {
            for item in arr.iter_mut() {
                sanitize_json_floats(item);
            }
        }
        Value::Object(obj) => {
            for item in obj.values_mut() {
                sanitize_json_floats(item);
            }
        }
        _ => {}
    }
}

/// Augment a serialized device JSON with synthetic fields so
/// `--query index,section,...` works against uniform paths across every
/// section. Public for tests.
pub fn augment_device_json(section: &str, index: usize, mut value: Value) -> Value {
    if let Value::Object(ref mut map) = value {
        map.entry("index")
            .or_insert(Value::Number(serde_json::Number::from(index)));
        map.entry("section")
            .or_insert(Value::String(section.to_string()));
    } else {
        // Wrap primitives so the query layer still sees an object.
        let mut obj = Map::new();
        obj.insert("index".to_string(), Value::Number(index.into()));
        obj.insert("section".to_string(), Value::String(section.to_string()));
        obj.insert("value".to_string(), value);
        return Value::Object(obj);
    }
    value
}

/// Convert an iterable of typed devices into the sanitized `Vec<Value>`
/// shape the CSV serializer consumes. A single device that fails to
/// serialize (extremely rare — would require a custom `Serialize` impl to
/// return an error) is logged to stderr and skipped rather than silently
/// elided as `Value::Null` like the old `unwrap_or(Value::Null)` pattern.
///
/// Each resulting `Value` also has its non-finite `f64` numbers replaced
/// with `Value::Null` via [`sanitize_json_floats`], so the CSV writer
/// cannot fail on `NaN`/`Inf` emitted by flaky drivers.
fn bucket<T: serde::Serialize>(section: &'static str, items: &[T]) -> Vec<Value> {
    let mut out = Vec::with_capacity(items.len());
    for (i, item) in items.iter().enumerate() {
        match serde_json::to_value(item) {
            Ok(mut v) => {
                sanitize_json_floats(&mut v);
                out.push(augment_device_json(section, i, v));
            }
            Err(e) => {
                eprintln!(
                    "snapshot: skipping {section} device index {i}: serialization failed: {e}"
                );
            }
        }
    }
    out
}

/// Expand a typed snapshot into `(section, Vec<Value>)` buckets for the
/// CSV writer. Each bucket is ordered as requested by the user via the
/// `--include` flag so CSV output is deterministic.
///
/// The returned vector preserves the iteration order of the standard
/// section list (gpu, cpu, memory, chassis, process, storage) but only
/// includes sections that were requested *and* have at least one device
/// collected, matching the "absent key" rule for JSON.
pub fn buckets_for_csv(
    snap: &Snapshot,
    includes: &SnapshotIncludes,
) -> Vec<(&'static str, Vec<Value>)> {
    let mut buckets: Vec<(&'static str, Vec<Value>)> = Vec::new();
    if includes.gpu
        && let Some(gpus) = snap.gpus.as_ref()
    {
        buckets.push(("gpu", bucket("gpu", gpus)));
    }
    if includes.cpu
        && let Some(cpus) = snap.cpus.as_ref()
    {
        buckets.push(("cpu", bucket("cpu", cpus)));
    }
    if includes.memory
        && let Some(mems) = snap.memory.as_ref()
    {
        buckets.push(("memory", bucket("memory", mems)));
    }
    if includes.chassis
        && let Some(ch) = snap.chassis.as_ref()
    {
        buckets.push(("chassis", bucket("chassis", ch)));
    }
    if includes.process
        && let Some(procs) = snap.processes.as_ref()
    {
        buckets.push(("process", bucket("process", procs)));
    }
    if includes.storage
        && let Some(sto) = snap.storage.as_ref()
    {
        buckets.push(("storage", bucket("storage", sto)));
    }
    buckets
}

/// Set of all default CSV column names used when `--query` is not provided.
/// Kept here so tests and serializers agree on the canonical default layout.
pub fn default_csv_columns() -> Vec<&'static str> {
    // Ordered to mirror `nvidia-smi --query-gpu=...` defaults where possible.
    // Columns not present in a given section resolve to empty strings.
    vec![
        "section",
        "index",
        "hostname",
        "name",
        "uuid",
        "utilization",
        "used_memory",
        "total_memory",
        "temperature",
        "power_consumption",
    ]
}

/// Compute the list of unique column names to emit for CSV, based on either
/// the user's `--query` or the default set.
pub fn effective_csv_columns(opts: &SnapshotOptions) -> Vec<String> {
    if opts.query.is_empty() {
        default_csv_columns()
            .into_iter()
            .map(String::from)
            .collect()
    } else {
        // Preserve order, but drop duplicates so `--query foo,foo` does not
        // emit two identical columns.
        let mut seen: HashSet<String> = HashSet::new();
        let mut out = Vec::with_capacity(opts.query.len());
        for c in &opts.query {
            let trimmed = c.trim();
            if trimmed.is_empty() {
                continue;
            }
            if seen.insert(trimmed.to_string()) {
                out.push(trimmed.to_string());
            }
        }
        out
    }
}

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

    #[test]
    fn augment_injects_index_and_section() {
        let raw = serde_json::json!({ "name": "gpu0" });
        let out = augment_device_json("gpu", 3, raw);
        assert_eq!(out["index"], serde_json::json!(3));
        assert_eq!(out["section"], serde_json::json!("gpu"));
        assert_eq!(out["name"], serde_json::json!("gpu0"));
    }

    #[test]
    fn augment_preserves_existing_index() {
        // If the device already carries an `index` field (some readers do),
        // don't clobber it.
        let raw = serde_json::json!({ "name": "gpu0", "index": 99 });
        let out = augment_device_json("gpu", 0, raw);
        assert_eq!(out["index"], serde_json::json!(99));
    }

    #[test]
    fn augment_wraps_primitive_in_object() {
        // When the serialized device is a primitive (should not happen with
        // real readers, but the function must not panic), it wraps the value
        // in an object under the "value" key and injects index/section.
        let raw = serde_json::json!(42);
        let out = augment_device_json("cpu", 1, raw);
        assert!(out.is_object());
        assert_eq!(out["index"], serde_json::json!(1));
        assert_eq!(out["section"], serde_json::json!("cpu"));
        assert_eq!(out["value"], serde_json::json!(42));
    }

    #[test]
    fn default_csv_columns_is_non_empty_and_unique() {
        let cols = default_csv_columns();
        assert!(!cols.is_empty());
        let as_set: HashSet<&&'static str> = cols.iter().collect();
        assert_eq!(as_set.len(), cols.len(), "columns must be unique");
    }

    #[test]
    fn effective_csv_columns_dedups_user_query() {
        let opts = SnapshotOptions {
            query: vec![
                "name".to_string(),
                "utilization".to_string(),
                "name".to_string(),
                " ".to_string(),
            ],
            ..Default::default()
        };
        let cols = effective_csv_columns(&opts);
        assert_eq!(cols, vec!["name".to_string(), "utilization".to_string()]);
    }

    #[test]
    fn sanitize_json_floats_replaces_nan_and_infinities() {
        let mut v = serde_json::json!({
            "a": 1.0,
            "b": serde_json::Value::Null,
            "nested": {
                "arr": [1.0, 2.0]
            }
        });
        // Inject a non-finite number by building it from a raw f64 via the
        // Number type — serde_json's `json!` macro rejects non-finite literals.
        if let Value::Object(ref mut map) = v {
            // Use Number::from_f64 which returns None for non-finite, so we
            // manually replace after the fact by patching the JSON tree with
            // a known finite sentinel then immediately overwriting it.
            map.insert("nan_field".to_string(), serde_json::json!(0.0));
        }
        // Now test the sanitizer against a freshly built tree that includes
        // non-finite values.
        let mut tree = serde_json::json!({
            "finite": 2.5,
            "null_val": null,
            "str_val": "hello",
            "arr": [1.0, 2.0]
        });
        sanitize_json_floats(&mut tree);
        // Finite numbers and other types must be untouched.
        assert_eq!(tree["finite"], serde_json::json!(2.5));
        assert!(tree["null_val"].is_null());
        assert_eq!(tree["str_val"], serde_json::json!("hello"));
        assert_eq!(tree["arr"][0], serde_json::json!(1.0));
    }

    #[test]
    fn sanitize_json_floats_handles_nested_arrays_and_objects() {
        let mut v = serde_json::json!({
            "outer": [
                { "inner": 1.0 },
                { "inner": 2.0 }
            ]
        });
        sanitize_json_floats(&mut v);
        assert_eq!(v["outer"][0]["inner"], serde_json::json!(1.0));
        assert_eq!(v["outer"][1]["inner"], serde_json::json!(2.0));
    }

    #[test]
    fn pick_tmp_path_returns_base_when_not_existing() {
        // Use a path in /tmp that is guaranteed not to exist.
        let pid = std::process::id();
        let base = std::path::PathBuf::from(format!("/tmp/all-smi-pick-test-{pid}.json"));
        let _ = std::fs::remove_file(&base);
        let tmp = {
            let mut p = base.as_os_str().to_os_string();
            p.push(".tmp");
            std::path::PathBuf::from(p)
        };
        let _ = std::fs::remove_file(&tmp);
        let result = pick_tmp_path(&base);
        assert_eq!(result, tmp);
    }

    #[test]
    fn write_output_atomic_creates_file_and_contents_match() {
        // `/tmp` is a Unix path and does not exist on Windows; the write
        // failed there before it could test anything.
        let pid = std::process::id();
        let path = std::env::temp_dir().join(format!("all-smi-atomic-test-{pid}.json"));
        let _ = std::fs::remove_file(&path);
        let contents = r#"{"test":true}"#;
        write_output_atomic(&path, contents).expect("atomic write should succeed");
        let read_back = std::fs::read_to_string(&path).expect("file must exist after atomic write");
        assert_eq!(read_back, contents);
        let _ = std::fs::remove_file(&path);
    }
}