123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- /* -*- mode: C++; c-basic-offset: 4; tab-width: 4 -*-
- *
- * Copyright (c) 2003-2010 Apple Inc. All rights reserved.
- *
- * @APPLE_LICENSE_HEADER_START@
- *
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apple Public Source License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
- *
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
- *
- * @APPLE_LICENSE_HEADER_END@
- */
- #define DYLD_MACOSX_VERSION_10_11 0x000A0B00
- #define DYLD_MACOSX_VERSION_10_12 0x000A0C00
- #define DYLD_MACOSX_VERSION_10_13 0x000A0D00
- #define DYLD_MACOSX_VERSION_10_14 0x000A0E00
- #ifndef _MACH_O_DYLD_PRIV_H_
- #define _MACH_O_DYLD_PRIV_H_
- #include <assert.h>
- #include <stdbool.h>
- #include <Availability.h>
- #include <TargetConditionals.h>
- #include <mach-o/dyld.h>
- #include <mach-o/dyld_images.h>
- #include <uuid/uuid.h>
- #if __cplusplus
- extern "C" {
- #endif /* __cplusplus */
-
-
-
- //
- // private interface between libSystem.dylib and dyld
- //
- extern void _dyld_fork_child(void);
-
-
- // DEPRECATED
- enum dyld_image_states
- {
- dyld_image_state_mapped = 10, // No batch notification for this
- dyld_image_state_dependents_mapped = 20, // Only batch notification for this
- dyld_image_state_rebased = 30,
- dyld_image_state_bound = 40,
- dyld_image_state_dependents_initialized = 45, // Only single notification for this
- dyld_image_state_initialized = 50,
- dyld_image_state_terminated = 60 // Only single notification for this
- };
-
- // DEPRECATED
- typedef const char* (*dyld_image_state_change_handler)(enum dyld_image_states state, uint32_t infoCount, const struct dyld_image_info info[]);
-
-
-
- typedef void (*_dyld_objc_notify_mapped)(unsigned count, const char* const paths[], const struct mach_header* const mh[]);
- typedef void (*_dyld_objc_notify_init)(const char* path, const struct mach_header* mh);
- typedef void (*_dyld_objc_notify_unmapped)(const char* path, const struct mach_header* mh);
-
-
- //
- // Note: only for use by objc runtime
- // Register handlers to be called when objc images are mapped, unmapped, and initialized.
- // Dyld will call back the "mapped" function with an array of images that contain an objc-image-info section.
- // Those images that are dylibs will have the ref-counts automatically bumped, so objc will no longer need to
- // call dlopen() on them to keep them from being unloaded. During the call to _dyld_objc_notify_register(),
- // dyld will call the "mapped" function with already loaded objc images. During any later dlopen() call,
- // dyld will also call the "mapped" function. Dyld will call the "init" function when dyld would be called
- // initializers in that image. This is when objc calls any +load methods in that image.
- //
- void _dyld_objc_notify_register(_dyld_objc_notify_mapped mapped,
- _dyld_objc_notify_init init,
- _dyld_objc_notify_unmapped unmapped);
-
-
-
- //
- // Possible thread-local variable state changes for which you can register to be notified
- //
- enum dyld_tlv_states {
- dyld_tlv_state_allocated = 10, // TLV range newly allocated
- dyld_tlv_state_deallocated = 20 // TLV range about to be deallocated
- };
-
- //
- // Info about thread-local variable storage.
- //
- typedef struct {
- size_t info_size; // sizeof(dyld_tlv_info)
- void * tlv_addr; // Base address of TLV storage
- size_t tlv_size; // Byte size of TLV storage
- } dyld_tlv_info;
-
- #if __BLOCKS__
-
- //
- // Callback that notes changes to thread-local variable storage.
- //
- typedef void (^dyld_tlv_state_change_handler)(enum dyld_tlv_states state, const dyld_tlv_info *info);
-
- //
- // Register a handler to be called when a thread adds or removes storage for thread-local variables.
- // The registered handler will only be called from and on behalf of the thread that owns the storage.
- // The registered handler will NOT be called for any storage that was
- // already allocated before dyld_register_tlv_state_change_handler() was
- // called. Use dyld_enumerate_tlv_storage() to get that information.
- // Exists in Mac OS X 10.7 and later
- //
- extern void
- dyld_register_tlv_state_change_handler(enum dyld_tlv_states state, dyld_tlv_state_change_handler handler);
-
- //
- // Enumerate the current thread-local variable storage allocated for the current thread.
- // Exists in Mac OS X 10.7 and later
- //
- extern void
- dyld_enumerate_tlv_storage(dyld_tlv_state_change_handler handler);
-
- #endif
-
-
- //
- // get slide for a given loaded mach_header
- // Mac OS X 10.6 and later
- //
- extern intptr_t _dyld_get_image_slide(const struct mach_header* mh);
-
-
-
- struct dyld_unwind_sections
- {
- const struct mach_header* mh;
- const void* dwarf_section;
- uintptr_t dwarf_section_length;
- const void* compact_unwind_section;
- uintptr_t compact_unwind_section_length;
- };
-
-
- //
- // Returns true iff some loaded mach-o image contains "addr".
- // info->mh mach header of image containing addr
- // info->dwarf_section pointer to start of __TEXT/__eh_frame section
- // info->dwarf_section_length length of __TEXT/__eh_frame section
- // info->compact_unwind_section pointer to start of __TEXT/__unwind_info section
- // info->compact_unwind_section_length length of __TEXT/__unwind_info section
- //
- // Exists in Mac OS X 10.6 and later
- #if !__USING_SJLJ_EXCEPTIONS__
- extern bool _dyld_find_unwind_sections(void* addr, struct dyld_unwind_sections* info);
- #endif
-
-
- //
- // This is an optimized form of dladdr() that only returns the dli_fname field.
- //
- // Exists in Mac OS X 10.6 and later
- extern const char* dyld_image_path_containing_address(const void* addr);
-
-
- //
- // This is an optimized form of dladdr() that only returns the dli_fbase field.
- // Return NULL, if address is not in any image tracked by dyld.
- //
- // Exists in Mac OS X 10.11 and later
- extern const struct mach_header* dyld_image_header_containing_address(const void* addr);
-
- typedef uint32_t dyld_platform_t;
-
- typedef struct {
- dyld_platform_t platform;
- uint32_t version;
- } dyld_build_version_t;
-
- // Returns the active platform of the process
- // extern dyld_platform_t dyld_get_active_platform(void) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
-
- // Base platforms are platforms that have version numbers (macOS, iOS, watchos, tvOS, bridgeOS)
- // All other platforms are mapped to a base platform for version checks
- // extern dyld_platform_t dyld_get_base_platform(dyld_platform_t platform) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
-
- // SPI to ask if a platform is a simulation platform
- // extern bool dyld_is_simulator_platform(dyld_platform_t platform) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
-
- // Takes a version and returns if the image was built againt that SDK or newer
- // In the case of multi_plaform mach-o's it tests against the active platform
- // extern bool dyld_sdk_at_least(const struct mach_header* mh, dyld_build_version_t version) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
-
- // Takes a version and returns if the image was built with that minos version or newer
- // In the case of multi_plaform mach-o's it tests against the active platform
- // extern bool dyld_minos_at_least(const struct mach_header* mh, dyld_build_version_t version) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
-
- // Convenience versions of the previous two functions that run against the the main executable
- // extern bool dyld_program_sdk_at_least(dyld_build_version_t version) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
- // extern bool dyld_program_minos_at_least(dyld_build_version_t version) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
-
- // Function that walks through the load commands and calls the internal block for every version found
- // Intended as a fallback for very complex (and rare) version checks, or for tools that need to
- // print our everything for diagnostic reasons
- // extern void dyld_get_image_versions(const struct mach_header* mh, void (^callback)(dyld_platform_t platform, uint32_t sdk_version, uint32_t min_version)) __API_AVAILABLE(macos(10.14), ios(12.0), watchos(5.0), tvos(12.0), bridgeos(3.0));
-
- // Convienence constants for dyld version SPIs.
-
- //@VERSION_SET_DEFS@
-
- //@MACOS_PLATFORM_VERSION_DEFS@
-
- //@IOS_PLATFORM_VERSION_DEFS@
-
- //@WATCHOS_PLATFORM_VERSION_DEFS@
-
- //@TVOS_PLATFORM_VERSION_DEFS@
-
- //@BRIDGEOS_PLATFORM_VERSION_DEFS@
-
- // Convienence constants for return values from dyld_get_sdk_version() and friends.
-
- //@MAC_VERSION_DEFS@
-
- //@IOS_VERSION_DEFS@
-
- //@WATCHOS_VERSION_DEFS@
-
- //
- // This finds the SDK version a binary was built against.
- // Returns zero on error, or if SDK version could not be determined.
- //
- // Exists in Mac OS X 10.8 and later
- // Exists in iOS 6.0 and later
- extern uint32_t dyld_get_sdk_version(const struct mach_header* mh);
-
-
- //
- // This finds the SDK version that the main executable was built against.
- // Returns zero on error, or if SDK version could not be determined.
- //
- // Note on watchOS, this returns the equivalent iOS SDK version number
- // (i.e an app built against watchOS 2.0 SDK returne 9.0). To see the
- // platform specific sdk version use dyld_get_program_sdk_watch_os_version().
- //
- // Exists in Mac OS X 10.8 and later
- // Exists in iOS 6.0 and later
- extern uint32_t dyld_get_program_sdk_version(void);
-
- #if TARGET_OS_WATCH
- // watchOS only.
- // This finds the Watch OS SDK version that the main executable was built against.
- // Exists in Watch OS 2.0 and later
- extern uint32_t dyld_get_program_sdk_watch_os_version(void) __API_AVAILABLE(watchos(2.0));
-
-
- // watchOS only.
- // This finds the Watch min OS version that the main executable was built to run on.
- // Note: dyld_get_program_min_os_version() returns the iOS equivalent (e.g. 9.0)
- // whereas this returns the raw watchOS version (e.g. 2.0).
- // Exists in Watch OS 3.0 and later
- extern uint32_t dyld_get_program_min_watch_os_version(void) __API_AVAILABLE(watchos(3.0));
- #endif
-
- #if TARGET_OS_BRIDGE
- // bridgeOS only.
- // This finds the bridgeOS SDK version that the main executable was built against.
- // Exists in bridgeOSOS 2.0 and later
- extern uint32_t dyld_get_program_sdk_bridge_os_version(void) __API_AVAILABLE(bridgeos(2.0));
-
- // bridgeOS only.
- // This finds the Watch min OS version that the main executable was built to run on.
- // Note: dyld_get_program_min_os_version() returns the iOS equivalent (e.g. 9.0)
- // whereas this returns the raw bridgeOS version (e.g. 2.0).
- // Exists in bridgeOS 2.0 and later
- extern uint32_t dyld_get_program_min_bridge_os_version(void) __API_AVAILABLE(bridgeos(2.0));
- #endif
-
- //
- // This finds the min OS version a binary was built to run on.
- // Returns zero on error, or if no min OS recorded in binary.
- //
- // Exists in Mac OS X 10.8 and later
- // Exists in iOS 6.0 and later
- extern uint32_t dyld_get_min_os_version(const struct mach_header* mh);
-
-
- //
- // This finds the min OS version the main executable was built to run on.
- // Returns zero on error, or if no min OS recorded in binary.
- //
- // Exists in Mac OS X 10.8 and later
- // Exists in iOS 6.0 and later
- extern uint32_t dyld_get_program_min_os_version(void);
-
-
-
-
- //
- // Returns if any OS dylib has overridden its copy in the shared cache
- //
- // Exists in iPhoneOS 3.1 and later
- // Exists in Mac OS X 10.10 and later
- extern bool dyld_shared_cache_some_image_overridden(void);
-
-
-
- //
- // Returns if the process is setuid or is code signed with entitlements.
- //
- // Exists in Mac OS X 10.9 and later
- extern bool dyld_process_is_restricted(void);
-
-
-
- //
- // Returns path used by dyld for standard dyld shared cache file for the current arch.
- //
- // Exists in Mac OS X 10.11 and later
- extern const char* dyld_shared_cache_file_path(void);
-
-
-
- //
- // <rdar://problem/13820686> for OpenGL to tell dyld it is ok to deallocate a memory based image when done.
- //
- // Exists in Mac OS X 10.9 and later
- #define NSLINKMODULE_OPTION_CAN_UNLOAD 0x20
-
-
- //
- // Update all bindings on specified image.
- // Looks for uses of 'replacement' and changes it to 'replacee'.
- // NOTE: this is less safe than using static interposing via DYLD_INSERT_LIBRARIES
- // because the running program may have already copy the pointer values to other
- // locations that dyld does not know about.
- //
- struct dyld_interpose_tuple {
- const void* replacement;
- const void* replacee;
- };
- extern void dyld_dynamic_interpose(const struct mach_header* mh, const struct dyld_interpose_tuple array[], size_t count);
-
-
- struct dyld_shared_cache_dylib_text_info {
- uint64_t version; // current version 1
- // following fields all exist in version 1
- uint64_t loadAddressUnslid;
- uint64_t textSegmentSize;
- uuid_t dylibUuid;
- const char* path; // pointer invalid at end of iterations
- // following fields all exist in version 2
- uint64_t textSegmentOffset; // offset from start of cache
- };
- typedef struct dyld_shared_cache_dylib_text_info dyld_shared_cache_dylib_text_info;
-
-
- #ifdef __BLOCKS__
- //
- // Given the UUID of a dyld shared cache file, this function will attempt to locate the cache
- // file and if found iterate all images, returning info about each one. Returns 0 on success.
- //
- // Exists in Mac OS X 10.11 and later
- // iOS 9.0 and later
- extern int dyld_shared_cache_iterate_text(const uuid_t cacheUuid, void (^callback)(const dyld_shared_cache_dylib_text_info* info));
-
-
- //
- // Given the UUID of a dyld shared cache file, and a NULL terminated array of extra directory paths to search,
- // this function will scan the standard and extra directories looking for a cache file that matches the UUID
- // and if found iterate all images, returning info about each one. Returns 0 on success.
- //
- // Exists in Mac OS X 10.12 and later
- // iOS 10.0 and later
- extern int dyld_shared_cache_find_iterate_text(const uuid_t cacheUuid, const char* extraSearchDirs[], void (^callback)(const dyld_shared_cache_dylib_text_info* info));
- #endif /* __BLOCKS */
-
-
- //
- // Returns if the specified address range is in a dyld owned memory
- // that is mapped read-only and will never be unloaded.
- //
- // Exists in Mac OS X 10.12 and later
- // iOS 10.0 and later
- extern bool _dyld_is_memory_immutable(const void* addr, size_t length);
-
-
- //
- // Finds the UUID (from LC_UUID load command) of given image.
- // Returns false if LC_UUID is missing or mach_header is malformed.
- //
- // Exists in Mac OS X 10.12 and later
- // Exists in iOS 10.0 and later
- extern bool _dyld_get_image_uuid(const struct mach_header* mh, uuid_t uuid);
-
-
- //
- // Gets the UUID of the dyld shared cache in the current process.
- // Returns false if there is no dyld shared cache in use by the processes.
- //
- // Exists in Mac OS X 10.12 and later
- // Exists in iOS 10.0 and later
- extern bool _dyld_get_shared_cache_uuid(uuid_t uuid);
-
-
- //
- // Returns the start address of the dyld cache in the process and sets length to the size of the cache.
- // Returns NULL if the process is not using a dyld shared cache
- //
- // Exists in Mac OS X 10.13 and later
- // Exists in iOS 11.0 and later
- extern const void* _dyld_get_shared_cache_range(size_t* length);
-
-
-
-
- struct dyld_image_uuid_offset {
- uuid_t uuid;
- uint64_t offsetInImage;
- const struct mach_header* image;
- };
-
- //
- // Given an array of addresses, returns info about each address.
- // Common usage is the array or addresses was produced by a stack backtrace.
- // For each address, returns the where that image was loaded, the offset
- // of the address in the image, and the image's uuid. If a specified
- // address is unknown to dyld, all fields will be returned a zeros.
- //
- // Exists in macOS 10.14 and later
- // Exists in iOS 12.0 and later
- extern void _dyld_images_for_addresses(unsigned count, const void* addresses[], struct dyld_image_uuid_offset infos[]);
-
-
- //
- // Lets you register a callback which is called each time an image is loaded and provides the mach_header*, path, and
- // whether the image may be unloaded later. During the call to _dyld_register_for_image_loads(), the callback is called
- // once for each image currently loaded.
- //
- // Exists in macOS 10.14 and later
- // Exists in iOS 12.0 and later
- extern void _dyld_register_for_image_loads(void (*func)(const struct mach_header* mh, const char* path, bool unloadable));
-
-
-
- //
- // When dyld must terminate a process because of a required dependent dylib
- // could not be loaded or a symbol is missing, dyld calls abort_with_reason()
- // using one of the following error codes.
- //
- #define DYLD_EXIT_REASON_DYLIB_MISSING 1
- #define DYLD_EXIT_REASON_DYLIB_WRONG_ARCH 2
- #define DYLD_EXIT_REASON_DYLIB_WRONG_VERSION 3
- #define DYLD_EXIT_REASON_SYMBOL_MISSING 4
- #define DYLD_EXIT_REASON_CODE_SIGNATURE 5
- #define DYLD_EXIT_REASON_FILE_SYSTEM_SANDBOX 6
- #define DYLD_EXIT_REASON_MALFORMED_MACHO 7
- #define DYLD_EXIT_REASON_OTHER 9
-
- //
- // When it has more information about the termination, dyld will use abort_with_payload().
- // The payload is a dyld_abort_payload structure. The fixed fields are offsets into the
- // payload for the corresponding string. If the offset is zero, that string is not available.
- //
- struct dyld_abort_payload {
- uint32_t version; // first version is 1
- uint32_t flags; // 0x00000001 means dyld terminated at launch, backtrace not useful
- uint32_t targetDylibPathOffset; // offset in payload of path string to dylib that could not be loaded
- uint32_t clientPathOffset; // offset in payload of path string to image requesting dylib
- uint32_t symbolOffset; // offset in payload of symbol string that could not be found
- // string data
- };
- typedef struct dyld_abort_payload dyld_abort_payload;
-
-
- // These global variables are implemented in libdyld.dylib
- // Old programs that used crt1.o also defined these globals.
- // The ones in dyld are not used when an old program is run.
- extern int NXArgc;
- extern const char** NXArgv;
- extern char** environ; // POSIX says this not const, because it pre-dates const
- extern const char* __progname;
-
-
- // called by libSystem_initializer only
- extern void _dyld_initializer(void);
-
- // never called from source code. Used by static linker to implement lazy binding
- extern void dyld_stub_binder(void) __asm__("dyld_stub_binder");
-
-
- // called by exit() before it calls cxa_finalize() so that thread_local
- // objects are destroyed before global objects.
- extern void _tlv_exit(void);
-
-
- // temp exports to keep tapi happy, until ASan stops using dyldVersionNumber
- extern double dyldVersionNumber;
- extern const char* dyldVersionString;
-
- #if __cplusplus
- }
- #endif /* __cplusplus */
- #endif /* _MACH_O_DYLD_PRIV_H_ */
|