Soulghost / TrampolineHook

A solution for centralized method redirection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TrampolineHook

A solution for centralized method redirection.

You can read articles about underlying implementation of this project.

  1. 基于桥的全量方法Hook方案 - 探究苹果主线程检查实现
  2. 基于桥的全量方法 Hook 方案(2) - 全新升级
  3. 基于桥的全量方法 Hook 方案(3)- 开源 TrampolineHook

1. Usage

The interface of TrampolineHook is very very simple. Only two steps are required.

  1. Create the global interceptor with your centralized function as follows:
// Suppose you have  function defined as

// C Format
void myInterceptor
{
    // bla bla bla
}

// Create the global inteceptor with your function
THInterceptor *interceptor = [THInterceptor sharedInterceptorWithFunction:(IMP)myInterceptor]
  1. Intercept any function you want no matter what the method signature it is.
// Suppose you want to intercept the call of - [UIView initWithFrame:]
Method m = class_getInstanceMethod([UIView class], @selector(initWithFrame:));
IMP imp = method_getImplementation(m);

// Intercept the imp
THInterceptorResult *result = [interceptor interceptFunction:imp];

// You can check the result.state to find whether the inteception is successfully carried out or not.
result.state == THInterceptStateSuccess

2. How to debug

The debug of interception is not very easy.

Remember always use the result.replacedAddress returned from interceptFunction for breakpoint.

3. Example

There is one typical example associated with this open source project called MainThreadChecker。It is the rewritten version of the implementation in Apple libMainThreadChecker.dylib

It is almost the same as the one of Apple based on my own reverse engineering. No Private APIs used.

The usage of MainThreadChecker is quite easy.

+ (void)load 
{
    [MTInitializer enableMainThreadChecker]
}

4. TODO

  • API Stability.
  • Varadic Argument Interceptor.
  • More examples.
  • Performance Benchmark.

5.Reference

The great works listed below inspired me a lot during the development of TrampolineHook.

6. License

Copyright 2020 @SatanWoo

Checkout License

About

A solution for centralized method redirection


Languages

Language:Objective-C 91.6%Language:Assembly 5.8%Language:C 2.7%