Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 591 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 591 Bytes

windows-kernel-rs

Several crates to help work with the Windows kernel:

  • kernel-alloc - declares a global kernel allocator based on ExAllocatePoolWithTag
  • kernel-init - gathers in one place all the necessary elements needed to run rust code in kernel
  • kernel-macros - some useful macros for kernel mode
  • kernel-string - ANSI_STRING and UNICODE_STRING with necessary functions

One crate with ported functions necessary to work with drivers and minifilters.

Some ideas taken from: Writing a kernel driver with Rust.