iOS Hook第三方静态库实践(1)

在一次接入某个必须的第三方静态库,此库提供蓝牙连接某硬件和加密交互的功能,发现了一些逻辑问题,在连接的方法- (BOOL) ConnectDevice: (NSString *)DevName Timeout:(uint8_t) byTimeOut;只有设备名和超时时间两个参数。

如果附近有多个这种设备,我将无法连接具体某一个设备(例如信号最强的设备、某个特定序列号的设备等),而只能按照它内部的逻辑,不受控制的连接了。例如连接到了隔壁房间的设备,就很影响心情了。

此库公开的头文件

因为必须用它的连接方法才能正常使用,但又不好用。于是我想看看这个连接相关逻辑有没有hook的可能,改成可以连接指定的CBPeripheral对象。

那么开始做恶吧!

1. 新建简单项目,引入第三方库,打包获取二进制文件

为了更方便的分析过程,项目中最好只放入要分析的这个库,到后面就不会眼花。
为什么不直接使用这个库里面的二进制文件呢?
因为这样的话,下一步会发现有好多个.o文件,根本不知道应该看哪一个,而且每次都选择一个.o文件来打开会麻烦。

使用ipa文件里的二进制文件
2. 使用Hopper Disassembler分析

打开Hopper Disassembler(试用版或其他版本)

打开刚才的二进制文件

如果打开的是framework中的二进制文件,将会看见很多个.o文件要选择。

直接使用framework中的二进制文件会遇到麻烦

于是使用ipa文件里的二进制文件,点击下一步就好了,然后就会看见如下界面。尽可能等上方的进度条不再变化时才继续操作,否则有crash的可能。

某界面
直接找到连接相关方法

默认是显示成汇编代码,一般人都看不懂啊(我就是那种一般人)。那么点击上方的if(b)f(x):按钮可以查看比较直观的代码,但仍然比较奇怪,各种rxx变量、0xx地址等,不过已经能大致看懂了。

如图所示,它里面使用了一个BleManager的类的connectBtDevice:timeOut:去做这个具体的连接操作,其中r22arg2(也就是最开始的NSString *DevName)。那么直接进到BleManagerconnectBtDevice:timeOut:里面看看到底干了什么。

BleManager的connectBtDevice:timeOut:

大致可以看出,它内部用了一个CBCentralManager又做了一次搜索设备的过程,然后去连接,代理就是这个BleManager对象。(居然还用了一个runloop去卡线程控制超时!!!)

那么我们看看它怎么实现这个CBCentralManagerDelegate

先看看最重要的 centralManager:didDiscoverPeripheral:advertisementData:RSSI:,一般在这个方法中能获取搜索到的peripheral,再决定是否连接它。

BleManager 的centralManager:didDiscoverPeripheral:advertisementData:RSSI:

它在centralManager:didDiscoverPeripheral:advertisementData:RSSI:代理回调中,判断peripheral的名字是否正确,正确则连接。

那么大致弄明白了,修改BleManagerconnectBtDevice:timeOut:centralManager:didDiscoverPeripheral:advertisementData:RSSI:便可以实现自定义连接。而且connectBtDevice:timeOut:可传入id类型(即指定的peripheral)。

3. 新建Category,入侵原有方法

Objective-Chook一般是通过方法交换实现的。那么先实现通用的方法交换。

例如从网上摘抄的代码:

#import <objc/runtime.h>

@interface NSObject (SwizzlingMethod)

+ (void)swizzleSelector:(SEL)originalSelector withSelector:(SEL)swizzledSelector;

@end

@implementation NSObject (SwizzlingMethod)

+ (void)swizzleSelector:(SEL)originalSelector withSelector:(SEL)swizzledSelector {
    
    Class class = [self class];
    
    Method originalMethod = class_getInstanceMethod(class, originalSelector);
    Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
    // 注意class_getInstanceMethod和class_getClassMethod的区别
    
    BOOL didAddMethod = class_addMethod(class,
                                        originalSelector,
                                        method_getImplementation(swizzledMethod),
                                        method_getTypeEncoding(swizzledMethod));
    
    if (didAddMethod) {
        class_replaceMethod(class,
                            swizzledSelector,
                            method_getImplementation(originalMethod),
                            method_getTypeEncoding(originalMethod));
    } else {
        method_exchangeImplementations(originalMethod, swizzledMethod);
    }
}

