Crates.io | microseh |
lib.rs | microseh |
version | |
source | src |
created_at | 2022-10-26 13:08:13.355104 |
updated_at | 2024-10-07 08:48:08.09484 |
description | Structured Exception Handling (SEH) for Rust |
homepage | https://github.com/sonodima/microseh |
repository | https://github.com/sonodima/microseh |
max_upload_size | |
id | 697804 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
MicroSEH is a tiny library that implements Structured Exception Handling (SEH) in Rust and can catch and handle hardware exceptions.
Hardware exceptions are a very powerful tool for specific use cases. One such use case is to detect and handle illegal instructions at runtime.
It turns out that implementing SEH in pure Rust has its own issues (as seen in this article from NAMAZSO)
This library uses a different, simpler approach, which is to use a C
stub that calls back into Rust, wrapping
the call in a __try __except
block.
Add this to your Cargo.toml
:
[dependencies]
microseh = "1.1"
Minimal Example: Dereference an invalid pointer without crashing the program, and return the handled exception.
fn guarded() -> Result<(), microseh::Exception> {
microseh::try_seh(|| unsafe {
// Read from an unallocated memory region. (we create an aligned not-null
// pointer to skip the checks in read_volatile that would raise a panic)
core::ptr::read_volatile(core::mem::align_of::<i32>() as *const i32);
})
}
Accessing Exception Data: You can obtain the address and register dump of an exception.
if let Err(ex) = microseh::try_seh(|| unsafe {
// *questionable life choices go here*
}) {
println!("address: {:x}", ex.address());
println!("rax: {:x}", ex.registers().rax());
}
For additional examples and practical use cases, please visit the examples directory!
SEH is an extension to the C language developed by Microsoft, and it is exclusively available on Windows when using Microsoft Visual C++ (MSVC).
MicroSEH is compatible with and has been tested on Windows platforms with the following architectures: x86, x86_64 and aarch64.
When building for other unsupported platforms, the library will disable exception
handling and panic when try_seh
is called.
This library can compile to no_std
and supports running in Windows Kernel Drivers using
Microsoft's windows-drivers-rs project.
Cross-compiling for Windows is possible with full support for SEH using the cargo-xwin project.
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.