ios监控

一.日志监控

I.自己写API调用

II.定义宏替换

 #define NSLog(frmt,...) LogAPI(frmt,##__VA_ARGS__)
 (##__VA_ARGS__可变参数宏,##去掉只有一个参数时的,号)

III.使用官方提供的框架

ASL apple system log (已弃用)ios(8.0,10.0)
NSLog:
Logs an error message to the Apple System Log facility.

IIII.fishhook

fishhook可以将我们Mach-O的库的符号表重新绑定
hook掉NSLog函数,这边采用这种方式

static void (* orig_nslog)(NSString *format, ...);
void redirect_nslog(NSString *format, ...) {
    // 可以在这里先进行自己的处理
    // 继续执行原 NSLog
    orig_nslog(@"%@",[format stringByAppendingString:@"被HOOK了"]);
    va_list va;
    va_start(va, format);
    NSLogv(format, va);
    va_end(va);
}
- (void)openLogRecord
{
    struct rebinding nsLog;
    nsLog.name = "NSLog";
    nsLog.replacement = redirect_nslog;
    nsLog.replaced = (void *)&orig_nslog;
    struct rebinding rebinds[1] = {nsLog};
    rebind_symbols(rebinds, 1);
}

二.网络监控

I.NSURLProtocol

@class NSURLProtocol
@abstract NSURLProtocol is an abstract class which provides the
basic structure for performing protocol-specific loading of URL
data. Concrete subclasses handle the specifics associated with one
or more protocols or URL schemes.

抽象类,需要实现一个子类

+ (BOOL)canInitWithRequest:(NSURLRequest *)request
{
    if ([NSURLProtocol propertyForKey:request.URL.absoluteString.md5String inRequest:request]) {
        return NO;
    }
    
    NSString *url = request.URL.absoluteString;
    
    // 如果url以https开头,则进行拦截处理,否则不处理
    if ([url hasPrefix:@"https"] ||[url hasPrefix:@"http"]) {
        return YES;
    }
    return NO;

}


/**
 * 如果需要对请求进行重定向,添加指定头部等操作,可以在该方法中进行
 */
+ (NSURLRequest *)canonicalRequestForRequest:(NSURLRequest *)request {
    NSMutableURLRequest *req = [request mutableCopy];
    [NSURLProtocol setProperty:@(YES) forKey:request.URL.absoluteString.md5String inRequest:req];
    return req;
}

II.WKURLSchemeHandler

调用wkwebview的方法setURLSchemeHandler:forURLScheme:

    WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc] init];
    if (@available(iOS 11.0, *)) {
        URLSchemeHandler *handler = [URLSchemeHandler new];
        [configuration setURLSchemeHandler:handler forURLScheme:@"https"];
        [configuration setURLSchemeHandler:handler forURLScheme:@"http"];
    } else {
        // Fallback on earlier versions
    }

声明http,https需要拦截
直接拦截会导致崩溃,需要方法交换一下

+ (void)load {
  static dispatch_once_t onceToken;
  dispatch_once(&onceToken, ^{
    Method handlesURLScheme = class_getClassMethod(self, @selector(handlesURLScheme:));
    Method ssshandlesURLScheme = class_getClassMethod(self, @selector(ssshandlesURLScheme:));
    method_exchangeImplementations(handlesURLScheme, sshandlesURLScheme);
  });
}

+ (BOOL)ssshandlesURLScheme:(NSString *)urlScheme {
    if(DailyRecordManager.shared.type&DailyRecordAll ||
       DailyRecordManager.shared.type&DailyRecordRequest
       ){
        //返回NO,否则可能会中断言, 'http' is a URL scheme that WKWebView handles natively
      if ([urlScheme isEqualToString:@"http"] || [urlScheme isEqualToString:@"https"]) {
        return NO;
      } else {
        return [self ssshandlesURLScheme:urlScheme];
      }
    }else{
        return [self ssshandlesURLScheme:urlScheme];
    }

}

