22 releases (9 stable)

3.0.2 Mar 25, 2024
3.0.0 Aug 5, 2021
2.2.0 May 28, 2020
2.1.2 Jun 20, 2019
0.0.3 Nov 30, 2016

#10 in Memory management

Download history 26529/week @ 2023-12-23 40453/week @ 2023-12-30 36329/week @ 2024-01-06 44269/week @ 2024-01-13 40118/week @ 2024-01-20 49466/week @ 2024-01-27 40457/week @ 2024-02-03 39485/week @ 2024-02-10 34416/week @ 2024-02-17 34357/week @ 2024-02-24 39995/week @ 2024-03-02 41889/week @ 2024-03-09 40529/week @ 2024-03-16 37791/week @ 2024-03-23 40257/week @ 2024-03-30 34283/week @ 2024-04-06

158,885 downloads per month
Used in 447 crates (45 directly)

MIT license

81KB
1.5K SLoC

region-rs

Cross-platform virtual memory API

GitHub CI Status crates.io version Documentation License

This crate provides a cross-platform Rust API for allocating, querying and manipulating virtual memory. It is a thin abstraction, with the underlying interaction implemented using platform specific APIs (e.g VirtualQuery, VirtualAlloc, VirtualLock, mprotect, mmap, mlock).

Platforms

This library is continuously tested against these targets:

  • Linux
    • aarch64-linux-android
    • armv7-unknown-linux-gnueabihf
    • i686-unknown-linux-gnu
    • mips-unknown-linux-gnu
    • x86_64-unknown-linux-gnu
    • x86_64-unknown-linux-musl
  • Windows
    • i686-pc-windows-gnu
    • i686-pc-windows-msvc
    • x86_64-pc-windows-gnu
    • x86_64-pc-windows-msvc
  • macOS
    • x86_64-apple-darwin
  • NetBSD
    • x86_64-unknown-netbsd
  • FreeBSD
    • x86_64-unknown-freebsd
  • OpenBSD
    • x86_64-unknown-openbsd

... and continuously checked against these targets:

  • Illumos
    • x86_64-unknown-illumos

Beyond the aformentioned target triplets, the library is also expected to work against a multitude of omitted architectures.

Installation

Add this to your Cargo.toml:

[dependencies]
region = "3.0.2"

Example

  • Cross-platform equivalents:
let data = [0xDE, 0xAD, 0xBE, 0xEF];

// Page size
let pz = region::page::size();

// VirtualQuery | '/proc/self/maps'
let q  = region::query(data.as_ptr())?;
let qr = region::query_range(data.as_ptr(), data.len())?;

// VirtualAlloc | mmap
let alloc = region::alloc(100, Protection::READ_WRITE)?;

// VirtualProtect | mprotect
region::protect(data.as_ptr(), data.len(), Protection::READ_WRITE_EXECUTE)?;

// ... you can also temporarily change one or more pages' protection
let handle = region::protect_with_handle(data.as_ptr(), data.len(), Protection::READ_WRITE_EXECUTE)?;

// VirtualLock | mlock
let guard = region::lock(data.as_ptr(), data.len())?;

Dependencies

~0–11MB
~81K SLoC