all-smi 0.17.4

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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
// 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.

use crate::device::readers::common_cache::{DetailBuilder, DeviceStaticInfo};
use crate::device::types::{GpuInfo, ProcessInfo};
use crate::device::GpuReader;
use crate::utils::get_hostname;
use chrono::Local;
use libamdgpu_top::stat::{self, FdInfoStat, ProcInfo};
use libamdgpu_top::AMDGPU::{DeviceHandle, GpuMetrics, MetricsInfo, GPU_INFO};
use libamdgpu_top::{AppDeviceInfo, DevicePath, VramUsage};
use std::collections::HashMap;
use std::sync::{Mutex, OnceLock};

// GPU metric validation constants
const MAX_GPU_UTILIZATION: f64 = 100.0; // Maximum utilization percentage
const MAX_GPU_POWER_WATTS: f64 = 1000.0; // Maximum power consumption in watts
const MAX_GPU_TEMP_CELSIUS: u32 = 125; // Maximum temperature in Celsius
const MAX_GPU_FREQ_MHZ: u32 = 5000; // Maximum frequency in MHz
const MAX_GPU_MEMORY_BYTES: u64 = 512 * 1024 * 1024 * 1024; // 512GB max memory

// Driver version validation constant
// Linux kernel versions typically don't exceed 999 for any component
const MAX_VERSION_COMPONENT: i32 = 999;

/// Per-device state that needs to be cached
///
/// # Thread Safety
///
/// The `vram_usage` field is protected by a `Mutex` to ensure thread-safe access
/// across multiple concurrent readers. The VramUsage struct from libamdgpu_top
/// maintains internal state that must be updated atomically.
///
/// ## Synchronization Guarantees
/// - All reads and writes to `vram_usage` are serialized through the mutex
/// - The mutex ensures memory ordering: all writes before unlock are visible after lock
/// - No data races can occur as long as all access goes through the mutex
///
/// ## Mutex Poisoning Recovery
/// If a thread panics while holding the mutex lock, the mutex becomes "poisoned"
/// to prevent other threads from observing potentially inconsistent state.
/// We handle this by:
/// 1. Detecting the poisoned state
/// 2. Attempting to recover with fresh data from the driver
/// 3. Using `catch_unwind` to handle potential panics during recovery
/// 4. Skipping the device if recovery fails to maintain system stability
///
/// ## Performance Considerations
/// - Mutex contention is minimal as updates are quick (microseconds)
/// - Each device has its own mutex, preventing global bottlenecks
/// - The lock is held only during the VramUsage update operations
struct AmdGpuDevice {
    device_path: DevicePath,
    device_handle: DeviceHandle,
    vram_usage: Mutex<VramUsage>, // Protected by mutex for thread-safe updates
    static_info: OnceLock<DeviceStaticInfo>, // Cached static device information
}

pub struct AmdGpuReader {
    devices: Vec<AmdGpuDevice>,
    /// Cached ROCm version (fetched only once, shared across all devices)
    rocm_version: OnceLock<Option<String>>,
}

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

impl AmdGpuReader {
    pub fn new() -> Self {
        // Check if we have permission to access AMD GPU devices
        // This prevents panic from libamdgpu_top when running without sudo
        // If no permission, silently return empty device list
        // The main program will handle showing sudo message before TUI starts
        if !Self::check_amd_gpu_permissions() {
            return Self {
                devices: Vec::new(),
                rocm_version: OnceLock::new(),
            };
        }

        let device_path_list = DevicePath::get_device_path_list();
        let mut devices = Vec::new();

        // Add device count validation to prevent unbounded growth
        const MAX_DEVICES: usize = 256;
        let device_paths_to_process: Vec<_> =
            device_path_list.into_iter().take(MAX_DEVICES).collect();

        for device_path in device_paths_to_process {
            match device_path.init() {
                Ok(amdgpu_dev) => {
                    // Get initial memory_info to create VramUsage
                    match amdgpu_dev.memory_info() {
                        Ok(memory_info) => {
                            let vram_usage = VramUsage::new(&memory_info);
                            devices.push(AmdGpuDevice {
                                device_path: device_path.clone(),
                                device_handle: amdgpu_dev,
                                vram_usage: Mutex::new(vram_usage),
                                static_info: OnceLock::new(),
                            });
                        }
                        Err(e) => {
                            eprintln!(
                                "Warning: Failed to get memory info for AMD GPU {}: {e}",
                                device_path.pci
                            );
                        }
                    }
                }
                Err(e) => {
                    eprintln!(
                        "Warning: Failed to initialize AMD GPU {}: {e}",
                        device_path.pci
                    );
                }
            }
        }

        Self {
            devices,
            rocm_version: OnceLock::new(),
        }
    }

