2 * Copyright (c) 1998-2014 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <IOKit/system.h>
31 #include <IOKit/IOService.h>
32 #include <libkern/OSDebug.h>
33 #include <libkern/c++/OSContainers.h>
34 #include <libkern/c++/OSKext.h>
35 #include <libkern/c++/OSUnserialize.h>
36 #include <IOKit/IOCatalogue.h>
37 #include <IOKit/IOCommand.h>
38 #include <IOKit/IODeviceTreeSupport.h>
39 #include <IOKit/IODeviceMemory.h>
40 #include <IOKit/IOInterrupts.h>
41 #include <IOKit/IOInterruptController.h>
42 #include <IOKit/IOPlatformExpert.h>
43 #include <IOKit/IOMessage.h>
44 #include <IOKit/IOLib.h>
45 #include <IOKit/IOKitKeysPrivate.h>
46 #include <IOKit/IOBSD.h>
47 #include <IOKit/IOUserClient.h>
48 #include <IOKit/IOWorkLoop.h>
49 #include <IOKit/IOTimeStamp.h>
50 #include <IOKit/IOHibernatePrivate.h>
51 #include <IOKit/IOInterruptAccountingPrivate.h>
52 #include <IOKit/IOKernelReporters.h>
53 #include <IOKit/AppleKeyStoreInterface.h>
54 #include <IOKit/IOCPU.h>
55 #include <mach/sync_policy.h>
56 #include <IOKit/assert.h>
57 #include <sys/errno.h>
58 #include <sys/kdebug.h>
61 #include <machine/pal_routines.h>
66 #define OBFUSCATE(x) ((void *)(VM_KERNEL_ADDRPERM(x)))
68 #include "IOServicePrivate.h"
69 #include "IOKitKernelInternal.h"
71 // take lockForArbitration before LOCKNOTIFY
73 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
75 #define super IORegistryEntry
77 OSDefineMetaClassAndStructors(IOService
, IORegistryEntry
)
79 OSDefineMetaClassAndStructors(_IOServiceNotifier
, IONotifier
)
81 OSDefineMetaClassAndStructors(_IOServiceInterestNotifier
, IONotifier
)
83 OSDefineMetaClassAndStructors(_IOConfigThread
, OSObject
)
85 OSDefineMetaClassAndStructors(_IOServiceJob
, OSObject
)
87 OSDefineMetaClassAndStructors(IOResources
, IOService
)
89 OSDefineMetaClassAndStructors(_IOOpenServiceIterator
, OSIterator
)
91 OSDefineMetaClassAndAbstractStructors(IONotifier
, OSObject
)
93 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
95 static IOPlatformExpert
* gIOPlatform
;
96 static class IOPMrootDomain
* gIOPMRootDomain
;
97 const IORegistryPlane
* gIOServicePlane
;
98 const IORegistryPlane
* gIOPowerPlane
;
99 const OSSymbol
* gIODeviceMemoryKey
;
100 const OSSymbol
* gIOInterruptControllersKey
;
101 const OSSymbol
* gIOInterruptSpecifiersKey
;
103 const OSSymbol
* gIOResourcesKey
;
104 const OSSymbol
* gIOResourceMatchKey
;
105 const OSSymbol
* gIOProviderClassKey
;
106 const OSSymbol
* gIONameMatchKey
;
107 const OSSymbol
* gIONameMatchedKey
;
108 const OSSymbol
* gIOPropertyMatchKey
;
109 const OSSymbol
* gIOLocationMatchKey
;
110 const OSSymbol
* gIOParentMatchKey
;
111 const OSSymbol
* gIOPathMatchKey
;
112 const OSSymbol
* gIOMatchCategoryKey
;
113 const OSSymbol
* gIODefaultMatchCategoryKey
;
114 const OSSymbol
* gIOMatchedServiceCountKey
;
116 const OSSymbol
* gIOMapperIDKey
;
117 const OSSymbol
* gIOUserClientClassKey
;
118 const OSSymbol
* gIOKitDebugKey
;
120 const OSSymbol
* gIOCommandPoolSizeKey
;
122 const OSSymbol
* gIOConsoleLockedKey
;
123 const OSSymbol
* gIOConsoleUsersKey
;
124 const OSSymbol
* gIOConsoleSessionUIDKey
;
125 const OSSymbol
* gIOConsoleSessionAuditIDKey
;
126 const OSSymbol
* gIOConsoleUsersSeedKey
;
127 const OSSymbol
* gIOConsoleSessionOnConsoleKey
;
128 const OSSymbol
* gIOConsoleSessionLoginDoneKey
;
129 const OSSymbol
* gIOConsoleSessionSecureInputPIDKey
;
130 const OSSymbol
* gIOConsoleSessionScreenLockedTimeKey
;
132 clock_sec_t gIOConsoleLockTime
;
133 static bool gIOConsoleLoggedIn
;
135 static uint32_t gIOScreenLockState
;
137 static IORegistryEntry
* gIOChosenEntry
;
139 static int gIOResourceGenerationCount
;
141 const OSSymbol
* gIOServiceKey
;
142 const OSSymbol
* gIOPublishNotification
;
143 const OSSymbol
* gIOFirstPublishNotification
;
144 const OSSymbol
* gIOMatchedNotification
;
145 const OSSymbol
* gIOFirstMatchNotification
;
146 const OSSymbol
* gIOTerminatedNotification
;
148 const OSSymbol
* gIOGeneralInterest
;
149 const OSSymbol
* gIOBusyInterest
;
150 const OSSymbol
* gIOAppPowerStateInterest
;
151 const OSSymbol
* gIOPriorityPowerStateInterest
;
152 const OSSymbol
* gIOConsoleSecurityInterest
;
154 const OSSymbol
* gAKSGetKey
;
155 #if defined(__i386__) || defined(__x86_64__)
156 const OSSymbol
* gIOCreateEFIDevicePathSymbol
;
159 static OSDictionary
* gNotifications
;
160 static IORecursiveLock
* gNotificationLock
;
162 static IOService
* gIOResources
;
163 static IOService
* gIOServiceRoot
;
165 static OSOrderedSet
* gJobs
;
166 static semaphore_port_t gJobsSemaphore
;
167 static IOLock
* gJobsLock
;
168 static int gOutstandingJobs
;
169 static int gNumConfigThreads
;
170 static int gNumWaitingThreads
;
171 static IOLock
* gIOServiceBusyLock
;
172 static bool gCPUsRunning
;
174 static thread_t gIOTerminateThread
;
175 static UInt32 gIOTerminateWork
;
176 static OSArray
* gIOTerminatePhase2List
;
177 static OSArray
* gIOStopList
;
178 static OSArray
* gIOStopProviderList
;
179 static OSArray
* gIOFinalizeList
;
181 static SInt32 gIOConsoleUsersSeed
;
182 static OSData
* gIOConsoleUsersSeedValue
;
184 extern const OSSymbol
* gIODTPHandleKey
;
186 const OSSymbol
* gIOPlatformFunctionHandlerSet
;
188 static IOLock
* gIOConsoleUsersLock
;
189 static thread_call_t gIOConsoleLockCallout
;
191 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
193 #define LOCKREADNOTIFY() \
194 IORecursiveLockLock( gNotificationLock )
195 #define LOCKWRITENOTIFY() \
196 IORecursiveLockLock( gNotificationLock )
197 #define LOCKWRITE2READNOTIFY()
198 #define UNLOCKNOTIFY() \
199 IORecursiveLockUnlock( gNotificationLock )
200 #define SLEEPNOTIFY(event) \
201 IORecursiveLockSleep( gNotificationLock, (void *)(event), THREAD_UNINT )
202 #define SLEEPNOTIFYTO(event, deadline) \
203 IORecursiveLockSleepDeadline( gNotificationLock, (void *)(event), deadline, THREAD_UNINT )
204 #define WAKEUPNOTIFY(event) \
205 IORecursiveLockWakeup( gNotificationLock, (void *)(event), /* wake one */ false )
207 #define randomDelay() \
208 int del = read_processor_clock(); \
209 del = (((int)IOThreadSelf()) ^ del ^ (del >> 10)) & 0x3ff; \
212 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
214 #define queue_element(entry, element, type, field) do { \
215 vm_address_t __ele = (vm_address_t) (entry); \
216 __ele -= -4 + ((size_t)(&((type) 4)->field)); \
217 (element) = (type) __ele; \
220 #define iterqueue(que, elt) \
221 for (queue_entry_t elt = queue_first(que); \
222 !queue_end(que, elt); \
223 elt = queue_next(elt))
225 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
227 struct IOInterruptAccountingReporter
{
228 IOSimpleReporter
* reporter
; /* Reporter responsible for communicating the statistics */
229 IOInterruptAccountingData
* statistics
; /* The live statistics values, if any */
232 struct ArbitrationLockQueueElement
{
241 static queue_head_t gArbitrationLockQueueActive
;
242 static queue_head_t gArbitrationLockQueueWaiting
;
243 static queue_head_t gArbitrationLockQueueFree
;
244 static IOLock
* gArbitrationLockQueueLock
;
246 bool IOService::isInactive( void ) const
247 { return( 0 != (kIOServiceInactiveState
& getState())); }
249 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
251 #if defined(__i386__) || defined(__x86_64__)
253 // Only used by the intel implementation of
254 // IOService::requireMaxBusStall(UInt32 ns)
255 // IOService::requireMaxInterruptDelay(uint32_t ns)
258 IOService
* fService
;
264 kCpuDelayBusStall
, kCpuDelayInterrupt
,
268 static OSData
*sCpuDelayData
= OSData::withCapacity(8 * sizeof(CpuDelayEntry
));
269 static IORecursiveLock
*sCpuDelayLock
= IORecursiveLockAlloc();
270 static OSArray
*sCpuLatencyHandlers
[kCpuNumDelayTypes
];
271 const OSSymbol
*sCPULatencyFunctionName
[kCpuNumDelayTypes
];
272 static OSNumber
* sCPULatencyHolder
[kCpuNumDelayTypes
];
273 static char sCPULatencyHolderName
[kCpuNumDelayTypes
][128];
274 static OSNumber
* sCPULatencySet
[kCpuNumDelayTypes
];
277 requireMaxCpuDelay(IOService
* service
, UInt32 ns
, UInt32 delayType
);
279 setLatencyHandler(UInt32 delayType
, IOService
* target
, bool enable
);
281 #endif /* defined(__i386__) || defined(__x86_64__) */
283 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
285 void IOService::initialize( void )
289 gIOServicePlane
= IORegistryEntry::makePlane( kIOServicePlane
);
290 gIOPowerPlane
= IORegistryEntry::makePlane( kIOPowerPlane
);
292 gIOProviderClassKey
= OSSymbol::withCStringNoCopy( kIOProviderClassKey
);
293 gIONameMatchKey
= OSSymbol::withCStringNoCopy( kIONameMatchKey
);
294 gIONameMatchedKey
= OSSymbol::withCStringNoCopy( kIONameMatchedKey
);
295 gIOPropertyMatchKey
= OSSymbol::withCStringNoCopy( kIOPropertyMatchKey
);
296 gIOPathMatchKey
= OSSymbol::withCStringNoCopy( kIOPathMatchKey
);
297 gIOLocationMatchKey
= OSSymbol::withCStringNoCopy( kIOLocationMatchKey
);
298 gIOParentMatchKey
= OSSymbol::withCStringNoCopy( kIOParentMatchKey
);
300 gIOMatchCategoryKey
= OSSymbol::withCStringNoCopy( kIOMatchCategoryKey
);
301 gIODefaultMatchCategoryKey
= OSSymbol::withCStringNoCopy(
302 kIODefaultMatchCategoryKey
);
303 gIOMatchedServiceCountKey
= OSSymbol::withCStringNoCopy(
304 kIOMatchedServiceCountKey
);
306 gIOUserClientClassKey
= OSSymbol::withCStringNoCopy( kIOUserClientClassKey
);
308 gIOResourcesKey
= OSSymbol::withCStringNoCopy( kIOResourcesClass
);
309 gIOResourceMatchKey
= OSSymbol::withCStringNoCopy( kIOResourceMatchKey
);
311 gIODeviceMemoryKey
= OSSymbol::withCStringNoCopy( "IODeviceMemory" );
312 gIOInterruptControllersKey
313 = OSSymbol::withCStringNoCopy("IOInterruptControllers");
314 gIOInterruptSpecifiersKey
315 = OSSymbol::withCStringNoCopy("IOInterruptSpecifiers");
317 gIOMapperIDKey
= OSSymbol::withCStringNoCopy(kIOMapperIDKey
);
319 gIOKitDebugKey
= OSSymbol::withCStringNoCopy( kIOKitDebugKey
);
321 gIOCommandPoolSizeKey
= OSSymbol::withCStringNoCopy( kIOCommandPoolSizeKey
);
323 gIOGeneralInterest
= OSSymbol::withCStringNoCopy( kIOGeneralInterest
);
324 gIOBusyInterest
= OSSymbol::withCStringNoCopy( kIOBusyInterest
);
325 gIOAppPowerStateInterest
= OSSymbol::withCStringNoCopy( kIOAppPowerStateInterest
);
326 gIOPriorityPowerStateInterest
= OSSymbol::withCStringNoCopy( kIOPriorityPowerStateInterest
);
327 gIOConsoleSecurityInterest
= OSSymbol::withCStringNoCopy( kIOConsoleSecurityInterest
);
329 gNotifications
= OSDictionary::withCapacity( 1 );
330 gIOPublishNotification
= OSSymbol::withCStringNoCopy(
331 kIOPublishNotification
);
332 gIOFirstPublishNotification
= OSSymbol::withCStringNoCopy(
333 kIOFirstPublishNotification
);
334 gIOMatchedNotification
= OSSymbol::withCStringNoCopy(
335 kIOMatchedNotification
);
336 gIOFirstMatchNotification
= OSSymbol::withCStringNoCopy(
337 kIOFirstMatchNotification
);
338 gIOTerminatedNotification
= OSSymbol::withCStringNoCopy(
339 kIOTerminatedNotification
);
340 gIOServiceKey
= OSSymbol::withCStringNoCopy( kIOServiceClass
);
342 gIOConsoleLockedKey
= OSSymbol::withCStringNoCopy( kIOConsoleLockedKey
);
343 gIOConsoleUsersKey
= OSSymbol::withCStringNoCopy( kIOConsoleUsersKey
);
344 gIOConsoleSessionUIDKey
= OSSymbol::withCStringNoCopy( kIOConsoleSessionUIDKey
);
345 gIOConsoleSessionAuditIDKey
= OSSymbol::withCStringNoCopy( kIOConsoleSessionAuditIDKey
);
347 gIOConsoleUsersSeedKey
= OSSymbol::withCStringNoCopy(kIOConsoleUsersSeedKey
);
348 gIOConsoleSessionOnConsoleKey
= OSSymbol::withCStringNoCopy(kIOConsoleSessionOnConsoleKey
);
349 gIOConsoleSessionLoginDoneKey
= OSSymbol::withCStringNoCopy(kIOConsoleSessionLoginDoneKey
);
350 gIOConsoleSessionSecureInputPIDKey
= OSSymbol::withCStringNoCopy(kIOConsoleSessionSecureInputPIDKey
);
351 gIOConsoleSessionScreenLockedTimeKey
= OSSymbol::withCStringNoCopy(kIOConsoleSessionScreenLockedTimeKey
);
353 gIOConsoleUsersSeedValue
= OSData::withBytesNoCopy(&gIOConsoleUsersSeed
, sizeof(gIOConsoleUsersSeed
));
355 gIOPlatformFunctionHandlerSet
= OSSymbol::withCStringNoCopy(kIOPlatformFunctionHandlerSet
);
356 #if defined(__i386__) || defined(__x86_64__)
357 sCPULatencyFunctionName
[kCpuDelayBusStall
] = OSSymbol::withCStringNoCopy(kIOPlatformFunctionHandlerMaxBusDelay
);
358 sCPULatencyFunctionName
[kCpuDelayInterrupt
] = OSSymbol::withCStringNoCopy(kIOPlatformFunctionHandlerMaxInterruptDelay
);
360 for (idx
= 0; idx
< kCpuNumDelayTypes
; idx
++)
362 sCPULatencySet
[idx
] = OSNumber::withNumber(-1U, 32);
363 sCPULatencyHolder
[idx
] = OSNumber::withNumber(0ULL, 64);
364 assert(sCPULatencySet
[idx
] && sCPULatencyHolder
[idx
]);
366 gIOCreateEFIDevicePathSymbol
= OSSymbol::withCString("CreateEFIDevicePath");
368 gNotificationLock
= IORecursiveLockAlloc();
370 gAKSGetKey
= OSSymbol::withCStringNoCopy(AKS_PLATFORM_FUNCTION_GETKEY
);
372 assert( gIOServicePlane
&& gIODeviceMemoryKey
373 && gIOInterruptControllersKey
&& gIOInterruptSpecifiersKey
374 && gIOResourcesKey
&& gNotifications
&& gNotificationLock
375 && gIOProviderClassKey
&& gIONameMatchKey
&& gIONameMatchedKey
376 && gIOMatchCategoryKey
&& gIODefaultMatchCategoryKey
377 && gIOPublishNotification
&& gIOMatchedNotification
378 && gIOTerminatedNotification
&& gIOServiceKey
379 && gIOConsoleUsersKey
&& gIOConsoleSessionUIDKey
380 && gIOConsoleSessionOnConsoleKey
&& gIOConsoleSessionSecureInputPIDKey
381 && gIOConsoleUsersSeedKey
&& gIOConsoleUsersSeedValue
);
383 gJobsLock
= IOLockAlloc();
384 gJobs
= OSOrderedSet::withCapacity( 10 );
386 gIOServiceBusyLock
= IOLockAlloc();
388 gIOConsoleUsersLock
= IOLockAlloc();
390 err
= semaphore_create(kernel_task
, &gJobsSemaphore
, SYNC_POLICY_FIFO
, 0);
392 gIOConsoleLockCallout
= thread_call_allocate(&IOService::consoleLockTimer
, NULL
);
394 IORegistryEntry::getRegistryRoot()->setProperty(gIOConsoleLockedKey
, kOSBooleanTrue
);
396 assert( gIOServiceBusyLock
&& gJobs
&& gJobsLock
&& gIOConsoleUsersLock
397 && gIOConsoleLockCallout
&& (err
== KERN_SUCCESS
) );
399 gIOResources
= IOResources::resources();
400 assert( gIOResources
);
402 gArbitrationLockQueueLock
= IOLockAlloc();
403 queue_init(&gArbitrationLockQueueActive
);
404 queue_init(&gArbitrationLockQueueWaiting
);
405 queue_init(&gArbitrationLockQueueFree
);
407 assert( gArbitrationLockQueueLock
);
409 gIOTerminatePhase2List
= OSArray::withCapacity( 2 );
410 gIOStopList
= OSArray::withCapacity( 16 );
411 gIOStopProviderList
= OSArray::withCapacity( 16 );
412 gIOFinalizeList
= OSArray::withCapacity( 16 );
413 assert( gIOTerminatePhase2List
&& gIOStopList
&& gIOStopProviderList
&& gIOFinalizeList
);
417 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
419 #if defined(__i386__) || defined(__x86_64__)
422 const char *getCpuDelayBusStallHolderName(void) {
423 return sCPULatencyHolderName
[kCpuDelayBusStall
];
430 static UInt64
getDebugFlags( OSDictionary
* props
)
432 OSNumber
* debugProp
;
435 debugProp
= OSDynamicCast( OSNumber
,
436 props
->getObject( gIOKitDebugKey
));
438 debugFlags
= debugProp
->unsigned64BitValue();
440 debugFlags
= gIOKitDebug
;
442 return( debugFlags
);
446 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
448 // Probe a matched service and return an instance to be started.
449 // The default score is from the property table, & may be altered
450 // during probe to change the start order.
452 IOService
* IOService::probe( IOService
* provider
,
458 bool IOService::start( IOService
* provider
)
463 void IOService::stop( IOService
* provider
)
467 bool IOService::init( OSDictionary
* dictionary
)
471 ret
= super::init(dictionary
);
472 if (!ret
) return (false);
473 if (reserved
) return (true);
475 reserved
= IONew(ExpansionData
, 1);
476 if (!reserved
) return (false);
477 bzero(reserved
, sizeof(*reserved
));
480 * TODO: Improve on this. Previous efforts to more lazily allocate this
481 * lock based on the presence of specifiers ran into issues as some
482 * platforms set up the specifiers after IOService initialization.
484 * We may be able to get away with a global lock, as this should only be
485 * contended by IOReporting clients and driver start/stop (unless a
486 * driver wants to remove/add handlers in the course of normal operation,
487 * which should be unlikely).
489 reserved
->interruptStatisticsLock
= IOLockAlloc();
490 if (!reserved
->interruptStatisticsLock
) return (false);
495 bool IOService::init( IORegistryEntry
* from
,
496 const IORegistryPlane
* inPlane
)
500 ret
= super::init(from
, inPlane
);
501 if (!ret
) return (false);
502 if (reserved
) return (true);
504 reserved
= IONew(ExpansionData
, 1);
505 if (!reserved
) return (false);
506 bzero(reserved
, sizeof(*reserved
));
509 * TODO: Improve on this. Previous efforts to more lazily allocate this
510 * lock based on the presence of specifiers ran into issues as some
511 * platforms set up the specifiers after IOService initialization.
513 * We may be able to get away with a global lock, as this should only be
514 * contended by IOReporting clients and driver start/stop (unless a
515 * driver wants to remove/add handlers in the course of normal operation,
516 * which should be unlikely).
518 reserved
->interruptStatisticsLock
= IOLockAlloc();
519 if (!reserved
->interruptStatisticsLock
) return (false);
524 void IOService::free( void )
527 requireMaxBusStall(0);
528 requireMaxInterruptDelay(0);
529 if( getPropertyTable())
530 unregisterAllInterest();
534 if (reserved
->interruptStatisticsArray
) {
535 for (i
= 0; i
< reserved
->interruptStatisticsArrayCount
; i
++) {
536 if (reserved
->interruptStatisticsArray
[i
].reporter
)
537 reserved
->interruptStatisticsArray
[i
].reporter
->release();
540 IODelete(reserved
->interruptStatisticsArray
, IOInterruptAccountingReporter
, reserved
->interruptStatisticsArrayCount
);
543 if (reserved
->interruptStatisticsLock
)
544 IOLockFree(reserved
->interruptStatisticsLock
);
545 IODelete(reserved
, ExpansionData
, 1);
548 if (_numInterruptSources
&& _interruptSources
)
550 IOFree(_interruptSources
, _numInterruptSources
* sizeof(IOInterruptSource
));
551 _interruptSources
= 0;
558 * Attach in service plane
560 bool IOService::attach( IOService
* provider
)
566 if( gIOKitDebug
& kIOLogAttach
)
567 LOG( "%s::attach(%s)\n", getName(),
568 provider
->getName());
570 provider
->lockForArbitration();
571 if( provider
->__state
[0] & kIOServiceInactiveState
)
574 ok
= attachToParent( provider
, gIOServicePlane
);
575 provider
->unlockForArbitration();
578 gIOServiceRoot
= this;
579 ok
= attachToParent( getRegistryRoot(), gIOServicePlane
);
582 if (ok
&& !__provider
) (void) getProvider();
587 IOService
* IOService::getServiceRoot( void )
589 return( gIOServiceRoot
);
592 void IOService::detach( IOService
* provider
)
594 IOService
* newProvider
= 0;
598 if( gIOKitDebug
& kIOLogAttach
)
599 LOG("%s::detach(%s)\n", getName(), provider
->getName());
601 lockForArbitration();
603 uint64_t regID1
= provider
->getRegistryEntryID();
604 uint64_t regID2
= getRegistryEntryID();
608 (uintptr_t) (regID1
>> 32),
610 (uintptr_t) (regID2
>> 32));
612 adjParent
= ((busy
= (__state
[1] & kIOServiceBusyStateMask
))
613 && (provider
== getProvider()));
615 detachFromParent( provider
, gIOServicePlane
);
618 newProvider
= getProvider();
619 if( busy
&& (__state
[1] & kIOServiceTermPhase3State
) && (0 == newProvider
))
620 _adjustBusy( -busy
);
623 if (kIOServiceInactiveState
& __state
[0]) {
624 getMetaClass()->removeInstance(this);
625 IORemoveServicePlatformActions(this);
628 unlockForArbitration();
631 newProvider
->lockForArbitration();
632 newProvider
->_adjustBusy(1);
633 newProvider
->unlockForArbitration();
636 // check for last client detach from a terminated service
637 if( provider
->lockForArbitration( true ))
639 if (kIOServiceStartState
& __state
[1])
641 provider
->scheduleTerminatePhase2();
643 if( adjParent
) provider
->_adjustBusy( -1 );
644 if( (provider
->__state
[1] & kIOServiceTermPhase3State
)
645 && (0 == provider
->getClient())) {
646 provider
->scheduleFinalize();
648 provider
->unlockForArbitration();
653 * Register instance - publish it for matching
656 void IOService::registerService( IOOptionBits options
)
662 enum { kMaxPathLen
= 256 };
663 enum { kMaxChars
= 63 };
665 IORegistryEntry
* parent
= this;
666 IORegistryEntry
* root
= getRegistryRoot();
667 while( parent
&& (parent
!= root
))
668 parent
= parent
->getParentEntry( gIOServicePlane
);
670 if( parent
!= root
) {
671 IOLog("%s: not registry member at registerService()\n", getName());
675 // Allow the Platform Expert to adjust this node.
676 if( gIOPlatform
&& (!gIOPlatform
->platformAdjustService(this)))
679 IOInstallServicePlatformActions(this);
681 if( (this != gIOResources
)
682 && (kIOLogRegister
& gIOKitDebug
)) {
684 pathBuf
= (char *) IOMalloc( kMaxPathLen
);
686 IOLog( "Registering: " );
689 if( pathBuf
&& getPath( pathBuf
, &len
, gIOServicePlane
)) {
692 if( len
> kMaxChars
) {
696 if( (skip
= strchr( path
, '/')))
702 IOLog( "%s\n", path
);
705 IOFree( pathBuf
, kMaxPathLen
);
708 startMatching( options
);
711 void IOService::startMatching( IOOptionBits options
)
713 IOService
* provider
;
716 bool needWake
= false;
721 lockForArbitration();
723 sync
= (options
& kIOServiceSynchronous
)
724 || ((provider
= getProvider())
725 && (provider
->__state
[1] & kIOServiceSynchronousState
));
727 if ( options
& kIOServiceAsynchronous
)
730 needConfig
= (0 == (__state
[1] & (kIOServiceNeedConfigState
| kIOServiceConfigState
)))
731 && (0 == (__state
[0] & kIOServiceInactiveState
));
733 __state
[1] |= kIOServiceNeedConfigState
;
735 // __state[0] &= ~kIOServiceInactiveState;
737 // if( sync) LOG("OSKernelStackRemaining = %08x @ %s\n",
738 // OSKernelStackRemaining(), getName());
741 needWake
= (0 != (kIOServiceSyncPubState
& __state
[1]));
745 __state
[1] |= kIOServiceSynchronousState
;
747 __state
[1] &= ~kIOServiceSynchronousState
;
749 if( needConfig
) prevBusy
= _adjustBusy( 1 );
751 unlockForArbitration();
756 IOLockLock( gIOServiceBusyLock
);
757 thread_wakeup( (event_t
) this/*&__state[1]*/ );
758 IOLockUnlock( gIOServiceBusyLock
);
760 } else if( !sync
|| (kIOServiceAsynchronous
& options
)) {
762 ok
= (0 != _IOServiceJob::startJob( this, kMatchNubJob
, options
));
766 if( (__state
[1] & kIOServiceNeedConfigState
))
767 doServiceMatch( options
);
769 lockForArbitration();
770 IOLockLock( gIOServiceBusyLock
);
772 waitAgain
= ((prevBusy
< (__state
[1] & kIOServiceBusyStateMask
))
773 && (0 == (__state
[0] & kIOServiceInactiveState
)));
776 __state
[1] |= kIOServiceSyncPubState
| kIOServiceBusyWaiterState
;
778 __state
[1] &= ~kIOServiceSyncPubState
;
780 unlockForArbitration();
783 assert_wait( (event_t
) this/*&__state[1]*/, THREAD_UNINT
);
785 IOLockUnlock( gIOServiceBusyLock
);
787 thread_block(THREAD_CONTINUE_NULL
);
789 } while( waitAgain
);
793 IOReturn
IOService::catalogNewDrivers( OSOrderedSet
* newTables
)
795 OSDictionary
* table
;
805 while( (table
= (OSDictionary
*) newTables
->getFirstObject())) {
808 set
= (OSSet
*) copyExistingServices( table
,
809 kIOServiceRegisteredState
,
810 kIOServiceExistingSet
);
815 count
+= set
->getCount();
818 allSet
->merge((const OSSet
*) set
);
826 if( getDebugFlags( table
) & kIOLogMatch
)
827 LOG("Matching service count = %ld\n", (long)count
);
829 newTables
->removeObject(table
);
833 while( (service
= (IOService
*) allSet
->getAnyObject())) {
834 service
->startMatching(kIOServiceAsynchronous
);
835 allSet
->removeObject(service
);
840 newTables
->release();
842 return( kIOReturnSuccess
);
845 _IOServiceJob
* _IOServiceJob::startJob( IOService
* nub
, int type
,
846 IOOptionBits options
)
850 job
= new _IOServiceJob
;
851 if( job
&& !job
->init()) {
859 job
->options
= options
;
860 nub
->retain(); // thread will release()
868 * Called on a registered service to see if it matches
872 bool IOService::matchPropertyTable( OSDictionary
* table
, SInt32
* score
)
874 return( matchPropertyTable(table
) );
877 bool IOService::matchPropertyTable( OSDictionary
* table
)
883 * Called on a matched service to allocate resources
884 * before first driver is attached.
887 IOReturn
IOService::getResources( void )
889 return( kIOReturnSuccess
);
893 * Client/provider accessors
896 IOService
* IOService::getProvider( void ) const
898 IOService
* self
= (IOService
*) this;
902 generation
= getGenerationCount();
903 if( __providerGeneration
== generation
)
904 return( __provider
);
906 parent
= (IOService
*) getParentEntry( gIOServicePlane
);
907 if( parent
== IORegistryEntry::getRegistryRoot())
908 /* root is not an IOService */
911 self
->__provider
= parent
;
913 // save the count from before call to getParentEntry()
914 self
->__providerGeneration
= generation
;
919 IOWorkLoop
* IOService::getWorkLoop() const
921 IOService
*provider
= getProvider();
924 return provider
->getWorkLoop();
929 OSIterator
* IOService::getProviderIterator( void ) const
931 return( getParentIterator( gIOServicePlane
));
934 IOService
* IOService::getClient( void ) const
936 return( (IOService
*) getChildEntry( gIOServicePlane
));
939 OSIterator
* IOService::getClientIterator( void ) const
941 return( getChildIterator( gIOServicePlane
));
944 OSIterator
* _IOOpenServiceIterator::iterator( OSIterator
* _iter
,
945 const IOService
* client
,
946 const IOService
* provider
)
948 _IOOpenServiceIterator
* inst
;
953 inst
= new _IOOpenServiceIterator
;
955 if( inst
&& !inst
->init()) {
961 inst
->client
= client
;
962 inst
->provider
= provider
;
968 void _IOOpenServiceIterator::free()
972 last
->unlockForArbitration();
976 OSObject
* _IOOpenServiceIterator::getNextObject()
981 last
->unlockForArbitration();
983 while( (next
= (IOService
*) iter
->getNextObject())) {
985 next
->lockForArbitration();
986 if( (client
&& (next
->isOpen( client
)))
987 || (provider
&& (provider
->isOpen( next
))) )
989 next
->unlockForArbitration();
997 bool _IOOpenServiceIterator::isValid()
999 return( iter
->isValid() );
1002 void _IOOpenServiceIterator::reset()
1005 last
->unlockForArbitration();
1011 OSIterator
* IOService::getOpenProviderIterator( void ) const
1013 return( _IOOpenServiceIterator::iterator( getProviderIterator(), this, 0 ));
1016 OSIterator
* IOService::getOpenClientIterator( void ) const
1018 return( _IOOpenServiceIterator::iterator( getClientIterator(), 0, this ));
1022 IOReturn
IOService::callPlatformFunction( const OSSymbol
* functionName
,
1023 bool waitForFunction
,
1024 void *param1
, void *param2
,
1025 void *param3
, void *param4
)
1027 IOReturn result
= kIOReturnUnsupported
;
1028 IOService
*provider
;
1030 if (gIOPlatformFunctionHandlerSet
== functionName
)
1032 #if defined(__i386__) || defined(__x86_64__)
1033 const OSSymbol
* functionHandlerName
= (const OSSymbol
*) param1
;
1034 IOService
* target
= (IOService
*) param2
;
1035 bool enable
= (param3
!= 0);
1037 if (sCPULatencyFunctionName
[kCpuDelayBusStall
] == functionHandlerName
)
1038 result
= setLatencyHandler(kCpuDelayBusStall
, target
, enable
);
1039 else if (sCPULatencyFunctionName
[kCpuDelayInterrupt
] == param1
)
1040 result
= setLatencyHandler(kCpuDelayInterrupt
, target
, enable
);
1041 #endif /* defined(__i386__) || defined(__x86_64__) */
1044 if ((kIOReturnUnsupported
== result
) && (provider
= getProvider())) {
1045 result
= provider
->callPlatformFunction(functionName
, waitForFunction
,
1046 param1
, param2
, param3
, param4
);
1052 IOReturn
IOService::callPlatformFunction( const char * functionName
,
1053 bool waitForFunction
,
1054 void *param1
, void *param2
,
1055 void *param3
, void *param4
)
1057 IOReturn result
= kIOReturnNoMemory
;
1058 const OSSymbol
*functionSymbol
= OSSymbol::withCString(functionName
);
1060 if (functionSymbol
!= 0) {
1061 result
= callPlatformFunction(functionSymbol
, waitForFunction
,
1062 param1
, param2
, param3
, param4
);
1063 functionSymbol
->release();
1071 * Accessors for global services
1074 IOPlatformExpert
* IOService::getPlatform( void )
1076 return( gIOPlatform
);
1079 class IOPMrootDomain
* IOService::getPMRootDomain( void )
1081 return( gIOPMRootDomain
);
1084 IOService
* IOService::getResourceService( void )
1086 return( gIOResources
);
1089 void IOService::setPlatform( IOPlatformExpert
* platform
)
1091 gIOPlatform
= platform
;
1092 gIOResources
->attachToParent( gIOServiceRoot
, gIOServicePlane
);
1094 #if defined(__i386__) || defined(__x86_64__)
1096 static const char * keys
[kCpuNumDelayTypes
] = {
1097 kIOPlatformMaxBusDelay
, kIOPlatformMaxInterruptDelay
};
1098 const OSObject
* objs
[2];
1102 for (idx
= 0; idx
< kCpuNumDelayTypes
; idx
++)
1104 objs
[0] = sCPULatencySet
[idx
];
1105 objs
[1] = sCPULatencyHolder
[idx
];
1106 array
= OSArray::withObjects(objs
, 2);
1108 platform
->setProperty(keys
[idx
], array
);
1111 #endif /* defined(__i386__) || defined(__x86_64__) */
1114 void IOService::setPMRootDomain( class IOPMrootDomain
* rootDomain
)
1116 gIOPMRootDomain
= rootDomain
;
1117 publishResource("IOKit");
1124 bool IOService::lockForArbitration( bool isSuccessRequired
)
1128 ArbitrationLockQueueElement
* element
;
1129 ArbitrationLockQueueElement
* active
;
1130 ArbitrationLockQueueElement
* waiting
;
1132 enum { kPutOnFreeQueue
, kPutOnActiveQueue
, kPutOnWaitingQueue
} action
;
1134 // lock global access
1135 IOTakeLock( gArbitrationLockQueueLock
);
1137 // obtain an unused queue element
1138 if( !queue_empty( &gArbitrationLockQueueFree
)) {
1139 queue_remove_first( &gArbitrationLockQueueFree
,
1141 ArbitrationLockQueueElement
*,
1144 element
= IONew( ArbitrationLockQueueElement
, 1 );
1148 // prepare the queue element
1149 element
->thread
= IOThreadSelf();
1150 element
->service
= this;
1152 element
->required
= isSuccessRequired
;
1153 element
->aborted
= false;
1155 // determine whether this object is already locked (ie. on active queue)
1157 queue_iterate( &gArbitrationLockQueueActive
,
1159 ArbitrationLockQueueElement
*,
1162 if( active
->service
== element
->service
) {
1168 if( found
) { // this object is already locked
1170 // determine whether it is the same or a different thread trying to lock
1171 if( active
->thread
!= element
->thread
) { // it is a different thread
1173 ArbitrationLockQueueElement
* victim
= 0;
1175 // before placing this new thread on the waiting queue, we look for
1176 // a deadlock cycle...
1179 // determine whether the active thread holding the object we
1180 // want is waiting for another object to be unlocked
1182 queue_iterate( &gArbitrationLockQueueWaiting
,
1184 ArbitrationLockQueueElement
*,
1187 if( waiting
->thread
== active
->thread
) {
1188 assert( false == waiting
->aborted
);
1194 if( found
) { // yes, active thread waiting for another object
1196 // this may be a candidate for rejection if the required
1197 // flag is not set, should we detect a deadlock later on
1198 if( false == waiting
->required
)
1201 // find the thread that is holding this other object, that
1202 // is blocking the active thread from proceeding (fun :-)
1204 queue_iterate( &gArbitrationLockQueueActive
,
1205 active
, // (reuse active queue element)
1206 ArbitrationLockQueueElement
*,
1209 if( active
->service
== waiting
->service
) {
1215 // someone must be holding it or it wouldn't be waiting
1218 if( active
->thread
== element
->thread
) {
1220 // doh, it's waiting for the thread that originated
1221 // this whole lock (ie. current thread) -> deadlock
1222 if( false == element
->required
) { // willing to fail?
1224 // the originating thread doesn't have the required
1225 // flag, so it can fail
1226 success
= false; // (fail originating lock request)
1227 break; // (out of while)
1229 } else { // originating thread is not willing to fail
1231 // see if we came across a waiting thread that did
1232 // not have the 'required' flag set: we'll fail it
1235 // we do have a willing victim, fail it's lock
1236 victim
->aborted
= true;
1238 // take the victim off the waiting queue
1239 queue_remove( &gArbitrationLockQueueWaiting
,
1241 ArbitrationLockQueueElement
*,
1245 IOLockWakeup( gArbitrationLockQueueLock
,
1247 /* one thread */ true );
1249 // allow this thread to proceed (ie. wait)
1250 success
= true; // (put request on wait queue)
1251 break; // (out of while)
1254 // all the waiting threads we came across in
1255 // finding this loop had the 'required' flag
1256 // set, so we've got a deadlock we can't avoid
1257 panic("I/O Kit: Unrecoverable deadlock.");
1261 // repeat while loop, redefining active thread to be the
1262 // thread holding "this other object" (see above), and
1263 // looking for threads waiting on it; note the active
1264 // variable points to "this other object" already... so
1265 // there nothing to do in this else clause.
1267 } else { // no, active thread is not waiting for another object
1269 success
= true; // (put request on wait queue)
1270 break; // (out of while)
1274 if( success
) { // put the request on the waiting queue?
1275 kern_return_t wait_result
;
1277 // place this thread on the waiting queue and put it to sleep;
1278 // we place it at the tail of the queue...
1279 queue_enter( &gArbitrationLockQueueWaiting
,
1281 ArbitrationLockQueueElement
*,
1284 // declare that this thread will wait for a given event
1285 restart_sleep
: wait_result
= assert_wait( element
,
1286 element
->required
? THREAD_UNINT
1287 : THREAD_INTERRUPTIBLE
);
1289 // unlock global access
1290 IOUnlock( gArbitrationLockQueueLock
);
1292 // put thread to sleep, waiting for our event to fire...
1293 if (wait_result
== THREAD_WAITING
)
1294 wait_result
= thread_block(THREAD_CONTINUE_NULL
);
1297 // ...and we've been woken up; we might be in one of two states:
1298 // (a) we've been aborted and our queue element is not on
1299 // any of the three queues, but is floating around
1300 // (b) we're allowed to proceed with the lock and we have
1301 // already been moved from the waiting queue to the
1303 // ...plus a 3rd state, should the thread have been interrupted:
1304 // (c) we're still on the waiting queue
1306 // determine whether we were interrupted out of our sleep
1307 if( THREAD_INTERRUPTED
== wait_result
) {
1309 // re-lock global access
1310 IOTakeLock( gArbitrationLockQueueLock
);
1312 // determine whether we're still on the waiting queue
1314 queue_iterate( &gArbitrationLockQueueWaiting
,
1315 waiting
, // (reuse waiting queue element)
1316 ArbitrationLockQueueElement
*,
1319 if( waiting
== element
) {
1325 if( found
) { // yes, we're still on the waiting queue
1327 // determine whether we're willing to fail
1328 if( false == element
->required
) {
1330 // mark us as aborted
1331 element
->aborted
= true;
1333 // take us off the waiting queue
1334 queue_remove( &gArbitrationLockQueueWaiting
,
1336 ArbitrationLockQueueElement
*,
1338 } else { // we are not willing to fail
1340 // ignore interruption, go back to sleep
1345 // unlock global access
1346 IOUnlock( gArbitrationLockQueueLock
);
1348 // proceed as though this were a normal wake up
1349 wait_result
= THREAD_AWAKENED
;
1352 assert( THREAD_AWAKENED
== wait_result
);
1354 // determine whether we've been aborted while we were asleep
1355 if( element
->aborted
) {
1356 assert( false == element
->required
);
1358 // re-lock global access
1359 IOTakeLock( gArbitrationLockQueueLock
);
1361 action
= kPutOnFreeQueue
;
1363 } else { // we weren't aborted, so we must be ready to go :-)
1365 // we've already been moved from waiting to active queue
1369 } else { // the lock request is to be failed
1371 // return unused queue element to queue
1372 action
= kPutOnFreeQueue
;
1374 } else { // it is the same thread, recursive access is allowed
1376 // add one level of recursion
1379 // return unused queue element to queue
1380 action
= kPutOnFreeQueue
;
1383 } else { // this object is not already locked, so let this thread through
1384 action
= kPutOnActiveQueue
;
1388 // put the new element on a queue
1389 if( kPutOnActiveQueue
== action
) {
1390 queue_enter( &gArbitrationLockQueueActive
,
1392 ArbitrationLockQueueElement
*,
1394 } else if( kPutOnFreeQueue
== action
) {
1395 queue_enter( &gArbitrationLockQueueFree
,
1397 ArbitrationLockQueueElement
*,
1400 assert( 0 ); // kPutOnWaitingQueue never occurs, handled specially above
1403 // unlock global access
1404 IOUnlock( gArbitrationLockQueueLock
);
1409 void IOService::unlockForArbitration( void )
1412 ArbitrationLockQueueElement
* element
;
1414 // lock global access
1415 IOTakeLock( gArbitrationLockQueueLock
);
1417 // find the lock element for this object (ie. on active queue)
1419 queue_iterate( &gArbitrationLockQueueActive
,
1421 ArbitrationLockQueueElement
*,
1424 if( element
->service
== this ) {
1432 // determine whether the lock has been taken recursively
1433 if( element
->count
> 1 ) {
1434 // undo one level of recursion
1439 // remove it from the active queue
1440 queue_remove( &gArbitrationLockQueueActive
,
1442 ArbitrationLockQueueElement
*,
1445 // put it on the free queue
1446 queue_enter( &gArbitrationLockQueueFree
,
1448 ArbitrationLockQueueElement
*,
1451 // determine whether a thread is waiting for object (head to tail scan)
1453 queue_iterate( &gArbitrationLockQueueWaiting
,
1455 ArbitrationLockQueueElement
*,
1458 if( element
->service
== this ) {
1464 if ( found
) { // we found an interested thread on waiting queue
1466 // remove it from the waiting queue
1467 queue_remove( &gArbitrationLockQueueWaiting
,
1469 ArbitrationLockQueueElement
*,
1472 // put it on the active queue
1473 queue_enter( &gArbitrationLockQueueActive
,
1475 ArbitrationLockQueueElement
*,
1478 // wake the waiting thread
1479 IOLockWakeup( gArbitrationLockQueueLock
,
1481 /* one thread */ true );
1485 // unlock global access
1486 IOUnlock( gArbitrationLockQueueLock
);
1489 void IOService::applyToProviders( IOServiceApplierFunction applier
,
1492 applyToParents( (IORegistryEntryApplierFunction
) applier
,
1493 context
, gIOServicePlane
);
1496 void IOService::applyToClients( IOServiceApplierFunction applier
,
1499 applyToChildren( (IORegistryEntryApplierFunction
) applier
,
1500 context
, gIOServicePlane
);
1509 // send a message to a client or interested party of this service
1510 IOReturn
IOService::messageClient( UInt32 type
, OSObject
* client
,
1511 void * argument
, vm_size_t argSize
)
1514 IOService
* service
;
1515 _IOServiceInterestNotifier
* notify
;
1517 if( (service
= OSDynamicCast( IOService
, client
)))
1518 ret
= service
->message( type
, this, argument
);
1520 else if( (notify
= OSDynamicCast( _IOServiceInterestNotifier
, client
))) {
1522 _IOServiceNotifierInvocation invocation
;
1525 invocation
.thread
= current_thread();
1528 willNotify
= (0 != (kIOServiceNotifyEnable
& notify
->state
));
1531 queue_enter( ¬ify
->handlerInvocations
, &invocation
,
1532 _IOServiceNotifierInvocation
*, link
);
1538 ret
= (*notify
->handler
)( notify
->target
, notify
->ref
,
1539 type
, this, argument
, argSize
);
1542 queue_remove( ¬ify
->handlerInvocations
, &invocation
,
1543 _IOServiceNotifierInvocation
*, link
);
1544 if( kIOServiceNotifyWaiter
& notify
->state
) {
1545 notify
->state
&= ~kIOServiceNotifyWaiter
;
1546 WAKEUPNOTIFY( notify
);
1551 ret
= kIOReturnSuccess
;
1554 ret
= kIOReturnBadArgument
;
1560 applyToInterestNotifiers(const IORegistryEntry
*target
,
1561 const OSSymbol
* typeOfInterest
,
1562 OSObjectApplierFunction applier
,
1565 OSArray
* copyArray
= 0;
1569 IOCommand
*notifyList
=
1570 OSDynamicCast( IOCommand
, target
->getProperty( typeOfInterest
));
1573 copyArray
= OSArray::withCapacity(1);
1575 // iterate over queue, entry is set to each element in the list
1576 iterqueue(¬ifyList
->fCommandChain
, entry
) {
1577 _IOServiceInterestNotifier
* notify
;
1579 queue_element(entry
, notify
, _IOServiceInterestNotifier
*, chain
);
1580 copyArray
->setObject(notify
);
1589 for( index
= 0; (next
= copyArray
->getObject( index
)); index
++)
1590 (*applier
)(next
, context
);
1591 copyArray
->release();
1595 void IOService::applyToInterested( const OSSymbol
* typeOfInterest
,
1596 OSObjectApplierFunction applier
,
1599 if (gIOGeneralInterest
== typeOfInterest
)
1600 applyToClients( (IOServiceApplierFunction
) applier
, context
);
1601 applyToInterestNotifiers(this, typeOfInterest
, applier
, context
);
1604 struct MessageClientsContext
{
1605 IOService
* service
;
1612 static void messageClientsApplier( OSObject
* object
, void * ctx
)
1615 MessageClientsContext
* context
= (MessageClientsContext
*) ctx
;
1617 ret
= context
->service
->messageClient( context
->type
,
1618 object
, context
->argument
, context
->argSize
);
1619 if( kIOReturnSuccess
!= ret
)
1623 // send a message to all clients
1624 IOReturn
IOService::messageClients( UInt32 type
,
1625 void * argument
, vm_size_t argSize
)
1627 MessageClientsContext context
;
1629 context
.service
= this;
1630 context
.type
= type
;
1631 context
.argument
= argument
;
1632 context
.argSize
= argSize
;
1633 context
.ret
= kIOReturnSuccess
;
1635 applyToInterested( gIOGeneralInterest
,
1636 &messageClientsApplier
, &context
);
1638 return( context
.ret
);
1641 IOReturn
IOService::acknowledgeNotification( IONotificationRef notification
,
1642 IOOptionBits response
)
1644 return( kIOReturnUnsupported
);
1647 IONotifier
* IOService::registerInterest( const OSSymbol
* typeOfInterest
,
1648 IOServiceInterestHandler handler
, void * target
, void * ref
)
1650 _IOServiceInterestNotifier
* notify
= 0;
1651 IOReturn rc
= kIOReturnError
;
1653 notify
= new _IOServiceInterestNotifier
;
1654 if (!notify
) return NULL
;
1656 if(notify
->init()) {
1657 rc
= registerInterestForNotifer(notify
, typeOfInterest
,
1658 handler
, target
, ref
);
1661 if (rc
!= kIOReturnSuccess
) {
1669 IOReturn
IOService::registerInterestForNotifer( IONotifier
*svcNotify
, const OSSymbol
* typeOfInterest
,
1670 IOServiceInterestHandler handler
, void * target
, void * ref
)
1672 IOReturn rc
= kIOReturnSuccess
;
1673 _IOServiceInterestNotifier
*notify
= 0;
1675 if( (typeOfInterest
!= gIOGeneralInterest
)
1676 && (typeOfInterest
!= gIOBusyInterest
)
1677 && (typeOfInterest
!= gIOAppPowerStateInterest
)
1678 && (typeOfInterest
!= gIOConsoleSecurityInterest
)
1679 && (typeOfInterest
!= gIOPriorityPowerStateInterest
))
1680 return( kIOReturnBadArgument
);
1682 if (!svcNotify
|| !(notify
= OSDynamicCast(_IOServiceInterestNotifier
, svcNotify
)))
1683 return( kIOReturnBadArgument
);
1685 lockForArbitration();
1686 if( 0 == (__state
[0] & kIOServiceInactiveState
)) {
1688 notify
->handler
= handler
;
1689 notify
->target
= target
;
1691 notify
->state
= kIOServiceNotifyEnable
;
1697 // Get the head of the notifier linked list
1698 IOCommand
* notifyList
;
1699 OSObject
* obj
= copyProperty( typeOfInterest
);
1700 if (!(notifyList
= OSDynamicCast(IOCommand
, obj
))) {
1701 notifyList
= OSTypeAlloc(IOCommand
);
1704 bool ok
= setProperty( typeOfInterest
, notifyList
);
1705 notifyList
->release();
1706 if (!ok
) notifyList
= 0;
1709 if (obj
) obj
->release();
1712 enqueue(¬ifyList
->fCommandChain
, ¬ify
->chain
);
1713 notify
->retain(); // ref'ed while in list
1719 rc
= kIOReturnNotReady
;
1721 unlockForArbitration();
1726 static void cleanInterestList( OSObject
* head
)
1728 IOCommand
*notifyHead
= OSDynamicCast(IOCommand
, head
);
1733 while ( queue_entry_t entry
= dequeue(¬ifyHead
->fCommandChain
) ) {
1734 queue_next(entry
) = queue_prev(entry
) = 0;
1736 _IOServiceInterestNotifier
* notify
;
1738 queue_element(entry
, notify
, _IOServiceInterestNotifier
*, chain
);
1744 void IOService::unregisterAllInterest( void )
1746 cleanInterestList( getProperty( gIOGeneralInterest
));
1747 cleanInterestList( getProperty( gIOBusyInterest
));
1748 cleanInterestList( getProperty( gIOAppPowerStateInterest
));
1749 cleanInterestList( getProperty( gIOPriorityPowerStateInterest
));
1750 cleanInterestList( getProperty( gIOConsoleSecurityInterest
));
1754 * _IOServiceInterestNotifier
1757 // wait for all threads, other than the current one,
1758 // to exit the handler
1760 void _IOServiceInterestNotifier::wait()
1762 _IOServiceNotifierInvocation
* next
;
1767 queue_iterate( &handlerInvocations
, next
,
1768 _IOServiceNotifierInvocation
*, link
) {
1769 if( next
->thread
!= current_thread() ) {
1775 state
|= kIOServiceNotifyWaiter
;
1782 void _IOServiceInterestNotifier::free()
1784 assert( queue_empty( &handlerInvocations
));
1788 void _IOServiceInterestNotifier::remove()
1792 if( queue_next( &chain
)) {
1794 queue_next( &chain
) = queue_prev( &chain
) = 0;
1798 state
&= ~kIOServiceNotifyEnable
;
1807 bool _IOServiceInterestNotifier::disable()
1813 ret
= (0 != (kIOServiceNotifyEnable
& state
));
1814 state
&= ~kIOServiceNotifyEnable
;
1823 void _IOServiceInterestNotifier::enable( bool was
)
1827 state
|= kIOServiceNotifyEnable
;
1829 state
&= ~kIOServiceNotifyEnable
;
1833 bool _IOServiceInterestNotifier::init()
1835 queue_init( &handlerInvocations
);
1836 return (OSObject::init());
1838 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1844 #define tailQ(o) setObject(o)
1845 #define headQ(o) setObject(0, o)
1846 #define TLOG(fmt, args...) { if(kIOLogYield & gIOKitDebug) { IOLog("[%llx] ", thread_tid(current_thread())); IOLog(fmt, ## args); }}
1848 static void _workLoopAction( IOWorkLoop::Action action
,
1849 IOService
* service
,
1850 void * p0
= 0, void * p1
= 0,
1851 void * p2
= 0, void * p3
= 0 )
1855 if( (wl
= service
->getWorkLoop())) {
1857 wl
->runAction( action
, service
, p0
, p1
, p2
, p3
);
1860 (*action
)( service
, p0
, p1
, p2
, p3
);
1863 bool IOService::requestTerminate( IOService
* provider
, IOOptionBits options
)
1867 // if its our only provider
1868 ok
= isParent( provider
, gIOServicePlane
, true);
1872 provider
->terminateClient( this, options
| kIOServiceRecursing
);
1873 ok
= (0 != (kIOServiceInactiveState
& __state
[0]));
1880 bool IOService::terminatePhase1( IOOptionBits options
)
1885 OSArray
* makeInactive
;
1886 OSArray
* waitingInactive
;
1887 int waitResult
= THREAD_AWAKENED
;
1891 bool startPhase2
= false;
1893 TLOG("%s[0x%qx]::terminatePhase1(%08llx)\n", getName(), getRegistryEntryID(), (long long)options
);
1895 uint64_t regID
= getRegistryEntryID();
1897 IOSERVICE_TERMINATE_PHASE1
,
1899 (uintptr_t) (regID
>> 32),
1901 (uintptr_t) options
);
1904 if( options
& kIOServiceRecursing
) {
1905 lockForArbitration();
1906 if (0 == (kIOServiceInactiveState
& __state
[0]))
1908 __state
[0] |= kIOServiceInactiveState
;
1909 __state
[1] |= kIOServiceRecursing
| kIOServiceTermPhase1State
;
1911 unlockForArbitration();
1917 makeInactive
= OSArray::withCapacity( 16 );
1918 waitingInactive
= OSArray::withCapacity( 16 );
1919 if(!makeInactive
|| !waitingInactive
) return( false );
1926 didInactive
= victim
->lockForArbitration( true );
1929 uint64_t regID1
= victim
->getRegistryEntryID();
1930 IOServiceTrace(IOSERVICE_TERM_SET_INACTIVE
,
1932 (uintptr_t) (regID1
>> 32),
1933 (uintptr_t) victim
->__state
[1],
1936 enum { kRP1
= kIOServiceRecursing
| kIOServiceTermPhase1State
};
1937 didInactive
= (kRP1
== (victim
->__state
[1] & kRP1
))
1938 || (0 == (victim
->__state
[0] & kIOServiceInactiveState
));
1942 // a multiply attached IOService can be visited twice
1943 if (-1U == waitingInactive
->getNextIndexOfObject(victim
, 0)) do
1945 IOLockLock(gIOServiceBusyLock
);
1946 wait
= (victim
->__state
[1] & kIOServiceTermPhase1State
);
1948 TLOG("%s[0x%qx]::waitPhase1(%s[0x%qx])\n",
1949 getName(), getRegistryEntryID(), victim
->getName(), victim
->getRegistryEntryID());
1950 victim
->__state
[1] |= kIOServiceTerm1WaiterState
;
1951 victim
->unlockForArbitration();
1952 assert_wait((event_t
)&victim
->__state
[1], THREAD_UNINT
);
1954 IOLockUnlock(gIOServiceBusyLock
);
1956 waitResult
= thread_block(THREAD_CONTINUE_NULL
);
1957 TLOG("%s[0x%qx]::did waitPhase1(%s[0x%qx])\n",
1958 getName(), getRegistryEntryID(), victim
->getName(), victim
->getRegistryEntryID());
1959 victim
->lockForArbitration();
1962 while (wait
&& (waitResult
!= THREAD_TIMED_OUT
));
1966 victim
->__state
[0] |= kIOServiceInactiveState
;
1967 victim
->__state
[0] &= ~(kIOServiceRegisteredState
| kIOServiceMatchedState
1968 | kIOServiceFirstPublishState
| kIOServiceFirstMatchState
);
1969 victim
->__state
[1] &= ~kIOServiceRecursing
;
1970 victim
->__state
[1] |= kIOServiceTermPhase1State
;
1971 waitingInactive
->headQ(victim
);
1974 if (kIOServiceTerminateNeedWillTerminate
& options
)
1976 victim
->__state
[1] |= kIOServiceNeedWillTerminate
;
1979 victim
->_adjustBusy( 1 );
1981 victim
->unlockForArbitration();
1983 if( victim
== this) startPhase2
= didInactive
;
1986 victim
->deliverNotification( gIOTerminatedNotification
, 0, 0xffffffff );
1987 IOUserClient::destroyUserReferences( victim
);
1989 iter
= victim
->getClientIterator();
1991 while( (client
= (IOService
*) iter
->getNextObject())) {
1992 TLOG("%s[0x%qx]::requestTerminate(%s[0x%qx], %08llx)\n",
1993 client
->getName(), client
->getRegistryEntryID(),
1994 victim
->getName(), victim
->getRegistryEntryID(), (long long)options
);
1995 ok
= client
->requestTerminate( victim
, options
);
1996 TLOG("%s[0x%qx]::requestTerminate(%s[0x%qx], ok = %d)\n",
1997 client
->getName(), client
->getRegistryEntryID(),
1998 victim
->getName(), victim
->getRegistryEntryID(), ok
);
2000 uint64_t regID1
= client
->getRegistryEntryID();
2001 uint64_t regID2
= victim
->getRegistryEntryID();
2003 (ok
? IOSERVICE_TERMINATE_REQUEST_OK
2004 : IOSERVICE_TERMINATE_REQUEST_FAIL
),
2006 (uintptr_t) (regID1
>> 32),
2008 (uintptr_t) (regID2
>> 32));
2011 makeInactive
->setObject( client
);
2017 victim
= (IOService
*) makeInactive
->getObject(0);
2020 makeInactive
->removeObject(0);
2023 makeInactive
->release();
2025 while ((victim
= (IOService
*) waitingInactive
->getObject(0)))
2028 waitingInactive
->removeObject(0);
2030 victim
->lockForArbitration();
2031 victim
->__state
[1] &= ~kIOServiceTermPhase1State
;
2032 if (kIOServiceTerm1WaiterState
& victim
->__state
[1])
2034 victim
->__state
[1] &= ~kIOServiceTerm1WaiterState
;
2035 TLOG("%s[0x%qx]::wakePhase1\n", victim
->getName(), victim
->getRegistryEntryID());
2036 IOLockLock( gIOServiceBusyLock
);
2037 thread_wakeup( (event_t
) &victim
->__state
[1]);
2038 IOLockUnlock( gIOServiceBusyLock
);
2040 victim
->unlockForArbitration();
2043 waitingInactive
->release();
2048 lockForArbitration();
2049 scheduleTerminatePhase2(options
);
2050 unlockForArbitration();
2057 void IOService::setTerminateDefer(IOService
* provider
, bool defer
)
2059 lockForArbitration();
2060 if (defer
) __state
[1] |= kIOServiceStartState
;
2061 else __state
[1] &= ~kIOServiceStartState
;
2062 unlockForArbitration();
2064 if (provider
&& !defer
)
2066 provider
->lockForArbitration();
2067 provider
->scheduleTerminatePhase2();
2068 provider
->unlockForArbitration();
2072 // call with lockForArbitration
2073 void IOService::scheduleTerminatePhase2( IOOptionBits options
)
2075 AbsoluteTime deadline
;
2077 int waitResult
= THREAD_AWAKENED
;
2078 bool wait
, haveDeadline
= false;
2080 if (!(__state
[0] & kIOServiceInactiveState
)) return;
2082 regID1
= getRegistryEntryID();
2084 IOSERVICE_TERM_SCHED_PHASE2
,
2086 (uintptr_t) (regID1
>> 32),
2087 (uintptr_t) __state
[1],
2088 (uintptr_t) options
);
2090 if (__state
[1] & kIOServiceTermPhase1State
) return;
2093 unlockForArbitration();
2094 options
|= kIOServiceRequired
;
2095 IOLockLock( gJobsLock
);
2097 if( (options
& kIOServiceSynchronous
)
2098 && (current_thread() != gIOTerminateThread
)) {
2101 wait
= (gIOTerminateThread
!= 0);
2103 // wait to become the terminate thread
2104 IOLockSleep( gJobsLock
, &gIOTerminateThread
, THREAD_UNINT
);
2108 gIOTerminateThread
= current_thread();
2109 gIOTerminatePhase2List
->setObject( this );
2113 while( gIOTerminateWork
)
2114 terminateWorker( options
);
2115 wait
= (0 != (__state
[1] & kIOServiceBusyStateMask
));
2117 // wait for the victim to go non-busy
2118 if( !haveDeadline
) {
2119 clock_interval_to_deadline( 15, kSecondScale
, &deadline
);
2120 haveDeadline
= true;
2122 waitResult
= IOLockSleepDeadline( gJobsLock
, &gIOTerminateWork
,
2123 deadline
, THREAD_UNINT
);
2124 if( waitResult
== THREAD_TIMED_OUT
) {
2125 IOLog("%s[0x%qx]::terminate(kIOServiceSynchronous) timeout\n", getName(), getRegistryEntryID());
2128 } while(gIOTerminateWork
|| (wait
&& (waitResult
!= THREAD_TIMED_OUT
)));
2130 gIOTerminateThread
= 0;
2131 IOLockWakeup( gJobsLock
, (event_t
) &gIOTerminateThread
, /* one-thread */ false);
2134 // ! kIOServiceSynchronous
2136 gIOTerminatePhase2List
->setObject( this );
2137 if( 0 == gIOTerminateWork
++) {
2138 if( !gIOTerminateThread
)
2139 kernel_thread_start(&terminateThread
, (void *)(uintptr_t) options
, &gIOTerminateThread
);
2141 IOLockWakeup(gJobsLock
, (event_t
) &gIOTerminateWork
, /* one-thread */ false );
2145 IOLockUnlock( gJobsLock
);
2146 lockForArbitration();
2150 void IOService::terminateThread( void * arg
, wait_result_t waitResult
)
2152 IOLockLock( gJobsLock
);
2154 while (gIOTerminateWork
)
2155 terminateWorker( (uintptr_t) arg
);
2157 thread_deallocate(gIOTerminateThread
);
2158 gIOTerminateThread
= 0;
2159 IOLockWakeup( gJobsLock
, (event_t
) &gIOTerminateThread
, /* one-thread */ false);
2161 IOLockUnlock( gJobsLock
);
2164 void IOService::scheduleStop( IOService
* provider
)
2166 uint64_t regID1
= getRegistryEntryID();
2167 uint64_t regID2
= provider
->getRegistryEntryID();
2169 TLOG("%s[0x%qx]::scheduleStop(%s[0x%qx])\n", getName(), regID1
, provider
->getName(), regID2
);
2171 IOSERVICE_TERMINATE_SCHEDULE_STOP
,
2173 (uintptr_t) (regID1
>> 32),
2175 (uintptr_t) (regID2
>> 32));
2177 IOLockLock( gJobsLock
);
2178 gIOStopList
->tailQ( this );
2179 gIOStopProviderList
->tailQ( provider
);
2181 if( 0 == gIOTerminateWork
++) {
2182 if( !gIOTerminateThread
)
2183 kernel_thread_start(&terminateThread
, (void *) 0, &gIOTerminateThread
);
2185 IOLockWakeup(gJobsLock
, (event_t
) &gIOTerminateWork
, /* one-thread */ false );
2188 IOLockUnlock( gJobsLock
);
2191 void IOService::scheduleFinalize( void )
2193 uint64_t regID1
= getRegistryEntryID();
2195 TLOG("%s[0x%qx]::scheduleFinalize\n", getName(), regID1
);
2197 IOSERVICE_TERMINATE_SCHEDULE_FINALIZE
,
2199 (uintptr_t) (regID1
>> 32),
2202 IOLockLock( gJobsLock
);
2203 gIOFinalizeList
->tailQ( this );
2205 if( 0 == gIOTerminateWork
++) {
2206 if( !gIOTerminateThread
)
2207 kernel_thread_start(&terminateThread
, (void *) 0, &gIOTerminateThread
);
2209 IOLockWakeup(gJobsLock
, (event_t
) &gIOTerminateWork
, /* one-thread */ false );
2212 IOLockUnlock( gJobsLock
);
2215 bool IOService::willTerminate( IOService
* provider
, IOOptionBits options
)
2220 bool IOService::didTerminate( IOService
* provider
, IOOptionBits options
, bool * defer
)
2222 if( false == *defer
) {
2224 if( lockForArbitration( true )) {
2225 if( false == provider
->handleIsOpen( this ))
2226 scheduleStop( provider
);
2229 message( kIOMessageServiceIsRequestingClose
, provider
, (void *)(uintptr_t) options
);
2230 if( false == provider
->handleIsOpen( this ))
2231 scheduleStop( provider
);
2234 unlockForArbitration();
2241 void IOService::actionWillTerminate( IOService
* victim
, IOOptionBits options
,
2242 OSArray
* doPhase2List
,
2243 void *unused2 __unused
,
2244 void *unused3 __unused
)
2249 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2251 iter
= victim
->getClientIterator();
2253 while( (client
= (IOService
*) iter
->getNextObject())) {
2255 regID1
= client
->getRegistryEntryID();
2256 TLOG("%s[0x%qx]::willTerminate(%s[0x%qx], %08llx)\n",
2257 client
->getName(), regID1
,
2258 victim
->getName(), regID2
, (long long)options
);
2260 IOSERVICE_TERMINATE_WILL
,
2262 (uintptr_t) (regID1
>> 32),
2264 (uintptr_t) (regID2
>> 32));
2266 ok
= client
->willTerminate( victim
, options
);
2267 doPhase2List
->tailQ( client
);
2273 void IOService::actionDidTerminate( IOService
* victim
, IOOptionBits options
,
2274 void *unused1 __unused
, void *unused2 __unused
,
2275 void *unused3 __unused
)
2280 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2282 victim
->messageClients( kIOMessageServiceIsTerminated
, (void *)(uintptr_t) options
);
2284 iter
= victim
->getClientIterator();
2286 while( (client
= (IOService
*) iter
->getNextObject())) {
2288 regID1
= client
->getRegistryEntryID();
2289 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], %08llx)\n",
2290 client
->getName(), regID1
,
2291 victim
->getName(), regID2
, (long long)options
);
2293 client
->didTerminate( victim
, options
, &defer
);
2296 (defer
? IOSERVICE_TERMINATE_DID_DEFER
2297 : IOSERVICE_TERMINATE_DID
),
2299 (uintptr_t) (regID1
>> 32),
2301 (uintptr_t) (regID2
>> 32));
2303 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], defer %d)\n",
2304 client
->getName(), regID1
,
2305 victim
->getName(), regID2
, defer
);
2312 void IOService::actionWillStop( IOService
* victim
, IOOptionBits options
,
2313 void *unused1 __unused
, void *unused2 __unused
,
2314 void *unused3 __unused
)
2317 IOService
* provider
;
2319 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2321 iter
= victim
->getProviderIterator();
2323 while( (provider
= (IOService
*) iter
->getNextObject())) {
2325 regID1
= provider
->getRegistryEntryID();
2326 TLOG("%s[0x%qx]::willTerminate(%s[0x%qx], %08llx)\n",
2327 victim
->getName(), regID2
,
2328 provider
->getName(), regID1
, (long long)options
);
2330 IOSERVICE_TERMINATE_WILL
,
2332 (uintptr_t) (regID2
>> 32),
2334 (uintptr_t) (regID1
>> 32));
2336 ok
= victim
->willTerminate( provider
, options
);
2342 void IOService::actionDidStop( IOService
* victim
, IOOptionBits options
,
2343 void *unused1 __unused
, void *unused2 __unused
,
2344 void *unused3 __unused
)
2347 IOService
* provider
;
2349 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2351 iter
= victim
->getProviderIterator();
2353 while( (provider
= (IOService
*) iter
->getNextObject())) {
2355 regID1
= provider
->getRegistryEntryID();
2356 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], %08llx)\n",
2357 victim
->getName(), regID2
,
2358 provider
->getName(), regID1
, (long long)options
);
2359 victim
->didTerminate( provider
, options
, &defer
);
2362 (defer
? IOSERVICE_TERMINATE_DID_DEFER
2363 : IOSERVICE_TERMINATE_DID
),
2365 (uintptr_t) (regID2
>> 32),
2367 (uintptr_t) (regID1
>> 32));
2369 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], defer %d)\n",
2370 victim
->getName(), regID2
,
2371 provider
->getName(), regID1
, defer
);
2378 void IOService::actionFinalize( IOService
* victim
, IOOptionBits options
,
2379 void *unused1 __unused
, void *unused2 __unused
,
2380 void *unused3 __unused
)
2382 uint64_t regID1
= victim
->getRegistryEntryID();
2383 TLOG("%s[0x%qx]::finalize(%08llx)\n", victim
->getName(), regID1
, (long long)options
);
2385 IOSERVICE_TERMINATE_FINALIZE
,
2387 (uintptr_t) (regID1
>> 32),
2390 victim
->finalize( options
);
2393 void IOService::actionStop( IOService
* provider
, IOService
* client
,
2394 void *unused1 __unused
, void *unused2 __unused
,
2395 void *unused3 __unused
)
2397 uint64_t regID1
= provider
->getRegistryEntryID();
2398 uint64_t regID2
= client
->getRegistryEntryID();
2400 TLOG("%s[0x%qx]::stop(%s[0x%qx])\n", client
->getName(), regID2
, provider
->getName(), regID1
);
2402 IOSERVICE_TERMINATE_STOP
,
2404 (uintptr_t) (regID1
>> 32),
2406 (uintptr_t) (regID2
>> 32));
2408 client
->stop( provider
);
2409 if( provider
->isOpen( client
))
2410 provider
->close( client
);
2412 TLOG("%s[0x%qx]::detach(%s[0x%qx])\n", client
->getName(), regID2
, provider
->getName(), regID1
);
2413 client
->detach( provider
);
2416 void IOService::terminateWorker( IOOptionBits options
)
2418 OSArray
* doPhase2List
;
2419 OSArray
* didPhase2List
;
2425 IOService
* provider
;
2431 options
|= kIOServiceRequired
;
2433 doPhase2List
= OSArray::withCapacity( 16 );
2434 didPhase2List
= OSArray::withCapacity( 16 );
2435 freeList
= OSSet::withCapacity( 16 );
2436 if( (0 == doPhase2List
) || (0 == didPhase2List
) || (0 == freeList
))
2440 workDone
= gIOTerminateWork
;
2442 while( (victim
= (IOService
*) gIOTerminatePhase2List
->getObject(0) )) {
2445 gIOTerminatePhase2List
->removeObject(0);
2446 IOLockUnlock( gJobsLock
);
2448 uint64_t regID1
= victim
->getRegistryEntryID();
2450 IOSERVICE_TERM_START_PHASE2
,
2452 (uintptr_t) (regID1
>> 32),
2458 doPhase2
= victim
->lockForArbitration( true );
2460 doPhase2
= (0 != (kIOServiceInactiveState
& victim
->__state
[0]));
2463 uint64_t regID1
= victim
->getRegistryEntryID();
2465 IOSERVICE_TERM_TRY_PHASE2
,
2467 (uintptr_t) (regID1
>> 32),
2468 (uintptr_t) victim
->__state
[1],
2471 doPhase2
= (0 == (victim
->__state
[1] & kIOServiceTermPhase2State
))
2472 && (0 == (victim
->__state
[1] & kIOServiceConfigState
));
2474 if (doPhase2
&& (iter
= victim
->getClientIterator())) {
2475 while (doPhase2
&& (client
= (IOService
*) iter
->getNextObject())) {
2476 doPhase2
= (0 == (client
->__state
[1] & kIOServiceStartState
));
2479 uint64_t regID1
= client
->getRegistryEntryID();
2481 IOSERVICE_TERM_UC_DEFER
,
2483 (uintptr_t) (regID1
>> 32),
2484 (uintptr_t) client
->__state
[1],
2486 TLOG("%s[0x%qx]::defer phase2(%s[0x%qx])\n",
2487 victim
->getName(), victim
->getRegistryEntryID(),
2488 client
->getName(), client
->getRegistryEntryID());
2494 victim
->__state
[1] |= kIOServiceTermPhase2State
;
2496 victim
->unlockForArbitration();
2500 if (kIOServiceNeedWillTerminate
& victim
->__state
[1]) {
2501 _workLoopAction( (IOWorkLoop::Action
) &actionWillStop
,
2502 victim
, (void *)(uintptr_t) options
, NULL
);
2505 if( 0 == victim
->getClient()) {
2506 // no clients - will go to finalize
2507 IOLockLock( gJobsLock
);
2508 gIOFinalizeList
->tailQ( victim
);
2509 IOLockUnlock( gJobsLock
);
2511 _workLoopAction( (IOWorkLoop::Action
) &actionWillTerminate
,
2512 victim
, (void *)(uintptr_t) options
, (void *)(uintptr_t) doPhase2List
);
2514 didPhase2List
->headQ( victim
);
2517 victim
= (IOService
*) doPhase2List
->getObject(0);
2520 doPhase2List
->removeObject(0);
2524 while( (victim
= (IOService
*) didPhase2List
->getObject(0)) ) {
2526 if( victim
->lockForArbitration( true )) {
2527 victim
->__state
[1] |= kIOServiceTermPhase3State
;
2528 victim
->unlockForArbitration();
2530 _workLoopAction( (IOWorkLoop::Action
) &actionDidTerminate
,
2531 victim
, (void *)(uintptr_t) options
);
2532 if (kIOServiceNeedWillTerminate
& victim
->__state
[1]) {
2533 _workLoopAction( (IOWorkLoop::Action
) &actionDidStop
,
2534 victim
, (void *)(uintptr_t) options
, NULL
);
2536 didPhase2List
->removeObject(0);
2538 IOLockLock( gJobsLock
);
2545 while( (victim
= (IOService
*) gIOFinalizeList
->getObject(0))) {
2547 IOLockUnlock( gJobsLock
);
2548 _workLoopAction( (IOWorkLoop::Action
) &actionFinalize
,
2549 victim
, (void *)(uintptr_t) options
);
2550 IOLockLock( gJobsLock
);
2552 freeList
->setObject( victim
);
2553 // safe if finalize list is append only
2554 gIOFinalizeList
->removeObject(0);
2558 (!doPhase3
) && (client
= (IOService
*) gIOStopList
->getObject(idx
)); ) {
2560 provider
= (IOService
*) gIOStopProviderList
->getObject(idx
);
2563 uint64_t regID1
= provider
->getRegistryEntryID();
2564 uint64_t regID2
= client
->getRegistryEntryID();
2566 if( !provider
->isChild( client
, gIOServicePlane
)) {
2567 // may be multiply queued - nop it
2568 TLOG("%s[0x%qx]::nop stop(%s[0x%qx])\n", client
->getName(), regID2
, provider
->getName(), regID1
);
2570 IOSERVICE_TERMINATE_STOP_NOP
,
2572 (uintptr_t) (regID1
>> 32),
2574 (uintptr_t) (regID2
>> 32));
2577 // a terminated client is not ready for stop if it has clients, skip it
2578 if( (kIOServiceInactiveState
& client
->__state
[0]) && client
->getClient()) {
2579 TLOG("%s[0x%qx]::defer stop(%s[0x%qx])\n",
2580 client
->getName(), regID2
,
2581 client
->getClient()->getName(), client
->getClient()->getRegistryEntryID());
2583 IOSERVICE_TERMINATE_STOP_DEFER
,
2585 (uintptr_t) (regID1
>> 32),
2587 (uintptr_t) (regID2
>> 32));
2593 IOLockUnlock( gJobsLock
);
2594 _workLoopAction( (IOWorkLoop::Action
) &actionStop
,
2595 provider
, (void *) client
);
2596 IOLockLock( gJobsLock
);
2597 // check the finalize list now
2601 freeList
->setObject( client
);
2602 freeList
->setObject( provider
);
2604 // safe if stop list is append only
2605 gIOStopList
->removeObject( idx
);
2606 gIOStopProviderList
->removeObject( idx
);
2610 } while( doPhase3
);
2612 gIOTerminateWork
-= workDone
;
2613 moreToDo
= (gIOTerminateWork
!= 0);
2616 TLOG("iokit terminate done, %d stops remain\n", gIOStopList
->getCount());
2618 IOSERVICE_TERMINATE_DONE
,
2619 (uintptr_t) gIOStopList
->getCount(), 0, 0, 0);
2622 } while( moreToDo
);
2624 IOLockUnlock( gJobsLock
);
2626 freeList
->release();
2627 doPhase2List
->release();
2628 didPhase2List
->release();
2630 IOLockLock( gJobsLock
);
2633 bool IOService::finalize( IOOptionBits options
)
2636 IOService
* provider
;
2637 uint64_t regID1
, regID2
= getRegistryEntryID();
2639 iter
= getProviderIterator();
2643 while( (provider
= (IOService
*) iter
->getNextObject())) {
2646 if( 0 == (__state
[1] & kIOServiceTermPhase3State
)) {
2647 /* we come down here on programmatic terminate */
2649 regID1
= provider
->getRegistryEntryID();
2650 TLOG("%s[0x%qx]::stop1(%s[0x%qx])\n", getName(), regID2
, provider
->getName(), regID1
);
2652 IOSERVICE_TERMINATE_STOP
,
2654 (uintptr_t) (regID1
>> 32),
2656 (uintptr_t) (regID2
>> 32));
2659 if( provider
->isOpen( this ))
2660 provider
->close( this );
2664 if( provider
->lockForArbitration( true )) {
2665 if( 0 == (provider
->__state
[1] & kIOServiceTermPhase3State
))
2666 scheduleStop( provider
);
2667 provider
->unlockForArbitration();
2684 void IOService::doServiceTerminate( IOOptionBits options
)
2688 // a method in case someone needs to override it
2689 bool IOService::terminateClient( IOService
* client
, IOOptionBits options
)
2693 if( client
->isParent( this, gIOServicePlane
, true))
2694 // we are the clients only provider
2695 ok
= client
->terminate( options
);
2702 bool IOService::terminate( IOOptionBits options
)
2704 options
|= kIOServiceTerminate
;
2706 return( terminatePhase1( options
));
2709 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2715 struct ServiceOpenMessageContext
2717 IOService
* service
;
2719 IOService
* excludeClient
;
2720 IOOptionBits options
;
2723 static void serviceOpenMessageApplier( OSObject
* object
, void * ctx
)
2725 ServiceOpenMessageContext
* context
= (ServiceOpenMessageContext
*) ctx
;
2727 if( object
!= context
->excludeClient
)
2728 context
->service
->messageClient( context
->type
, object
, (void *)(uintptr_t) context
->options
);
2731 bool IOService::open( IOService
* forClient
,
2732 IOOptionBits options
,
2736 ServiceOpenMessageContext context
;
2738 context
.service
= this;
2739 context
.type
= kIOMessageServiceIsAttemptingOpen
;
2740 context
.excludeClient
= forClient
;
2741 context
.options
= options
;
2743 applyToInterested( gIOGeneralInterest
,
2744 &serviceOpenMessageApplier
, &context
);
2746 if( false == lockForArbitration(false) )
2749 ok
= (0 == (__state
[0] & kIOServiceInactiveState
));
2751 ok
= handleOpen( forClient
, options
, arg
);
2753 unlockForArbitration();
2758 void IOService::close( IOService
* forClient
,
2759 IOOptionBits options
)
2764 lockForArbitration();
2766 wasClosed
= handleIsOpen( forClient
);
2768 handleClose( forClient
, options
);
2769 last
= (__state
[1] & kIOServiceTermPhase3State
);
2772 unlockForArbitration();
2775 forClient
->scheduleStop( this );
2777 else if( wasClosed
) {
2779 ServiceOpenMessageContext context
;
2781 context
.service
= this;
2782 context
.type
= kIOMessageServiceWasClosed
;
2783 context
.excludeClient
= forClient
;
2784 context
.options
= options
;
2786 applyToInterested( gIOGeneralInterest
,
2787 &serviceOpenMessageApplier
, &context
);
2791 bool IOService::isOpen( const IOService
* forClient
) const
2793 IOService
* self
= (IOService
*) this;
2796 self
->lockForArbitration();
2798 ok
= handleIsOpen( forClient
);
2800 self
->unlockForArbitration();
2805 bool IOService::handleOpen( IOService
* forClient
,
2806 IOOptionBits options
,
2811 ok
= (0 == __owner
);
2813 __owner
= forClient
;
2815 else if( options
& kIOServiceSeize
) {
2816 ok
= (kIOReturnSuccess
== messageClient( kIOMessageServiceIsRequestingClose
,
2817 __owner
, (void *)(uintptr_t) options
));
2818 if( ok
&& (0 == __owner
))
2819 __owner
= forClient
;
2826 void IOService::handleClose( IOService
* forClient
,
2827 IOOptionBits options
)
2829 if( __owner
== forClient
)
2833 bool IOService::handleIsOpen( const IOService
* forClient
) const
2836 return( __owner
== forClient
);
2838 return( __owner
!= forClient
);
2842 * Probing & starting
2844 static SInt32
IONotifyOrdering( const OSMetaClassBase
* inObj1
, const OSMetaClassBase
* inObj2
, void * ref
)
2846 const _IOServiceNotifier
* obj1
= (const _IOServiceNotifier
*) inObj1
;
2847 const _IOServiceNotifier
* obj2
= (const _IOServiceNotifier
*) inObj2
;
2855 val1
= obj1
->priority
;
2858 val2
= obj2
->priority
;
2860 return ( val1
- val2
);
2863 static SInt32
IOServiceObjectOrder( const OSObject
* entry
, void * ref
)
2865 OSDictionary
* dict
;
2866 IOService
* service
;
2867 _IOServiceNotifier
* notify
;
2868 OSSymbol
* key
= (OSSymbol
*) ref
;
2871 if( (dict
= OSDynamicCast( OSDictionary
, entry
)))
2872 offset
= OSDynamicCast(OSNumber
, dict
->getObject( key
));
2873 else if( (notify
= OSDynamicCast( _IOServiceNotifier
, entry
)))
2874 return( notify
->priority
);
2876 else if( (service
= OSDynamicCast( IOService
, entry
)))
2877 offset
= OSDynamicCast(OSNumber
, service
->getProperty( key
));
2884 return( (SInt32
) offset
->unsigned32BitValue());
2886 return( kIODefaultProbeScore
);
2889 SInt32
IOServiceOrdering( const OSMetaClassBase
* inObj1
, const OSMetaClassBase
* inObj2
, void * ref
)
2891 const OSObject
* obj1
= (const OSObject
*) inObj1
;
2892 const OSObject
* obj2
= (const OSObject
*) inObj2
;
2900 val1
= IOServiceObjectOrder( obj1
, ref
);
2903 val2
= IOServiceObjectOrder( obj2
, ref
);
2905 return ( val1
- val2
);
2908 IOService
* IOService::copyClientWithCategory( const OSSymbol
* category
)
2910 IOService
* service
= 0;
2912 const OSSymbol
* nextCat
;
2914 iter
= getClientIterator();
2916 while( (service
= (IOService
*) iter
->getNextObject())) {
2917 if( kIOServiceInactiveState
& service
->__state
[0])
2919 nextCat
= (const OSSymbol
*) OSDynamicCast( OSSymbol
,
2920 service
->getProperty( gIOMatchCategoryKey
));
2921 if( category
== nextCat
)
2932 IOService
* IOService::getClientWithCategory( const OSSymbol
* category
)
2935 service
= copyClientWithCategory(category
);
2941 bool IOService::invokeNotifer( _IOServiceNotifier
* notify
)
2943 _IOServiceNotifierInvocation invocation
;
2947 invocation
.thread
= current_thread();
2950 willNotify
= (0 != (kIOServiceNotifyEnable
& notify
->state
));
2953 queue_enter( ¬ify
->handlerInvocations
, &invocation
,
2954 _IOServiceNotifierInvocation
*, link
);
2960 ret
= (*notify
->handler
)(notify
->target
, notify
->ref
, this, notify
);
2963 queue_remove( ¬ify
->handlerInvocations
, &invocation
,
2964 _IOServiceNotifierInvocation
*, link
);
2965 if( kIOServiceNotifyWaiter
& notify
->state
) {
2966 notify
->state
&= ~kIOServiceNotifyWaiter
;
2967 WAKEUPNOTIFY( notify
);
2976 * Alloc and probe matching classes,
2977 * called on the provider instance
2980 void IOService::probeCandidates( OSOrderedSet
* matches
)
2982 OSDictionary
* match
= 0;
2985 IOService
* newInst
;
2986 OSDictionary
* props
;
2989 OSOrderedSet
* familyMatches
= 0;
2990 OSOrderedSet
* startList
;
2991 OSDictionary
* startDict
= 0;
2992 const OSSymbol
* category
;
2994 _IOServiceNotifier
* notify
;
2995 OSObject
* nextMatch
= 0;
2997 bool needReloc
= false;
3001 IOService
* client
= NULL
;
3005 while( !needReloc
&& (nextMatch
= matches
->getFirstObject())) {
3007 nextMatch
->retain();
3008 matches
->removeObject(nextMatch
);
3010 if( (notify
= OSDynamicCast( _IOServiceNotifier
, nextMatch
))) {
3012 lockForArbitration();
3013 if( 0 == (__state
[0] & kIOServiceInactiveState
))
3014 invokeNotifer( notify
);
3015 unlockForArbitration();
3016 nextMatch
->release();
3020 } else if( !(match
= OSDynamicCast( OSDictionary
, nextMatch
))) {
3021 nextMatch
->release();
3028 debugFlags
= getDebugFlags( match
);
3032 category
= OSDynamicCast( OSSymbol
,
3033 match
->getObject( gIOMatchCategoryKey
));
3035 category
= gIODefaultMatchCategoryKey
;
3037 if( (client
= copyClientWithCategory(category
)) ) {
3039 if( (debugFlags
& kIOLogMatch
) && (this != gIOResources
))
3040 LOG("%s: match category %s exists\n", getName(),
3041 category
->getCStringNoCopy());
3043 nextMatch
->release();
3052 // create a copy now in case its modified during matching
3053 props
= OSDictionary::withDictionary( match
, match
->getCount());
3056 props
->setCapacityIncrement(1);
3058 // check the nub matches
3059 if( false == matchPassive(props
, kIOServiceChangesOK
| kIOServiceClassDone
))
3062 // Check to see if driver reloc has been loaded.
3063 needReloc
= (false == gIOCatalogue
->isModuleLoaded( match
));
3066 if( debugFlags
& kIOLogCatalogue
)
3067 LOG("%s: stalling for module\n", getName());
3069 // If reloc hasn't been loaded, exit;
3070 // reprobing will occur after reloc has been loaded.
3074 // reorder on family matchPropertyTable score.
3075 if( 0 == familyMatches
)
3076 familyMatches
= OSOrderedSet::withCapacity( 1,
3077 IOServiceOrdering
, (void *) gIOProbeScoreKey
);
3079 familyMatches
->setObject( props
);
3084 nextMatch
->release();
3093 if( familyMatches
) {
3096 && (props
= (OSDictionary
*) familyMatches
->getFirstObject())) {
3099 familyMatches
->removeObject( props
);
3104 debugFlags
= getDebugFlags( props
);
3107 symbol
= OSDynamicCast( OSSymbol
,
3108 props
->getObject( gIOClassKey
));
3112 //IOLog("%s alloc (symbol %p props %p)\n", symbol->getCStringNoCopy(), OBFUSCATE(symbol), OBFUSCATE(props));
3114 // alloc the driver instance
3115 inst
= (IOService
*) OSMetaClass::allocClassWithName( symbol
);
3118 IOLog("Couldn't alloc class \"%s\"\n",
3119 symbol
->getCStringNoCopy());
3123 // init driver instance
3124 if( !(inst
->init( props
))) {
3126 if( debugFlags
& kIOLogStart
)
3127 IOLog("%s::init fails\n", symbol
->getCStringNoCopy());
3131 if( __state
[1] & kIOServiceSynchronousState
)
3132 inst
->__state
[1] |= kIOServiceSynchronousState
;
3134 // give the driver the default match category if not specified
3135 category
= OSDynamicCast( OSSymbol
,
3136 props
->getObject( gIOMatchCategoryKey
));
3138 category
= gIODefaultMatchCategoryKey
;
3139 inst
->setProperty( gIOMatchCategoryKey
, (OSObject
*) category
);
3140 // attach driver instance
3141 if( !(inst
->attach( this )))
3144 // pass in score from property table
3145 score
= familyMatches
->orderObject( props
);
3147 // & probe the new driver instance
3149 if( debugFlags
& kIOLogProbe
)
3150 LOG("%s::probe(%s)\n",
3151 inst
->getMetaClass()->getClassName(), getName());
3154 newInst
= inst
->probe( this, &score
);
3155 inst
->detach( this );
3158 if( debugFlags
& kIOLogProbe
)
3159 IOLog("%s::probe fails\n", symbol
->getCStringNoCopy());
3165 newPri
= OSNumber::withNumber( score
, 32 );
3167 newInst
->setProperty( gIOProbeScoreKey
, newPri
);
3171 // add to start list for the match category
3173 startDict
= OSDictionary::withCapacity( 1 );
3174 assert( startDict
);
3175 startList
= (OSOrderedSet
*)
3176 startDict
->getObject( category
);
3177 if( 0 == startList
) {
3178 startList
= OSOrderedSet::withCapacity( 1,
3179 IOServiceOrdering
, (void *) gIOProbeScoreKey
);
3180 if( startDict
&& startList
) {
3181 startDict
->setObject( category
, startList
);
3182 startList
->release();
3185 assert( startList
);
3187 startList
->setObject( newInst
);
3195 familyMatches
->release();
3199 // start the best (until success) of each category
3201 iter
= OSCollectionIterator::withCollection( startDict
);
3203 while( (category
= (const OSSymbol
*) iter
->getNextObject())) {
3205 startList
= (OSOrderedSet
*) startDict
->getObject( category
);
3206 assert( startList
);
3211 while( true // (!started)
3212 && (inst
= (IOService
*)startList
->getFirstObject())) {
3215 startList
->removeObject(inst
);
3218 debugFlags
= getDebugFlags( inst
->getPropertyTable() );
3220 if( debugFlags
& kIOLogStart
) {
3222 LOG( "match category exists, skipping " );
3223 LOG( "%s::start(%s) <%d>\n", inst
->getName(),
3224 getName(), inst
->getRetainCount());
3227 if( false == started
)
3228 started
= startCandidate( inst
);
3230 if( (debugFlags
& kIOLogStart
) && (false == started
))
3231 LOG( "%s::start(%s) <%d> failed\n", inst
->getName(), getName(),
3232 inst
->getRetainCount());
3241 // adjust the busy count by +1 if matching is stalled for a module,
3242 // or -1 if a previously stalled matching is complete.
3243 lockForArbitration();
3245 uint64_t regID
= getRegistryEntryID();
3248 adjBusy
= (__state
[1] & kIOServiceModuleStallState
) ? 0 : 1;
3252 IOSERVICE_MODULESTALL
,
3254 (uintptr_t) (regID
>> 32),
3258 __state
[1] |= kIOServiceModuleStallState
;
3261 } else if( __state
[1] & kIOServiceModuleStallState
) {
3264 IOSERVICE_MODULEUNSTALL
,
3266 (uintptr_t) (regID
>> 32),
3270 __state
[1] &= ~kIOServiceModuleStallState
;
3274 _adjustBusy( adjBusy
);
3275 unlockForArbitration();
3278 startDict
->release();
3282 * Start a previously attached & probed instance,
3283 * called on exporting object instance
3286 bool IOService::startCandidate( IOService
* service
)
3290 ok
= service
->attach( this );
3294 if (this != gIOResources
)
3296 // stall for any nub resources
3298 // stall for any driver resources
3299 service
->checkResources();
3302 AbsoluteTime startTime
;
3303 AbsoluteTime endTime
;
3306 if (kIOLogStart
& gIOKitDebug
)
3307 clock_get_uptime(&startTime
);
3309 ok
= service
->start(this);
3311 if (kIOLogStart
& gIOKitDebug
)
3313 clock_get_uptime(&endTime
);
3315 if (CMP_ABSOLUTETIME(&endTime
, &startTime
) > 0)
3317 SUB_ABSOLUTETIME(&endTime
, &startTime
);
3318 absolutetime_to_nanoseconds(endTime
, &nano
);
3319 if (nano
> 500000000ULL)
3320 IOLog("%s::start took %ld ms\n", service
->getName(), (long)(UInt32
)(nano
/ 1000000ULL));
3324 service
->detach( this );
3329 void IOService::publishResource( const char * key
, OSObject
* value
)
3331 const OSSymbol
* sym
;
3333 if( (sym
= OSSymbol::withCString( key
))) {
3334 publishResource( sym
, value
);
3339 void IOService::publishResource( const OSSymbol
* key
, OSObject
* value
)
3342 value
= (OSObject
*) gIOServiceKey
;
3344 gIOResources
->setProperty( key
, value
);
3346 if( IORecursiveLockHaveLock( gNotificationLock
))
3349 gIOResourceGenerationCount
++;
3350 gIOResources
->registerService();
3353 bool IOService::addNeededResource( const char * key
)
3355 OSObject
* resourcesProp
;
3360 resourcesProp
= getProperty( gIOResourceMatchKey
);
3362 newKey
= OSString::withCString( key
);
3363 if( (0 == resourcesProp
) || (0 == newKey
))
3366 set
= OSDynamicCast( OSSet
, resourcesProp
);
3368 set
= OSSet::withCapacity( 1 );
3370 set
->setObject( resourcesProp
);
3375 set
->setObject( newKey
);
3377 ret
= setProperty( gIOResourceMatchKey
, set
);
3383 bool IOService::checkResource( OSObject
* matching
)
3386 OSDictionary
* table
;
3388 if( (str
= OSDynamicCast( OSString
, matching
))) {
3389 if( gIOResources
->getProperty( str
))
3394 table
= resourceMatching( str
);
3395 else if( (table
= OSDynamicCast( OSDictionary
, matching
)))
3398 IOLog("%s: Can't match using: %s\n", getName(),
3399 matching
->getMetaClass()->getClassName());
3400 /* false would stall forever */
3404 if( gIOKitDebug
& kIOLogConfig
)
3405 LOG("config(%p): stalling %s\n", OBFUSCATE(IOThreadSelf()), getName());
3407 waitForService( table
);
3409 if( gIOKitDebug
& kIOLogConfig
)
3410 LOG("config(%p): waking\n", OBFUSCATE(IOThreadSelf()) );
3415 bool IOService::checkResources( void )
3417 OSObject
* resourcesProp
;
3422 resourcesProp
= getProperty( gIOResourceMatchKey
);
3423 if( 0 == resourcesProp
)
3426 if( (set
= OSDynamicCast( OSSet
, resourcesProp
))) {
3428 iter
= OSCollectionIterator::withCollection( set
);
3430 while( ok
&& (resourcesProp
= iter
->getNextObject()) )
3431 ok
= checkResource( resourcesProp
);
3436 ok
= checkResource( resourcesProp
);
3442 void _IOConfigThread::configThread( void )
3444 _IOConfigThread
* inst
;
3447 if( !(inst
= new _IOConfigThread
))
3452 if (KERN_SUCCESS
!= kernel_thread_start(&_IOConfigThread::main
, inst
, &unused
))
3465 void _IOConfigThread::free( void )
3467 thread_deallocate(current_thread());
3471 void IOService::doServiceMatch( IOOptionBits options
)
3473 _IOServiceNotifier
* notify
;
3475 OSOrderedSet
* matches
;
3476 SInt32 catalogGeneration
;
3477 bool keepGuessing
= true;
3478 bool reRegistered
= true;
3481 // job->nub->deliverNotification( gIOPublishNotification,
3482 // kIOServiceRegisteredState, 0xffffffff );
3484 while( keepGuessing
) {
3486 matches
= gIOCatalogue
->findDrivers( this, &catalogGeneration
);
3487 // the matches list should always be created by findDrivers()
3490 lockForArbitration();
3491 if( 0 == (__state
[0] & kIOServiceFirstPublishState
)) {
3492 getMetaClass()->addInstance(this);
3493 deliverNotification( gIOFirstPublishNotification
,
3494 kIOServiceFirstPublishState
, 0xffffffff );
3497 __state
[1] &= ~kIOServiceNeedConfigState
;
3498 __state
[1] |= kIOServiceConfigState
;
3499 didRegister
= (0 == (kIOServiceRegisteredState
& __state
[0]));
3500 __state
[0] |= kIOServiceRegisteredState
;
3502 keepGuessing
&= (0 == (__state
[0] & kIOServiceInactiveState
));
3503 if (reRegistered
&& keepGuessing
) {
3504 iter
= OSCollectionIterator::withCollection( (OSOrderedSet
*)
3505 gNotifications
->getObject( gIOPublishNotification
) );
3507 while((notify
= (_IOServiceNotifier
*)
3508 iter
->getNextObject())) {
3510 if( matchPassive(notify
->matching
, 0)
3511 && (kIOServiceNotifyEnable
& notify
->state
))
3512 matches
->setObject( notify
);
3519 unlockForArbitration();
3521 if (keepGuessing
&& matches
->getCount() && (kIOReturnSuccess
== getResources()))
3522 probeCandidates( matches
);
3527 lockForArbitration();
3528 reRegistered
= (0 != (__state
[1] & kIOServiceNeedConfigState
));
3530 (reRegistered
|| (catalogGeneration
!=
3531 gIOCatalogue
->getGenerationCount()))
3532 && (0 == (__state
[0] & kIOServiceInactiveState
));
3535 unlockForArbitration();
3538 if( (0 == (__state
[0] & kIOServiceInactiveState
))
3539 && (0 == (__state
[1] & kIOServiceModuleStallState
)) ) {
3540 deliverNotification( gIOMatchedNotification
,
3541 kIOServiceMatchedState
, 0xffffffff );
3542 if( 0 == (__state
[0] & kIOServiceFirstMatchState
))
3543 deliverNotification( gIOFirstMatchNotification
,
3544 kIOServiceFirstMatchState
, 0xffffffff );
3547 __state
[1] &= ~kIOServiceConfigState
;
3548 scheduleTerminatePhase2();
3551 unlockForArbitration();
3554 UInt32
IOService::_adjustBusy( SInt32 delta
)
3559 bool wasQuiet
, nowQuiet
, needWake
;
3562 result
= __state
[1] & kIOServiceBusyStateMask
;
3566 next
->lockForArbitration();
3567 count
= next
->__state
[1] & kIOServiceBusyStateMask
;
3568 wasQuiet
= (0 == count
);
3569 if (((delta
< 0) && wasQuiet
) || ((delta
> 0) && (kIOServiceBusyMax
== count
)))
3570 OSReportWithBacktrace("%s: bad busy count (%d,%d)\n", next
->getName(), count
, delta
);
3573 next
->__state
[1] = (next
->__state
[1] & ~kIOServiceBusyStateMask
) | count
;
3574 nowQuiet
= (0 == count
);
3575 needWake
= (0 != (kIOServiceBusyWaiterState
& next
->__state
[1]));
3578 next
->__state
[1] &= ~kIOServiceBusyWaiterState
;
3579 IOLockLock( gIOServiceBusyLock
);
3580 thread_wakeup( (event_t
) next
);
3581 IOLockUnlock( gIOServiceBusyLock
);
3584 next
->unlockForArbitration();
3586 if( (wasQuiet
|| nowQuiet
) ) {
3588 uint64_t regID
= next
->getRegistryEntryID();
3590 ((wasQuiet
/*nowBusy*/) ? IOSERVICE_BUSY
: IOSERVICE_NONBUSY
),
3592 (uintptr_t) (regID
>> 32),
3598 next
->__timeBusy
= mach_absolute_time();
3602 next
->__accumBusy
+= mach_absolute_time() - next
->__timeBusy
;
3603 next
->__timeBusy
= 0;
3606 MessageClientsContext context
;
3608 context
.service
= next
;
3609 context
.type
= kIOMessageServiceBusyStateChange
;
3610 context
.argument
= (void *) wasQuiet
; /*nowBusy*/
3611 context
.argSize
= 0;
3613 applyToInterestNotifiers( next
, gIOBusyInterest
,
3614 &messageClientsApplier
, &context
);
3617 if( nowQuiet
&& (next
== gIOServiceRoot
)) {
3618 OSKext::considerUnloads();
3619 IOServiceTrace(IOSERVICE_REGISTRY_QUIET
, 0, 0, 0, 0);
3624 delta
= nowQuiet
? -1 : +1;
3626 } while( (wasQuiet
|| nowQuiet
) && (next
= next
->getProvider()));
3631 void IOService::adjustBusy( SInt32 delta
)
3633 lockForArbitration();
3634 _adjustBusy( delta
);
3635 unlockForArbitration();
3638 uint64_t IOService::getAccumulatedBusyTime( void )
3640 uint64_t accumBusy
= __accumBusy
;
3641 uint64_t timeBusy
= __timeBusy
;
3646 accumBusy
= __accumBusy
;
3647 timeBusy
= __timeBusy
;
3649 accumBusy
+= mach_absolute_time() - timeBusy
;
3651 while (timeBusy
!= __timeBusy
);
3653 absolutetime_to_nanoseconds(*(AbsoluteTime
*)&accumBusy
, &nano
);
3658 UInt32
IOService::getBusyState( void )
3660 return( __state
[1] & kIOServiceBusyStateMask
);
3663 IOReturn
IOService::waitForState( UInt32 mask
, UInt32 value
,
3664 mach_timespec_t
* timeout
)
3666 panic("waitForState");
3667 return (kIOReturnUnsupported
);
3670 IOReturn
IOService::waitForState( UInt32 mask
, UInt32 value
,
3674 int waitResult
= THREAD_AWAKENED
;
3675 bool computeDeadline
= true;
3676 AbsoluteTime abstime
;
3679 lockForArbitration();
3680 IOLockLock( gIOServiceBusyLock
);
3681 wait
= (value
!= (__state
[1] & mask
));
3683 __state
[1] |= kIOServiceBusyWaiterState
;
3684 unlockForArbitration();
3685 if( timeout
!= UINT64_MAX
) {
3686 if( computeDeadline
) {
3687 AbsoluteTime nsinterval
;
3688 nanoseconds_to_absolutetime(timeout
, &nsinterval
);
3689 clock_absolutetime_interval_to_deadline(nsinterval
, &abstime
);
3690 computeDeadline
= false;
3692 assert_wait_deadline((event_t
)this, THREAD_UNINT
, __OSAbsoluteTime(abstime
));
3695 assert_wait((event_t
)this, THREAD_UNINT
);
3697 unlockForArbitration();
3698 IOLockUnlock( gIOServiceBusyLock
);
3700 waitResult
= thread_block(THREAD_CONTINUE_NULL
);
3702 } while( wait
&& (waitResult
!= THREAD_TIMED_OUT
));
3704 if( waitResult
== THREAD_TIMED_OUT
)
3705 return( kIOReturnTimeout
);
3707 return( kIOReturnSuccess
);
3710 IOReturn
IOService::waitQuiet( uint64_t timeout
)
3713 ret
= waitForState( kIOServiceBusyStateMask
, 0, timeout
);
3714 if ((kIOReturnTimeout
== ret
) && (timeout
>= 41000000000) && (kIOWaitQuietPanics
& gIOKitDebug
))
3716 IORegistryIterator
* iter
;
3718 OSOrderedSet
* leaves
;
3720 IOService
* nextParent
;
3726 string
= IONew(char, len
);
3728 iter
= IORegistryIterator::iterateOver(this, gIOServicePlane
, kIORegistryIterateRecursively
);
3729 leaves
= OSOrderedSet::withCapacity(4);
3730 if (iter
) set
= iter
->iterateAll();
3731 if (string
&& leaves
&& set
)
3733 while ((next
= (IOService
*) set
->getLastObject()))
3735 if (next
->getBusyState())
3737 leaves
->setObject(next
);
3739 while ((nextParent
= nextParent
->getProvider()))
3741 set
->removeObject(nextParent
);
3742 leaves
->removeObject(nextParent
);
3745 set
->removeObject(next
);
3748 while ((next
= (IOService
*) leaves
->getLastObject()))
3750 l
= snprintf(s
, len
, "%s'%s'", ((s
== string
) ? "" : ", "), next
->getName());
3751 if (l
>= len
) break;
3754 leaves
->removeObject(next
);
3757 panic("busy timeout(%llds): %s", timeout
/ 1000000000ULL, string
? string
: "");
3762 IOReturn
IOService::waitQuiet( mach_timespec_t
* timeout
)
3768 timeoutNS
= timeout
->tv_sec
;
3769 timeoutNS
*= kSecondScale
;
3770 timeoutNS
+= timeout
->tv_nsec
;
3773 timeoutNS
= UINT64_MAX
;
3775 return (waitQuiet(timeoutNS
));
3778 bool IOService::serializeProperties( OSSerialize
* s
) const
3781 ((IOService
*)this)->setProperty( ((IOService
*)this)->__state
,
3782 sizeof( __state
), "__state");
3784 return( super::serializeProperties(s
) );
3788 void _IOConfigThread::main(void * arg
, wait_result_t result
)
3790 _IOConfigThread
* self
= (_IOConfigThread
*) arg
;
3791 _IOServiceJob
* job
;
3795 thread_precedence_policy_data_t precedence
= { -1 };
3797 kr
= thread_policy_set(current_thread(),
3798 THREAD_PRECEDENCE_POLICY
,
3799 (thread_policy_t
) &precedence
,
3800 THREAD_PRECEDENCE_POLICY_COUNT
);
3801 if (KERN_SUCCESS
!= kr
)
3802 IOLog("thread_policy_set(%d)\n", kr
);
3808 semaphore_wait( gJobsSemaphore
);
3810 IOTakeLock( gJobsLock
);
3811 job
= (_IOServiceJob
*) gJobs
->getFirstObject();
3813 gJobs
->removeObject(job
);
3816 // gNumConfigThreads--; // we're out of service
3817 gNumWaitingThreads
--; // we're out of service
3819 IOUnlock( gJobsLock
);
3825 if( gIOKitDebug
& kIOLogConfig
)
3826 LOG("config(%p): starting on %s, %d\n",
3827 OBFUSCATE(IOThreadSelf()), job
->nub
->getName(), job
->type
);
3829 switch( job
->type
) {
3832 nub
->doServiceMatch( job
->options
);
3836 LOG("config(%p): strange type (%d)\n",
3837 OBFUSCATE(IOThreadSelf()), job
->type
);
3844 IOTakeLock( gJobsLock
);
3845 alive
= (gOutstandingJobs
> gNumWaitingThreads
);
3847 gNumWaitingThreads
++; // back in service
3848 // gNumConfigThreads++;
3850 if( 0 == --gNumConfigThreads
) {
3851 // IOLog("MATCH IDLE\n");
3852 IOLockWakeup( gJobsLock
, (event_t
) &gNumConfigThreads
, /* one-thread */ false );
3855 IOUnlock( gJobsLock
);
3860 if( gIOKitDebug
& kIOLogConfig
)
3861 LOG("config(%p): terminating\n", OBFUSCATE(IOThreadSelf()) );
3866 IOReturn
IOService::waitMatchIdle( UInt32 msToWait
)
3869 int waitResult
= THREAD_AWAKENED
;
3870 bool computeDeadline
= true;
3871 AbsoluteTime deadline
;
3873 IOLockLock( gJobsLock
);
3875 wait
= (0 != gNumConfigThreads
);
3878 if( computeDeadline
) {
3879 clock_interval_to_deadline(
3880 msToWait
, kMillisecondScale
, &deadline
);
3881 computeDeadline
= false;
3883 waitResult
= IOLockSleepDeadline( gJobsLock
, &gNumConfigThreads
,
3884 deadline
, THREAD_UNINT
);
3886 waitResult
= IOLockSleep( gJobsLock
, &gNumConfigThreads
,
3890 } while( wait
&& (waitResult
!= THREAD_TIMED_OUT
));
3891 IOLockUnlock( gJobsLock
);
3893 if( waitResult
== THREAD_TIMED_OUT
)
3894 return( kIOReturnTimeout
);
3896 return( kIOReturnSuccess
);
3899 void IOService::cpusRunning(void)
3901 gCPUsRunning
= true;
3904 void _IOServiceJob::pingConfig( _IOServiceJob
* job
)
3911 IOTakeLock( gJobsLock
);
3914 gJobs
->setLastObject( job
);
3916 count
= gNumWaitingThreads
;
3917 // if( gNumConfigThreads) count++;// assume we're called from a config thread
3919 create
= ( (gOutstandingJobs
> count
)
3920 && ((gNumConfigThreads
< kMaxConfigThreads
)
3921 || (job
->nub
== gIOResources
)
3924 gNumConfigThreads
++;
3925 gNumWaitingThreads
++;
3928 IOUnlock( gJobsLock
);
3933 if( gIOKitDebug
& kIOLogConfig
)
3934 LOG("config(%d): creating\n", gNumConfigThreads
- 1);
3935 _IOConfigThread::configThread();
3938 semaphore_signal( gJobsSemaphore
);
3941 struct IOServiceMatchContext
3943 OSDictionary
* table
;
3951 bool IOService::instanceMatch(const OSObject
* entry
, void * context
)
3953 IOServiceMatchContext
* ctx
= (typeof(ctx
)) context
;
3954 IOService
* service
= (typeof(service
)) entry
;
3955 OSDictionary
* table
= ctx
->table
;
3956 uint32_t options
= ctx
->options
;
3957 uint32_t state
= ctx
->state
;
3964 match
= ((state
== (state
& service
->__state
[0]))
3965 && (0 == (service
->__state
[0] & kIOServiceInactiveState
)));
3967 ctx
->count
+= table
->getCount();
3968 match
= service
->matchInternal(table
, options
, &done
);
3975 if ((kIONotifyOnce
& options
) && (ctx
->done
== ctx
->count
))
3978 ctx
->result
= service
;
3981 else if (!ctx
->result
)
3983 ctx
->result
= OSSet::withObjects((const OSObject
**) &service
, 1, 1);
3987 ((OSSet
*)ctx
->result
)->setObject(service
);
3992 // internal - call with gNotificationLock
3993 OSObject
* IOService::copyExistingServices( OSDictionary
* matching
,
3994 IOOptionBits inState
, IOOptionBits options
)
3996 OSObject
* current
= 0;
3998 IOService
* service
;
4006 OSSerialize
* s
= OSSerialize::withCapacity(128);
4007 matching
->serialize(s
);
4010 if((obj
= matching
->getObject(gIOProviderClassKey
))
4012 && gIOResourcesKey
->isEqualTo(obj
)
4013 && (service
= gIOResources
))
4015 if( (inState
== (service
->__state
[0] & inState
))
4016 && (0 == (service
->__state
[0] & kIOServiceInactiveState
))
4017 && service
->matchPassive(matching
, options
))
4019 if( options
& kIONotifyOnce
)
4025 current
= OSSet::withObjects((const OSObject
**) &service
, 1, 1 );
4030 IOServiceMatchContext ctx
;
4031 ctx
.table
= matching
;
4032 ctx
.state
= inState
;
4035 ctx
.options
= options
;
4038 if ((str
= OSDynamicCast(OSString
, obj
)))
4040 const OSSymbol
* sym
= OSSymbol::withString(str
);
4041 OSMetaClass::applyToInstancesOfClassName(sym
, instanceMatch
, &ctx
);
4047 IOService::gMetaClass
.applyToInstances(instanceMatch
, &ctx
);
4051 current
= ctx
.result
;
4053 options
|= kIOServiceInternalDone
| kIOServiceClassDone
;
4054 if (current
&& (ctx
.done
!= ctx
.count
))
4057 source
= OSDynamicCast(OSSet
, current
);
4059 while ((service
= (IOService
*) source
->getAnyObject()))
4061 if (service
->matchPassive(matching
, options
))
4063 if( options
& kIONotifyOnce
)
4071 ((OSSet
*)current
)->setObject( service
);
4075 current
= OSSet::withObjects(
4076 (const OSObject
**) &service
, 1, 1 );
4079 source
->removeObject(service
);
4087 OSObject
* _current
= 0;
4089 iter
= IORegistryIterator::iterateOver( gIOServicePlane
,
4090 kIORegistryIterateRecursively
);
4094 while( (service
= (IOService
*) iter
->getNextObject())) {
4095 if( (inState
== (service
->__state
[0] & inState
))
4096 && (0 == (service
->__state
[0] & kIOServiceInactiveState
))
4097 && service
->matchPassive(matching
, 0)) {
4099 if( options
& kIONotifyOnce
) {
4105 ((OSSet
*)_current
)->setObject( service
);
4107 _current
= OSSet::withObjects(
4108 (const OSObject
**) &service
, 1, 1 );
4111 } while( !service
&& !iter
->isValid());
4116 if ( ((current
!= 0) != (_current
!= 0))
4117 || (current
&& _current
&& !current
->isEqualTo(_current
)))
4119 OSSerialize
* s1
= OSSerialize::withCapacity(128);
4120 OSSerialize
* s2
= OSSerialize::withCapacity(128);
4121 current
->serialize(s1
);
4122 _current
->serialize(s2
);
4123 kprintf("**mismatch** %p %p\n%s\n%s\n%s\n", OBFUSCATE(current
),
4124 OBFUSCATE(_current
), s
->text(), s1
->text(), s2
->text());
4129 if (_current
) _current
->release();
4135 if( current
&& (0 == (options
& (kIONotifyOnce
| kIOServiceExistingSet
)))) {
4136 iter
= OSCollectionIterator::withCollection( (OSSet
*)current
);
4145 OSIterator
* IOService::getMatchingServices( OSDictionary
* matching
)
4149 // is a lock even needed?
4152 iter
= (OSIterator
*) copyExistingServices( matching
,
4153 kIOServiceMatchedState
);
4160 IOService
* IOService::copyMatchingService( OSDictionary
* matching
)
4162 IOService
* service
;
4164 // is a lock even needed?
4167 service
= (IOService
*) copyExistingServices( matching
,
4168 kIOServiceMatchedState
, kIONotifyOnce
);
4175 struct _IOServiceMatchingNotificationHandlerRef
4177 IOServiceNotificationHandler handler
;
4181 static bool _IOServiceMatchingNotificationHandler( void * target
, void * refCon
,
4182 IOService
* newService
,
4183 IONotifier
* notifier
)
4185 return ((*((_IOServiceNotifier
*) notifier
)->compatHandler
)(target
, refCon
, newService
));
4188 // internal - call with gNotificationLock
4189 IONotifier
* IOService::setNotification(
4190 const OSSymbol
* type
, OSDictionary
* matching
,
4191 IOServiceMatchingNotificationHandler handler
, void * target
, void * ref
,
4194 _IOServiceNotifier
* notify
= 0;
4200 notify
= new _IOServiceNotifier
;
4201 if( notify
&& !notify
->init()) {
4207 notify
->handler
= handler
;
4208 notify
->target
= target
;
4209 notify
->matching
= matching
;
4211 if (handler
== &_IOServiceMatchingNotificationHandler
)
4213 notify
->compatHandler
= ((_IOServiceMatchingNotificationHandlerRef
*)ref
)->handler
;
4214 notify
->ref
= ((_IOServiceMatchingNotificationHandlerRef
*)ref
)->ref
;
4218 notify
->priority
= priority
;
4219 notify
->state
= kIOServiceNotifyEnable
;
4220 queue_init( ¬ify
->handlerInvocations
);
4224 if( 0 == (set
= (OSOrderedSet
*) gNotifications
->getObject( type
))) {
4225 set
= OSOrderedSet::withCapacity( 1,
4226 IONotifyOrdering
, 0 );
4228 gNotifications
->setObject( type
, set
);
4232 notify
->whence
= set
;
4234 set
->setObject( notify
);
4240 // internal - call with gNotificationLock
4241 IONotifier
* IOService::doInstallNotification(
4242 const OSSymbol
* type
, OSDictionary
* matching
,
4243 IOServiceMatchingNotificationHandler handler
,
4244 void * target
, void * ref
,
4245 SInt32 priority
, OSIterator
** existing
)
4248 IONotifier
* notify
;
4249 IOOptionBits inState
;
4254 if( type
== gIOPublishNotification
)
4255 inState
= kIOServiceRegisteredState
;
4257 else if( type
== gIOFirstPublishNotification
)
4258 inState
= kIOServiceFirstPublishState
;
4260 else if( (type
== gIOMatchedNotification
)
4261 || (type
== gIOFirstMatchNotification
))
4262 inState
= kIOServiceMatchedState
;
4263 else if( type
== gIOTerminatedNotification
)
4268 notify
= setNotification( type
, matching
, handler
, target
, ref
, priority
);
4271 // get the current set
4272 exist
= (OSIterator
*) copyExistingServices( matching
, inState
);
4281 #if !defined(__LP64__)
4282 IONotifier
* IOService::installNotification(const OSSymbol
* type
, OSDictionary
* matching
,
4283 IOServiceNotificationHandler handler
,
4284 void * target
, void * refCon
,
4285 SInt32 priority
, OSIterator
** existing
)
4287 IONotifier
* result
;
4288 _IOServiceMatchingNotificationHandlerRef ref
;
4289 ref
.handler
= handler
;
4292 result
= (_IOServiceNotifier
*) installNotification( type
, matching
,
4293 &_IOServiceMatchingNotificationHandler
,
4294 target
, &ref
, priority
, existing
);
4296 matching
->release();
4300 #endif /* !defined(__LP64__) */
4303 IONotifier
* IOService::installNotification(
4304 const OSSymbol
* type
, OSDictionary
* matching
,
4305 IOServiceMatchingNotificationHandler handler
,
4306 void * target
, void * ref
,
4307 SInt32 priority
, OSIterator
** existing
)
4309 IONotifier
* notify
;
4313 notify
= doInstallNotification( type
, matching
, handler
, target
, ref
,
4314 priority
, existing
);
4321 IONotifier
* IOService::addNotification(
4322 const OSSymbol
* type
, OSDictionary
* matching
,
4323 IOServiceNotificationHandler handler
,
4324 void * target
, void * refCon
,
4327 IONotifier
* result
;
4328 _IOServiceMatchingNotificationHandlerRef ref
;
4330 ref
.handler
= handler
;
4333 result
= addMatchingNotification(type
, matching
, &_IOServiceMatchingNotificationHandler
,
4334 target
, &ref
, priority
);
4337 matching
->release();
4342 IONotifier
* IOService::addMatchingNotification(
4343 const OSSymbol
* type
, OSDictionary
* matching
,
4344 IOServiceMatchingNotificationHandler handler
,
4345 void * target
, void * ref
,
4348 OSIterator
* existing
= NULL
;
4349 _IOServiceNotifier
* notify
;
4352 notify
= (_IOServiceNotifier
*) installNotification( type
, matching
,
4353 handler
, target
, ref
, priority
, &existing
);
4355 // send notifications for existing set
4358 notify
->retain(); // in case handler remove()s
4359 while( (next
= (IOService
*) existing
->getNextObject())) {
4361 next
->lockForArbitration();
4362 if( 0 == (next
->__state
[0] & kIOServiceInactiveState
))
4363 next
->invokeNotifer( notify
);
4364 next
->unlockForArbitration();
4367 existing
->release();
4373 bool IOService::syncNotificationHandler(
4374 void * /* target */, void * ref
,
4375 IOService
* newService
,
4376 IONotifier
* notifier
)
4380 if (!*((IOService
**) ref
))
4382 newService
->retain();
4383 (*(IOService
**) ref
) = newService
;
4391 IOService
* IOService::waitForMatchingService( OSDictionary
* matching
,
4394 IONotifier
* notify
= 0;
4395 // priority doesn't help us much since we need a thread wakeup
4396 SInt32 priority
= 0;
4407 result
= (IOService
*) copyExistingServices( matching
,
4408 kIOServiceMatchedState
, kIONotifyOnce
);
4411 notify
= IOService::setNotification( gIOMatchedNotification
, matching
,
4412 &IOService::syncNotificationHandler
, (void *) 0,
4413 &result
, priority
);
4416 if (UINT64_MAX
!= timeout
)
4418 AbsoluteTime deadline
;
4419 nanoseconds_to_absolutetime(timeout
, &deadline
);
4420 clock_absolutetime_interval_to_deadline(deadline
, &deadline
);
4421 SLEEPNOTIFYTO(&result
, deadline
);
4425 SLEEPNOTIFY(&result
);
4433 notify
->remove(); // dequeues
4438 IOService
* IOService::waitForService( OSDictionary
* matching
,
4439 mach_timespec_t
* timeout
)
4446 timeoutNS
= timeout
->tv_sec
;
4447 timeoutNS
*= kSecondScale
;
4448 timeoutNS
+= timeout
->tv_nsec
;
4451 timeoutNS
= UINT64_MAX
;
4453 result
= waitForMatchingService(matching
, timeoutNS
);
4455 matching
->release();
4462 void IOService::deliverNotification( const OSSymbol
* type
,
4463 IOOptionBits orNewState
, IOOptionBits andNewState
)
4465 _IOServiceNotifier
* notify
;
4467 OSArray
* willSend
= 0;
4469 lockForArbitration();
4471 if( (0 == (__state
[0] & kIOServiceInactiveState
))
4472 || (type
== gIOTerminatedNotification
)) {
4476 iter
= OSCollectionIterator::withCollection( (OSOrderedSet
*)
4477 gNotifications
->getObject( type
) );
4480 while( (notify
= (_IOServiceNotifier
*) iter
->getNextObject())) {
4482 if( matchPassive(notify
->matching
, 0)
4483 && (kIOServiceNotifyEnable
& notify
->state
)) {
4485 willSend
= OSArray::withCapacity(8);
4487 willSend
->setObject( notify
);
4493 __state
[0] = (__state
[0] | orNewState
) & andNewState
;
4499 for( unsigned int idx
= 0;
4500 (notify
= (_IOServiceNotifier
*) willSend
->getObject(idx
));
4502 invokeNotifer( notify
);
4504 willSend
->release();
4506 unlockForArbitration();
4509 IOOptionBits
IOService::getState( void ) const
4511 return( __state
[0] );
4515 * Helpers to make matching objects for simple cases
4518 OSDictionary
* IOService::serviceMatching( const OSString
* name
,
4519 OSDictionary
* table
)
4522 const OSString
* str
;
4524 str
= OSSymbol::withString(name
);
4529 table
= OSDictionary::withCapacity( 2 );
4531 table
->setObject(gIOProviderClassKey
, (OSObject
*)str
);
4537 OSDictionary
* IOService::serviceMatching( const char * name
,
4538 OSDictionary
* table
)
4540 const OSString
* str
;
4542 str
= OSSymbol::withCString( name
);
4546 table
= serviceMatching( str
, table
);
4551 OSDictionary
* IOService::nameMatching( const OSString
* name
,
4552 OSDictionary
* table
)
4555 table
= OSDictionary::withCapacity( 2 );
4557 table
->setObject( gIONameMatchKey
, (OSObject
*)name
);
4562 OSDictionary
* IOService::nameMatching( const char * name
,
4563 OSDictionary
* table
)
4565 const OSString
* str
;
4567 str
= OSSymbol::withCString( name
);
4571 table
= nameMatching( str
, table
);
4576 OSDictionary
* IOService::resourceMatching( const OSString
* str
,
4577 OSDictionary
* table
)
4579 table
= serviceMatching( gIOResourcesKey
, table
);
4581 table
->setObject( gIOResourceMatchKey
, (OSObject
*) str
);
4586 OSDictionary
* IOService::resourceMatching( const char * name
,
4587 OSDictionary
* table
)
4589 const OSSymbol
* str
;
4591 str
= OSSymbol::withCString( name
);
4595 table
= resourceMatching( str
, table
);
4601 OSDictionary
* IOService::propertyMatching( const OSSymbol
* key
, const OSObject
* value
,
4602 OSDictionary
* table
)
4604 OSDictionary
* properties
;
4606 properties
= OSDictionary::withCapacity( 2 );
4609 properties
->setObject( key
, value
);
4612 table
= OSDictionary::withCapacity( 2 );
4614 table
->setObject( gIOPropertyMatchKey
, properties
);
4616 properties
->release();
4621 OSDictionary
* IOService::registryEntryIDMatching( uint64_t entryID
,
4622 OSDictionary
* table
)
4626 num
= OSNumber::withNumber( entryID
, 64 );
4631 table
= OSDictionary::withCapacity( 2 );
4633 table
->setObject( gIORegistryEntryIDKey
, num
);
4643 * _IOServiceNotifier
4646 // wait for all threads, other than the current one,
4647 // to exit the handler
4649 void _IOServiceNotifier::wait()
4651 _IOServiceNotifierInvocation
* next
;
4656 queue_iterate( &handlerInvocations
, next
,
4657 _IOServiceNotifierInvocation
*, link
) {
4658 if( next
->thread
!= current_thread() ) {
4664 state
|= kIOServiceNotifyWaiter
;
4671 void _IOServiceNotifier::free()
4673 assert( queue_empty( &handlerInvocations
));
4677 void _IOServiceNotifier::remove()
4682 whence
->removeObject( (OSObject
*) this );
4686 matching
->release();
4690 state
&= ~kIOServiceNotifyEnable
;
4699 bool _IOServiceNotifier::disable()
4705 ret
= (0 != (kIOServiceNotifyEnable
& state
));
4706 state
&= ~kIOServiceNotifyEnable
;
4715 void _IOServiceNotifier::enable( bool was
)
4719 state
|= kIOServiceNotifyEnable
;
4721 state
&= ~kIOServiceNotifyEnable
;
4729 IOService
* IOResources::resources( void )
4733 inst
= new IOResources
;
4734 if( inst
&& !inst
->init()) {
4742 bool IOResources::init( OSDictionary
* dictionary
)
4744 // Do super init first
4745 if ( !super::init() )
4748 // Allow PAL layer to publish a value
4749 const char *property_name
;
4752 pal_get_resource_property( &property_name
, &property_value
);
4754 if( property_name
) {
4756 const OSSymbol
* sym
;
4758 if( (num
= OSNumber::withNumber(property_value
, 32)) != 0 ) {
4759 if( (sym
= OSSymbol::withCString( property_name
)) != 0 ) {
4760 this->setProperty( sym
, num
);
4770 IOReturn
IOResources::newUserClient(task_t owningTask
, void * securityID
,
4771 UInt32 type
, OSDictionary
* properties
,
4772 IOUserClient
** handler
)
4774 return( kIOReturnUnsupported
);
4777 IOWorkLoop
* IOResources::getWorkLoop() const
4779 // If we are the resource root
4780 // then use the platform's workloop
4781 if (this == (IOResources
*) gIOResources
)
4782 return getPlatform()->getWorkLoop();
4784 return IOService::getWorkLoop();
4787 bool IOResources::matchPropertyTable( OSDictionary
* table
)
4795 prop
= table
->getObject( gIOResourceMatchKey
);
4796 str
= OSDynamicCast( OSString
, prop
);
4798 ok
= (0 != getProperty( str
));
4800 else if( (set
= OSDynamicCast( OSSet
, prop
))) {
4802 iter
= OSCollectionIterator::withCollection( set
);
4804 while( ok
&& (str
= OSDynamicCast( OSString
, iter
->getNextObject()) ))
4805 ok
= (0 != getProperty( str
));
4814 void IOService::consoleLockTimer(thread_call_param_t p0
, thread_call_param_t p1
)
4816 IOService::updateConsoleUsers(NULL
, 0);
4819 void IOService::updateConsoleUsers(OSArray
* consoleUsers
, IOMessage systemMessage
)
4821 IORegistryEntry
* regEntry
;
4822 OSObject
* locked
= kOSBooleanFalse
;
4825 OSDictionary
* user
;
4826 static IOMessage sSystemPower
;
4828 regEntry
= IORegistryEntry::getRegistryRoot();
4830 if (!gIOChosenEntry
)
4831 gIOChosenEntry
= IORegistryEntry::fromPath("/chosen", gIODTPlane
);
4833 IOLockLock(gIOConsoleUsersLock
);
4837 sSystemPower
= systemMessage
;
4839 if ((kIOMessageSystemHasPoweredOn
== systemMessage
) && IOHibernateWasScreenLocked())
4841 locked
= kOSBooleanTrue
;
4843 #endif /* HIBERNATION */
4849 gIOConsoleLoggedIn
= false;
4851 (user
= OSDynamicCast(OSDictionary
, consoleUsers
->getObject(idx
)));
4854 gIOConsoleLoggedIn
|= ((kOSBooleanTrue
== user
->getObject(gIOConsoleSessionOnConsoleKey
))
4855 && (kOSBooleanTrue
== user
->getObject(gIOConsoleSessionLoginDoneKey
)));
4858 num
= OSDynamicCast(OSNumber
, user
->getObject(gIOConsoleSessionScreenLockedTimeKey
));
4861 gIOConsoleLockTime
= num
? num
->unsigned32BitValue() : 0;
4864 if (!gIOConsoleLoggedIn
4865 || (kIOMessageSystemWillSleep
== sSystemPower
)
4866 || (kIOMessageSystemPagingOff
== sSystemPower
))
4868 locked
= kOSBooleanTrue
;
4870 else if (gIOConsoleLockTime
)
4873 clock_usec_t microsecs
;
4875 clock_get_calendar_microtime(&now
, µsecs
);
4876 if (gIOConsoleLockTime
> now
)
4878 AbsoluteTime deadline
;
4879 clock_interval_to_deadline(gIOConsoleLockTime
- now
, kSecondScale
, &deadline
);
4880 thread_call_enter_delayed(gIOConsoleLockCallout
, deadline
);
4884 locked
= kOSBooleanTrue
;
4888 publish
= (consoleUsers
|| (locked
!= regEntry
->getProperty(gIOConsoleLockedKey
)));
4891 regEntry
->setProperty(gIOConsoleLockedKey
, locked
);
4894 regEntry
->setProperty(gIOConsoleUsersKey
, consoleUsers
);
4896 OSIncrementAtomic( &gIOConsoleUsersSeed
);
4902 if (locked
== kOSBooleanTrue
) gIOScreenLockState
= kIOScreenLockLocked
;
4903 else if (gIOConsoleLockTime
) gIOScreenLockState
= kIOScreenLockUnlocked
;
4904 else gIOScreenLockState
= kIOScreenLockNoLock
;
4905 gIOChosenEntry
->setProperty(kIOScreenLockStateKey
, &gIOScreenLockState
, sizeof(gIOScreenLockState
));
4907 #endif /* HIBERNATION */
4909 IOLockUnlock(gIOConsoleUsersLock
);
4913 publishResource( gIOConsoleUsersSeedKey
, gIOConsoleUsersSeedValue
);
4915 MessageClientsContext context
;
4917 context
.service
= getServiceRoot();
4918 context
.type
= kIOMessageConsoleSecurityChange
;
4919 context
.argument
= (void *) regEntry
;
4920 context
.argSize
= 0;
4922 applyToInterestNotifiers(getServiceRoot(), gIOConsoleSecurityInterest
,
4923 &messageClientsApplier
, &context
);
4927 IOReturn
IOResources::setProperties( OSObject
* properties
)
4930 const OSSymbol
* key
;
4931 OSDictionary
* dict
;
4932 OSCollectionIterator
* iter
;
4934 err
= IOUserClient::clientHasPrivilege(current_task(), kIOClientPrivilegeAdministrator
);
4935 if ( kIOReturnSuccess
!= err
)
4938 dict
= OSDynamicCast(OSDictionary
, properties
);
4940 return( kIOReturnBadArgument
);
4942 iter
= OSCollectionIterator::withCollection( dict
);
4944 return( kIOReturnBadArgument
);
4946 while( (key
= OSDynamicCast(OSSymbol
, iter
->getNextObject())))
4948 if (gIOConsoleUsersKey
== key
) do
4950 OSArray
* consoleUsers
;
4951 consoleUsers
= OSDynamicCast(OSArray
, dict
->getObject(key
));
4954 IOService::updateConsoleUsers(consoleUsers
, 0);
4958 publishResource( key
, dict
->getObject(key
) );
4963 return( kIOReturnSuccess
);
4967 * Helpers for matching dictionaries.
4968 * Keys existing in matching are checked in properties.
4969 * Keys may be a string or OSCollection of IOStrings
4972 bool IOService::compareProperty( OSDictionary
* matching
,
4978 value
= matching
->getObject( key
);
4980 ok
= value
->isEqualTo( getProperty( key
));
4988 bool IOService::compareProperty( OSDictionary
* matching
,
4989 const OSString
* key
)
4994 value
= matching
->getObject( key
);
4996 ok
= value
->isEqualTo( getProperty( key
));
5003 bool IOService::compareProperties( OSDictionary
* matching
,
5004 OSCollection
* keys
)
5006 OSCollectionIterator
* iter
;
5007 const OSString
* key
;
5010 if( !matching
|| !keys
)
5013 iter
= OSCollectionIterator::withCollection( keys
);
5016 while( ok
&& (key
= OSDynamicCast( OSString
, iter
->getNextObject())))
5017 ok
= compareProperty( matching
, key
);
5021 keys
->release(); // !! consume a ref !!
5026 /* Helper to add a location matching dict to the table */
5028 OSDictionary
* IOService::addLocation( OSDictionary
* table
)
5030 OSDictionary
* dict
;
5035 dict
= OSDictionary::withCapacity( 1 );
5037 table
->setObject( gIOLocationMatchKey
, dict
);
5045 * Go looking for a provider to match a location dict.
5048 IOService
* IOService::matchLocation( IOService
* /* client */ )
5052 parent
= getProvider();
5055 parent
= parent
->matchLocation( this );
5060 bool IOService::matchInternal(OSDictionary
* table
, uint32_t options
, uint32_t * did
)
5065 IORegistryEntry
* entry
;
5068 bool changesOK
= (0 != (kIOServiceChangesOK
& options
));
5074 count
= table
->getCount();
5077 str
= OSDynamicCast(OSString
, table
->getObject(gIOProviderClassKey
));
5081 match
= ((kIOServiceClassDone
& options
) || (0 != metaCast(str
)));
5083 match
= (0 != metaCast( str
));
5084 if ((kIOServiceClassDone
& options
) && !match
) panic("classDone");
5086 if ((!match
) || (done
== count
)) break;
5089 obj
= table
->getObject( gIONameMatchKey
);
5092 match
= compareNames( obj
, changesOK
? &matched
: 0 );
5094 if( changesOK
&& matched
) {
5095 // leave a hint as to which name matched
5096 table
->setObject( gIONameMatchedKey
, matched
);
5099 if (done
== count
) break;
5102 str
= OSDynamicCast( OSString
, table
->getObject( gIOLocationMatchKey
));
5105 const OSSymbol
* sym
;
5108 sym
= copyLocation();
5110 match
= sym
->isEqualTo( str
);
5113 if ((!match
) || (done
== count
)) break;
5116 obj
= table
->getObject( gIOPropertyMatchKey
);
5119 OSDictionary
* dict
;
5120 OSDictionary
* nextDict
;
5124 dict
= dictionaryWithProperties();
5126 nextDict
= OSDynamicCast( OSDictionary
, obj
);
5130 iter
= OSCollectionIterator::withCollection(
5131 OSDynamicCast(OSCollection
, obj
));
5134 || (iter
&& (0 != (nextDict
= OSDynamicCast(OSDictionary
,
5135 iter
->getNextObject()))))) {
5136 match
= dict
->isEqualTo( nextDict
, nextDict
);
5145 if ((!match
) || (done
== count
)) break;
5148 str
= OSDynamicCast( OSString
, table
->getObject( gIOPathMatchKey
));
5151 entry
= IORegistryEntry::fromPath( str
->getCStringNoCopy() );
5152 match
= (this == entry
);
5155 if ((!match
) || (done
== count
)) break;
5158 num
= OSDynamicCast( OSNumber
, table
->getObject( gIORegistryEntryIDKey
));
5161 match
= (getRegistryEntryID() == num
->unsigned64BitValue());
5162 if ((!match
) || (done
== count
)) break;
5165 num
= OSDynamicCast( OSNumber
, table
->getObject( gIOMatchedServiceCountKey
));
5169 IOService
* service
= 0;
5170 UInt32 serviceCount
= 0;
5173 iter
= getClientIterator();
5175 while( (service
= (IOService
*) iter
->getNextObject())) {
5176 if( kIOServiceInactiveState
& service
->__state
[0])
5178 if( 0 == service
->getProperty( gIOMatchCategoryKey
))
5184 match
= (serviceCount
== num
->unsigned32BitValue());
5185 if ((!match
) || (done
== count
)) break;
5188 #define propMatch(key) \
5189 obj = table->getObject(key); \
5194 prop = copyProperty(key); \
5195 match = obj->isEqualTo(prop); \
5196 if (prop) prop->release(); \
5197 if ((!match) || (done == count)) break; \
5199 propMatch(kIOBSDNameKey
)
5200 propMatch(kIOBSDMajorKey
)
5201 propMatch(kIOBSDMinorKey
)
5202 propMatch(kIOBSDUnitKey
)
5207 if (did
) *did
= done
;
5211 bool IOService::passiveMatch( OSDictionary
* table
, bool changesOK
)
5213 return (matchPassive(table
, changesOK
? kIOServiceChangesOK
: 0));
5216 bool IOService::matchPassive(OSDictionary
* table
, uint32_t options
)
5219 OSDictionary
* nextTable
;
5223 bool matchParent
= false;
5230 OSDictionary
* root
= table
;
5238 count
= table
->getCount();
5240 if (!(kIOServiceInternalDone
& options
))
5242 match
= where
->matchInternal(table
, options
, &done
);
5243 // don't call family if we've done all the entries in the table
5244 if ((!match
) || (done
== count
)) break;
5247 // pass in score from property table
5248 score
= IOServiceObjectOrder( table
, (void *) gIOProbeScoreKey
);
5250 // do family specific matching
5251 match
= where
->matchPropertyTable( table
, &score
);
5255 if( kIOLogMatch
& getDebugFlags( table
))
5256 LOG("%s: family specific matching fails\n", where
->getName());
5261 if (kIOServiceChangesOK
& options
) {
5263 newPri
= OSNumber::withNumber( score
, 32 );
5265 table
->setObject( gIOProbeScoreKey
, newPri
);
5271 matchParent
= false;
5273 nextTable
= OSDynamicCast(OSDictionary
,
5274 table
->getObject( gIOParentMatchKey
));
5277 // look for a matching entry anywhere up to root
5284 table
= OSDynamicCast(OSDictionary
,
5285 table
->getObject( gIOLocationMatchKey
));
5287 // look for a matching entry at matchLocation()
5289 where
= where
->getProvider();
5290 if (where
&& (where
= where
->matchLocation(where
))) continue;
5296 while( matchParent
&& (!match
) && (where
= where
->getProvider()) );
5301 OSSerialize
* s
= OSSerialize::withCapacity(128);
5303 kprintf("parent match 0x%llx, %d,\n%s\n", getRegistryEntryID(), match
, s
->text());
5312 IOReturn
IOService::newUserClient( task_t owningTask
, void * securityID
,
5313 UInt32 type
, OSDictionary
* properties
,
5314 IOUserClient
** handler
)
5316 const OSSymbol
*userClientClass
= 0;
5317 IOUserClient
*client
;
5320 if (kIOReturnSuccess
== newUserClient( owningTask
, securityID
, type
, handler
))
5321 return kIOReturnSuccess
;
5323 // First try my own properties for a user client class name
5324 temp
= getProperty(gIOUserClientClassKey
);
5326 if (OSDynamicCast(OSSymbol
, temp
))
5327 userClientClass
= (const OSSymbol
*) temp
;
5328 else if (OSDynamicCast(OSString
, temp
)) {
5329 userClientClass
= OSSymbol::withString((OSString
*) temp
);
5330 if (userClientClass
)
5331 setProperty(kIOUserClientClassKey
,
5332 (OSObject
*) userClientClass
);
5336 // Didn't find one so lets just bomb out now without further ado.
5337 if (!userClientClass
)
5338 return kIOReturnUnsupported
;
5340 // This reference is consumed by the IOServiceOpen call
5341 temp
= OSMetaClass::allocClassWithName(userClientClass
);
5343 return kIOReturnNoMemory
;
5345 if (OSDynamicCast(IOUserClient
, temp
))
5346 client
= (IOUserClient
*) temp
;
5349 return kIOReturnUnsupported
;
5352 if ( !client
->initWithTask(owningTask
, securityID
, type
, properties
) ) {
5354 return kIOReturnBadArgument
;
5357 if ( !client
->attach(this) ) {
5359 return kIOReturnUnsupported
;
5362 if ( !client
->start(this) ) {
5363 client
->detach(this);
5365 return kIOReturnUnsupported
;
5369 return kIOReturnSuccess
;
5372 IOReturn
IOService::newUserClient( task_t owningTask
, void * securityID
,
5373 UInt32 type
, IOUserClient
** handler
)
5375 return( kIOReturnUnsupported
);
5378 IOReturn
IOService::requestProbe( IOOptionBits options
)
5380 return( kIOReturnUnsupported
);
5384 * Convert an IOReturn to text. Subclasses which add additional
5385 * IOReturn's should override this method and call
5386 * super::stringFromReturn if the desired value is not found.
5389 const char * IOService::stringFromReturn( IOReturn rtn
)
5391 static const IONamedValue IOReturn_values
[] = {
5392 {kIOReturnSuccess
, "success" },
5393 {kIOReturnError
, "general error" },
5394 {kIOReturnNoMemory
, "memory allocation error" },
5395 {kIOReturnNoResources
, "resource shortage" },
5396 {kIOReturnIPCError
, "Mach IPC failure" },
5397 {kIOReturnNoDevice
, "no such device" },
5398 {kIOReturnNotPrivileged
, "privilege violation" },
5399 {kIOReturnBadArgument
, "invalid argument" },
5400 {kIOReturnLockedRead
, "device is read locked" },
5401 {kIOReturnLockedWrite
, "device is write locked" },
5402 {kIOReturnExclusiveAccess
, "device is exclusive access" },
5403 {kIOReturnBadMessageID
, "bad IPC message ID" },
5404 {kIOReturnUnsupported
, "unsupported function" },
5405 {kIOReturnVMError
, "virtual memory error" },
5406 {kIOReturnInternalError
, "internal driver error" },
5407 {kIOReturnIOError
, "I/O error" },
5408 {kIOReturnCannotLock
, "cannot acquire lock" },
5409 {kIOReturnNotOpen
, "device is not open" },
5410 {kIOReturnNotReadable
, "device is not readable" },
5411 {kIOReturnNotWritable
, "device is not writeable" },
5412 {kIOReturnNotAligned
, "alignment error" },
5413 {kIOReturnBadMedia
, "media error" },
5414 {kIOReturnStillOpen
, "device is still open" },
5415 {kIOReturnRLDError
, "rld failure" },
5416 {kIOReturnDMAError
, "DMA failure" },
5417 {kIOReturnBusy
, "device is busy" },
5418 {kIOReturnTimeout
, "I/O timeout" },
5419 {kIOReturnOffline
, "device is offline" },
5420 {kIOReturnNotReady
, "device is not ready" },
5421 {kIOReturnNotAttached
, "device/channel is not attached" },
5422 {kIOReturnNoChannels
, "no DMA channels available" },
5423 {kIOReturnNoSpace
, "no space for data" },
5424 {kIOReturnPortExists
, "device port already exists" },
5425 {kIOReturnCannotWire
, "cannot wire physical memory" },
5426 {kIOReturnNoInterrupt
, "no interrupt attached" },
5427 {kIOReturnNoFrames
, "no DMA frames enqueued" },
5428 {kIOReturnMessageTooLarge
, "message is too large" },
5429 {kIOReturnNotPermitted
, "operation is not permitted" },
5430 {kIOReturnNoPower
, "device is without power" },
5431 {kIOReturnNoMedia
, "media is not present" },
5432 {kIOReturnUnformattedMedia
, "media is not formatted" },
5433 {kIOReturnUnsupportedMode
, "unsupported mode" },
5434 {kIOReturnUnderrun
, "data underrun" },
5435 {kIOReturnOverrun
, "data overrun" },
5436 {kIOReturnDeviceError
, "device error" },
5437 {kIOReturnNoCompletion
, "no completion routine" },
5438 {kIOReturnAborted
, "operation was aborted" },
5439 {kIOReturnNoBandwidth
, "bus bandwidth would be exceeded" },
5440 {kIOReturnNotResponding
, "device is not responding" },
5441 {kIOReturnInvalid
, "unanticipated driver error" },
5445 return IOFindNameForValue(rtn
, IOReturn_values
);
5449 * Convert an IOReturn to an errno.
5451 int IOService::errnoFromReturn( IOReturn rtn
)
5453 if (unix_err(err_get_code(rtn
)) == rtn
)
5454 return err_get_code(rtn
);
5458 case kIOReturnSuccess
:
5460 case kIOReturnNoMemory
:
5462 case kIOReturnNoDevice
:
5464 case kIOReturnVMError
:
5466 case kIOReturnNotPermitted
:
5468 case kIOReturnNotPrivileged
:
5470 case kIOReturnIOError
:
5472 case kIOReturnNotWritable
:
5474 case kIOReturnBadArgument
:
5476 case kIOReturnUnsupported
:
5480 case kIOReturnNoPower
:
5482 case kIOReturnDeviceError
:
5484 case kIOReturnTimeout
:
5486 case kIOReturnMessageTooLarge
:
5488 case kIOReturnNoSpace
:
5490 case kIOReturnCannotLock
:
5494 case kIOReturnBadMessageID
:
5495 case kIOReturnNoCompletion
:
5496 case kIOReturnNotAligned
:
5498 case kIOReturnNotReady
:
5500 case kIOReturnRLDError
:
5502 case kIOReturnPortExists
:
5503 case kIOReturnStillOpen
:
5505 case kIOReturnExclusiveAccess
:
5506 case kIOReturnLockedRead
:
5507 case kIOReturnLockedWrite
:
5508 case kIOReturnNotOpen
:
5509 case kIOReturnNotReadable
:
5511 case kIOReturnCannotWire
:
5512 case kIOReturnNoResources
:
5514 case kIOReturnAborted
:
5515 case kIOReturnOffline
:
5516 case kIOReturnNotResponding
:
5518 case kIOReturnBadMedia
:
5519 case kIOReturnNoMedia
:
5520 case kIOReturnNotAttached
:
5521 case kIOReturnUnformattedMedia
:
5522 return(ENXIO
); // (media error)
5523 case kIOReturnDMAError
:
5524 case kIOReturnOverrun
:
5525 case kIOReturnUnderrun
:
5526 return(EIO
); // (transfer error)
5527 case kIOReturnNoBandwidth
:
5528 case kIOReturnNoChannels
:
5529 case kIOReturnNoFrames
:
5530 case kIOReturnNoInterrupt
:
5531 return(EIO
); // (hardware error)
5532 case kIOReturnError
:
5533 case kIOReturnInternalError
:
5534 case kIOReturnInvalid
:
5535 return(EIO
); // (generic error)
5536 case kIOReturnIPCError
:
5537 return(EIO
); // (ipc error)
5539 return(EIO
); // (all other errors)
5543 IOReturn
IOService::message( UInt32 type
, IOService
* provider
,
5547 * Generic entry point for calls from the provider. A return value of
5548 * kIOReturnSuccess indicates that the message was received, and where
5549 * applicable, that it was successful.
5552 return kIOReturnUnsupported
;
5559 IOItemCount
IOService::getDeviceMemoryCount( void )
5564 array
= OSDynamicCast( OSArray
, getProperty( gIODeviceMemoryKey
));
5566 count
= array
->getCount();
5573 IODeviceMemory
* IOService::getDeviceMemoryWithIndex( unsigned int index
)
5576 IODeviceMemory
* range
;
5578 array
= OSDynamicCast( OSArray
, getProperty( gIODeviceMemoryKey
));
5580 range
= (IODeviceMemory
*) array
->getObject( index
);
5587 IOMemoryMap
* IOService::mapDeviceMemoryWithIndex( unsigned int index
,
5588 IOOptionBits options
)
5590 IODeviceMemory
* range
;
5593 range
= getDeviceMemoryWithIndex( index
);
5595 map
= range
->map( options
);
5602 OSArray
* IOService::getDeviceMemory( void )
5604 return( OSDynamicCast( OSArray
, getProperty( gIODeviceMemoryKey
)));
5608 void IOService::setDeviceMemory( OSArray
* array
)
5610 setProperty( gIODeviceMemoryKey
, array
);
5614 * For machines where the transfers on an I/O bus can stall because
5615 * the CPU is in an idle mode, These APIs allow a driver to specify
5616 * the maximum bus stall that they can handle. 0 indicates no limit.
5619 setCPUSnoopDelay(UInt32 __unused ns
)
5621 #if defined(__i386__) || defined(__x86_64__)
5622 ml_set_maxsnoop(ns
);
5623 #endif /* defined(__i386__) || defined(__x86_64__) */
5629 #if defined(__i386__) || defined(__x86_64__)
5630 return ml_get_maxsnoop();
5633 #endif /* defined(__i386__) || defined(__x86_64__) */
5636 #if defined(__i386__) || defined(__x86_64__)
5638 requireMaxCpuDelay(IOService
* service
, UInt32 ns
, UInt32 delayType
)
5640 static const UInt kNoReplace
= -1U; // Must be an illegal index
5641 UInt replace
= kNoReplace
;
5642 bool setCpuDelay
= false;
5644 IORecursiveLockLock(sCpuDelayLock
);
5646 UInt count
= sCpuDelayData
->getLength() / sizeof(CpuDelayEntry
);
5647 CpuDelayEntry
*entries
= (CpuDelayEntry
*) sCpuDelayData
->getBytesNoCopy();
5648 IOService
* holder
= NULL
;
5651 const CpuDelayEntry ne
= {service
, ns
, delayType
};
5653 // Set maximum delay.
5654 for (UInt i
= 0; i
< count
; i
++) {
5655 IOService
*thisService
= entries
[i
].fService
;
5656 bool sameType
= (delayType
== entries
[i
].fDelayType
);
5657 if ((service
== thisService
) && sameType
)
5659 else if (!thisService
) {
5660 if (kNoReplace
== replace
)
5663 else if (sameType
) {
5664 const UInt32 thisMax
= entries
[i
].fMaxDelay
;
5668 holder
= thisService
;
5674 if (kNoReplace
== replace
)
5675 sCpuDelayData
->appendBytes(&ne
, sizeof(ne
));
5677 entries
[replace
] = ne
;
5680 ns
= -1U; // Set to max unsigned, i.e. no restriction
5682 for (UInt i
= 0; i
< count
; i
++) {
5683 // Clear a maximum delay.
5684 IOService
*thisService
= entries
[i
].fService
;
5685 if (thisService
&& (delayType
== entries
[i
].fDelayType
)) {
5686 UInt32 thisMax
= entries
[i
].fMaxDelay
;
5687 if (service
== thisService
)
5689 else if (thisMax
< ns
) {
5691 holder
= thisService
;
5696 // Check if entry found
5697 if (kNoReplace
!= replace
) {
5698 entries
[replace
].fService
= 0; // Null the entry
5705 if (holder
&& debug_boot_arg
) {
5706 strlcpy(sCPULatencyHolderName
[delayType
], holder
->getName(), sizeof(sCPULatencyHolderName
[delayType
]));
5709 // Must be safe to call from locked context
5710 if (delayType
== kCpuDelayBusStall
)
5712 ml_set_maxbusdelay(ns
);
5714 else if (delayType
== kCpuDelayInterrupt
)
5716 ml_set_maxintdelay(ns
);
5718 sCPULatencyHolder
[delayType
]->setValue(holder
? holder
->getRegistryEntryID() : 0);
5719 sCPULatencySet
[delayType
]->setValue(ns
);
5721 OSArray
* handlers
= sCpuLatencyHandlers
[delayType
];
5723 if (handlers
) for (unsigned int idx
= 0;
5724 (target
= (IOService
*) handlers
->getObject(idx
));
5727 target
->callPlatformFunction(sCPULatencyFunctionName
[delayType
], false,
5728 (void *) (uintptr_t) ns
, holder
,
5733 IORecursiveLockUnlock(sCpuDelayLock
);
5737 setLatencyHandler(UInt32 delayType
, IOService
* target
, bool enable
)
5739 IOReturn result
= kIOReturnNotFound
;
5743 IORecursiveLockLock(sCpuDelayLock
);
5747 if (enable
&& !sCpuLatencyHandlers
[delayType
])
5748 sCpuLatencyHandlers
[delayType
] = OSArray::withCapacity(4);
5749 array
= sCpuLatencyHandlers
[delayType
];
5752 idx
= array
->getNextIndexOfObject(target
, 0);
5757 array
->removeObject(idx
);
5758 result
= kIOReturnSuccess
;
5764 result
= kIOReturnExclusiveAccess
;
5767 array
->setObject(target
);
5769 UInt count
= sCpuDelayData
->getLength() / sizeof(CpuDelayEntry
);
5770 CpuDelayEntry
*entries
= (CpuDelayEntry
*) sCpuDelayData
->getBytesNoCopy();
5771 UInt32 ns
= -1U; // Set to max unsigned, i.e. no restriction
5772 IOService
* holder
= NULL
;
5774 for (UInt i
= 0; i
< count
; i
++) {
5775 if (entries
[i
].fService
5776 && (delayType
== entries
[i
].fDelayType
)
5777 && (entries
[i
].fMaxDelay
< ns
)) {
5778 ns
= entries
[i
].fMaxDelay
;
5779 holder
= entries
[i
].fService
;
5782 target
->callPlatformFunction(sCPULatencyFunctionName
[delayType
], false,
5783 (void *) (uintptr_t) ns
, holder
,
5785 result
= kIOReturnSuccess
;
5790 IORecursiveLockUnlock(sCpuDelayLock
);
5795 #endif /* defined(__i386__) || defined(__x86_64__) */
5798 requireMaxBusStall(UInt32 __unused ns
)
5800 #if defined(__i386__) || defined(__x86_64__)
5801 requireMaxCpuDelay(this, ns
, kCpuDelayBusStall
);
5806 requireMaxInterruptDelay(uint32_t __unused ns
)
5808 #if defined(__i386__) || defined(__x86_64__)
5809 requireMaxCpuDelay(this, ns
, kCpuDelayInterrupt
);
5817 IOReturn
IOService::resolveInterrupt(IOService
*nub
, int source
)
5819 IOInterruptController
*interruptController
;
5822 OSSymbol
*interruptControllerName
;
5824 IOInterruptSource
*interruptSources
;
5826 // Get the parents list from the nub.
5827 array
= OSDynamicCast(OSArray
, nub
->getProperty(gIOInterruptControllersKey
));
5828 if (array
== 0) return kIOReturnNoResources
;
5830 // Allocate space for the IOInterruptSources if needed... then return early.
5831 if (nub
->_interruptSources
== 0) {
5832 numSources
= array
->getCount();
5833 interruptSources
= (IOInterruptSource
*)IOMalloc(numSources
* sizeof(IOInterruptSource
));
5834 if (interruptSources
== 0) return kIOReturnNoMemory
;
5836 bzero(interruptSources
, numSources
* sizeof(IOInterruptSource
));
5838 nub
->_numInterruptSources
= numSources
;
5839 nub
->_interruptSources
= interruptSources
;
5840 return kIOReturnSuccess
;
5843 interruptControllerName
= OSDynamicCast(OSSymbol
,array
->getObject(source
));
5844 if (interruptControllerName
== 0) return kIOReturnNoResources
;
5846 interruptController
= getPlatform()->lookUpInterruptController(interruptControllerName
);
5847 if (interruptController
== 0) return kIOReturnNoResources
;
5849 // Get the interrupt numbers from the nub.
5850 array
= OSDynamicCast(OSArray
, nub
->getProperty(gIOInterruptSpecifiersKey
));
5851 if (array
== 0) return kIOReturnNoResources
;
5852 data
= OSDynamicCast(OSData
, array
->getObject(source
));
5853 if (data
== 0) return kIOReturnNoResources
;
5855 // Set the interruptController and interruptSource in the nub's table.
5856 interruptSources
= nub
->_interruptSources
;
5857 interruptSources
[source
].interruptController
= interruptController
;
5858 interruptSources
[source
].vectorData
= data
;
5860 return kIOReturnSuccess
;
5863 IOReturn
IOService::lookupInterrupt(int source
, bool resolve
, IOInterruptController
**interruptController
)
5867 /* Make sure the _interruptSources are set */
5868 if (_interruptSources
== 0) {
5869 ret
= resolveInterrupt(this, source
);
5870 if (ret
!= kIOReturnSuccess
) return ret
;
5873 /* Make sure the local source number is valid */
5874 if ((source
< 0) || (source
>= _numInterruptSources
))
5875 return kIOReturnNoInterrupt
;
5877 /* Look up the contoller for the local source */
5878 *interruptController
= _interruptSources
[source
].interruptController
;
5880 if (*interruptController
== NULL
) {
5881 if (!resolve
) return kIOReturnNoInterrupt
;
5883 /* Try to reslove the interrupt */
5884 ret
= resolveInterrupt(this, source
);
5885 if (ret
!= kIOReturnSuccess
) return ret
;
5887 *interruptController
= _interruptSources
[source
].interruptController
;
5890 return kIOReturnSuccess
;
5893 IOReturn
IOService::registerInterrupt(int source
, OSObject
*target
,
5894 IOInterruptAction handler
,
5897 IOInterruptController
*interruptController
;
5900 ret
= lookupInterrupt(source
, true, &interruptController
);
5901 if (ret
!= kIOReturnSuccess
) return ret
;
5903 /* Register the source */
5904 return interruptController
->registerInterrupt(this, source
, target
,
5905 (IOInterruptHandler
)handler
,
5909 IOReturn
IOService::unregisterInterrupt(int source
)
5911 IOInterruptController
*interruptController
;
5914 ret
= lookupInterrupt(source
, false, &interruptController
);
5915 if (ret
!= kIOReturnSuccess
) return ret
;
5917 /* Unregister the source */
5918 return interruptController
->unregisterInterrupt(this, source
);
5921 IOReturn
IOService::addInterruptStatistics(IOInterruptAccountingData
* statistics
, int source
)
5923 IOReportLegend
* legend
= NULL
;
5924 IOInterruptAccountingData
* oldValue
= NULL
;
5925 IOInterruptAccountingReporter
* newArray
= NULL
;
5926 char subgroupName
[64];
5927 int newArraySize
= 0;
5931 return kIOReturnBadArgument
;
5935 * We support statistics on a maximum of 256 interrupts per nub; if a nub
5936 * has more than 256 interrupt specifiers associated with it, and tries
5937 * to register a high interrupt index with interrupt accounting, panic.
5938 * Having more than 256 interrupts associated with a single nub is
5939 * probably a sign that something fishy is going on.
5941 if (source
> IA_INDEX_MAX
) {
5942 panic("addInterruptStatistics called for an excessively large index (%d)", source
);
5946 * TODO: This is ugly (wrapping a lock around an allocation). I'm only
5947 * leaving it as is because the likelihood of contention where we are
5948 * actually growing the array is minimal (we would realistically need
5949 * to be starting a driver for the first time, with an IOReporting
5950 * client already in place). Nonetheless, cleanup that can be done
5951 * to adhere to best practices; it'll make the code more complicated,
5954 IOLockLock(reserved
->interruptStatisticsLock
);
5957 * Lazily allocate the statistics array.
5959 if (!reserved
->interruptStatisticsArray
) {
5960 reserved
->interruptStatisticsArray
= IONew(IOInterruptAccountingReporter
, 1);
5961 assert(reserved
->interruptStatisticsArray
);
5962 reserved
->interruptStatisticsArrayCount
= 1;
5963 bzero(reserved
->interruptStatisticsArray
, sizeof(*reserved
->interruptStatisticsArray
));
5966 if (source
>= reserved
->interruptStatisticsArrayCount
) {
5968 * We're still within the range of supported indices, but we are out
5969 * of space in the current array. Do a nasty realloc (because
5970 * IORealloc isn't a thing) here. We'll double the size with each
5973 * Yes, the "next power of 2" could be more efficient; but this will
5974 * be invoked incredibly rarely. Who cares.
5976 newArraySize
= (reserved
->interruptStatisticsArrayCount
<< 1);
5978 while (newArraySize
<= source
)
5979 newArraySize
= (newArraySize
<< 1);
5980 newArray
= IONew(IOInterruptAccountingReporter
, newArraySize
);
5985 * TODO: This even zeroes the memory it is about to overwrite.
5986 * Shameful; fix it. Not particularly high impact, however.
5988 bzero(newArray
, newArraySize
* sizeof(*newArray
));
5989 memcpy(newArray
, reserved
->interruptStatisticsArray
, reserved
->interruptStatisticsArrayCount
* sizeof(*newArray
));
5990 IODelete(reserved
->interruptStatisticsArray
, IOInterruptAccountingReporter
, reserved
->interruptStatisticsArrayCount
);
5991 reserved
->interruptStatisticsArray
= newArray
;
5992 reserved
->interruptStatisticsArrayCount
= newArraySize
;
5995 if (!reserved
->interruptStatisticsArray
[source
].reporter
) {
5997 * We don't have a reporter associated with this index yet, so we
5998 * need to create one.
6001 * TODO: Some statistics do in fact have common units (time); should this be
6002 * split into separate reporters to communicate this?
6004 reserved
->interruptStatisticsArray
[source
].reporter
= IOSimpleReporter::with(this, kIOReportCategoryPower
, kIOReportUnitNone
);
6007 * Each statistic is given an identifier based on the interrupt index (which
6008 * should be unique relative to any single nub) and the statistic involved.
6009 * We should now have a sane (small and positive) index, so start
6010 * constructing the channels for statistics.
6012 for (i
= 0; i
< IA_NUM_INTERRUPT_ACCOUNTING_STATISTICS
; i
++) {
6014 * TODO: Currently, this does not add channels for disabled statistics.
6015 * Will this be confusing for clients? If so, we should just add the
6016 * channels; we can avoid updating the channels even if they exist.
6018 if (IA_GET_STATISTIC_ENABLED(i
))
6019 reserved
->interruptStatisticsArray
[source
].reporter
->addChannel(IA_GET_CHANNEL_ID(source
, i
), kInterruptAccountingStatisticNameArray
[i
]);
6023 * We now need to add the legend for this reporter to the registry.
6025 legend
= IOReportLegend::with(OSDynamicCast(OSArray
, getProperty(kIOReportLegendKey
)));
6028 * Note that while we compose the subgroup name, we do not need to
6029 * manage its lifecycle (the reporter will handle this).
6031 snprintf(subgroupName
, sizeof(subgroupName
), "%s %d", getName(), source
);
6032 subgroupName
[sizeof(subgroupName
) - 1] = 0;
6033 legend
->addReporterLegend(reserved
->interruptStatisticsArray
[source
].reporter
, kInterruptAccountingGroupName
, subgroupName
);
6034 setProperty(kIOReportLegendKey
, legend
->getLegend());
6038 * TODO: Is this a good idea? Probably not; my assumption is it opts
6039 * all entities who register interrupts into public disclosure of all
6040 * IOReporting channels. Unfortunately, this appears to be as fine
6043 setProperty(kIOReportLegendPublicKey
, true);
6047 * Don't stomp existing entries. If we are about to, panic; this
6048 * probably means we failed to tear down our old interrupt source
6051 oldValue
= reserved
->interruptStatisticsArray
[source
].statistics
;
6054 panic("addInterruptStatistics call for index %d would have clobbered existing statistics", source
);
6057 reserved
->interruptStatisticsArray
[source
].statistics
= statistics
;
6060 * Inherit the reporter values for each statistic. The target may
6061 * be torn down as part of the runtime of the service (especially
6062 * for sleep/wake), so we inherit in order to avoid having values
6063 * reset for no apparent reason. Our statistics are ultimately
6064 * tied to the index and the sevice, not to an individual target,
6065 * so we should maintain them accordingly.
6067 interruptAccountingDataInheritChannels(reserved
->interruptStatisticsArray
[source
].statistics
, reserved
->interruptStatisticsArray
[source
].reporter
);
6069 IOLockUnlock(reserved
->interruptStatisticsLock
);
6071 return kIOReturnSuccess
;
6074 IOReturn
IOService::removeInterruptStatistics(int source
)
6076 IOInterruptAccountingData
* value
= NULL
;
6079 return kIOReturnBadArgument
;
6082 IOLockLock(reserved
->interruptStatisticsLock
);
6085 * We dynamically grow the statistics array, so an excessively
6086 * large index value has NEVER been registered. This either
6087 * means our cap on the array size is too small (unlikely), or
6088 * that we have been passed a corrupt index (this must be passed
6089 * the plain index into the interrupt specifier list).
6091 if (source
>= reserved
->interruptStatisticsArrayCount
) {
6092 panic("removeInterruptStatistics called for index %d, which was never registered", source
);
6095 assert(reserved
->interruptStatisticsArray
);
6098 * If there is no existing entry, we are most likely trying to
6099 * free an interrupt owner twice, or we have corrupted the
6102 value
= reserved
->interruptStatisticsArray
[source
].statistics
;
6105 panic("removeInterruptStatistics called for empty index %d", source
);
6109 * We update the statistics, so that any delta with the reporter
6110 * state is not lost.
6112 interruptAccountingDataUpdateChannels(reserved
->interruptStatisticsArray
[source
].statistics
, reserved
->interruptStatisticsArray
[source
].reporter
);
6113 reserved
->interruptStatisticsArray
[source
].statistics
= NULL
;
6114 IOLockUnlock(reserved
->interruptStatisticsLock
);
6116 return kIOReturnSuccess
;
6119 IOReturn
IOService::getInterruptType(int source
, int *interruptType
)
6121 IOInterruptController
*interruptController
;
6124 ret
= lookupInterrupt(source
, true, &interruptController
);
6125 if (ret
!= kIOReturnSuccess
) return ret
;
6127 /* Return the type */
6128 return interruptController
->getInterruptType(this, source
, interruptType
);
6131 IOReturn
IOService::enableInterrupt(int source
)
6133 IOInterruptController
*interruptController
;
6136 ret
= lookupInterrupt(source
, false, &interruptController
);
6137 if (ret
!= kIOReturnSuccess
) return ret
;
6139 /* Enable the source */
6140 return interruptController
->enableInterrupt(this, source
);
6143 IOReturn
IOService::disableInterrupt(int source
)
6145 IOInterruptController
*interruptController
;
6148 ret
= lookupInterrupt(source
, false, &interruptController
);
6149 if (ret
!= kIOReturnSuccess
) return ret
;
6151 /* Disable the source */
6152 return interruptController
->disableInterrupt(this, source
);
6155 IOReturn
IOService::causeInterrupt(int source
)
6157 IOInterruptController
*interruptController
;
6160 ret
= lookupInterrupt(source
, false, &interruptController
);
6161 if (ret
!= kIOReturnSuccess
) return ret
;
6163 /* Cause an interrupt for the source */
6164 return interruptController
->causeInterrupt(this, source
);
6167 IOReturn
IOService::configureReport(IOReportChannelList
*channelList
,
6168 IOReportConfigureAction action
,
6174 for (cnt
= 0; cnt
< channelList
->nchannels
; cnt
++) {
6175 if ( channelList
->channels
[cnt
].channel_id
== kPMPowerStatesChID
) {
6176 if (pwrMgt
) configurePowerStatesReport(action
, result
);
6177 else return kIOReturnUnsupported
;
6179 else if ( channelList
->channels
[cnt
].channel_id
== kPMCurrStateChID
) {
6180 if (pwrMgt
) configureSimplePowerReport(action
, result
);
6181 else return kIOReturnUnsupported
;
6185 IOLockLock(reserved
->interruptStatisticsLock
);
6187 /* The array count is signed (because the interrupt indices are signed), hence the cast */
6188 for (cnt
= 0; cnt
< (unsigned) reserved
->interruptStatisticsArrayCount
; cnt
++) {
6189 if (reserved
->interruptStatisticsArray
[cnt
].reporter
) {
6191 * If the reporter is currently associated with the statistics
6192 * for an event source, we may need to update the reporter.
6194 if (reserved
->interruptStatisticsArray
[cnt
].statistics
)
6195 interruptAccountingDataUpdateChannels(reserved
->interruptStatisticsArray
[cnt
].statistics
, reserved
->interruptStatisticsArray
[cnt
].reporter
);
6197 reserved
->interruptStatisticsArray
[cnt
].reporter
->configureReport(channelList
, action
, result
, destination
);
6201 IOLockUnlock(reserved
->interruptStatisticsLock
);
6203 return kIOReturnSuccess
;
6206 IOReturn
IOService::updateReport(IOReportChannelList
*channelList
,
6207 IOReportUpdateAction action
,
6213 for (cnt
= 0; cnt
< channelList
->nchannels
; cnt
++) {
6214 if ( channelList
->channels
[cnt
].channel_id
== kPMPowerStatesChID
) {
6215 if (pwrMgt
) updatePowerStatesReport(action
, result
, destination
);
6216 else return kIOReturnUnsupported
;
6218 else if ( channelList
->channels
[cnt
].channel_id
== kPMCurrStateChID
) {
6219 if (pwrMgt
) updateSimplePowerReport(action
, result
, destination
);
6220 else return kIOReturnUnsupported
;
6224 IOLockLock(reserved
->interruptStatisticsLock
);
6226 /* The array count is signed (because the interrupt indices are signed), hence the cast */
6227 for (cnt
= 0; cnt
< (unsigned) reserved
->interruptStatisticsArrayCount
; cnt
++) {
6228 if (reserved
->interruptStatisticsArray
[cnt
].reporter
) {
6230 * If the reporter is currently associated with the statistics
6231 * for an event source, we need to update the reporter.
6233 if (reserved
->interruptStatisticsArray
[cnt
].statistics
)
6234 interruptAccountingDataUpdateChannels(reserved
->interruptStatisticsArray
[cnt
].statistics
, reserved
->interruptStatisticsArray
[cnt
].reporter
);
6236 reserved
->interruptStatisticsArray
[cnt
].reporter
->updateReport(channelList
, action
, result
, destination
);
6240 IOLockUnlock(reserved
->interruptStatisticsLock
);
6242 return kIOReturnSuccess
;
6245 uint64_t IOService::getAuthorizationID( void )
6247 return reserved
->authorizationID
;
6250 IOReturn
IOService::setAuthorizationID( uint64_t authorizationID
)
6252 OSObject
* entitlement
;
6255 entitlement
= IOUserClient::copyClientEntitlement( current_task( ), "com.apple.private.iokit.IOServiceSetAuthorizationID" );
6259 if ( entitlement
== kOSBooleanTrue
)
6261 reserved
->authorizationID
= authorizationID
;
6263 status
= kIOReturnSuccess
;
6267 status
= kIOReturnNotPrivileged
;
6270 entitlement
->release( );
6274 status
= kIOReturnNotPrivileged
;
6281 OSMetaClassDefineReservedUsed(IOService
, 0);
6282 OSMetaClassDefineReservedUsed(IOService
, 1);
6283 OSMetaClassDefineReservedUnused(IOService
, 2);
6284 OSMetaClassDefineReservedUnused(IOService
, 3);
6285 OSMetaClassDefineReservedUnused(IOService
, 4);
6286 OSMetaClassDefineReservedUnused(IOService
, 5);
6287 OSMetaClassDefineReservedUnused(IOService
, 6);
6288 OSMetaClassDefineReservedUnused(IOService
, 7);
6290 OSMetaClassDefineReservedUsed(IOService
, 0);
6291 OSMetaClassDefineReservedUsed(IOService
, 1);
6292 OSMetaClassDefineReservedUsed(IOService
, 2);
6293 OSMetaClassDefineReservedUsed(IOService
, 3);
6294 OSMetaClassDefineReservedUsed(IOService
, 4);
6295 OSMetaClassDefineReservedUsed(IOService
, 5);
6296 OSMetaClassDefineReservedUsed(IOService
, 6);
6297 OSMetaClassDefineReservedUsed(IOService
, 7);
6299 OSMetaClassDefineReservedUnused(IOService
, 8);
6300 OSMetaClassDefineReservedUnused(IOService
, 9);
6301 OSMetaClassDefineReservedUnused(IOService
, 10);
6302 OSMetaClassDefineReservedUnused(IOService
, 11);
6303 OSMetaClassDefineReservedUnused(IOService
, 12);
6304 OSMetaClassDefineReservedUnused(IOService
, 13);
6305 OSMetaClassDefineReservedUnused(IOService
, 14);
6306 OSMetaClassDefineReservedUnused(IOService
, 15);
6307 OSMetaClassDefineReservedUnused(IOService
, 16);
6308 OSMetaClassDefineReservedUnused(IOService
, 17);
6309 OSMetaClassDefineReservedUnused(IOService
, 18);
6310 OSMetaClassDefineReservedUnused(IOService
, 19);
6311 OSMetaClassDefineReservedUnused(IOService
, 20);
6312 OSMetaClassDefineReservedUnused(IOService
, 21);
6313 OSMetaClassDefineReservedUnused(IOService
, 22);
6314 OSMetaClassDefineReservedUnused(IOService
, 23);
6315 OSMetaClassDefineReservedUnused(IOService
, 24);
6316 OSMetaClassDefineReservedUnused(IOService
, 25);
6317 OSMetaClassDefineReservedUnused(IOService
, 26);
6318 OSMetaClassDefineReservedUnused(IOService
, 27);
6319 OSMetaClassDefineReservedUnused(IOService
, 28);
6320 OSMetaClassDefineReservedUnused(IOService
, 29);
6321 OSMetaClassDefineReservedUnused(IOService
, 30);
6322 OSMetaClassDefineReservedUnused(IOService
, 31);
6323 OSMetaClassDefineReservedUnused(IOService
, 32);
6324 OSMetaClassDefineReservedUnused(IOService
, 33);
6325 OSMetaClassDefineReservedUnused(IOService
, 34);
6326 OSMetaClassDefineReservedUnused(IOService
, 35);
6327 OSMetaClassDefineReservedUnused(IOService
, 36);
6328 OSMetaClassDefineReservedUnused(IOService
, 37);
6329 OSMetaClassDefineReservedUnused(IOService
, 38);
6330 OSMetaClassDefineReservedUnused(IOService
, 39);
6331 OSMetaClassDefineReservedUnused(IOService
, 40);
6332 OSMetaClassDefineReservedUnused(IOService
, 41);
6333 OSMetaClassDefineReservedUnused(IOService
, 42);
6334 OSMetaClassDefineReservedUnused(IOService
, 43);
6335 OSMetaClassDefineReservedUnused(IOService
, 44);
6336 OSMetaClassDefineReservedUnused(IOService
, 45);
6337 OSMetaClassDefineReservedUnused(IOService
, 46);
6338 OSMetaClassDefineReservedUnused(IOService
, 47);