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
);
416 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
418 #if defined(__i386__) || defined(__x86_64__)
421 const char *getCpuDelayBusStallHolderName(void) {
422 return sCPULatencyHolderName
[kCpuDelayBusStall
];
429 static UInt64
getDebugFlags( OSDictionary
* props
)
431 OSNumber
* debugProp
;
434 debugProp
= OSDynamicCast( OSNumber
,
435 props
->getObject( gIOKitDebugKey
));
437 debugFlags
= debugProp
->unsigned64BitValue();
439 debugFlags
= gIOKitDebug
;
441 return( debugFlags
);
445 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
447 // Probe a matched service and return an instance to be started.
448 // The default score is from the property table, & may be altered
449 // during probe to change the start order.
451 IOService
* IOService::probe( IOService
* provider
,
457 bool IOService::start( IOService
* provider
)
462 void IOService::stop( IOService
* provider
)
466 bool IOService::init( OSDictionary
* dictionary
)
470 ret
= super::init(dictionary
);
471 if (!ret
) return (false);
472 if (reserved
) return (true);
474 reserved
= IONew(ExpansionData
, 1);
475 if (!reserved
) return (false);
476 bzero(reserved
, sizeof(*reserved
));
479 * TODO: Improve on this. Previous efforts to more lazily allocate this
480 * lock based on the presence of specifiers ran into issues as some
481 * platforms set up the specifiers after IOService initialization.
483 * We may be able to get away with a global lock, as this should only be
484 * contended by IOReporting clients and driver start/stop (unless a
485 * driver wants to remove/add handlers in the course of normal operation,
486 * which should be unlikely).
488 reserved
->interruptStatisticsLock
= IOLockAlloc();
489 if (!reserved
->interruptStatisticsLock
) return (false);
494 bool IOService::init( IORegistryEntry
* from
,
495 const IORegistryPlane
* inPlane
)
499 ret
= super::init(from
, inPlane
);
500 if (!ret
) return (false);
501 if (reserved
) return (true);
503 reserved
= IONew(ExpansionData
, 1);
504 if (!reserved
) return (false);
505 bzero(reserved
, sizeof(*reserved
));
508 * TODO: Improve on this. Previous efforts to more lazily allocate this
509 * lock based on the presence of specifiers ran into issues as some
510 * platforms set up the specifiers after IOService initialization.
512 * We may be able to get away with a global lock, as this should only be
513 * contended by IOReporting clients and driver start/stop (unless a
514 * driver wants to remove/add handlers in the course of normal operation,
515 * which should be unlikely).
517 reserved
->interruptStatisticsLock
= IOLockAlloc();
518 if (!reserved
->interruptStatisticsLock
) return (false);
523 void IOService::free( void )
526 requireMaxBusStall(0);
527 requireMaxInterruptDelay(0);
528 if( getPropertyTable())
529 unregisterAllInterest();
533 if (reserved
->interruptStatisticsArray
) {
534 for (i
= 0; i
< reserved
->interruptStatisticsArrayCount
; i
++) {
535 if (reserved
->interruptStatisticsArray
[i
].reporter
)
536 reserved
->interruptStatisticsArray
[i
].reporter
->release();
539 IODelete(reserved
->interruptStatisticsArray
, IOInterruptAccountingReporter
, reserved
->interruptStatisticsArrayCount
);
542 if (reserved
->interruptStatisticsLock
)
543 IOLockFree(reserved
->interruptStatisticsLock
);
544 IODelete(reserved
, ExpansionData
, 1);
547 if (_numInterruptSources
&& _interruptSources
)
549 IOFree(_interruptSources
, _numInterruptSources
* sizeof(IOInterruptSource
));
550 _interruptSources
= 0;
557 * Attach in service plane
559 bool IOService::attach( IOService
* provider
)
565 if( gIOKitDebug
& kIOLogAttach
)
566 LOG( "%s::attach(%s)\n", getName(),
567 provider
->getName());
569 provider
->lockForArbitration();
570 if( provider
->__state
[0] & kIOServiceInactiveState
)
573 ok
= attachToParent( provider
, gIOServicePlane
);
574 provider
->unlockForArbitration();
577 gIOServiceRoot
= this;
578 ok
= attachToParent( getRegistryRoot(), gIOServicePlane
);
581 if (ok
&& !__provider
) (void) getProvider();
586 IOService
* IOService::getServiceRoot( void )
588 return( gIOServiceRoot
);
591 void IOService::detach( IOService
* provider
)
593 IOService
* newProvider
= 0;
597 if( gIOKitDebug
& kIOLogAttach
)
598 LOG("%s::detach(%s)\n", getName(), provider
->getName());
600 lockForArbitration();
602 uint64_t regID1
= provider
->getRegistryEntryID();
603 uint64_t regID2
= getRegistryEntryID();
607 (uintptr_t) (regID1
>> 32),
609 (uintptr_t) (regID2
>> 32));
611 adjParent
= ((busy
= (__state
[1] & kIOServiceBusyStateMask
))
612 && (provider
== getProvider()));
614 detachFromParent( provider
, gIOServicePlane
);
617 newProvider
= getProvider();
618 if( busy
&& (__state
[1] & kIOServiceTermPhase3State
) && (0 == newProvider
))
619 _adjustBusy( -busy
);
622 if (kIOServiceInactiveState
& __state
[0]) {
623 getMetaClass()->removeInstance(this);
624 IORemoveServicePlatformActions(this);
627 unlockForArbitration();
630 newProvider
->lockForArbitration();
631 newProvider
->_adjustBusy(1);
632 newProvider
->unlockForArbitration();
635 // check for last client detach from a terminated service
636 if( provider
->lockForArbitration( true ))
638 if (kIOServiceStartState
& __state
[1])
640 provider
->scheduleTerminatePhase2();
642 if( adjParent
) provider
->_adjustBusy( -1 );
643 if( (provider
->__state
[1] & kIOServiceTermPhase3State
)
644 && (0 == provider
->getClient())) {
645 provider
->scheduleFinalize();
647 provider
->unlockForArbitration();
652 * Register instance - publish it for matching
655 void IOService::registerService( IOOptionBits options
)
661 enum { kMaxPathLen
= 256 };
662 enum { kMaxChars
= 63 };
664 IORegistryEntry
* parent
= this;
665 IORegistryEntry
* root
= getRegistryRoot();
666 while( parent
&& (parent
!= root
))
667 parent
= parent
->getParentEntry( gIOServicePlane
);
669 if( parent
!= root
) {
670 IOLog("%s: not registry member at registerService()\n", getName());
674 // Allow the Platform Expert to adjust this node.
675 if( gIOPlatform
&& (!gIOPlatform
->platformAdjustService(this)))
678 IOInstallServicePlatformActions(this);
680 if( (this != gIOResources
)
681 && (kIOLogRegister
& gIOKitDebug
)) {
683 pathBuf
= (char *) IOMalloc( kMaxPathLen
);
685 IOLog( "Registering: " );
688 if( pathBuf
&& getPath( pathBuf
, &len
, gIOServicePlane
)) {
691 if( len
> kMaxChars
) {
695 if( (skip
= strchr( path
, '/')))
701 IOLog( "%s\n", path
);
704 IOFree( pathBuf
, kMaxPathLen
);
707 startMatching( options
);
710 void IOService::startMatching( IOOptionBits options
)
712 IOService
* provider
;
715 bool needWake
= false;
720 lockForArbitration();
722 sync
= (options
& kIOServiceSynchronous
)
723 || ((provider
= getProvider())
724 && (provider
->__state
[1] & kIOServiceSynchronousState
));
726 if ( options
& kIOServiceAsynchronous
)
729 needConfig
= (0 == (__state
[1] & (kIOServiceNeedConfigState
| kIOServiceConfigState
)))
730 && (0 == (__state
[0] & kIOServiceInactiveState
));
732 __state
[1] |= kIOServiceNeedConfigState
;
734 // __state[0] &= ~kIOServiceInactiveState;
736 // if( sync) LOG("OSKernelStackRemaining = %08x @ %s\n",
737 // OSKernelStackRemaining(), getName());
740 needWake
= (0 != (kIOServiceSyncPubState
& __state
[1]));
744 __state
[1] |= kIOServiceSynchronousState
;
746 __state
[1] &= ~kIOServiceSynchronousState
;
748 if( needConfig
) prevBusy
= _adjustBusy( 1 );
750 unlockForArbitration();
755 IOLockLock( gIOServiceBusyLock
);
756 thread_wakeup( (event_t
) this/*&__state[1]*/ );
757 IOLockUnlock( gIOServiceBusyLock
);
759 } else if( !sync
|| (kIOServiceAsynchronous
& options
)) {
761 ok
= (0 != _IOServiceJob::startJob( this, kMatchNubJob
, options
));
765 if( (__state
[1] & kIOServiceNeedConfigState
))
766 doServiceMatch( options
);
768 lockForArbitration();
769 IOLockLock( gIOServiceBusyLock
);
771 waitAgain
= ((prevBusy
< (__state
[1] & kIOServiceBusyStateMask
))
772 && (0 == (__state
[0] & kIOServiceInactiveState
)));
775 __state
[1] |= kIOServiceSyncPubState
| kIOServiceBusyWaiterState
;
777 __state
[1] &= ~kIOServiceSyncPubState
;
779 unlockForArbitration();
782 assert_wait( (event_t
) this/*&__state[1]*/, THREAD_UNINT
);
784 IOLockUnlock( gIOServiceBusyLock
);
786 thread_block(THREAD_CONTINUE_NULL
);
788 } while( waitAgain
);
792 IOReturn
IOService::catalogNewDrivers( OSOrderedSet
* newTables
)
794 OSDictionary
* table
;
804 while( (table
= (OSDictionary
*) newTables
->getFirstObject())) {
807 set
= (OSSet
*) copyExistingServices( table
,
808 kIOServiceRegisteredState
,
809 kIOServiceExistingSet
);
814 count
+= set
->getCount();
817 allSet
->merge((const OSSet
*) set
);
825 if( getDebugFlags( table
) & kIOLogMatch
)
826 LOG("Matching service count = %ld\n", (long)count
);
828 newTables
->removeObject(table
);
832 while( (service
= (IOService
*) allSet
->getAnyObject())) {
833 service
->startMatching(kIOServiceAsynchronous
);
834 allSet
->removeObject(service
);
839 newTables
->release();
841 return( kIOReturnSuccess
);
844 _IOServiceJob
* _IOServiceJob::startJob( IOService
* nub
, int type
,
845 IOOptionBits options
)
849 job
= new _IOServiceJob
;
850 if( job
&& !job
->init()) {
858 job
->options
= options
;
859 nub
->retain(); // thread will release()
867 * Called on a registered service to see if it matches
871 bool IOService::matchPropertyTable( OSDictionary
* table
, SInt32
* score
)
873 return( matchPropertyTable(table
) );
876 bool IOService::matchPropertyTable( OSDictionary
* table
)
882 * Called on a matched service to allocate resources
883 * before first driver is attached.
886 IOReturn
IOService::getResources( void )
888 return( kIOReturnSuccess
);
892 * Client/provider accessors
895 IOService
* IOService::getProvider( void ) const
897 IOService
* self
= (IOService
*) this;
901 generation
= getGenerationCount();
902 if( __providerGeneration
== generation
)
903 return( __provider
);
905 parent
= (IOService
*) getParentEntry( gIOServicePlane
);
906 if( parent
== IORegistryEntry::getRegistryRoot())
907 /* root is not an IOService */
910 self
->__provider
= parent
;
912 // save the count from before call to getParentEntry()
913 self
->__providerGeneration
= generation
;
918 IOWorkLoop
* IOService::getWorkLoop() const
920 IOService
*provider
= getProvider();
923 return provider
->getWorkLoop();
928 OSIterator
* IOService::getProviderIterator( void ) const
930 return( getParentIterator( gIOServicePlane
));
933 IOService
* IOService::getClient( void ) const
935 return( (IOService
*) getChildEntry( gIOServicePlane
));
938 OSIterator
* IOService::getClientIterator( void ) const
940 return( getChildIterator( gIOServicePlane
));
943 OSIterator
* _IOOpenServiceIterator::iterator( OSIterator
* _iter
,
944 const IOService
* client
,
945 const IOService
* provider
)
947 _IOOpenServiceIterator
* inst
;
952 inst
= new _IOOpenServiceIterator
;
954 if( inst
&& !inst
->init()) {
960 inst
->client
= client
;
961 inst
->provider
= provider
;
967 void _IOOpenServiceIterator::free()
971 last
->unlockForArbitration();
975 OSObject
* _IOOpenServiceIterator::getNextObject()
980 last
->unlockForArbitration();
982 while( (next
= (IOService
*) iter
->getNextObject())) {
984 next
->lockForArbitration();
985 if( (client
&& (next
->isOpen( client
)))
986 || (provider
&& (provider
->isOpen( next
))) )
988 next
->unlockForArbitration();
996 bool _IOOpenServiceIterator::isValid()
998 return( iter
->isValid() );
1001 void _IOOpenServiceIterator::reset()
1004 last
->unlockForArbitration();
1010 OSIterator
* IOService::getOpenProviderIterator( void ) const
1012 return( _IOOpenServiceIterator::iterator( getProviderIterator(), this, 0 ));
1015 OSIterator
* IOService::getOpenClientIterator( void ) const
1017 return( _IOOpenServiceIterator::iterator( getClientIterator(), 0, this ));
1021 IOReturn
IOService::callPlatformFunction( const OSSymbol
* functionName
,
1022 bool waitForFunction
,
1023 void *param1
, void *param2
,
1024 void *param3
, void *param4
)
1026 IOReturn result
= kIOReturnUnsupported
;
1027 IOService
*provider
;
1029 if (gIOPlatformFunctionHandlerSet
== functionName
)
1031 #if defined(__i386__) || defined(__x86_64__)
1032 const OSSymbol
* functionHandlerName
= (const OSSymbol
*) param1
;
1033 IOService
* target
= (IOService
*) param2
;
1034 bool enable
= (param3
!= 0);
1036 if (sCPULatencyFunctionName
[kCpuDelayBusStall
] == functionHandlerName
)
1037 result
= setLatencyHandler(kCpuDelayBusStall
, target
, enable
);
1038 else if (sCPULatencyFunctionName
[kCpuDelayInterrupt
] == param1
)
1039 result
= setLatencyHandler(kCpuDelayInterrupt
, target
, enable
);
1040 #endif /* defined(__i386__) || defined(__x86_64__) */
1043 if ((kIOReturnUnsupported
== result
) && (provider
= getProvider())) {
1044 result
= provider
->callPlatformFunction(functionName
, waitForFunction
,
1045 param1
, param2
, param3
, param4
);
1051 IOReturn
IOService::callPlatformFunction( const char * functionName
,
1052 bool waitForFunction
,
1053 void *param1
, void *param2
,
1054 void *param3
, void *param4
)
1056 IOReturn result
= kIOReturnNoMemory
;
1057 const OSSymbol
*functionSymbol
= OSSymbol::withCString(functionName
);
1059 if (functionSymbol
!= 0) {
1060 result
= callPlatformFunction(functionSymbol
, waitForFunction
,
1061 param1
, param2
, param3
, param4
);
1062 functionSymbol
->release();
1070 * Accessors for global services
1073 IOPlatformExpert
* IOService::getPlatform( void )
1075 return( gIOPlatform
);
1078 class IOPMrootDomain
* IOService::getPMRootDomain( void )
1080 return( gIOPMRootDomain
);
1083 IOService
* IOService::getResourceService( void )
1085 return( gIOResources
);
1088 void IOService::setPlatform( IOPlatformExpert
* platform
)
1090 gIOPlatform
= platform
;
1091 gIOResources
->attachToParent( gIOServiceRoot
, gIOServicePlane
);
1093 #if defined(__i386__) || defined(__x86_64__)
1095 static const char * keys
[kCpuNumDelayTypes
] = {
1096 kIOPlatformMaxBusDelay
, kIOPlatformMaxInterruptDelay
};
1097 const OSObject
* objs
[2];
1101 for (idx
= 0; idx
< kCpuNumDelayTypes
; idx
++)
1103 objs
[0] = sCPULatencySet
[idx
];
1104 objs
[1] = sCPULatencyHolder
[idx
];
1105 array
= OSArray::withObjects(objs
, 2);
1107 platform
->setProperty(keys
[idx
], array
);
1110 #endif /* defined(__i386__) || defined(__x86_64__) */
1113 void IOService::setPMRootDomain( class IOPMrootDomain
* rootDomain
)
1115 gIOPMRootDomain
= rootDomain
;
1116 publishResource("IOKit");
1123 bool IOService::lockForArbitration( bool isSuccessRequired
)
1127 ArbitrationLockQueueElement
* element
;
1128 ArbitrationLockQueueElement
* active
;
1129 ArbitrationLockQueueElement
* waiting
;
1131 enum { kPutOnFreeQueue
, kPutOnActiveQueue
, kPutOnWaitingQueue
} action
;
1133 // lock global access
1134 IOTakeLock( gArbitrationLockQueueLock
);
1136 // obtain an unused queue element
1137 if( !queue_empty( &gArbitrationLockQueueFree
)) {
1138 queue_remove_first( &gArbitrationLockQueueFree
,
1140 ArbitrationLockQueueElement
*,
1143 element
= IONew( ArbitrationLockQueueElement
, 1 );
1147 // prepare the queue element
1148 element
->thread
= IOThreadSelf();
1149 element
->service
= this;
1151 element
->required
= isSuccessRequired
;
1152 element
->aborted
= false;
1154 // determine whether this object is already locked (ie. on active queue)
1156 queue_iterate( &gArbitrationLockQueueActive
,
1158 ArbitrationLockQueueElement
*,
1161 if( active
->service
== element
->service
) {
1167 if( found
) { // this object is already locked
1169 // determine whether it is the same or a different thread trying to lock
1170 if( active
->thread
!= element
->thread
) { // it is a different thread
1172 ArbitrationLockQueueElement
* victim
= 0;
1174 // before placing this new thread on the waiting queue, we look for
1175 // a deadlock cycle...
1178 // determine whether the active thread holding the object we
1179 // want is waiting for another object to be unlocked
1181 queue_iterate( &gArbitrationLockQueueWaiting
,
1183 ArbitrationLockQueueElement
*,
1186 if( waiting
->thread
== active
->thread
) {
1187 assert( false == waiting
->aborted
);
1193 if( found
) { // yes, active thread waiting for another object
1195 // this may be a candidate for rejection if the required
1196 // flag is not set, should we detect a deadlock later on
1197 if( false == waiting
->required
)
1200 // find the thread that is holding this other object, that
1201 // is blocking the active thread from proceeding (fun :-)
1203 queue_iterate( &gArbitrationLockQueueActive
,
1204 active
, // (reuse active queue element)
1205 ArbitrationLockQueueElement
*,
1208 if( active
->service
== waiting
->service
) {
1214 // someone must be holding it or it wouldn't be waiting
1217 if( active
->thread
== element
->thread
) {
1219 // doh, it's waiting for the thread that originated
1220 // this whole lock (ie. current thread) -> deadlock
1221 if( false == element
->required
) { // willing to fail?
1223 // the originating thread doesn't have the required
1224 // flag, so it can fail
1225 success
= false; // (fail originating lock request)
1226 break; // (out of while)
1228 } else { // originating thread is not willing to fail
1230 // see if we came across a waiting thread that did
1231 // not have the 'required' flag set: we'll fail it
1234 // we do have a willing victim, fail it's lock
1235 victim
->aborted
= true;
1237 // take the victim off the waiting queue
1238 queue_remove( &gArbitrationLockQueueWaiting
,
1240 ArbitrationLockQueueElement
*,
1244 IOLockWakeup( gArbitrationLockQueueLock
,
1246 /* one thread */ true );
1248 // allow this thread to proceed (ie. wait)
1249 success
= true; // (put request on wait queue)
1250 break; // (out of while)
1253 // all the waiting threads we came across in
1254 // finding this loop had the 'required' flag
1255 // set, so we've got a deadlock we can't avoid
1256 panic("I/O Kit: Unrecoverable deadlock.");
1260 // repeat while loop, redefining active thread to be the
1261 // thread holding "this other object" (see above), and
1262 // looking for threads waiting on it; note the active
1263 // variable points to "this other object" already... so
1264 // there nothing to do in this else clause.
1266 } else { // no, active thread is not waiting for another object
1268 success
= true; // (put request on wait queue)
1269 break; // (out of while)
1273 if( success
) { // put the request on the waiting queue?
1274 kern_return_t wait_result
;
1276 // place this thread on the waiting queue and put it to sleep;
1277 // we place it at the tail of the queue...
1278 queue_enter( &gArbitrationLockQueueWaiting
,
1280 ArbitrationLockQueueElement
*,
1283 // declare that this thread will wait for a given event
1284 restart_sleep
: wait_result
= assert_wait( element
,
1285 element
->required
? THREAD_UNINT
1286 : THREAD_INTERRUPTIBLE
);
1288 // unlock global access
1289 IOUnlock( gArbitrationLockQueueLock
);
1291 // put thread to sleep, waiting for our event to fire...
1292 if (wait_result
== THREAD_WAITING
)
1293 wait_result
= thread_block(THREAD_CONTINUE_NULL
);
1296 // ...and we've been woken up; we might be in one of two states:
1297 // (a) we've been aborted and our queue element is not on
1298 // any of the three queues, but is floating around
1299 // (b) we're allowed to proceed with the lock and we have
1300 // already been moved from the waiting queue to the
1302 // ...plus a 3rd state, should the thread have been interrupted:
1303 // (c) we're still on the waiting queue
1305 // determine whether we were interrupted out of our sleep
1306 if( THREAD_INTERRUPTED
== wait_result
) {
1308 // re-lock global access
1309 IOTakeLock( gArbitrationLockQueueLock
);
1311 // determine whether we're still on the waiting queue
1313 queue_iterate( &gArbitrationLockQueueWaiting
,
1314 waiting
, // (reuse waiting queue element)
1315 ArbitrationLockQueueElement
*,
1318 if( waiting
== element
) {
1324 if( found
) { // yes, we're still on the waiting queue
1326 // determine whether we're willing to fail
1327 if( false == element
->required
) {
1329 // mark us as aborted
1330 element
->aborted
= true;
1332 // take us off the waiting queue
1333 queue_remove( &gArbitrationLockQueueWaiting
,
1335 ArbitrationLockQueueElement
*,
1337 } else { // we are not willing to fail
1339 // ignore interruption, go back to sleep
1344 // unlock global access
1345 IOUnlock( gArbitrationLockQueueLock
);
1347 // proceed as though this were a normal wake up
1348 wait_result
= THREAD_AWAKENED
;
1351 assert( THREAD_AWAKENED
== wait_result
);
1353 // determine whether we've been aborted while we were asleep
1354 if( element
->aborted
) {
1355 assert( false == element
->required
);
1357 // re-lock global access
1358 IOTakeLock( gArbitrationLockQueueLock
);
1360 action
= kPutOnFreeQueue
;
1362 } else { // we weren't aborted, so we must be ready to go :-)
1364 // we've already been moved from waiting to active queue
1368 } else { // the lock request is to be failed
1370 // return unused queue element to queue
1371 action
= kPutOnFreeQueue
;
1373 } else { // it is the same thread, recursive access is allowed
1375 // add one level of recursion
1378 // return unused queue element to queue
1379 action
= kPutOnFreeQueue
;
1382 } else { // this object is not already locked, so let this thread through
1383 action
= kPutOnActiveQueue
;
1387 // put the new element on a queue
1388 if( kPutOnActiveQueue
== action
) {
1389 queue_enter( &gArbitrationLockQueueActive
,
1391 ArbitrationLockQueueElement
*,
1393 } else if( kPutOnFreeQueue
== action
) {
1394 queue_enter( &gArbitrationLockQueueFree
,
1396 ArbitrationLockQueueElement
*,
1399 assert( 0 ); // kPutOnWaitingQueue never occurs, handled specially above
1402 // unlock global access
1403 IOUnlock( gArbitrationLockQueueLock
);
1408 void IOService::unlockForArbitration( void )
1411 ArbitrationLockQueueElement
* element
;
1413 // lock global access
1414 IOTakeLock( gArbitrationLockQueueLock
);
1416 // find the lock element for this object (ie. on active queue)
1418 queue_iterate( &gArbitrationLockQueueActive
,
1420 ArbitrationLockQueueElement
*,
1423 if( element
->service
== this ) {
1431 // determine whether the lock has been taken recursively
1432 if( element
->count
> 1 ) {
1433 // undo one level of recursion
1438 // remove it from the active queue
1439 queue_remove( &gArbitrationLockQueueActive
,
1441 ArbitrationLockQueueElement
*,
1444 // put it on the free queue
1445 queue_enter( &gArbitrationLockQueueFree
,
1447 ArbitrationLockQueueElement
*,
1450 // determine whether a thread is waiting for object (head to tail scan)
1452 queue_iterate( &gArbitrationLockQueueWaiting
,
1454 ArbitrationLockQueueElement
*,
1457 if( element
->service
== this ) {
1463 if ( found
) { // we found an interested thread on waiting queue
1465 // remove it from the waiting queue
1466 queue_remove( &gArbitrationLockQueueWaiting
,
1468 ArbitrationLockQueueElement
*,
1471 // put it on the active queue
1472 queue_enter( &gArbitrationLockQueueActive
,
1474 ArbitrationLockQueueElement
*,
1477 // wake the waiting thread
1478 IOLockWakeup( gArbitrationLockQueueLock
,
1480 /* one thread */ true );
1484 // unlock global access
1485 IOUnlock( gArbitrationLockQueueLock
);
1488 void IOService::applyToProviders( IOServiceApplierFunction applier
,
1491 applyToParents( (IORegistryEntryApplierFunction
) applier
,
1492 context
, gIOServicePlane
);
1495 void IOService::applyToClients( IOServiceApplierFunction applier
,
1498 applyToChildren( (IORegistryEntryApplierFunction
) applier
,
1499 context
, gIOServicePlane
);
1508 // send a message to a client or interested party of this service
1509 IOReturn
IOService::messageClient( UInt32 type
, OSObject
* client
,
1510 void * argument
, vm_size_t argSize
)
1513 IOService
* service
;
1514 _IOServiceInterestNotifier
* notify
;
1516 if( (service
= OSDynamicCast( IOService
, client
)))
1517 ret
= service
->message( type
, this, argument
);
1519 else if( (notify
= OSDynamicCast( _IOServiceInterestNotifier
, client
))) {
1521 _IOServiceNotifierInvocation invocation
;
1524 invocation
.thread
= current_thread();
1527 willNotify
= (0 != (kIOServiceNotifyEnable
& notify
->state
));
1530 queue_enter( ¬ify
->handlerInvocations
, &invocation
,
1531 _IOServiceNotifierInvocation
*, link
);
1537 ret
= (*notify
->handler
)( notify
->target
, notify
->ref
,
1538 type
, this, argument
, argSize
);
1541 queue_remove( ¬ify
->handlerInvocations
, &invocation
,
1542 _IOServiceNotifierInvocation
*, link
);
1543 if( kIOServiceNotifyWaiter
& notify
->state
) {
1544 notify
->state
&= ~kIOServiceNotifyWaiter
;
1545 WAKEUPNOTIFY( notify
);
1550 ret
= kIOReturnSuccess
;
1553 ret
= kIOReturnBadArgument
;
1559 applyToInterestNotifiers(const IORegistryEntry
*target
,
1560 const OSSymbol
* typeOfInterest
,
1561 OSObjectApplierFunction applier
,
1564 OSArray
* copyArray
= 0;
1568 IOCommand
*notifyList
=
1569 OSDynamicCast( IOCommand
, target
->getProperty( typeOfInterest
));
1572 copyArray
= OSArray::withCapacity(1);
1574 // iterate over queue, entry is set to each element in the list
1575 iterqueue(¬ifyList
->fCommandChain
, entry
) {
1576 _IOServiceInterestNotifier
* notify
;
1578 queue_element(entry
, notify
, _IOServiceInterestNotifier
*, chain
);
1579 copyArray
->setObject(notify
);
1588 for( index
= 0; (next
= copyArray
->getObject( index
)); index
++)
1589 (*applier
)(next
, context
);
1590 copyArray
->release();
1594 void IOService::applyToInterested( const OSSymbol
* typeOfInterest
,
1595 OSObjectApplierFunction applier
,
1598 if (gIOGeneralInterest
== typeOfInterest
)
1599 applyToClients( (IOServiceApplierFunction
) applier
, context
);
1600 applyToInterestNotifiers(this, typeOfInterest
, applier
, context
);
1603 struct MessageClientsContext
{
1604 IOService
* service
;
1611 static void messageClientsApplier( OSObject
* object
, void * ctx
)
1614 MessageClientsContext
* context
= (MessageClientsContext
*) ctx
;
1616 ret
= context
->service
->messageClient( context
->type
,
1617 object
, context
->argument
, context
->argSize
);
1618 if( kIOReturnSuccess
!= ret
)
1622 // send a message to all clients
1623 IOReturn
IOService::messageClients( UInt32 type
,
1624 void * argument
, vm_size_t argSize
)
1626 MessageClientsContext context
;
1628 context
.service
= this;
1629 context
.type
= type
;
1630 context
.argument
= argument
;
1631 context
.argSize
= argSize
;
1632 context
.ret
= kIOReturnSuccess
;
1634 applyToInterested( gIOGeneralInterest
,
1635 &messageClientsApplier
, &context
);
1637 return( context
.ret
);
1640 IOReturn
IOService::acknowledgeNotification( IONotificationRef notification
,
1641 IOOptionBits response
)
1643 return( kIOReturnUnsupported
);
1646 IONotifier
* IOService::registerInterest( const OSSymbol
* typeOfInterest
,
1647 IOServiceInterestHandler handler
, void * target
, void * ref
)
1649 _IOServiceInterestNotifier
* notify
= 0;
1650 IOReturn rc
= kIOReturnError
;
1652 notify
= new _IOServiceInterestNotifier
;
1653 if (!notify
) return NULL
;
1655 if(notify
->init()) {
1656 rc
= registerInterestForNotifer(notify
, typeOfInterest
,
1657 handler
, target
, ref
);
1660 if (rc
!= kIOReturnSuccess
) {
1668 IOReturn
IOService::registerInterestForNotifer( IONotifier
*svcNotify
, const OSSymbol
* typeOfInterest
,
1669 IOServiceInterestHandler handler
, void * target
, void * ref
)
1671 IOReturn rc
= kIOReturnSuccess
;
1672 _IOServiceInterestNotifier
*notify
= 0;
1674 if( (typeOfInterest
!= gIOGeneralInterest
)
1675 && (typeOfInterest
!= gIOBusyInterest
)
1676 && (typeOfInterest
!= gIOAppPowerStateInterest
)
1677 && (typeOfInterest
!= gIOConsoleSecurityInterest
)
1678 && (typeOfInterest
!= gIOPriorityPowerStateInterest
))
1679 return( kIOReturnBadArgument
);
1681 if (!svcNotify
|| !(notify
= OSDynamicCast(_IOServiceInterestNotifier
, svcNotify
)))
1682 return( kIOReturnBadArgument
);
1684 lockForArbitration();
1685 if( 0 == (__state
[0] & kIOServiceInactiveState
)) {
1687 notify
->handler
= handler
;
1688 notify
->target
= target
;
1690 notify
->state
= kIOServiceNotifyEnable
;
1696 // Get the head of the notifier linked list
1697 IOCommand
* notifyList
;
1698 OSObject
* obj
= copyProperty( typeOfInterest
);
1699 if (!(notifyList
= OSDynamicCast(IOCommand
, obj
))) {
1700 notifyList
= OSTypeAlloc(IOCommand
);
1703 bool ok
= setProperty( typeOfInterest
, notifyList
);
1704 notifyList
->release();
1705 if (!ok
) notifyList
= 0;
1708 if (obj
) obj
->release();
1711 enqueue(¬ifyList
->fCommandChain
, ¬ify
->chain
);
1712 notify
->retain(); // ref'ed while in list
1718 rc
= kIOReturnNotReady
;
1720 unlockForArbitration();
1725 static void cleanInterestList( OSObject
* head
)
1727 IOCommand
*notifyHead
= OSDynamicCast(IOCommand
, head
);
1732 while ( queue_entry_t entry
= dequeue(¬ifyHead
->fCommandChain
) ) {
1733 queue_next(entry
) = queue_prev(entry
) = 0;
1735 _IOServiceInterestNotifier
* notify
;
1737 queue_element(entry
, notify
, _IOServiceInterestNotifier
*, chain
);
1743 void IOService::unregisterAllInterest( void )
1745 cleanInterestList( getProperty( gIOGeneralInterest
));
1746 cleanInterestList( getProperty( gIOBusyInterest
));
1747 cleanInterestList( getProperty( gIOAppPowerStateInterest
));
1748 cleanInterestList( getProperty( gIOPriorityPowerStateInterest
));
1749 cleanInterestList( getProperty( gIOConsoleSecurityInterest
));
1753 * _IOServiceInterestNotifier
1756 // wait for all threads, other than the current one,
1757 // to exit the handler
1759 void _IOServiceInterestNotifier::wait()
1761 _IOServiceNotifierInvocation
* next
;
1766 queue_iterate( &handlerInvocations
, next
,
1767 _IOServiceNotifierInvocation
*, link
) {
1768 if( next
->thread
!= current_thread() ) {
1774 state
|= kIOServiceNotifyWaiter
;
1781 void _IOServiceInterestNotifier::free()
1783 assert( queue_empty( &handlerInvocations
));
1787 void _IOServiceInterestNotifier::remove()
1791 if( queue_next( &chain
)) {
1793 queue_next( &chain
) = queue_prev( &chain
) = 0;
1797 state
&= ~kIOServiceNotifyEnable
;
1806 bool _IOServiceInterestNotifier::disable()
1812 ret
= (0 != (kIOServiceNotifyEnable
& state
));
1813 state
&= ~kIOServiceNotifyEnable
;
1822 void _IOServiceInterestNotifier::enable( bool was
)
1826 state
|= kIOServiceNotifyEnable
;
1828 state
&= ~kIOServiceNotifyEnable
;
1832 bool _IOServiceInterestNotifier::init()
1834 queue_init( &handlerInvocations
);
1835 return (OSObject::init());
1837 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1843 #define tailQ(o) setObject(o)
1844 #define headQ(o) setObject(0, o)
1845 #define TLOG(fmt, args...) { if(kIOLogYield & gIOKitDebug) { IOLog("[%llx] ", thread_tid(current_thread())); IOLog(fmt, ## args); }}
1847 static void _workLoopAction( IOWorkLoop::Action action
,
1848 IOService
* service
,
1849 void * p0
= 0, void * p1
= 0,
1850 void * p2
= 0, void * p3
= 0 )
1854 if( (wl
= service
->getWorkLoop())) {
1856 wl
->runAction( action
, service
, p0
, p1
, p2
, p3
);
1859 (*action
)( service
, p0
, p1
, p2
, p3
);
1862 bool IOService::requestTerminate( IOService
* provider
, IOOptionBits options
)
1866 // if its our only provider
1867 ok
= isParent( provider
, gIOServicePlane
, true);
1871 provider
->terminateClient( this, options
| kIOServiceRecursing
);
1872 ok
= (0 != (kIOServiceInactiveState
& __state
[0]));
1879 bool IOService::terminatePhase1( IOOptionBits options
)
1884 OSArray
* makeInactive
;
1885 OSArray
* waitingInactive
;
1886 int waitResult
= THREAD_AWAKENED
;
1890 bool startPhase2
= false;
1892 TLOG("%s[0x%qx]::terminatePhase1(%08llx)\n", getName(), getRegistryEntryID(), (long long)options
);
1894 uint64_t regID
= getRegistryEntryID();
1896 IOSERVICE_TERMINATE_PHASE1
,
1898 (uintptr_t) (regID
>> 32),
1900 (uintptr_t) options
);
1903 if( options
& kIOServiceRecursing
) {
1904 lockForArbitration();
1905 if (0 == (kIOServiceInactiveState
& __state
[0]))
1907 __state
[0] |= kIOServiceInactiveState
;
1908 __state
[1] |= kIOServiceRecursing
| kIOServiceTermPhase1State
;
1910 unlockForArbitration();
1916 makeInactive
= OSArray::withCapacity( 16 );
1917 waitingInactive
= OSArray::withCapacity( 16 );
1918 if(!makeInactive
|| !waitingInactive
) return( false );
1925 didInactive
= victim
->lockForArbitration( true );
1928 uint64_t regID1
= victim
->getRegistryEntryID();
1929 IOServiceTrace(IOSERVICE_TERM_SET_INACTIVE
,
1931 (uintptr_t) (regID1
>> 32),
1932 (uintptr_t) victim
->__state
[1],
1935 enum { kRP1
= kIOServiceRecursing
| kIOServiceTermPhase1State
};
1936 didInactive
= (kRP1
== (victim
->__state
[1] & kRP1
))
1937 || (0 == (victim
->__state
[0] & kIOServiceInactiveState
));
1941 // a multiply attached IOService can be visited twice
1942 if (-1U == waitingInactive
->getNextIndexOfObject(victim
, 0)) do
1944 IOLockLock(gIOServiceBusyLock
);
1945 wait
= (victim
->__state
[1] & kIOServiceTermPhase1State
);
1947 TLOG("%s[0x%qx]::waitPhase1(%s[0x%qx])\n",
1948 getName(), getRegistryEntryID(), victim
->getName(), victim
->getRegistryEntryID());
1949 victim
->__state
[1] |= kIOServiceTerm1WaiterState
;
1950 victim
->unlockForArbitration();
1951 assert_wait((event_t
)&victim
->__state
[1], THREAD_UNINT
);
1953 IOLockUnlock(gIOServiceBusyLock
);
1955 waitResult
= thread_block(THREAD_CONTINUE_NULL
);
1956 TLOG("%s[0x%qx]::did waitPhase1(%s[0x%qx])\n",
1957 getName(), getRegistryEntryID(), victim
->getName(), victim
->getRegistryEntryID());
1958 victim
->lockForArbitration();
1961 while (wait
&& (waitResult
!= THREAD_TIMED_OUT
));
1965 victim
->__state
[0] |= kIOServiceInactiveState
;
1966 victim
->__state
[0] &= ~(kIOServiceRegisteredState
| kIOServiceMatchedState
1967 | kIOServiceFirstPublishState
| kIOServiceFirstMatchState
);
1968 victim
->__state
[1] &= ~kIOServiceRecursing
;
1969 victim
->__state
[1] |= kIOServiceTermPhase1State
;
1970 waitingInactive
->headQ(victim
);
1973 if (kIOServiceTerminateNeedWillTerminate
& options
)
1975 victim
->__state
[1] |= kIOServiceNeedWillTerminate
;
1978 victim
->_adjustBusy( 1 );
1980 victim
->unlockForArbitration();
1982 if( victim
== this) startPhase2
= didInactive
;
1985 victim
->deliverNotification( gIOTerminatedNotification
, 0, 0xffffffff );
1986 IOUserClient::destroyUserReferences( victim
);
1988 iter
= victim
->getClientIterator();
1990 while( (client
= (IOService
*) iter
->getNextObject())) {
1991 TLOG("%s[0x%qx]::requestTerminate(%s[0x%qx], %08llx)\n",
1992 client
->getName(), client
->getRegistryEntryID(),
1993 victim
->getName(), victim
->getRegistryEntryID(), (long long)options
);
1994 ok
= client
->requestTerminate( victim
, options
);
1995 TLOG("%s[0x%qx]::requestTerminate(%s[0x%qx], ok = %d)\n",
1996 client
->getName(), client
->getRegistryEntryID(),
1997 victim
->getName(), victim
->getRegistryEntryID(), ok
);
1999 uint64_t regID1
= client
->getRegistryEntryID();
2000 uint64_t regID2
= victim
->getRegistryEntryID();
2002 (ok
? IOSERVICE_TERMINATE_REQUEST_OK
2003 : IOSERVICE_TERMINATE_REQUEST_FAIL
),
2005 (uintptr_t) (regID1
>> 32),
2007 (uintptr_t) (regID2
>> 32));
2010 makeInactive
->setObject( client
);
2016 victim
= (IOService
*) makeInactive
->getObject(0);
2019 makeInactive
->removeObject(0);
2022 makeInactive
->release();
2024 while ((victim
= (IOService
*) waitingInactive
->getObject(0)))
2027 waitingInactive
->removeObject(0);
2029 victim
->lockForArbitration();
2030 victim
->__state
[1] &= ~kIOServiceTermPhase1State
;
2031 if (kIOServiceTerm1WaiterState
& victim
->__state
[1])
2033 victim
->__state
[1] &= ~kIOServiceTerm1WaiterState
;
2034 TLOG("%s[0x%qx]::wakePhase1\n", victim
->getName(), victim
->getRegistryEntryID());
2035 IOLockLock( gIOServiceBusyLock
);
2036 thread_wakeup( (event_t
) &victim
->__state
[1]);
2037 IOLockUnlock( gIOServiceBusyLock
);
2039 victim
->unlockForArbitration();
2042 waitingInactive
->release();
2047 lockForArbitration();
2048 scheduleTerminatePhase2(options
);
2049 unlockForArbitration();
2056 void IOService::setTerminateDefer(IOService
* provider
, bool defer
)
2058 lockForArbitration();
2059 if (defer
) __state
[1] |= kIOServiceStartState
;
2060 else __state
[1] &= ~kIOServiceStartState
;
2061 unlockForArbitration();
2063 if (provider
&& !defer
)
2065 provider
->lockForArbitration();
2066 provider
->scheduleTerminatePhase2();
2067 provider
->unlockForArbitration();
2071 // call with lockForArbitration
2072 void IOService::scheduleTerminatePhase2( IOOptionBits options
)
2074 AbsoluteTime deadline
;
2076 int waitResult
= THREAD_AWAKENED
;
2077 bool wait
, haveDeadline
= false;
2079 if (!(__state
[0] & kIOServiceInactiveState
)) return;
2081 regID1
= getRegistryEntryID();
2083 IOSERVICE_TERM_SCHED_PHASE2
,
2085 (uintptr_t) (regID1
>> 32),
2086 (uintptr_t) __state
[1],
2087 (uintptr_t) options
);
2089 if (__state
[1] & kIOServiceTermPhase1State
) return;
2092 unlockForArbitration();
2093 options
|= kIOServiceRequired
;
2094 IOLockLock( gJobsLock
);
2096 if( (options
& kIOServiceSynchronous
)
2097 && (current_thread() != gIOTerminateThread
)) {
2100 wait
= (gIOTerminateThread
!= 0);
2102 // wait to become the terminate thread
2103 IOLockSleep( gJobsLock
, &gIOTerminateThread
, THREAD_UNINT
);
2107 gIOTerminateThread
= current_thread();
2108 gIOTerminatePhase2List
->setObject( this );
2112 while( gIOTerminateWork
)
2113 terminateWorker( options
);
2114 wait
= (0 != (__state
[1] & kIOServiceBusyStateMask
));
2116 // wait for the victim to go non-busy
2117 if( !haveDeadline
) {
2118 clock_interval_to_deadline( 15, kSecondScale
, &deadline
);
2119 haveDeadline
= true;
2121 waitResult
= IOLockSleepDeadline( gJobsLock
, &gIOTerminateWork
,
2122 deadline
, THREAD_UNINT
);
2123 if( waitResult
== THREAD_TIMED_OUT
) {
2124 IOLog("%s[0x%qx]::terminate(kIOServiceSynchronous) timeout\n", getName(), getRegistryEntryID());
2127 } while(gIOTerminateWork
|| (wait
&& (waitResult
!= THREAD_TIMED_OUT
)));
2129 gIOTerminateThread
= 0;
2130 IOLockWakeup( gJobsLock
, (event_t
) &gIOTerminateThread
, /* one-thread */ false);
2133 // ! kIOServiceSynchronous
2135 gIOTerminatePhase2List
->setObject( this );
2136 if( 0 == gIOTerminateWork
++) {
2137 if( !gIOTerminateThread
)
2138 kernel_thread_start(&terminateThread
, (void *)(uintptr_t) options
, &gIOTerminateThread
);
2140 IOLockWakeup(gJobsLock
, (event_t
) &gIOTerminateWork
, /* one-thread */ false );
2144 IOLockUnlock( gJobsLock
);
2145 lockForArbitration();
2149 void IOService::terminateThread( void * arg
, wait_result_t waitResult
)
2151 IOLockLock( gJobsLock
);
2153 while (gIOTerminateWork
)
2154 terminateWorker( (uintptr_t) arg
);
2156 thread_deallocate(gIOTerminateThread
);
2157 gIOTerminateThread
= 0;
2158 IOLockWakeup( gJobsLock
, (event_t
) &gIOTerminateThread
, /* one-thread */ false);
2160 IOLockUnlock( gJobsLock
);
2163 void IOService::scheduleStop( IOService
* provider
)
2165 uint64_t regID1
= getRegistryEntryID();
2166 uint64_t regID2
= provider
->getRegistryEntryID();
2168 TLOG("%s[0x%qx]::scheduleStop(%s[0x%qx])\n", getName(), regID1
, provider
->getName(), regID2
);
2170 IOSERVICE_TERMINATE_SCHEDULE_STOP
,
2172 (uintptr_t) (regID1
>> 32),
2174 (uintptr_t) (regID2
>> 32));
2176 IOLockLock( gJobsLock
);
2177 gIOStopList
->tailQ( this );
2178 gIOStopProviderList
->tailQ( provider
);
2180 if( 0 == gIOTerminateWork
++) {
2181 if( !gIOTerminateThread
)
2182 kernel_thread_start(&terminateThread
, (void *) 0, &gIOTerminateThread
);
2184 IOLockWakeup(gJobsLock
, (event_t
) &gIOTerminateWork
, /* one-thread */ false );
2187 IOLockUnlock( gJobsLock
);
2190 void IOService::scheduleFinalize( void )
2192 uint64_t regID1
= getRegistryEntryID();
2194 TLOG("%s[0x%qx]::scheduleFinalize\n", getName(), regID1
);
2196 IOSERVICE_TERMINATE_SCHEDULE_FINALIZE
,
2198 (uintptr_t) (regID1
>> 32),
2201 IOLockLock( gJobsLock
);
2202 gIOFinalizeList
->tailQ( this );
2204 if( 0 == gIOTerminateWork
++) {
2205 if( !gIOTerminateThread
)
2206 kernel_thread_start(&terminateThread
, (void *) 0, &gIOTerminateThread
);
2208 IOLockWakeup(gJobsLock
, (event_t
) &gIOTerminateWork
, /* one-thread */ false );
2211 IOLockUnlock( gJobsLock
);
2214 bool IOService::willTerminate( IOService
* provider
, IOOptionBits options
)
2219 bool IOService::didTerminate( IOService
* provider
, IOOptionBits options
, bool * defer
)
2221 if( false == *defer
) {
2223 if( lockForArbitration( true )) {
2224 if( false == provider
->handleIsOpen( this ))
2225 scheduleStop( provider
);
2228 message( kIOMessageServiceIsRequestingClose
, provider
, (void *)(uintptr_t) options
);
2229 if( false == provider
->handleIsOpen( this ))
2230 scheduleStop( provider
);
2233 unlockForArbitration();
2240 void IOService::actionWillTerminate( IOService
* victim
, IOOptionBits options
,
2241 OSArray
* doPhase2List
,
2242 void *unused2 __unused
,
2243 void *unused3 __unused
)
2248 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2250 iter
= victim
->getClientIterator();
2252 while( (client
= (IOService
*) iter
->getNextObject())) {
2254 regID1
= client
->getRegistryEntryID();
2255 TLOG("%s[0x%qx]::willTerminate(%s[0x%qx], %08llx)\n",
2256 client
->getName(), regID1
,
2257 victim
->getName(), regID2
, (long long)options
);
2259 IOSERVICE_TERMINATE_WILL
,
2261 (uintptr_t) (regID1
>> 32),
2263 (uintptr_t) (regID2
>> 32));
2265 ok
= client
->willTerminate( victim
, options
);
2266 doPhase2List
->tailQ( client
);
2272 void IOService::actionDidTerminate( IOService
* victim
, IOOptionBits options
,
2273 void *unused1 __unused
, void *unused2 __unused
,
2274 void *unused3 __unused
)
2279 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2281 victim
->messageClients( kIOMessageServiceIsTerminated
, (void *)(uintptr_t) options
);
2283 iter
= victim
->getClientIterator();
2285 while( (client
= (IOService
*) iter
->getNextObject())) {
2287 regID1
= client
->getRegistryEntryID();
2288 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], %08llx)\n",
2289 client
->getName(), regID1
,
2290 victim
->getName(), regID2
, (long long)options
);
2292 client
->didTerminate( victim
, options
, &defer
);
2295 (defer
? IOSERVICE_TERMINATE_DID_DEFER
2296 : IOSERVICE_TERMINATE_DID
),
2298 (uintptr_t) (regID1
>> 32),
2300 (uintptr_t) (regID2
>> 32));
2302 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], defer %d)\n",
2303 client
->getName(), regID1
,
2304 victim
->getName(), regID2
, defer
);
2311 void IOService::actionWillStop( IOService
* victim
, IOOptionBits options
,
2312 void *unused1 __unused
, void *unused2 __unused
,
2313 void *unused3 __unused
)
2316 IOService
* provider
;
2318 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2320 iter
= victim
->getProviderIterator();
2322 while( (provider
= (IOService
*) iter
->getNextObject())) {
2324 regID1
= provider
->getRegistryEntryID();
2325 TLOG("%s[0x%qx]::willTerminate(%s[0x%qx], %08llx)\n",
2326 victim
->getName(), regID2
,
2327 provider
->getName(), regID1
, (long long)options
);
2329 IOSERVICE_TERMINATE_WILL
,
2331 (uintptr_t) (regID2
>> 32),
2333 (uintptr_t) (regID1
>> 32));
2335 ok
= victim
->willTerminate( provider
, options
);
2341 void IOService::actionDidStop( IOService
* victim
, IOOptionBits options
,
2342 void *unused1 __unused
, void *unused2 __unused
,
2343 void *unused3 __unused
)
2346 IOService
* provider
;
2348 uint64_t regID1
, regID2
= victim
->getRegistryEntryID();
2350 iter
= victim
->getProviderIterator();
2352 while( (provider
= (IOService
*) iter
->getNextObject())) {
2354 regID1
= provider
->getRegistryEntryID();
2355 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], %08llx)\n",
2356 victim
->getName(), regID2
,
2357 provider
->getName(), regID1
, (long long)options
);
2358 victim
->didTerminate( provider
, options
, &defer
);
2361 (defer
? IOSERVICE_TERMINATE_DID_DEFER
2362 : IOSERVICE_TERMINATE_DID
),
2364 (uintptr_t) (regID2
>> 32),
2366 (uintptr_t) (regID1
>> 32));
2368 TLOG("%s[0x%qx]::didTerminate(%s[0x%qx], defer %d)\n",
2369 victim
->getName(), regID2
,
2370 provider
->getName(), regID1
, defer
);
2377 void IOService::actionFinalize( IOService
* victim
, IOOptionBits options
,
2378 void *unused1 __unused
, void *unused2 __unused
,
2379 void *unused3 __unused
)
2381 uint64_t regID1
= victim
->getRegistryEntryID();
2382 TLOG("%s[0x%qx]::finalize(%08llx)\n", victim
->getName(), regID1
, (long long)options
);
2384 IOSERVICE_TERMINATE_FINALIZE
,
2386 (uintptr_t) (regID1
>> 32),
2389 victim
->finalize( options
);
2392 void IOService::actionStop( IOService
* provider
, IOService
* client
,
2393 void *unused1 __unused
, void *unused2 __unused
,
2394 void *unused3 __unused
)
2396 uint64_t regID1
= provider
->getRegistryEntryID();
2397 uint64_t regID2
= client
->getRegistryEntryID();
2399 TLOG("%s[0x%qx]::stop(%s[0x%qx])\n", client
->getName(), regID2
, provider
->getName(), regID1
);
2401 IOSERVICE_TERMINATE_STOP
,
2403 (uintptr_t) (regID1
>> 32),
2405 (uintptr_t) (regID2
>> 32));
2407 client
->stop( provider
);
2408 if( provider
->isOpen( client
))
2409 provider
->close( client
);
2411 TLOG("%s[0x%qx]::detach(%s[0x%qx])\n", client
->getName(), regID2
, provider
->getName(), regID1
);
2412 client
->detach( provider
);
2415 void IOService::terminateWorker( IOOptionBits options
)
2417 OSArray
* doPhase2List
;
2418 OSArray
* didPhase2List
;
2424 IOService
* provider
;
2430 options
|= kIOServiceRequired
;
2432 doPhase2List
= OSArray::withCapacity( 16 );
2433 didPhase2List
= OSArray::withCapacity( 16 );
2434 freeList
= OSSet::withCapacity( 16 );
2435 if( (0 == doPhase2List
) || (0 == didPhase2List
) || (0 == freeList
))
2439 workDone
= gIOTerminateWork
;
2441 while( (victim
= (IOService
*) gIOTerminatePhase2List
->getObject(0) )) {
2444 gIOTerminatePhase2List
->removeObject(0);
2445 IOLockUnlock( gJobsLock
);
2447 uint64_t regID1
= victim
->getRegistryEntryID();
2449 IOSERVICE_TERM_START_PHASE2
,
2451 (uintptr_t) (regID1
>> 32),
2457 doPhase2
= victim
->lockForArbitration( true );
2459 doPhase2
= (0 != (kIOServiceInactiveState
& victim
->__state
[0]));
2462 uint64_t regID1
= victim
->getRegistryEntryID();
2464 IOSERVICE_TERM_TRY_PHASE2
,
2466 (uintptr_t) (regID1
>> 32),
2467 (uintptr_t) victim
->__state
[1],
2470 doPhase2
= (0 == (victim
->__state
[1] & kIOServiceTermPhase2State
))
2471 && (0 == (victim
->__state
[1] & kIOServiceConfigState
));
2473 if (doPhase2
&& (iter
= victim
->getClientIterator())) {
2474 while (doPhase2
&& (client
= (IOService
*) iter
->getNextObject())) {
2475 doPhase2
= (0 == (client
->__state
[1] & kIOServiceStartState
));
2478 uint64_t regID1
= client
->getRegistryEntryID();
2480 IOSERVICE_TERM_UC_DEFER
,
2482 (uintptr_t) (regID1
>> 32),
2483 (uintptr_t) client
->__state
[1],
2485 TLOG("%s[0x%qx]::defer phase2(%s[0x%qx])\n",
2486 victim
->getName(), victim
->getRegistryEntryID(),
2487 client
->getName(), client
->getRegistryEntryID());
2493 victim
->__state
[1] |= kIOServiceTermPhase2State
;
2495 victim
->unlockForArbitration();
2499 if (kIOServiceNeedWillTerminate
& victim
->__state
[1]) {
2500 _workLoopAction( (IOWorkLoop::Action
) &actionWillStop
,
2501 victim
, (void *)(uintptr_t) options
, NULL
);
2504 if( 0 == victim
->getClient()) {
2505 // no clients - will go to finalize
2506 IOLockLock( gJobsLock
);
2507 gIOFinalizeList
->tailQ( victim
);
2508 IOLockUnlock( gJobsLock
);
2510 _workLoopAction( (IOWorkLoop::Action
) &actionWillTerminate
,
2511 victim
, (void *)(uintptr_t) options
, (void *)(uintptr_t) doPhase2List
);
2513 didPhase2List
->headQ( victim
);
2516 victim
= (IOService
*) doPhase2List
->getObject(0);
2519 doPhase2List
->removeObject(0);
2523 while( (victim
= (IOService
*) didPhase2List
->getObject(0)) ) {
2525 if( victim
->lockForArbitration( true )) {
2526 victim
->__state
[1] |= kIOServiceTermPhase3State
;
2527 victim
->unlockForArbitration();
2529 _workLoopAction( (IOWorkLoop::Action
) &actionDidTerminate
,
2530 victim
, (void *)(uintptr_t) options
);
2531 if (kIOServiceNeedWillTerminate
& victim
->__state
[1]) {
2532 _workLoopAction( (IOWorkLoop::Action
) &actionDidStop
,
2533 victim
, (void *)(uintptr_t) options
, NULL
);
2535 didPhase2List
->removeObject(0);
2537 IOLockLock( gJobsLock
);
2544 while( (victim
= (IOService
*) gIOFinalizeList
->getObject(0))) {
2546 IOLockUnlock( gJobsLock
);
2547 _workLoopAction( (IOWorkLoop::Action
) &actionFinalize
,
2548 victim
, (void *)(uintptr_t) options
);
2549 IOLockLock( gJobsLock
);
2551 freeList
->setObject( victim
);
2552 // safe if finalize list is append only
2553 gIOFinalizeList
->removeObject(0);
2557 (!doPhase3
) && (client
= (IOService
*) gIOStopList
->getObject(idx
)); ) {
2559 provider
= (IOService
*) gIOStopProviderList
->getObject(idx
);
2562 uint64_t regID1
= provider
->getRegistryEntryID();
2563 uint64_t regID2
= client
->getRegistryEntryID();
2565 if( !provider
->isChild( client
, gIOServicePlane
)) {
2566 // may be multiply queued - nop it
2567 TLOG("%s[0x%qx]::nop stop(%s[0x%qx])\n", client
->getName(), regID2
, provider
->getName(), regID1
);
2569 IOSERVICE_TERMINATE_STOP_NOP
,
2571 (uintptr_t) (regID1
>> 32),
2573 (uintptr_t) (regID2
>> 32));
2576 // a terminated client is not ready for stop if it has clients, skip it
2577 if( (kIOServiceInactiveState
& client
->__state
[0]) && client
->getClient()) {
2578 TLOG("%s[0x%qx]::defer stop(%s[0x%qx])\n",
2579 client
->getName(), regID2
,
2580 client
->getClient()->getName(), client
->getClient()->getRegistryEntryID());
2582 IOSERVICE_TERMINATE_STOP_DEFER
,
2584 (uintptr_t) (regID1
>> 32),
2586 (uintptr_t) (regID2
>> 32));
2592 IOLockUnlock( gJobsLock
);
2593 _workLoopAction( (IOWorkLoop::Action
) &actionStop
,
2594 provider
, (void *) client
);
2595 IOLockLock( gJobsLock
);
2596 // check the finalize list now
2600 freeList
->setObject( client
);
2601 freeList
->setObject( provider
);
2603 // safe if stop list is append only
2604 gIOStopList
->removeObject( idx
);
2605 gIOStopProviderList
->removeObject( idx
);
2609 } while( doPhase3
);
2611 gIOTerminateWork
-= workDone
;
2612 moreToDo
= (gIOTerminateWork
!= 0);
2615 TLOG("iokit terminate done, %d stops remain\n", gIOStopList
->getCount());
2617 IOSERVICE_TERMINATE_DONE
,
2618 (uintptr_t) gIOStopList
->getCount(), 0, 0, 0);
2621 } while( moreToDo
);
2623 IOLockUnlock( gJobsLock
);
2625 freeList
->release();
2626 doPhase2List
->release();
2627 didPhase2List
->release();
2629 IOLockLock( gJobsLock
);
2632 bool IOService::finalize( IOOptionBits options
)
2635 IOService
* provider
;
2636 uint64_t regID1
, regID2
= getRegistryEntryID();
2638 iter
= getProviderIterator();
2642 while( (provider
= (IOService
*) iter
->getNextObject())) {
2645 if( 0 == (__state
[1] & kIOServiceTermPhase3State
)) {
2646 /* we come down here on programmatic terminate */
2648 regID1
= provider
->getRegistryEntryID();
2649 TLOG("%s[0x%qx]::stop1(%s[0x%qx])\n", getName(), regID2
, provider
->getName(), regID1
);
2651 IOSERVICE_TERMINATE_STOP
,
2653 (uintptr_t) (regID1
>> 32),
2655 (uintptr_t) (regID2
>> 32));
2658 if( provider
->isOpen( this ))
2659 provider
->close( this );
2663 if( provider
->lockForArbitration( true )) {
2664 if( 0 == (provider
->__state
[1] & kIOServiceTermPhase3State
))
2665 scheduleStop( provider
);
2666 provider
->unlockForArbitration();
2683 void IOService::doServiceTerminate( IOOptionBits options
)
2687 // a method in case someone needs to override it
2688 bool IOService::terminateClient( IOService
* client
, IOOptionBits options
)
2692 if( client
->isParent( this, gIOServicePlane
, true))
2693 // we are the clients only provider
2694 ok
= client
->terminate( options
);
2701 bool IOService::terminate( IOOptionBits options
)
2703 options
|= kIOServiceTerminate
;
2705 return( terminatePhase1( options
));
2708 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2714 struct ServiceOpenMessageContext
2716 IOService
* service
;
2718 IOService
* excludeClient
;
2719 IOOptionBits options
;
2722 static void serviceOpenMessageApplier( OSObject
* object
, void * ctx
)
2724 ServiceOpenMessageContext
* context
= (ServiceOpenMessageContext
*) ctx
;
2726 if( object
!= context
->excludeClient
)
2727 context
->service
->messageClient( context
->type
, object
, (void *)(uintptr_t) context
->options
);
2730 bool IOService::open( IOService
* forClient
,
2731 IOOptionBits options
,
2735 ServiceOpenMessageContext context
;
2737 context
.service
= this;
2738 context
.type
= kIOMessageServiceIsAttemptingOpen
;
2739 context
.excludeClient
= forClient
;
2740 context
.options
= options
;
2742 applyToInterested( gIOGeneralInterest
,
2743 &serviceOpenMessageApplier
, &context
);
2745 if( false == lockForArbitration(false) )
2748 ok
= (0 == (__state
[0] & kIOServiceInactiveState
));
2750 ok
= handleOpen( forClient
, options
, arg
);
2752 unlockForArbitration();
2757 void IOService::close( IOService
* forClient
,
2758 IOOptionBits options
)
2763 lockForArbitration();
2765 wasClosed
= handleIsOpen( forClient
);
2767 handleClose( forClient
, options
);
2768 last
= (__state
[1] & kIOServiceTermPhase3State
);
2771 unlockForArbitration();
2774 forClient
->scheduleStop( this );
2776 else if( wasClosed
) {
2778 ServiceOpenMessageContext context
;
2780 context
.service
= this;
2781 context
.type
= kIOMessageServiceWasClosed
;
2782 context
.excludeClient
= forClient
;
2783 context
.options
= options
;
2785 applyToInterested( gIOGeneralInterest
,
2786 &serviceOpenMessageApplier
, &context
);
2790 bool IOService::isOpen( const IOService
* forClient
) const
2792 IOService
* self
= (IOService
*) this;
2795 self
->lockForArbitration();
2797 ok
= handleIsOpen( forClient
);
2799 self
->unlockForArbitration();
2804 bool IOService::handleOpen( IOService
* forClient
,
2805 IOOptionBits options
,
2810 ok
= (0 == __owner
);
2812 __owner
= forClient
;
2814 else if( options
& kIOServiceSeize
) {
2815 ok
= (kIOReturnSuccess
== messageClient( kIOMessageServiceIsRequestingClose
,
2816 __owner
, (void *)(uintptr_t) options
));
2817 if( ok
&& (0 == __owner
))
2818 __owner
= forClient
;
2825 void IOService::handleClose( IOService
* forClient
,
2826 IOOptionBits options
)
2828 if( __owner
== forClient
)
2832 bool IOService::handleIsOpen( const IOService
* forClient
) const
2835 return( __owner
== forClient
);
2837 return( __owner
!= forClient
);
2841 * Probing & starting
2843 static SInt32
IONotifyOrdering( const OSMetaClassBase
* inObj1
, const OSMetaClassBase
* inObj2
, void * ref
)
2845 const _IOServiceNotifier
* obj1
= (const _IOServiceNotifier
*) inObj1
;
2846 const _IOServiceNotifier
* obj2
= (const _IOServiceNotifier
*) inObj2
;
2854 val1
= obj1
->priority
;
2857 val2
= obj2
->priority
;
2859 return ( val1
- val2
);
2862 static SInt32
IOServiceObjectOrder( const OSObject
* entry
, void * ref
)
2864 OSDictionary
* dict
;
2865 IOService
* service
;
2866 _IOServiceNotifier
* notify
;
2867 OSSymbol
* key
= (OSSymbol
*) ref
;
2870 if( (dict
= OSDynamicCast( OSDictionary
, entry
)))
2871 offset
= OSDynamicCast(OSNumber
, dict
->getObject( key
));
2872 else if( (notify
= OSDynamicCast( _IOServiceNotifier
, entry
)))
2873 return( notify
->priority
);
2875 else if( (service
= OSDynamicCast( IOService
, entry
)))
2876 offset
= OSDynamicCast(OSNumber
, service
->getProperty( key
));
2883 return( (SInt32
) offset
->unsigned32BitValue());
2885 return( kIODefaultProbeScore
);
2888 SInt32
IOServiceOrdering( const OSMetaClassBase
* inObj1
, const OSMetaClassBase
* inObj2
, void * ref
)
2890 const OSObject
* obj1
= (const OSObject
*) inObj1
;
2891 const OSObject
* obj2
= (const OSObject
*) inObj2
;
2899 val1
= IOServiceObjectOrder( obj1
, ref
);
2902 val2
= IOServiceObjectOrder( obj2
, ref
);
2904 return ( val1
- val2
);
2907 IOService
* IOService::copyClientWithCategory( const OSSymbol
* category
)
2909 IOService
* service
= 0;
2911 const OSSymbol
* nextCat
;
2913 iter
= getClientIterator();
2915 while( (service
= (IOService
*) iter
->getNextObject())) {
2916 if( kIOServiceInactiveState
& service
->__state
[0])
2918 nextCat
= (const OSSymbol
*) OSDynamicCast( OSSymbol
,
2919 service
->getProperty( gIOMatchCategoryKey
));
2920 if( category
== nextCat
)
2931 IOService
* IOService::getClientWithCategory( const OSSymbol
* category
)
2934 service
= copyClientWithCategory(category
);
2940 bool IOService::invokeNotifer( _IOServiceNotifier
* notify
)
2942 _IOServiceNotifierInvocation invocation
;
2946 invocation
.thread
= current_thread();
2949 willNotify
= (0 != (kIOServiceNotifyEnable
& notify
->state
));
2952 queue_enter( ¬ify
->handlerInvocations
, &invocation
,
2953 _IOServiceNotifierInvocation
*, link
);
2959 ret
= (*notify
->handler
)(notify
->target
, notify
->ref
, this, notify
);
2962 queue_remove( ¬ify
->handlerInvocations
, &invocation
,
2963 _IOServiceNotifierInvocation
*, link
);
2964 if( kIOServiceNotifyWaiter
& notify
->state
) {
2965 notify
->state
&= ~kIOServiceNotifyWaiter
;
2966 WAKEUPNOTIFY( notify
);
2975 * Alloc and probe matching classes,
2976 * called on the provider instance
2979 void IOService::probeCandidates( OSOrderedSet
* matches
)
2981 OSDictionary
* match
= 0;
2984 IOService
* newInst
;
2985 OSDictionary
* props
;
2988 OSOrderedSet
* familyMatches
= 0;
2989 OSOrderedSet
* startList
;
2990 OSDictionary
* startDict
= 0;
2991 const OSSymbol
* category
;
2993 _IOServiceNotifier
* notify
;
2994 OSObject
* nextMatch
= 0;
2996 bool needReloc
= false;
3000 IOService
* client
= NULL
;
3004 while( !needReloc
&& (nextMatch
= matches
->getFirstObject())) {
3006 nextMatch
->retain();
3007 matches
->removeObject(nextMatch
);
3009 if( (notify
= OSDynamicCast( _IOServiceNotifier
, nextMatch
))) {
3011 lockForArbitration();
3012 if( 0 == (__state
[0] & kIOServiceInactiveState
))
3013 invokeNotifer( notify
);
3014 unlockForArbitration();
3015 nextMatch
->release();
3019 } else if( !(match
= OSDynamicCast( OSDictionary
, nextMatch
))) {
3020 nextMatch
->release();
3027 debugFlags
= getDebugFlags( match
);
3031 category
= OSDynamicCast( OSSymbol
,
3032 match
->getObject( gIOMatchCategoryKey
));
3034 category
= gIODefaultMatchCategoryKey
;
3036 if( (client
= copyClientWithCategory(category
)) ) {
3038 if( (debugFlags
& kIOLogMatch
) && (this != gIOResources
))
3039 LOG("%s: match category %s exists\n", getName(),
3040 category
->getCStringNoCopy());
3042 nextMatch
->release();
3051 // create a copy now in case its modified during matching
3052 props
= OSDictionary::withDictionary( match
, match
->getCount());
3055 props
->setCapacityIncrement(1);
3057 // check the nub matches
3058 if( false == matchPassive(props
, kIOServiceChangesOK
| kIOServiceClassDone
))
3061 // Check to see if driver reloc has been loaded.
3062 needReloc
= (false == gIOCatalogue
->isModuleLoaded( match
));
3065 if( debugFlags
& kIOLogCatalogue
)
3066 LOG("%s: stalling for module\n", getName());
3068 // If reloc hasn't been loaded, exit;
3069 // reprobing will occur after reloc has been loaded.
3073 // reorder on family matchPropertyTable score.
3074 if( 0 == familyMatches
)
3075 familyMatches
= OSOrderedSet::withCapacity( 1,
3076 IOServiceOrdering
, (void *) gIOProbeScoreKey
);
3078 familyMatches
->setObject( props
);
3083 nextMatch
->release();
3092 if( familyMatches
) {
3095 && (props
= (OSDictionary
*) familyMatches
->getFirstObject())) {
3098 familyMatches
->removeObject( props
);
3103 debugFlags
= getDebugFlags( props
);
3106 symbol
= OSDynamicCast( OSSymbol
,
3107 props
->getObject( gIOClassKey
));
3111 //IOLog("%s alloc (symbol %p props %p)\n", symbol->getCStringNoCopy(), OBFUSCATE(symbol), OBFUSCATE(props));
3113 // alloc the driver instance
3114 inst
= (IOService
*) OSMetaClass::allocClassWithName( symbol
);
3117 IOLog("Couldn't alloc class \"%s\"\n",
3118 symbol
->getCStringNoCopy());
3122 // init driver instance
3123 if( !(inst
->init( props
))) {
3125 if( debugFlags
& kIOLogStart
)
3126 IOLog("%s::init fails\n", symbol
->getCStringNoCopy());
3130 if( __state
[1] & kIOServiceSynchronousState
)
3131 inst
->__state
[1] |= kIOServiceSynchronousState
;
3133 // give the driver the default match category if not specified
3134 category
= OSDynamicCast( OSSymbol
,
3135 props
->getObject( gIOMatchCategoryKey
));
3137 category
= gIODefaultMatchCategoryKey
;
3138 inst
->setProperty( gIOMatchCategoryKey
, (OSObject
*) category
);
3139 // attach driver instance
3140 if( !(inst
->attach( this )))
3143 // pass in score from property table
3144 score
= familyMatches
->orderObject( props
);
3146 // & probe the new driver instance
3148 if( debugFlags
& kIOLogProbe
)
3149 LOG("%s::probe(%s)\n",
3150 inst
->getMetaClass()->getClassName(), getName());
3153 newInst
= inst
->probe( this, &score
);
3154 inst
->detach( this );
3157 if( debugFlags
& kIOLogProbe
)
3158 IOLog("%s::probe fails\n", symbol
->getCStringNoCopy());
3164 newPri
= OSNumber::withNumber( score
, 32 );
3166 newInst
->setProperty( gIOProbeScoreKey
, newPri
);
3170 // add to start list for the match category
3172 startDict
= OSDictionary::withCapacity( 1 );
3173 assert( startDict
);
3174 startList
= (OSOrderedSet
*)
3175 startDict
->getObject( category
);
3176 if( 0 == startList
) {
3177 startList
= OSOrderedSet::withCapacity( 1,
3178 IOServiceOrdering
, (void *) gIOProbeScoreKey
);
3179 if( startDict
&& startList
) {
3180 startDict
->setObject( category
, startList
);
3181 startList
->release();
3184 assert( startList
);
3186 startList
->setObject( newInst
);
3194 familyMatches
->release();
3198 // start the best (until success) of each category
3200 iter
= OSCollectionIterator::withCollection( startDict
);
3202 while( (category
= (const OSSymbol
*) iter
->getNextObject())) {
3204 startList
= (OSOrderedSet
*) startDict
->getObject( category
);
3205 assert( startList
);
3210 while( true // (!started)
3211 && (inst
= (IOService
*)startList
->getFirstObject())) {
3214 startList
->removeObject(inst
);
3217 debugFlags
= getDebugFlags( inst
->getPropertyTable() );
3219 if( debugFlags
& kIOLogStart
) {
3221 LOG( "match category exists, skipping " );
3222 LOG( "%s::start(%s) <%d>\n", inst
->getName(),
3223 getName(), inst
->getRetainCount());
3226 if( false == started
)
3227 started
= startCandidate( inst
);
3229 if( (debugFlags
& kIOLogStart
) && (false == started
))
3230 LOG( "%s::start(%s) <%d> failed\n", inst
->getName(), getName(),
3231 inst
->getRetainCount());
3240 // adjust the busy count by +1 if matching is stalled for a module,
3241 // or -1 if a previously stalled matching is complete.
3242 lockForArbitration();
3244 uint64_t regID
= getRegistryEntryID();
3247 adjBusy
= (__state
[1] & kIOServiceModuleStallState
) ? 0 : 1;
3251 IOSERVICE_MODULESTALL
,
3253 (uintptr_t) (regID
>> 32),
3257 __state
[1] |= kIOServiceModuleStallState
;
3260 } else if( __state
[1] & kIOServiceModuleStallState
) {
3263 IOSERVICE_MODULEUNSTALL
,
3265 (uintptr_t) (regID
>> 32),
3269 __state
[1] &= ~kIOServiceModuleStallState
;
3273 _adjustBusy( adjBusy
);
3274 unlockForArbitration();
3277 startDict
->release();
3281 * Start a previously attached & probed instance,
3282 * called on exporting object instance
3285 bool IOService::startCandidate( IOService
* service
)
3289 ok
= service
->attach( this );
3293 if (this != gIOResources
)
3295 // stall for any nub resources
3297 // stall for any driver resources
3298 service
->checkResources();
3301 AbsoluteTime startTime
;
3302 AbsoluteTime endTime
;
3305 if (kIOLogStart
& gIOKitDebug
)
3306 clock_get_uptime(&startTime
);
3308 ok
= service
->start(this);
3310 if (kIOLogStart
& gIOKitDebug
)
3312 clock_get_uptime(&endTime
);
3314 if (CMP_ABSOLUTETIME(&endTime
, &startTime
) > 0)
3316 SUB_ABSOLUTETIME(&endTime
, &startTime
);
3317 absolutetime_to_nanoseconds(endTime
, &nano
);
3318 if (nano
> 500000000ULL)
3319 IOLog("%s::start took %ld ms\n", service
->getName(), (long)(UInt32
)(nano
/ 1000000ULL));
3323 service
->detach( this );
3328 void IOService::publishResource( const char * key
, OSObject
* value
)
3330 const OSSymbol
* sym
;
3332 if( (sym
= OSSymbol::withCString( key
))) {
3333 publishResource( sym
, value
);
3338 void IOService::publishResource( const OSSymbol
* key
, OSObject
* value
)
3341 value
= (OSObject
*) gIOServiceKey
;
3343 gIOResources
->setProperty( key
, value
);
3345 if( IORecursiveLockHaveLock( gNotificationLock
))
3348 gIOResourceGenerationCount
++;
3349 gIOResources
->registerService();
3352 bool IOService::addNeededResource( const char * key
)
3354 OSObject
* resourcesProp
;
3359 resourcesProp
= getProperty( gIOResourceMatchKey
);
3361 newKey
= OSString::withCString( key
);
3362 if( (0 == resourcesProp
) || (0 == newKey
))
3365 set
= OSDynamicCast( OSSet
, resourcesProp
);
3367 set
= OSSet::withCapacity( 1 );
3369 set
->setObject( resourcesProp
);
3374 set
->setObject( newKey
);
3376 ret
= setProperty( gIOResourceMatchKey
, set
);
3382 bool IOService::checkResource( OSObject
* matching
)
3385 OSDictionary
* table
;
3387 if( (str
= OSDynamicCast( OSString
, matching
))) {
3388 if( gIOResources
->getProperty( str
))
3393 table
= resourceMatching( str
);
3394 else if( (table
= OSDynamicCast( OSDictionary
, matching
)))
3397 IOLog("%s: Can't match using: %s\n", getName(),
3398 matching
->getMetaClass()->getClassName());
3399 /* false would stall forever */
3403 if( gIOKitDebug
& kIOLogConfig
)
3404 LOG("config(%p): stalling %s\n", OBFUSCATE(IOThreadSelf()), getName());
3406 waitForService( table
);
3408 if( gIOKitDebug
& kIOLogConfig
)
3409 LOG("config(%p): waking\n", OBFUSCATE(IOThreadSelf()) );
3414 bool IOService::checkResources( void )
3416 OSObject
* resourcesProp
;
3421 resourcesProp
= getProperty( gIOResourceMatchKey
);
3422 if( 0 == resourcesProp
)
3425 if( (set
= OSDynamicCast( OSSet
, resourcesProp
))) {
3427 iter
= OSCollectionIterator::withCollection( set
);
3429 while( ok
&& (resourcesProp
= iter
->getNextObject()) )
3430 ok
= checkResource( resourcesProp
);
3435 ok
= checkResource( resourcesProp
);
3441 void _IOConfigThread::configThread( void )
3443 _IOConfigThread
* inst
;
3446 if( !(inst
= new _IOConfigThread
))
3451 if (KERN_SUCCESS
!= kernel_thread_start(&_IOConfigThread::main
, inst
, &unused
))
3464 void _IOConfigThread::free( void )
3466 thread_deallocate(current_thread());
3470 void IOService::doServiceMatch( IOOptionBits options
)
3472 _IOServiceNotifier
* notify
;
3474 OSOrderedSet
* matches
;
3475 SInt32 catalogGeneration
;
3476 bool keepGuessing
= true;
3477 bool reRegistered
= true;
3480 // job->nub->deliverNotification( gIOPublishNotification,
3481 // kIOServiceRegisteredState, 0xffffffff );
3483 while( keepGuessing
) {
3485 matches
= gIOCatalogue
->findDrivers( this, &catalogGeneration
);
3486 // the matches list should always be created by findDrivers()
3489 lockForArbitration();
3490 if( 0 == (__state
[0] & kIOServiceFirstPublishState
)) {
3491 getMetaClass()->addInstance(this);
3492 deliverNotification( gIOFirstPublishNotification
,
3493 kIOServiceFirstPublishState
, 0xffffffff );
3496 __state
[1] &= ~kIOServiceNeedConfigState
;
3497 __state
[1] |= kIOServiceConfigState
;
3498 didRegister
= (0 == (kIOServiceRegisteredState
& __state
[0]));
3499 __state
[0] |= kIOServiceRegisteredState
;
3501 keepGuessing
&= (0 == (__state
[0] & kIOServiceInactiveState
));
3502 if (reRegistered
&& keepGuessing
) {
3503 iter
= OSCollectionIterator::withCollection( (OSOrderedSet
*)
3504 gNotifications
->getObject( gIOPublishNotification
) );
3506 while((notify
= (_IOServiceNotifier
*)
3507 iter
->getNextObject())) {
3509 if( matchPassive(notify
->matching
, 0)
3510 && (kIOServiceNotifyEnable
& notify
->state
))
3511 matches
->setObject( notify
);
3518 unlockForArbitration();
3520 if (keepGuessing
&& matches
->getCount() && (kIOReturnSuccess
== getResources()))
3521 probeCandidates( matches
);
3526 lockForArbitration();
3527 reRegistered
= (0 != (__state
[1] & kIOServiceNeedConfigState
));
3529 (reRegistered
|| (catalogGeneration
!=
3530 gIOCatalogue
->getGenerationCount()))
3531 && (0 == (__state
[0] & kIOServiceInactiveState
));
3534 unlockForArbitration();
3537 if( (0 == (__state
[0] & kIOServiceInactiveState
))
3538 && (0 == (__state
[1] & kIOServiceModuleStallState
)) ) {
3539 deliverNotification( gIOMatchedNotification
,
3540 kIOServiceMatchedState
, 0xffffffff );
3541 if( 0 == (__state
[0] & kIOServiceFirstMatchState
))
3542 deliverNotification( gIOFirstMatchNotification
,
3543 kIOServiceFirstMatchState
, 0xffffffff );
3546 __state
[1] &= ~kIOServiceConfigState
;
3547 scheduleTerminatePhase2();
3550 unlockForArbitration();
3553 UInt32
IOService::_adjustBusy( SInt32 delta
)
3558 bool wasQuiet
, nowQuiet
, needWake
;
3561 result
= __state
[1] & kIOServiceBusyStateMask
;
3565 next
->lockForArbitration();
3566 count
= next
->__state
[1] & kIOServiceBusyStateMask
;
3567 wasQuiet
= (0 == count
);
3568 if (((delta
< 0) && wasQuiet
) || ((delta
> 0) && (kIOServiceBusyMax
== count
)))
3569 OSReportWithBacktrace("%s: bad busy count (%d,%d)\n", next
->getName(), count
, delta
);
3572 next
->__state
[1] = (next
->__state
[1] & ~kIOServiceBusyStateMask
) | count
;
3573 nowQuiet
= (0 == count
);
3574 needWake
= (0 != (kIOServiceBusyWaiterState
& next
->__state
[1]));
3577 next
->__state
[1] &= ~kIOServiceBusyWaiterState
;
3578 IOLockLock( gIOServiceBusyLock
);
3579 thread_wakeup( (event_t
) next
);
3580 IOLockUnlock( gIOServiceBusyLock
);
3583 next
->unlockForArbitration();
3585 if( (wasQuiet
|| nowQuiet
) ) {
3587 uint64_t regID
= next
->getRegistryEntryID();
3589 ((wasQuiet
/*nowBusy*/) ? IOSERVICE_BUSY
: IOSERVICE_NONBUSY
),
3591 (uintptr_t) (regID
>> 32),
3597 next
->__timeBusy
= mach_absolute_time();
3601 next
->__accumBusy
+= mach_absolute_time() - next
->__timeBusy
;
3602 next
->__timeBusy
= 0;
3605 MessageClientsContext context
;
3607 context
.service
= next
;
3608 context
.type
= kIOMessageServiceBusyStateChange
;
3609 context
.argument
= (void *) wasQuiet
; /*nowBusy*/
3610 context
.argSize
= 0;
3612 applyToInterestNotifiers( next
, gIOBusyInterest
,
3613 &messageClientsApplier
, &context
);
3616 if( nowQuiet
&& (next
== gIOServiceRoot
)) {
3617 OSKext::considerUnloads();
3618 IOServiceTrace(IOSERVICE_REGISTRY_QUIET
, 0, 0, 0, 0);
3623 delta
= nowQuiet
? -1 : +1;
3625 } while( (wasQuiet
|| nowQuiet
) && (next
= next
->getProvider()));
3630 void IOService::adjustBusy( SInt32 delta
)
3632 lockForArbitration();
3633 _adjustBusy( delta
);
3634 unlockForArbitration();
3637 uint64_t IOService::getAccumulatedBusyTime( void )
3639 uint64_t accumBusy
= __accumBusy
;
3640 uint64_t timeBusy
= __timeBusy
;
3645 accumBusy
= __accumBusy
;
3646 timeBusy
= __timeBusy
;
3648 accumBusy
+= mach_absolute_time() - timeBusy
;
3650 while (timeBusy
!= __timeBusy
);
3652 absolutetime_to_nanoseconds(*(AbsoluteTime
*)&accumBusy
, &nano
);
3657 UInt32
IOService::getBusyState( void )
3659 return( __state
[1] & kIOServiceBusyStateMask
);
3662 IOReturn
IOService::waitForState( UInt32 mask
, UInt32 value
,
3663 mach_timespec_t
* timeout
)
3665 panic("waitForState");
3666 return (kIOReturnUnsupported
);
3669 IOReturn
IOService::waitForState( UInt32 mask
, UInt32 value
,
3673 int waitResult
= THREAD_AWAKENED
;
3674 bool computeDeadline
= true;
3675 AbsoluteTime abstime
;
3678 lockForArbitration();
3679 IOLockLock( gIOServiceBusyLock
);
3680 wait
= (value
!= (__state
[1] & mask
));
3682 __state
[1] |= kIOServiceBusyWaiterState
;
3683 unlockForArbitration();
3684 if( timeout
!= UINT64_MAX
) {
3685 if( computeDeadline
) {
3686 AbsoluteTime nsinterval
;
3687 nanoseconds_to_absolutetime(timeout
, &nsinterval
);
3688 clock_absolutetime_interval_to_deadline(nsinterval
, &abstime
);
3689 computeDeadline
= false;
3691 assert_wait_deadline((event_t
)this, THREAD_UNINT
, __OSAbsoluteTime(abstime
));
3694 assert_wait((event_t
)this, THREAD_UNINT
);
3696 unlockForArbitration();
3697 IOLockUnlock( gIOServiceBusyLock
);
3699 waitResult
= thread_block(THREAD_CONTINUE_NULL
);
3701 } while( wait
&& (waitResult
!= THREAD_TIMED_OUT
));
3703 if( waitResult
== THREAD_TIMED_OUT
)
3704 return( kIOReturnTimeout
);
3706 return( kIOReturnSuccess
);
3709 IOReturn
IOService::waitQuiet( uint64_t timeout
)
3712 ret
= waitForState( kIOServiceBusyStateMask
, 0, timeout
);
3713 if ((kIOReturnTimeout
== ret
) && (timeout
>= 41000000000) && (kIOWaitQuietPanics
& gIOKitDebug
))
3715 IORegistryIterator
* iter
;
3717 OSOrderedSet
* leaves
;
3719 IOService
* nextParent
;
3725 string
= IONew(char, len
);
3727 iter
= IORegistryIterator::iterateOver(this, gIOServicePlane
, kIORegistryIterateRecursively
);
3728 leaves
= OSOrderedSet::withCapacity(4);
3729 if (iter
) set
= iter
->iterateAll();
3730 if (string
&& leaves
&& set
)
3732 while ((next
= (IOService
*) set
->getLastObject()))
3734 if (next
->getBusyState())
3736 leaves
->setObject(next
);
3738 while ((nextParent
= nextParent
->getProvider()))
3740 set
->removeObject(nextParent
);
3741 leaves
->removeObject(nextParent
);
3744 set
->removeObject(next
);
3747 while ((next
= (IOService
*) leaves
->getLastObject()))
3749 l
= snprintf(s
, len
, "%s'%s'", ((s
== string
) ? "" : ", "), next
->getName());
3750 if (l
>= len
) break;
3753 leaves
->removeObject(next
);
3756 panic("busy timeout(%llds): %s", timeout
/ 1000000000ULL, string
? string
: "");
3761 IOReturn
IOService::waitQuiet( mach_timespec_t
* timeout
)
3767 timeoutNS
= timeout
->tv_sec
;
3768 timeoutNS
*= kSecondScale
;
3769 timeoutNS
+= timeout
->tv_nsec
;
3772 timeoutNS
= UINT64_MAX
;
3774 return (waitQuiet(timeoutNS
));
3777 bool IOService::serializeProperties( OSSerialize
* s
) const
3780 ((IOService
*)this)->setProperty( ((IOService
*)this)->__state
,
3781 sizeof( __state
), "__state");
3783 return( super::serializeProperties(s
) );
3787 void _IOConfigThread::main(void * arg
, wait_result_t result
)
3789 _IOConfigThread
* self
= (_IOConfigThread
*) arg
;
3790 _IOServiceJob
* job
;
3794 thread_precedence_policy_data_t precedence
= { -1 };
3796 kr
= thread_policy_set(current_thread(),
3797 THREAD_PRECEDENCE_POLICY
,
3798 (thread_policy_t
) &precedence
,
3799 THREAD_PRECEDENCE_POLICY_COUNT
);
3800 if (KERN_SUCCESS
!= kr
)
3801 IOLog("thread_policy_set(%d)\n", kr
);
3807 semaphore_wait( gJobsSemaphore
);
3809 IOTakeLock( gJobsLock
);
3810 job
= (_IOServiceJob
*) gJobs
->getFirstObject();
3812 gJobs
->removeObject(job
);
3815 // gNumConfigThreads--; // we're out of service
3816 gNumWaitingThreads
--; // we're out of service
3818 IOUnlock( gJobsLock
);
3824 if( gIOKitDebug
& kIOLogConfig
)
3825 LOG("config(%p): starting on %s, %d\n",
3826 OBFUSCATE(IOThreadSelf()), job
->nub
->getName(), job
->type
);
3828 switch( job
->type
) {
3831 nub
->doServiceMatch( job
->options
);
3835 LOG("config(%p): strange type (%d)\n",
3836 OBFUSCATE(IOThreadSelf()), job
->type
);
3843 IOTakeLock( gJobsLock
);
3844 alive
= (gOutstandingJobs
> gNumWaitingThreads
);
3846 gNumWaitingThreads
++; // back in service
3847 // gNumConfigThreads++;
3849 if( 0 == --gNumConfigThreads
) {
3850 // IOLog("MATCH IDLE\n");
3851 IOLockWakeup( gJobsLock
, (event_t
) &gNumConfigThreads
, /* one-thread */ false );
3854 IOUnlock( gJobsLock
);
3859 if( gIOKitDebug
& kIOLogConfig
)
3860 LOG("config(%p): terminating\n", OBFUSCATE(IOThreadSelf()) );
3865 IOReturn
IOService::waitMatchIdle( UInt32 msToWait
)
3868 int waitResult
= THREAD_AWAKENED
;
3869 bool computeDeadline
= true;
3870 AbsoluteTime deadline
;
3872 IOLockLock( gJobsLock
);
3874 wait
= (0 != gNumConfigThreads
);
3877 if( computeDeadline
) {
3878 clock_interval_to_deadline(
3879 msToWait
, kMillisecondScale
, &deadline
);
3880 computeDeadline
= false;
3882 waitResult
= IOLockSleepDeadline( gJobsLock
, &gNumConfigThreads
,
3883 deadline
, THREAD_UNINT
);
3885 waitResult
= IOLockSleep( gJobsLock
, &gNumConfigThreads
,
3889 } while( wait
&& (waitResult
!= THREAD_TIMED_OUT
));
3890 IOLockUnlock( gJobsLock
);
3892 if( waitResult
== THREAD_TIMED_OUT
)
3893 return( kIOReturnTimeout
);
3895 return( kIOReturnSuccess
);
3898 void IOService::cpusRunning(void)
3900 gCPUsRunning
= true;
3903 void _IOServiceJob::pingConfig( _IOServiceJob
* job
)
3910 IOTakeLock( gJobsLock
);
3913 gJobs
->setLastObject( job
);
3915 count
= gNumWaitingThreads
;
3916 // if( gNumConfigThreads) count++;// assume we're called from a config thread
3918 create
= ( (gOutstandingJobs
> count
)
3919 && ((gNumConfigThreads
< kMaxConfigThreads
)
3920 || (job
->nub
== gIOResources
)
3923 gNumConfigThreads
++;
3924 gNumWaitingThreads
++;
3927 IOUnlock( gJobsLock
);
3932 if( gIOKitDebug
& kIOLogConfig
)
3933 LOG("config(%d): creating\n", gNumConfigThreads
- 1);
3934 _IOConfigThread::configThread();
3937 semaphore_signal( gJobsSemaphore
);
3940 struct IOServiceMatchContext
3942 OSDictionary
* table
;
3950 bool IOService::instanceMatch(const OSObject
* entry
, void * context
)
3952 IOServiceMatchContext
* ctx
= (typeof(ctx
)) context
;
3953 IOService
* service
= (typeof(service
)) entry
;
3954 OSDictionary
* table
= ctx
->table
;
3955 uint32_t options
= ctx
->options
;
3956 uint32_t state
= ctx
->state
;
3963 match
= ((state
== (state
& service
->__state
[0]))
3964 && (0 == (service
->__state
[0] & kIOServiceInactiveState
)));
3966 ctx
->count
+= table
->getCount();
3967 match
= service
->matchInternal(table
, options
, &done
);
3974 if ((kIONotifyOnce
& options
) && (ctx
->done
== ctx
->count
))
3977 ctx
->result
= service
;
3980 else if (!ctx
->result
)
3982 ctx
->result
= OSSet::withObjects((const OSObject
**) &service
, 1, 1);
3986 ((OSSet
*)ctx
->result
)->setObject(service
);
3991 // internal - call with gNotificationLock
3992 OSObject
* IOService::copyExistingServices( OSDictionary
* matching
,
3993 IOOptionBits inState
, IOOptionBits options
)
3995 OSObject
* current
= 0;
3997 IOService
* service
;
4005 OSSerialize
* s
= OSSerialize::withCapacity(128);
4006 matching
->serialize(s
);
4009 if((obj
= matching
->getObject(gIOProviderClassKey
))
4011 && gIOResourcesKey
->isEqualTo(obj
)
4012 && (service
= gIOResources
))
4014 if( (inState
== (service
->__state
[0] & inState
))
4015 && (0 == (service
->__state
[0] & kIOServiceInactiveState
))
4016 && service
->matchPassive(matching
, options
))
4018 if( options
& kIONotifyOnce
)
4024 current
= OSSet::withObjects((const OSObject
**) &service
, 1, 1 );
4029 IOServiceMatchContext ctx
;
4030 ctx
.table
= matching
;
4031 ctx
.state
= inState
;
4034 ctx
.options
= options
;
4037 if ((str
= OSDynamicCast(OSString
, obj
)))
4039 const OSSymbol
* sym
= OSSymbol::withString(str
);
4040 OSMetaClass::applyToInstancesOfClassName(sym
, instanceMatch
, &ctx
);
4045 IOService::gMetaClass
.applyToInstances(instanceMatch
, &ctx
);
4049 current
= ctx
.result
;
4051 options
|= kIOServiceInternalDone
| kIOServiceClassDone
;
4052 if (current
&& (ctx
.done
!= ctx
.count
))
4055 source
= OSDynamicCast(OSSet
, current
);
4057 while ((service
= (IOService
*) source
->getAnyObject()))
4059 if (service
->matchPassive(matching
, options
))
4061 if( options
& kIONotifyOnce
)
4069 ((OSSet
*)current
)->setObject( service
);
4073 current
= OSSet::withObjects(
4074 (const OSObject
**) &service
, 1, 1 );
4077 source
->removeObject(service
);
4085 OSObject
* _current
= 0;
4087 iter
= IORegistryIterator::iterateOver( gIOServicePlane
,
4088 kIORegistryIterateRecursively
);
4092 while( (service
= (IOService
*) iter
->getNextObject())) {
4093 if( (inState
== (service
->__state
[0] & inState
))
4094 && (0 == (service
->__state
[0] & kIOServiceInactiveState
))
4095 && service
->matchPassive(matching
, 0)) {
4097 if( options
& kIONotifyOnce
) {
4103 ((OSSet
*)_current
)->setObject( service
);
4105 _current
= OSSet::withObjects(
4106 (const OSObject
**) &service
, 1, 1 );
4109 } while( !service
&& !iter
->isValid());
4114 if ( ((current
!= 0) != (_current
!= 0))
4115 || (current
&& _current
&& !current
->isEqualTo(_current
)))
4117 OSSerialize
* s1
= OSSerialize::withCapacity(128);
4118 OSSerialize
* s2
= OSSerialize::withCapacity(128);
4119 current
->serialize(s1
);
4120 _current
->serialize(s2
);
4121 kprintf("**mismatch** %p %p\n%s\n%s\n%s\n", OBFUSCATE(current
),
4122 OBFUSCATE(_current
), s
->text(), s1
->text(), s2
->text());
4127 if (_current
) _current
->release();
4133 if( current
&& (0 == (options
& (kIONotifyOnce
| kIOServiceExistingSet
)))) {
4134 iter
= OSCollectionIterator::withCollection( (OSSet
*)current
);
4143 OSIterator
* IOService::getMatchingServices( OSDictionary
* matching
)
4147 // is a lock even needed?
4150 iter
= (OSIterator
*) copyExistingServices( matching
,
4151 kIOServiceMatchedState
);
4158 IOService
* IOService::copyMatchingService( OSDictionary
* matching
)
4160 IOService
* service
;
4162 // is a lock even needed?
4165 service
= (IOService
*) copyExistingServices( matching
,
4166 kIOServiceMatchedState
, kIONotifyOnce
);
4173 struct _IOServiceMatchingNotificationHandlerRef
4175 IOServiceNotificationHandler handler
;
4179 static bool _IOServiceMatchingNotificationHandler( void * target
, void * refCon
,
4180 IOService
* newService
,
4181 IONotifier
* notifier
)
4183 return ((*((_IOServiceNotifier
*) notifier
)->compatHandler
)(target
, refCon
, newService
));
4186 // internal - call with gNotificationLock
4187 IONotifier
* IOService::setNotification(
4188 const OSSymbol
* type
, OSDictionary
* matching
,
4189 IOServiceMatchingNotificationHandler handler
, void * target
, void * ref
,
4192 _IOServiceNotifier
* notify
= 0;
4198 notify
= new _IOServiceNotifier
;
4199 if( notify
&& !notify
->init()) {
4205 notify
->handler
= handler
;
4206 notify
->target
= target
;
4207 notify
->matching
= matching
;
4209 if (handler
== &_IOServiceMatchingNotificationHandler
)
4211 notify
->compatHandler
= ((_IOServiceMatchingNotificationHandlerRef
*)ref
)->handler
;
4212 notify
->ref
= ((_IOServiceMatchingNotificationHandlerRef
*)ref
)->ref
;
4216 notify
->priority
= priority
;
4217 notify
->state
= kIOServiceNotifyEnable
;
4218 queue_init( ¬ify
->handlerInvocations
);
4222 if( 0 == (set
= (OSOrderedSet
*) gNotifications
->getObject( type
))) {
4223 set
= OSOrderedSet::withCapacity( 1,
4224 IONotifyOrdering
, 0 );
4226 gNotifications
->setObject( type
, set
);
4230 notify
->whence
= set
;
4232 set
->setObject( notify
);
4238 // internal - call with gNotificationLock
4239 IONotifier
* IOService::doInstallNotification(
4240 const OSSymbol
* type
, OSDictionary
* matching
,
4241 IOServiceMatchingNotificationHandler handler
,
4242 void * target
, void * ref
,
4243 SInt32 priority
, OSIterator
** existing
)
4246 IONotifier
* notify
;
4247 IOOptionBits inState
;
4252 if( type
== gIOPublishNotification
)
4253 inState
= kIOServiceRegisteredState
;
4255 else if( type
== gIOFirstPublishNotification
)
4256 inState
= kIOServiceFirstPublishState
;
4258 else if( (type
== gIOMatchedNotification
)
4259 || (type
== gIOFirstMatchNotification
))
4260 inState
= kIOServiceMatchedState
;
4261 else if( type
== gIOTerminatedNotification
)
4266 notify
= setNotification( type
, matching
, handler
, target
, ref
, priority
);
4269 // get the current set
4270 exist
= (OSIterator
*) copyExistingServices( matching
, inState
);
4279 #if !defined(__LP64__)
4280 IONotifier
* IOService::installNotification(const OSSymbol
* type
, OSDictionary
* matching
,
4281 IOServiceNotificationHandler handler
,
4282 void * target
, void * refCon
,
4283 SInt32 priority
, OSIterator
** existing
)
4285 IONotifier
* result
;
4286 _IOServiceMatchingNotificationHandlerRef ref
;
4287 ref
.handler
= handler
;
4290 result
= (_IOServiceNotifier
*) installNotification( type
, matching
,
4291 &_IOServiceMatchingNotificationHandler
,
4292 target
, &ref
, priority
, existing
);
4294 matching
->release();
4298 #endif /* !defined(__LP64__) */
4301 IONotifier
* IOService::installNotification(
4302 const OSSymbol
* type
, OSDictionary
* matching
,
4303 IOServiceMatchingNotificationHandler handler
,
4304 void * target
, void * ref
,
4305 SInt32 priority
, OSIterator
** existing
)
4307 IONotifier
* notify
;
4311 notify
= doInstallNotification( type
, matching
, handler
, target
, ref
,
4312 priority
, existing
);
4319 IONotifier
* IOService::addNotification(
4320 const OSSymbol
* type
, OSDictionary
* matching
,
4321 IOServiceNotificationHandler handler
,
4322 void * target
, void * refCon
,
4325 IONotifier
* result
;
4326 _IOServiceMatchingNotificationHandlerRef ref
;
4328 ref
.handler
= handler
;
4331 result
= addMatchingNotification(type
, matching
, &_IOServiceMatchingNotificationHandler
,
4332 target
, &ref
, priority
);
4335 matching
->release();
4340 IONotifier
* IOService::addMatchingNotification(
4341 const OSSymbol
* type
, OSDictionary
* matching
,
4342 IOServiceMatchingNotificationHandler handler
,
4343 void * target
, void * ref
,
4346 OSIterator
* existing
= NULL
;
4347 _IOServiceNotifier
* notify
;
4350 notify
= (_IOServiceNotifier
*) installNotification( type
, matching
,
4351 handler
, target
, ref
, priority
, &existing
);
4353 // send notifications for existing set
4356 notify
->retain(); // in case handler remove()s
4357 while( (next
= (IOService
*) existing
->getNextObject())) {
4359 next
->lockForArbitration();
4360 if( 0 == (next
->__state
[0] & kIOServiceInactiveState
))
4361 next
->invokeNotifer( notify
);
4362 next
->unlockForArbitration();
4365 existing
->release();
4371 bool IOService::syncNotificationHandler(
4372 void * /* target */, void * ref
,
4373 IOService
* newService
,
4374 IONotifier
* notifier
)
4378 if (!*((IOService
**) ref
))
4380 newService
->retain();
4381 (*(IOService
**) ref
) = newService
;
4389 IOService
* IOService::waitForMatchingService( OSDictionary
* matching
,
4392 IONotifier
* notify
= 0;
4393 // priority doesn't help us much since we need a thread wakeup
4394 SInt32 priority
= 0;
4405 result
= (IOService
*) copyExistingServices( matching
,
4406 kIOServiceMatchedState
, kIONotifyOnce
);
4409 notify
= IOService::setNotification( gIOMatchedNotification
, matching
,
4410 &IOService::syncNotificationHandler
, (void *) 0,
4411 &result
, priority
);
4414 if (UINT64_MAX
!= timeout
)
4416 AbsoluteTime deadline
;
4417 nanoseconds_to_absolutetime(timeout
, &deadline
);
4418 clock_absolutetime_interval_to_deadline(deadline
, &deadline
);
4419 SLEEPNOTIFYTO(&result
, deadline
);
4423 SLEEPNOTIFY(&result
);
4431 notify
->remove(); // dequeues
4436 IOService
* IOService::waitForService( OSDictionary
* matching
,
4437 mach_timespec_t
* timeout
)
4444 timeoutNS
= timeout
->tv_sec
;
4445 timeoutNS
*= kSecondScale
;
4446 timeoutNS
+= timeout
->tv_nsec
;
4449 timeoutNS
= UINT64_MAX
;
4451 result
= waitForMatchingService(matching
, timeoutNS
);
4453 matching
->release();
4460 void IOService::deliverNotification( const OSSymbol
* type
,
4461 IOOptionBits orNewState
, IOOptionBits andNewState
)
4463 _IOServiceNotifier
* notify
;
4465 OSArray
* willSend
= 0;
4467 lockForArbitration();
4469 if( (0 == (__state
[0] & kIOServiceInactiveState
))
4470 || (type
== gIOTerminatedNotification
)) {
4474 iter
= OSCollectionIterator::withCollection( (OSOrderedSet
*)
4475 gNotifications
->getObject( type
) );
4478 while( (notify
= (_IOServiceNotifier
*) iter
->getNextObject())) {
4480 if( matchPassive(notify
->matching
, 0)
4481 && (kIOServiceNotifyEnable
& notify
->state
)) {
4483 willSend
= OSArray::withCapacity(8);
4485 willSend
->setObject( notify
);
4491 __state
[0] = (__state
[0] | orNewState
) & andNewState
;
4497 for( unsigned int idx
= 0;
4498 (notify
= (_IOServiceNotifier
*) willSend
->getObject(idx
));
4500 invokeNotifer( notify
);
4502 willSend
->release();
4504 unlockForArbitration();
4507 IOOptionBits
IOService::getState( void ) const
4509 return( __state
[0] );
4513 * Helpers to make matching objects for simple cases
4516 OSDictionary
* IOService::serviceMatching( const OSString
* name
,
4517 OSDictionary
* table
)
4520 const OSString
* str
;
4522 str
= OSSymbol::withString(name
);
4527 table
= OSDictionary::withCapacity( 2 );
4529 table
->setObject(gIOProviderClassKey
, (OSObject
*)str
);
4535 OSDictionary
* IOService::serviceMatching( const char * name
,
4536 OSDictionary
* table
)
4538 const OSString
* str
;
4540 str
= OSSymbol::withCString( name
);
4544 table
= serviceMatching( str
, table
);
4549 OSDictionary
* IOService::nameMatching( const OSString
* name
,
4550 OSDictionary
* table
)
4553 table
= OSDictionary::withCapacity( 2 );
4555 table
->setObject( gIONameMatchKey
, (OSObject
*)name
);
4560 OSDictionary
* IOService::nameMatching( const char * name
,
4561 OSDictionary
* table
)
4563 const OSString
* str
;
4565 str
= OSSymbol::withCString( name
);
4569 table
= nameMatching( str
, table
);
4574 OSDictionary
* IOService::resourceMatching( const OSString
* str
,
4575 OSDictionary
* table
)
4577 table
= serviceMatching( gIOResourcesKey
, table
);
4579 table
->setObject( gIOResourceMatchKey
, (OSObject
*) str
);
4584 OSDictionary
* IOService::resourceMatching( const char * name
,
4585 OSDictionary
* table
)
4587 const OSSymbol
* str
;
4589 str
= OSSymbol::withCString( name
);
4593 table
= resourceMatching( str
, table
);
4599 OSDictionary
* IOService::propertyMatching( const OSSymbol
* key
, const OSObject
* value
,
4600 OSDictionary
* table
)
4602 OSDictionary
* properties
;
4604 properties
= OSDictionary::withCapacity( 2 );
4607 properties
->setObject( key
, value
);
4610 table
= OSDictionary::withCapacity( 2 );
4612 table
->setObject( gIOPropertyMatchKey
, properties
);
4614 properties
->release();
4619 OSDictionary
* IOService::registryEntryIDMatching( uint64_t entryID
,
4620 OSDictionary
* table
)
4624 num
= OSNumber::withNumber( entryID
, 64 );
4629 table
= OSDictionary::withCapacity( 2 );
4631 table
->setObject( gIORegistryEntryIDKey
, num
);
4641 * _IOServiceNotifier
4644 // wait for all threads, other than the current one,
4645 // to exit the handler
4647 void _IOServiceNotifier::wait()
4649 _IOServiceNotifierInvocation
* next
;
4654 queue_iterate( &handlerInvocations
, next
,
4655 _IOServiceNotifierInvocation
*, link
) {
4656 if( next
->thread
!= current_thread() ) {
4662 state
|= kIOServiceNotifyWaiter
;
4669 void _IOServiceNotifier::free()
4671 assert( queue_empty( &handlerInvocations
));
4675 void _IOServiceNotifier::remove()
4680 whence
->removeObject( (OSObject
*) this );
4684 matching
->release();
4688 state
&= ~kIOServiceNotifyEnable
;
4697 bool _IOServiceNotifier::disable()
4703 ret
= (0 != (kIOServiceNotifyEnable
& state
));
4704 state
&= ~kIOServiceNotifyEnable
;
4713 void _IOServiceNotifier::enable( bool was
)
4717 state
|= kIOServiceNotifyEnable
;
4719 state
&= ~kIOServiceNotifyEnable
;
4727 IOService
* IOResources::resources( void )
4731 inst
= new IOResources
;
4732 if( inst
&& !inst
->init()) {
4740 bool IOResources::init( OSDictionary
* dictionary
)
4742 // Do super init first
4743 if ( !super::init() )
4746 // Allow PAL layer to publish a value
4747 const char *property_name
;
4750 pal_get_resource_property( &property_name
, &property_value
);
4752 if( property_name
) {
4754 const OSSymbol
* sym
;
4756 if( (num
= OSNumber::withNumber(property_value
, 32)) != 0 ) {
4757 if( (sym
= OSSymbol::withCString( property_name
)) != 0 ) {
4758 this->setProperty( sym
, num
);
4768 IOReturn
IOResources::newUserClient(task_t owningTask
, void * securityID
,
4769 UInt32 type
, OSDictionary
* properties
,
4770 IOUserClient
** handler
)
4772 return( kIOReturnUnsupported
);
4775 IOWorkLoop
* IOResources::getWorkLoop() const
4777 // If we are the resource root
4778 // then use the platform's workloop
4779 if (this == (IOResources
*) gIOResources
)
4780 return getPlatform()->getWorkLoop();
4782 return IOService::getWorkLoop();
4785 bool IOResources::matchPropertyTable( OSDictionary
* table
)
4793 prop
= table
->getObject( gIOResourceMatchKey
);
4794 str
= OSDynamicCast( OSString
, prop
);
4796 ok
= (0 != getProperty( str
));
4798 else if( (set
= OSDynamicCast( OSSet
, prop
))) {
4800 iter
= OSCollectionIterator::withCollection( set
);
4802 while( ok
&& (str
= OSDynamicCast( OSString
, iter
->getNextObject()) ))
4803 ok
= (0 != getProperty( str
));
4812 void IOService::consoleLockTimer(thread_call_param_t p0
, thread_call_param_t p1
)
4814 IOService::updateConsoleUsers(NULL
, 0);
4817 void IOService::updateConsoleUsers(OSArray
* consoleUsers
, IOMessage systemMessage
)
4819 IORegistryEntry
* regEntry
;
4820 OSObject
* locked
= kOSBooleanFalse
;
4823 OSDictionary
* user
;
4824 static IOMessage sSystemPower
;
4826 regEntry
= IORegistryEntry::getRegistryRoot();
4828 if (!gIOChosenEntry
)
4829 gIOChosenEntry
= IORegistryEntry::fromPath("/chosen", gIODTPlane
);
4831 IOLockLock(gIOConsoleUsersLock
);
4835 sSystemPower
= systemMessage
;
4837 if ((kIOMessageSystemHasPoweredOn
== systemMessage
) && IOHibernateWasScreenLocked())
4839 locked
= kOSBooleanTrue
;
4841 #endif /* HIBERNATION */
4847 gIOConsoleLoggedIn
= false;
4849 (user
= OSDynamicCast(OSDictionary
, consoleUsers
->getObject(idx
)));
4852 gIOConsoleLoggedIn
|= ((kOSBooleanTrue
== user
->getObject(gIOConsoleSessionOnConsoleKey
))
4853 && (kOSBooleanTrue
== user
->getObject(gIOConsoleSessionLoginDoneKey
)));
4856 num
= OSDynamicCast(OSNumber
, user
->getObject(gIOConsoleSessionScreenLockedTimeKey
));
4859 gIOConsoleLockTime
= num
? num
->unsigned32BitValue() : 0;
4862 if (!gIOConsoleLoggedIn
4863 || (kIOMessageSystemWillSleep
== sSystemPower
)
4864 || (kIOMessageSystemPagingOff
== sSystemPower
))
4866 locked
= kOSBooleanTrue
;
4868 else if (gIOConsoleLockTime
)
4871 clock_usec_t microsecs
;
4873 clock_get_calendar_microtime(&now
, µsecs
);
4874 if (gIOConsoleLockTime
> now
)
4876 AbsoluteTime deadline
;
4877 clock_interval_to_deadline(gIOConsoleLockTime
- now
, kSecondScale
, &deadline
);
4878 thread_call_enter_delayed(gIOConsoleLockCallout
, deadline
);
4882 locked
= kOSBooleanTrue
;
4886 publish
= (consoleUsers
|| (locked
!= regEntry
->getProperty(gIOConsoleLockedKey
)));
4889 regEntry
->setProperty(gIOConsoleLockedKey
, locked
);
4892 regEntry
->setProperty(gIOConsoleUsersKey
, consoleUsers
);
4894 OSIncrementAtomic( &gIOConsoleUsersSeed
);
4900 if (locked
== kOSBooleanTrue
) gIOScreenLockState
= kIOScreenLockLocked
;
4901 else if (gIOConsoleLockTime
) gIOScreenLockState
= kIOScreenLockUnlocked
;
4902 else gIOScreenLockState
= kIOScreenLockNoLock
;
4903 gIOChosenEntry
->setProperty(kIOScreenLockStateKey
, &gIOScreenLockState
, sizeof(gIOScreenLockState
));
4905 #endif /* HIBERNATION */
4907 IOLockUnlock(gIOConsoleUsersLock
);
4911 publishResource( gIOConsoleUsersSeedKey
, gIOConsoleUsersSeedValue
);
4913 MessageClientsContext context
;
4915 context
.service
= getServiceRoot();
4916 context
.type
= kIOMessageConsoleSecurityChange
;
4917 context
.argument
= (void *) regEntry
;
4918 context
.argSize
= 0;
4920 applyToInterestNotifiers(getServiceRoot(), gIOConsoleSecurityInterest
,
4921 &messageClientsApplier
, &context
);
4925 IOReturn
IOResources::setProperties( OSObject
* properties
)
4928 const OSSymbol
* key
;
4929 OSDictionary
* dict
;
4930 OSCollectionIterator
* iter
;
4932 err
= IOUserClient::clientHasPrivilege(current_task(), kIOClientPrivilegeAdministrator
);
4933 if ( kIOReturnSuccess
!= err
)
4936 dict
= OSDynamicCast(OSDictionary
, properties
);
4938 return( kIOReturnBadArgument
);
4940 iter
= OSCollectionIterator::withCollection( dict
);
4942 return( kIOReturnBadArgument
);
4944 while( (key
= OSDynamicCast(OSSymbol
, iter
->getNextObject())))
4946 if (gIOConsoleUsersKey
== key
) do
4948 OSArray
* consoleUsers
;
4949 consoleUsers
= OSDynamicCast(OSArray
, dict
->getObject(key
));
4952 IOService::updateConsoleUsers(consoleUsers
, 0);
4956 publishResource( key
, dict
->getObject(key
) );
4961 return( kIOReturnSuccess
);
4965 * Helpers for matching dictionaries.
4966 * Keys existing in matching are checked in properties.
4967 * Keys may be a string or OSCollection of IOStrings
4970 bool IOService::compareProperty( OSDictionary
* matching
,
4976 value
= matching
->getObject( key
);
4978 ok
= value
->isEqualTo( getProperty( key
));
4986 bool IOService::compareProperty( OSDictionary
* matching
,
4987 const OSString
* key
)
4992 value
= matching
->getObject( key
);
4994 ok
= value
->isEqualTo( getProperty( key
));
5001 bool IOService::compareProperties( OSDictionary
* matching
,
5002 OSCollection
* keys
)
5004 OSCollectionIterator
* iter
;
5005 const OSString
* key
;
5008 if( !matching
|| !keys
)
5011 iter
= OSCollectionIterator::withCollection( keys
);
5014 while( ok
&& (key
= OSDynamicCast( OSString
, iter
->getNextObject())))
5015 ok
= compareProperty( matching
, key
);
5019 keys
->release(); // !! consume a ref !!
5024 /* Helper to add a location matching dict to the table */
5026 OSDictionary
* IOService::addLocation( OSDictionary
* table
)
5028 OSDictionary
* dict
;
5033 dict
= OSDictionary::withCapacity( 1 );
5035 table
->setObject( gIOLocationMatchKey
, dict
);
5043 * Go looking for a provider to match a location dict.
5046 IOService
* IOService::matchLocation( IOService
* /* client */ )
5050 parent
= getProvider();
5053 parent
= parent
->matchLocation( this );
5058 bool IOService::matchInternal(OSDictionary
* table
, uint32_t options
, uint32_t * did
)
5063 IORegistryEntry
* entry
;
5066 bool changesOK
= (0 != (kIOServiceChangesOK
& options
));
5072 count
= table
->getCount();
5074 str
= OSDynamicCast(OSString
, table
->getObject(gIOProviderClassKey
));
5077 match
= ((kIOServiceClassDone
& options
) || (0 != metaCast(str
)));
5079 match
= (0 != metaCast( str
));
5080 if ((kIOServiceClassDone
& options
) && !match
) panic("classDone");
5082 if ((!match
) || (done
== count
)) break;
5085 obj
= table
->getObject( gIONameMatchKey
);
5088 match
= compareNames( obj
, changesOK
? &matched
: 0 );
5090 if( changesOK
&& matched
) {
5091 // leave a hint as to which name matched
5092 table
->setObject( gIONameMatchedKey
, matched
);
5095 if (done
== count
) break;
5098 str
= OSDynamicCast( OSString
, table
->getObject( gIOLocationMatchKey
));
5101 const OSSymbol
* sym
;
5104 sym
= copyLocation();
5106 match
= sym
->isEqualTo( str
);
5109 if ((!match
) || (done
== count
)) break;
5112 obj
= table
->getObject( gIOPropertyMatchKey
);
5115 OSDictionary
* dict
;
5116 OSDictionary
* nextDict
;
5120 dict
= dictionaryWithProperties();
5122 nextDict
= OSDynamicCast( OSDictionary
, obj
);
5126 iter
= OSCollectionIterator::withCollection(
5127 OSDynamicCast(OSCollection
, obj
));
5130 || (iter
&& (0 != (nextDict
= OSDynamicCast(OSDictionary
,
5131 iter
->getNextObject()))))) {
5132 match
= dict
->isEqualTo( nextDict
, nextDict
);
5141 if ((!match
) || (done
== count
)) break;
5144 str
= OSDynamicCast( OSString
, table
->getObject( gIOPathMatchKey
));
5147 entry
= IORegistryEntry::fromPath( str
->getCStringNoCopy() );
5148 match
= (this == entry
);
5151 if ((!match
) || (done
== count
)) break;
5154 num
= OSDynamicCast( OSNumber
, table
->getObject( gIORegistryEntryIDKey
));
5157 match
= (getRegistryEntryID() == num
->unsigned64BitValue());
5158 if ((!match
) || (done
== count
)) break;
5161 num
= OSDynamicCast( OSNumber
, table
->getObject( gIOMatchedServiceCountKey
));
5165 IOService
* service
= 0;
5166 UInt32 serviceCount
= 0;
5169 iter
= getClientIterator();
5171 while( (service
= (IOService
*) iter
->getNextObject())) {
5172 if( kIOServiceInactiveState
& service
->__state
[0])
5174 if( 0 == service
->getProperty( gIOMatchCategoryKey
))
5180 match
= (serviceCount
== num
->unsigned32BitValue());
5181 if ((!match
) || (done
== count
)) break;
5184 #define propMatch(key) \
5185 obj = table->getObject(key); \
5190 prop = copyProperty(key); \
5191 match = obj->isEqualTo(prop); \
5192 if (prop) prop->release(); \
5193 if ((!match) || (done == count)) break; \
5195 propMatch(kIOBSDNameKey
)
5196 propMatch(kIOBSDMajorKey
)
5197 propMatch(kIOBSDMinorKey
)
5198 propMatch(kIOBSDUnitKey
)
5203 if (did
) *did
= done
;
5207 bool IOService::passiveMatch( OSDictionary
* table
, bool changesOK
)
5209 return (matchPassive(table
, changesOK
? kIOServiceChangesOK
: 0));
5212 bool IOService::matchPassive(OSDictionary
* table
, uint32_t options
)
5215 OSDictionary
* nextTable
;
5219 bool matchParent
= false;
5226 OSDictionary
* root
= table
;
5234 count
= table
->getCount();
5235 if (!(kIOServiceInternalDone
& options
))
5237 match
= where
->matchInternal(table
, options
, &done
);
5238 // don't call family if we've done all the entries in the table
5239 if ((!match
) || (done
== count
)) break;
5242 // pass in score from property table
5243 score
= IOServiceObjectOrder( table
, (void *) gIOProbeScoreKey
);
5245 // do family specific matching
5246 match
= where
->matchPropertyTable( table
, &score
);
5250 if( kIOLogMatch
& getDebugFlags( table
))
5251 LOG("%s: family specific matching fails\n", where
->getName());
5256 if (kIOServiceChangesOK
& options
) {
5258 newPri
= OSNumber::withNumber( score
, 32 );
5260 table
->setObject( gIOProbeScoreKey
, newPri
);
5266 matchParent
= false;
5268 nextTable
= OSDynamicCast(OSDictionary
,
5269 table
->getObject( gIOParentMatchKey
));
5271 // look for a matching entry anywhere up to root
5278 table
= OSDynamicCast(OSDictionary
,
5279 table
->getObject( gIOLocationMatchKey
));
5281 // look for a matching entry at matchLocation()
5283 where
= where
->getProvider();
5284 if (where
&& (where
= where
->matchLocation(where
))) continue;
5290 while( matchParent
&& (!match
) && (where
= where
->getProvider()) );
5295 OSSerialize
* s
= OSSerialize::withCapacity(128);
5297 kprintf("parent match 0x%llx, %d,\n%s\n", getRegistryEntryID(), match
, s
->text());
5306 IOReturn
IOService::newUserClient( task_t owningTask
, void * securityID
,
5307 UInt32 type
, OSDictionary
* properties
,
5308 IOUserClient
** handler
)
5310 const OSSymbol
*userClientClass
= 0;
5311 IOUserClient
*client
;
5314 if (kIOReturnSuccess
== newUserClient( owningTask
, securityID
, type
, handler
))
5315 return kIOReturnSuccess
;
5317 // First try my own properties for a user client class name
5318 temp
= getProperty(gIOUserClientClassKey
);
5320 if (OSDynamicCast(OSSymbol
, temp
))
5321 userClientClass
= (const OSSymbol
*) temp
;
5322 else if (OSDynamicCast(OSString
, temp
)) {
5323 userClientClass
= OSSymbol::withString((OSString
*) temp
);
5324 if (userClientClass
)
5325 setProperty(kIOUserClientClassKey
,
5326 (OSObject
*) userClientClass
);
5330 // Didn't find one so lets just bomb out now without further ado.
5331 if (!userClientClass
)
5332 return kIOReturnUnsupported
;
5334 // This reference is consumed by the IOServiceOpen call
5335 temp
= OSMetaClass::allocClassWithName(userClientClass
);
5337 return kIOReturnNoMemory
;
5339 if (OSDynamicCast(IOUserClient
, temp
))
5340 client
= (IOUserClient
*) temp
;
5343 return kIOReturnUnsupported
;
5346 if ( !client
->initWithTask(owningTask
, securityID
, type
, properties
) ) {
5348 return kIOReturnBadArgument
;
5351 if ( !client
->attach(this) ) {
5353 return kIOReturnUnsupported
;
5356 if ( !client
->start(this) ) {
5357 client
->detach(this);
5359 return kIOReturnUnsupported
;
5363 return kIOReturnSuccess
;
5366 IOReturn
IOService::newUserClient( task_t owningTask
, void * securityID
,
5367 UInt32 type
, IOUserClient
** handler
)
5369 return( kIOReturnUnsupported
);
5372 IOReturn
IOService::requestProbe( IOOptionBits options
)
5374 return( kIOReturnUnsupported
);
5378 * Convert an IOReturn to text. Subclasses which add additional
5379 * IOReturn's should override this method and call
5380 * super::stringFromReturn if the desired value is not found.
5383 const char * IOService::stringFromReturn( IOReturn rtn
)
5385 static const IONamedValue IOReturn_values
[] = {
5386 {kIOReturnSuccess
, "success" },
5387 {kIOReturnError
, "general error" },
5388 {kIOReturnNoMemory
, "memory allocation error" },
5389 {kIOReturnNoResources
, "resource shortage" },
5390 {kIOReturnIPCError
, "Mach IPC failure" },
5391 {kIOReturnNoDevice
, "no such device" },
5392 {kIOReturnNotPrivileged
, "privilege violation" },
5393 {kIOReturnBadArgument
, "invalid argument" },
5394 {kIOReturnLockedRead
, "device is read locked" },
5395 {kIOReturnLockedWrite
, "device is write locked" },
5396 {kIOReturnExclusiveAccess
, "device is exclusive access" },
5397 {kIOReturnBadMessageID
, "bad IPC message ID" },
5398 {kIOReturnUnsupported
, "unsupported function" },
5399 {kIOReturnVMError
, "virtual memory error" },
5400 {kIOReturnInternalError
, "internal driver error" },
5401 {kIOReturnIOError
, "I/O error" },
5402 {kIOReturnCannotLock
, "cannot acquire lock" },
5403 {kIOReturnNotOpen
, "device is not open" },
5404 {kIOReturnNotReadable
, "device is not readable" },
5405 {kIOReturnNotWritable
, "device is not writeable" },
5406 {kIOReturnNotAligned
, "alignment error" },
5407 {kIOReturnBadMedia
, "media error" },
5408 {kIOReturnStillOpen
, "device is still open" },
5409 {kIOReturnRLDError
, "rld failure" },
5410 {kIOReturnDMAError
, "DMA failure" },
5411 {kIOReturnBusy
, "device is busy" },
5412 {kIOReturnTimeout
, "I/O timeout" },
5413 {kIOReturnOffline
, "device is offline" },
5414 {kIOReturnNotReady
, "device is not ready" },
5415 {kIOReturnNotAttached
, "device/channel is not attached" },
5416 {kIOReturnNoChannels
, "no DMA channels available" },
5417 {kIOReturnNoSpace
, "no space for data" },
5418 {kIOReturnPortExists
, "device port already exists" },
5419 {kIOReturnCannotWire
, "cannot wire physical memory" },
5420 {kIOReturnNoInterrupt
, "no interrupt attached" },
5421 {kIOReturnNoFrames
, "no DMA frames enqueued" },
5422 {kIOReturnMessageTooLarge
, "message is too large" },
5423 {kIOReturnNotPermitted
, "operation is not permitted" },
5424 {kIOReturnNoPower
, "device is without power" },
5425 {kIOReturnNoMedia
, "media is not present" },
5426 {kIOReturnUnformattedMedia
, "media is not formatted" },
5427 {kIOReturnUnsupportedMode
, "unsupported mode" },
5428 {kIOReturnUnderrun
, "data underrun" },
5429 {kIOReturnOverrun
, "data overrun" },
5430 {kIOReturnDeviceError
, "device error" },
5431 {kIOReturnNoCompletion
, "no completion routine" },
5432 {kIOReturnAborted
, "operation was aborted" },
5433 {kIOReturnNoBandwidth
, "bus bandwidth would be exceeded" },
5434 {kIOReturnNotResponding
, "device is not responding" },
5435 {kIOReturnInvalid
, "unanticipated driver error" },
5439 return IOFindNameForValue(rtn
, IOReturn_values
);
5443 * Convert an IOReturn to an errno.
5445 int IOService::errnoFromReturn( IOReturn rtn
)
5447 if (unix_err(err_get_code(rtn
)) == rtn
)
5448 return err_get_code(rtn
);
5452 case kIOReturnSuccess
:
5454 case kIOReturnNoMemory
:
5456 case kIOReturnNoDevice
:
5458 case kIOReturnVMError
:
5460 case kIOReturnNotPermitted
:
5462 case kIOReturnNotPrivileged
:
5464 case kIOReturnIOError
:
5466 case kIOReturnNotWritable
:
5468 case kIOReturnBadArgument
:
5470 case kIOReturnUnsupported
:
5474 case kIOReturnNoPower
:
5476 case kIOReturnDeviceError
:
5478 case kIOReturnTimeout
:
5480 case kIOReturnMessageTooLarge
:
5482 case kIOReturnNoSpace
:
5484 case kIOReturnCannotLock
:
5488 case kIOReturnBadMessageID
:
5489 case kIOReturnNoCompletion
:
5490 case kIOReturnNotAligned
:
5492 case kIOReturnNotReady
:
5494 case kIOReturnRLDError
:
5496 case kIOReturnPortExists
:
5497 case kIOReturnStillOpen
:
5499 case kIOReturnExclusiveAccess
:
5500 case kIOReturnLockedRead
:
5501 case kIOReturnLockedWrite
:
5502 case kIOReturnNotOpen
:
5503 case kIOReturnNotReadable
:
5505 case kIOReturnCannotWire
:
5506 case kIOReturnNoResources
:
5508 case kIOReturnAborted
:
5509 case kIOReturnOffline
:
5510 case kIOReturnNotResponding
:
5512 case kIOReturnBadMedia
:
5513 case kIOReturnNoMedia
:
5514 case kIOReturnNotAttached
:
5515 case kIOReturnUnformattedMedia
:
5516 return(ENXIO
); // (media error)
5517 case kIOReturnDMAError
:
5518 case kIOReturnOverrun
:
5519 case kIOReturnUnderrun
:
5520 return(EIO
); // (transfer error)
5521 case kIOReturnNoBandwidth
:
5522 case kIOReturnNoChannels
:
5523 case kIOReturnNoFrames
:
5524 case kIOReturnNoInterrupt
:
5525 return(EIO
); // (hardware error)
5526 case kIOReturnError
:
5527 case kIOReturnInternalError
:
5528 case kIOReturnInvalid
:
5529 return(EIO
); // (generic error)
5530 case kIOReturnIPCError
:
5531 return(EIO
); // (ipc error)
5533 return(EIO
); // (all other errors)
5537 IOReturn
IOService::message( UInt32 type
, IOService
* provider
,
5541 * Generic entry point for calls from the provider. A return value of
5542 * kIOReturnSuccess indicates that the message was received, and where
5543 * applicable, that it was successful.
5546 return kIOReturnUnsupported
;
5553 IOItemCount
IOService::getDeviceMemoryCount( void )
5558 array
= OSDynamicCast( OSArray
, getProperty( gIODeviceMemoryKey
));
5560 count
= array
->getCount();
5567 IODeviceMemory
* IOService::getDeviceMemoryWithIndex( unsigned int index
)
5570 IODeviceMemory
* range
;
5572 array
= OSDynamicCast( OSArray
, getProperty( gIODeviceMemoryKey
));
5574 range
= (IODeviceMemory
*) array
->getObject( index
);
5581 IOMemoryMap
* IOService::mapDeviceMemoryWithIndex( unsigned int index
,
5582 IOOptionBits options
)
5584 IODeviceMemory
* range
;
5587 range
= getDeviceMemoryWithIndex( index
);
5589 map
= range
->map( options
);
5596 OSArray
* IOService::getDeviceMemory( void )
5598 return( OSDynamicCast( OSArray
, getProperty( gIODeviceMemoryKey
)));
5602 void IOService::setDeviceMemory( OSArray
* array
)
5604 setProperty( gIODeviceMemoryKey
, array
);
5608 * For machines where the transfers on an I/O bus can stall because
5609 * the CPU is in an idle mode, These APIs allow a driver to specify
5610 * the maximum bus stall that they can handle. 0 indicates no limit.
5613 setCPUSnoopDelay(UInt32 __unused ns
)
5615 #if defined(__i386__) || defined(__x86_64__)
5616 ml_set_maxsnoop(ns
);
5617 #endif /* defined(__i386__) || defined(__x86_64__) */
5623 #if defined(__i386__) || defined(__x86_64__)
5624 return ml_get_maxsnoop();
5627 #endif /* defined(__i386__) || defined(__x86_64__) */
5630 #if defined(__i386__) || defined(__x86_64__)
5632 requireMaxCpuDelay(IOService
* service
, UInt32 ns
, UInt32 delayType
)
5634 static const UInt kNoReplace
= -1U; // Must be an illegal index
5635 UInt replace
= kNoReplace
;
5636 bool setCpuDelay
= false;
5638 IORecursiveLockLock(sCpuDelayLock
);
5640 UInt count
= sCpuDelayData
->getLength() / sizeof(CpuDelayEntry
);
5641 CpuDelayEntry
*entries
= (CpuDelayEntry
*) sCpuDelayData
->getBytesNoCopy();
5642 IOService
* holder
= NULL
;
5645 const CpuDelayEntry ne
= {service
, ns
, delayType
};
5647 // Set maximum delay.
5648 for (UInt i
= 0; i
< count
; i
++) {
5649 IOService
*thisService
= entries
[i
].fService
;
5650 bool sameType
= (delayType
== entries
[i
].fDelayType
);
5651 if ((service
== thisService
) && sameType
)
5653 else if (!thisService
) {
5654 if (kNoReplace
== replace
)
5657 else if (sameType
) {
5658 const UInt32 thisMax
= entries
[i
].fMaxDelay
;
5662 holder
= thisService
;
5668 if (kNoReplace
== replace
)
5669 sCpuDelayData
->appendBytes(&ne
, sizeof(ne
));
5671 entries
[replace
] = ne
;
5674 ns
= -1U; // Set to max unsigned, i.e. no restriction
5676 for (UInt i
= 0; i
< count
; i
++) {
5677 // Clear a maximum delay.
5678 IOService
*thisService
= entries
[i
].fService
;
5679 if (thisService
&& (delayType
== entries
[i
].fDelayType
)) {
5680 UInt32 thisMax
= entries
[i
].fMaxDelay
;
5681 if (service
== thisService
)
5683 else if (thisMax
< ns
) {
5685 holder
= thisService
;
5690 // Check if entry found
5691 if (kNoReplace
!= replace
) {
5692 entries
[replace
].fService
= 0; // Null the entry
5699 if (holder
&& debug_boot_arg
) {
5700 strlcpy(sCPULatencyHolderName
[delayType
], holder
->getName(), sizeof(sCPULatencyHolderName
[delayType
]));
5703 // Must be safe to call from locked context
5704 if (delayType
== kCpuDelayBusStall
)
5706 ml_set_maxbusdelay(ns
);
5708 else if (delayType
== kCpuDelayInterrupt
)
5710 ml_set_maxintdelay(ns
);
5712 sCPULatencyHolder
[delayType
]->setValue(holder
? holder
->getRegistryEntryID() : 0);
5713 sCPULatencySet
[delayType
]->setValue(ns
);
5715 OSArray
* handlers
= sCpuLatencyHandlers
[delayType
];
5717 if (handlers
) for (unsigned int idx
= 0;
5718 (target
= (IOService
*) handlers
->getObject(idx
));
5721 target
->callPlatformFunction(sCPULatencyFunctionName
[delayType
], false,
5722 (void *) (uintptr_t) ns
, holder
,
5727 IORecursiveLockUnlock(sCpuDelayLock
);
5731 setLatencyHandler(UInt32 delayType
, IOService
* target
, bool enable
)
5733 IOReturn result
= kIOReturnNotFound
;
5737 IORecursiveLockLock(sCpuDelayLock
);
5741 if (enable
&& !sCpuLatencyHandlers
[delayType
])
5742 sCpuLatencyHandlers
[delayType
] = OSArray::withCapacity(4);
5743 array
= sCpuLatencyHandlers
[delayType
];
5746 idx
= array
->getNextIndexOfObject(target
, 0);
5751 array
->removeObject(idx
);
5752 result
= kIOReturnSuccess
;
5758 result
= kIOReturnExclusiveAccess
;
5761 array
->setObject(target
);
5763 UInt count
= sCpuDelayData
->getLength() / sizeof(CpuDelayEntry
);
5764 CpuDelayEntry
*entries
= (CpuDelayEntry
*) sCpuDelayData
->getBytesNoCopy();
5765 UInt32 ns
= -1U; // Set to max unsigned, i.e. no restriction
5766 IOService
* holder
= NULL
;
5768 for (UInt i
= 0; i
< count
; i
++) {
5769 if (entries
[i
].fService
5770 && (delayType
== entries
[i
].fDelayType
)
5771 && (entries
[i
].fMaxDelay
< ns
)) {
5772 ns
= entries
[i
].fMaxDelay
;
5773 holder
= entries
[i
].fService
;
5776 target
->callPlatformFunction(sCPULatencyFunctionName
[delayType
], false,
5777 (void *) (uintptr_t) ns
, holder
,
5779 result
= kIOReturnSuccess
;
5784 IORecursiveLockUnlock(sCpuDelayLock
);
5789 #endif /* defined(__i386__) || defined(__x86_64__) */
5792 requireMaxBusStall(UInt32 __unused ns
)
5794 #if defined(__i386__) || defined(__x86_64__)
5795 requireMaxCpuDelay(this, ns
, kCpuDelayBusStall
);
5800 requireMaxInterruptDelay(uint32_t __unused ns
)
5802 #if defined(__i386__) || defined(__x86_64__)
5803 requireMaxCpuDelay(this, ns
, kCpuDelayInterrupt
);
5811 IOReturn
IOService::resolveInterrupt(IOService
*nub
, int source
)
5813 IOInterruptController
*interruptController
;
5816 OSSymbol
*interruptControllerName
;
5818 IOInterruptSource
*interruptSources
;
5820 // Get the parents list from the nub.
5821 array
= OSDynamicCast(OSArray
, nub
->getProperty(gIOInterruptControllersKey
));
5822 if (array
== 0) return kIOReturnNoResources
;
5824 // Allocate space for the IOInterruptSources if needed... then return early.
5825 if (nub
->_interruptSources
== 0) {
5826 numSources
= array
->getCount();
5827 interruptSources
= (IOInterruptSource
*)IOMalloc(numSources
* sizeof(IOInterruptSource
));
5828 if (interruptSources
== 0) return kIOReturnNoMemory
;
5830 bzero(interruptSources
, numSources
* sizeof(IOInterruptSource
));
5832 nub
->_numInterruptSources
= numSources
;
5833 nub
->_interruptSources
= interruptSources
;
5834 return kIOReturnSuccess
;
5837 interruptControllerName
= OSDynamicCast(OSSymbol
,array
->getObject(source
));
5838 if (interruptControllerName
== 0) return kIOReturnNoResources
;
5840 interruptController
= getPlatform()->lookUpInterruptController(interruptControllerName
);
5841 if (interruptController
== 0) return kIOReturnNoResources
;
5843 // Get the interrupt numbers from the nub.
5844 array
= OSDynamicCast(OSArray
, nub
->getProperty(gIOInterruptSpecifiersKey
));
5845 if (array
== 0) return kIOReturnNoResources
;
5846 data
= OSDynamicCast(OSData
, array
->getObject(source
));
5847 if (data
== 0) return kIOReturnNoResources
;
5849 // Set the interruptController and interruptSource in the nub's table.
5850 interruptSources
= nub
->_interruptSources
;
5851 interruptSources
[source
].interruptController
= interruptController
;
5852 interruptSources
[source
].vectorData
= data
;
5854 return kIOReturnSuccess
;
5857 IOReturn
IOService::lookupInterrupt(int source
, bool resolve
, IOInterruptController
**interruptController
)
5861 /* Make sure the _interruptSources are set */
5862 if (_interruptSources
== 0) {
5863 ret
= resolveInterrupt(this, source
);
5864 if (ret
!= kIOReturnSuccess
) return ret
;
5867 /* Make sure the local source number is valid */
5868 if ((source
< 0) || (source
>= _numInterruptSources
))
5869 return kIOReturnNoInterrupt
;
5871 /* Look up the contoller for the local source */
5872 *interruptController
= _interruptSources
[source
].interruptController
;
5874 if (*interruptController
== NULL
) {
5875 if (!resolve
) return kIOReturnNoInterrupt
;
5877 /* Try to reslove the interrupt */
5878 ret
= resolveInterrupt(this, source
);
5879 if (ret
!= kIOReturnSuccess
) return ret
;
5881 *interruptController
= _interruptSources
[source
].interruptController
;
5884 return kIOReturnSuccess
;
5887 IOReturn
IOService::registerInterrupt(int source
, OSObject
*target
,
5888 IOInterruptAction handler
,
5891 IOInterruptController
*interruptController
;
5894 ret
= lookupInterrupt(source
, true, &interruptController
);
5895 if (ret
!= kIOReturnSuccess
) return ret
;
5897 /* Register the source */
5898 return interruptController
->registerInterrupt(this, source
, target
,
5899 (IOInterruptHandler
)handler
,
5903 IOReturn
IOService::unregisterInterrupt(int source
)
5905 IOInterruptController
*interruptController
;
5908 ret
= lookupInterrupt(source
, false, &interruptController
);
5909 if (ret
!= kIOReturnSuccess
) return ret
;
5911 /* Unregister the source */
5912 return interruptController
->unregisterInterrupt(this, source
);
5915 IOReturn
IOService::addInterruptStatistics(IOInterruptAccountingData
* statistics
, int source
)
5917 IOReportLegend
* legend
= NULL
;
5918 IOInterruptAccountingData
* oldValue
= NULL
;
5919 IOInterruptAccountingReporter
* newArray
= NULL
;
5920 char subgroupName
[64];
5921 int newArraySize
= 0;
5925 return kIOReturnBadArgument
;
5929 * We support statistics on a maximum of 256 interrupts per nub; if a nub
5930 * has more than 256 interrupt specifiers associated with it, and tries
5931 * to register a high interrupt index with interrupt accounting, panic.
5932 * Having more than 256 interrupts associated with a single nub is
5933 * probably a sign that something fishy is going on.
5935 if (source
> IA_INDEX_MAX
) {
5936 panic("addInterruptStatistics called for an excessively large index (%d)", source
);
5940 * TODO: This is ugly (wrapping a lock around an allocation). I'm only
5941 * leaving it as is because the likelihood of contention where we are
5942 * actually growing the array is minimal (we would realistically need
5943 * to be starting a driver for the first time, with an IOReporting
5944 * client already in place). Nonetheless, cleanup that can be done
5945 * to adhere to best practices; it'll make the code more complicated,
5948 IOLockLock(reserved
->interruptStatisticsLock
);
5951 * Lazily allocate the statistics array.
5953 if (!reserved
->interruptStatisticsArray
) {
5954 reserved
->interruptStatisticsArray
= IONew(IOInterruptAccountingReporter
, 1);
5955 assert(reserved
->interruptStatisticsArray
);
5956 reserved
->interruptStatisticsArrayCount
= 1;
5957 bzero(reserved
->interruptStatisticsArray
, sizeof(*reserved
->interruptStatisticsArray
));
5960 if (source
>= reserved
->interruptStatisticsArrayCount
) {
5962 * We're still within the range of supported indices, but we are out
5963 * of space in the current array. Do a nasty realloc (because
5964 * IORealloc isn't a thing) here. We'll double the size with each
5967 * Yes, the "next power of 2" could be more efficient; but this will
5968 * be invoked incredibly rarely. Who cares.
5970 newArraySize
= (reserved
->interruptStatisticsArrayCount
<< 1);
5972 while (newArraySize
<= source
)
5973 newArraySize
= (newArraySize
<< 1);
5974 newArray
= IONew(IOInterruptAccountingReporter
, newArraySize
);
5979 * TODO: This even zeroes the memory it is about to overwrite.
5980 * Shameful; fix it. Not particularly high impact, however.
5982 bzero(newArray
, newArraySize
* sizeof(*newArray
));
5983 memcpy(newArray
, reserved
->interruptStatisticsArray
, reserved
->interruptStatisticsArrayCount
* sizeof(*newArray
));
5984 IODelete(reserved
->interruptStatisticsArray
, IOInterruptAccountingReporter
, reserved
->interruptStatisticsArrayCount
);
5985 reserved
->interruptStatisticsArray
= newArray
;
5986 reserved
->interruptStatisticsArrayCount
= newArraySize
;
5989 if (!reserved
->interruptStatisticsArray
[source
].reporter
) {
5991 * We don't have a reporter associated with this index yet, so we
5992 * need to create one.
5995 * TODO: Some statistics do in fact have common units (time); should this be
5996 * split into separate reporters to communicate this?
5998 reserved
->interruptStatisticsArray
[source
].reporter
= IOSimpleReporter::with(this, kIOReportCategoryPower
, kIOReportUnitNone
);
6001 * Each statistic is given an identifier based on the interrupt index (which
6002 * should be unique relative to any single nub) and the statistic involved.
6003 * We should now have a sane (small and positive) index, so start
6004 * constructing the channels for statistics.
6006 for (i
= 0; i
< IA_NUM_INTERRUPT_ACCOUNTING_STATISTICS
; i
++) {
6008 * TODO: Currently, this does not add channels for disabled statistics.
6009 * Will this be confusing for clients? If so, we should just add the
6010 * channels; we can avoid updating the channels even if they exist.
6012 if (IA_GET_STATISTIC_ENABLED(i
))
6013 reserved
->interruptStatisticsArray
[source
].reporter
->addChannel(IA_GET_CHANNEL_ID(source
, i
), kInterruptAccountingStatisticNameArray
[i
]);
6017 * We now need to add the legend for this reporter to the registry.
6019 legend
= IOReportLegend::with(OSDynamicCast(OSArray
, getProperty(kIOReportLegendKey
)));
6022 * Note that while we compose the subgroup name, we do not need to
6023 * manage its lifecycle (the reporter will handle this).
6025 snprintf(subgroupName
, sizeof(subgroupName
), "%s %d", getName(), source
);
6026 subgroupName
[sizeof(subgroupName
) - 1] = 0;
6027 legend
->addReporterLegend(reserved
->interruptStatisticsArray
[source
].reporter
, kInterruptAccountingGroupName
, subgroupName
);
6028 setProperty(kIOReportLegendKey
, legend
->getLegend());
6032 * TODO: Is this a good idea? Probably not; my assumption is it opts
6033 * all entities who register interrupts into public disclosure of all
6034 * IOReporting channels. Unfortunately, this appears to be as fine
6037 setProperty(kIOReportLegendPublicKey
, true);
6041 * Don't stomp existing entries. If we are about to, panic; this
6042 * probably means we failed to tear down our old interrupt source
6045 oldValue
= reserved
->interruptStatisticsArray
[source
].statistics
;
6048 panic("addInterruptStatistics call for index %d would have clobbered existing statistics", source
);
6051 reserved
->interruptStatisticsArray
[source
].statistics
= statistics
;
6054 * Inherit the reporter values for each statistic. The target may
6055 * be torn down as part of the runtime of the service (especially
6056 * for sleep/wake), so we inherit in order to avoid having values
6057 * reset for no apparent reason. Our statistics are ultimately
6058 * tied to the index and the sevice, not to an individual target,
6059 * so we should maintain them accordingly.
6061 interruptAccountingDataInheritChannels(reserved
->interruptStatisticsArray
[source
].statistics
, reserved
->interruptStatisticsArray
[source
].reporter
);
6063 IOLockUnlock(reserved
->interruptStatisticsLock
);
6065 return kIOReturnSuccess
;
6068 IOReturn
IOService::removeInterruptStatistics(int source
)
6070 IOInterruptAccountingData
* value
= NULL
;
6073 return kIOReturnBadArgument
;
6076 IOLockLock(reserved
->interruptStatisticsLock
);
6079 * We dynamically grow the statistics array, so an excessively
6080 * large index value has NEVER been registered. This either
6081 * means our cap on the array size is too small (unlikely), or
6082 * that we have been passed a corrupt index (this must be passed
6083 * the plain index into the interrupt specifier list).
6085 if (source
>= reserved
->interruptStatisticsArrayCount
) {
6086 panic("removeInterruptStatistics called for index %d, which was never registered", source
);
6089 assert(reserved
->interruptStatisticsArray
);
6092 * If there is no existing entry, we are most likely trying to
6093 * free an interrupt owner twice, or we have corrupted the
6096 value
= reserved
->interruptStatisticsArray
[source
].statistics
;
6099 panic("removeInterruptStatistics called for empty index %d", source
);
6103 * We update the statistics, so that any delta with the reporter
6104 * state is not lost.
6106 interruptAccountingDataUpdateChannels(reserved
->interruptStatisticsArray
[source
].statistics
, reserved
->interruptStatisticsArray
[source
].reporter
);
6107 reserved
->interruptStatisticsArray
[source
].statistics
= NULL
;
6108 IOLockUnlock(reserved
->interruptStatisticsLock
);
6110 return kIOReturnSuccess
;
6113 IOReturn
IOService::getInterruptType(int source
, int *interruptType
)
6115 IOInterruptController
*interruptController
;
6118 ret
= lookupInterrupt(source
, true, &interruptController
);
6119 if (ret
!= kIOReturnSuccess
) return ret
;
6121 /* Return the type */
6122 return interruptController
->getInterruptType(this, source
, interruptType
);
6125 IOReturn
IOService::enableInterrupt(int source
)
6127 IOInterruptController
*interruptController
;
6130 ret
= lookupInterrupt(source
, false, &interruptController
);
6131 if (ret
!= kIOReturnSuccess
) return ret
;
6133 /* Enable the source */
6134 return interruptController
->enableInterrupt(this, source
);
6137 IOReturn
IOService::disableInterrupt(int source
)
6139 IOInterruptController
*interruptController
;
6142 ret
= lookupInterrupt(source
, false, &interruptController
);
6143 if (ret
!= kIOReturnSuccess
) return ret
;
6145 /* Disable the source */
6146 return interruptController
->disableInterrupt(this, source
);
6149 IOReturn
IOService::causeInterrupt(int source
)
6151 IOInterruptController
*interruptController
;
6154 ret
= lookupInterrupt(source
, false, &interruptController
);
6155 if (ret
!= kIOReturnSuccess
) return ret
;
6157 /* Cause an interrupt for the source */
6158 return interruptController
->causeInterrupt(this, source
);
6161 IOReturn
IOService::configureReport(IOReportChannelList
*channelList
,
6162 IOReportConfigureAction action
,
6168 for (cnt
= 0; cnt
< channelList
->nchannels
; cnt
++) {
6169 if ( channelList
->channels
[cnt
].channel_id
== kPMPowerStatesChID
) {
6170 if (pwrMgt
) configurePowerStatesReport(action
, result
);
6171 else return kIOReturnUnsupported
;
6173 else if ( channelList
->channels
[cnt
].channel_id
== kPMCurrStateChID
) {
6174 if (pwrMgt
) configureSimplePowerReport(action
, result
);
6175 else return kIOReturnUnsupported
;
6179 IOLockLock(reserved
->interruptStatisticsLock
);
6181 /* The array count is signed (because the interrupt indices are signed), hence the cast */
6182 for (cnt
= 0; cnt
< (unsigned) reserved
->interruptStatisticsArrayCount
; cnt
++) {
6183 if (reserved
->interruptStatisticsArray
[cnt
].reporter
) {
6185 * If the reporter is currently associated with the statistics
6186 * for an event source, we may need to update the reporter.
6188 if (reserved
->interruptStatisticsArray
[cnt
].statistics
)
6189 interruptAccountingDataUpdateChannels(reserved
->interruptStatisticsArray
[cnt
].statistics
, reserved
->interruptStatisticsArray
[cnt
].reporter
);
6191 reserved
->interruptStatisticsArray
[cnt
].reporter
->configureReport(channelList
, action
, result
, destination
);
6195 IOLockUnlock(reserved
->interruptStatisticsLock
);
6197 return kIOReturnSuccess
;
6200 IOReturn
IOService::updateReport(IOReportChannelList
*channelList
,
6201 IOReportUpdateAction action
,
6207 for (cnt
= 0; cnt
< channelList
->nchannels
; cnt
++) {
6208 if ( channelList
->channels
[cnt
].channel_id
== kPMPowerStatesChID
) {
6209 if (pwrMgt
) updatePowerStatesReport(action
, result
, destination
);
6210 else return kIOReturnUnsupported
;
6212 else if ( channelList
->channels
[cnt
].channel_id
== kPMCurrStateChID
) {
6213 if (pwrMgt
) updateSimplePowerReport(action
, result
, destination
);
6214 else return kIOReturnUnsupported
;
6218 IOLockLock(reserved
->interruptStatisticsLock
);
6220 /* The array count is signed (because the interrupt indices are signed), hence the cast */
6221 for (cnt
= 0; cnt
< (unsigned) reserved
->interruptStatisticsArrayCount
; cnt
++) {
6222 if (reserved
->interruptStatisticsArray
[cnt
].reporter
) {
6224 * If the reporter is currently associated with the statistics
6225 * for an event source, we need to update the reporter.
6227 if (reserved
->interruptStatisticsArray
[cnt
].statistics
)
6228 interruptAccountingDataUpdateChannels(reserved
->interruptStatisticsArray
[cnt
].statistics
, reserved
->interruptStatisticsArray
[cnt
].reporter
);
6230 reserved
->interruptStatisticsArray
[cnt
].reporter
->updateReport(channelList
, action
, result
, destination
);
6234 IOLockUnlock(reserved
->interruptStatisticsLock
);
6236 return kIOReturnSuccess
;
6239 uint64_t IOService::getAuthorizationID( void )
6241 return reserved
->authorizationID
;
6244 IOReturn
IOService::setAuthorizationID( uint64_t authorizationID
)
6246 OSObject
* entitlement
;
6249 entitlement
= IOUserClient::copyClientEntitlement( current_task( ), "com.apple.private.iokit.IOServiceSetAuthorizationID" );
6253 if ( entitlement
== kOSBooleanTrue
)
6255 reserved
->authorizationID
= authorizationID
;
6257 status
= kIOReturnSuccess
;
6261 status
= kIOReturnNotPrivileged
;
6264 entitlement
->release( );
6268 status
= kIOReturnNotPrivileged
;
6275 OSMetaClassDefineReservedUsed(IOService
, 0);
6276 OSMetaClassDefineReservedUsed(IOService
, 1);
6277 OSMetaClassDefineReservedUnused(IOService
, 2);
6278 OSMetaClassDefineReservedUnused(IOService
, 3);
6279 OSMetaClassDefineReservedUnused(IOService
, 4);
6280 OSMetaClassDefineReservedUnused(IOService
, 5);
6281 OSMetaClassDefineReservedUnused(IOService
, 6);
6282 OSMetaClassDefineReservedUnused(IOService
, 7);
6284 OSMetaClassDefineReservedUsed(IOService
, 0);
6285 OSMetaClassDefineReservedUsed(IOService
, 1);
6286 OSMetaClassDefineReservedUsed(IOService
, 2);
6287 OSMetaClassDefineReservedUsed(IOService
, 3);
6288 OSMetaClassDefineReservedUsed(IOService
, 4);
6289 OSMetaClassDefineReservedUsed(IOService
, 5);
6290 OSMetaClassDefineReservedUsed(IOService
, 6);
6291 OSMetaClassDefineReservedUsed(IOService
, 7);
6293 OSMetaClassDefineReservedUnused(IOService
, 8);
6294 OSMetaClassDefineReservedUnused(IOService
, 9);
6295 OSMetaClassDefineReservedUnused(IOService
, 10);
6296 OSMetaClassDefineReservedUnused(IOService
, 11);
6297 OSMetaClassDefineReservedUnused(IOService
, 12);
6298 OSMetaClassDefineReservedUnused(IOService
, 13);
6299 OSMetaClassDefineReservedUnused(IOService
, 14);
6300 OSMetaClassDefineReservedUnused(IOService
, 15);
6301 OSMetaClassDefineReservedUnused(IOService
, 16);
6302 OSMetaClassDefineReservedUnused(IOService
, 17);
6303 OSMetaClassDefineReservedUnused(IOService
, 18);
6304 OSMetaClassDefineReservedUnused(IOService
, 19);
6305 OSMetaClassDefineReservedUnused(IOService
, 20);
6306 OSMetaClassDefineReservedUnused(IOService
, 21);
6307 OSMetaClassDefineReservedUnused(IOService
, 22);
6308 OSMetaClassDefineReservedUnused(IOService
, 23);
6309 OSMetaClassDefineReservedUnused(IOService
, 24);
6310 OSMetaClassDefineReservedUnused(IOService
, 25);
6311 OSMetaClassDefineReservedUnused(IOService
, 26);
6312 OSMetaClassDefineReservedUnused(IOService
, 27);
6313 OSMetaClassDefineReservedUnused(IOService
, 28);
6314 OSMetaClassDefineReservedUnused(IOService
, 29);
6315 OSMetaClassDefineReservedUnused(IOService
, 30);
6316 OSMetaClassDefineReservedUnused(IOService
, 31);
6317 OSMetaClassDefineReservedUnused(IOService
, 32);
6318 OSMetaClassDefineReservedUnused(IOService
, 33);
6319 OSMetaClassDefineReservedUnused(IOService
, 34);
6320 OSMetaClassDefineReservedUnused(IOService
, 35);
6321 OSMetaClassDefineReservedUnused(IOService
, 36);
6322 OSMetaClassDefineReservedUnused(IOService
, 37);
6323 OSMetaClassDefineReservedUnused(IOService
, 38);
6324 OSMetaClassDefineReservedUnused(IOService
, 39);
6325 OSMetaClassDefineReservedUnused(IOService
, 40);
6326 OSMetaClassDefineReservedUnused(IOService
, 41);
6327 OSMetaClassDefineReservedUnused(IOService
, 42);
6328 OSMetaClassDefineReservedUnused(IOService
, 43);
6329 OSMetaClassDefineReservedUnused(IOService
, 44);
6330 OSMetaClassDefineReservedUnused(IOService
, 45);
6331 OSMetaClassDefineReservedUnused(IOService
, 46);
6332 OSMetaClassDefineReservedUnused(IOService
, 47);