@end

因为要修改BleManagerconnectBtDevice:timeOut:centralManager:didDiscoverPeripheral:advertisementData:RSSI:,所以创建一个BleManager的分类,我想要实现连接信号最强的那一个(如果有多个这样的设备),那么新增几个变量如下。

static NSInteger _strongestRSSI;
static CBPeripheral *_nearestPeripheral;
static __weak CBCentralManager *_btIdRealCentralManager; 
// 此Manager和Peripheral可在centralManager:didDiscoverPeripheral:advertisementData:RSSI:方法回调中直接获得

因为编译器不知道有BleManager这个类,所以先声明。
那么整个BleManager的分类看起来大致就是这样:

#import <Foundation/Foundation.h>
#import <CoreBluetooth/CoreBluetooth.h>

static NSInteger _strongestRSSI;
static CBPeripheral *_nearestPeripheral;
static __weak CBCentralManager *_btIdRealCentralManager;

@interface BleManager : NSObject

@end

@implementation BleManager(ConnectBetter)

+ (void)load {
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        // 重写新的方法来交换BleManager的connectBtDevice:timeOut:和centralManager:didDiscoverPeripheral:advertisementData:RSSI:
        [self swizzleSelector:NSSelectorFromString(@"connectBtDevice:timeOut:") withSelector:@selector(myConnectBtDevice:timeOut:)];
        [self swizzleSelector:@selector(centralManager:didDiscoverPeripheral:advertisementData:RSSI:) withSelector:@selector(myCentralManager:didDiscoverPeripheral:advertisementData:RSSI:)];
    });
}

- (bool)myConnectBtDevice:(id)someDevice timeOut:(uint8_t)arg3 {
    // blablabla
}

- (void)myCentralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI {
    // blablabla
}

@end

myConnectBtDevice:timeOut:myCentralManager:didDiscoverPeripheral:advertisementData:RSSI:的具体实现如下:

- (bool)myConnectBtDevice:(id)someDevice timeOut:(uint8_t)arg3 {
    NSString *deviceName = someDevice;
    BOOL isPeripheral = [someDevice isKindOfClass:[CBPeripheral class]];
    if (isPeripheral) {
        deviceName = [someDevice name];
    }
    _strongestRSSI = -1000;
    _nearestPeripheral = nil;
    __block BOOL missed = NO;
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        if (isPeripheral) {
            _nearestPeripheral = someDevice;
        }
        if (_nearestPeripheral && missed == NO) {
            [_btIdRealCentralManager connectPeripheral:_nearestPeripheral options:nil];
//            _nearestPeripheral = nil;
        }
    });
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)((arg3 - 1) * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        _nearestPeripheral = nil;
        missed = YES;
    });
    return [self myConnectBtDevice:deviceName timeOut:arg3];
}

- (void)myCentralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI {
    _btIdRealCentralManager = central;
    NSData *facturerData = [advertisementData valueForKey:@"kCBAdvDataManufacturerData"];
    //    NSLog(@"%@", facturerData);
    if (facturerData.length > 6) {
        NSString *facturerStr = [[NSString alloc] initWithData:facturerData encoding:NSASCIIStringEncoding];
        if ([facturerStr hasPrefix:@"我想要的工厂信息"]) {
            NSLog(@"facture:%@, RSSI:%@", facturerStr, RSSI);
            NSInteger rssiValue = RSSI.integerValue;
            if (rssiValue > _strongestRSSI) {
                _strongestRSSI = rssiValue;
                _nearestPeripheral = peripheral;
                NSLog(@"check nearest:%@, RSSI:%@", facturerStr, RSSI);
            }
        }
    }
}
4. 最后的最后

请仔细测试多几次!确保不会crash!!确保功能符合预期!!!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,271评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,275评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,151评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,550评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,553评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,559评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,924评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,580评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,826评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,578评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,661评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,363评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,940评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,926评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,156评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,872评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,391评论 2 342