//对于NSURLSession发起的网络请求,我们发现通过shared得到的session发起的网络请求都能够监听到,但是通过方法sessionWithConfiguration:delegate:delegateQueue:得到的session,我们是不能监听到的,原因就出在NSURLSessionConfiguration上,我们进到NSURLSessionConfiguration里面看一下,他有一个属性 @property(nullable, copy)NSArray<Class>*protocolClasses;复制代码
//我们能够看出,这是一个NSURLProtocol数组,上面我们提到了,我们监控网络是通过注册NSURLProtocol来进行网络监控的,但是通过sessionWithConfiguration:delegate:delegateQueue:得到的session,他的configuration中已经有一个NSURLProtocol,所以他不会走我们的protocol来,怎么解决这个问题呢? 其实很简单,我们将NSURLSessionConfiguration的属性protocolClasses的get方法hook掉,通过返回我们自己的protocol,这样,我们就能够监控到通过sessionWithConfiguration:delegate:delegateQueue:得到的session的网络请求
//https://juejin.cn/post/6844903473671077895

因为第三方sdk有可能对wkwebview有封装
所以直接hook掉wkwebview的configuration

+ (void)load {
  static dispatch_once_t onceToken;
  dispatch_once(&onceToken, ^{
      Method setConfiguration = class_getInstanceMethod(self, @selector(configuration));
    Method setSSSConfiguration = class_getInstanceMethod(self, @selector(SSSConfiguration));
    method_exchangeImplementations(setConfiguration, setSSSConfiguration);
      Method con = class_getInstanceMethod(self, @selector(initWithFrame:configuration:));
      Method ssscon = class_getInstanceMethod(self, @selector(sssinitWithFrame:configuration:));
    method_exchangeImplementations(setConfiguration, setSSSConfiguration);
      method_exchangeImplementations(con, ssscon);

  });
}

III.查看NSURLSession的请求连接开始时间结束时间重定向次数等具体信息,iOS10之后可以使用代理方法,iOS10之前可以使用libcurl

-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didFinishCollectingMetrics:(NSURLSessionTaskMetrics *)metrics API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0));
https://www.jianshu.com/p/32935af04593
https://www.jianshu.com/p/f146f8fdadbf

IIII.拦截console.log

使用js注入的方式

        [configuration.userContentController addScriptMessageHandler:self name:@"logger"];//js打印事件
          NSString *printContent = @"console.log = function(message){window.webkit.messageHandlers['logger'].postMessage(message)};";
          WKUserScript *userScript = [[WKUserScript alloc] initWithSource:printContent injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
          [configuration.userContentController addUserScript:userScript];

https://www.jianshu.com/p/840e049741bc

https://juejin.cn/post/6844903552385564679#comment

三.崩溃监控

NSSetUncaughtExceptionHandler();//设置崩溃时走的函数
NSGetUncaughtExceptionHandler();//获取崩溃处理函数

ios崩溃分类:

1.未捕获异常分类
2.底层信号崩溃

未捕获异常处理:

static NSUncaughtExceptionHandler *oldUncaughtExceptionHandler = nil;

void uncaughtExceptionHandler(NSException *exception) {
    //记录日志等操作 旧崩溃函数处理
    // Internal error reporting
}

oldUncaughtExceptionHandler  =  NSGetUncaughtExceptionHandler();
    NSGetUncaughtExceptionHandler(&uncaughtExceptionHandler);//获取崩溃处理函数

底层信号崩溃

void SignalExceptionHandler(int signal){
    NSLog(@"signal: %d", signal);
    [DailyRecordManager.shared logType:(DailyRecordCrash) message:@(signal)];

}

- (void)crashSingleHandler{
    signal(SIGABRT, SignalExceptionHandler);
    signal(SIGILL, SignalExceptionHandler);
    signal(SIGSEGV, SignalExceptionHandler);
    signal(SIGFPE, SignalExceptionHandler);
    signal(SIGBUS, SignalExceptionHandler);

}

[https://blog.csdn.net/u012390519/article/details/51682951]
(https://blog.csdn.net/u012390519/article/details/51682951)
https://segmentfault.com/a/1190000039111381

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

推荐阅读更多精彩内容