    /// Get cached ROCm version, initializing if needed
    fn get_rocm_version(&self) -> Option<String> {
        self.rocm_version
            .get_or_init(libamdgpu_top::get_rocm_version)
            .clone()
    }

    /// Get cached static device info for a device, initializing if needed
    fn get_device_static_info<'a>(&self, device: &'a AmdGpuDevice) -> &'a DeviceStaticInfo {
        device
            .static_info
            .get_or_init(|| {
                // Fetch static device information once
                let ext_info = device.device_handle.device_info().ok();
                let memory_info = device.device_handle.memory_info().ok();

                let (device_name, mut detail) = if let (Some(ext), Some(mem)) =
                    (ext_info.as_ref(), memory_info.as_ref())
                {
                    let sensors = libamdgpu_top::stat::Sensors::new(
                        &device.device_handle,
                        &device.device_path.pci,
                        ext,
                    );

                    let app_device_info = AppDeviceInfo::new(
                        &device.device_handle,
                        ext,
                        mem,
                        &sensors,
                        &device.device_path,
                    );

                    let mut builder = DetailBuilder::new()
                        .insert("Device Name", &app_device_info.marketing_name)
                        .insert("PCI Bus", app_device_info.pci_bus.to_string());

                    // Add ROCm version
                    if let Some(ref ver) = self.get_rocm_version() {
                        builder = builder
                            .insert("ROCm Version", ver)
                            .insert("lib_name", "ROCm")
                            .insert("lib_version", ver);
                    }

                    let mut detail = builder.build();

                    // Add device details
                    detail.insert(
                        "Device ID".to_string(),
                        format!("{:#06x}", ext.device_id()),
                    );
                    detail.insert(
                        "Revision ID".to_string(),
                        format!("{:#04x}", ext.pci_rev_id()),
                    );
                    detail.insert(
                        "ASIC Name".to_string(),
                        app_device_info.asic_name.to_string(),
                    );

                    if let Some(ref vbios) = app_device_info.vbios {
                        detail.insert("VBIOS Version".to_string(), vbios.ver.clone());
                        detail.insert("VBIOS Date".to_string(), vbios.date.clone());
                    }

                    if let Some(ref cap) = app_device_info.power_cap {
                        detail.insert("Power Cap".to_string(), format!("{} W", cap.current));
                        detail.insert("Power Cap (Min)".to_string(), format!("{} W", cap.min));
                        detail.insert("Power Cap (Max)".to_string(), format!("{} W", cap.max));
                    }

                    if let Some(link) = app_device_info.max_gpu_link {
                        detail.insert(
                            "Max GPU Link".to_string(),
                            format!("Gen{} x{}", link.gen, link.width),
                        );
                    }

                    if let Some(link) = app_device_info.max_system_link {
                        detail.insert(
                            "Max System Link".to_string(),
                            format!("Gen{} x{}", link.gen, link.width),
                        );
                    }

                    if let Some(min_dpm_link) = app_device_info.min_dpm_link {
                        detail.insert(
                            "Min DPM Link".to_string(),
                            format!("Gen{} x{}", min_dpm_link.gen, min_dpm_link.width),
                        );
                    }

                    if let Some(max_dpm_link) = app_device_info.max_dpm_link {
                        detail.insert(
                            "Max DPM Link".to_string(),
                            format!("Gen{} x{}", max_dpm_link.gen, max_dpm_link.width),
                        );
                    }

                    (app_device_info.marketing_name, detail)
                } else {
                    (String::from("Unknown GPU"), HashMap::new())
                };

                // Get driver version
                match device.device_handle.get_drm_version_struct() {
                    Ok(drm) => {
                        if drm.version_major >= 0
                            && drm.version_major <= MAX_VERSION_COMPONENT
                            && drm.version_minor >= 0
                            && drm.version_minor <= MAX_VERSION_COMPONENT
                            && drm.version_patchlevel >= 0
                            && drm.version_patchlevel <= MAX_VERSION_COMPONENT
                        {
                            let ver = format!(
                                "{}.{}.{}",
                                drm.version_major, drm.version_minor, drm.version_patchlevel
                            );
                            detail.insert("Driver Version".to_string(), ver);
                        } else {
                            eprintln!(
                                "Warning: Invalid driver version components detected: {}.{}.{} for device {}",
                                drm.version_major, drm.version_minor, drm.version_patchlevel,
                                device.device_path.pci
                            );
                        }
                    }
                    Err(e) => {
                        eprintln!(
                            "Warning: Failed to get driver version for device {}: {e}",
                            device.device_path.pci
                        );
                    }
                };

                DeviceStaticInfo::with_details(device_name, None, detail)
            })
    }

    /// Check if we have permission to access AMD GPU devices
    /// Returns false if /dev/dri devices are not accessible
    fn check_amd_gpu_permissions() -> bool {
        use std::fs;

        // Check if /dev/dri directory exists and is accessible
        let dri_path = std::path::Path::new("/dev/dri");
        if !dri_path.exists() {
            return false;
        }

        // Try to read the directory to check permissions
        match fs::read_dir(dri_path) {
            Ok(entries) => {
                // Check if we can read at least one render or card device
                for entry in entries.flatten() {
                    let path = entry.path();
                    let file_name = path.file_name().and_then(|n| n.to_str()).unwrap_or("");

                    // Check card or render devices
                    if file_name.starts_with("card") || file_name.starts_with("render") {
                        // Check if we have read/write permissions
                        // For root: always has access
                        // SAFETY: libc::geteuid() is always safe to call - it's a simple
                        // system call that reads the effective user ID from the kernel.
                        // It cannot fail and doesn't access any memory we provide.
                        if unsafe { libc::geteuid() } == 0 {
                            return true; // Root always has access
                        }

                        // For non-root, check if we can actually open the device
                        if let Ok(_file) = fs::OpenOptions::new().read(true).write(true).open(&path)
                        {
                            return true; // We have access
                        }
                    }
                }
                false // No accessible devices found
            }
            Err(_) => false, // Cannot read /dev/dri directory
        }
    }
}

