1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
//! Low-level communication with the minifilter.
use core::ffi::c_void;
use std::mem;
use std::os::raw::*;
use std::ptr;
use crate::driver_com::DriveType::{
DriveCDRom, DriveFixed, DriveNoRootDir, DriveRamDisk, DriveRemote, DriveRemovable, DriveUnknown,
};
use bindings::Windows::Win32::Foundation::CloseHandle;
use bindings::Windows::Win32::Foundation::PWSTR;
use bindings::Windows::Win32::Storage::FileSystem::GetDriveTypeA;
use bindings::Windows::Win32::Storage::InstallableFileSystems::{
FilterConnectCommunicationPort, FilterSendMessage,
};
use sysinfo::{get_current_pid, Pid};
use wchar::wchar_t;
use widestring::U16CString;
use windows::HRESULT;
use crate::driver_com::shared_def::ReplyIrp;
use crate::driver_com::IrpMajorOp::{IrpCreate, IrpNone, IrpRead, IrpSetInfo, IrpWrite};
type BufPath = [wchar_t; 520];
/// The usermode app (this app) can send several messages types to the driver. See [DriverComMessageType]
/// for details.
/// Depending on the message type, the *pid*, *gid* and *path* fields can be optional.
#[derive(Debug)]
#[repr(C)]
struct DriverComMessage {
/// The type message to send. See [DriverComMessageType].
r#type: c_ulong,
/// The pid of the process which triggered an i/o activity;
pid: c_ulong,
/// The gid is maintained by the driver
gid: c_ulonglong,
path: BufPath,
}
/// A minifilter is identified by a port (know in advance), like a named pipe used for communication,
/// and a handle, retrieved by [Self::open_kernel_driver_com].
#[derive(Debug)]
pub struct Driver {
handle: bindings::Windows::Win32::Foundation::HANDLE, //Full type name because Intellij raises an error...
}
/// Messages types to send directives to the minifilter, by using te [DriverComMessage] struct.
enum DriverComMessageType {
/// Not used yet. The minifilter has the ability to monitor a specific part of the fs.
_MessageAddScanDirectory,
/// Not used yet. The minifilter has the ability to monitor a specific part of the fs.
_MessageRemScanDirectory,
/// Ask for a [ReplyIrp], if any available.
MessageGetOps,
/// Set this app pid to the minifilter (related IRPs will be ignored);
MessageSetPid,
/// Instruct the minifilter to kill all pids in the family designated by a given gid.
MessageKillGid,
}
/// See [shared_def::IOMessage] struct and [this doc](https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/irp-major-function-codes).
pub enum IrpMajorOp {
/// Nothing happened
IrpNone,
/// On read, any time following the successful completion of a create request.
IrpRead,
/// On write, any time following the successful completion of a create request.
IrpWrite,
/// Set Metadata about a file or file handle. In that case, [shared_def::FileChangeInfo] indicates
/// the nature of the modification.
IrpSetInfo,
/// Open a handle to a file object or device object.
IrpCreate,
/// File object handle has been closed
_IrpCleanUp, //not used (yet)
}
impl IrpMajorOp {
pub fn from_byte(b: u8) -> IrpMajorOp {
match b {
0 => IrpNone,
1 => IrpRead,
2 => IrpWrite,
3 => IrpSetInfo,
4 => IrpCreate,
5 => IrpCreate,
_ => IrpNone,
}
}
}
/// See [shared_def::IOMessage] struct and [this doc](https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-getdrivetypea).
pub enum DriveType {
/// The drive type cannot be determined.
DriveUnknown,
/// The root path is invalid; for example, there is no volume mounted at the specified path.
DriveNoRootDir,
/// The drive has removable media; for example, a floppy drive, thumb drive, or flash card reader.
DriveRemovable,
/// The drive has fixed media; for example, a hard disk drive or flash drive.
DriveFixed,
/// The drive is a remote (network) drive.
DriveRemote,
/// The drive is a CD-ROM drive.
DriveCDRom,
/// The drive is a RAM disk.
DriveRamDisk,
}
impl DriveType {
pub fn from_filepath(filepath: String) -> DriveType {
let mut drive_type = 1u32;
if !filepath.is_empty() {
let drive_path = &filepath[..(filepath.find(r"\").unwrap() + 1)];
unsafe {
drive_type = GetDriveTypeA(String::from(drive_path));
}
}
match drive_type {
0 => DriveUnknown,
1 => DriveNoRootDir,
2 => DriveRemovable,
3 => DriveFixed,
4 => DriveRemote,
5 => DriveCDRom,
6 => DriveRamDisk,
_ => DriveNoRootDir,
}
}
}
impl Driver {
/// Can be used to properly close the communication (and unregister) with the minifilter.
/// If this fn is not used and the program has stopped, the handle is automatically closed,
/// seemingly without any side-effects.
pub fn _close_kernel_communication(&self) -> bool {
unsafe { CloseHandle(&self.handle).as_bool() }
}
/// The usermode running app (this one) has to register itself to the driver.
pub fn driver_set_app_pid(&self) -> Result<(), windows::Error> {
let buf = Driver::string_to_commessage_buffer(r"\Device\harddiskVolume");
let mut get_irp_msg: DriverComMessage = DriverComMessage {
r#type: DriverComMessageType::MessageSetPid as c_ulong,
pid: get_current_pid().unwrap() as c_ulong,
gid: 140713315094899,
path: buf, //wch!("\0"),
};
let mut tmp: u32 = 0;
unsafe {
FilterSendMessage(
self.handle,
ptr::addr_of_mut!(get_irp_msg) as *mut c_void,
mem::size_of::<DriverComMessage>() as c_ulong,
ptr::null_mut(),
0,
&mut tmp as *mut u32,
)
}
}
/// Try to open a com canal with the minifilter before this app is registered. This fn can fail
/// is the minifilter is unreachable:
/// * if it is not started (try ```sc start owlyshieldransomfilter``` first
/// * if a connection is already established: it can accepts only one at a time.
/// In that case the Error is raised by the OS (windows::Error) and is generally readable.
pub fn open_kernel_driver_com() -> Result<Driver, windows::Error> {
let com_port_name = U16CString::from_str("\\RWFilter").unwrap().into_raw();
let handle;
unsafe {
handle = FilterConnectCommunicationPort(
PWSTR(com_port_name),
0,
ptr::null(),
0,
ptr::null_mut(),
)?
}
let res = Driver { handle: handle };
Ok(res)
}
/// Ask the driver for a [ReplyIrp], if any. This is a low-level function and the returned object
/// uses C pointers. Managing C pointers requires a special care, because of the Rust timelines.
/// [ReplyIrp] is optional since the minifilter returns null if there is no new activity.
pub fn get_irp(&self, vecnew: &mut Vec<u8>) -> Option<ReplyIrp> {
let mut get_irp_msg = Driver::build_irp_msg(
DriverComMessageType::MessageGetOps,
get_current_pid().unwrap(),
0,
"",
);
let mut tmp: u32 = 0;
unsafe {
FilterSendMessage(
self.handle,
ptr::addr_of_mut!(get_irp_msg) as *mut c_void,
mem::size_of::<DriverComMessage>() as c_ulong,
vecnew.as_ptr() as *mut c_void,
65536 as u32,
ptr::addr_of_mut!(tmp) as *mut u32,
)
.expect("Cannot get driver message from driver");
}
if tmp != 0 {
let reply_irp: ReplyIrp;
unsafe {
reply_irp = ptr::read_unaligned(vecnew.as_ptr() as *const ReplyIrp);
}
return Some(reply_irp);
}
None
}
/// Ask the minifilter to kill all pids related to the given *gid*. Pids are killed in drivermode
/// by calls to NtClose.
pub fn try_kill(&self, gid: c_ulonglong) -> Result<HRESULT, windows::Error> {
let mut killmsg = DriverComMessage {
r#type: DriverComMessageType::MessageKillGid as c_ulong,
pid: 0, //get_current_pid().unwrap() as u32,
gid: gid,
path: [0; 520],
};
let mut res: u32 = 0;
let mut res_size: u32 = 0;
unsafe {
FilterSendMessage(
self.handle,
ptr::addr_of_mut!(killmsg) as *mut c_void,
mem::size_of::<DriverComMessage>() as c_ulong,
ptr::addr_of_mut!(res) as *mut c_void,
4 as u32,
ptr::addr_of_mut!(res_size) as *mut u32,
)?;
}
let hres = HRESULT(res);
return Ok(hres);
}
fn string_to_commessage_buffer(bufstr: &str) -> BufPath {
let temp = U16CString::from_str(&bufstr).unwrap();
let mut buf: BufPath = [0; 520];
for (i, c) in temp.as_slice_with_nul().iter().enumerate() {
buf[i] = c.clone() as wchar_t;
}
buf
}
fn build_irp_msg(
commsgtype: DriverComMessageType,
pid: Pid,
gid: u64,
path: &str,
) -> DriverComMessage {
DriverComMessage {
r#type: commsgtype as c_ulong, // MessageSetPid
pid: pid as c_ulong,
gid: gid,
path: Driver::string_to_commessage_buffer(&path),
}
}
}
/// Contains all definitions shared between this usermode app and the minifilter in order
/// to communicate properly. Those are C-representation of structures sent or received from the minifilter.
pub mod shared_def {
use std::os::raw::{c_uchar, c_ulong, c_ulonglong, c_ushort};
use std::path::PathBuf;
use bindings::Windows::Win32::Storage::FileSystem::FILE_ID_INFO;
use serde::{Deserialize, Serialize};
use wchar::wchar_t;
/// See [IOMessage] struct. Used with [crate::driver_com::IrpMajorOp::IrpSetInfo]
#[derive(FromPrimitive)]
pub enum FileChangeInfo {
FileChangeNotSet,
FileOpenDirectory,
FileChangeWrite,
FileChangeNewFile,
FileChangeRenameFile,
FileChangeExtensionChanged,
FileChangeDeleteFile,
/// Temp file: created and deleted on close
FileChangeDeleteNewFile,
FileChangeOverwriteFile,
}
/// See [IOMessage] struct.
#[derive(FromPrimitive)]
pub enum FileLocationInfo {
FileNotProtected,
FileProtected,
FileMovedIn,
FileMovedOut,
}
/// Low-level C-like object to communicate with the minifilter.
/// The minifilter yields ReplyIrp objects (retrieved by [crate::driver_com::Driver::get_irp] to manage the fixed size of the *data buffer.
/// In other words, a ReplyIrp is a collection of [CDriverMsg] with a capped size.
#[derive(Debug, Copy, Clone)]
#[repr(C)]
pub struct ReplyIrp {
/// The size od the collection.
pub data_size: c_ulonglong,
/// The C pointer to the buffer containinf the [CDriverMsg] events.
pub data: *const CDriverMsg,
/// The number of different operations in this collection.
pub num_ops: u64,
}
/// This class is the straight Rust translation of the Win32 API [UNICODE_STRING](https://docs.microsoft.com/en-us/windows/win32/api/ntdef/ns-ntdef-_unicode_string),
/// returned by the driver.
#[derive(Debug, Copy, Clone)]
#[repr(C)]
pub struct UnicodeString {
pub length: c_ushort,
pub maximum_length: c_ushort,
pub buffer: *const wchar_t,
}
/// Represents a driver message.
///
/// - extension: The file extension
/// - file_id_vsn: Hard Disk Volume Serial Number where the file is saved (from FILE_ID_INFO)
/// - file_id_id: File ID on the disk (FILE_ID_INFO)
/// - mem_size_used: Number of bytes transferred (IO_STATUS_BLOCK.Information)
/// - entropy: (Optional) File Entropy calculated by the driver
/// - is_entropy_calc: is the entropy calculated?
/// - pid: Pid responsible for this io activity
/// - irp_op: Windows IRP Type catched by the minifilter:
/// * NONE (0)
/// * READ (1)
/// * WRITE (2)
/// * SETINFO (3)
/// * CREATE (4)
/// * CLEANUP (5)
/// - file_change: type of i/o operation:
/// * FILE_CHANGE_NOT_SET (0)
/// * FILE_OPEN_DIRECTORY (1)
/// * FILE_CHANGE_WRITE (2)
/// * FILE_CHANGE_NEW_FILE (3)
/// * FILE_CHANGE_RENAME_FILE (4)
/// * FILE_CHANGE_EXTENSION_CHANGED (5)
/// * FILE_CHANGE_DELETE_FILE (6)
/// * FILE_CHANGE_DELETE_NEW_FILE (7)
/// * FILE_CHANGE_OVERWRITE_FILE (8)
/// - file_location_info: the driver has the ability to monitor specific directories only (feature currently not used):
/// * FILE_NOT_PROTECTED (0): Monitored dirs do not contained this file
/// * FILE_PROTECTED (1)
/// * FILE_MOVED_IN (2)
/// * FILE_MOVED_OUT (3)
/// - filepath: File path on the disk
/// - gid: Group Identifier (maintained by the minifilter) of the operation
/// - runtime_features: see class [RuntimeFeatures]
/// - file_size: size of the file. Can be equal to -1 if the file path is not found.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[repr(C)]
pub struct IOMessage {
pub extension: [wchar_t; 12],
pub file_id_vsn: c_ulonglong,
pub file_id_id: [u8; 16],
pub mem_sized_used: c_ulonglong,
pub entropy: f64,
pub pid: c_ulong,
pub irp_op: c_uchar,
pub is_entropy_calc: u8,
pub file_change: c_uchar,
pub file_location_info: c_uchar,
pub filepathstr: String,
pub gid: c_ulonglong,
pub runtime_features: RuntimeFeatures,
pub file_size: i64,
}
/// Stores runtime features that come from *owlyshield_predict* (and not the minifilter).
///
/// - exepath: The path of the gid root process
/// - exe_exists: Did the root exe file still existed (at the moment of this specific *DriverMessage* operation)?
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RuntimeFeatures {
pub exepath: PathBuf,
pub exe_still_exists: bool,
}
/// The C object returned by the minifilter, available through [ReplyIrp].
/// It is low level and use C pointers logic which is
/// not always compatible with RUST (in particular the lifetime of *next). That's why we convert
/// it asap to a plain Rust [IOMessage] object.
/// ```next``` is null (0x0) when there is no [IOMessage] remaining
#[derive(Debug, Copy, Clone)]
#[repr(C)]
pub struct CDriverMsg {
pub extension: [wchar_t; 12],
pub file_id: FILE_ID_INFO,
pub mem_sized_used: c_ulonglong,
pub entropy: f64,
pub pid: c_ulong,
pub irp_op: c_uchar,
pub is_entropy_calc: u8,
pub file_change: c_uchar,
pub file_location_info: c_uchar,
pub filepath: UnicodeString,
pub gid: c_ulonglong,
/// null (0x0) when there is no [IOMessage] remaining
pub next: *const CDriverMsg,
}
/// To iterate easily over a collection of [IOMessage] received from the minifilter, before they
/// are converted to [IOMessage]
pub struct CDriverMsgs<'a> {
drivermsgs: Vec<&'a CDriverMsg>,
index: usize,
}
impl UnicodeString {
/// Get the file path from the UnicodeString path and the extension returned by the driver.
pub fn to_string_ext(&self, extension: [wchar_t; 12]) -> String {
unsafe {
let str_slice = std::slice::from_raw_parts(self.buffer, self.length as usize);
let mut first_zero_index = 0;
let mut last_dot_index = 0;
let mut first_zero_index_ext = 0;
// Filepath
for (i, c) in str_slice.iter().enumerate() {
if *c == 46 {
last_dot_index = i + 1;
}
if *c == 0 {
first_zero_index = i;
break;
}
}
if first_zero_index_ext > 0 && last_dot_index > 0 {
// Extension
for (i, c) in extension.iter().enumerate() {
if *c == 0 {
first_zero_index_ext = i;
break;
} else {
if *c != str_slice[last_dot_index + i] {
first_zero_index_ext = 0;
break;
}
}
}
String::from_utf16_lossy(
&[
&str_slice[..last_dot_index],
&extension[..first_zero_index_ext],
]
.concat(),
)
} else {
String::from_utf16_lossy(&str_slice[..first_zero_index])
}
}
}
}
impl ReplyIrp {
/// Iterate through ```self.data``` and returns the collection of [CDriverMsg]
fn unpack_drivermsg(&self) -> Vec<&CDriverMsg> {
let mut res = vec![];
unsafe {
let mut msg = &*self.data;
res.push(msg);
for _ in 0..(self.num_ops) {
if msg.next.is_null() {
break;
}
msg = &*msg.next;
res.push(msg);
}
}
res
}
}
impl IOMessage {
pub fn from(c_drivermsg: &CDriverMsg) -> IOMessage {
IOMessage {
extension: c_drivermsg.extension,
file_id_vsn: c_drivermsg.file_id.VolumeSerialNumber,
file_id_id: c_drivermsg.file_id.FileId.Identifier,
mem_sized_used: c_drivermsg.mem_sized_used,
entropy: c_drivermsg.entropy,
pid: c_drivermsg.pid,
irp_op: c_drivermsg.irp_op,
is_entropy_calc: c_drivermsg.is_entropy_calc,
file_change: c_drivermsg.file_change,
file_location_info: c_drivermsg.file_location_info,
filepathstr: c_drivermsg.filepath.to_string_ext(c_drivermsg.extension),
gid: c_drivermsg.gid,
runtime_features: RuntimeFeatures::new(),
file_size: match PathBuf::from(
&c_drivermsg.filepath.to_string_ext(c_drivermsg.extension),
)
.metadata()
{
Ok(f) => f.len() as i64,
Err(_) => -1,
},
}
}
}
impl RuntimeFeatures {
pub fn new() -> RuntimeFeatures {
RuntimeFeatures {
exepath: PathBuf::new(),
exe_still_exists: true,
}
}
}
impl CDriverMsgs<'_> {
pub fn new(irp: &ReplyIrp) -> CDriverMsgs {
CDriverMsgs {
drivermsgs: irp.unpack_drivermsg(),
index: 0,
}
}
}
impl Iterator for CDriverMsgs<'_> {
type Item = CDriverMsg;
fn next(&mut self) -> Option<Self::Item> {
if self.index == self.drivermsgs.len() {
None
} else {
let res = *self.drivermsgs[self.index];
self.index += 1;
Some(res)
}
}
}
}