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

use error::*;
use {pic, util, arch, alloc, Detour};

lazy_static! {
    /// Shared allocator for all detours.
    static ref POOL: Mutex<alloc::Allocator> = {
        // Use a range of +/- 2 GB for seeking a memory block
        Mutex::new(alloc::Allocator::new(0x80000000))
    };
}

/// A type-less detour.
///
/// # Example
///
/// ```rust
/// use std::mem;
/// use detour::{Detour, RawDetour};
///
/// fn add5(val: i32) -> i32 { val + 5 }
/// fn add10(val: i32) -> i32 { val + 10 }
///
/// let mut hook = unsafe {
///     RawDetour::new(add5 as *const (), add10 as *const ()).unwrap()
/// };
///
/// assert_eq!(add5(5), 10);
/// assert_eq!(hook.is_enabled(), false);
///
/// unsafe {
///     hook.enable().unwrap();
///     assert!(hook.is_enabled());
///
///     let original: fn(i32) -> i32 = mem::transmute(hook.trampoline());
///
///     assert_eq!(add5(5), 15);
///     assert_eq!(original(5), 10);
///
///     hook.disable().unwrap();
/// }
/// assert_eq!(add5(5), 10);
/// ```
pub struct RawDetour {
    patcher: arch::Patcher,
    trampoline: alloc::Slice,
    #[allow(dead_code)]
    relay: Option<alloc::Slice>,
}

// TODO: stop all threads in target during patch?
impl RawDetour {
    /// Constructs a new inline detour patcher.
    ///
    /// The hook is disabled by default. Even when this function is succesful,
    /// there is no guaranteee that the detour function will actually get called
    /// when the target function gets called. An invocation of the target
    /// function might for example get inlined in which case it is impossible to
    /// hook at runtime.
    pub unsafe fn new(target: *const (), detour: *const ()) -> Result<Self> {
        let mut pool = POOL.lock().unwrap();
        if !util::is_executable_address(target)? || !util::is_executable_address(detour)? {
            bail!(ErrorKind::NotExecutable);
        }

        // Create a trampoline generator for the target function
        let margin = arch::Patcher::prolog_margin(target);
        let trampoline = arch::Trampoline::new(target, margin)?;

        // A relay is used in case a normal branch cannot reach the destination
        let relay = if let Some(emitter) = arch::relay_builder(target, detour)? {
            Some(Self::allocate_code(&mut pool, &emitter, target)?)
        } else {
            None
        };

        // If a relay is supplied, use it instead of the detour address
        let detour = relay.as_ref().map(|code| code.as_ptr() as *const ()).unwrap_or(detour);

        Ok(RawDetour {
            patcher: arch::Patcher::new(target, detour, trampoline.prolog_size())?,
            trampoline: Self::allocate_code(&mut pool, trampoline.emitter(), target)?,
            relay,
        })
    }

    /// Allocates PIC code at the specified address.
    fn allocate_code(pool: &mut alloc::Allocator,
                     emitter: &pic::CodeEmitter,
                     origin: *const ()) -> Result<alloc::Slice> {
        // Allocate memory close to the origin
        let mut memory = pool.allocate(origin, emitter.len())?;

        // Generate code for the obtained address
        let code = emitter.emit(memory.as_ptr() as *const _);
        memory.copy_from_slice(code.as_slice());
        Ok(memory)
    }
}

unsafe impl Detour for RawDetour {
    unsafe fn toggle(&mut self, enabled: bool) -> Result<()> {
        let _guard = POOL.lock().unwrap();
        self.patcher.toggle(enabled)
    }

    fn is_enabled(&self) -> bool {
        self.patcher.is_patched()
    }

    fn trampoline(&self) -> &() {
        unsafe {
            (self.trampoline.as_ptr() as *const ())
                .as_ref()
                .expect("trampoline should not be null")
        }
    }
}

impl Drop for RawDetour {
    /// Disables the detour, if enabled.
    fn drop(&mut self) {
        unsafe { self.disable().unwrap() };
    }
}

impl fmt::Debug for RawDetour {
    /// Output whether the detour is enabled or not.
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "Detour {{ enabled: {}, trampoline: {:?} }}",
               self.is_enabled(), self.trampoline())
    }
}

unsafe impl Send for RawDetour { }
unsafe impl Sync for RawDetour { }