impl GpuReader for AmdGpuReader {
    fn get_gpu_info(&self) -> Vec<GpuInfo> {
        let mut gpu_info = Vec::new();

        for device in &self.devices {
            // Get cached static device information (fetched only once)
            let static_info = self.get_device_static_info(device);
            let mut detail = static_info.detail.clone();
            let device_name = static_info.name.clone();

            // Get device info for dynamic metrics only
            let ext_info = match device.device_handle.device_info() {
                Ok(info) => info,
                Err(e) => {
                    eprintln!(
                        "Warning: Failed to get device info for AMD GPU {}: {e}",
                        device.device_path.pci
                    );
                    continue; // Skip this GPU if we can't get device info
                }
            };

            // Update the VramUsage from the driver (following libamdgpu-top pattern)
            // SAFETY: We handle mutex poisoning by recreating the VramUsage from fresh memory_info
            let memory_info = {
                let vram_usage_result = device.vram_usage.lock();

                match vram_usage_result {
                    Ok(mut vram_usage) => {
                        // Normal path: update and read
                        vram_usage.update_usage(&device.device_handle);
                        vram_usage.update_usable_heap_size(&device.device_handle);
                        vram_usage.0 // VramUsage is a tuple struct wrapping drm_amdgpu_memory_info
                    }
                    Err(poisoned) => {
                        // Mutex was poisoned - recover by getting fresh memory info
                        // This prevents denial of service from panics in other threads
                        eprintln!(
                            "Warning: VramUsage mutex was poisoned for device {}, recovering...",
                            device.device_path.pci
                        );

                        // Try to get fresh memory info from the device
                        match device.device_handle.memory_info() {
                            Ok(fresh_memory_info) => {
                                // Attempt to recover the poisoned mutex safely
                                // into_inner() can theoretically panic if the mutex is in an
                                // inconsistent state, though this is extremely rare with modern
                                // standard library implementations
                                match std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| {
                                    poisoned.into_inner()
                                })) {
                                    Ok(mut guard) => {
                                        // Successfully recovered the guard
                                        *guard = VramUsage::new(&fresh_memory_info);
                                        guard.update_usage(&device.device_handle);
                                        guard.update_usable_heap_size(&device.device_handle);
                                        guard.0
                                    }
                                    Err(_) => {
                                        // Recovery failed - skip this GPU
                                        eprintln!(
                                            "Critical: Failed to recover poisoned mutex for device {}, skipping",
                                            device.device_path.pci
                                        );
                                        continue;
                                    }
                                }
                            }
                            Err(e) => {
                                eprintln!("Failed to get fresh memory info during recovery: {e}");
                                continue; // Skip this GPU if we can't recover
                            }
                        }
                    }
                }
            };

