12 releases

0.9.1 Sep 22, 2023
0.9.0 Mar 29, 2022
0.8.1 Mar 23, 2022
0.8.0 Jun 12, 2021
0.7.1 Mar 29, 2021

#18 in Hardware support

Download history 3545/week @ 2023-12-14 479/week @ 2023-12-21 381/week @ 2023-12-28 1101/week @ 2024-01-04 1258/week @ 2024-01-11 1385/week @ 2024-01-18 1264/week @ 2024-01-25 1239/week @ 2024-02-01 1607/week @ 2024-02-08 1244/week @ 2024-02-15 1268/week @ 2024-02-22 1398/week @ 2024-02-29 1588/week @ 2024-03-07 1412/week @ 2024-03-14 1609/week @ 2024-03-21 1068/week @ 2024-03-28

5,978 downloads per month
Used in 4 crates (3 directly)

Custom license

1MB
18K SLoC

smbios-lib

An SMBIOS Library created in Rust that reads and parses raw BIOS data

crates.io smbioslib_ci LOC

Table of contents

General info

This project reads raw SMBIOS data from either a device or file and provides the data as an API.

For an example project using this library take a look at dmidecode-rs.

Supports

SMBIOS 3.7.0 contains 49 defined structure types, all of which are covered by this library (types 0-46, 126, and 127). Support via extensibility exists for types 128-255 (reserved for OEMs). Extensibility also applies in the case when this library has not been updated for the latest specification version or a pre-released specification and a new type is introduced.

Project Status

In early development.

The current development stage is to finalize the API design.

Dependencies

  • Windows
    • libc = "^0.2"
  • MacOS
    • libc = "^0.2"
    • mach = "^0.3"
    • core-foundation = "~0.6"
    • core-foundation-sys = "~0.6"
    • io-kit-sys = "^0.1.0"

Security

This library design follows a strict security mantra: "Never trust the input".

SMBIOS has been around for decades and has undergone many versions and revisions. Many OEM vendors have interpreted and implemented the specifications over the years. Known cases of incorrect firmware implementations exist. This presents a veritable labrynth of logic for both the known and the unknown. Rather than creating such a complex state machine, we take advantage of Rust's Option<> trait and assert that the act of retrieval for any and all information may fail. The burden of proof thus shifts from the library to the library consumer who is required to implement the failing condition arm.

Examples

Retrieve a Field of a Single Instance Structure

Some structures are required and are a single instance. (e.g. SMBiosSystemInformation)

#[test]
/// Retrieves the System UUID from a device.
/// UUID is found in the System Information (type 1) structure
fn retrieve_system_uuid() {
    match table_load_from_device() {
        Ok(data) => match data.find_map(|sys_info: SMBiosSystemInformation| sys_info.uuid()) {
            Some(uuid) => println!("System Information UUID == {:?}", uuid),
            None => println!("No System Information (Type 1) structure found with a UUID field"),
        },
        Err(err) => println!("failure: {:?}", err),
    }
}

Output:

running 1 test
System Information UUID == Uuid(4ee6523f-d56a-f3ea-8e2a-891cf96286ea)
test retrieve_system_uuid ... ok

Retrieve All Instances of a Structure - collect()

Some structures are allowed to have more than one instance. (e.g. SMBiosMemoryDevice)

#[test]
/// Prints information for all memory devices within a device.
fn print_all_memory_devices() {
    match table_load_from_device() {
        Ok(data) => {
            for memory_device in data.collect::<SMBiosMemoryDevice>() {
                println!("{:#?}", memory_device);
            }
        }
        Err(err) => println!("failure: {:?}", err),
    }
}

Output:

running 1 test
smbioslib::structs::types::memory_device::SMBiosMemoryDevice {
    header: smbioslib::core::header::Header {
        struct_type: 17,
        length: 40,
        handle: smbioslib::structs::structure::Handle {
            handle: 8,
        },
    },
    physical_memory_array_handle: Some(
        smbioslib::structs::structure::Handle {
            handle: 1,
        },
    ),
[...elided...]

Retrieve a Structure Given a Handle - find_by_handle()

Some structures point to other structures via handles. (e.g. SMBiosMemoryDevice points to SMBiosPhysicalMemoryArray)

/// Finds an associated struct by handle
#[test]
fn struct_struct_association() {
    match table_load_from_device() {
        Ok(data) => match data.first::<SMBiosMemoryDevice>() {
            Some(first_memory_device) => {
                let handle = first_memory_device.physical_memory_array_handle().unwrap();
                match data.find_by_handle(&handle) {
                    Some(undefined_struct) => {
                        let physical_memory_array = undefined_struct.defined_struct();
                        println!("{:#?}", physical_memory_array)
                    }
                    None => println!("No Physical Memory Array (Type 16) structure found"),
                }
            }
            None => println!("No Memory Device (Type 17) structure found"),
        },
        Err(err) => println!("failure: {:?}", err),
    }
}

Output:

running 1 test
PhysicalMemoryArray(
    smbioslib::structs::types::physical_memory_array::SMBiosPhysicalMemoryArray {
        header: smbioslib::core::header::Header {
            struct_type: 16,
            length: 23,
            handle: smbioslib::structs::structure::Handle {
                handle: 1,
            },
        },
        location: Some(
            smbioslib::structs::types::physical_memory_array::MemoryArrayLocationData {
                raw: 3,
                value: SystemBoardOrMotherboard,
            },
        ),
[...elided...]

Dependencies

~0.8–1.7MB
~38K SLoC