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
/*
* Copyright © 2020-2021 Keegan Saunders
*
* Licence: wxWindows Library Licence, Version 3.1
*/
//! Code tracing engine.
//!
//! More details about the Frida Stalker can be found on the [Stalker page](https://frida.re/docs/stalker/)
//! of the Frida documentation.
//!
//! The Rust interface to the Stalker provides a best-effort "safe" interface,
//! but naturally runtime code modification takes great caution and
//! these bindings cannot prevent all types of misbehaviour resulting in misuse
//! of the Stalker interface.
//!
//! # Examples
//! To trace the current thread with the Stalker, create a new [`Stalker`] and [`Transformer`] and call
//! [`Stalker::follow_me()`]:
//! ```
//! # use frida_gum::Gum;
//! # use frida_gum::stalker::{Stalker, Transformer};
//! #[cfg(feature = "event-sink")]
//! use frida_gum::stalker::NoneEventSink;
//! let gum = unsafe { Gum::obtain() };
//! let mut stalker = Stalker::new(&gum);
//!
//! let transformer = Transformer::from_callback(&gum, |basic_block, _output| {
//! for instr in basic_block {
//! instr.keep();
//! }
//! });
//!
//! #[cfg(feature = "event-sink")]
//! stalker.follow_me::<NoneEventSink>(&transformer, None);
//!
//! #[cfg(not(feature = "event-sink"))]
//! stalker.follow_me(&transformer);
//!
//! stalker.unfollow_me();
//! ```
use {
crate::{Gum, MemoryRange, NativePointer},
core::{ffi::c_void, marker::PhantomData},
frida_gum_sys as gum_sys,
};
#[cfg(feature = "event-sink")]
mod event_sink;
#[cfg(feature = "event-sink")]
pub use event_sink::*;
mod transformer;
pub use transformer::*;
#[cfg(feature = "event-sink")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "event-sink")))]
pub struct NoneEventSink;
#[cfg(feature = "event-sink")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "event-sink")))]
impl EventSink for NoneEventSink {
fn query_mask(&mut self) -> EventMask {
unreachable!()
}
fn start(&mut self) {
unreachable!()
}
fn process(&mut self, _event: &Event) {
unreachable!()
}
fn flush(&mut self) {
unreachable!()
}
fn stop(&mut self) {
unreachable!()
}
}
#[cfg(feature = "stalker-observer")]
mod observer;
#[cfg(feature = "stalker-observer")]
pub use observer::*;
/// Code tracing engine interface.
pub struct Stalker<'a> {
stalker: *mut frida_gum_sys::GumStalker,
phantom: PhantomData<&'a frida_gum_sys::GumStalker>,
}
impl<'a> Stalker<'a> {
/// Checks if the Stalker is supported on the current platform.
pub fn is_supported(_gum: &Gum) -> bool {
unsafe { frida_gum_sys::gum_stalker_is_supported() != 0 }
}
/// Create a new Stalker.
///
/// This call has the overhead of checking if the Stalker is
/// available on the current platform, as creating a Stalker on an
/// unsupported platform results in unwanted behaviour.
pub fn new<'b>(gum: &'b Gum) -> Stalker
where
'b: 'a,
{
assert!(Self::is_supported(gum));
Stalker {
stalker: unsafe { frida_gum_sys::gum_stalker_new() },
phantom: PhantomData,
}
}
/// Create a new Stalker with parameters
///
/// This call has the overhead of checking if the Stalker is
/// available on the current platform, as creating a Stalker on an
/// unsupported platform results in unwanted behaviour.
#[cfg(all(target_arch = "aarch64", feature = "stalker-params"))]
pub fn new_with_params<'b>(gum: &'b Gum, ic_entries: u32) -> Stalker
where
'b: 'a,
{
assert!(Self::is_supported(gum));
Stalker {
stalker: unsafe { frida_gum_sys::gum_stalker_new_with_params(ic_entries) },
phantom: PhantomData,
}
}
/// Create a new Stalker with parameters
///
/// This call has the overhead of checking if the Stalker is
/// available on the current platform, as creating a Stalker on an
/// unsupported platform results in unwanted behaviour.
#[cfg(all(target_arch = "x86_64", feature = "stalker-params"))]
pub fn new_with_params<'b>(gum: &'b Gum, ic_entries: u32, adjacent_blocks: u32) -> Stalker
where
'b: 'a,
{
assert!(Self::is_supported(gum));
Stalker {
stalker: unsafe {
frida_gum_sys::gum_stalker_new_with_params(ic_entries, adjacent_blocks)
},
phantom: PhantomData,
}
}
/// Exclude a range of address from the Stalker engine.
///
/// This exclusion will prevent the Stalker from tracing into the memory range,
/// reducing instrumentation overhead as well as potential noise from the [`EventSink`].
pub fn exclude(&mut self, range: &MemoryRange) {
unsafe { gum_sys::gum_stalker_exclude(self.stalker, &range.memory_range as *const _) };
}
/// Set how many times a piece of code needs to be executed before it is assumed it can be
/// trusted to not mutate.
///
/// Specify -1 for no trust (slow), 0 to trust code from the get-go,
/// and N to trust code after it has been executed N times. Defaults to 1.
pub fn set_trust_threshold(&mut self, threshold: i32) {
unsafe { gum_sys::gum_stalker_set_trust_threshold(self.stalker, threshold) };
}
/// Get the Stalker trust treshold, see [`Stalker::set_trust_threshold()`] for more details.
pub fn get_trust_threshold(&self) -> i32 {
unsafe { gum_sys::gum_stalker_get_trust_threshold(self.stalker) }
}
/// Flush all buffered events.
pub fn flush(&mut self) {
unsafe { gum_sys::gum_stalker_flush(self.stalker) }
}
pub fn stop(&mut self) {
unsafe { gum_sys::gum_stalker_stop(self.stalker) }
}
/// Free accumulated memory at a safe point after [`Stalker::unfollow_me()`].
///
/// This is needed to avoid race-conditions where the thread just unfollowed is executing its last instructions.
pub fn garbage_collect(&mut self) -> bool {
unsafe { gum_sys::gum_stalker_garbage_collect(self.stalker) != 0 }
}
/// Begin the Stalker on the specific thread.
///
/// A [`Transformer`] must be specified, and will be updated with all events.
///
/// If reusing an existing [`Transformer`], make sure to call [`Stalker::garbage_collect()`]
/// periodically.
#[cfg(feature = "event-sink")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "event-sink")))]
pub fn follow<S: EventSink>(
&mut self,
thread_id: usize,
transformer: &Transformer,
event_sink: Option<&mut S>,
) {
use frida_gum_sys::GumThreadId;
let sink = if let Some(sink) = event_sink {
event_sink_transform(sink)
} else {
core::ptr::null_mut()
};
unsafe {
gum_sys::gum_stalker_follow(
self.stalker,
thread_id as GumThreadId,
transformer.transformer,
sink,
)
};
}
/// Begin the Stalker on the current thread.
///
/// A [`Transformer`] must be specified, and will be updated with all events.
///
/// If reusing an existing [`Transformer`], make sure to call [`Stalker::garbage_collect()`]
/// periodically.
#[cfg(feature = "event-sink")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "event-sink")))]
pub fn follow_me<S: EventSink>(
&mut self,
transformer: &Transformer,
event_sink: Option<&mut S>,
) {
let sink = if let Some(sink) = event_sink {
event_sink_transform(sink)
} else {
core::ptr::null_mut()
};
unsafe { gum_sys::gum_stalker_follow_me(self.stalker, transformer.transformer, sink) };
}
/// Begin the Stalker on the current thread.
///
/// A [`Transformer`] must be specified, and will be updated with all events.
///
/// If reusing an existing [`Transformer`], make sure to call [`Stalker::garbage_collect()`]
/// periodically.
#[cfg(not(feature = "event-sink"))]
#[cfg_attr(doc_cfg, doc(cfg(not(feature = "event-sink"))))]
pub fn follow_me(&mut self, transformer: &Transformer) {
unsafe {
gum_sys::gum_stalker_follow_me(
self.stalker,
transformer.transformer,
core::ptr::null_mut(),
)
};
}
/// Stop stalking the specific thread.
pub fn unfollow(&mut self, thread_id: usize) {
use frida_gum_sys::GumThreadId;
unsafe { gum_sys::gum_stalker_unfollow(self.stalker, thread_id as GumThreadId) };
}
/// Stop stalking the current thread.
pub fn unfollow_me(&mut self) {
unsafe { gum_sys::gum_stalker_unfollow_me(self.stalker) };
}
/// Check if the Stalker is running on the current thread.
pub fn is_following_me(&mut self) -> bool {
unsafe { gum_sys::gum_stalker_is_following_me(self.stalker) != 0 }
}
/// Re-activate the Stalker at the specified start point.
pub fn activate(&mut self, start: NativePointer) {
unsafe { gum_sys::gum_stalker_activate(self.stalker, start.0) }
}
/// Pause the Stalker.
pub fn deactivate(&mut self) {
unsafe { gum_sys::gum_stalker_deactivate(self.stalker) }
}
/// Enable (experimental) unwind hooking
pub fn enable_unwind_hooking(&mut self) {
unsafe { gum_sys::gum_stalker_activate_experimental_unwind_support() }
}
#[cfg(feature = "stalker-observer")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "stalker-observer")))]
pub fn set_observer<O: StalkerObserver>(&mut self, observer: &mut O) {
let obs = stalker_observer_transform(observer);
unsafe {
gum_sys::gum_stalker_set_observer(self.stalker, obs);
}
}
}
impl<'a> Drop for Stalker<'a> {
fn drop(&mut self) {
unsafe { gum_sys::g_object_unref(self.stalker as *mut c_void) };
}
}