            // Get dynamic sensor information
            let sensors = libamdgpu_top::stat::Sensors::new(
                &device.device_handle,
                &device.device_path.pci,
                &ext_info,
            );

            // Add dynamic sensor data to details
            if let Some(ref sensors) = sensors {
                if let Some(link) = sensors.current_link {
                    detail.insert(
                        "Current Link".to_string(),
                        format!("Gen{} x{}", link.gen, link.width),
                    );
                }
                if let Some(fan) = sensors.fan_rpm {
                    detail.insert("Fan Speed".to_string(), format!("{fan} RPM"));
                }
                if let Some(mclk) = sensors.mclk {
                    detail.insert("Memory Clock".to_string(), format!("{mclk} MHz"));
                }
            }

            let mut utilization = 0.0;
            let mut power_consumption = 0.0;
            let mut temperature: u32 = 0;
            let mut frequency: u32 = 0;

            // Try to get metrics from GpuMetrics first with validation
            if let Ok(metrics) = GpuMetrics::get_from_sysfs_path(&device.device_path.sysfs_path) {
                if let Some(gfx_activity) = metrics.get_average_gfx_activity() {
                    // Validate utilization is within reasonable bounds
                    utilization = (gfx_activity as f64).clamp(0.0, MAX_GPU_UTILIZATION);
                }
                if let Some(power) = metrics.get_average_socket_power() {
                    // Validate power consumption
                    let watts = power as f64 / 1000.0; // Convert mW to W
                    power_consumption = watts.clamp(0.0, MAX_GPU_POWER_WATTS);
                }
                if let Some(temp) = metrics.get_temperature_edge() {
                    // Validate temperature
                    temperature = (temp as u32).min(MAX_GPU_TEMP_CELSIUS);
                }
                if let Some(freq) = metrics.get_current_gfxclk() {
                    // Validate frequency
                    frequency = (freq as u32).min(MAX_GPU_FREQ_MHZ);
                }
            }

            // Fallback to sensors if metrics failed or missing (with validation)
            if let Some(ref s) = sensors {
                if utilization == 0.0 {
                    // Approximate utilization from load if available, or leave 0
                    // libamdgpu_top doesn't expose a simple "gpu load" sensor easily without GpuMetrics or fdinfo
                }
                if power_consumption == 0.0 {
                    if let Some(ref p) = s.average_power {
                        let watts = p.value as f64 / 1000.0; // Convert mW to W
                        power_consumption = watts.clamp(0.0, MAX_GPU_POWER_WATTS);
                    } else if let Some(ref p) = s.input_power {
                        let watts = p.value as f64 / 1000.0; // Convert mW to W
                        power_consumption = watts.clamp(0.0, MAX_GPU_POWER_WATTS);
                    }
                }
                if temperature == 0 {
                    if let Some(ref t) = s.edge_temp {
                        temperature = (t.current as u32).min(MAX_GPU_TEMP_CELSIUS);
                    }
                }
                if frequency == 0 {
                    if let Some(clk) = s.sclk {
                        frequency = clk.min(MAX_GPU_FREQ_MHZ);
                    }
                }
            }

            // Use memory_info from VramUsage (already updated above)
            // The update_usable_heap_size() call updates total_heap_size from vram_gtt_info()
            // but we do it once per update cycle, not repeated queries

            // Get VRAM size - try multiple sources in order with validation
            // Current max is MI325X with 288GB, but we allow headroom for future models
            // Use saturating operations to prevent any possibility of overflow
            let total_memory = if memory_info.vram.total_heap_size > 0 {
                memory_info.vram.total_heap_size.min(MAX_GPU_MEMORY_BYTES)
            } else if memory_info.vram.usable_heap_size > 0 {
                memory_info.vram.usable_heap_size.min(MAX_GPU_MEMORY_BYTES)
            } else {
                0
            };

            // Validate used memory doesn't exceed total - use saturating_sub to prevent underflow
            // in case of driver reporting incorrect values
            let used_memory = memory_info.vram.heap_usage.min(total_memory);

