Cydia Substrate

From iPhone Development Wiki
Revision as of 20:53, 10 October 2009 by KennyTM~ (talk | contribs) (Created page with 'MobileSubstrate is a framework that allows 3rd-party developers to provide run-time patches (“MobileSubstrate extensions”) to system functions, similar to [http://www.uns…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

MobileSubstrate is a framework that allows 3rd-party developers to provide run-time patches (“MobileSubstrate extensions”) to system functions, similar to Application Enhancer on the OS X.

MobileSubstrate consists of 3 major components: MobileHooker, MobileLoader and safe mode.

MobileHooker

MobileHooker is used to replace system functions. This process is known as hooking. There are 2 APIs that one would use:

IMP MSHookMessage(Class class, SEL selector, IMP replacement, const char* prefix); // prefix should be NULL.
void MSHookFunction(void* function, void* replacement, void** p_original);

MSHookMessage() will replace the implementation of the Objective-C message -[class selector] by replacement, and return the original implementation. This dynamic replacement is in fact a feature of Objective-C, and can be done using method_setImplementation.

MSHookFunction() is like MSHookMessage() but is for C/C++ functions. The replacement must be done at assembly level. Conceptually, MSHookFunction() will write instructions that jumps to the replacement function, and allocate some bytes on a custom memory location, which has the original cut-out instructions and a jump to the rest of the hooked function. Since on the iPhoneOS by default a memory page cannot be simultaneously writable and executable, a kernel patch must be applied for MSHookFunction() to work.

Example code

Using MSHookFunction:

static void (*original_CFShow)(CFTypeRef obj);  // a function pointer to store the original CFShow().
void replaced_CFShow(CFTypeRef obj) {           // our replacement of CFShow().
  printf("Calling original CFShow(%p)...", obj);
  original_CFShow(obj);                         // calls the original CFShow.
  printf(" done.\n");
}
...
// hook CFShow to our own implementation.
MSHookFunction(CFShow, replaced_CFShow, &original_CFShow);
// From now on any call to CFShow will pass through replaced_CFShow first.
...
CFShow(CFSTR("test"));

Using MSHookMessage:

static IMP original_UIView_setFrame_;
void replaced_UIView_setFrame_(UIView* self, SEL _cmd, CGRect frame) {  // Note the implicit self and _cmd parameters are needed explicitly here.
  CGRect originalFrame = self.frame;
  NSLog("Changing frame of %p from %@ to %@", self, NSStringFromCGRect(originalFrame), NSStringFromCGRect(frame));
  original_UIView_setFrame_(self, _cmd, frame);    // Remember to pass self and _cmd.
}
...
// Note that the parameter order is different from MSHookFunction().
original_UIView_setFrame_ = MSHookMessage([UIView class], @selector(setFrame:), replaced_UIView_setFrame_, NULL);
...
myView.frame = CGRectMake(0, 0, 100, 100);

Note that if you are hooking a class method, you should put a meta-class in the class argument, e.g.

original_UIView_commitAnimations = MSHookMessage(objc_getMetaClass("UIView"), @selector(commitAnimations), replaced_UIView_commitAnimations, NULL);

MobileLoader

MobileLoader loads 3rd-party patching code into the running application.

MobileLoader will first load itself into the run application using DYLD_INSERT_LIBRARIES environment variable. Then it looks for all dynamic libraries in the directory /Library/MobileSubstrate/DynamicLibraries/, and dlopen them. An extension should use constructor code to perform any works, e.g.

...
// The attribute forces this function to be called on load.
__attribute__((constructor))
static void initialize() {
  NSLog(@"MyExt: Loaded");
  MSHookFunction(CFShow, replaced_CFShow, &original_CFShow);
}

Developers may add filters to restrict whether the extension should be loaded or not. Filters are implemented as plist that lives beside the dylib. If the dylib is named foo.dylib, then the filter should be named foo.plist. The filter should be a dictionary with key Filter, which is another dictionaries that can contain these keys:

  • CoreFoundationVersion (array): The extension is loaded only if the version of CoreFoundation.framework is above the specified values. Currently, only the first 2 values are checked.
Firmware 2.0 2.1 2.2 3.0 3.1
CF version 478.23 478.26 478.29 478.47 478.52
  • Bundles (array): The extension is loaded only if the bundle-ID of the running application matches the list.
  • Classes (array): The extension is loaded only if the one of the specified objective-C classes is implemented in the application.

For example, to restrict the extension only load in SpringBoard.app, the plist would look like

Filter = {
  Bundles = (com.apple.springboard);
};

In addition, MobileLoader also hooks nlist() to improve its performance, and defines several signal handlers for safe mode.

For setuid apps, since all inserted environment variables are ignored, the developer of the App must explicitly dlopen("/Library/MobileSubstrate/MobileSubstrate.dylib") to let MobileLoader run.

Safe mode

When a extension crashed the SpringBoard, MobileLoader will catch that and put the device into safe mode. In safe mode all 3rd-party extensions will be disabled.

The following signals will invoke safe mode:

  • SIGTRAP
  • SIGABRT
  • SIGILL
  • SIGBUS
  • SIGSEGV
  • SIGSYS