#msr #x86-64 #cpu #linux

msru

A Rust-safe library for interracting with Model Specific Registers in user-space

2 unstable releases

0.2.0 May 25, 2023
0.1.0 May 19, 2023

#5 in #msr

Download history 3/week @ 2024-01-20 34/week @ 2024-02-10 90/week @ 2024-02-17 48/week @ 2024-02-24 69/week @ 2024-03-02 58/week @ 2024-03-09 38/week @ 2024-03-16 102/week @ 2024-03-23 182/week @ 2024-03-30 161/week @ 2024-04-06 100/week @ 2024-04-13 338/week @ 2024-04-20

785 downloads per month
Used in 2 crates

Apache-2.0

7KB
71 lines

msru

msru provides a Rust-friendly interface for x86_64 CPU MSRs (Model Specific Registers). It allows you to read and write to MSRs via a specified CPU msr device file (/dev/cpu/{cpu_number}/msr).

Installation

Add the following line to your Cargo.toml file:

[dependencies]
msru = "0.2.0"

Usage

use msru::Msr;

// X86_64 SYSCFG MSR
let msr: Msr = Msr::new(0xC0010010, 0)?;

let raw_value: u64 = msr.read()?;

// ...

lib.rs:

As most of the existing crates require kernel-mode, this provides a Rust-friendly interface for reading and writing to MSRs while in user-space. This does require the msr kernel module to be loaded.

Currently this crate only supports Linux.

No runtime deps