Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3170)

Unified Diff: base/native_library_mac.mm

Issue 12793004: [Mac] Do not unload base::NativeLibary-ies if they contain ObjC segments. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: The never ending review! Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/native_library.h ('k') | content/ppapi_plugin/ppapi_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/native_library_mac.mm
diff --git a/base/native_library_mac.mm b/base/native_library_mac.mm
index eec586b863588d9856cc0221da1e73973e10e8de..4a0947561c892953dc54bc0b2cc3df73ca19acb2 100644
--- a/base/native_library_mac.mm
+++ b/base/native_library_mac.mm
@@ -5,9 +5,11 @@
#include "base/native_library.h"
#include <dlfcn.h>
+#include <mach-o/getsect.h>
#include "base/file_util.h"
#include "base/files/file_path.h"
+#include "base/logging.h"
#include "base/mac/scoped_cftyperef.h"
#include "base/string_util.h"
#include "base/threading/thread_restrictions.h"
@@ -15,6 +17,30 @@
namespace base {
+static NativeLibraryObjCStatus GetObjCStatusForImage(
+ const void* function_pointer) {
Scott Hess - ex-Googler 2013/03/14 21:12:53 Is void* even a valid assignment for a function po
Mark Mentovai 2013/03/14 21:17:55 shess wrote:
+ Dl_info info;
+ if (!dladdr(function_pointer, &info))
+ return OBJC_UNKNOWN;
+
+ // See if the the image contains an "ObjC image info" segment. This method
+ // of testing is used in _CFBundleGrokObjcImageInfoFromFile in
+ // CF-744/CFBundle.c, around lines 2447-2474.
+ //
+ // In 32-bit images, ObjC can be recognized in __OBJC,__image_info, whereas
+ // in 64-bit, the data is in __DATA,__objc_imageinfo.
+#if __LP64__
+ const section_64* section = getsectbynamefromheader_64(
+ reinterpret_cast<const struct mach_header_64*>(info.dli_fbase),
+ SEG_DATA, "__objc_imageinfo");
+#else
+ const section* section = getsectbynamefromheader(
+ reinterpret_cast<const struct mach_header*>(info.dli_fbase),
Scott Hess - ex-Googler 2013/03/14 21:12:53 Perfect! Symmetric grodiness.
+ SEG_OBJC, "__image_info");
+#endif
+ return section == NULL ? OBJC_NOT_PRESENT : OBJC_PRESENT;
+}
+
// static
NativeLibrary LoadNativeLibrary(const base::FilePath& library_path,
std::string* error) {
@@ -27,6 +53,7 @@ NativeLibrary LoadNativeLibrary(const base::FilePath& library_path,
NativeLibrary native_lib = new NativeLibraryStruct();
native_lib->type = DYNAMIC_LIB;
native_lib->dylib = dylib;
+ native_lib->objc_status = OBJC_UNKNOWN;
return native_lib;
}
base::mac::ScopedCFTypeRef<CFURLRef> url(
@@ -45,17 +72,26 @@ NativeLibrary LoadNativeLibrary(const base::FilePath& library_path,
native_lib->type = BUNDLE;
native_lib->bundle = bundle;
native_lib->bundle_resource_ref = CFBundleOpenBundleResourceMap(bundle);
+ native_lib->objc_status = OBJC_UNKNOWN;
return native_lib;
}
// static
void UnloadNativeLibrary(NativeLibrary library) {
- if (library->type == BUNDLE) {
- CFBundleCloseBundleResourceMap(library->bundle,
- library->bundle_resource_ref);
- CFRelease(library->bundle);
+ if (library->objc_status == OBJC_NOT_PRESENT) {
+ if (library->type == BUNDLE) {
+ CFBundleCloseBundleResourceMap(library->bundle,
+ library->bundle_resource_ref);
+ CFRelease(library->bundle);
+ } else {
+ dlclose(library->dylib);
+ }
} else {
- dlclose(library->dylib);
+ VLOG(2) << "Not unloading NativeLibrary because it may contain an ObjC "
+ "segment. library->objc_status = " << library->objc_status;
+ // Deliberately do not CFRelease the bundle or dlclose the dylib because
+ // doing so can corrupt the ObjC runtime method caches. See
+ // http://crbug.com/172319 for details.
}
delete library;
}
@@ -63,13 +99,25 @@ void UnloadNativeLibrary(NativeLibrary library) {
// static
void* GetFunctionPointerFromNativeLibrary(NativeLibrary library,
const char* name) {
+ void* function_pointer = NULL;
+
+ // Get the function pointer using the right API for the type.
if (library->type == BUNDLE) {
base::mac::ScopedCFTypeRef<CFStringRef> symbol_name(
CFStringCreateWithCString(kCFAllocatorDefault, name,
kCFStringEncodingUTF8));
- return CFBundleGetFunctionPointerForName(library->bundle, symbol_name);
+ function_pointer = CFBundleGetFunctionPointerForName(library->bundle,
+ symbol_name);
+ } else {
+ function_pointer = dlsym(library->dylib, name);
}
- return dlsym(library->dylib, name);
+
+ // If this library hasn't been tested for having ObjC, use the function
+ // pointer to look up the section information for the library.
+ if (function_pointer && library->objc_status == OBJC_UNKNOWN)
+ library->objc_status = GetObjCStatusForImage(function_pointer);
+
+ return function_pointer;
}
// static
« no previous file with comments | « base/native_library.h ('k') | content/ppapi_plugin/ppapi_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698