欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS中实现检测Zoombie对象的具体方法

程序员文章站 2023-12-16 15:22:28
前言 我们大家都知道,如果在xcode中开启了zoombie objects。如图。 那么在一个对象释放后,再次给该对象发送消息,在xcode控制台中,可看到如下打...

前言

我们大家都知道,如果在xcode中开启了zoombie objects。如图。

iOS中实现检测Zoombie对象的具体方法

那么在一个对象释放后,再次给该对象发送消息,在xcode控制台中,可看到如下打印信息。这些信息可以帮助我们定位问题。

zoombiedemo[12275:2841478] *** -[test test]: message sent to deallocated instance 0x60800000b000

那么究竟xcode是如何实现僵尸对象的检查的,我们将来一一揭晓。

实现原理

在《effective objective-c 》一书中有提到过僵尸指针的实现方式。

通过hook nsobject的dealloc的方法,在一个对象要释放的时候,通过objcduplicateclass复制nszombie类,生成nszombieoriginaclass,并且将当前对象的isa指向新生成的类。这块内存不会释放。

因为在给该对象发消息时,nszombieoriginaclass并未实现原有类的方法,所以会走完整的消息转发。所以我们能取出具体的originaclass(去掉ns_zombie),当前sel,打印出来。

[class seletor]:message sent to deallocated instance 0x22909"

简单来说,就是将对象指向一个新的类,因为新类里面并没有原有类方法的实现,所以必定会走到消息转发中。

以上说的是动态生成新的类,类名是通过固定前缀拼接而成,将isa指向该类。其实还有一种方式,就是指向固定的类,原有类名通过关联对象的方式来存储。

既然知道了原理,可以动手实现一下。

动手实现

首先是hook dealloc方法。在nsobject+hookdealloc中实现。

+ (void)load {
 static dispatch_once_t oncetoken;
 dispatch_once(&oncetoken, ^{
  class class = [self class];
  sel originalselector = nsselectorfromstring(@"dealloc");
  sel swizzledselector = @selector(swizzleddealloc);
  method originalmethod = class_getinstancemethod(class, originalselector);
  method swizzledmethod = class_getinstancemethod(class, swizzledselector);  
  bool success = class_addmethod(class, originalselector, method_getimplementation(swizzledmethod), method_gettypeencoding(swizzledmethod));
  if (success) {
   class_replacemethod(class, swizzledselector, method_getimplementation(originalmethod), method_gettypeencoding(originalmethod));
  } else {
   method_exchangeimplementations(originalmethod, swizzledmethod);
  }
 });
}

动态生成新的类

在swizzleddealloc中,我们通过"zoombie_"拼接原始类名,得到一个新的类名。然后生成该类,添加 forwardingtargetforselector的实现。便于在消息转发的时候得到调用信息。

nsstring *zoombie_class_prefix = @"zoombie_";
// 指向动态生成的类,用zoombie拼接原有类名
nsstring *classname = nsstringfromclass([self class]);
nsstring *zombieclassname = [zoombie_class_prefix stringbyappendingstring: classname]; 
class zombieclass = nsclassfromstring(zombieclassname);
if(zombieclass) return; 
zombieclass = objc_allocateclasspair([nsobject class], [zombieclassname utf8string], 0); 
objc_registerclasspair(zombieclass);
class_addmethod([zombieclass class], @selector(forwardingtargetforselector:), (imp)forwardingtargetforselector, "@@:@");
object_setclass(self, zombieclass);

forwardingtargetforselector的方法实现,原始类名,去掉前缀即可得到。因为这里已经是调用到已释放对象的方法,我们直接abort掉,程序将崩溃。

id forwardingtargetforselector(id self, sel _cmd, sel aselector) {
 nsstring *classname = nsstringfromclass([self class]);
 nsstring *realclass = [classname stringbyreplacingoccurrencesofstring:zoombie_class_prefix withstring:@""];
 nslog(@"[%@ %@] message sent to deallocated instance %@", realclass, nsstringfromselector(aselector), self);
 abort();
}

指向固定类

指向已有的zoombieobject类,类名存在关联对象中。

 // 指向固定的类,原有类名存储在关联对象中
nsstring *originclassname = nsstringfromclass([self class]);
objc_setassociatedobject(self, "origclassnamekey", originclassname, objc_association_copy_nonatomic);
object_setclass(self, [zoombieobject class]);

同上,在zoombieobject中实现forwardingtargetforselector方法,可以得到调用信息。原始类名通过关联对象获取。

- (id)forwardingtargetforselector:(sel)aselector {
 nslog(@"[%@ %@] message sent to deallocated instance %@", objc_getassociatedobject(self, "origclassnamekey"), nsstringfromselector(aselector), self);
 abort();
}

forwardingtargetforselector是消息转发的第二步,我们也可以不在这里处理,等到最后一步forwardinvocation,不过要生成方法签名,要略微复杂些。

要想走到forwardinvocation,methodsignatureforselector返回不能是空。这里我们返回了stubproxy类中stub的方法签名(已经定义好的类和方法),最后就回走到forwardinvocation,通过invocation.selector可得到当前调用方法名。通过关联对象获取到原始类名。

- (nsmethodsignature *)methodsignatureforselector:(sel)aselector {
 nsmethodsignature *sig = [super methodsignatureforselector:aselector];
 if (!sig) {
  sig = [stubproxy instancemethodsignatureforselector:@selector(stub)];
 } 
 return sig;
}
- (void)forwardinvocation:(nsinvocation *)aninvocation {
 nslog(@"[%@ %@] message sent to deallocated instance %@", objc_getassociatedobject(self, "origclassnamekey"), nsstringfromselector(aninvocation.selector), self);
}

这样,一个简单的检测僵尸指针的方案就实现了。

demo在此。

两种方式都实现了,可通过调整nsobject+hookdealloc中,swizzledselector的值来切换。my_dealloc是指向动态类,swizzleddealloc是指向固定类。

sel swizzledselector = @selector(my_dealloc);

在app运行起来后,点击button,即可触发。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。

上一篇:

下一篇: