2 * Copyright (c) 1998-2012 Apple Computer, 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 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
33 #include <IOKit/assert.h>
34 #include <IOKit/IOLib.h>
35 #include <IOKit/IOKitKeys.h>
36 #include <IOKit/IOBufferMemoryDescriptor.h>
37 #include "RootDomainUserClient.h"
38 #include <IOKit/pwr_mgt/IOPMLibDefs.h>
39 #include <IOKit/pwr_mgt/IOPMPrivate.h>
42 #define super IOUserClient
44 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
46 OSDefineMetaClassAndStructors(RootDomainUserClient
, IOUserClient
)
48 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
50 bool RootDomainUserClient::initWithTask(task_t owningTask
, void *security_id
,
51 UInt32 type
, OSDictionary
* properties
)
54 properties
->setObject(kIOUserClientCrossEndianCompatibleKey
, kOSBooleanTrue
);
56 if (!super::initWithTask(owningTask
, security_id
, type
, properties
))
59 fOwningTask
= owningTask
;
60 task_reference (fOwningTask
);
65 bool RootDomainUserClient::start( IOService
* provider
)
67 assert(OSDynamicCast(IOPMrootDomain
, provider
));
68 if(!super::start(provider
))
70 fOwner
= (IOPMrootDomain
*)provider
;
76 IOReturn
RootDomainUserClient::secureSleepSystem( uint32_t *return_code
)
78 return secureSleepSystemOptions(NULL
, 0, return_code
);
81 IOReturn
RootDomainUserClient::secureSleepSystemOptions(
82 const void *inOptions
,
83 IOByteCount inOptionsSize
,
89 IOReturn ret
= kIOReturnNotPrivileged
;
90 OSDictionary
*unserializedOptions
= NULL
;
91 OSString
*unserializeErrorString
= NULL
;
93 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeLocalUser
);
94 local_priv
= (kIOReturnSuccess
== ret
);
96 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
97 admin_priv
= (kIOReturnSuccess
== ret
);
102 unserializedOptions
= OSDynamicCast( OSDictionary
,
103 OSUnserializeXML((const char *)inOptions
, inOptionsSize
, &unserializeErrorString
));
105 if (!unserializedOptions
) {
106 IOLog("IOPMRootDomain SleepSystem unserialization failure: %s\n",
107 unserializeErrorString
? unserializeErrorString
->getCStringNoCopy() : "Unknown");
111 if ( (local_priv
|| admin_priv
) && fOwner
)
114 p
= (proc_t
)get_bsdtask_info(fOwningTask
);
116 fOwner
->setProperty("SleepRequestedByPID", proc_pid(p
), 32);
119 if (unserializedOptions
)
121 // Publish Sleep Options in registry under root_domain
122 fOwner
->setProperty( kRootDomainSleepOptionsKey
, unserializedOptions
);
124 *returnCode
= fOwner
->sleepSystemOptions( unserializedOptions
);
126 unserializedOptions
->release();
129 // Clear any pre-existing options
130 fOwner
->removeProperty( kRootDomainSleepOptionsKey
);
132 *returnCode
= fOwner
->sleepSystemOptions( NULL
);
136 *returnCode
= kIOReturnNotPrivileged
;
139 return kIOReturnSuccess
;
142 IOReturn
RootDomainUserClient::secureSetAggressiveness(
144 unsigned long newLevel
,
149 IOReturn ret
= kIOReturnNotPrivileged
;
151 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeLocalUser
);
152 local_priv
= (kIOReturnSuccess
== ret
);
154 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
155 admin_priv
= (kIOReturnSuccess
== ret
);
157 if((local_priv
|| admin_priv
) && fOwner
) {
158 *return_code
= fOwner
->setAggressiveness(type
, newLevel
);
160 *return_code
= kIOReturnNotPrivileged
;
162 return kIOReturnSuccess
;
165 IOReturn
RootDomainUserClient::secureSetMaintenanceWakeCalendar(
166 IOPMCalendarStruct
*inCalendar
,
167 uint32_t *returnCode
)
170 IOReturn ret
= kIOReturnNotPrivileged
;
172 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
173 admin_priv
= (kIOReturnSuccess
== ret
);
175 if (admin_priv
&& fOwner
) {
176 *returnCode
= fOwner
->setMaintenanceWakeCalendar(inCalendar
);
178 *returnCode
= kIOReturnNotPrivileged
;
180 return kIOReturnSuccess
;
183 IOReturn
RootDomainUserClient::secureSetUserAssertionLevels(
184 uint32_t assertionBitfield
)
187 IOReturn ret
= kIOReturnNotPrivileged
;
189 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
190 admin_priv
= (kIOReturnSuccess
== ret
);
192 if (admin_priv
&& fOwner
) {
193 ret
= fOwner
->setPMAssertionUserLevels(assertionBitfield
);
195 ret
= kIOReturnNotPrivileged
;
197 return kIOReturnSuccess
;
200 IOReturn
RootDomainUserClient::secureGetSystemSleepType(
201 uint32_t *outSleepType
)
206 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
207 admin_priv
= (kIOReturnSuccess
== ret
);
209 if (admin_priv
&& fOwner
) {
210 ret
= fOwner
->getSystemSleepType(outSleepType
);
212 ret
= kIOReturnNotPrivileged
;
217 IOReturn
RootDomainUserClient::clientClose( void )
222 task_deallocate(fOwningTask
);
226 return kIOReturnSuccess
;
229 IOReturn
RootDomainUserClient::externalMethod(
231 IOExternalMethodArguments
* arguments
,
232 IOExternalMethodDispatch
* dispatch __unused
,
233 OSObject
* target __unused
,
234 void * reference __unused
)
236 IOReturn ret
= kIOReturnBadArgument
;
240 case kPMSetAggressiveness
:
241 if ((2 == arguments
->scalarInputCount
)
242 && (1 == arguments
->scalarOutputCount
))
244 ret
= this->secureSetAggressiveness(
245 (unsigned long)arguments
->scalarInput
[0],
246 (unsigned long)arguments
->scalarInput
[1],
247 (int *)&arguments
->scalarOutput
[0]);
251 case kPMGetAggressiveness
:
252 if ((1 == arguments
->scalarInputCount
)
253 && (1 == arguments
->scalarOutputCount
))
255 ret
= fOwner
->getAggressiveness(
256 (unsigned long)arguments
->scalarInput
[0],
257 (unsigned long *)&arguments
->scalarOutput
[0]);
262 if (1 == arguments
->scalarOutputCount
)
264 ret
= this->secureSleepSystem(
265 (uint32_t *)&arguments
->scalarOutput
[0]);
269 case kPMAllowPowerChange
:
270 if (1 == arguments
->scalarInputCount
)
272 ret
= fOwner
->allowPowerChange(
273 arguments
->scalarInput
[0]);
277 case kPMCancelPowerChange
:
278 if (1 == arguments
->scalarInputCount
)
280 ret
= fOwner
->cancelPowerChange(
281 arguments
->scalarInput
[0]);
285 case kPMShutdownSystem
:
286 // deperecated interface
287 ret
= kIOReturnUnsupported
;
290 case kPMRestartSystem
:
291 // deperecated interface
292 ret
= kIOReturnUnsupported
;
295 case kPMSleepSystemOptions
:
296 ret
= this->secureSleepSystemOptions(
297 arguments
->structureInput
,
298 arguments
->structureInputSize
,
299 (uint32_t *)&arguments
->scalarOutput
[0]);
301 case kPMSetMaintenanceWakeCalendar
:
302 ret
= this->secureSetMaintenanceWakeCalendar(
303 (IOPMCalendarStruct
*)arguments
->structureInput
,
304 (uint32_t *)&arguments
->structureOutput
);
305 arguments
->structureOutputSize
= sizeof(uint32_t);
308 case kPMSetUserAssertionLevels
:
309 ret
= this->secureSetUserAssertionLevels(
310 (uint32_t)arguments
->scalarInput
[0]);
313 case kPMActivityTickle
:
314 if ( fOwner
->checkSystemCanSustainFullWake() )
316 fOwner
->reportUserInput( );
317 fOwner
->setProperty(kIOPMRootDomainWakeTypeKey
, "UserActivity Assertion");
319 ret
= kIOReturnSuccess
;
322 case kPMSetClamshellSleepState
:
323 fOwner
->setDisableClamShellSleep(arguments
->scalarInput
[0] ? true : false);
324 ret
= kIOReturnSuccess
;
327 case kPMGetSystemSleepType
:
328 if (1 == arguments
->scalarOutputCount
)
330 ret
= this->secureGetSystemSleepType(
331 (uint32_t *) &arguments
->scalarOutput
[0]);
335 #if defined(__i386__) || defined(__x86_64__)
336 case kPMSleepWakeWatchdogEnable
:
337 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
338 if (ret
== kIOReturnSuccess
)
339 fOwner
->sleepWakeDebugEnableWdog();
343 case kPMSleepWakeDebugTrig
:
344 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
345 if (ret
== kIOReturnSuccess
)
346 fOwner
->sleepWakeDebugTrig(false);
350 case kPMSetDisplayPowerOn
:
351 if (1 == arguments
->scalarInputCount
)
353 ret
= clientHasPrivilege(fOwningTask
, kIOClientPrivilegeAdministrator
);
354 if (ret
== kIOReturnSuccess
)
355 fOwner
->setDisplayPowerOn((uint32_t)arguments
->scalarInput
[0]);
361 return kIOReturnBadArgument
;
367 /* getTargetAndMethodForIndex
368 * Not used. We prefer to use externalMethod() for user client invocations.
369 * We maintain getTargetAndExternalMethod since it's an exported symbol,
370 * and only for that reason.
372 IOExternalMethod
* RootDomainUserClient::getTargetAndMethodForIndex(
373 IOService
** targetP
, UInt32 index
)
376 return super::getTargetAndMethodForIndex(targetP
, index
);
380 * Does nothing. Exists only for exported symbol compatibility.
383 RootDomainUserClient::setPreventative(UInt32 on_off
, UInt32 types_of_sleep
)
384 { return; } // DO NOT EDIT