]> git.saurik.com Git - apple/dyld.git/blobdiff - src/dyldAPIs.cpp
dyld-360.18.tar.gz
[apple/dyld.git] / src / dyldAPIs.cpp
index d00118448979ebf78a5f29f40c18910f38131eb7..b64331a3e4d04c3b620b51053988b78b8410717e 100644 (file)
@@ -70,6 +70,7 @@ extern void addImagesToAllImages(uint32_t infoCount, const dyld_image_info info[
        #define DEPRECATED_APIS_SUPPORTED 1
 #endif
 
+static bool sDynamicInterposing = false;
 
 #if DEPRECATED_APIS_SUPPORTED
 static char sLastErrorFilePath[1024];
@@ -100,7 +101,7 @@ static void _dyld_call_module_initializers_for_dylib(const struct mach_header* m
 static void            client_dyld_lookup_and_bind(const char* symbolName, void** address, NSModule* module);
 static bool            client_NSIsSymbolNameDefined(const char* symbolName);
 #endif // DEPRECATED_APIS_SUPPORTED
-#if !__arm__
+#if SUPPORT_ZERO_COST_EXCEPTIONS
 static bool client_dyld_find_unwind_sections(void* addr, dyld_unwind_sections* info);
 #endif
 
@@ -134,23 +135,25 @@ static struct dyld_func dyld_funcs[] = {
        {"__dyld_dyld_register_image_state_change_handler",     (void*)dyld_register_image_state_change_handler },
        {"__dyld_register_thread_helpers",                                      (void*)registerThreadHelpers },
        {"__dyld_fork_child",                                                           (void*)_dyld_fork_child },
-    {"__dyld_moninit",                                                                 (void*)_dyld_moninit },
     {"__dyld_make_delayed_module_initializer_calls",   (void*)_dyld_make_delayed_module_initializer_calls },
        {"__dyld_get_all_image_infos",                                          (void*)_dyld_get_all_image_infos },
-#if !__arm__
+#if SUPPORT_ZERO_COST_EXCEPTIONS
        {"__dyld_find_unwind_sections",                                         (void*)client_dyld_find_unwind_sections },
 #endif
-#if __i386__ || __x86_64__ || __arm__
+#if __i386__ || __x86_64__ || __arm__ || __arm64__
        {"__dyld_fast_stub_entry",                                                      (void*)dyld::fastBindLazySymbol },
 #endif
        {"__dyld_image_path_containing_address",                        (void*)dyld_image_path_containing_address },
-#if __IPHONE_OS_VERSION_MIN_REQUIRED   
        {"__dyld_shared_cache_some_image_overridden",           (void*)dyld_shared_cache_some_image_overridden },
+       {"__dyld_process_is_restricted",                                        (void*)dyld::processIsRestricted },
+       {"__dyld_dynamic_interpose",                                            (void*)dyld_dynamic_interpose },
+#if DYLD_SHARED_CACHE_SUPPORT
+       {"__dyld_shared_cache_file_path",                                       (void*)dyld::getStandardSharedCacheFilePath },
 #endif
+    {"__dyld_get_image_header_containing_address",             (void*)dyld_image_header_containing_address },
 
        // deprecated
 #if DEPRECATED_APIS_SUPPORTED
-    {"__dyld_get_image_header_containing_address",             (void*)_dyld_get_image_header_containing_address },
     {"__dyld_lookup_and_bind",                                         (void*)client_dyld_lookup_and_bind },
     {"__dyld_lookup_and_bind_with_hint",                       (void*)_dyld_lookup_and_bind_with_hint },
     {"__dyld_lookup_and_bind_fully",                           (void*)_dyld_lookup_and_bind_fully },
@@ -239,6 +242,9 @@ struct __NSObjectFileImage
        const void*             imageBaseAddress;       // not used with OFI created from files
        size_t                  imageLength;            // not used with OFI created from files
 };
+
+
+VECTOR_NEVER_DESTRUCTED(NSObjectFileImage);
 static std::vector<NSObjectFileImage> sObjectFileImages;
 
 
@@ -279,7 +285,7 @@ int _NSGetExecutablePath(char* buf, uint32_t *bufsize)
                dyld::log("%s(...)\n", __func__);
        const char* exePath = dyld::getExecutablePath();
        if(*bufsize < strlen(exePath) + 1){
-           *bufsize = strlen(exePath) + 1;
+           *bufsize = (uint32_t)(strlen(exePath) + 1);
            return -1;
        }
        strcpy(buf, exePath);
@@ -338,7 +344,7 @@ const char* _dyld_get_image_name(uint32_t image_index)
                return NULL;
 }
 
-const struct mach_header * _dyld_get_image_header_containing_address(const void* address)
+const struct mach_header * dyld_image_header_containing_address(const void* address)
 {
        if ( dyld::gLogAPIs )
                dyld::log("%s(%p)\n", __func__, address);
@@ -542,7 +548,7 @@ const struct mach_header* addImage(void* callerAddress, const char* path, bool s
                if ( image != NULL ) {
                        if ( context.matchByInstallName )
                                image->setMatchInstallPath(true);
-                       dyld::link(image, false, callersRPaths);
+                       dyld::link(image, false, false, callersRPaths);
                        dyld::runInitializers(image);
                        // images added with NSAddImage() can never be unloaded
                        image->setNeverUnload(); 
@@ -972,6 +978,9 @@ NSModule NSLinkModule(NSObjectFileImage objectFileImage, const char* moduleName,
        
        dyld::clearErrorMessage();
        try {
+               if ( (options & NSLINKMODULE_OPTION_CAN_UNLOAD) != 0 )
+                       objectFileImage->image->setCanUnload();
+
                // NSLinkModule allows a bundle to be link multpile times
                // each link causes the bundle to be copied to a new address
                if ( objectFileImage->image->isLinked() ) {
@@ -998,7 +1007,7 @@ NSModule NSLinkModule(NSObjectFileImage objectFileImage, const char* moduleName,
                bool forceLazysBound = ( (options & NSLINKMODULE_OPTION_BINDNOW) != 0 );
                
                // load libraries, rebase, bind, to make this image usable
-               dyld::link(objectFileImage->image, forceLazysBound, ImageLoader::RPathChain(NULL,NULL));
+               dyld::link(objectFileImage->image, forceLazysBound, false, ImageLoader::RPathChain(NULL,NULL));
                
                // bump reference count to keep this bundle from being garbage collected
                objectFileImage->image->incrementDlopenReferenceCount();
@@ -1044,7 +1053,7 @@ static NSModule _dyld_link_module(NSObjectFileImage object_addr, size_t object_s
                        bool forceLazysBound = ( (options & NSLINKMODULE_OPTION_BINDNOW) != 0 );
                        
                        // load libraries, rebase, bind, to make this image usable
-                       dyld::link(image, forceLazysBound, ImageLoader::RPathChain(NULL,NULL));
+                       dyld::link(image, forceLazysBound, false, ImageLoader::RPathChain(NULL,NULL));
                        
                        // run initializers unless magic flag says not to
                        if ( (options & NSLINKMODULE_OPTION_DONT_CALL_MOD_INIT_ROUTINES) == 0 )
@@ -1107,6 +1116,19 @@ bool NSUnLinkModule(NSModule module, uint32_t options)
        ImageLoader* image = NSModuleToImageLoader(module);
        if ( image == NULL ) 
                return false;
+       dyld::runImageStaticTerminators(image);
+       if ( (dyld::gLibSystemHelpers != NULL) && (dyld::gLibSystemHelpers->version >= 13) ) {
+               __cxa_range_t ranges[image->segmentCount()];
+               int rangeCount = 0;
+               for (unsigned int j=0; j < image->segmentCount(); ++j) {
+                       if ( !image->segExecutable(j) )
+                               continue;
+                       ranges[rangeCount].addr = (const void*)image->segActualLoadAddress(j);
+                       ranges[rangeCount].length = image->segSize(j);
+                       ++rangeCount;
+               }
+               (*dyld::gLibSystemHelpers->cxa_finalize_ranges)(ranges, rangeCount);
+       }
        dyld::removeImage(image);
        
        if ( (options & NSUNLINKMODULE_OPTION_KEEP_MEMORY_MAPPED) != 0 )
@@ -1182,32 +1204,11 @@ void _dyld_fork_child()
        // If dyld is sending load/unload notices to CoreSymbolication, the shared memory
        // page is not copied on fork. <rdar://problem/6797342>
        // NULL the CoreSymbolication shared memory pointer to prevent a crash.
-       dyld_all_image_infos.coreSymbolicationShmPage = NULL;
+       dyld::gProcessInfo->coreSymbolicationShmPage = NULL;
        // for safety, make sure child starts with clean systemOrderFlag
-       dyld_all_image_infos.systemOrderFlag = 0;
-}
-
-typedef void (*MonitorProc)(char *lowpc, char *highpc);
-
-static void monInitCallback(ImageLoader* image, void* userData)
-{
-       MonitorProc proc = (MonitorProc)userData;
-       void* start;
-       size_t length;
-       if ( image->getSectionContent("__TEXT", "__text", &start, &length) ) {
-               proc((char*)start, (char*)start+length);
-       }
+       dyld::gProcessInfo->systemOrderFlag = 0;
 }
 
-//
-// _dyld_moninit is called from profiling runtime routine moninit().
-// dyld calls back with the range of each __TEXT/__text section in every
-// linked image.
-//
-void _dyld_moninit(MonitorProc proc)
-{
-       dyld::forEachImageDo(&monInitCallback, (void*)proc);
-}
 
 #if DEPRECATED_APIS_SUPPORTED
 // returns true if prebinding was used in main executable
@@ -1242,13 +1243,13 @@ static bool NSMakePrivateModulePublic(NSModule module)
 
 #endif // DEPRECATED_APIS_SUPPORTED
 
-bool lookupDyldFunction(const char* name, uintptr_t* address)
+int _dyld_func_lookup(const char* name, void** address)
 {
        for (const dyld_func* p = dyld_funcs; p->name != NULL; ++p) {
            if ( strcmp(p->name, name) == 0 ) {
                        if( p->implementation == unimplemented )
                                dyld::log("unimplemented dyld function: %s\n", p->name);
-                       *address = (uintptr_t)p->implementation;
+                       *address = p->implementation;
                        return true;
            }
        }
@@ -1262,9 +1263,9 @@ static void registerThreadHelpers(const dyld::LibSystemHelpers* helpers)
        dyld::gLibSystemHelpers = helpers;
        
        // let gdb know it is safe to run code in inferior that might call malloc()
-       dyld_all_image_infos.libSystemInitialized = true;       
+       dyld::gProcessInfo->libSystemInitialized = true;        
        
-#if __arm__
+#if !SUPPORT_ZERO_COST_EXCEPTIONS
        if ( helpers->version >= 5 )  {
                // create key use by dyld exception handling
                pthread_key_t key;
@@ -1279,6 +1280,13 @@ static void registerThreadHelpers(const dyld::LibSystemHelpers* helpers)
 static void dlerrorClear()
 {
        if ( dyld::gLibSystemHelpers != NULL ) {
+               // <rdar://problem/10595338> dlerror buffer leak
+               // dlerrorClear() should not force allocation, but zero it if already allocated
+               if ( dyld::gLibSystemHelpers->version >= 10 ) {
+                       if ( ! (*dyld::gLibSystemHelpers->hasPerThreadBufferFor_dlerror)() )
+                               return;
+               }
+
                // first char of buffer is flag whether string (starting at second char) is valid
                char* buffer = (*dyld::gLibSystemHelpers->getThreadBufferFor_dlerror)(2);
                buffer[0] = '\0';
@@ -1412,15 +1420,16 @@ void* dlopen(const char* path, int mode)
        void* result = NULL;
        ImageLoader* image = NULL;
        std::vector<const char*> rpathsFromCallerImage;
+       ImageLoader::RPathChain callersRPaths(NULL, &rpathsFromCallerImage);
        try {
                void* callerAddress = __builtin_return_address(1); // note layers: 1: real client, 0: libSystem glue
                ImageLoader* callerImage = dyld::findImageContainingAddress(callerAddress);
-               // for dlopen, use rpath from caller image and from main executable
-               if ( callerImage != NULL )
-                       callerImage->getRPaths(dyld::gLinkContext, rpathsFromCallerImage);
-               ImageLoader::RPathChain callersRPaths(NULL, &rpathsFromCallerImage);
-               if ( callerImage != dyld::mainExecutable() ) {
-                       dyld::mainExecutable()->getRPaths(dyld::gLinkContext, rpathsFromCallerImage);
+               if ( (mode & RTLD_NOLOAD) == 0 ) {
+                       // for dlopen, use rpath from caller image and from main executable
+                       if ( callerImage != NULL )
+                               callerImage->getRPaths(dyld::gLinkContext, rpathsFromCallerImage);
+                       if ( callerImage != dyld::mainExecutable() )
+                               dyld::mainExecutable()->getRPaths(dyld::gLinkContext, rpathsFromCallerImage);
                }
  
                const bool leafName = (strchr(path, '/') == NULL);
@@ -1468,7 +1477,7 @@ void* dlopen(const char* path, int mode)
                        if ( (mode & RTLD_NOLOAD) == 0 ) {
                                bool alreadyLinked = image->isLinked();
                                bool forceLazysBound = ( (mode & RTLD_NOW) != 0 );
-                               dyld::link(image, forceLazysBound, callersRPaths);
+                               dyld::link(image, forceLazysBound, false, callersRPaths);
                                if ( ! alreadyLinked ) {
                                        // only hide exports if image is not already in use
                                        if ( (mode & RTLD_LOCAL) != 0 )
@@ -1514,9 +1523,12 @@ void* dlopen(const char* path, int mode)
                        // load() succeeded but, link() failed
                        // back down reference count and do GC
                        image->decrementDlopenReferenceCount();
-                       dyld::garbageCollectImages();
+                       if ( image->dlopenCount() == 0 )
+                               dyld::garbageCollectImages();
                }
                const char* str = dyld::mkstringf("dlopen(%s, %d): %s", path, mode, msg);
+               if ( dyld::gLogAPIs )
+                       dyld::log("  %s() failed, error: '%s'\n", __func__, str);
                dlerrorSet(str);
                free((void*)str);
                free((void*)msg);       // our free() will do nothing if msg is a string literal
@@ -1537,6 +1549,8 @@ void* dlopen(const char* path, int mode)
                CRSetCrashLogMessage(NULL);
                dyld::gLibSystemHelpers->releaseGlobalDyldLock();
        }
+       if ( dyld::gLogAPIs && (result != NULL) )
+               dyld::log("  %s(%s) ==> %p\n", __func__, path, result);
        return result;
 }
 
@@ -1562,7 +1576,8 @@ int dlclose(void* handle)
                        return -1;
                }
                // remove image if reference count went to zero
-               dyld::garbageCollectImages();
+               if ( image->dlopenCount() == 0 )
+                       dyld::garbageCollectImages();
                return 0;
        }
        else {
@@ -1622,6 +1637,12 @@ char* dlerror()
                dyld::log("%s()\n", __func__);
 
        if ( dyld::gLibSystemHelpers != NULL ) {
+               // if using newer libdyld.dylib and buffer if buffer not yet allocated, return NULL
+               if ( dyld::gLibSystemHelpers->version >= 10 ) {
+                       if ( ! (*dyld::gLibSystemHelpers->hasPerThreadBufferFor_dlerror)() )
+                               return NULL;
+               }
+
                // first char of buffer is flag whether string (starting at second char) is valid
                char* buffer = (*dyld::gLibSystemHelpers->getThreadBufferFor_dlerror)(2);
                if ( buffer[0] != '\0' ) {      // if valid buffer
@@ -1717,7 +1738,13 @@ void* dlsym(void* handle, const char* symbolName)
                
                if ( sym != NULL ) {
                        CRSetCrashLogMessage(NULL);
-                       return (void*)image->getExportedSymbolAddress(sym, dyld::gLinkContext);
+                       ImageLoader* callerImage = NULL;
+                       if ( sDynamicInterposing ) {
+                               // only take time to look up caller, if dynamic interposing in use
+                               void* callerAddress = __builtin_return_address(1); // note layers: 1: real client, 0: libSystem glue
+                               callerImage = dyld::findImageContainingAddress(callerAddress);
+                       }
+                       return (void*)image->getExportedSymbolAddress(sym, dyld::gLinkContext, callerImage);
                }
                const char* str = dyld::mkstringf("dlsym(%p, %s): symbol not found", handle, symbolName);
                dlerrorSet(str);
@@ -1741,10 +1768,10 @@ void* dlsym(void* handle, const char* symbolName)
 
 const struct dyld_all_image_infos* _dyld_get_all_image_infos()
 {
-       return &dyld_all_image_infos;
+       return dyld::gProcessInfo;
 }
 
-#if !__arm__
+#if SUPPORT_ZERO_COST_EXCEPTIONS
 static bool client_dyld_find_unwind_sections(void* addr, dyld_unwind_sections* info)
 {
        //if ( dyld::gLogAPIs )
@@ -1784,12 +1811,40 @@ const char* dyld_image_path_containing_address(const void* address)
 
 
 
-#if __IPHONE_OS_VERSION_MIN_REQUIRED   
 bool dyld_shared_cache_some_image_overridden()
 {
+ #if DYLD_SHARED_CACHE_SUPPORT
        return dyld::gSharedCacheOverridden;
+ #else
+    return true;
+ #endif
+}
+
+
+void dyld_dynamic_interpose(const struct mach_header* mh, const struct dyld_interpose_tuple array[], size_t count)
+{
+       if ( mh == NULL )
+               return;
+       if ( array == NULL )
+               return;
+       if ( count == 0 )
+               return;
+       ImageLoader* image = dyld::findImageByMachHeader(mh);
+       if ( image == NULL )
+               return;
+       
+       // make pass at bound references in this image and update them
+       dyld::gLinkContext.dynamicInterposeArray = array;
+       dyld::gLinkContext.dynamicInterposeCount = count;
+               image->dynamicInterpose(dyld::gLinkContext);
+       dyld::gLinkContext.dynamicInterposeArray = NULL;
+       dyld::gLinkContext.dynamicInterposeCount = 0;
+       
+       // leave interposing info so any future (lazy) binding will get it too
+       image->addDynamicInterposingTuples(array, count);
+       
+       sDynamicInterposing = true;
 }
-#endif