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
use std::sync::OnceLock;

use detour::RawDetour;

/// A function hook that works across most platforms
#[derive(Debug)]
pub struct Hook {
    detour: OnceLock<RawDetour>,
}

impl Hook {
    /// Creates a new, unitialized hook
    pub const fn new() -> Self {
        Self {
            detour: OnceLock::new(),
        }
    }

    /// Installes the hook by redirecting `target` to `hook`, returning true on
    /// success
    ///
    /// # Safety
    /// `target` and `hook` must have the same signature and calling convention
    pub unsafe fn install(&self, target: *const (), hook: *const ()) -> bool {
        match RawDetour::new(target, hook) {
            Ok(detour) if detour.enable().is_ok() => {
                self.detour.set(detour).ok();
                true
            }
            _ => false,
        }
    }

    /// Whether the hook is installed
    pub fn is_installed(&self) -> bool {
        self.detour.get().is_some()
    }

    /// Returns the address of a trampoline function to the original target, if
    /// installed
    pub fn original(&self) -> Option<*const ()> {
        self.detour.get().map(|d| d.trampoline() as *const ())
    }
}