syd 3.52.0

rock-solid application kernel
Documentation
//
// Syd: rock-solid application kernel
// src/utils/syd-info.rs: Print system information.
//
// Copyright (c) 2024, 2025, 2026 Ali Polatel <alip@chesswob.org>
//
// SPDX-License-Identifier: GPL-3.0

use std::{mem::MaybeUninit, process::ExitCode};

use nix::errno::Errno;
use serde_json::json;

// Set global allocator to GrapheneOS allocator.
#[cfg(all(
    not(coverage),
    not(feature = "prof"),
    not(target_os = "android"),
    not(target_arch = "riscv64"),
    target_page_size_4k,
    target_pointer_width = "64"
))]
#[global_allocator]
static GLOBAL: hardened_malloc::HardenedMalloc = hardened_malloc::HardenedMalloc;

// Set global allocator to tcmalloc if profiling is enabled.
#[cfg(feature = "prof")]
#[global_allocator]
static GLOBAL: tcmalloc::TCMalloc = tcmalloc::TCMalloc;

syd::main! {
    use lexopt::prelude::*;

    syd::set_sigpipe_dfl()?;

    // Parse CLI options.
    let mut parser = lexopt::Parser::from_env();
    #[expect(clippy::never_loop)]
    while let Some(arg) = parser.next()? {
        match arg {
            Short('h') => {
                help();
                return Ok(ExitCode::SUCCESS);
            }
            _ => return Err(arg.unexpected().into()),
        }
    }

    let mut info = MaybeUninit::<libc::sysinfo>::uninit();
    // SAFETY: `info.as_mut_ptr()` points to a valid, writable
    // `MaybeUninit<sysinfo>` that `sysinfo(2)` will initialize.
    Errno::result(unsafe { libc::sysinfo(info.as_mut_ptr()) })?;
    // SAFETY: sysinfo() has initialized `info` if it succeeded.
    let info = unsafe { info.assume_init() };

    #[expect(clippy::disallowed_methods)]
    let info = json!({
        "uptime": info.uptime,
        "loads": info.loads,
        "totalram": info.totalram,
        "freeram": info.freeram,
        "sharedram": info.sharedram,
        "bufferram": info.bufferram,
        "totalswap": info.totalswap,
        "freeswap": info.freeswap,
        "procs": info.procs,
        "totalhigh": info.totalhigh,
        "freehigh": info.freehigh,
        "mem_unit": info.mem_unit,
    });

    #[expect(clippy::disallowed_methods)]
    let info = serde_json::to_string_pretty(&info).unwrap();
    println!("{info}");

    Ok(ExitCode::SUCCESS)
}

fn help() {
    println!("Usage: syd-info [-h]");
    println!("Print system information.");
}