firebase-ios-sdk
firebase-ios-sdk copied to clipboard
When I use NSProxy to hook NSURLSession, I get a crash in +[GULSwizzler ivarObjectsForObject].
+ (NSArray<id> *)ivarObjectsForObject:(id)object {
NSMutableArray *array = [NSMutableArray array];
unsigned int count;
Ivar *vars = class_copyIvarList([object class], &count);
for (NSUInteger i = 0; i < count; i++) {
const char *typeEncoding = ivar_getTypeEncoding(vars[i]);
// Check to see if the ivar is an object.
if (strncmp(typeEncoding, "@", 1) == 0) {
id ivarObject = object_getIvar(object, vars[i]);
[array addObject:ivarObject];
}
}
free(vars);
return array;
}
In my project, object is a real obj for NSURLSession's NSProxy, and class_copyIvarList([object class], &count) is the function that gets the real object (NSURLSession instance). When the code reaches object_getIvar(), an EXC_BAD_ACCESS crash will occur.
thanks.
I found a few problems with this issue:
- I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.
- This issue does not seem to follow the issue template. Make sure you provide all the required information.
Thanks for reporting, @ritchie7. Please fill out the needed information from the template so we could try to reproduce the issue.
Sorry, here is the information I added:
- Xcode version: 13.2.1 (13C100)
- Firebase SDK version: 8.14.0
- Installation method:
CocoaPods - Firebase Component: Analytics, Core, Database, Firestore, Messaging, Storage, Performance, RemoteConfig, FirebaseAnalytics, FirebaseABTesting
- Target platform(s):
iOS

In my project, object is a real obj for NSURLSession's NSProxy, and class_copyIvarList([object class], &count) is the function that gets the real object (NSURLSession instance). When the code reaches object_getIvar(), an EXC_BAD_ACCESS crash will occur.
Here is my code for hooking NSURLSession.
// The implementation of `NSProxy1`/`NSProxy2` and GULProxy is the same.
+ (NSURLSession *)swizzling_sharedSession {
NSURLSession *session = [NSProxy1 proxyWithTarget:[self swizzling_sharedSession]];
return session;
}
+ (NSURLSession *)swizzling_sessionWithConfiguration:(NSURLSessionConfiguration *)configuration
delegate:(id<NSURLSessionDelegate>)delegate
delegateQueue:(NSOperationQueue *)queue {
id delegateProxy = [NSProxy2 proxyWithTarget:delegate];
NSURLSession *session = [self swizzling_sessionWithConfiguration:configuration
delegate:delegateProxy
delegateQueue:queue];
return (id<NSObject>)[NSProxy1 proxyWithTarget:session];
}
Thanks
Does removing FirebasePerformance make a difference?
Thank you for your reply.
If firebasePerformance is removed, the crash will not occur, because -[FPRNSURLSessionInstrument registerProxyObject:] is not executed.
Thanks. I'll assign to the Performance team for investigation.