123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985 |
- /*
- * Copyright (c) 1999-2007 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@
- */
- /***********************************************************************
- * objc-runtime.m
- * Copyright 1988-1996, NeXT Software, Inc.
- * Author: s. naroff
- *
- **********************************************************************/
- /***********************************************************************
- * Imports.
- **********************************************************************/
- #include "objc-private.h"
- #include "objc-loadmethod.h"
- #include "message.h"
- /***********************************************************************
- * Exports.
- **********************************************************************/
- /* Linker metadata symbols */
- // NSObject was in Foundation/CF on macOS < 10.8.
- #if TARGET_OS_OSX
- #if __OBJC2__
- const char __objc_nsobject_class_10_5 = 0;
- const char __objc_nsobject_class_10_6 = 0;
- const char __objc_nsobject_class_10_7 = 0;
- const char __objc_nsobject_metaclass_10_5 = 0;
- const char __objc_nsobject_metaclass_10_6 = 0;
- const char __objc_nsobject_metaclass_10_7 = 0;
- const char __objc_nsobject_isa_10_5 = 0;
- const char __objc_nsobject_isa_10_6 = 0;
- const char __objc_nsobject_isa_10_7 = 0;
- #else
- const char __objc_nsobject_class_10_5 = 0;
- const char __objc_nsobject_class_10_6 = 0;
- const char __objc_nsobject_class_10_7 = 0;
- #endif
- #endif
- // Settings from environment variables
- #define OPTION(var, env, help) bool var = false;
- #include "objc-env.h"
- #undef OPTION
- struct option_t {
- bool* var;
- const char *env;
- const char *help;
- size_t envlen;
- };
- const option_t Settings[] = {
- #define OPTION(var, env, help) option_t{&var, #env, help, strlen(#env)},
- #include "objc-env.h"
- #undef OPTION
- };
- // objc's key for pthread_getspecific
- static tls_key_t _objc_pthread_key;
- // Selectors
- SEL SEL_load = NULL;
- SEL SEL_initialize = NULL;
- SEL SEL_resolveInstanceMethod = NULL;
- SEL SEL_resolveClassMethod = NULL;
- SEL SEL_cxx_construct = NULL;
- SEL SEL_cxx_destruct = NULL;
- SEL SEL_retain = NULL;
- SEL SEL_release = NULL;
- SEL SEL_autorelease = NULL;
- SEL SEL_retainCount = NULL;
- SEL SEL_alloc = NULL;
- SEL SEL_allocWithZone = NULL;
- SEL SEL_dealloc = NULL;
- SEL SEL_copy = NULL;
- SEL SEL_new = NULL;
- SEL SEL_forwardInvocation = NULL;
- SEL SEL_tryRetain = NULL;
- SEL SEL_isDeallocating = NULL;
- SEL SEL_retainWeakReference = NULL;
- SEL SEL_allowsWeakReference = NULL;
- header_info *FirstHeader = 0; // NULL means empty list
- header_info *LastHeader = 0; // NULL means invalid; recompute it
- int HeaderCount = 0;
- // Set to true on the child side of fork()
- // if the parent process was multithreaded when fork() was called.
- bool MultithreadedForkChild = false;
- /***********************************************************************
- * objc_noop_imp. Used when we need to install a do-nothing method somewhere.
- **********************************************************************/
- id objc_noop_imp(id self, SEL _cmd __unused) {
- return self;
- }
- /***********************************************************************
- * objc_getClass. Return the id of the named class. If the class does
- * not exist, call _objc_classLoader and then objc_classHandler, either of
- * which may create a new class.
- * Warning: doesn't work if aClassName is the name of a posed-for class's isa!
- **********************************************************************/
- Class objc_getClass(const char *aClassName)
- {
- if (!aClassName) return Nil;
- // NO unconnected, YES class handler
- return look_up_class(aClassName, NO, YES);
- }
- /***********************************************************************
- * objc_getRequiredClass.
- * Same as objc_getClass, but kills the process if the class is not found.
- * This is used by ZeroLink, where failing to find a class would be a
- * compile-time link error without ZeroLink.
- **********************************************************************/
- Class objc_getRequiredClass(const char *aClassName)
- {
- Class cls = objc_getClass(aClassName);
- if (!cls) _objc_fatal("link error: class '%s' not found.", aClassName);
- return cls;
- }
- /***********************************************************************
- * objc_lookUpClass. Return the id of the named class.
- * If the class does not exist, call _objc_classLoader, which may create
- * a new class.
- *
- * Formerly objc_getClassWithoutWarning ()
- **********************************************************************/
- Class objc_lookUpClass(const char *aClassName)
- {
- if (!aClassName) return Nil;
- // NO unconnected, NO class handler
- return look_up_class(aClassName, NO, NO);
- }
- /***********************************************************************
- * objc_getMetaClass. Return the id of the meta class the named class.
- * Warning: doesn't work if aClassName is the name of a posed-for class's isa!
- **********************************************************************/
- Class objc_getMetaClass(const char *aClassName)
- {
- Class cls;
- if (!aClassName) return Nil;
- cls = objc_getClass (aClassName);
- if (!cls)
- {
- _objc_inform ("class `%s' not linked into application", aClassName);
- return Nil;
- }
- return cls->ISA();
- }
- /***********************************************************************
- * appendHeader. Add a newly-constructed header_info to the list.
- **********************************************************************/
- void appendHeader(header_info *hi)
- {
- // Add the header to the header list.
- // The header is appended to the list, to preserve the bottom-up order.
- HeaderCount++;
- hi->setNext(NULL);
- if (!FirstHeader) {
- // list is empty
- FirstHeader = LastHeader = hi;
- } else {
- if (!LastHeader) {
- // list is not empty, but LastHeader is invalid - recompute it
- LastHeader = FirstHeader;
- while (LastHeader->getNext()) LastHeader = LastHeader->getNext();
- }
- // LastHeader is now valid
- LastHeader->setNext(hi);
- LastHeader = hi;
- }
- }
- /***********************************************************************
- * removeHeader
- * Remove the given header from the header list.
- * FirstHeader is updated.
- * LastHeader is set to NULL. Any code that uses LastHeader must
- * detect this NULL and recompute LastHeader by traversing the list.
- **********************************************************************/
- void removeHeader(header_info *hi)
- {
- header_info *prev = NULL;
- header_info *current = NULL;
- for (current = FirstHeader; current != NULL; current = current->getNext()) {
- if (current == hi) {
- header_info *deadHead = current;
- // Remove from the linked list.
- if (prev)
- prev->setNext(current->getNext());
- else
- FirstHeader = current->getNext(); // no prev so removing head
-
- // Update LastHeader if necessary.
- if (LastHeader == deadHead) {
- LastHeader = NULL; // will be recomputed next time it's used
- }
- HeaderCount--;
- break;
- }
- prev = current;
- }
- }
- /***********************************************************************
- * environ_init
- * Read environment variables that affect the runtime.
- * Also print environment variable help, if requested.
- **********************************************************************/
- void environ_init(void)
- {
- if (issetugid()) {
- // All environment variables are silently ignored when setuid or setgid
- // This includes OBJC_HELP and OBJC_PRINT_OPTIONS themselves.
- return;
- }
- bool PrintHelp = false;
- bool PrintOptions = false;
- bool maybeMallocDebugging = false;
- // Scan environ[] directly instead of calling getenv() a lot.
- // This optimizes the case where none are set.
- for (char **p = *_NSGetEnviron(); *p != nil; p++) {
- if (0 == strncmp(*p, "Malloc", 6) || 0 == strncmp(*p, "DYLD", 4) ||
- 0 == strncmp(*p, "NSZombiesEnabled", 16))
- {
- maybeMallocDebugging = true;
- }
- if (0 != strncmp(*p, "OBJC_", 5)) continue;
-
- if (0 == strncmp(*p, "OBJC_HELP=", 10)) {
- PrintHelp = true;
- continue;
- }
- if (0 == strncmp(*p, "OBJC_PRINT_OPTIONS=", 19)) {
- PrintOptions = true;
- continue;
- }
-
- const char *value = strchr(*p, '=');
- if (!*value) continue;
- value++;
-
- for (size_t i = 0; i < sizeof(Settings)/sizeof(Settings[0]); i++) {
- const option_t *opt = &Settings[i];
- if ((size_t)(value - *p) == 1+opt->envlen &&
- 0 == strncmp(*p, opt->env, opt->envlen))
- {
- *opt->var = (0 == strcmp(value, "YES"));
- break;
- }
- }
- }
- // Special case: enable some autorelease pool debugging
- // when some malloc debugging is enabled
- // and OBJC_DEBUG_POOL_ALLOCATION is not set to something other than NO.
- if (maybeMallocDebugging) {
- const char *insert = getenv("DYLD_INSERT_LIBRARIES");
- const char *zombie = getenv("NSZombiesEnabled");
- const char *pooldebug = getenv("OBJC_DEBUG_POOL_ALLOCATION");
- if ((getenv("MallocStackLogging")
- || getenv("MallocStackLoggingNoCompact")
- || (zombie && (*zombie == 'Y' || *zombie == 'y'))
- || (insert && strstr(insert, "libgmalloc")))
- &&
- (!pooldebug || 0 == strcmp(pooldebug, "YES")))
- {
- DebugPoolAllocation = true;
- }
- }
- // Print OBJC_HELP and OBJC_PRINT_OPTIONS output.
- if (PrintHelp || PrintOptions) {
- if (PrintHelp) {
- _objc_inform("Objective-C runtime debugging. Set variable=YES to enable.");
- _objc_inform("OBJC_HELP: describe available environment variables");
- if (PrintOptions) {
- _objc_inform("OBJC_HELP is set");
- }
- _objc_inform("OBJC_PRINT_OPTIONS: list which options are set");
- }
- if (PrintOptions) {
- _objc_inform("OBJC_PRINT_OPTIONS is set");
- }
- for (size_t i = 0; i < sizeof(Settings)/sizeof(Settings[0]); i++) {
- const option_t *opt = &Settings[i];
- if (PrintHelp) _objc_inform("%s: %s", opt->env, opt->help);
- if (PrintOptions && *opt->var) _objc_inform("%s is set", opt->env);
- }
- }
- }
- /***********************************************************************
- * logReplacedMethod
- * OBJC_PRINT_REPLACED_METHODS implementation
- **********************************************************************/
- void
- logReplacedMethod(const char *className, SEL s,
- bool isMeta, const char *catName,
- IMP oldImp, IMP newImp)
- {
- const char *oldImage = "??";
- const char *newImage = "??";
- // Silently ignore +load replacement because category +load is special
- if (s == SEL_load) return;
- #if TARGET_OS_WIN32
- // don't know dladdr()/dli_fname equivalent
- #else
- Dl_info dl;
- if (dladdr((void*)oldImp, &dl) && dl.dli_fname) oldImage = dl.dli_fname;
- if (dladdr((void*)newImp, &dl) && dl.dli_fname) newImage = dl.dli_fname;
- #endif
-
- _objc_inform("REPLACED: %c[%s %s] %s%s (IMP was %p (%s), now %p (%s))",
- isMeta ? '+' : '-', className, sel_getName(s),
- catName ? "by category " : "", catName ? catName : "",
- oldImp, oldImage, newImp, newImage);
- }
- /***********************************************************************
- * _objc_fetch_pthread_data
- * Fetch objc's pthread data for this thread.
- * If the data doesn't exist yet and create is NO, return NULL.
- * If the data doesn't exist yet and create is YES, allocate and return it.
- **********************************************************************/
- _objc_pthread_data *_objc_fetch_pthread_data(bool create)
- {
- _objc_pthread_data *data;
- data = (_objc_pthread_data *)tls_get(_objc_pthread_key);
- if (!data && create) {
- data = (_objc_pthread_data *)
- calloc(1, sizeof(_objc_pthread_data));
- tls_set(_objc_pthread_key, data);
- }
- return data;
- }
- /***********************************************************************
- * _objc_pthread_destroyspecific
- * Destructor for objc's per-thread data.
- * arg shouldn't be NULL, but we check anyway.
- **********************************************************************/
- extern void _destroyInitializingClassList(struct _objc_initializing_classes *list);
- void _objc_pthread_destroyspecific(void *arg)
- {
- _objc_pthread_data *data = (_objc_pthread_data *)arg;
- if (data != NULL) {
- _destroyInitializingClassList(data->initializingClasses);
- _destroySyncCache(data->syncCache);
- _destroyAltHandlerList(data->handlerList);
- for (int i = 0; i < (int)countof(data->printableNames); i++) {
- if (data->printableNames[i]) {
- free(data->printableNames[i]);
- }
- }
- // add further cleanup here...
- free(data);
- }
- }
- void tls_init(void)
- {
- #if SUPPORT_DIRECT_THREAD_KEYS
- _objc_pthread_key = TLS_DIRECT_KEY;
- pthread_key_init_np(TLS_DIRECT_KEY, &_objc_pthread_destroyspecific);
- #else
- _objc_pthread_key = tls_create(&_objc_pthread_destroyspecific);
- #endif
- }
- /***********************************************************************
- * _objcInit
- * Former library initializer. This function is now merely a placeholder
- * for external callers. All runtime initialization has now been moved
- * to map_images() and _objc_init.
- **********************************************************************/
- void _objcInit(void)
- {
- // do nothing
- }
- /***********************************************************************
- * objc_setForwardHandler
- **********************************************************************/
- #if !__OBJC2__
- // Default forward handler (nil) goes to forward:: dispatch.
- void *_objc_forward_handler = nil;
- void *_objc_forward_stret_handler = nil;
- #else
- // Default forward handler halts the process.
- __attribute__((noreturn)) void
- objc_defaultForwardHandler(id self, SEL sel)
- {
- _objc_fatal("%c[%s %s]: unrecognized selector sent to instance %p "
- "(no message forward handler is installed)",
- class_isMetaClass(object_getClass(self)) ? '+' : '-',
- object_getClassName(self), sel_getName(sel), self);
- }
- void *_objc_forward_handler = (void*)objc_defaultForwardHandler;
- #if SUPPORT_STRET
- struct stret { int i[100]; };
- __attribute__((noreturn)) struct stret
- objc_defaultForwardStretHandler(id self, SEL sel)
- {
- objc_defaultForwardHandler(self, sel);
- }
- void *_objc_forward_stret_handler = (void*)objc_defaultForwardStretHandler;
- #endif
- #endif
- void objc_setForwardHandler(void *fwd, void *fwd_stret)
- {
- _objc_forward_handler = fwd;
- #if SUPPORT_STRET
- _objc_forward_stret_handler = fwd_stret;
- #endif
- }
- #if !__OBJC2__
- // GrP fixme
- extern "C" Class _objc_getOrigClass(const char *name);
- #endif
- static BOOL internal_class_getImageName(Class cls, const char **outName)
- {
- #if !__OBJC2__
- cls = _objc_getOrigClass(cls->demangledName());
- #endif
- auto result = dyld_image_path_containing_address(cls);
- *outName = result;
- return (result != nil);
- }
- static ChainedHookFunction<objc_hook_getImageName>
- GetImageNameHook{internal_class_getImageName};
- void objc_setHook_getImageName(objc_hook_getImageName newValue,
- objc_hook_getImageName *outOldValue)
- {
- GetImageNameHook.set(newValue, outOldValue);
- }
- const char *class_getImageName(Class cls)
- {
- if (!cls) return nil;
- const char *name;
- if (GetImageNameHook.get()(cls, &name)) return name;
- else return nil;
- }
- /**********************************************************************
- * Fast Enumeration Support
- **********************************************************************/
- static void (*enumerationMutationHandler)(id);
- /**********************************************************************
- * objc_enumerationMutation
- * called by compiler when a mutation is detected during foreach iteration
- **********************************************************************/
- void objc_enumerationMutation(id object) {
- if (enumerationMutationHandler == nil) {
- _objc_fatal("mutation detected during 'for(... in ...)' enumeration of object %p.", (void*)object);
- }
- (*enumerationMutationHandler)(object);
- }
- /**********************************************************************
- * objc_setEnumerationMutationHandler
- * an entry point to customize mutation error handing
- **********************************************************************/
- void objc_setEnumerationMutationHandler(void (*handler)(id)) {
- enumerationMutationHandler = handler;
- }
- /**********************************************************************
- * Associative Reference Support
- **********************************************************************/
- id objc_getAssociatedObject(id object, const void *key) {
- return _object_get_associative_reference(object, (void *)key);
- }
- void objc_setAssociatedObject(id object, const void *key, id value, objc_AssociationPolicy policy) {
- _object_set_associative_reference(object, (void *)key, value, policy);
- }
- void objc_removeAssociatedObjects(id object)
- {
- if (object && object->hasAssociatedObjects()) {
- _object_remove_assocations(object);
- }
- }
- #if SUPPORT_GC_COMPAT
- #include <mach-o/fat.h>
- // GC preflight for an app executable.
- enum GCness {
- WithGC = 1,
- WithoutGC = 0,
- Error = -1
- };
- // Overloaded template wrappers around clang's overflow-checked arithmetic.
- template <typename T> bool uadd_overflow(T x, T y, T* sum);
- template <typename T> bool usub_overflow(T x, T y, T* diff);
- template <typename T> bool umul_overflow(T x, T y, T* prod);
- template <typename T> bool sadd_overflow(T x, T y, T* sum);
- template <typename T> bool ssub_overflow(T x, T y, T* diff);
- template <typename T> bool smul_overflow(T x, T y, T* prod);
- template <> bool uadd_overflow(unsigned x, unsigned y, unsigned* sum) { return __builtin_uadd_overflow(x, y, sum); }
- template <> bool uadd_overflow(unsigned long x, unsigned long y, unsigned long* sum) { return __builtin_uaddl_overflow(x, y, sum); }
- template <> bool uadd_overflow(unsigned long long x, unsigned long long y, unsigned long long* sum) { return __builtin_uaddll_overflow(x, y, sum); }
- template <> bool usub_overflow(unsigned x, unsigned y, unsigned* diff) { return __builtin_usub_overflow(x, y, diff); }
- template <> bool usub_overflow(unsigned long x, unsigned long y, unsigned long* diff) { return __builtin_usubl_overflow(x, y, diff); }
- template <> bool usub_overflow(unsigned long long x, unsigned long long y, unsigned long long* diff) { return __builtin_usubll_overflow(x, y, diff); }
- template <> bool umul_overflow(unsigned x, unsigned y, unsigned* prod) { return __builtin_umul_overflow(x, y, prod); }
- template <> bool umul_overflow(unsigned long x, unsigned long y, unsigned long* prod) { return __builtin_umull_overflow(x, y, prod); }
- template <> bool umul_overflow(unsigned long long x, unsigned long long y, unsigned long long* prod) { return __builtin_umulll_overflow(x, y, prod); }
- template <> bool sadd_overflow(signed x, signed y, signed* sum) { return __builtin_sadd_overflow(x, y, sum); }
- template <> bool sadd_overflow(signed long x, signed long y, signed long* sum) { return __builtin_saddl_overflow(x, y, sum); }
- template <> bool sadd_overflow(signed long long x, signed long long y, signed long long* sum) { return __builtin_saddll_overflow(x, y, sum); }
- template <> bool ssub_overflow(signed x, signed y, signed* diff) { return __builtin_ssub_overflow(x, y, diff); }
- template <> bool ssub_overflow(signed long x, signed long y, signed long* diff) { return __builtin_ssubl_overflow(x, y, diff); }
- template <> bool ssub_overflow(signed long long x, signed long long y, signed long long* diff) { return __builtin_ssubll_overflow(x, y, diff); }
- template <> bool smul_overflow(signed x, signed y, signed* prod) { return __builtin_smul_overflow(x, y, prod); }
- template <> bool smul_overflow(signed long x, signed long y, signed long* prod) { return __builtin_smull_overflow(x, y, prod); }
- template <> bool smul_overflow(signed long long x, signed long long y, signed long long* prod) { return __builtin_smulll_overflow(x, y, prod); }
- // Range-checking subview of a file.
- class FileSlice {
- int fd;
- uint64_t sliceOffset;
- uint64_t sliceSize;
- public:
- FileSlice() : fd(-1), sliceOffset(0), sliceSize(0) { }
- FileSlice(int newfd, uint64_t newOffset, uint64_t newSize)
- : fd(newfd) , sliceOffset(newOffset) , sliceSize(newSize) { }
- // Read bytes from this slice.
- // Returns YES if all bytes were read successfully.
- bool pread(void *buf, uint64_t readSize, uint64_t readOffset = 0) {
- uint64_t readEnd;
- if (uadd_overflow(readOffset, readSize, &readEnd)) return NO;
- if (readEnd > sliceSize) return NO;
- uint64_t preadOffset;
- if (uadd_overflow(sliceOffset, readOffset, &preadOffset)) return NO;
- int64_t readed = ::pread(fd, buf, (size_t)readSize, preadOffset);
- if (readed < 0 || (uint64_t)readed != readSize) return NO;
- return YES;
- }
- // Create a new slice that is a subset of this slice.
- // Returnes YES if successful.
- bool slice(uint64_t newOffset, uint64_t newSize, FileSlice& result) {
- // fixme arithmetic overflow
- uint64_t newEnd;
- if (uadd_overflow(newOffset, newSize, &newEnd)) return NO;
- if (newEnd > sliceSize) return NO;
- if (uadd_overflow(sliceOffset, newOffset, &result.sliceOffset)) {
- return NO;
- }
- result.sliceSize = newSize;
- result.fd = fd;
- return YES;
- }
- // Shorten this slice in place by removing a range from the start.
- bool advance(uint64_t distance) {
- if (distance > sliceSize) return NO;
- if (uadd_overflow(sliceOffset, distance, &sliceOffset)) return NO;
- if (usub_overflow(sliceSize, distance, &sliceSize)) return NO;
- return YES;
- }
- };
- // Arch32 and Arch64 are used to specialize sliceRequiresGC()
- // to interrogate old-ABI i386 and new-ABI x86_64 files.
- struct Arch32 {
- using mh_t = struct mach_header;
- using segment_command_t = struct segment_command;
- using section_t = struct section;
- enum : cpu_type_t { cputype = CPU_TYPE_X86 };
- enum : int { segment_cmd = LC_SEGMENT };
- static bool isObjCSegment(const char *segname) {
- return segnameEquals(segname, "__OBJC");
- }
- static bool isImageInfoSection(const char *sectname) {
- return sectnameEquals(sectname, "__image_info");
- }
- static bool countClasses(FileSlice file, section_t& sect,
- int& classCount, int& classrefCount)
- {
- if (sectnameEquals(sect.sectname, "__cls_refs")) {
- classrefCount += sect.size / 4;
- }
- else if (sectnameEquals(sect.sectname, "__module_info")) {
- struct module_t {
- uint32_t version;
- uint32_t size;
- uint32_t name; // not bound
- uint32_t symtab; // not bound
- };
- size_t mod_count = sect.size / sizeof(module_t);
- if (mod_count == 0) {
- // no classes defined
- } else if (mod_count > 1) {
- // AppleScriptObjC apps only have one module.
- // Disqualify this app by setting classCount to non-zero.
- // We don't actually need an accurate count.
- classCount = 1;
- } else if (mod_count == 1) {
- FileSlice moduleSlice;
- if (!file.slice(sect.offset, sect.size, moduleSlice)) return NO;
- module_t module;
- if (!moduleSlice.pread(&module, sizeof(module))) return NO;
- if (module.symtab) {
- // AppleScriptObjC apps only have a module with no symtab.
- // Disqualify this app by setting classCount to non-zero.
- // We don't actually need an accurate count.
- classCount = 1;
- }
- }
-
- }
- return YES;
- }
- };
- struct Arch64 {
- using mh_t = struct mach_header_64;
- using segment_command_t = struct segment_command_64;
- using section_t = struct section_64;
- enum : cpu_type_t { cputype = CPU_TYPE_X86_64 };
- enum : int { segment_cmd = LC_SEGMENT_64 };
- static bool isObjCSegment(const char *segname) {
- return
- segnameEquals(segname, "__DATA") ||
- segnameEquals(segname, "__DATA_CONST") ||
- segnameEquals(segname, "__DATA_DIRTY");
- }
- static bool isImageInfoSection(const char *sectname) {
- return sectnameEquals(sectname, "__objc_imageinfo");
- }
- static bool countClasses(FileSlice, section_t& sect,
- int& classCount, int& classrefCount)
- {
- if (sectnameEquals(sect.sectname, "__objc_classlist")) {
- classCount += sect.size / 8;
- }
- else if (sectnameEquals(sect.sectname, "__objc_classrefs")) {
- classrefCount += sect.size / 8;
- }
- return YES;
- }
- };
- #define SANE_HEADER_SIZE (32*1024)
- template <typename Arch>
- static int sliceRequiresGC(typename Arch::mh_t mh, FileSlice file)
- {
- // We assume there is only one arch per pointer size that can support GC.
- // (i386 and x86_64)
- if (mh.cputype != Arch::cputype) return 0;
- // We only check the main executable.
- if (mh.filetype != MH_EXECUTE) return 0;
- // Look for ObjC segment.
- // Look for AppleScriptObjC linkage.
- FileSlice cmds;
- if (!file.slice(sizeof(mh), mh.sizeofcmds, cmds)) return Error;
- // Exception: Some AppleScriptObjC apps built for GC can run without GC.
- // 1. executable defines no classes
- // 2. executable references NSBundle only
- // 3. executable links to AppleScriptObjC.framework
- // Note that shouldRejectGCApp() also knows about this.
- bool wantsGC = NO;
- bool linksToAppleScriptObjC = NO;
- int classCount = 0;
- int classrefCount = 0;
- // Disallow abusively-large executables that could hang this checker.
- // dyld performs similar checks (MAX_MACH_O_HEADER_AND_LOAD_COMMANDS_SIZE)
- if (mh.sizeofcmds > SANE_HEADER_SIZE) return Error;
- if (mh.ncmds > mh.sizeofcmds / sizeof(struct load_command)) return Error;
- for (uint32_t cmdindex = 0; cmdindex < mh.ncmds; cmdindex++) {
- struct load_command lc;
- if (!cmds.pread(&lc, sizeof(lc))) return Error;
- // Disallow abusively-small load commands that could hang this checker.
- // dyld performs a similar check.
- if (lc.cmdsize < sizeof(lc)) return Error;
- if (lc.cmd == LC_LOAD_DYLIB || lc.cmd == LC_LOAD_UPWARD_DYLIB ||
- lc.cmd == LC_LOAD_WEAK_DYLIB || lc.cmd == LC_REEXPORT_DYLIB)
- {
- // Look for AppleScriptObjC linkage.
- FileSlice dylibSlice;
- if (!cmds.slice(0, lc.cmdsize, dylibSlice)) return Error;
- struct dylib_command dylib;
- if (!dylibSlice.pread(&dylib, sizeof(dylib))) return Error;
- const char *asoFramework =
- "/System/Library/Frameworks/AppleScriptObjC.framework"
- "/Versions/A/AppleScriptObjC";
- size_t asoLen = strlen(asoFramework);
- FileSlice nameSlice;
- if (dylibSlice.slice(dylib.dylib.name.offset, asoLen, nameSlice)) {
- char name[asoLen];
- if (!nameSlice.pread(name, asoLen)) return Error;
- if (0 == memcmp(name, asoFramework, asoLen)) {
- linksToAppleScriptObjC = YES;
- }
- }
- }
- else if (lc.cmd == Arch::segment_cmd) {
- typename Arch::segment_command_t seg;
- if (!cmds.pread(&seg, sizeof(seg))) return Error;
- if (Arch::isObjCSegment(seg.segname)) {
- // ObjC segment.
- // Look for image info section.
- // Look for class implementations and class references.
- FileSlice sections;
- if (!cmds.slice(0, seg.cmdsize, sections)) return Error;
- if (!sections.advance(sizeof(seg))) return Error;
-
- for (uint32_t segindex = 0; segindex < seg.nsects; segindex++) {
- typename Arch::section_t sect;
- if (!sections.pread(§, sizeof(sect))) return Error;
- if (!Arch::isObjCSegment(sect.segname)) return Error;
- if (!Arch::countClasses(file, sect,
- classCount, classrefCount))
- {
- return Error;
- }
- if ((sect.flags & SECTION_TYPE) == S_REGULAR &&
- Arch::isImageInfoSection(sect.sectname))
- {
- // ObjC image info section.
- // Check its contents.
- FileSlice section;
- if (!file.slice(sect.offset, sect.size, section)) {
- return Error;
- }
- // The subset of objc_image_info that was in use for GC.
- struct {
- uint32_t version;
- uint32_t flags;
- } ii;
- if (!section.pread(&ii, sizeof(ii))) return Error;
- if (ii.flags & (1<<1)) {
- // App wants GC.
- // Don't return yet because we need to
- // check the AppleScriptObjC exception.
- wantsGC = YES;
- }
- }
- if (!sections.advance(sizeof(sect))) return Error;
- }
- }
- }
- if (!cmds.advance(lc.cmdsize)) return Error;
- }
- if (!wantsGC) {
- // No GC bit set.
- return WithoutGC;
- }
- else if (linksToAppleScriptObjC && classCount == 0 && classrefCount == 1) {
- // Has GC bit but falls under the AppleScriptObjC exception.
- return WithoutGC;
- }
- else {
- // Has GC bit and is not AppleScriptObjC.
- return WithGC;
- }
- }
- static int sliceRequiresGC(FileSlice file)
- {
- // Read mach-o header.
- struct mach_header_64 mh;
- if (!file.pread(&mh, sizeof(mh))) return Error;
- // Check header magic. We assume only host-endian slices can support GC.
- switch (mh.magic) {
- case MH_MAGIC:
- return sliceRequiresGC<Arch32>(*(struct mach_header *)&mh, file);
- case MH_MAGIC_64:
- return sliceRequiresGC<Arch64>(mh, file);
- default:
- return WithoutGC;
- }
- }
- // Returns 1 if any slice requires GC.
- // Returns 0 if no slice requires GC.
- // Returns -1 on any I/O or file format error.
- int objc_appRequiresGC(int fd)
- {
- struct stat st;
- if (fstat(fd, &st) < 0) return Error;
- FileSlice file(fd, 0, st.st_size);
- // Read fat header, if any.
- struct fat_header fh;
- if (! file.pread(&fh, sizeof(fh))) return Error;
- int result;
- if (OSSwapBigToHostInt32(fh.magic) == FAT_MAGIC) {
- // Fat header.
- size_t nfat_arch = OSSwapBigToHostInt32(fh.nfat_arch);
- // Disallow abusively-large files that could hang this checker.
- if (nfat_arch > SANE_HEADER_SIZE/sizeof(struct fat_arch)) return Error;
- size_t fat_size;
- if (umul_overflow(nfat_arch, sizeof(struct fat_arch), &fat_size)) {
- return Error;
- }
- FileSlice archlist;
- if (!file.slice(sizeof(fh), fat_size, archlist)) return Error;
- result = WithoutGC;
- for (size_t i = 0; i < nfat_arch; i++) {
- struct fat_arch fa;
- if (!archlist.pread(&fa, sizeof(fa))) return Error;
- if (!archlist.advance(sizeof(fa))) return Error;
- FileSlice thin;
- if (!file.slice(OSSwapBigToHostInt32(fa.offset),
- OSSwapBigToHostInt32(fa.size), thin))
- {
- return Error;
- }
- switch (sliceRequiresGC(thin)) {
- case WithoutGC: break; // no change
- case WithGC: if (result != Error) result = WithGC; break;
- case Error: result = Error; break;
- }
- }
- }
- else {
- // Thin header or not a header.
- result = sliceRequiresGC(file);
- }
-
- return result;
- }
- // SUPPORT_GC_COMPAT
- #endif
|