]> git.saurik.com Git - apple/objc4.git/blob - runtime/objc-runtime-old.mm
objc4-750.tar.gz
[apple/objc4.git] / runtime / objc-runtime-old.mm
1 /*
2 * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 /***********************************************************************
25 * objc-runtime-old.m
26 * Support for old-ABI classes and images.
27 **********************************************************************/
28
29 /***********************************************************************
30 * Class loading and connecting (GrP 2004-2-11)
31 *
32 * When images are loaded (during program startup or otherwise), the
33 * runtime needs to load classes and categories from the images, connect
34 * classes to superclasses and categories to parent classes, and call
35 * +load methods.
36 *
37 * The Objective-C runtime can cope with classes arriving in any order.
38 * That is, a class may be discovered by the runtime before some
39 * superclass is known. To handle out-of-order class loads, the
40 * runtime uses a "pending class" system.
41 *
42 * (Historical note)
43 * Panther and earlier: many classes arrived out-of-order because of
44 * the poorly-ordered callback from dyld. However, the runtime's
45 * pending mechanism only handled "missing superclass" and not
46 * "present superclass but missing higher class". See Radar #3225652.
47 * Tiger: The runtime's pending mechanism was augmented to handle
48 * arbitrary missing classes. In addition, dyld was rewritten and
49 * now sends the callbacks in strictly bottom-up link order.
50 * The pending mechanism may now be needed only for rare and
51 * hard to construct programs.
52 * (End historical note)
53 *
54 * A class when first seen in an image is considered "unconnected".
55 * It is stored in `unconnected_class_hash`. If all of the class's
56 * superclasses exist and are already "connected", then the new class
57 * can be connected to its superclasses and moved to `class_hash` for
58 * normal use. Otherwise, the class waits in `unconnected_class_hash`
59 * until the superclasses finish connecting.
60 *
61 * A "connected" class is
62 * (1) in `class_hash`,
63 * (2) connected to its superclasses,
64 * (3) has no unconnected superclasses,
65 * (4) is otherwise initialized and ready for use, and
66 * (5) is eligible for +load if +load has not already been called.
67 *
68 * An "unconnected" class is
69 * (1) in `unconnected_class_hash`,
70 * (2) not connected to its superclasses,
71 * (3) has an immediate superclass which is either missing or unconnected,
72 * (4) is not ready for use, and
73 * (5) is not yet eligible for +load.
74 *
75 * Image mapping is NOT CURRENTLY THREAD-SAFE with respect to just about
76 * anything. Image mapping IS RE-ENTRANT in several places: superclass
77 * lookup may cause ZeroLink to load another image, and +load calls may
78 * cause dyld to load another image.
79 *
80 * Image mapping sequence:
81 *
82 * Read all classes in all new images.
83 * Add them all to unconnected_class_hash.
84 * Note any +load implementations before categories are attached.
85 * Attach any pending categories.
86 * Read all categories in all new images.
87 * Attach categories whose parent class exists (connected or not),
88 * and pend the rest.
89 * Mark them all eligible for +load (if implemented), even if the
90 * parent class is missing.
91 * Try to connect all classes in all new images.
92 * If the superclass is missing, pend the class
93 * If the superclass is unconnected, try to recursively connect it
94 * If the superclass is connected:
95 * connect the class
96 * mark the class eligible for +load, if implemented
97 * fix up any pended classrefs referring to the class
98 * connect any pended subclasses of the class
99 * Resolve selector refs and class refs in all new images.
100 * Class refs whose classes still do not exist are pended.
101 * Fix up protocol objects in all new images.
102 * Call +load for classes and categories.
103 * May include classes or categories that are not in these images,
104 * but are newly eligible because of these image.
105 * Class +loads will be called superclass-first because of the
106 * superclass-first nature of the connecting process.
107 * Category +load needs to be deferred until the parent class is
108 * connected and has had its +load called.
109 *
110 * Performance: all classes are read before any categories are read.
111 * Fewer categories need be pended for lack of a parent class.
112 *
113 * Performance: all categories are attempted to be attached before
114 * any classes are connected. Fewer class caches need be flushed.
115 * (Unconnected classes and their respective subclasses are guaranteed
116 * to be un-messageable, so their caches will be empty.)
117 *
118 * Performance: all classes are read before any classes are connected.
119 * Fewer classes need be pended for lack of a superclass.
120 *
121 * Correctness: all selector and class refs are fixed before any
122 * protocol fixups or +load methods. libobjc itself contains selector
123 * and class refs which are used in protocol fixup and +load.
124 *
125 * Correctness: +load methods are scheduled in bottom-up link order.
126 * This constraint is in addition to superclass order. Some +load
127 * implementations expect to use another class in a linked-to library,
128 * even if the two classes don't share a direct superclass relationship.
129 *
130 * Correctness: all classes are scanned for +load before any categories
131 * are attached. Otherwise, if a category implements +load and its class
132 * has no class methods, the class's +load scan would find the category's
133 * +load method, which would then be called twice.
134 *
135 * Correctness: pended class refs are not fixed up until the class is
136 * connected. Classes with missing weak superclasses remain unconnected.
137 * Class refs to classes with missing weak superclasses must be nil.
138 * Therefore class refs to unconnected classes must remain un-fixed.
139 *
140 **********************************************************************/
141
142 #if !__OBJC2__
143
144 #include "objc-private.h"
145 #include "objc-runtime-old.h"
146 #include "objc-file-old.h"
147 #include "objc-cache-old.h"
148 #include "objc-loadmethod.h"
149
150
151 typedef struct _objc_unresolved_category
152 {
153 struct _objc_unresolved_category *next;
154 old_category *cat; // may be nil
155 long version;
156 } _objc_unresolved_category;
157
158 typedef struct _PendingSubclass
159 {
160 Class subclass; // subclass to finish connecting; may be nil
161 struct _PendingSubclass *next;
162 } PendingSubclass;
163
164 typedef struct _PendingClassRef
165 {
166 Class *ref; // class reference to fix up; may be nil
167 // (ref & 1) is a metaclass reference
168 struct _PendingClassRef *next;
169 } PendingClassRef;
170
171
172 static uintptr_t classHash(void *info, Class data);
173 static int classIsEqual(void *info, Class name, Class cls);
174 static int _objc_defaultClassHandler(const char *clsName);
175 static inline NXMapTable *pendingClassRefsMapTable(void);
176 static inline NXMapTable *pendingSubclassesMapTable(void);
177 static void pendClassInstallation(Class cls, const char *superName);
178 static void pendClassReference(Class *ref, const char *className, bool isMeta);
179 static void resolve_references_to_class(Class cls);
180 static void resolve_subclasses_of_class(Class cls);
181 static void really_connect_class(Class cls, Class supercls);
182 static bool connect_class(Class cls);
183 static void map_method_descs (struct objc_method_description_list * methods, bool copy);
184 static void _objcTweakMethodListPointerForClass(Class cls);
185 static inline void _objc_add_category(Class cls, old_category *category, int version);
186 static bool _objc_add_category_flush_caches(Class cls, old_category *category, int version);
187 static _objc_unresolved_category *reverse_cat(_objc_unresolved_category *cat);
188 static void resolve_categories_for_class(Class cls);
189 static bool _objc_register_category(old_category *cat, int version);
190
191
192 // Function called when a class is loaded from an image
193 void (*callbackFunction)(Class, Category) = 0;
194
195 // Hash table of classes
196 NXHashTable * class_hash = 0;
197 static NXHashTablePrototype classHashPrototype =
198 {
199 (uintptr_t (*) (const void *, const void *)) classHash,
200 (int (*)(const void *, const void *, const void *)) classIsEqual,
201 NXNoEffectFree, 0
202 };
203
204 // Hash table of unconnected classes
205 static NXHashTable *unconnected_class_hash = nil;
206
207 // Exported copy of class_hash variable (hook for debugging tools)
208 NXHashTable *_objc_debug_class_hash = nil;
209
210 // Category and class registries
211 // Keys are COPIES of strings, to prevent stale pointers with unloaded bundles
212 // Use NXMapKeyCopyingInsert and NXMapKeyFreeingRemove
213 static NXMapTable * category_hash = nil;
214
215 // Keys are COPIES of strings, to prevent stale pointers with unloaded bundles
216 // Use NXMapKeyCopyingInsert and NXMapKeyFreeingRemove
217 static NXMapTable * pendingClassRefsMap = nil;
218 static NXMapTable * pendingSubclassesMap = nil;
219
220 // Protocols
221 static NXMapTable *protocol_map = nil; // name -> protocol
222 static NXMapTable *protocol_ext_map = nil; // protocol -> protocol ext
223
224 // Function pointer objc_getClass calls through when class is not found
225 static int (*objc_classHandler) (const char *) = _objc_defaultClassHandler;
226
227 // Function pointer called by objc_getClass and objc_lookupClass when
228 // class is not found. _objc_classLoader is called before objc_classHandler.
229 static BOOL (*_objc_classLoader)(const char *) = nil;
230
231
232 /***********************************************************************
233 * objc_dump_class_hash. Log names of all known classes.
234 **********************************************************************/
235 void objc_dump_class_hash(void)
236 {
237 NXHashTable *table;
238 unsigned count;
239 Class data;
240 NXHashState state;
241
242 table = class_hash;
243 count = 0;
244 state = NXInitHashState (table);
245 while (NXNextHashState (table, &state, (void **) &data))
246 printf ("class %d: %s\n", ++count, data->nameForLogging());
247 }
248
249
250 /***********************************************************************
251 * _objc_init_class_hash. Return the class lookup table, create it if
252 * necessary.
253 **********************************************************************/
254 void _objc_init_class_hash(void)
255 {
256 // Do nothing if class hash table already exists
257 if (class_hash)
258 return;
259
260 // class_hash starts small, with only enough capacity for libobjc itself.
261 // If a second library is found by map_images(), class_hash is immediately
262 // resized to capacity 1024 to cut down on rehashes.
263 // Old numbers: A smallish Foundation+AppKit program will have
264 // about 520 classes. Larger apps (like IB or WOB) have more like
265 // 800 classes. Some customers have massive quantities of classes.
266 // Foundation-only programs aren't likely to notice the ~6K loss.
267 class_hash = NXCreateHashTable(classHashPrototype, 16, nil);
268 _objc_debug_class_hash = class_hash;
269 }
270
271
272 /***********************************************************************
273 * objc_getClassList. Return the known classes.
274 **********************************************************************/
275 int objc_getClassList(Class *buffer, int bufferLen)
276 {
277 NXHashState state;
278 Class cls;
279 int cnt, num;
280
281 mutex_locker_t lock(classLock);
282 if (!class_hash) return 0;
283
284 num = NXCountHashTable(class_hash);
285 if (nil == buffer) return num;
286
287 cnt = 0;
288 state = NXInitHashState(class_hash);
289 while (cnt < bufferLen &&
290 NXNextHashState(class_hash, &state, (void **)&cls))
291 {
292 buffer[cnt++] = cls;
293 }
294
295 return num;
296 }
297
298
299 /***********************************************************************
300 * objc_copyClassList
301 * Returns pointers to all classes.
302 * This requires all classes be realized, which is regretfully non-lazy.
303 *
304 * outCount may be nil. *outCount is the number of classes returned.
305 * If the returned array is not nil, it is nil-terminated and must be
306 * freed with free().
307 * Locking: acquires classLock
308 **********************************************************************/
309 Class *
310 objc_copyClassList(unsigned int *outCount)
311 {
312 Class *result;
313 unsigned int count;
314
315 mutex_locker_t lock(classLock);
316 result = nil;
317 count = class_hash ? NXCountHashTable(class_hash) : 0;
318
319 if (count > 0) {
320 Class cls;
321 NXHashState state = NXInitHashState(class_hash);
322 result = (Class *)malloc((1+count) * sizeof(Class));
323 count = 0;
324 while (NXNextHashState(class_hash, &state, (void **)&cls)) {
325 result[count++] = cls;
326 }
327 result[count] = nil;
328 }
329
330 if (outCount) *outCount = count;
331 return result;
332 }
333
334
335 /***********************************************************************
336 * objc_copyProtocolList
337 * Returns pointers to all protocols.
338 * Locking: acquires classLock
339 **********************************************************************/
340 Protocol * __unsafe_unretained *
341 objc_copyProtocolList(unsigned int *outCount)
342 {
343 int count, i;
344 Protocol *proto;
345 const char *name;
346 NXMapState state;
347 Protocol **result;
348
349 mutex_locker_t lock(classLock);
350
351 count = NXCountMapTable(protocol_map);
352 if (count == 0) {
353 if (outCount) *outCount = 0;
354 return nil;
355 }
356
357 result = (Protocol **)calloc(1 + count, sizeof(Protocol *));
358
359 i = 0;
360 state = NXInitMapState(protocol_map);
361 while (NXNextMapState(protocol_map, &state,
362 (const void **)&name, (const void **)&proto))
363 {
364 result[i++] = proto;
365 }
366
367 result[i++] = nil;
368 assert(i == count+1);
369
370 if (outCount) *outCount = count;
371 return result;
372 }
373
374
375 /***********************************************************************
376 * objc_getClasses. Return class lookup table.
377 *
378 * NOTE: This function is very dangerous, since you cannot safely use
379 * the hashtable without locking it, and the lock is private!
380 **********************************************************************/
381 void *objc_getClasses(void)
382 {
383 OBJC_WARN_DEPRECATED;
384
385 // Return the class lookup hash table
386 return class_hash;
387 }
388
389
390 /***********************************************************************
391 * classHash.
392 **********************************************************************/
393 static uintptr_t classHash(void *info, Class data)
394 {
395 // Nil classes hash to zero
396 if (!data)
397 return 0;
398
399 // Call through to real hash function
400 return _objc_strhash (data->mangledName());
401 }
402
403 /***********************************************************************
404 * classIsEqual. Returns whether the class names match. If we ever
405 * check more than the name, routines like objc_lookUpClass have to
406 * change as well.
407 **********************************************************************/
408 static int classIsEqual(void *info, Class name, Class cls)
409 {
410 // Standard string comparison
411 return strcmp(name->mangledName(), cls->mangledName()) == 0;
412 }
413
414
415 // Unresolved future classes
416 static NXHashTable *future_class_hash = nil;
417
418 // Resolved future<->original classes
419 static NXMapTable *future_class_to_original_class_map = nil;
420 static NXMapTable *original_class_to_future_class_map = nil;
421
422 // CF requests about 20 future classes; HIToolbox requests one.
423 #define FUTURE_COUNT 32
424
425
426 /***********************************************************************
427 * setOriginalClassForFutureClass
428 * Record resolution of a future class.
429 **********************************************************************/
430 static void setOriginalClassForFutureClass(Class futureClass,
431 Class originalClass)
432 {
433 if (!future_class_to_original_class_map) {
434 future_class_to_original_class_map =
435 NXCreateMapTable(NXPtrValueMapPrototype, FUTURE_COUNT);
436 original_class_to_future_class_map =
437 NXCreateMapTable(NXPtrValueMapPrototype, FUTURE_COUNT);
438 }
439
440 NXMapInsert (future_class_to_original_class_map,
441 futureClass, originalClass);
442 NXMapInsert (original_class_to_future_class_map,
443 originalClass, futureClass);
444
445 if (PrintFuture) {
446 _objc_inform("FUTURE: using %p instead of %p for %s", (void*)futureClass, (void*)originalClass, originalClass->name);
447 }
448 }
449
450 /***********************************************************************
451 * getOriginalClassForFutureClass
452 * getFutureClassForOriginalClass
453 * Switch between a future class and its corresponding original class.
454 * The future class is the one actually in use.
455 * The original class is the one from disk.
456 **********************************************************************/
457 /*
458 static Class
459 getOriginalClassForFutureClass(Class futureClass)
460 {
461 if (!future_class_to_original_class_map) return Nil;
462 return NXMapGet (future_class_to_original_class_map, futureClass);
463 }
464 */
465 static Class
466 getFutureClassForOriginalClass(Class originalClass)
467 {
468 if (!original_class_to_future_class_map) return Nil;
469 return (Class)NXMapGet(original_class_to_future_class_map, originalClass);
470 }
471
472
473 /***********************************************************************
474 * makeFutureClass
475 * Initialize the memory in *cls with an unresolved future class with the
476 * given name. The memory is recorded in future_class_hash.
477 **********************************************************************/
478 static void makeFutureClass(Class cls, const char *name)
479 {
480 // CF requests about 20 future classes, plus HIToolbox has one.
481 if (!future_class_hash) {
482 future_class_hash =
483 NXCreateHashTable(classHashPrototype, FUTURE_COUNT, nil);
484 }
485
486 cls->name = strdup(name);
487 NXHashInsert(future_class_hash, cls);
488
489 if (PrintFuture) {
490 _objc_inform("FUTURE: reserving %p for %s", (void*)cls, name);
491 }
492 }
493
494
495 /***********************************************************************
496 * _objc_allocateFutureClass
497 * Allocate an unresolved future class for the given class name.
498 * Returns any existing allocation if one was already made.
499 * Assumes the named class doesn't exist yet.
500 * Not thread safe.
501 **********************************************************************/
502 Class _objc_allocateFutureClass(const char *name)
503 {
504 Class cls;
505
506 if (future_class_hash) {
507 objc_class query;
508 query.name = name;
509 if ((cls = (Class)NXHashGet(future_class_hash, &query))) {
510 // Already have a future class for this name.
511 return cls;
512 }
513 }
514
515 cls = _calloc_class(sizeof(objc_class));
516 makeFutureClass(cls, name);
517 return cls;
518 }
519
520
521 /***********************************************************************
522 * objc_getFutureClass. Return the id of the named class.
523 * If the class does not exist, return an uninitialized class
524 * structure that will be used for the class when and if it
525 * does get loaded.
526 * Not thread safe.
527 **********************************************************************/
528 Class objc_getFutureClass(const char *name)
529 {
530 Class cls;
531
532 // YES unconnected, NO class handler
533 // (unconnected is OK because it will someday be the real class)
534 cls = look_up_class(name, YES, NO);
535 if (cls) {
536 if (PrintFuture) {
537 _objc_inform("FUTURE: found %p already in use for %s",
538 (void*)cls, name);
539 }
540 return cls;
541 }
542
543 // No class or future class with that name yet. Make one.
544 // fixme not thread-safe with respect to
545 // simultaneous library load or getFutureClass.
546 return _objc_allocateFutureClass(name);
547 }
548
549
550 BOOL _class_isFutureClass(Class cls)
551 {
552 return cls && cls->isFuture();
553 }
554
555 bool objc_class::isFuture()
556 {
557 return future_class_hash && NXHashGet(future_class_hash, this);
558 }
559
560
561 /***********************************************************************
562 * _objc_defaultClassHandler. Default objc_classHandler. Does nothing.
563 **********************************************************************/
564 static int _objc_defaultClassHandler(const char *clsName)
565 {
566 // Return zero so objc_getClass doesn't bother re-searching
567 return 0;
568 }
569
570 /***********************************************************************
571 * objc_setClassHandler. Set objc_classHandler to the specified value.
572 *
573 * NOTE: This should probably deal with userSuppliedHandler being nil,
574 * because the objc_classHandler caller does not check... it would bus
575 * error. It would make sense to handle nil by restoring the default
576 * handler. Is anyone hacking with this, though?
577 **********************************************************************/
578 void objc_setClassHandler(int (*userSuppliedHandler)(const char *))
579 {
580 OBJC_WARN_DEPRECATED;
581
582 objc_classHandler = userSuppliedHandler;
583 }
584
585
586 /***********************************************************************
587 * _objc_setClassLoader
588 * Similar to objc_setClassHandler, but objc_classLoader is used for
589 * both objc_getClass() and objc_lookupClass(), and objc_classLoader
590 * pre-empts objc_classHandler.
591 **********************************************************************/
592 void _objc_setClassLoader(BOOL (*newClassLoader)(const char *))
593 {
594 _objc_classLoader = newClassLoader;
595 }
596
597
598 /***********************************************************************
599 * objc_getProtocol
600 * Get a protocol by name, or nil.
601 **********************************************************************/
602 Protocol *objc_getProtocol(const char *name)
603 {
604 mutex_locker_t lock(classLock);
605 if (!protocol_map) return nil;
606 return (Protocol *)NXMapGet(protocol_map, name);
607 }
608
609
610 /***********************************************************************
611 * look_up_class
612 * Map a class name to a class using various methods.
613 * This is the common implementation of objc_lookUpClass and objc_getClass,
614 * and is also used internally to get additional search options.
615 * Sequence:
616 * 1. class_hash
617 * 2. unconnected_class_hash (optional)
618 * 3. classLoader callback
619 * 4. classHandler callback (optional)
620 **********************************************************************/
621 Class look_up_class(const char *aClassName, bool includeUnconnected,
622 bool includeClassHandler)
623 {
624 bool includeClassLoader = YES; // class loader cannot be skipped
625 Class result = nil;
626 struct objc_class query;
627
628 query.name = aClassName;
629
630 retry:
631
632 if (!result && class_hash) {
633 // Check ordinary classes
634 mutex_locker_t lock(classLock);
635 result = (Class)NXHashGet(class_hash, &query);
636 }
637
638 if (!result && includeUnconnected && unconnected_class_hash) {
639 // Check not-yet-connected classes
640 mutex_locker_t lock(classLock);
641 result = (Class)NXHashGet(unconnected_class_hash, &query);
642 }
643
644 if (!result && includeClassLoader && _objc_classLoader) {
645 // Try class loader callback
646 if ((*_objc_classLoader)(aClassName)) {
647 // Re-try lookup without class loader
648 includeClassLoader = NO;
649 goto retry;
650 }
651 }
652
653 if (!result && includeClassHandler && objc_classHandler) {
654 // Try class handler callback
655 if ((*objc_classHandler)(aClassName)) {
656 // Re-try lookup without class handler or class loader
657 includeClassLoader = NO;
658 includeClassHandler = NO;
659 goto retry;
660 }
661 }
662
663 return result;
664 }
665
666
667 /***********************************************************************
668 * objc_class::isConnected
669 * Returns TRUE if class cls is connected.
670 * A connected class has either a connected superclass or a nil superclass,
671 * and is present in class_hash.
672 **********************************************************************/
673 bool objc_class::isConnected()
674 {
675 mutex_locker_t lock(classLock);
676 return NXHashMember(class_hash, this);
677 }
678
679
680 /***********************************************************************
681 * pendingClassRefsMapTable. Return a pointer to the lookup table for
682 * pending class refs.
683 **********************************************************************/
684 static inline NXMapTable *pendingClassRefsMapTable(void)
685 {
686 // Allocate table if needed
687 if (!pendingClassRefsMap) {
688 pendingClassRefsMap = NXCreateMapTable(NXStrValueMapPrototype, 10);
689 }
690
691 // Return table pointer
692 return pendingClassRefsMap;
693 }
694
695
696 /***********************************************************************
697 * pendingSubclassesMapTable. Return a pointer to the lookup table for
698 * pending subclasses.
699 **********************************************************************/
700 static inline NXMapTable *pendingSubclassesMapTable(void)
701 {
702 // Allocate table if needed
703 if (!pendingSubclassesMap) {
704 pendingSubclassesMap = NXCreateMapTable(NXStrValueMapPrototype, 10);
705 }
706
707 // Return table pointer
708 return pendingSubclassesMap;
709 }
710
711
712 /***********************************************************************
713 * pendClassInstallation
714 * Finish connecting class cls when its superclass becomes connected.
715 * Check for multiple pends of the same class because connect_class does not.
716 **********************************************************************/
717 static void pendClassInstallation(Class cls, const char *superName)
718 {
719 NXMapTable *table;
720 PendingSubclass *pending;
721 PendingSubclass *oldList;
722 PendingSubclass *l;
723
724 // Create and/or locate pending class lookup table
725 table = pendingSubclassesMapTable ();
726
727 // Make sure this class isn't already in the pending list.
728 oldList = (PendingSubclass *)NXMapGet(table, superName);
729 for (l = oldList; l != nil; l = l->next) {
730 if (l->subclass == cls) return; // already here, nothing to do
731 }
732
733 // Create entry referring to this class
734 pending = (PendingSubclass *)malloc(sizeof(PendingSubclass));
735 pending->subclass = cls;
736
737 // Link new entry into head of list of entries for this class
738 pending->next = oldList;
739
740 // (Re)place entry list in the table
741 NXMapKeyCopyingInsert (table, superName, pending);
742 }
743
744
745 /***********************************************************************
746 * pendClassReference
747 * Fix up a class ref when the class with the given name becomes connected.
748 **********************************************************************/
749 static void pendClassReference(Class *ref, const char *className, bool isMeta)
750 {
751 NXMapTable *table;
752 PendingClassRef *pending;
753
754 // Create and/or locate pending class lookup table
755 table = pendingClassRefsMapTable ();
756
757 // Create entry containing the class reference
758 pending = (PendingClassRef *)malloc(sizeof(PendingClassRef));
759 pending->ref = ref;
760 if (isMeta) {
761 pending->ref = (Class *)((uintptr_t)pending->ref | 1);
762 }
763
764 // Link new entry into head of list of entries for this class
765 pending->next = (PendingClassRef *)NXMapGet(table, className);
766
767 // (Re)place entry list in the table
768 NXMapKeyCopyingInsert (table, className, pending);
769
770 if (PrintConnecting) {
771 _objc_inform("CONNECT: pended reference to class '%s%s' at %p",
772 className, isMeta ? " (meta)" : "", (void *)ref);
773 }
774 }
775
776
777 /***********************************************************************
778 * resolve_references_to_class
779 * Fix up any pending class refs to this class.
780 **********************************************************************/
781 static void resolve_references_to_class(Class cls)
782 {
783 PendingClassRef *pending;
784
785 if (!pendingClassRefsMap) return; // no unresolved refs for any class
786
787 pending = (PendingClassRef *)NXMapGet(pendingClassRefsMap, cls->name);
788 if (!pending) return; // no unresolved refs for this class
789
790 NXMapKeyFreeingRemove(pendingClassRefsMap, cls->name);
791
792 if (PrintConnecting) {
793 _objc_inform("CONNECT: resolving references to class '%s'", cls->name);
794 }
795
796 while (pending) {
797 PendingClassRef *next = pending->next;
798 if (pending->ref) {
799 bool isMeta = (uintptr_t)pending->ref & 1;
800 Class *ref =
801 (Class *)((uintptr_t)pending->ref & ~(uintptr_t)1);
802 *ref = isMeta ? cls->ISA() : cls;
803 }
804 free(pending);
805 pending = next;
806 }
807
808 if (NXCountMapTable(pendingClassRefsMap) == 0) {
809 NXFreeMapTable(pendingClassRefsMap);
810 pendingClassRefsMap = nil;
811 }
812 }
813
814
815 /***********************************************************************
816 * resolve_subclasses_of_class
817 * Fix up any pending subclasses of this class.
818 **********************************************************************/
819 static void resolve_subclasses_of_class(Class cls)
820 {
821 PendingSubclass *pending;
822
823 if (!pendingSubclassesMap) return; // no unresolved subclasses
824
825 pending = (PendingSubclass *)NXMapGet(pendingSubclassesMap, cls->name);
826 if (!pending) return; // no unresolved subclasses for this class
827
828 NXMapKeyFreeingRemove(pendingSubclassesMap, cls->name);
829
830 // Destroy the pending table if it's now empty, to save memory.
831 if (NXCountMapTable(pendingSubclassesMap) == 0) {
832 NXFreeMapTable(pendingSubclassesMap);
833 pendingSubclassesMap = nil;
834 }
835
836 if (PrintConnecting) {
837 _objc_inform("CONNECT: resolving subclasses of class '%s'", cls->name);
838 }
839
840 while (pending) {
841 PendingSubclass *next = pending->next;
842 if (pending->subclass) connect_class(pending->subclass);
843 free(pending);
844 pending = next;
845 }
846 }
847
848
849 /***********************************************************************
850 * really_connect_class
851 * Connect cls to superclass supercls unconditionally.
852 * Also adjust the class hash tables and handle pended subclasses.
853 *
854 * This should be called from connect_class() ONLY.
855 **********************************************************************/
856 static void really_connect_class(Class cls,
857 Class supercls)
858 {
859 Class oldCls;
860
861 // Connect superclass pointers.
862 set_superclass(cls, supercls, YES);
863
864 // Done!
865 cls->info |= CLS_CONNECTED;
866
867 {
868 mutex_locker_t lock(classLock);
869
870 // Update hash tables.
871 NXHashRemove(unconnected_class_hash, cls);
872 oldCls = (Class)NXHashInsert(class_hash, cls);
873
874 // Delete unconnected_class_hash if it is now empty.
875 if (NXCountHashTable(unconnected_class_hash) == 0) {
876 NXFreeHashTable(unconnected_class_hash);
877 unconnected_class_hash = nil;
878 }
879
880 // No duplicate classes allowed.
881 // Duplicates should have been rejected by _objc_read_classes_from_image
882 assert(!oldCls);
883 }
884
885 // Fix up pended class refs to this class, if any
886 resolve_references_to_class(cls);
887
888 // Connect newly-connectable subclasses
889 resolve_subclasses_of_class(cls);
890
891 // Debugging: if this class has ivars, make sure this class's ivars don't
892 // overlap with its super's. This catches some broken fragile base classes.
893 // Do not use super->instance_size vs. self->ivar[0] to check this.
894 // Ivars may be packed across instance_size boundaries.
895 if (DebugFragileSuperclasses && cls->ivars && cls->ivars->ivar_count) {
896 Class ivar_cls = supercls;
897
898 // Find closest superclass that has some ivars, if one exists.
899 while (ivar_cls &&
900 (!ivar_cls->ivars || ivar_cls->ivars->ivar_count == 0))
901 {
902 ivar_cls = ivar_cls->superclass;
903 }
904
905 if (ivar_cls) {
906 // Compare superclass's last ivar to this class's first ivar
907 old_ivar *super_ivar =
908 &ivar_cls->ivars->ivar_list[ivar_cls->ivars->ivar_count - 1];
909 old_ivar *self_ivar =
910 &cls->ivars->ivar_list[0];
911
912 // fixme could be smarter about super's ivar size
913 if (self_ivar->ivar_offset <= super_ivar->ivar_offset) {
914 _objc_inform("WARNING: ivars of superclass '%s' and "
915 "subclass '%s' overlap; superclass may have "
916 "changed since subclass was compiled",
917 ivar_cls->name, cls->name);
918 }
919 }
920 }
921 }
922
923
924 /***********************************************************************
925 * connect_class
926 * Connect class cls to its superclasses, if possible.
927 * If cls becomes connected, move it from unconnected_class_hash
928 * to connected_class_hash.
929 * Returns TRUE if cls is connected.
930 * Returns FALSE if cls could not be connected for some reason
931 * (missing superclass or still-unconnected superclass)
932 **********************************************************************/
933 static bool connect_class(Class cls)
934 {
935 if (cls->isConnected()) {
936 // This class is already connected to its superclass.
937 // Do nothing.
938 return TRUE;
939 }
940 else if (cls->superclass == nil) {
941 // This class is a root class.
942 // Connect it to itself.
943
944 if (PrintConnecting) {
945 _objc_inform("CONNECT: class '%s' now connected (root class)",
946 cls->name);
947 }
948
949 really_connect_class(cls, nil);
950 return TRUE;
951 }
952 else {
953 // This class is not a root class and is not yet connected.
954 // Connect it if its superclass and root class are already connected.
955 // Otherwise, add this class to the to-be-connected list,
956 // pending the completion of its superclass and root class.
957
958 // At this point, cls->superclass and cls->ISA()->ISA() are still STRINGS
959 char *supercls_name = (char *)cls->superclass;
960 Class supercls;
961
962 // YES unconnected, YES class handler
963 if (nil == (supercls = look_up_class(supercls_name, YES, YES))) {
964 // Superclass does not exist yet.
965 // pendClassInstallation will handle duplicate pends of this class
966 pendClassInstallation(cls, supercls_name);
967
968 if (PrintConnecting) {
969 _objc_inform("CONNECT: class '%s' NOT connected (missing super)", cls->name);
970 }
971 return FALSE;
972 }
973
974 if (! connect_class(supercls)) {
975 // Superclass exists but is not yet connected.
976 // pendClassInstallation will handle duplicate pends of this class
977 pendClassInstallation(cls, supercls_name);
978
979 if (PrintConnecting) {
980 _objc_inform("CONNECT: class '%s' NOT connected (unconnected super)", cls->name);
981 }
982 return FALSE;
983 }
984
985 // Superclass exists and is connected.
986 // Connect this class to the superclass.
987
988 if (PrintConnecting) {
989 _objc_inform("CONNECT: class '%s' now connected", cls->name);
990 }
991
992 really_connect_class(cls, supercls);
993 return TRUE;
994 }
995 }
996
997
998 /***********************************************************************
999 * _objc_read_categories_from_image.
1000 * Read all categories from the given image.
1001 * Install them on their parent classes, or register them for later
1002 * installation.
1003 * Returns YES if some method caches now need to be flushed.
1004 **********************************************************************/
1005 static bool _objc_read_categories_from_image (header_info * hi)
1006 {
1007 Module mods;
1008 size_t midx;
1009 bool needFlush = NO;
1010
1011 if (hi->info()->isReplacement()) {
1012 // Ignore any categories in this image
1013 return NO;
1014 }
1015
1016 // Major loop - process all modules in the header
1017 mods = hi->mod_ptr;
1018
1019 // NOTE: The module and category lists are traversed backwards
1020 // to preserve the pre-10.4 processing order. Changing the order
1021 // would have a small chance of introducing binary compatibility bugs.
1022 midx = hi->mod_count;
1023 while (midx-- > 0) {
1024 unsigned int index;
1025 unsigned int total;
1026
1027 // Nothing to do for a module without a symbol table
1028 if (mods[midx].symtab == nil)
1029 continue;
1030
1031 // Total entries in symbol table (class entries followed
1032 // by category entries)
1033 total = mods[midx].symtab->cls_def_cnt +
1034 mods[midx].symtab->cat_def_cnt;
1035
1036 // Minor loop - register all categories from given module
1037 index = total;
1038 while (index-- > mods[midx].symtab->cls_def_cnt) {
1039 old_category *cat = (old_category *)mods[midx].symtab->defs[index];
1040 needFlush |= _objc_register_category(cat, (int)mods[midx].version);
1041 }
1042 }
1043
1044 return needFlush;
1045 }
1046
1047
1048 /***********************************************************************
1049 * _objc_read_classes_from_image.
1050 * Read classes from the given image, perform assorted minor fixups,
1051 * scan for +load implementation.
1052 * Does not connect classes to superclasses.
1053 * Does attach pended categories to the classes.
1054 * Adds all classes to unconnected_class_hash. class_hash is unchanged.
1055 **********************************************************************/
1056 static void _objc_read_classes_from_image(header_info *hi)
1057 {
1058 unsigned int index;
1059 unsigned int midx;
1060 Module mods;
1061 int isBundle = headerIsBundle(hi);
1062
1063 if (hi->info()->isReplacement()) {
1064 // Ignore any classes in this image
1065 return;
1066 }
1067
1068 // class_hash starts small, enough only for libobjc itself.
1069 // If other Objective-C libraries are found, immediately resize
1070 // class_hash, assuming that Foundation and AppKit are about
1071 // to add lots of classes.
1072 {
1073 mutex_locker_t lock(classLock);
1074 if (hi->mhdr() != libobjc_header && _NXHashCapacity(class_hash) < 1024) {
1075 _NXHashRehashToCapacity(class_hash, 1024);
1076 }
1077 }
1078
1079 // Major loop - process all modules in the image
1080 mods = hi->mod_ptr;
1081 for (midx = 0; midx < hi->mod_count; midx += 1)
1082 {
1083 // Skip module containing no classes
1084 if (mods[midx].symtab == nil)
1085 continue;
1086
1087 // Minor loop - process all the classes in given module
1088 for (index = 0; index < mods[midx].symtab->cls_def_cnt; index += 1)
1089 {
1090 Class newCls, oldCls;
1091 bool rejected;
1092
1093 // Locate the class description pointer
1094 newCls = (Class)mods[midx].symtab->defs[index];
1095
1096 // Classes loaded from Mach-O bundles can be unloaded later.
1097 // Nothing uses this class yet, so cls->setInfo is not needed.
1098 if (isBundle) newCls->info |= CLS_FROM_BUNDLE;
1099 if (isBundle) newCls->ISA()->info |= CLS_FROM_BUNDLE;
1100
1101 // Use common static empty cache instead of nil
1102 if (newCls->cache == nil)
1103 newCls->cache = (Cache) &_objc_empty_cache;
1104 if (newCls->ISA()->cache == nil)
1105 newCls->ISA()->cache = (Cache) &_objc_empty_cache;
1106
1107 // Set metaclass version
1108 newCls->ISA()->version = mods[midx].version;
1109
1110 // methodLists is nil or a single list, not an array
1111 newCls->info |= CLS_NO_METHOD_ARRAY|CLS_NO_PROPERTY_ARRAY;
1112 newCls->ISA()->info |= CLS_NO_METHOD_ARRAY|CLS_NO_PROPERTY_ARRAY;
1113
1114 // class has no subclasses for cache flushing
1115 newCls->info |= CLS_LEAF;
1116 newCls->ISA()->info |= CLS_LEAF;
1117
1118 if (mods[midx].version >= 6) {
1119 // class structure has ivar_layout and ext fields
1120 newCls->info |= CLS_EXT;
1121 newCls->ISA()->info |= CLS_EXT;
1122 }
1123
1124 // Check for +load implementation before categories are attached
1125 if (_class_hasLoadMethod(newCls)) {
1126 newCls->ISA()->info |= CLS_HAS_LOAD_METHOD;
1127 }
1128
1129 // Install into unconnected_class_hash.
1130 {
1131 mutex_locker_t lock(classLock);
1132
1133 if (future_class_hash) {
1134 Class futureCls = (Class)
1135 NXHashRemove(future_class_hash, newCls);
1136 if (futureCls) {
1137 // Another class structure for this class was already
1138 // prepared by objc_getFutureClass(). Use it instead.
1139 free((char *)futureCls->name);
1140 memcpy(futureCls, newCls, sizeof(objc_class));
1141 setOriginalClassForFutureClass(futureCls, newCls);
1142 newCls = futureCls;
1143
1144 if (NXCountHashTable(future_class_hash) == 0) {
1145 NXFreeHashTable(future_class_hash);
1146 future_class_hash = nil;
1147 }
1148 }
1149 }
1150
1151 if (!unconnected_class_hash) {
1152 unconnected_class_hash =
1153 NXCreateHashTable(classHashPrototype, 128, nil);
1154 }
1155
1156 if ((oldCls = (Class)NXHashGet(class_hash, newCls)) ||
1157 (oldCls = (Class)NXHashGet(unconnected_class_hash, newCls)))
1158 {
1159 // Another class with this name exists. Complain and reject.
1160 inform_duplicate(newCls->name, oldCls, newCls);
1161 rejected = YES;
1162 }
1163 else {
1164 NXHashInsert(unconnected_class_hash, newCls);
1165 rejected = NO;
1166 }
1167 }
1168
1169 if (!rejected) {
1170 // Attach pended categories for this class, if any
1171 resolve_categories_for_class(newCls);
1172 }
1173 }
1174 }
1175 }
1176
1177
1178 /***********************************************************************
1179 * _objc_connect_classes_from_image.
1180 * Connect the classes in the given image to their superclasses,
1181 * or register them for later connection if any superclasses are missing.
1182 **********************************************************************/
1183 static void _objc_connect_classes_from_image(header_info *hi)
1184 {
1185 unsigned int index;
1186 unsigned int midx;
1187 Module mods;
1188 bool replacement = hi->info()->isReplacement();
1189
1190 // Major loop - process all modules in the image
1191 mods = hi->mod_ptr;
1192 for (midx = 0; midx < hi->mod_count; midx += 1)
1193 {
1194 // Skip module containing no classes
1195 if (mods[midx].symtab == nil)
1196 continue;
1197
1198 // Minor loop - process all the classes in given module
1199 for (index = 0; index < mods[midx].symtab->cls_def_cnt; index += 1)
1200 {
1201 Class cls = (Class)mods[midx].symtab->defs[index];
1202 if (! replacement) {
1203 bool connected;
1204 Class futureCls = getFutureClassForOriginalClass(cls);
1205 if (futureCls) {
1206 // objc_getFutureClass() requested a different class
1207 // struct. Fix up the original struct's superclass
1208 // field for [super ...] use, but otherwise perform
1209 // fixups on the new class struct only.
1210 const char *super_name = (const char *) cls->superclass;
1211 if (super_name) cls->superclass = objc_getClass(super_name);
1212 cls = futureCls;
1213 }
1214 connected = connect_class(cls);
1215 if (connected && callbackFunction) {
1216 (*callbackFunction)(cls, 0);
1217 }
1218 } else {
1219 // Replacement image - fix up superclass only (#3704817)
1220 // And metaclass's superclass (#5351107)
1221 const char *super_name = (const char *) cls->superclass;
1222 if (super_name) {
1223 cls->superclass = objc_getClass(super_name);
1224 // metaclass's superclass is superclass's metaclass
1225 cls->ISA()->superclass = cls->superclass->ISA();
1226 } else {
1227 // Replacement for a root class
1228 // cls->superclass already nil
1229 // root metaclass's superclass is root class
1230 cls->ISA()->superclass = cls;
1231 }
1232 }
1233 }
1234 }
1235 }
1236
1237
1238 /***********************************************************************
1239 * _objc_map_class_refs_for_image. Convert the class ref entries from
1240 * a class name string pointer to a class pointer. If the class does
1241 * not yet exist, the reference is added to a list of pending references
1242 * to be fixed up at a later date.
1243 **********************************************************************/
1244 static void fix_class_ref(Class *ref, const char *name, bool isMeta)
1245 {
1246 Class cls;
1247
1248 // Get pointer to class of this name
1249 // NO unconnected, YES class loader
1250 // (real class with weak-missing superclass is unconnected now)
1251 cls = look_up_class(name, NO, YES);
1252 if (cls) {
1253 // Referenced class exists. Fix up the reference.
1254 *ref = isMeta ? cls->ISA() : cls;
1255 } else {
1256 // Referenced class does not exist yet. Insert nil for now
1257 // (weak-linking) and fix up the reference if the class arrives later.
1258 pendClassReference (ref, name, isMeta);
1259 *ref = nil;
1260 }
1261 }
1262
1263 static void _objc_map_class_refs_for_image (header_info * hi)
1264 {
1265 Class *cls_refs;
1266 size_t count;
1267 unsigned int index;
1268
1269 // Locate class refs in image
1270 cls_refs = _getObjcClassRefs (hi, &count);
1271 if (cls_refs) {
1272 // Process each class ref
1273 for (index = 0; index < count; index += 1) {
1274 // Ref is initially class name char*
1275 const char *name = (const char *) cls_refs[index];
1276 if (!name) continue;
1277 fix_class_ref(&cls_refs[index], name, NO /*never meta*/);
1278 }
1279 }
1280 }
1281
1282
1283 /***********************************************************************
1284 * _objc_remove_pending_class_refs_in_image
1285 * Delete any pending class ref fixups for class refs in the given image,
1286 * because the image is about to be unloaded.
1287 **********************************************************************/
1288 static void removePendingReferences(Class *refs, size_t count)
1289 {
1290 Class *end = refs + count;
1291
1292 if (!refs) return;
1293 if (!pendingClassRefsMap) return;
1294
1295 // Search the pending class ref table for class refs in this range.
1296 // The class refs may have already been stomped with nil,
1297 // so there's no way to recover the original class name.
1298
1299 {
1300 const char *key;
1301 PendingClassRef *pending;
1302 NXMapState state = NXInitMapState(pendingClassRefsMap);
1303 while(NXNextMapState(pendingClassRefsMap, &state,
1304 (const void **)&key, (const void **)&pending))
1305 {
1306 for ( ; pending != nil; pending = pending->next) {
1307 if (pending->ref >= refs && pending->ref < end) {
1308 pending->ref = nil;
1309 }
1310 }
1311 }
1312 }
1313 }
1314
1315 static void _objc_remove_pending_class_refs_in_image(header_info *hi)
1316 {
1317 Class *cls_refs;
1318 size_t count;
1319
1320 // Locate class refs in this image
1321 cls_refs = _getObjcClassRefs(hi, &count);
1322 removePendingReferences(cls_refs, count);
1323 }
1324
1325
1326 /***********************************************************************
1327 * map_selrefs. For each selector in the specified array,
1328 * replace the name pointer with a uniqued selector.
1329 * If copy is TRUE, all selector data is always copied. This is used
1330 * for registering selectors from unloadable bundles, so the selector
1331 * can still be used after the bundle's data segment is unmapped.
1332 * Returns YES if dst was written to, NO if it was unchanged.
1333 **********************************************************************/
1334 static inline void map_selrefs(SEL *sels, size_t count, bool copy)
1335 {
1336 size_t index;
1337
1338 if (!sels) return;
1339
1340 mutex_locker_t lock(selLock);
1341
1342 // Process each selector
1343 for (index = 0; index < count; index += 1)
1344 {
1345 SEL sel;
1346
1347 // Lookup pointer to uniqued string
1348 sel = sel_registerNameNoLock((const char *) sels[index], copy);
1349
1350 // Replace this selector with uniqued one (avoid
1351 // modifying the VM page if this would be a NOP)
1352 if (sels[index] != sel) {
1353 sels[index] = sel;
1354 }
1355 }
1356 }
1357
1358
1359 /***********************************************************************
1360 * map_method_descs. For each method in the specified method list,
1361 * replace the name pointer with a uniqued selector.
1362 * If copy is TRUE, all selector data is always copied. This is used
1363 * for registering selectors from unloadable bundles, so the selector
1364 * can still be used after the bundle's data segment is unmapped.
1365 **********************************************************************/
1366 static void map_method_descs (struct objc_method_description_list * methods, bool copy)
1367 {
1368 int index;
1369
1370 if (!methods) return;
1371
1372 mutex_locker_t lock(selLock);
1373
1374 // Process each method
1375 for (index = 0; index < methods->count; index += 1)
1376 {
1377 struct objc_method_description * method;
1378 SEL sel;
1379
1380 // Get method entry to fix up
1381 method = &methods->list[index];
1382
1383 // Lookup pointer to uniqued string
1384 sel = sel_registerNameNoLock((const char *) method->name, copy);
1385
1386 // Replace this selector with uniqued one (avoid
1387 // modifying the VM page if this would be a NOP)
1388 if (method->name != sel)
1389 method->name = sel;
1390 }
1391 }
1392
1393
1394 /***********************************************************************
1395 * ext_for_protocol
1396 * Returns the protocol extension for the given protocol.
1397 * Returns nil if the protocol has no extension.
1398 **********************************************************************/
1399 static old_protocol_ext *ext_for_protocol(old_protocol *proto)
1400 {
1401 if (!proto) return nil;
1402 if (!protocol_ext_map) return nil;
1403 else return (old_protocol_ext *)NXMapGet(protocol_ext_map, proto);
1404 }
1405
1406
1407 /***********************************************************************
1408 * lookup_method
1409 * Search a protocol method list for a selector.
1410 **********************************************************************/
1411 static struct objc_method_description *
1412 lookup_method(struct objc_method_description_list *mlist, SEL aSel)
1413 {
1414 if (mlist) {
1415 int i;
1416 for (i = 0; i < mlist->count; i++) {
1417 if (mlist->list[i].name == aSel) {
1418 return mlist->list+i;
1419 }
1420 }
1421 }
1422 return nil;
1423 }
1424
1425
1426 /***********************************************************************
1427 * lookup_protocol_method
1428 * Search for a selector in a protocol
1429 * (and optionally recursively all incorporated protocols)
1430 **********************************************************************/
1431 struct objc_method_description *
1432 lookup_protocol_method(old_protocol *proto, SEL aSel,
1433 bool isRequiredMethod, bool isInstanceMethod,
1434 bool recursive)
1435 {
1436 struct objc_method_description *m = nil;
1437 old_protocol_ext *ext;
1438
1439 if (isRequiredMethod) {
1440 if (isInstanceMethod) {
1441 m = lookup_method(proto->instance_methods, aSel);
1442 } else {
1443 m = lookup_method(proto->class_methods, aSel);
1444 }
1445 } else if ((ext = ext_for_protocol(proto))) {
1446 if (isInstanceMethod) {
1447 m = lookup_method(ext->optional_instance_methods, aSel);
1448 } else {
1449 m = lookup_method(ext->optional_class_methods, aSel);
1450 }
1451 }
1452
1453 if (!m && recursive && proto->protocol_list) {
1454 int i;
1455 for (i = 0; !m && i < proto->protocol_list->count; i++) {
1456 m = lookup_protocol_method(proto->protocol_list->list[i], aSel,
1457 isRequiredMethod,isInstanceMethod,true);
1458 }
1459 }
1460
1461 return m;
1462 }
1463
1464
1465 /***********************************************************************
1466 * protocol_getName
1467 * Returns the name of the given protocol.
1468 **********************************************************************/
1469 const char *protocol_getName(Protocol *p)
1470 {
1471 old_protocol *proto = oldprotocol(p);
1472 if (!proto) return "nil";
1473 return proto->protocol_name;
1474 }
1475
1476
1477 /***********************************************************************
1478 * protocol_getMethodDescription
1479 * Returns the description of a named method.
1480 * Searches either required or optional methods.
1481 * Searches either instance or class methods.
1482 **********************************************************************/
1483 struct objc_method_description
1484 protocol_getMethodDescription(Protocol *p, SEL aSel,
1485 BOOL isRequiredMethod, BOOL isInstanceMethod)
1486 {
1487 struct objc_method_description empty = {nil, nil};
1488 old_protocol *proto = oldprotocol(p);
1489 struct objc_method_description *desc;
1490 if (!proto) return empty;
1491
1492 desc = lookup_protocol_method(proto, aSel,
1493 isRequiredMethod, isInstanceMethod, true);
1494 if (desc) return *desc;
1495 else return empty;
1496 }
1497
1498
1499 /***********************************************************************
1500 * protocol_copyMethodDescriptionList
1501 * Returns an array of method descriptions from a protocol.
1502 * Copies either required or optional methods.
1503 * Copies either instance or class methods.
1504 **********************************************************************/
1505 struct objc_method_description *
1506 protocol_copyMethodDescriptionList(Protocol *p,
1507 BOOL isRequiredMethod,
1508 BOOL isInstanceMethod,
1509 unsigned int *outCount)
1510 {
1511 struct objc_method_description_list *mlist = nil;
1512 old_protocol *proto = oldprotocol(p);
1513 old_protocol_ext *ext;
1514 unsigned int i, count;
1515 struct objc_method_description *result;
1516
1517 if (!proto) {
1518 if (outCount) *outCount = 0;
1519 return nil;
1520 }
1521
1522 if (isRequiredMethod) {
1523 if (isInstanceMethod) {
1524 mlist = proto->instance_methods;
1525 } else {
1526 mlist = proto->class_methods;
1527 }
1528 } else if ((ext = ext_for_protocol(proto))) {
1529 if (isInstanceMethod) {
1530 mlist = ext->optional_instance_methods;
1531 } else {
1532 mlist = ext->optional_class_methods;
1533 }
1534 }
1535
1536 if (!mlist) {
1537 if (outCount) *outCount = 0;
1538 return nil;
1539 }
1540
1541 count = mlist->count;
1542 result = (struct objc_method_description *)
1543 calloc(count + 1, sizeof(struct objc_method_description));
1544 for (i = 0; i < count; i++) {
1545 result[i] = mlist->list[i];
1546 }
1547
1548 if (outCount) *outCount = count;
1549 return result;
1550 }
1551
1552
1553 objc_property_t
1554 protocol_getProperty(Protocol *p, const char *name,
1555 BOOL isRequiredProperty, BOOL isInstanceProperty)
1556 {
1557 old_protocol *proto = oldprotocol(p);
1558 old_protocol_ext *ext;
1559 old_protocol_list *proto_list;
1560
1561 if (!proto || !name) return nil;
1562
1563 if (!isRequiredProperty) {
1564 // Only required properties are currently supported
1565 return nil;
1566 }
1567
1568 if ((ext = ext_for_protocol(proto))) {
1569 old_property_list *plist;
1570 if (isInstanceProperty) plist = ext->instance_properties;
1571 else if (ext->hasClassPropertiesField()) plist = ext->class_properties;
1572 else plist = nil;
1573
1574 if (plist) {
1575 uint32_t i;
1576 for (i = 0; i < plist->count; i++) {
1577 old_property *prop = property_list_nth(plist, i);
1578 if (0 == strcmp(name, prop->name)) {
1579 return (objc_property_t)prop;
1580 }
1581 }
1582 }
1583 }
1584
1585 if ((proto_list = proto->protocol_list)) {
1586 int i;
1587 for (i = 0; i < proto_list->count; i++) {
1588 objc_property_t prop =
1589 protocol_getProperty((Protocol *)proto_list->list[i], name,
1590 isRequiredProperty, isInstanceProperty);
1591 if (prop) return prop;
1592 }
1593 }
1594
1595 return nil;
1596 }
1597
1598
1599 objc_property_t *
1600 protocol_copyPropertyList2(Protocol *p, unsigned int *outCount,
1601 BOOL isRequiredProperty, BOOL isInstanceProperty)
1602 {
1603 old_property **result = nil;
1604 old_protocol_ext *ext;
1605 old_property_list *plist;
1606
1607 old_protocol *proto = oldprotocol(p);
1608 if (! (ext = ext_for_protocol(proto)) || !isRequiredProperty) {
1609 // Only required properties are currently supported.
1610 if (outCount) *outCount = 0;
1611 return nil;
1612 }
1613
1614 if (isInstanceProperty) plist = ext->instance_properties;
1615 else if (ext->hasClassPropertiesField()) plist = ext->class_properties;
1616 else plist = nil;
1617
1618 result = copyPropertyList(plist, outCount);
1619
1620 return (objc_property_t *)result;
1621 }
1622
1623 objc_property_t *protocol_copyPropertyList(Protocol *p, unsigned int *outCount)
1624 {
1625 return protocol_copyPropertyList2(p, outCount, YES, YES);
1626 }
1627
1628
1629 /***********************************************************************
1630 * protocol_copyProtocolList
1631 * Copies this protocol's incorporated protocols.
1632 * Does not copy those protocol's incorporated protocols in turn.
1633 **********************************************************************/
1634 Protocol * __unsafe_unretained *
1635 protocol_copyProtocolList(Protocol *p, unsigned int *outCount)
1636 {
1637 unsigned int count = 0;
1638 Protocol **result = nil;
1639 old_protocol *proto = oldprotocol(p);
1640
1641 if (!proto) {
1642 if (outCount) *outCount = 0;
1643 return nil;
1644 }
1645
1646 if (proto->protocol_list) {
1647 count = (unsigned int)proto->protocol_list->count;
1648 }
1649 if (count > 0) {
1650 unsigned int i;
1651 result = (Protocol **)malloc((count+1) * sizeof(Protocol *));
1652
1653 for (i = 0; i < count; i++) {
1654 result[i] = (Protocol *)proto->protocol_list->list[i];
1655 }
1656 result[i] = nil;
1657 }
1658
1659 if (outCount) *outCount = count;
1660 return result;
1661 }
1662
1663
1664 BOOL protocol_conformsToProtocol(Protocol *self_gen, Protocol *other_gen)
1665 {
1666 old_protocol *self = oldprotocol(self_gen);
1667 old_protocol *other = oldprotocol(other_gen);
1668
1669 if (!self || !other) {
1670 return NO;
1671 }
1672
1673 if (0 == strcmp(self->protocol_name, other->protocol_name)) {
1674 return YES;
1675 }
1676
1677 if (self->protocol_list) {
1678 int i;
1679 for (i = 0; i < self->protocol_list->count; i++) {
1680 old_protocol *proto = self->protocol_list->list[i];
1681 if (0 == strcmp(other->protocol_name, proto->protocol_name)) {
1682 return YES;
1683 }
1684 if (protocol_conformsToProtocol((Protocol *)proto, other_gen)) {
1685 return YES;
1686 }
1687 }
1688 }
1689
1690 return NO;
1691 }
1692
1693
1694 BOOL protocol_isEqual(Protocol *self, Protocol *other)
1695 {
1696 if (self == other) return YES;
1697 if (!self || !other) return NO;
1698
1699 if (!protocol_conformsToProtocol(self, other)) return NO;
1700 if (!protocol_conformsToProtocol(other, self)) return NO;
1701
1702 return YES;
1703 }
1704
1705
1706 /***********************************************************************
1707 * _protocol_getMethodTypeEncoding
1708 * Return the @encode string for the requested protocol method.
1709 * Returns nil if the compiler did not emit any extended @encode data.
1710 * Locking: runtimeLock must not be held by the caller
1711 **********************************************************************/
1712 const char *
1713 _protocol_getMethodTypeEncoding(Protocol *proto_gen, SEL sel,
1714 BOOL isRequiredMethod, BOOL isInstanceMethod)
1715 {
1716 old_protocol *proto = oldprotocol(proto_gen);
1717 if (!proto) return nil;
1718 old_protocol_ext *ext = ext_for_protocol(proto);
1719 if (!ext) return nil;
1720 if (ext->size < offsetof(old_protocol_ext, extendedMethodTypes) + sizeof(ext->extendedMethodTypes)) return nil;
1721 if (! ext->extendedMethodTypes) return nil;
1722
1723 struct objc_method_description *m =
1724 lookup_protocol_method(proto, sel,
1725 isRequiredMethod, isInstanceMethod, false);
1726 if (!m) {
1727 // No method with that name. Search incorporated protocols.
1728 if (proto->protocol_list) {
1729 for (int i = 0; i < proto->protocol_list->count; i++) {
1730 const char *enc =
1731 _protocol_getMethodTypeEncoding((Protocol *)proto->protocol_list->list[i], sel, isRequiredMethod, isInstanceMethod);
1732 if (enc) return enc;
1733 }
1734 }
1735 return nil;
1736 }
1737
1738 int i = 0;
1739 if (isRequiredMethod && isInstanceMethod) {
1740 i += ((uintptr_t)m - (uintptr_t)proto->instance_methods) / sizeof(proto->instance_methods->list[0]);
1741 goto done;
1742 } else if (proto->instance_methods) {
1743 i += proto->instance_methods->count;
1744 }
1745
1746 if (isRequiredMethod && !isInstanceMethod) {
1747 i += ((uintptr_t)m - (uintptr_t)proto->class_methods) / sizeof(proto->class_methods->list[0]);
1748 goto done;
1749 } else if (proto->class_methods) {
1750 i += proto->class_methods->count;
1751 }
1752
1753 if (!isRequiredMethod && isInstanceMethod) {
1754 i += ((uintptr_t)m - (uintptr_t)ext->optional_instance_methods) / sizeof(ext->optional_instance_methods->list[0]);
1755 goto done;
1756 } else if (ext->optional_instance_methods) {
1757 i += ext->optional_instance_methods->count;
1758 }
1759
1760 if (!isRequiredMethod && !isInstanceMethod) {
1761 i += ((uintptr_t)m - (uintptr_t)ext->optional_class_methods) / sizeof(ext->optional_class_methods->list[0]);
1762 goto done;
1763 } else if (ext->optional_class_methods) {
1764 i += ext->optional_class_methods->count;
1765 }
1766
1767 done:
1768 return ext->extendedMethodTypes[i];
1769 }
1770
1771
1772 /***********************************************************************
1773 * objc_allocateProtocol
1774 * Creates a new protocol. The protocol may not be used until
1775 * objc_registerProtocol() is called.
1776 * Returns nil if a protocol with the same name already exists.
1777 * Locking: acquires classLock
1778 **********************************************************************/
1779 Protocol *
1780 objc_allocateProtocol(const char *name)
1781 {
1782 Class cls = objc_getClass("__IncompleteProtocol");
1783 assert(cls);
1784
1785 mutex_locker_t lock(classLock);
1786
1787 if (NXMapGet(protocol_map, name)) return nil;
1788
1789 old_protocol *result = (old_protocol *)
1790 calloc(1, sizeof(old_protocol)
1791 + sizeof(old_protocol_ext));
1792 old_protocol_ext *ext = (old_protocol_ext *)(result+1);
1793
1794 result->isa = cls;
1795 result->protocol_name = strdup(name);
1796 ext->size = sizeof(old_protocol_ext);
1797
1798 // fixme reserve name without installing
1799
1800 NXMapInsert(protocol_ext_map, result, result+1);
1801
1802 return (Protocol *)result;
1803 }
1804
1805
1806 /***********************************************************************
1807 * objc_registerProtocol
1808 * Registers a newly-constructed protocol. The protocol is now
1809 * ready for use and immutable.
1810 * Locking: acquires classLock
1811 **********************************************************************/
1812 void objc_registerProtocol(Protocol *proto_gen)
1813 {
1814 old_protocol *proto = oldprotocol(proto_gen);
1815
1816 Class oldcls = objc_getClass("__IncompleteProtocol");
1817 Class cls = objc_getClass("Protocol");
1818
1819 mutex_locker_t lock(classLock);
1820
1821 if (proto->isa == cls) {
1822 _objc_inform("objc_registerProtocol: protocol '%s' was already "
1823 "registered!", proto->protocol_name);
1824 return;
1825 }
1826 if (proto->isa != oldcls) {
1827 _objc_inform("objc_registerProtocol: protocol '%s' was not allocated "
1828 "with objc_allocateProtocol!", proto->protocol_name);
1829 return;
1830 }
1831
1832 proto->isa = cls;
1833
1834 NXMapKeyCopyingInsert(protocol_map, proto->protocol_name, proto);
1835 }
1836
1837
1838 /***********************************************************************
1839 * protocol_addProtocol
1840 * Adds an incorporated protocol to another protocol.
1841 * No method enforcement is performed.
1842 * `proto` must be under construction. `addition` must not.
1843 * Locking: acquires classLock
1844 **********************************************************************/
1845 void
1846 protocol_addProtocol(Protocol *proto_gen, Protocol *addition_gen)
1847 {
1848 old_protocol *proto = oldprotocol(proto_gen);
1849 old_protocol *addition = oldprotocol(addition_gen);
1850
1851 Class cls = objc_getClass("__IncompleteProtocol");
1852
1853 if (!proto_gen) return;
1854 if (!addition_gen) return;
1855
1856 mutex_locker_t lock(classLock);
1857
1858 if (proto->isa != cls) {
1859 _objc_inform("protocol_addProtocol: modified protocol '%s' is not "
1860 "under construction!", proto->protocol_name);
1861 return;
1862 }
1863 if (addition->isa == cls) {
1864 _objc_inform("protocol_addProtocol: added protocol '%s' is still "
1865 "under construction!", addition->protocol_name);
1866 return;
1867 }
1868
1869 old_protocol_list *protolist = proto->protocol_list;
1870 if (protolist) {
1871 size_t size = sizeof(old_protocol_list)
1872 + protolist->count * sizeof(protolist->list[0]);
1873 protolist = (old_protocol_list *)
1874 realloc(protolist, size);
1875 } else {
1876 protolist = (old_protocol_list *)
1877 calloc(1, sizeof(old_protocol_list));
1878 }
1879
1880 protolist->list[protolist->count++] = addition;
1881 proto->protocol_list = protolist;
1882 }
1883
1884
1885 /***********************************************************************
1886 * protocol_addMethodDescription
1887 * Adds a method to a protocol. The protocol must be under construction.
1888 * Locking: acquires classLock
1889 **********************************************************************/
1890 static void
1891 _protocol_addMethod(struct objc_method_description_list **list, SEL name, const char *types)
1892 {
1893 if (!*list) {
1894 *list = (struct objc_method_description_list *)
1895 calloc(sizeof(struct objc_method_description_list), 1);
1896 } else {
1897 size_t size = sizeof(struct objc_method_description_list)
1898 + (*list)->count * sizeof(struct objc_method_description);
1899 *list = (struct objc_method_description_list *)
1900 realloc(*list, size);
1901 }
1902
1903 struct objc_method_description *desc = &(*list)->list[(*list)->count++];
1904 desc->name = name;
1905 desc->types = strdup(types ?: "");
1906 }
1907
1908 void
1909 protocol_addMethodDescription(Protocol *proto_gen, SEL name, const char *types,
1910 BOOL isRequiredMethod, BOOL isInstanceMethod)
1911 {
1912 old_protocol *proto = oldprotocol(proto_gen);
1913
1914 Class cls = objc_getClass("__IncompleteProtocol");
1915
1916 if (!proto_gen) return;
1917
1918 mutex_locker_t lock(classLock);
1919
1920 if (proto->isa != cls) {
1921 _objc_inform("protocol_addMethodDescription: protocol '%s' is not "
1922 "under construction!", proto->protocol_name);
1923 return;
1924 }
1925
1926 if (isRequiredMethod && isInstanceMethod) {
1927 _protocol_addMethod(&proto->instance_methods, name, types);
1928 } else if (isRequiredMethod && !isInstanceMethod) {
1929 _protocol_addMethod(&proto->class_methods, name, types);
1930 } else if (!isRequiredMethod && isInstanceMethod) {
1931 old_protocol_ext *ext = (old_protocol_ext *)(proto+1);
1932 _protocol_addMethod(&ext->optional_instance_methods, name, types);
1933 } else /* !isRequiredMethod && !isInstanceMethod) */ {
1934 old_protocol_ext *ext = (old_protocol_ext *)(proto+1);
1935 _protocol_addMethod(&ext->optional_class_methods, name, types);
1936 }
1937 }
1938
1939
1940 /***********************************************************************
1941 * protocol_addProperty
1942 * Adds a property to a protocol. The protocol must be under construction.
1943 * Locking: acquires classLock
1944 **********************************************************************/
1945 static void
1946 _protocol_addProperty(old_property_list **plist, const char *name,
1947 const objc_property_attribute_t *attrs,
1948 unsigned int count)
1949 {
1950 if (!*plist) {
1951 *plist = (old_property_list *)
1952 calloc(sizeof(old_property_list), 1);
1953 (*plist)->entsize = sizeof(old_property);
1954 } else {
1955 *plist = (old_property_list *)
1956 realloc(*plist, sizeof(old_property_list)
1957 + (*plist)->count * (*plist)->entsize);
1958 }
1959
1960 old_property *prop = property_list_nth(*plist, (*plist)->count++);
1961 prop->name = strdup(name);
1962 prop->attributes = copyPropertyAttributeString(attrs, count);
1963 }
1964
1965 void
1966 protocol_addProperty(Protocol *proto_gen, const char *name,
1967 const objc_property_attribute_t *attrs,
1968 unsigned int count,
1969 BOOL isRequiredProperty, BOOL isInstanceProperty)
1970 {
1971 old_protocol *proto = oldprotocol(proto_gen);
1972
1973 Class cls = objc_getClass("__IncompleteProtocol");
1974
1975 if (!proto) return;
1976 if (!name) return;
1977
1978 mutex_locker_t lock(classLock);
1979
1980 if (proto->isa != cls) {
1981 _objc_inform("protocol_addProperty: protocol '%s' is not "
1982 "under construction!", proto->protocol_name);
1983 return;
1984 }
1985
1986 old_protocol_ext *ext = ext_for_protocol(proto);
1987
1988 if (isRequiredProperty && isInstanceProperty) {
1989 _protocol_addProperty(&ext->instance_properties, name, attrs, count);
1990 }
1991 else if (isRequiredProperty && !isInstanceProperty) {
1992 _protocol_addProperty(&ext->class_properties, name, attrs, count);
1993 }
1994 // else if (!isRequiredProperty && isInstanceProperty) {
1995 // _protocol_addProperty(&ext->optional_instance_properties, name, attrs, count);
1996 //}
1997 // else /* !isRequiredProperty && !isInstanceProperty) */ {
1998 // _protocol_addProperty(&ext->optional_class_properties, name, attrs, count);
1999 //}
2000 }
2001
2002
2003 /***********************************************************************
2004 * _objc_fixup_protocol_objects_for_image. For each protocol in the
2005 * specified image, selectorize the method names and add to the protocol hash.
2006 **********************************************************************/
2007
2008 static bool versionIsExt(uintptr_t version, const char *names, size_t size)
2009 {
2010 // CodeWarrior used isa field for string "Protocol"
2011 // from section __OBJC,__class_names. rdar://4951638
2012 // gcc (10.4 and earlier) used isa field for version number;
2013 // the only version number used on Mac OS X was 2.
2014 // gcc (10.5 and later) uses isa field for ext pointer
2015
2016 if (version < 4096 /* not PAGE_SIZE */) {
2017 return NO;
2018 }
2019
2020 if (version >= (uintptr_t)names && version < (uintptr_t)(names + size)) {
2021 return NO;
2022 }
2023
2024 return YES;
2025 }
2026
2027 static void fix_protocol(old_protocol *proto, Class protocolClass,
2028 bool isBundle, const char *names, size_t names_size)
2029 {
2030 uintptr_t version;
2031 if (!proto) return;
2032
2033 version = (uintptr_t)proto->isa;
2034
2035 // Set the protocol's isa
2036 proto->isa = protocolClass;
2037
2038 // Fix up method lists
2039 // fixme share across duplicates
2040 map_method_descs (proto->instance_methods, isBundle);
2041 map_method_descs (proto->class_methods, isBundle);
2042
2043 // Fix up ext, if any
2044 if (versionIsExt(version, names, names_size)) {
2045 old_protocol_ext *ext = (old_protocol_ext *)version;
2046 NXMapInsert(protocol_ext_map, proto, ext);
2047 map_method_descs (ext->optional_instance_methods, isBundle);
2048 map_method_descs (ext->optional_class_methods, isBundle);
2049 }
2050
2051 // Record the protocol it if we don't have one with this name yet
2052 // fixme bundles - copy protocol
2053 // fixme unloading
2054 if (!NXMapGet(protocol_map, proto->protocol_name)) {
2055 NXMapKeyCopyingInsert(protocol_map, proto->protocol_name, proto);
2056 if (PrintProtocols) {
2057 _objc_inform("PROTOCOLS: protocol at %p is %s",
2058 proto, proto->protocol_name);
2059 }
2060 } else {
2061 // duplicate - do nothing
2062 if (PrintProtocols) {
2063 _objc_inform("PROTOCOLS: protocol at %p is %s (duplicate)",
2064 proto, proto->protocol_name);
2065 }
2066 }
2067 }
2068
2069 static void _objc_fixup_protocol_objects_for_image (header_info * hi)
2070 {
2071 Class protocolClass = objc_getClass("Protocol");
2072 size_t count, i;
2073 old_protocol **protos;
2074 int isBundle = headerIsBundle(hi);
2075 const char *names;
2076 size_t names_size;
2077
2078 mutex_locker_t lock(classLock);
2079
2080 // Allocate the protocol registry if necessary.
2081 if (!protocol_map) {
2082 protocol_map =
2083 NXCreateMapTable(NXStrValueMapPrototype, 32);
2084 }
2085 if (!protocol_ext_map) {
2086 protocol_ext_map =
2087 NXCreateMapTable(NXPtrValueMapPrototype, 32);
2088 }
2089
2090 protos = _getObjcProtocols(hi, &count);
2091 names = _getObjcClassNames(hi, &names_size);
2092 for (i = 0; i < count; i++) {
2093 fix_protocol(protos[i], protocolClass, isBundle, names, names_size);
2094 }
2095 }
2096
2097
2098 /***********************************************************************
2099 * _objc_fixup_selector_refs. Register all of the selectors in each
2100 * image, and fix them all up.
2101 **********************************************************************/
2102 static void _objc_fixup_selector_refs (const header_info *hi)
2103 {
2104 size_t count;
2105 SEL *sels;
2106
2107 bool preoptimized = hi->isPreoptimized();
2108
2109 if (PrintPreopt) {
2110 if (preoptimized) {
2111 _objc_inform("PREOPTIMIZATION: honoring preoptimized selectors in %s",
2112 hi->fname());
2113 }
2114 else if (hi->info()->optimizedByDyld()) {
2115 _objc_inform("PREOPTIMIZATION: IGNORING preoptimized selectors in %s",
2116 hi->fname());
2117 }
2118 }
2119
2120 if (preoptimized) return;
2121
2122 sels = _getObjcSelectorRefs (hi, &count);
2123
2124 map_selrefs(sels, count, headerIsBundle(hi));
2125 }
2126
2127 static inline bool _is_threaded() {
2128 #if TARGET_OS_WIN32
2129 return YES;
2130 #else
2131 return pthread_is_threaded_np() != 0;
2132 #endif
2133 }
2134
2135 #if !TARGET_OS_WIN32
2136 /***********************************************************************
2137 * unmap_image
2138 * Process the given image which is about to be unmapped by dyld.
2139 * mh is mach_header instead of headerType because that's what
2140 * dyld_priv.h says even for 64-bit.
2141 **********************************************************************/
2142 void
2143 unmap_image(const char *path __unused, const struct mach_header *mh)
2144 {
2145 recursive_mutex_locker_t lock(loadMethodLock);
2146 unmap_image_nolock(mh);
2147 }
2148
2149
2150 /***********************************************************************
2151 * map_images
2152 * Process the given images which are being mapped in by dyld.
2153 * Calls ABI-agnostic code after taking ABI-specific locks.
2154 **********************************************************************/
2155 void
2156 map_images(unsigned count, const char * const paths[],
2157 const struct mach_header * const mhdrs[])
2158 {
2159 recursive_mutex_locker_t lock(loadMethodLock);
2160 map_images_nolock(count, paths, mhdrs);
2161 }
2162
2163
2164 /***********************************************************************
2165 * load_images
2166 * Process +load in the given images which are being mapped in by dyld.
2167 *
2168 * Locking: acquires classLock and loadMethodLock
2169 **********************************************************************/
2170 extern void prepare_load_methods(const headerType *mhdr);
2171
2172 void
2173 load_images(const char *path __unused, const struct mach_header *mh)
2174 {
2175 recursive_mutex_locker_t lock(loadMethodLock);
2176
2177 // Discover +load methods
2178 prepare_load_methods((const headerType *)mh);
2179
2180 // Call +load methods (without classLock - re-entrant)
2181 call_load_methods();
2182 }
2183 #endif
2184
2185
2186 /***********************************************************************
2187 * _read_images
2188 * Perform metadata processing for hCount images starting with firstNewHeader
2189 **********************************************************************/
2190 void _read_images(header_info **hList, uint32_t hCount, int totalClasses, int unoptimizedTotalClass)
2191 {
2192 uint32_t i;
2193 bool categoriesLoaded = NO;
2194
2195 if (!class_hash) _objc_init_class_hash();
2196
2197 // Parts of this order are important for correctness or performance.
2198
2199 // Read classes from all images.
2200 for (i = 0; i < hCount; i++) {
2201 _objc_read_classes_from_image(hList[i]);
2202 }
2203
2204 // Read categories from all images.
2205 // But not if any other threads are running - they might
2206 // call a category method before the fixups below are complete.
2207 if (!_is_threaded()) {
2208 bool needFlush = NO;
2209 for (i = 0; i < hCount; i++) {
2210 needFlush |= _objc_read_categories_from_image(hList[i]);
2211 }
2212 if (needFlush) flush_marked_caches();
2213 categoriesLoaded = YES;
2214 }
2215
2216 // Connect classes from all images.
2217 for (i = 0; i < hCount; i++) {
2218 _objc_connect_classes_from_image(hList[i]);
2219 }
2220
2221 // Fix up class refs, selector refs, and protocol objects from all images.
2222 for (i = 0; i < hCount; i++) {
2223 _objc_map_class_refs_for_image(hList[i]);
2224 _objc_fixup_selector_refs(hList[i]);
2225 _objc_fixup_protocol_objects_for_image(hList[i]);
2226 }
2227
2228 // Read categories from all images.
2229 // But not if this is the only thread - it's more
2230 // efficient to attach categories earlier if safe.
2231 if (!categoriesLoaded) {
2232 bool needFlush = NO;
2233 for (i = 0; i < hCount; i++) {
2234 needFlush |= _objc_read_categories_from_image(hList[i]);
2235 }
2236 if (needFlush) flush_marked_caches();
2237 }
2238
2239 // Multi-threaded category load MUST BE LAST to avoid a race.
2240 }
2241
2242
2243 /***********************************************************************
2244 * prepare_load_methods
2245 * Schedule +load for classes in this image, any un-+load-ed
2246 * superclasses in other images, and any categories in this image.
2247 **********************************************************************/
2248 // Recursively schedule +load for cls and any un-+load-ed superclasses.
2249 // cls must already be connected.
2250 static void schedule_class_load(Class cls)
2251 {
2252 if (cls->info & CLS_LOADED) return;
2253 if (cls->superclass) schedule_class_load(cls->superclass);
2254 add_class_to_loadable_list(cls);
2255 cls->info |= CLS_LOADED;
2256 }
2257
2258 void prepare_load_methods(const headerType *mhdr)
2259 {
2260 Module mods;
2261 unsigned int midx;
2262
2263 header_info *hi;
2264 for (hi = FirstHeader; hi; hi = hi->getNext()) {
2265 if (mhdr == hi->mhdr()) break;
2266 }
2267 if (!hi) return;
2268
2269 if (hi->info()->isReplacement()) {
2270 // Ignore any classes in this image
2271 return;
2272 }
2273
2274 // Major loop - process all modules in the image
2275 mods = hi->mod_ptr;
2276 for (midx = 0; midx < hi->mod_count; midx += 1)
2277 {
2278 unsigned int index;
2279
2280 // Skip module containing no classes
2281 if (mods[midx].symtab == nil)
2282 continue;
2283
2284 // Minor loop - process all the classes in given module
2285 for (index = 0; index < mods[midx].symtab->cls_def_cnt; index += 1)
2286 {
2287 // Locate the class description pointer
2288 Class cls = (Class)mods[midx].symtab->defs[index];
2289 if (cls->info & CLS_CONNECTED) {
2290 schedule_class_load(cls);
2291 }
2292 }
2293 }
2294
2295
2296 // Major loop - process all modules in the header
2297 mods = hi->mod_ptr;
2298
2299 // NOTE: The module and category lists are traversed backwards
2300 // to preserve the pre-10.4 processing order. Changing the order
2301 // would have a small chance of introducing binary compatibility bugs.
2302 midx = (unsigned int)hi->mod_count;
2303 while (midx-- > 0) {
2304 unsigned int index;
2305 unsigned int total;
2306 Symtab symtab = mods[midx].symtab;
2307
2308 // Nothing to do for a module without a symbol table
2309 if (mods[midx].symtab == nil)
2310 continue;
2311 // Total entries in symbol table (class entries followed
2312 // by category entries)
2313 total = mods[midx].symtab->cls_def_cnt +
2314 mods[midx].symtab->cat_def_cnt;
2315
2316 // Minor loop - register all categories from given module
2317 index = total;
2318 while (index-- > mods[midx].symtab->cls_def_cnt) {
2319 old_category *cat = (old_category *)symtab->defs[index];
2320 add_category_to_loadable_list((Category)cat);
2321 }
2322 }
2323 }
2324
2325
2326 #if TARGET_OS_WIN32
2327
2328 void unload_class(Class cls)
2329 {
2330 }
2331
2332 #else
2333
2334 /***********************************************************************
2335 * _objc_remove_classes_in_image
2336 * Remove all classes in the given image from the runtime, because
2337 * the image is about to be unloaded.
2338 * Things to clean up:
2339 * class_hash
2340 * unconnected_class_hash
2341 * pending subclasses list (only if class is still unconnected)
2342 * loadable class list
2343 * class's method caches
2344 * class refs in all other images
2345 **********************************************************************/
2346 // Re-pend any class references in refs that point into [start..end)
2347 static void rependClassReferences(Class *refs, size_t count,
2348 uintptr_t start, uintptr_t end)
2349 {
2350 size_t i;
2351
2352 if (!refs) return;
2353
2354 // Process each class ref
2355 for (i = 0; i < count; i++) {
2356 if ((uintptr_t)(refs[i]) >= start && (uintptr_t)(refs[i]) < end) {
2357 pendClassReference(&refs[i], refs[i]->name,
2358 refs[i]->info & CLS_META);
2359 refs[i] = nil;
2360 }
2361 }
2362 }
2363
2364
2365 void try_free(const void *p)
2366 {
2367 if (p && malloc_size(p)) free((void *)p);
2368 }
2369
2370 // Deallocate all memory in a method list
2371 static void unload_mlist(old_method_list *mlist)
2372 {
2373 int i;
2374 for (i = 0; i < mlist->method_count; i++) {
2375 try_free(mlist->method_list[i].method_types);
2376 }
2377 try_free(mlist);
2378 }
2379
2380 static void unload_property_list(old_property_list *proplist)
2381 {
2382 uint32_t i;
2383
2384 if (!proplist) return;
2385
2386 for (i = 0; i < proplist->count; i++) {
2387 old_property *prop = property_list_nth(proplist, i);
2388 try_free(prop->name);
2389 try_free(prop->attributes);
2390 }
2391 try_free(proplist);
2392 }
2393
2394
2395 // Deallocate all memory in a class.
2396 void unload_class(Class cls)
2397 {
2398 // Free method cache
2399 // This dereferences the cache contents; do this before freeing methods
2400 if (cls->cache && cls->cache != &_objc_empty_cache) {
2401 _cache_free(cls->cache);
2402 }
2403
2404 // Free ivar lists
2405 if (cls->ivars) {
2406 int i;
2407 for (i = 0; i < cls->ivars->ivar_count; i++) {
2408 try_free(cls->ivars->ivar_list[i].ivar_name);
2409 try_free(cls->ivars->ivar_list[i].ivar_type);
2410 }
2411 try_free(cls->ivars);
2412 }
2413
2414 // Free fixed-up method lists and method list array
2415 if (cls->methodLists) {
2416 // more than zero method lists
2417 if (cls->info & CLS_NO_METHOD_ARRAY) {
2418 // one method list
2419 unload_mlist((old_method_list *)cls->methodLists);
2420 }
2421 else {
2422 // more than one method list
2423 old_method_list **mlistp;
2424 for (mlistp = cls->methodLists;
2425 *mlistp != nil && *mlistp != END_OF_METHODS_LIST;
2426 mlistp++)
2427 {
2428 unload_mlist(*mlistp);
2429 }
2430 free(cls->methodLists);
2431 }
2432 }
2433
2434 // Free protocol list
2435 old_protocol_list *protos = cls->protocols;
2436 while (protos) {
2437 old_protocol_list *dead = protos;
2438 protos = protos->next;
2439 try_free(dead);
2440 }
2441
2442 if ((cls->info & CLS_EXT)) {
2443 if (cls->ext) {
2444 // Free property lists and property list array
2445 if (cls->ext->propertyLists) {
2446 // more than zero property lists
2447 if (cls->info & CLS_NO_PROPERTY_ARRAY) {
2448 // one property list
2449 old_property_list *proplist =
2450 (old_property_list *)cls->ext->propertyLists;
2451 unload_property_list(proplist);
2452 } else {
2453 // more than one property list
2454 old_property_list **plistp;
2455 for (plistp = cls->ext->propertyLists;
2456 *plistp != nil;
2457 plistp++)
2458 {
2459 unload_property_list(*plistp);
2460 }
2461 try_free(cls->ext->propertyLists);
2462 }
2463 }
2464
2465 // Free weak ivar layout
2466 try_free(cls->ext->weak_ivar_layout);
2467
2468 // Free ext
2469 try_free(cls->ext);
2470 }
2471
2472 // Free non-weak ivar layout
2473 try_free(cls->ivar_layout);
2474 }
2475
2476 // Free class name
2477 try_free(cls->name);
2478
2479 // Free cls
2480 try_free(cls);
2481 }
2482
2483
2484 static void _objc_remove_classes_in_image(header_info *hi)
2485 {
2486 unsigned int index;
2487 unsigned int midx;
2488 Module mods;
2489
2490 mutex_locker_t lock(classLock);
2491
2492 // Major loop - process all modules in the image
2493 mods = hi->mod_ptr;
2494 for (midx = 0; midx < hi->mod_count; midx += 1)
2495 {
2496 // Skip module containing no classes
2497 if (mods[midx].symtab == nil)
2498 continue;
2499
2500 // Minor loop - process all the classes in given module
2501 for (index = 0; index < mods[midx].symtab->cls_def_cnt; index += 1)
2502 {
2503 Class cls;
2504
2505 // Locate the class description pointer
2506 cls = (Class)mods[midx].symtab->defs[index];
2507
2508 // Remove from loadable class list, if present
2509 remove_class_from_loadable_list(cls);
2510
2511 // Remove from unconnected_class_hash and pending subclasses
2512 if (unconnected_class_hash && NXHashMember(unconnected_class_hash, cls)) {
2513 NXHashRemove(unconnected_class_hash, cls);
2514 if (pendingSubclassesMap) {
2515 // Find this class in its superclass's pending list
2516 char *supercls_name = (char *)cls->superclass;
2517 PendingSubclass *pending = (PendingSubclass *)
2518 NXMapGet(pendingSubclassesMap, supercls_name);
2519 for ( ; pending != nil; pending = pending->next) {
2520 if (pending->subclass == cls) {
2521 pending->subclass = Nil;
2522 break;
2523 }
2524 }
2525 }
2526 }
2527
2528 // Remove from class_hash
2529 NXHashRemove(class_hash, cls);
2530
2531 // Free heap memory pointed to by the class
2532 unload_class(cls->ISA());
2533 unload_class(cls);
2534 }
2535 }
2536
2537
2538 // Search all other images for class refs that point back to this range.
2539 // Un-fix and re-pend any such class refs.
2540
2541 // Get the location of the dying image's __OBJC segment
2542 uintptr_t seg;
2543 unsigned long seg_size;
2544 seg = (uintptr_t)getsegmentdata(hi->mhdr(), "__OBJC", &seg_size);
2545
2546 header_info *other_hi;
2547 for (other_hi = FirstHeader; other_hi != nil; other_hi = other_hi->getNext()) {
2548 Class *other_refs;
2549 size_t count;
2550 if (other_hi == hi) continue; // skip the image being unloaded
2551
2552 // Fix class refs in the other image
2553 other_refs = _getObjcClassRefs(other_hi, &count);
2554 rependClassReferences(other_refs, count, seg, seg+seg_size);
2555 }
2556 }
2557
2558
2559 /***********************************************************************
2560 * _objc_remove_categories_in_image
2561 * Remove all categories in the given image from the runtime, because
2562 * the image is about to be unloaded.
2563 * Things to clean up:
2564 * unresolved category list
2565 * loadable category list
2566 **********************************************************************/
2567 static void _objc_remove_categories_in_image(header_info *hi)
2568 {
2569 Module mods;
2570 unsigned int midx;
2571
2572 // Major loop - process all modules in the header
2573 mods = hi->mod_ptr;
2574
2575 for (midx = 0; midx < hi->mod_count; midx++) {
2576 unsigned int index;
2577 unsigned int total;
2578 Symtab symtab = mods[midx].symtab;
2579
2580 // Nothing to do for a module without a symbol table
2581 if (symtab == nil) continue;
2582
2583 // Total entries in symbol table (class entries followed
2584 // by category entries)
2585 total = symtab->cls_def_cnt + symtab->cat_def_cnt;
2586
2587 // Minor loop - check all categories from given module
2588 for (index = symtab->cls_def_cnt; index < total; index++) {
2589 old_category *cat = (old_category *)symtab->defs[index];
2590
2591 // Clean up loadable category list
2592 remove_category_from_loadable_list((Category)cat);
2593
2594 // Clean up category_hash
2595 if (category_hash) {
2596 _objc_unresolved_category *cat_entry = (_objc_unresolved_category *)NXMapGet(category_hash, cat->class_name);
2597 for ( ; cat_entry != nil; cat_entry = cat_entry->next) {
2598 if (cat_entry->cat == cat) {
2599 cat_entry->cat = nil;
2600 break;
2601 }
2602 }
2603 }
2604 }
2605 }
2606 }
2607
2608
2609 /***********************************************************************
2610 * unload_paranoia
2611 * Various paranoid debugging checks that look for poorly-behaving
2612 * unloadable bundles.
2613 * Called by _objc_unmap_image when OBJC_UNLOAD_DEBUG is set.
2614 **********************************************************************/
2615 static void unload_paranoia(header_info *hi)
2616 {
2617 // Get the location of the dying image's __OBJC segment
2618 uintptr_t seg;
2619 unsigned long seg_size;
2620 seg = (uintptr_t)getsegmentdata(hi->mhdr(), "__OBJC", &seg_size);
2621
2622 _objc_inform("UNLOAD DEBUG: unloading image '%s' [%p..%p]",
2623 hi->fname(), (void *)seg, (void*)(seg+seg_size));
2624
2625 mutex_locker_t lock(classLock);
2626
2627 // Make sure the image contains no categories on surviving classes.
2628 {
2629 Module mods;
2630 unsigned int midx;
2631
2632 // Major loop - process all modules in the header
2633 mods = hi->mod_ptr;
2634
2635 for (midx = 0; midx < hi->mod_count; midx++) {
2636 unsigned int index;
2637 unsigned int total;
2638 Symtab symtab = mods[midx].symtab;
2639
2640 // Nothing to do for a module without a symbol table
2641 if (symtab == nil) continue;
2642
2643 // Total entries in symbol table (class entries followed
2644 // by category entries)
2645 total = symtab->cls_def_cnt + symtab->cat_def_cnt;
2646
2647 // Minor loop - check all categories from given module
2648 for (index = symtab->cls_def_cnt; index < total; index++) {
2649 old_category *cat = (old_category *)symtab->defs[index];
2650 struct objc_class query;
2651
2652 query.name = cat->class_name;
2653 if (NXHashMember(class_hash, &query)) {
2654 _objc_inform("UNLOAD DEBUG: dying image contains category '%s(%s)' on surviving class '%s'!", cat->class_name, cat->category_name, cat->class_name);
2655 }
2656 }
2657 }
2658 }
2659
2660 // Make sure no surviving class is in the dying image.
2661 // Make sure no surviving class has a superclass in the dying image.
2662 // fixme check method implementations too
2663 {
2664 Class cls;
2665 NXHashState state;
2666
2667 state = NXInitHashState(class_hash);
2668 while (NXNextHashState(class_hash, &state, (void **)&cls)) {
2669 if ((vm_address_t)cls >= seg &&
2670 (vm_address_t)cls < seg+seg_size)
2671 {
2672 _objc_inform("UNLOAD DEBUG: dying image contains surviving class '%s'!", cls->name);
2673 }
2674
2675 if ((vm_address_t)cls->superclass >= seg &&
2676 (vm_address_t)cls->superclass < seg+seg_size)
2677 {
2678 _objc_inform("UNLOAD DEBUG: dying image contains superclass '%s' of surviving class '%s'!", cls->superclass->name, cls->name);
2679 }
2680 }
2681 }
2682 }
2683
2684
2685 /***********************************************************************
2686 * _unload_image
2687 * Only handles MH_BUNDLE for now.
2688 * Locking: loadMethodLock acquired by unmap_image
2689 **********************************************************************/
2690 void _unload_image(header_info *hi)
2691 {
2692 loadMethodLock.assertLocked();
2693
2694 // Cleanup:
2695 // Remove image's classes from the class list and free auxiliary data.
2696 // Remove image's unresolved or loadable categories and free auxiliary data
2697 // Remove image's unresolved class refs.
2698 _objc_remove_classes_in_image(hi);
2699 _objc_remove_categories_in_image(hi);
2700 _objc_remove_pending_class_refs_in_image(hi);
2701 if (hi->proto_refs) try_free(hi->proto_refs);
2702
2703 // Perform various debugging checks if requested.
2704 if (DebugUnload) unload_paranoia(hi);
2705 }
2706
2707 #endif
2708
2709
2710 /***********************************************************************
2711 * objc_addClass. Add the specified class to the table of known classes,
2712 * after doing a little verification and fixup.
2713 **********************************************************************/
2714 void objc_addClass (Class cls)
2715 {
2716 OBJC_WARN_DEPRECATED;
2717
2718 // Synchronize access to hash table
2719 mutex_locker_t lock(classLock);
2720
2721 // Make sure both the class and the metaclass have caches!
2722 // Clear all bits of the info fields except CLS_CLASS and CLS_META.
2723 // Normally these bits are already clear but if someone tries to cons
2724 // up their own class on the fly they might need to be cleared.
2725 if (cls->cache == nil) {
2726 cls->cache = (Cache) &_objc_empty_cache;
2727 cls->info = CLS_CLASS;
2728 }
2729
2730 if (cls->ISA()->cache == nil) {
2731 cls->ISA()->cache = (Cache) &_objc_empty_cache;
2732 cls->ISA()->info = CLS_META;
2733 }
2734
2735 // methodLists should be:
2736 // 1. nil (Tiger and later only)
2737 // 2. A -1 terminated method list array
2738 // In either case, CLS_NO_METHOD_ARRAY remains clear.
2739 // If the user manipulates the method list directly,
2740 // they must use the magic private format.
2741
2742 // Add the class to the table
2743 (void) NXHashInsert (class_hash, cls);
2744
2745 // Superclass is no longer a leaf for cache flushing
2746 if (cls->superclass && (cls->superclass->info & CLS_LEAF)) {
2747 cls->superclass->clearInfo(CLS_LEAF);
2748 cls->superclass->ISA()->clearInfo(CLS_LEAF);
2749 }
2750 }
2751
2752 /***********************************************************************
2753 * _objcTweakMethodListPointerForClass.
2754 * Change the class's method list pointer to a method list array.
2755 * Does nothing if the method list pointer is already a method list array.
2756 * If the class is currently in use, methodListLock must be held by the caller.
2757 **********************************************************************/
2758 static void _objcTweakMethodListPointerForClass(Class cls)
2759 {
2760 old_method_list * originalList;
2761 const int initialEntries = 4;
2762 size_t mallocSize;
2763 old_method_list ** ptr;
2764
2765 // Do nothing if methodLists is already an array.
2766 if (cls->methodLists && !(cls->info & CLS_NO_METHOD_ARRAY)) return;
2767
2768 // Remember existing list
2769 originalList = (old_method_list *) cls->methodLists;
2770
2771 // Allocate and zero a method list array
2772 mallocSize = sizeof(old_method_list *) * initialEntries;
2773 ptr = (old_method_list **) calloc(1, mallocSize);
2774
2775 // Insert the existing list into the array
2776 ptr[initialEntries - 1] = END_OF_METHODS_LIST;
2777 ptr[0] = originalList;
2778
2779 // Replace existing list with array
2780 cls->methodLists = ptr;
2781 cls->clearInfo(CLS_NO_METHOD_ARRAY);
2782 }
2783
2784
2785 /***********************************************************************
2786 * _objc_insertMethods.
2787 * Adds methods to a class.
2788 * Does not flush any method caches.
2789 * Does not take any locks.
2790 * If the class is already in use, use class_addMethods() instead.
2791 **********************************************************************/
2792 void _objc_insertMethods(Class cls, old_method_list *mlist, old_category *cat)
2793 {
2794 old_method_list ***list;
2795 old_method_list **ptr;
2796 ptrdiff_t endIndex;
2797 size_t oldSize;
2798 size_t newSize;
2799
2800 if (!cls->methodLists) {
2801 // cls has no methods - simply use this method list
2802 cls->methodLists = (old_method_list **)mlist;
2803 cls->setInfo(CLS_NO_METHOD_ARRAY);
2804 return;
2805 }
2806
2807 // Log any existing methods being replaced
2808 if (PrintReplacedMethods) {
2809 int i;
2810 for (i = 0; i < mlist->method_count; i++) {
2811 extern IMP findIMPInClass(Class cls, SEL sel);
2812 SEL sel = sel_registerName((char *)mlist->method_list[i].method_name);
2813 IMP newImp = mlist->method_list[i].method_imp;
2814 IMP oldImp;
2815
2816 if ((oldImp = findIMPInClass(cls, sel))) {
2817 logReplacedMethod(cls->name, sel, ISMETA(cls),
2818 cat ? cat->category_name : nil,
2819 oldImp, newImp);
2820 }
2821 }
2822 }
2823
2824 // Create method list array if necessary
2825 _objcTweakMethodListPointerForClass(cls);
2826
2827 list = &cls->methodLists;
2828
2829 // Locate unused entry for insertion point
2830 ptr = *list;
2831 while ((*ptr != 0) && (*ptr != END_OF_METHODS_LIST))
2832 ptr += 1;
2833
2834 // If array is full, add to it
2835 if (*ptr == END_OF_METHODS_LIST)
2836 {
2837 // Calculate old and new dimensions
2838 endIndex = ptr - *list;
2839 oldSize = (endIndex + 1) * sizeof(void *);
2840 newSize = oldSize + sizeof(old_method_list *); // only increase by 1
2841
2842 // Grow the method list array by one.
2843 *list = (old_method_list **)realloc(*list, newSize);
2844
2845 // Zero out addition part of new array
2846 bzero (&((*list)[endIndex]), newSize - oldSize);
2847
2848 // Place new end marker
2849 (*list)[(newSize/sizeof(void *)) - 1] = END_OF_METHODS_LIST;
2850
2851 // Insertion point corresponds to old array end
2852 ptr = &((*list)[endIndex]);
2853 }
2854
2855 // Right shift existing entries by one
2856 bcopy (*list, (*list) + 1, (uint8_t *)ptr - (uint8_t *)*list);
2857
2858 // Insert at method list at beginning of array
2859 **list = mlist;
2860 }
2861
2862 /***********************************************************************
2863 * _objc_removeMethods.
2864 * Remove methods from a class.
2865 * Does not take any locks.
2866 * Does not flush any method caches.
2867 * If the class is currently in use, use class_removeMethods() instead.
2868 **********************************************************************/
2869 void _objc_removeMethods(Class cls, old_method_list *mlist)
2870 {
2871 old_method_list ***list;
2872 old_method_list **ptr;
2873
2874 if (cls->methodLists == nil) {
2875 // cls has no methods
2876 return;
2877 }
2878 if (cls->methodLists == (old_method_list **)mlist) {
2879 // mlist is the class's only method list - erase it
2880 cls->methodLists = nil;
2881 return;
2882 }
2883 if (cls->info & CLS_NO_METHOD_ARRAY) {
2884 // cls has only one method list, and this isn't it - do nothing
2885 return;
2886 }
2887
2888 // cls has a method list array - search it
2889
2890 list = &cls->methodLists;
2891
2892 // Locate list in the array
2893 ptr = *list;
2894 while (*ptr != mlist) {
2895 // fix for radar # 2538790
2896 if ( *ptr == END_OF_METHODS_LIST ) return;
2897 ptr += 1;
2898 }
2899
2900 // Remove this entry
2901 *ptr = 0;
2902
2903 // Left shift the following entries
2904 while (*(++ptr) != END_OF_METHODS_LIST)
2905 *(ptr-1) = *ptr;
2906 *(ptr-1) = 0;
2907 }
2908
2909 /***********************************************************************
2910 * _objc_add_category. Install the specified category's methods and
2911 * protocols into the class it augments.
2912 * The class is assumed not to be in use yet: no locks are taken and
2913 * no method caches are flushed.
2914 **********************************************************************/
2915 static inline void _objc_add_category(Class cls, old_category *category, int version)
2916 {
2917 if (PrintConnecting) {
2918 _objc_inform("CONNECT: attaching category '%s (%s)'", cls->name, category->category_name);
2919 }
2920
2921 // Augment instance methods
2922 if (category->instance_methods)
2923 _objc_insertMethods (cls, category->instance_methods, category);
2924
2925 // Augment class methods
2926 if (category->class_methods)
2927 _objc_insertMethods (cls->ISA(), category->class_methods, category);
2928
2929 // Augment protocols
2930 if ((version >= 5) && category->protocols)
2931 {
2932 if (cls->ISA()->version >= 5)
2933 {
2934 category->protocols->next = cls->protocols;
2935 cls->protocols = category->protocols;
2936 cls->ISA()->protocols = category->protocols;
2937 }
2938 else
2939 {
2940 _objc_inform ("unable to add protocols from category %s...\n", category->category_name);
2941 _objc_inform ("class `%s' must be recompiled\n", category->class_name);
2942 }
2943 }
2944
2945 // Augment instance properties
2946 if (version >= 7 && category->instance_properties) {
2947 if (cls->ISA()->version >= 6) {
2948 _class_addProperties(cls, category->instance_properties);
2949 } else {
2950 _objc_inform ("unable to add instance properties from category %s...\n", category->category_name);
2951 _objc_inform ("class `%s' must be recompiled\n", category->class_name);
2952 }
2953 }
2954
2955 // Augment class properties
2956 if (version >= 7 && category->hasClassPropertiesField() &&
2957 category->class_properties)
2958 {
2959 if (cls->ISA()->version >= 6) {
2960 _class_addProperties(cls->ISA(), category->class_properties);
2961 } else {
2962 _objc_inform ("unable to add class properties from category %s...\n", category->category_name);
2963 _objc_inform ("class `%s' must be recompiled\n", category->class_name);
2964 }
2965 }
2966 }
2967
2968 /***********************************************************************
2969 * _objc_add_category_flush_caches. Install the specified category's
2970 * methods into the class it augments, and flush the class' method cache.
2971 * Return YES if some method caches now need to be flushed.
2972 **********************************************************************/
2973 static bool _objc_add_category_flush_caches(Class cls, old_category *category, int version)
2974 {
2975 bool needFlush = NO;
2976
2977 // Install the category's methods into its intended class
2978 {
2979 mutex_locker_t lock(methodListLock);
2980 _objc_add_category (cls, category, version);
2981 }
2982
2983 // Queue for cache flushing so category's methods can get called
2984 if (category->instance_methods) {
2985 cls->setInfo(CLS_FLUSH_CACHE);
2986 needFlush = YES;
2987 }
2988 if (category->class_methods) {
2989 cls->ISA()->setInfo(CLS_FLUSH_CACHE);
2990 needFlush = YES;
2991 }
2992
2993 return needFlush;
2994 }
2995
2996
2997 /***********************************************************************
2998 * reverse_cat
2999 * Reverse the given linked list of pending categories.
3000 * The pending category list is built backwards, and needs to be
3001 * reversed before actually attaching the categories to a class.
3002 * Returns the head of the new linked list.
3003 **********************************************************************/
3004 static _objc_unresolved_category *reverse_cat(_objc_unresolved_category *cat)
3005 {
3006 _objc_unresolved_category *prev;
3007 _objc_unresolved_category *cur;
3008 _objc_unresolved_category *ahead;
3009
3010 if (!cat) return nil;
3011
3012 prev = nil;
3013 cur = cat;
3014 ahead = cat->next;
3015
3016 while (cur) {
3017 ahead = cur->next;
3018 cur->next = prev;
3019 prev = cur;
3020 cur = ahead;
3021 }
3022
3023 return prev;
3024 }
3025
3026
3027 /***********************************************************************
3028 * resolve_categories_for_class.
3029 * Install all existing categories intended for the specified class.
3030 * cls must be a true class and not a metaclass.
3031 **********************************************************************/
3032 static void resolve_categories_for_class(Class cls)
3033 {
3034 _objc_unresolved_category * pending;
3035 _objc_unresolved_category * next;
3036
3037 // Nothing to do if there are no categories at all
3038 if (!category_hash) return;
3039
3040 // Locate and remove first element in category list
3041 // associated with this class
3042 pending = (_objc_unresolved_category *)
3043 NXMapKeyFreeingRemove (category_hash, cls->name);
3044
3045 // Traverse the list of categories, if any, registered for this class
3046
3047 // The pending list is built backwards. Reverse it and walk forwards.
3048 pending = reverse_cat(pending);
3049
3050 while (pending) {
3051 if (pending->cat) {
3052 // Install the category
3053 // use the non-flush-cache version since we are only
3054 // called from the class intialization code
3055 _objc_add_category(cls, pending->cat, (int)pending->version);
3056 }
3057
3058 // Delink and reclaim this registration
3059 next = pending->next;
3060 free(pending);
3061 pending = next;
3062 }
3063 }
3064
3065
3066 /***********************************************************************
3067 * _objc_resolve_categories_for_class.
3068 * Public version of resolve_categories_for_class. This was
3069 * exported pre-10.4 for Omni et al. to workaround a problem
3070 * with too-lazy category attachment.
3071 * cls should be a class, but this function can also cope with metaclasses.
3072 **********************************************************************/
3073 void _objc_resolve_categories_for_class(Class cls)
3074 {
3075 // If cls is a metaclass, get the class.
3076 // resolve_categories_for_class() requires a real class to work correctly.
3077 if (ISMETA(cls)) {
3078 if (strncmp(cls->name, "_%", 2) == 0) {
3079 // Posee's meta's name is smashed and isn't in the class_hash,
3080 // so objc_getClass doesn't work.
3081 const char *baseName = strchr(cls->name, '%'); // get posee's real name
3082 cls = objc_getClass(baseName);
3083 } else {
3084 cls = objc_getClass(cls->name);
3085 }
3086 }
3087
3088 resolve_categories_for_class(cls);
3089 }
3090
3091
3092 /***********************************************************************
3093 * _objc_register_category.
3094 * Process a category read from an image.
3095 * If the category's class exists, attach the category immediately.
3096 * Classes that need cache flushing are marked but not flushed.
3097 * If the category's class does not exist yet, pend the category for
3098 * later attachment. Pending categories are attached in the order
3099 * they were discovered.
3100 * Returns YES if some method caches now need to be flushed.
3101 **********************************************************************/
3102 static bool _objc_register_category(old_category *cat, int version)
3103 {
3104 _objc_unresolved_category * new_cat;
3105 _objc_unresolved_category * old;
3106 Class theClass;
3107
3108 // If the category's class exists, attach the category.
3109 if ((theClass = objc_lookUpClass(cat->class_name))) {
3110 return _objc_add_category_flush_caches(theClass, cat, version);
3111 }
3112
3113 // If the category's class exists but is unconnected,
3114 // then attach the category to the class but don't bother
3115 // flushing any method caches (because they must be empty).
3116 // YES unconnected, NO class_handler
3117 if ((theClass = look_up_class(cat->class_name, YES, NO))) {
3118 _objc_add_category(theClass, cat, version);
3119 return NO;
3120 }
3121
3122
3123 // Category's class does not exist yet.
3124 // Save the category for later attachment.
3125
3126 if (PrintConnecting) {
3127 _objc_inform("CONNECT: pending category '%s (%s)'", cat->class_name, cat->category_name);
3128 }
3129
3130 // Create category lookup table if needed
3131 if (!category_hash)
3132 category_hash = NXCreateMapTable(NXStrValueMapPrototype, 128);
3133
3134 // Locate an existing list of categories, if any, for the class.
3135 old = (_objc_unresolved_category *)
3136 NXMapGet (category_hash, cat->class_name);
3137
3138 // Register the category to be fixed up later.
3139 // The category list is built backwards, and is reversed again
3140 // by resolve_categories_for_class().
3141 new_cat = (_objc_unresolved_category *)
3142 malloc(sizeof(_objc_unresolved_category));
3143 new_cat->next = old;
3144 new_cat->cat = cat;
3145 new_cat->version = version;
3146 (void) NXMapKeyCopyingInsert (category_hash, cat->class_name, new_cat);
3147
3148 return NO;
3149 }
3150
3151
3152 const char **objc_copyImageNames(unsigned int *outCount)
3153 {
3154 header_info *hi;
3155 int count = 0;
3156 int max = HeaderCount;
3157 #if TARGET_OS_WIN32
3158 const TCHAR **names = (const TCHAR **)calloc(max+1, sizeof(TCHAR *));
3159 #else
3160 const char **names = (const char **)calloc(max+1, sizeof(char *));
3161 #endif
3162
3163 for (hi = FirstHeader; hi != NULL && count < max; hi = hi->getNext()) {
3164 #if TARGET_OS_WIN32
3165 if (hi->moduleName) {
3166 names[count++] = hi->moduleName;
3167 }
3168 #else
3169 const char *fname = hi->fname();
3170 if (fname) {
3171 names[count++] = fname;
3172 }
3173 #endif
3174 }
3175 names[count] = NULL;
3176
3177 if (count == 0) {
3178 // Return NULL instead of empty list if there are no images
3179 free((void *)names);
3180 names = NULL;
3181 }
3182
3183 if (outCount) *outCount = count;
3184 return names;
3185 }
3186
3187
3188 static const char **
3189 _objc_copyClassNamesForImage(header_info *hi, unsigned int *outCount)
3190 {
3191 Module mods;
3192 unsigned int m;
3193 const char **list;
3194 int count;
3195 int allocated;
3196
3197 list = nil;
3198 count = 0;
3199 allocated = 0;
3200
3201 mods = hi->mod_ptr;
3202 for (m = 0; m < hi->mod_count; m++) {
3203 int d;
3204
3205 if (!mods[m].symtab) continue;
3206
3207 for (d = 0; d < mods[m].symtab->cls_def_cnt; d++) {
3208 Class cls = (Class)mods[m].symtab->defs[d];
3209 // fixme what about future-ified classes?
3210 if (cls->isConnected()) {
3211 if (count == allocated) {
3212 allocated = allocated*2 + 16;
3213 list = (const char **)
3214 realloc((void *)list, allocated * sizeof(char *));
3215 }
3216 list[count++] = cls->name;
3217 }
3218 }
3219 }
3220
3221 if (count > 0) {
3222 // nil-terminate non-empty list
3223 if (count == allocated) {
3224 allocated = allocated+1;
3225 list = (const char **)
3226 realloc((void *)list, allocated * sizeof(char *));
3227 }
3228 list[count] = nil;
3229 }
3230
3231 if (outCount) *outCount = count;
3232 return list;
3233 }
3234
3235
3236 /**********************************************************************
3237 *
3238 **********************************************************************/
3239 const char **
3240 objc_copyClassNamesForImage(const char *image, unsigned int *outCount)
3241 {
3242 header_info *hi;
3243
3244 if (!image) {
3245 if (outCount) *outCount = 0;
3246 return NULL;
3247 }
3248
3249 // Find the image.
3250 for (hi = FirstHeader; hi != NULL; hi = hi->getNext()) {
3251 #if TARGET_OS_WIN32
3252 if (0 == wcscmp((TCHAR *)image, hi->moduleName)) break;
3253 #else
3254 if (0 == strcmp(image, hi->fname())) break;
3255 #endif
3256 }
3257
3258 if (!hi) {
3259 if (outCount) *outCount = 0;
3260 return NULL;
3261 }
3262
3263 return _objc_copyClassNamesForImage(hi, outCount);
3264 }
3265
3266
3267
3268 /**********************************************************************
3269 *
3270 **********************************************************************/
3271 const char **
3272 objc_copyClassNamesForImageHeader(const struct mach_header *mh, unsigned int *outCount)
3273 {
3274 header_info *hi;
3275
3276 if (!mh) {
3277 if (outCount) *outCount = 0;
3278 return NULL;
3279 }
3280
3281 // Find the image.
3282 for (hi = FirstHeader; hi != NULL; hi = hi->getNext()) {
3283 if (hi->mhdr() == (const headerType *)mh) break;
3284 }
3285
3286 if (!hi) {
3287 if (outCount) *outCount = 0;
3288 return NULL;
3289 }
3290
3291 return _objc_copyClassNamesForImage(hi, outCount);
3292 }
3293
3294
3295 Class gdb_class_getClass(Class cls)
3296 {
3297 const char *className = cls->name;
3298 if(!className || !strlen(className)) return Nil;
3299 Class rCls = look_up_class(className, NO, NO);
3300 return rCls;
3301
3302 }
3303
3304 Class gdb_object_getClass(id obj)
3305 {
3306 if (!obj) return nil;
3307 return gdb_class_getClass(obj->getIsa());
3308 }
3309
3310
3311 /***********************************************************************
3312 * objc_setMultithreaded.
3313 **********************************************************************/
3314 void objc_setMultithreaded (BOOL flag)
3315 {
3316 OBJC_WARN_DEPRECATED;
3317
3318 // Nothing here. Thread synchronization in the runtime is always active.
3319 }
3320
3321
3322 /***********************************************************************
3323 * Lock management
3324 **********************************************************************/
3325 mutex_t selLock;
3326 mutex_t classLock;
3327 mutex_t methodListLock;
3328 mutex_t cacheUpdateLock;
3329 recursive_mutex_t loadMethodLock;
3330
3331 void lock_init(void)
3332 {
3333 }
3334
3335
3336 #endif