]>
git.saurik.com Git - apple/xnu.git/blob - iokit/Kernel/IOCommandGate.cpp
2 * Copyright (c) 1998-2000, 2009-2010 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@
28 #include <libkern/OSDebug.h>
30 #include <IOKit/IOCommandGate.h>
31 #include <IOKit/IOWorkLoop.h>
32 #include <IOKit/IOReturn.h>
33 #include <IOKit/IOTimeStamp.h>
34 #include <IOKit/IOKitDebug.h>
36 #define super IOEventSource
38 OSDefineMetaClassAndStructors(IOCommandGate
, IOEventSource
)
40 OSMetaClassDefineReservedUnused(IOCommandGate
, 0);
42 OSMetaClassDefineReservedUsed(IOCommandGate
, 0);
44 OSMetaClassDefineReservedUnused(IOCommandGate
, 1);
45 OSMetaClassDefineReservedUnused(IOCommandGate
, 2);
46 OSMetaClassDefineReservedUnused(IOCommandGate
, 3);
47 OSMetaClassDefineReservedUnused(IOCommandGate
, 4);
48 OSMetaClassDefineReservedUnused(IOCommandGate
, 5);
49 OSMetaClassDefineReservedUnused(IOCommandGate
, 6);
50 OSMetaClassDefineReservedUnused(IOCommandGate
, 7);
54 #define IOStatisticsInitializeCounter() \
56 IOStatistics::setCounterType(IOEventSource::reserved->counter, kIOStatisticsCommandGateCounter); \
59 #define IOStatisticsActionCall() \
61 IOStatistics::countCommandGateActionCall(IOEventSource::reserved->counter); \
66 #define IOStatisticsInitializeCounter()
67 #define IOStatisticsActionCall()
69 #endif /* IOKITSTATS */
71 bool IOCommandGate::init(OSObject
*inOwner
, Action inAction
)
73 bool res
= super::init(inOwner
, (IOEventSource::Action
) inAction
);
75 IOStatisticsInitializeCounter();
82 IOCommandGate::commandGate(OSObject
*inOwner
, Action inAction
)
84 IOCommandGate
*me
= new IOCommandGate
;
86 if (me
&& !me
->init(inOwner
, inAction
)) {
94 /* virtual */ void IOCommandGate::disable()
96 if (workLoop
&& !workLoop
->inGate())
97 OSReportWithBacktrace("IOCommandGate::disable() called when not gated");
102 /* virtual */ void IOCommandGate::enable()
107 wakeupGate(&enabled
, /* oneThread */ false); // Unblock sleeping threads
112 /* virtual */ void IOCommandGate::free()
114 if (workLoop
) setWorkLoop(0);
120 kSleepersRemoved
= 0x00000001,
121 kSleepersWaitEnabled
= 0x00000002,
122 kSleepersActions
= 0x00000100,
123 kSleepersActionsMask
= 0xffffff00,
126 /* virtual */ void IOCommandGate::setWorkLoop(IOWorkLoop
*inWorkLoop
)
129 uintptr_t * sleepersP
= (uintptr_t *) &reserved
;
132 if (!inWorkLoop
&& (wl
= workLoop
)) { // tearing down
134 *sleepersP
|= kSleepersRemoved
;
135 while (*sleepersP
& kSleepersWaitEnabled
) {
136 thread_wakeup_with_result(&enabled
, THREAD_INTERRUPTED
);
137 sleepGate(sleepersP
, THREAD_UNINT
);
139 *sleepersP
&= ~kSleepersWaitEnabled
;
140 defer
= (0 != (kSleepersActionsMask
& *sleepersP
));
143 super::setWorkLoop(0);
144 *sleepersP
&= ~kSleepersRemoved
;
150 super::setWorkLoop(inWorkLoop
);
153 IOReturn
IOCommandGate::runCommand(void *arg0
, void *arg1
,
154 void *arg2
, void *arg3
)
156 return runAction((Action
) action
, arg0
, arg1
, arg2
, arg3
);
159 IOReturn
IOCommandGate::attemptCommand(void *arg0
, void *arg1
,
160 void *arg2
, void *arg3
)
162 return attemptAction((Action
) action
, arg0
, arg1
, arg2
, arg3
);
165 IOReturn
IOCommandGate::runAction(Action inAction
,
166 void *arg0
, void *arg1
,
167 void *arg2
, void *arg3
)
170 uintptr_t * sleepersP
;
173 return kIOReturnBadArgument
;
174 if (!(wl
= workLoop
))
175 return kIOReturnNotReady
;
177 // closeGate is recursive needn't worry if we already hold the lock.
179 sleepersP
= (uintptr_t *) &reserved
;
181 // If the command gate is disabled and we aren't on the workloop thread
182 // itself then sleep until we get enabled.
188 IOReturn sleepResult
= kIOReturnSuccess
;
191 *sleepersP
|= kSleepersWaitEnabled
;
192 sleepResult
= wl
->sleepGate(&enabled
, THREAD_INTERRUPTIBLE
);
193 *sleepersP
&= ~kSleepersWaitEnabled
;
195 bool wakeupTearDown
= (!workLoop
|| (0 != (*sleepersP
& kSleepersRemoved
)));
196 if ((kIOReturnSuccess
!= sleepResult
) || wakeupTearDown
) {
200 wl
->wakeupGate(sleepersP
, false); // No further resources used
202 return kIOReturnAborted
;
207 bool trace
= ( gIOKitTrace
& kIOTraceCommandGates
) ? true : false;
209 if (trace
) IOTimeStampStartConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
210 VM_KERNEL_ADDRHIDE(inAction
), VM_KERNEL_ADDRHIDE(owner
));
212 IOStatisticsActionCall();
214 // Must be gated and on the work loop or enabled
216 *sleepersP
+= kSleepersActions
;
217 res
= (*inAction
)(owner
, arg0
, arg1
, arg2
, arg3
);
218 *sleepersP
-= kSleepersActions
;
220 if (trace
) IOTimeStampEndConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
221 VM_KERNEL_ADDRHIDE(inAction
), VM_KERNEL_ADDRHIDE(owner
));
223 if (kSleepersRemoved
== ((kSleepersActionsMask
|kSleepersRemoved
) & *sleepersP
))
225 // no actions outstanding
226 *sleepersP
&= ~kSleepersRemoved
;
227 super::setWorkLoop(0);
235 IOReturn
IOCommandGate::attemptAction(Action inAction
,
236 void *arg0
, void *arg1
,
237 void *arg2
, void *arg3
)
243 return kIOReturnBadArgument
;
244 if (!(wl
= workLoop
))
245 return kIOReturnNotReady
;
247 // Try to close the gate if can't get return immediately.
248 if (!wl
->tryCloseGate())
249 return kIOReturnCannotLock
;
251 // If the command gate is disabled then sleep until we get a wakeup
252 if (!wl
->onThread() && !enabled
)
253 res
= kIOReturnNotPermitted
;
256 bool trace
= ( gIOKitTrace
& kIOTraceCommandGates
) ? true : false;
259 IOTimeStampStartConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
260 VM_KERNEL_ADDRHIDE(inAction
), VM_KERNEL_ADDRHIDE(owner
));
262 IOStatisticsActionCall();
264 res
= (*inAction
)(owner
, arg0
, arg1
, arg2
, arg3
);
267 IOTimeStampEndConstant(IODBG_CMDQ(IOCMDQ_ACTION
),
268 VM_KERNEL_ADDRHIDE(inAction
), VM_KERNEL_ADDRHIDE(owner
));
276 IOReturn
IOCommandGate::commandSleep(void *event
, UInt32 interruptible
)
278 if (!workLoop
->inGate())
279 return kIOReturnNotPermitted
;
281 return sleepGate(event
, interruptible
);
284 IOReturn
IOCommandGate::commandSleep(void *event
, AbsoluteTime deadline
, UInt32 interruptible
)
286 if (!workLoop
->inGate())
287 return kIOReturnNotPermitted
;
289 return sleepGate(event
, deadline
, interruptible
);
292 void IOCommandGate::commandWakeup(void *event
, bool oneThread
)
294 wakeupGate(event
, oneThread
);