            let info = GpuInfo {
                uuid: format!("GPU-{}", device.device_path.pci), // AMD doesn't have UUIDs like NVIDIA, use PCI
                time: Local::now().format("%Y-%m-%d %H:%M:%S").to_string(),
                name: device_name, // Use cached device name
                device_type: "GPU".to_string(),
                host_id: get_hostname(),
                hostname: get_hostname(),
                instance: get_hostname(),
                utilization,
                ane_utilization: 0.0,
                dla_utilization: None,
                tensorcore_utilization: None,
                temperature,
                used_memory,
                total_memory,
                frequency,
                power_consumption,
                gpu_core_count: None,
                detail,
            };
            gpu_info.push(info);
        }

        gpu_info
    }

    fn get_process_info(&self) -> Vec<ProcessInfo> {
        use std::collections::{HashMap, HashSet};

        let mut process_info_list = Vec::new();

        // Get process list once for fdinfo parsing
        let proc_list = stat::get_process_list();

        // Collect all GPU process data in a single pass
        struct GpuProcessData {
            device_id: usize,
            device_uuid: String,
            pid: u32,
            name: String,
            vram_usage_kib: u64,
            gtt_usage_kib: u64,
        }

        let mut gpu_processes = Vec::new();
        let mut gpu_pids = HashSet::new();

        // Single pass: collect all GPU process data
        for (device_idx, device) in self.devices.iter().enumerate() {
            // Build process index for this device
            let mut proc_index: Vec<ProcInfo> = Vec::new();
            stat::update_index_by_all_proc(
                &mut proc_index,
                &[&device.device_path.render, &device.device_path.card],
                &proc_list,
            );

            // Get fdinfo usage for all processes
            let mut fdinfo = FdInfoStat::default();
            fdinfo.get_all_proc_usage(&proc_index);

            // Collect process data
            for proc_usage in fdinfo.proc_usage {
                let vram_usage_kib = proc_usage.usage.vram_usage;
                let gtt_usage_kib = proc_usage.usage.gtt_usage;

                // Include process if it uses VRAM or GTT (GPU memory)
                if vram_usage_kib > 0 || gtt_usage_kib > 0 {
                    let pid = proc_usage.pid as u32;
                    gpu_pids.insert(pid);

                    gpu_processes.push(GpuProcessData {
                        device_id: device_idx,
                        device_uuid: format!("GPU-{}", device.device_path.pci),
                        pid,
                        name: proc_usage.name,
                        vram_usage_kib,
                        gtt_usage_kib,
                    });
                }
            }
        }

        // Get system process information once for all GPU processes
        // OPTIMIZATION: Use minimal refresh instead of refresh_all() which is extremely expensive
        // We only need CPU, memory, and basic process info for GPU processes
        use crate::utils::with_global_system;
        use sysinfo::{ProcessRefreshKind, ProcessesToUpdate, UpdateKind};
        let system_processes = with_global_system(|system| {
            let refresh_kind = ProcessRefreshKind::nothing()
                .with_cpu()
                .with_memory()
                .with_user(UpdateKind::OnlyIfNotSet);
            system.refresh_processes_specifics(ProcessesToUpdate::All, true, refresh_kind);
            crate::device::process_list::get_all_processes(system, &gpu_pids)
        });
        let process_map: HashMap<u32, _> = system_processes.iter().map(|p| (p.pid, p)).collect();

        // Build final ProcessInfo list efficiently
        for gpu_proc in gpu_processes {
            // Convert to bytes and prioritize VRAM, fallback to GTT
            let gpu_memory_bytes = if gpu_proc.vram_usage_kib > 0 {
                gpu_proc.vram_usage_kib * 1024
            } else {
                gpu_proc.gtt_usage_kib * 1024
            };

            // Get system process info or use defaults
            let sys_proc = process_map.get(&gpu_proc.pid);

            let process_info = ProcessInfo {
                device_id: gpu_proc.device_id,
                device_uuid: gpu_proc.device_uuid,
                pid: gpu_proc.pid,
                process_name: gpu_proc.name,
                used_memory: gpu_memory_bytes,
                cpu_percent: sys_proc.map(|p| p.cpu_percent).unwrap_or(0.0),
                memory_percent: sys_proc.map(|p| p.memory_percent).unwrap_or(0.0),
                memory_rss: sys_proc.map(|p| p.memory_rss).unwrap_or(0),
                memory_vms: sys_proc.map(|p| p.memory_vms).unwrap_or(0),
                user: sys_proc.map(|p| p.user.clone()).unwrap_or_default(),
                state: sys_proc.map(|p| p.state.clone()).unwrap_or_default(),
                start_time: sys_proc.map(|p| p.start_time.clone()).unwrap_or_default(),
                cpu_time: sys_proc.map(|p| p.cpu_time).unwrap_or(0),
                command: sys_proc.map(|p| p.command.clone()).unwrap_or_default(),
                ppid: sys_proc.map(|p| p.ppid).unwrap_or(0),
                threads: sys_proc.map(|p| p.threads).unwrap_or(0),
                uses_gpu: true,
                priority: sys_proc.map(|p| p.priority).unwrap_or(0),
                nice_value: sys_proc.map(|p| p.nice_value).unwrap_or(0),
                gpu_utilization: 0.0, // fdinfo doesn't directly provide this per-process
            };

            process_info_list.push(process_info);
        }

        process_info_list
    }
}

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

    #[test]
    fn test_max_version_component_validation() {
        // Test that MAX_VERSION_COMPONENT is reasonable for Linux kernel versions
        assert!(
            MAX_VERSION_COMPONENT >= 99,
            "Should support two-digit version components"
        );
        assert!(
            MAX_VERSION_COMPONENT <= 9999,
            "Should not be excessively large"
        );

        // Common kernel version components should be valid
        let common_versions = vec![
            (6, 12, 0),      // Linux 6.12.0
            (5, 15, 0),      // Linux 5.15.0 LTS
            (30, 10, 1),     // AMD driver version
            (999, 999, 999), // Maximum allowed
        ];

        for (major, minor, patch) in common_versions {
            assert!(
                major <= MAX_VERSION_COMPONENT,
                "Major version {major} should be valid"
            );
            assert!(
                minor <= MAX_VERSION_COMPONENT,
                "Minor version {minor} should be valid"
            );
            assert!(
                patch <= MAX_VERSION_COMPONENT,
                "Patch version {patch} should be valid"
            );
        }
    }

    #[test]
    fn test_version_validation_rejects_invalid() {
        // Test that we reject unreasonable version numbers
        let invalid_versions = vec![
            (1000, 0, 0), // Major too high
            (0, 1000, 0), // Minor too high
            (0, 0, 1000), // Patch too high
            (-1, 0, 0),   // Negative major
            (0, -1, 0),   // Negative minor
            (0, 0, -1),   // Negative patch
        ];

        for (major, minor, patch) in invalid_versions {
            let major_valid = major >= 0 && major <= MAX_VERSION_COMPONENT;
            let minor_valid = minor >= 0 && minor <= MAX_VERSION_COMPONENT;
            let patch_valid = patch >= 0 && patch <= MAX_VERSION_COMPONENT;

            assert!(
                !(major_valid && minor_valid && patch_valid),
                "Version {major}.{minor}.{patch} should be invalid"
            );
        }
    }

    #[test]
    fn test_memory_validation_constants() {
        // Test memory validation constants are reasonable
        assert_eq!(
            MAX_GPU_MEMORY_BYTES,
            512 * 1024 * 1024 * 1024,
            "Max GPU memory should be 512GB"
        );

        // Current largest AMD GPU is MI325X with 288GB, ensure we support it
        let mi325x_memory: u64 = 288 * 1024 * 1024 * 1024;
        assert!(
            mi325x_memory < MAX_GPU_MEMORY_BYTES,
            "Should support MI325X 288GB memory"
        );

        // Future-proof for potential 400GB models
        let future_memory: u64 = 400 * 1024 * 1024 * 1024;
        assert!(
            future_memory < MAX_GPU_MEMORY_BYTES,
            "Should have headroom for future GPUs"
        );
    }

    #[test]
    fn test_gpu_metric_validation_constants() {
        // Test that validation constants are reasonable
        assert_eq!(MAX_GPU_UTILIZATION, 100.0, "Max utilization should be 100%");
        assert_eq!(
            MAX_GPU_POWER_WATTS, 1000.0,
            "Max power should support high-end GPUs"
        );
        assert_eq!(
            MAX_GPU_TEMP_CELSIUS, 125,
            "Max temp should be above thermal limits"
        );
        assert_eq!(
            MAX_GPU_FREQ_MHZ, 5000,
            "Max frequency should support boost clocks"
        );

        // Real-world values should be within limits
        let mi300x_power = 750.0; // MI300X max TDP
        assert!(
            mi300x_power < MAX_GPU_POWER_WATTS,
            "Should support MI300X power draw"
        );

        let typical_boost_freq = 2500; // Typical AMD GPU boost
        assert!(
            typical_boost_freq < MAX_GPU_FREQ_MHZ,
            "Should support typical boost frequencies"
        );
    }
}