1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
|
/* CFPlugIn.c
Copyright (c) 1999-2019, Apple Inc. and the Swift project authors
Portions Copyright (c) 2014-2019, Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
Responsibility: Tony Parker
*/
#include "CFBundle_Internal.h"
#include "CFInternal.h"
#include "CFRuntime_Internal.h"
// MARK: - Declarations
static os_log_t _CFBundlePluginLogger(void);
static _CFPFactoryRef _CFPFactoryCommonCreateLocked(CFAllocatorRef allocator, CFUUIDRef factoryID);
static _CFPFactoryRef _CFPFactoryFindLocked(CFUUIDRef factoryID, Boolean enabled);
static CFUUIDRef _CFPFactoryCopyFactoryIDLocked(_CFPFactoryRef factory);
static CFPlugInRef _CFPFactoryCopyPlugInLocked(_CFPFactoryRef factory);
static void _CFPlugInRegisterFactoryFunctionByNameLocked(CFUUIDRef factoryID, CFPlugInRef plugIn, CFStringRef functionName);
static void _CFPlugInRegisterPlugInTypeLocked(CFUUIDRef factoryID, CFUUIDRef typeID);
static void _CFPFactoryDisableLocked(_CFPFactoryRef factory);
static void *__CFPLUGIN_IS_CALLING_OUT_TO_A_FACTORY_FUNCTION__(CFPlugInFactoryFunction, CFAllocatorRef, CFUUIDRef) __attribute__((noinline));
static void _CFPFactoryAddTypeLocked(_CFPFactoryRef factory, CFUUIDRef typeID);
static void _CFPFactoryRemoveTypeLocked(_CFPFactoryRef factory, CFUUIDRef typeID);
static Boolean _CFPFactorySupportsTypeLocked(_CFPFactoryRef factory, CFUUIDRef typeID);
/* These methods are called by CFPlugInInstance when an instance is created or destroyed. If a factory's instance count goes to 0 and the factory has been disabled, the factory is destroyed. */
static void _CFPFactoryAddInstanceLocked(_CFPFactoryRef factory);
static void _CFPFactoryRemoveInstanceLocked(_CFPFactoryRef factory);
static void _CFPlugInAddPlugInInstanceLocked(CFPlugInRef plugIn);
static void _CFPlugInRemovePlugInInstanceLocked(CFPlugInRef plugIn);
static void _CFPlugInIncrementUnloadPreventionLocked(CFPlugInRef plugIn);
static void _CFPlugInDecrementUnloadPreventionLocked(CFPlugInRef plugIn);
static void _CFPlugInAddFactoryLocked(CFPlugInRef plugIn, _CFPFactoryRef factory);
static void _CFPlugInRemoveFactoryLocked(CFPlugInRef plugIn, _CFPFactoryRef factory);
CONST_STRING_DECL(kCFPlugInDynamicRegistrationKey, "CFPlugInDynamicRegistration")
CONST_STRING_DECL(kCFPlugInDynamicRegisterFunctionKey, "CFPlugInDynamicRegisterFunction")
CONST_STRING_DECL(kCFPlugInUnloadFunctionKey, "CFPlugInUnloadFunction")
CONST_STRING_DECL(kCFPlugInFactoriesKey, "CFPlugInFactories")
CONST_STRING_DECL(kCFPlugInTypesKey, "CFPlugInTypes")
struct __CFPlugInInstance {
CFRuntimeBase _base;
_CFPFactoryRef factory;
CFPlugInInstanceGetInterfaceFunction getInterfaceFunction;
CFPlugInInstanceDeallocateInstanceDataFunction deallocateInstanceDataFunction;
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4200)
#endif //_MSC_VER
uint8_t _instanceData[0];
#ifdef _MSC_VER
#pragma warning(pop)
#endif //_MSC_VER
};
struct __CFPFactory {
CFRuntimeBase _base;
// All protected by CFPlugInGlobalDataLock
CFUUIDRef _uuid;
Boolean _enabled;
char _padding[3];
CFPlugInFactoryFunction _func;
CFPlugInRef _plugIn;
CFStringRef _funcName;
CFMutableArrayRef _types;
};
// Plugin state is stored in several places:
// 1. The following factories by factory/typeID tables
// 2. The list of supported types in each factory instance
// 3. The enabled flag in each factory instance
// 4. The plugInData inside each bundle instance (except isPlugIn, which is constant after init)
// In order to synchronize all of this, there is one global lock for all of it.
os_unfair_recursive_lock CFPlugInGlobalDataLock = OS_UNFAIR_RECURSIVE_LOCK_INIT;
static CFMutableDictionaryRef _factoriesByFactoryID = NULL; /* Value is _CFPFactoryRef */
static CFMutableDictionaryRef _factoriesByTypeID = NULL; /* Value is array of _CFPFactoryRef */
static CFMutableSetRef _plugInsToUnload = NULL;
// MARK: - Plugin
static os_log_t _CFBundlePluginLogger(void) {
static os_log_t _log;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_log = os_log_create("com.apple.CFBundle", "plugin");
});
return _log;
}
CF_EXPORT void *CFPlugInInstanceCreate(CFAllocatorRef allocator, CFUUIDRef factoryID, CFUUIDRef typeID) {
void *result = NULL;
CFPlugInFactoryFunction f = NULL;
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPFactoryRef factory = _CFPFactoryFindLocked(factoryID, true);
if (!factory) {
os_log_error(_CFBundlePluginLogger(), "Cannot find factory %{public}@", factoryID);
} else {
if (!_CFPFactorySupportsTypeLocked(factory, typeID)) {
os_log_error(_CFBundlePluginLogger(), "Factory %{public}@ does not support type %{public}@", factoryID, typeID);
} else if (factory->_enabled) {
if (!factory->_func) {
factory->_func = (CFPlugInFactoryFunction)CFBundleGetFunctionPointerForName(factory->_plugIn, factory->_funcName);
if (!factory->_func) {
os_log_error(_CFBundlePluginLogger(), "Cannot find function pointer %{public}@ for factory %{public}@ in %{public}@", factory->_funcName, factory->_uuid, factory->_plugIn);
}
}
if (factory->_func) {
f = factory->_func;
// Not every factory comes from a plugin, but if it does, we must prevent unload of the plugin so that the function pointer 'f' remains valid, even if factory->_func is cleared.
if (factory->_plugIn) {
_CFPlugInIncrementUnloadPreventionLocked(factory->_plugIn);
}
}
} else {
os_log_debug(_CFBundlePluginLogger(), "Attempted to create instance, but factory %{public}@ is disabled", factory->_uuid);
}
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
// Call out to the factory function outside of the lock
if (f) {
result = __CFPLUGIN_IS_CALLING_OUT_TO_A_FACTORY_FUNCTION__(f, allocator, typeID);
os_log_debug(_CFBundlePluginLogger(), "Created instance of plugin for factory %{public}@ type %{public}@", factoryID, typeID);
os_unfair_recursive_lock_lock(&CFPlugInGlobalDataLock);
if (factory->_plugIn) {
_CFPlugInDecrementUnloadPreventionLocked(factory->_plugIn);
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
return result;
}
/* ===================== Registering factories and types ===================== */
/* For plugIn writers who must dynamically register things. */
/* Functions to register factory functions and to associate factories with types. */
CF_EXPORT Boolean CFPlugInRegisterFactoryFunction(CFUUIDRef factoryID, CFPlugInFactoryFunction func) {
// Create factories without plugIns from default allocator
// MF:!!! Should probably check that this worked, and maybe do some pre-checking to see if it already exists
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPFactoryRef factory = _CFPFactoryCommonCreateLocked(kCFAllocatorSystemDefault, factoryID);
factory->_func = func;
factory->_plugIn = NULL;
factory->_funcName = NULL;
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return true;
}
CF_EXPORT Boolean CFPlugInRegisterFactoryFunctionByName(CFUUIDRef factoryID, CFPlugInRef plugIn, CFStringRef functionName) {
// Create factories with plugIns from plugIn's allocator
// MF:!!! Should probably check that this worked, and maybe do some pre-checking to see if it already exists
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPlugInRegisterFactoryFunctionByNameLocked(factoryID, plugIn, functionName);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return true;
}
static void _CFPlugInRegisterFactoryFunctionByNameLocked(CFUUIDRef factoryID, CFPlugInRef plugIn, CFStringRef functionName) {
_CFPFactoryRef factory = _CFPFactoryCommonCreateLocked(kCFAllocatorSystemDefault, factoryID);
factory->_func = NULL;
factory->_plugIn = (CFPlugInRef)CFRetain(plugIn);
if (plugIn) _CFPlugInAddFactoryLocked(plugIn, factory);
factory->_funcName = (functionName ? (CFStringRef)CFStringCreateCopy(kCFAllocatorSystemDefault, functionName) : NULL);
}
CF_EXPORT Boolean CFPlugInUnregisterFactory(CFUUIDRef factoryID) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPFactoryRef factory = _CFPFactoryFindLocked(factoryID, true);
if (!factory) {
/* MF:!!! Error. No factory registered for this ID. */
os_log_error(_CFBundlePluginLogger(), "UnregisterFactory: No factory registered for id %{public}@", factoryID);
} else {
_CFPFactoryDisableLocked(factory);
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return true;
}
CF_EXPORT Boolean CFPlugInRegisterPlugInType(CFUUIDRef factoryID, CFUUIDRef typeID) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPlugInRegisterPlugInTypeLocked(factoryID, typeID);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return true;
}
static void _CFPlugInRegisterPlugInTypeLocked(CFUUIDRef factoryID, CFUUIDRef typeID) {
_CFPFactoryRef factory = _CFPFactoryFindLocked(factoryID, true);
if (!factory) {
/* MF:!!! Error. Factory must be registered (and not disabled) before types can be associated with it. */
os_log_error(_CFBundlePluginLogger(), "RegisterPlugInType: No factory registered for id %{public}@", factoryID);
} else {
_CFPFactoryAddTypeLocked(factory, typeID);
}
}
CF_EXPORT Boolean CFPlugInUnregisterPlugInType(CFUUIDRef factoryID, CFUUIDRef typeID) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPFactoryRef factory = _CFPFactoryFindLocked(factoryID, true);
if (!factory) {
/* MF:!!! Error. Could not find factory. */
os_log_error(_CFBundlePluginLogger(), "UnregisterPlugInType: No factory registered for id %{public}@ type %{public}@", factoryID, typeID);
} else {
_CFPFactoryRemoveTypeLocked(factory, typeID);
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return true;
}
/* ================= Registering instances ================= */
/* When a new instance of a type is created, the instance is responsible for registering itself with the factory that created it and unregistering when it deallocates. */
/* This means that an instance must keep track of the CFUUIDRef of the factory that created it so it can unregister when it goes away. */
CF_EXPORT void CFPlugInAddInstanceForFactory(CFUUIDRef factoryID) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPFactoryRef factory = _CFPFactoryFindLocked(factoryID, true);
if (!factory) {
/* MF:!!! Error. Could not find factory. */
os_log_error(_CFBundlePluginLogger(), "AddInstanceForFactory: No factory registered for id %{public}@", factoryID);
} else {
_CFPFactoryAddInstanceLocked(factory);
os_log_debug(_CFBundlePluginLogger(), "AddInstanceForFactory: Added instance on %p for %{public}@", factory, factoryID);
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
CF_EXPORT void CFPlugInRemoveInstanceForFactory(CFUUIDRef factoryID) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPFactoryRef factory = _CFPFactoryFindLocked(factoryID, true);
if (!factory) {
/* MF:!!! Error. Could not find factory. */
os_log_error(_CFBundlePluginLogger(), "RemoveInstanceForFactory: No factory registered for id %{public}@", factoryID);
} else {
_CFPFactoryRemoveInstanceLocked(factory);
os_log_debug(_CFBundlePluginLogger(), "RemoveInstanceForFactory: Removed instance on %p for %{public}@", factory, factoryID);
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
// MARK: Plugin - Unloading
static void _CFPlugInScheduleForUnloading(CFBundleRef bundle) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
if (!_plugInsToUnload) {
CFSetCallBacks nonRetainingCallbacks = kCFTypeSetCallBacks;
nonRetainingCallbacks.retain = NULL;
nonRetainingCallbacks.release = NULL;
_plugInsToUnload = CFSetCreateMutable(kCFAllocatorSystemDefault, 0, &nonRetainingCallbacks);
}
CFSetAddValue(_plugInsToUnload, bundle);
os_log_debug(_CFBundlePluginLogger(), "PlugIn %{public}@ is now scheduled for unloading", bundle);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
CF_PRIVATE void _CFPlugInUnscheduleForUnloading(CFBundleRef bundle) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
if (_plugInsToUnload) CFSetRemoveValue(_plugInsToUnload, bundle);
os_log_debug(_CFBundlePluginLogger(), "PlugIn %{public}@ is now unscheduled for unloading", bundle);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
CF_PRIVATE void _CFPlugInUnloadScheduledPlugIns(void) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
if (_plugInsToUnload) {
CFIndex i, c = CFSetGetCount(_plugInsToUnload);
if (c > 0) {
CFBundleRef *unloadThese = (CFBundleRef *)CFAllocatorAllocate(kCFAllocatorSystemDefault, sizeof(CFBundleRef) * c, 0);
CFSetGetValues(_plugInsToUnload, (const void **)unloadThese);
for (i = 0; i < c; i++) {
// This will cause them to be removed from the set. (Which is why we copied all the values out of the set up front.)
CFBundleRef unloadMe = unloadThese[i];
// If its unloadPreventionCount is > 0 then leave it in the set and unload it the next time someone asks
if (__CFBundleGetPlugInData(unloadMe)->_unloadPreventionCount == 0) {
os_log_debug(_CFBundlePluginLogger(), "PlugIn %{public}@ is about to be unloaded", unloadMe);
_CFBundleUnloadExecutable(unloadMe, true);
}
}
CFAllocatorDeallocate(kCFAllocatorSystemDefault, unloadThese);
}
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
// MARK: Plugin - Internals
static void _searchForDummyUUID(const void *key, const void *val, void *context) {
Boolean *found = (Boolean *)context;
if (*found) {
// No need to continue searching here
return;
}
CFStringRef factoryIDStr = (CFStringRef)key;
if (CFGetTypeID(factoryIDStr) != CFStringGetTypeID()) {
// Factory ID is not a string, skip this entry
return;
}
if (CFStringCompare(factoryIDStr, CFSTR("00000000-0000-0000-0000-000000000000"), 0) == kCFCompareEqualTo) {
// This is a dummy UUID. Don't count this as a plugin if it uses the dummy function name too.
CFStringRef factoryFunctionStr = (CFStringRef)val;
if (factoryFunctionStr && CFGetTypeID(factoryFunctionStr) == CFStringGetTypeID()) {
if (CFStringCompare(factoryFunctionStr, CFSTR("MyFactoryFunction"), 0) == kCFCompareEqualTo) {
*found = true;
}
}
}
}
static void _searchForExistingFactoryLocked(const void *key, const void *val, void *context) {
CFBundleRef *found = (CFBundleRef *)context;
if (*found) {
// No need to continue searching here
return;
}
CFStringRef factoryIDStr = (CFStringRef)key;
CFUUIDRef factoryID = (CFGetTypeID(factoryIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(kCFAllocatorSystemDefault, factoryIDStr) : NULL;
if (!factoryID) factoryID = (CFUUIDRef)CFRetain(factoryIDStr);
// Match any factory, not just enabled ones
_CFPFactoryRef existing = _CFPFactoryFindLocked(factoryID, false);
if (existing) {
*found = (CFBundleRef)CFRetain(existing->_plugIn);
}
if (factoryID) CFRelease(factoryID);
}
static void _registerFactoryLocked(const void *key, const void *val, void *context) {
CFStringRef factoryIDStr = (CFStringRef)key;
CFStringRef factoryFuncStr = (CFStringRef)val;
CFBundleRef bundle = (CFBundleRef)context;
CFUUIDRef factoryID = (CFGetTypeID(factoryIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(kCFAllocatorSystemDefault, factoryIDStr) : NULL;
if (!factoryID) factoryID = (CFUUIDRef)CFRetain(factoryIDStr);
if (CFGetTypeID(factoryFuncStr) != CFStringGetTypeID() || CFStringGetLength(factoryFuncStr) <= 0) factoryFuncStr = NULL;
os_log_debug(_CFBundlePluginLogger(), "Registering static factory %{public}@ %{public}@ bundle %{public}p", factoryID, factoryFuncStr ?: CFSTR("<no func>"), bundle);
_CFPlugInRegisterFactoryFunctionByNameLocked(factoryID, bundle, factoryFuncStr);
if (factoryID) CFRelease(factoryID);
}
static void _registerTypeLocked(const void *key, const void *val, void *context) {
CFStringRef typeIDStr = (CFStringRef)key;
CFArrayRef factoryIDStrArray = (CFArrayRef)val;
CFBundleRef bundle = (CFBundleRef)context;
SInt32 i, c = (CFGetTypeID(factoryIDStrArray) == CFArrayGetTypeID()) ? CFArrayGetCount(factoryIDStrArray) : 0;
CFStringRef curFactoryIDStr;
CFUUIDRef typeID = (CFGetTypeID(typeIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(kCFAllocatorSystemDefault, typeIDStr) : NULL;
CFUUIDRef curFactoryID;
if (!typeID) typeID = (CFUUIDRef)CFRetain(typeIDStr);
if (0 == c && CFGetTypeID(factoryIDStrArray) != CFArrayGetTypeID()) {
curFactoryIDStr = (CFStringRef)val;
curFactoryID = (CFGetTypeID(curFactoryIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(CFGetAllocator(bundle), curFactoryIDStr) : NULL;
if (!curFactoryID) curFactoryID = (CFUUIDRef)CFRetain(curFactoryIDStr);
os_log_debug(_CFBundlePluginLogger(), "Registering factory %{public}@ type %{public}@", curFactoryID, typeID);
_CFPlugInRegisterPlugInTypeLocked(curFactoryID, typeID);
if (curFactoryID) CFRelease(curFactoryID);
} else for (i = 0; i < c; i++) {
curFactoryIDStr = (CFStringRef)CFArrayGetValueAtIndex(factoryIDStrArray, i);
curFactoryID = (CFGetTypeID(curFactoryIDStr) == CFStringGetTypeID()) ? CFUUIDCreateFromString(CFGetAllocator(bundle), curFactoryIDStr) : NULL;
if (!curFactoryID) curFactoryID = (CFUUIDRef)CFRetain(curFactoryIDStr);
os_log_debug(_CFBundlePluginLogger(), "Registering factory %{public}@ type %{public}@", curFactoryID, typeID);
_CFPlugInRegisterPlugInTypeLocked(curFactoryID, typeID);
if (curFactoryID) CFRelease(curFactoryID);
}
if (typeID) CFRelease(typeID);
}
// Returns false if we found another plugin with the same factory ID.
// Important: Do not call out to user code from here, as it is called with the global bundle lock taken. The lock ordering must be:
// CFBundleGlobalDataLock -> CFPlugInGlobalDataLock
// PlugIn lock is recursive but the bundle lock is not
CF_PRIVATE Boolean _CFBundleInitPlugIn(CFBundleRef bundle, CFDictionaryRef infoDict, CFBundleRef *existingPlugIn) {
CFArrayCallBacks _pluginFactoryArrayCallbacks = {0, NULL, NULL, NULL, NULL};
Boolean doDynamicReg = false;
CFDictionaryRef factoryDict;
CFDictionaryRef typeDict;
CFStringRef tempStr;
if (!infoDict) return true;
factoryDict = (CFDictionaryRef)CFDictionaryGetValue(infoDict, kCFPlugInFactoriesKey);
if (factoryDict && CFGetTypeID(factoryDict) != CFDictionaryGetTypeID()) factoryDict = NULL;
tempStr = (CFStringRef)CFDictionaryGetValue(infoDict, kCFPlugInDynamicRegistrationKey);
if (tempStr && CFGetTypeID(tempStr) == CFStringGetTypeID() && CFStringCompare(tempStr, CFSTR("YES"), kCFCompareCaseInsensitive) == kCFCompareEqualTo) doDynamicReg = true;
if (!factoryDict && !doDynamicReg) return true; // This is not a plug-in.
// Search for placeholder UUIDs (all zero)
Boolean foundDummy = false;
if (factoryDict) CFDictionaryApplyFunction(factoryDict, _searchForDummyUUID, &foundDummy);
if (foundDummy) {
// Not a plugin. This combination seems to be part of a template, and is often left in Info.plists without much consideration.
os_log_debug(_CFBundlePluginLogger(), "Bundle %{public}@ contains a factory UUID of 00000000-0000-0000-0000-000000000000 with function 'MyFactoryFunction'. This bundle is not a valid plugin.", bundle);
return true;
}
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
if (__CFBundleGetPlugInData(bundle)->_registeredFactory) {
// We already registered - don't do it again
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return true;
}
// Look for existing plugins with this factory ID
CFBundleRef found = NULL;
if (factoryDict) CFDictionaryApplyFunction(factoryDict, _searchForExistingFactoryLocked, &found);
if (found) {
if (existingPlugIn) {
*existingPlugIn = found;
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return false;
}
/* loadOnDemand is true by default if the plugIn does not do dynamic registration. It is false, by default if it does do dynamic registration. The dynamic register function can set this. */
__CFBundleGetPlugInData(bundle)->_isPlugIn = true;
__CFBundleGetPlugInData(bundle)->_loadOnDemand = true;
__CFBundleGetPlugInData(bundle)->_isDoingDynamicRegistration = false;
// It is the responsibility of the caller of this function to call _CFPlugInHandleDynamicRegistration once we are out of critical sections
__CFBundleGetPlugInData(bundle)->_needsDynamicRegistration = doDynamicReg;
__CFBundleGetPlugInData(bundle)->_instanceCount = 0;
__CFBundleGetPlugInData(bundle)->_unloadPreventionCount = 0;
__CFBundleGetPlugInData(bundle)->_registeredFactory = true;
__CFBundleGetPlugInData(bundle)->_factories = CFArrayCreateMutable(CFGetAllocator(bundle), 0, &_pluginFactoryArrayCallbacks);
/* Now do the registration */
/* First do static registrations, if any. */
if (factoryDict) CFDictionaryApplyFunction(factoryDict, _registerFactoryLocked, bundle);
typeDict = (CFDictionaryRef)CFDictionaryGetValue(infoDict, kCFPlugInTypesKey);
if (typeDict && CFGetTypeID(typeDict) != CFDictionaryGetTypeID()) typeDict = NULL;
if (typeDict) CFDictionaryApplyFunction(typeDict, _registerTypeLocked, bundle);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return true;
}
static void __CFPLUGIN_IS_CALLING_OUT_TO_A_DYNAMIC_REGISTRATION_FUNCTION__(CFPlugInDynamicRegisterFunction f, CFBundleRef bundle) __attribute__((noinline));
static void __CFPLUGIN_IS_CALLING_OUT_TO_A_DYNAMIC_REGISTRATION_FUNCTION__(CFPlugInDynamicRegisterFunction f, CFBundleRef bundle) {
f(bundle);
__asm __volatile__(""); // thwart tail-call optimization
}
CF_PRIVATE void _CFPlugInHandleDynamicRegistration(CFBundleRef bundle) {
_CFPlugInData *plugIn = __CFBundleGetPlugInData(bundle);
// In order to proceed, it must be a plugin, loaded, and need dynamic registration
if (!(plugIn->_isPlugIn && CFBundleIsExecutableLoaded(bundle) && plugIn->_needsDynamicRegistration)) {
return;
}
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
if (plugIn->_isDoingDynamicRegistration) {
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return;
}
plugIn->_needsDynamicRegistration = false;
CFDictionaryRef infoDict = CFBundleGetInfoDictionary(bundle);
CFStringRef tempStr = (CFStringRef)CFDictionaryGetValue(infoDict, kCFPlugInDynamicRegisterFunctionKey);
if (!tempStr || CFGetTypeID(tempStr) != CFStringGetTypeID() || CFStringGetLength(tempStr) <= 0) tempStr = CFSTR("CFPlugInDynamicRegister");
plugIn->_loadOnDemand = false;
plugIn->_isDoingDynamicRegistration = true;
CFPlugInDynamicRegisterFunction func = (CFPlugInDynamicRegisterFunction)CFBundleGetFunctionPointerForName(bundle, tempStr);
if (func) {
__CFPLUGIN_IS_CALLING_OUT_TO_A_DYNAMIC_REGISTRATION_FUNCTION__(func, bundle);
}
plugIn->_isDoingDynamicRegistration = false;
if (plugIn->_loadOnDemand && plugIn->_instanceCount == 0) CFBundleUnloadExecutable(bundle); // Unload now if we can/should.
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
CF_PRIVATE void _CFBundleDeallocatePlugIn(CFBundleRef bundle) {
_CFPlugInData *plugIn = __CFBundleGetPlugInData(bundle);
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
if (plugIn->_isPlugIn) {
/* Go through factories disabling them. Disabling these factories should cause them to dealloc since we wouldn't be deallocating if any of the factories had outstanding instances. So go backwards. */
os_log_debug(_CFBundlePluginLogger(), "Disabling factories in array %{public}p for bundle %{public}p", __CFBundleGetPlugInData(bundle)->_factories, bundle);
SInt32 c = CFArrayGetCount(plugIn->_factories);
while (c-- > 0) _CFPFactoryDisableLocked((_CFPFactoryRef)CFArrayGetValueAtIndex(plugIn->_factories, c));
CFRelease(plugIn->_factories);
plugIn->_isPlugIn = false;
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
CF_EXPORT CFTypeID CFPlugInGetTypeID(void) {
return CFBundleGetTypeID();
}
CF_EXPORT CFPlugInRef CFPlugInCreate(CFAllocatorRef allocator, CFURLRef plugInURL) {
CFBundleRef bundle = CFBundleCreate(allocator, plugInURL);
return (CFPlugInRef)bundle;
}
CF_EXPORT CFBundleRef CFPlugInGetBundle(CFPlugInRef plugIn) {
return (CFBundleRef)plugIn;
}
CF_EXPORT void CFPlugInSetLoadOnDemand(CFPlugInRef plugIn, Boolean flag) {
_CFPlugInData *plugInData = __CFBundleGetPlugInData(plugIn);
if (plugInData->_isPlugIn) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
plugInData->_loadOnDemand = flag;
if (plugInData->_loadOnDemand && !plugInData->_isDoingDynamicRegistration && plugInData->_instanceCount == 0)
{
/* Unload now if we can/should. */
/* If we are doing dynamic registration currently, do not unload. The unloading will happen when dynamic registration is done, if necessary. */
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
CFBundleUnloadExecutable(plugIn);
} else if (!plugInData->_loadOnDemand) {
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
/* Make sure we're loaded now. */
CFBundleLoadExecutable(plugIn);
} else {
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
}
}
CF_EXPORT Boolean CFPlugInIsLoadOnDemand(CFPlugInRef plugIn) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) {
// Checking this is a race no matter what, so don't bother with the lock
return __CFBundleGetPlugInData(plugIn)->_loadOnDemand;
} else {
return false;
}
}
CF_PRIVATE void _CFPlugInWillUnload(CFPlugInRef plugIn) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
SInt32 c = CFArrayGetCount(__CFBundleGetPlugInData(plugIn)->_factories);
/* First, flush all the function pointers that may be cached by our factories. */
while (c-- > 0) {
_CFPFactoryRef factory = (_CFPFactoryRef)CFArrayGetValueAtIndex(__CFBundleGetPlugInData(plugIn)->_factories, c);
factory->_func = NULL;
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
}
static void _CFPlugInAddPlugInInstanceLocked(CFPlugInRef plugIn) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) {
if (__CFBundleGetPlugInData(plugIn)->_instanceCount == 0 && __CFBundleGetPlugInData(plugIn)->_loadOnDemand) {
// Make sure we are not scheduled for unloading
_CFPlugInUnscheduleForUnloading(CFPlugInGetBundle(plugIn));
}
__CFBundleGetPlugInData(plugIn)->_instanceCount++;
/* Instances also retain the CFBundle */
CFRetain(plugIn);
}
}
static void _CFPlugInRemovePlugInInstanceLocked(CFPlugInRef plugIn) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) {
__CFBundleGetPlugInData(plugIn)->_instanceCount--;
if (__CFBundleGetPlugInData(plugIn)->_instanceCount == 0 && __CFBundleGetPlugInData(plugIn)->_loadOnDemand) {
// We unload the code lazily because the code that caused this function to be called is probably code from the plugin itself. If we unload now, we will hose things.
_CFPlugInScheduleForUnloading(CFPlugInGetBundle(plugIn));
}
/* Instances also retain the CFPlugIn */
/* MF:!!! This will cause immediate unloading if it was the last ref on the plugin. */
// Unless there is an 'unload prevention count'
CFRelease(plugIn);
}
}
static void _CFPlugInIncrementUnloadPreventionLocked(CFPlugInRef plugIn) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) {
__CFBundleGetPlugInData(plugIn)->_unloadPreventionCount++;
}
}
static void _CFPlugInDecrementUnloadPreventionLocked(CFPlugInRef plugIn) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) {
__CFBundleGetPlugInData(plugIn)->_unloadPreventionCount--;
}
}
static void _CFPlugInAddFactoryLocked(CFPlugInRef plugIn, _CFPFactoryRef factory) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) CFArrayAppendValue(__CFBundleGetPlugInData(plugIn)->_factories, factory);
}
static void _CFPlugInRemoveFactoryLocked(CFPlugInRef plugIn, _CFPFactoryRef factory) {
if (__CFBundleGetPlugInData(plugIn)->_isPlugIn) {
SInt32 idx = CFArrayGetFirstIndexOfValue(__CFBundleGetPlugInData(plugIn)->_factories, CFRangeMake(0, CFArrayGetCount(__CFBundleGetPlugInData(plugIn)->_factories)), factory);
if (idx >= 0) CFArrayRemoveValueAtIndex(__CFBundleGetPlugInData(plugIn)->_factories, idx);
}
}
// MARK: Plugin - Factory
static void _CFPFactoryDeallocate(CFTypeRef factory);
const CFRuntimeClass __CFPFactoryClass = {
0,
"_CFPFactory",
NULL, // init
NULL, // copy
_CFPFactoryDeallocate,
NULL, // equal
NULL, // hash
NULL, // formatting desc
NULL, // debug desc
};
static CFTypeID _CFPFactoryGetTypeID(void) {
return _kCFRuntimeIDCFPFactory;
}
static void _CFPFactoryAddToTableLocked(_CFPFactoryRef factory) {
CFUUIDRef uuid = factory->_uuid;
if (!_factoriesByFactoryID) {
CFDictionaryValueCallBacks _factoryDictValueCallbacks = {0, NULL, NULL, NULL, NULL};
_factoriesByFactoryID = CFDictionaryCreateMutable(kCFAllocatorSystemDefault, 0, &kCFTypeDictionaryKeyCallBacks, &_factoryDictValueCallbacks);
}
CFDictionarySetValue(_factoriesByFactoryID, uuid, factory);
os_log_debug(_CFBundlePluginLogger(), "Registered factory %{public}@ (%{public}@)", factory, uuid);
}
static void _CFPFactoryRemoveFromTableLocked(_CFPFactoryRef factory) {
CFUUIDRef uuid = factory->_uuid;
if (uuid && _factoriesByTypeID) CFDictionaryRemoveValue(_factoriesByFactoryID, uuid);
os_log_debug(_CFBundlePluginLogger(), "Unregistered factory %{public}@ (%{public}@)", factory, uuid);
}
static _CFPFactoryRef _CFPFactoryFindLocked(CFUUIDRef factoryID, Boolean matchOnlyEnabled) {
_CFPFactoryRef result = NULL;
if (_factoriesByFactoryID) {
result = (_CFPFactoryRef )CFDictionaryGetValue(_factoriesByFactoryID, factoryID);
if (result && matchOnlyEnabled && !result->_enabled) result = NULL;
}
return result;
}
static void _CFPFactoryDeallocate(CFTypeRef ty) {
SInt32 c;
_CFPFactoryRef factory = (_CFPFactoryRef)ty;
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
_CFPFactoryRemoveFromTableLocked(factory);
if (factory->_plugIn) {
_CFPlugInRemoveFactoryLocked(factory->_plugIn, factory);
CFRelease(factory->_plugIn);
}
/* Remove all types for this factory. */
c = CFArrayGetCount(factory->_types);
while (c-- > 0) _CFPFactoryRemoveTypeLocked(factory, (CFUUIDRef)CFArrayGetValueAtIndex(factory->_types, c));
CFRelease(factory->_types);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
if (factory->_funcName) CFRelease(factory->_funcName);
if (factory->_uuid) CFRelease(factory->_uuid);
}
static _CFPFactoryRef _CFPFactoryCommonCreateLocked(CFAllocatorRef allocator, CFUUIDRef factoryID) {
_CFPFactoryRef factory;
uint32_t size;
size = sizeof(struct __CFPFactory) - sizeof(CFRuntimeBase);
factory = (_CFPFactoryRef)_CFRuntimeCreateInstance(allocator, _CFPFactoryGetTypeID(), size, NULL);
if (!factory) return NULL;
factory->_uuid = (CFUUIDRef)CFRetain(factoryID);
factory->_enabled = true;
factory->_types = CFArrayCreateMutable(allocator, 0, &kCFTypeArrayCallBacks);
_CFPFactoryAddToTableLocked(factory);
return factory;
}
static CFUUIDRef _CFPFactoryCopyFactoryIDLocked(_CFPFactoryRef factory) {
CFUUIDRef uuid = factory->_uuid;
if (uuid) CFRetain(uuid);
return uuid;
}
static CFPlugInRef _CFPFactoryCopyPlugInLocked(_CFPFactoryRef factory) {
CFPlugInRef result = factory->_plugIn;
if (result) CFRetain(result);
return result;
}
static void *__CFPLUGIN_IS_CALLING_OUT_TO_A_FACTORY_FUNCTION__(CFPlugInFactoryFunction f, CFAllocatorRef allocator, CFUUIDRef typeID) {
FAULT_CALLBACK((void **)&(f));
void *result = (void *)INVOKE_CALLBACK2(f, allocator, typeID);
__asm __volatile__(""); // thwart tail-call optimization
return result;
}
static void _CFPFactoryDisableLocked(_CFPFactoryRef factory) {
factory->_enabled = false;
os_log_debug(_CFBundlePluginLogger(), "Factory %{public}@ has been disabled", factory->_uuid);
#if !__clang_analyzer__
CFRelease(factory);
#endif
}
static void _CFPFactoryAddTypeLocked(_CFPFactoryRef factory, CFUUIDRef typeID) {
/* Add the type to the factory's type list */
CFArrayAppendValue(factory->_types, typeID);
if (!_factoriesByTypeID) _factoriesByTypeID = CFDictionaryCreateMutable(kCFAllocatorSystemDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
CFMutableArrayRef array = (CFMutableArrayRef)CFDictionaryGetValue(_factoriesByTypeID, typeID);
if (!array) {
CFArrayCallBacks _factoryArrayCallbacks = {0, NULL, NULL, NULL, NULL};
// Create this from default allocator
array = CFArrayCreateMutable(kCFAllocatorSystemDefault, 0, &_factoryArrayCallbacks);
CFDictionarySetValue(_factoriesByTypeID, typeID, array);
CFRelease(array);
}
CFArrayAppendValue(array, factory);
os_log_debug(_CFBundlePluginLogger(), "Type %{public}@ added to factory %{public}@", typeID, factory->_uuid);
}
static void _CFPFactoryRemoveTypeLocked(_CFPFactoryRef factory, CFUUIDRef typeID) {
/* Remove it from the factory's type list */
SInt32 idx = CFArrayGetFirstIndexOfValue(factory->_types, CFRangeMake(0, CFArrayGetCount(factory->_types)), typeID);
if (idx >= 0) CFArrayRemoveValueAtIndex(factory->_types, idx);
/* Remove the factory from the type's list of factories */
if (_factoriesByTypeID) {
CFMutableArrayRef array = (CFMutableArrayRef)CFDictionaryGetValue(_factoriesByTypeID, typeID);
if (array) {
idx = CFArrayGetFirstIndexOfValue(array, CFRangeMake(0, CFArrayGetCount(array)), factory);
if (idx >= 0) {
CFArrayRemoveValueAtIndex(array, idx);
if (CFArrayGetCount(array) == 0) CFDictionaryRemoveValue(_factoriesByTypeID, typeID);
}
}
}
os_log_debug(_CFBundlePluginLogger(), "Type %{public}@ removed from factory %{public}@", typeID, factory->_uuid);
}
static Boolean _CFPFactorySupportsTypeLocked(_CFPFactoryRef factory, CFUUIDRef typeID) {
SInt32 idx = CFArrayGetFirstIndexOfValue(factory->_types, CFRangeMake(0, CFArrayGetCount(factory->_types)), typeID);
return (idx >= 0 ? true : false);
}
/* These methods are called by CFPlugInInstance when an instance is created or destroyed. If a factory's instance count goes to 0 and the factory has been disabled, the factory is destroyed. */
static void _CFPFactoryAddInstanceLocked(_CFPFactoryRef factory) {
CFPlugInRef plugin = factory->_plugIn;
if (plugin) {
_CFPlugInAddPlugInInstanceLocked(plugin);
}
}
static void _CFPFactoryRemoveInstanceLocked(_CFPFactoryRef factory) {
CFPlugInRef plugin = factory->_plugIn;
if (plugin) {
_CFPlugInRemovePlugInInstanceLocked(plugin);
}
}
#pragma mark -
/* ===================== Finding factories and creating instances ===================== */
/* For plugIn hosts. */
/* Functions for finding factories to create specific types and actually creating instances of a type. */
CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInType(CFUUIDRef typeID) CF_RETURNS_RETAINED {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
CFArrayRef array = NULL;
if (_factoriesByTypeID) {
array = (CFArrayRef)CFDictionaryGetValue(_factoriesByTypeID, typeID);
}
CFMutableArrayRef result = NULL;
if (array) {
result = CFArrayCreateMutable(kCFAllocatorSystemDefault, 0, &kCFTypeArrayCallBacks);
CFIndex c = CFArrayGetCount(array);
for (CFIndex i = 0; i < c; i++) {
CFUUIDRef factoryId = _CFPFactoryCopyFactoryIDLocked((_CFPFactoryRef)CFArrayGetValueAtIndex(array, i));
if (factoryId) {
CFArrayAppendValue(result, factoryId);
CFRelease(factoryId);
}
}
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
os_log_debug(_CFBundlePluginLogger(), "%{public}ld factories found for requested plugin type %{public}@", result ? CFArrayGetCount(result) : 0, typeID);
return result;
}
CF_EXPORT CFArrayRef CFPlugInFindFactoriesForPlugInTypeInPlugIn(CFUUIDRef typeID, CFPlugInRef plugIn) CF_RETURNS_RETAINED {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
CFArrayRef array = NULL;
if (_factoriesByTypeID) {
array = (CFArrayRef)CFDictionaryGetValue(_factoriesByTypeID, typeID);
}
CFMutableArrayRef result = NULL;
if (array) {
CFIndex c = CFArrayGetCount(array);
result = CFArrayCreateMutable(kCFAllocatorSystemDefault, 0, &kCFTypeArrayCallBacks);
for (CFIndex i = 0; i < c; i++) {
_CFPFactoryRef factory = (_CFPFactoryRef)CFArrayGetValueAtIndex(array, i);
CFPlugInRef factoryPlugIn = _CFPFactoryCopyPlugInLocked(factory);
if (factoryPlugIn == plugIn) {
CFUUIDRef factoryId = _CFPFactoryCopyFactoryIDLocked(factory);
CFArrayAppendValue(result, factoryId);
CFRelease(factoryId);
}
if (factoryPlugIn) CFRelease(factoryPlugIn);
}
}
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
os_log_debug(_CFBundlePluginLogger(), "%{public}ld factories found for requested plugin type %{public}@ in plugin %{public}@", result ? CFArrayGetCount(result) : 0, typeID, plugIn);
return result;
}
// MARK: Plugin - Instance
static CFStringRef __CFPlugInInstanceCopyDescription(CFTypeRef cf) {
/* MF:!!! Implement me */
return CFSTR("Some CFPlugInInstance");
}
static void __CFPlugInInstanceDeallocate(CFTypeRef cf) {
CFPlugInInstanceRef instance = (CFPlugInInstanceRef)cf;
__CFGenericValidateType(cf, CFPlugInInstanceGetTypeID());
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
if (instance->deallocateInstanceDataFunction) {
FAULT_CALLBACK((void **)&(instance->deallocateInstanceDataFunction));
(void)INVOKE_CALLBACK1(instance->deallocateInstanceDataFunction, (void *)(&instance->_instanceData[0]));
}
if (instance->factory) _CFPFactoryRemoveInstanceLocked(instance->factory);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
}
const CFRuntimeClass __CFPlugInInstanceClass = {
0,
"CFPlugInInstance",
NULL, // init
NULL, // copy
__CFPlugInInstanceDeallocate,
NULL, // equal
NULL, // hash
NULL, //
__CFPlugInInstanceCopyDescription
};
CFTypeID CFPlugInInstanceGetTypeID(void) {
return _kCFRuntimeIDCFPlugInInstance;
}
CF_EXPORT CFPlugInInstanceRef CFPlugInInstanceCreateWithInstanceDataSize(CFAllocatorRef allocator, CFIndex instanceDataSize, CFPlugInInstanceDeallocateInstanceDataFunction deallocateInstanceFunction, CFStringRef factoryName, CFPlugInInstanceGetInterfaceFunction getInterfaceFunction) {
CFPlugInInstanceRef instance;
UInt32 size;
size = sizeof(struct __CFPlugInInstance) + instanceDataSize - sizeof(CFRuntimeBase);
instance = (CFPlugInInstanceRef)_CFRuntimeCreateInstance(allocator, CFPlugInInstanceGetTypeID(), size, NULL);
if (!instance) return NULL;
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
instance->factory = _CFPFactoryFindLocked((CFUUIDRef)factoryName, true);
if (instance->factory) _CFPFactoryAddInstanceLocked(instance->factory);
instance->getInterfaceFunction = getInterfaceFunction;
instance->deallocateInstanceDataFunction = deallocateInstanceFunction;
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return instance;
}
CF_EXPORT Boolean CFPlugInInstanceGetInterfaceFunctionTable(CFPlugInInstanceRef instance, CFStringRef interfaceName, void **ftbl) {
void *myFtbl;
Boolean result = false;
if (instance->getInterfaceFunction) {
FAULT_CALLBACK((void **)&(instance->getInterfaceFunction));
result = INVOKE_CALLBACK3(instance->getInterfaceFunction, instance, interfaceName, &myFtbl) ? true : false;
}
if (ftbl) *ftbl = (result ? myFtbl : NULL);
return result;
}
CF_EXPORT CFStringRef CFPlugInInstanceGetFactoryName(CFPlugInInstanceRef instance) {
os_unfair_recursive_lock_lock_with_options(&CFPlugInGlobalDataLock, OS_UNFAIR_LOCK_DATA_SYNCHRONIZATION);
// This function leaks, but it's the only safe way to access the factory name (on 10.8 or later).
// On 10.9 we added the CF_RETURNS_RETAINED annotation to the header.
CFUUIDRef factoryId = _CFPFactoryCopyFactoryIDLocked(instance->factory);
os_unfair_recursive_lock_unlock(&CFPlugInGlobalDataLock);
return (CFStringRef)factoryId;
}
CF_EXPORT void *CFPlugInInstanceGetInstanceData(CFPlugInInstanceRef instance) {
return (void *)(&instance->_instanceData[0]);
}
|