]> git.saurik.com Git - apple/xnu.git/blame - iokit/Kernel/RootDomainUserClient.cpp
xnu-2782.30.5.tar.gz
[apple/xnu.git] / iokit / Kernel / RootDomainUserClient.cpp
CommitLineData
55e303ae 1/*
39236c6e 2 * Copyright (c) 1998-2012 Apple Computer, Inc. All rights reserved.
55e303ae 3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
55e303ae 5 *
2d21ac55
A
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.
8f6c56a5 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
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
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
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.
8f6c56a5 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
55e303ae
A
27 */
28/*
29 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
30 *
31 */
32
33#include <IOKit/assert.h>
34#include <IOKit/IOLib.h>
0c530ab8 35#include <IOKit/IOKitKeys.h>
55e303ae
A
36#include <IOKit/IOBufferMemoryDescriptor.h>
37#include "RootDomainUserClient.h"
38#include <IOKit/pwr_mgt/IOPMLibDefs.h>
316670eb 39#include <IOKit/pwr_mgt/IOPMPrivate.h>
39236c6e 40#include <sys/proc.h>
55e303ae
A
41
42#define super IOUserClient
43
44/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
45
46OSDefineMetaClassAndStructors(RootDomainUserClient, IOUserClient)
47
48/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
49
fe8ab488
A
50bool RootDomainUserClient::initWithTask(task_t owningTask, void *security_id,
51 UInt32 type, OSDictionary * properties)
91447636 52{
0c530ab8 53 if (properties)
fe8ab488 54 properties->setObject(kIOUserClientCrossEndianCompatibleKey, kOSBooleanTrue);
0c530ab8
A
55
56 if (!super::initWithTask(owningTask, security_id, type, properties))
fe8ab488 57 return false;
91447636
A
58
59 fOwningTask = owningTask;
fe8ab488 60 task_reference (fOwningTask);
91447636
A
61 return true;
62}
63
64
55e303ae
A
65bool RootDomainUserClient::start( IOService * provider )
66{
67 assert(OSDynamicCast(IOPMrootDomain, provider));
68 if(!super::start(provider))
69 return false;
70 fOwner = (IOPMrootDomain *)provider;
71
72
73 return true;
74}
75
2d21ac55 76IOReturn RootDomainUserClient::secureSleepSystem( uint32_t *return_code )
91447636 77{
6d2010ae 78 return secureSleepSystemOptions(NULL, 0, return_code);
2d21ac55
A
79}
80
fe8ab488
A
81IOReturn RootDomainUserClient::secureSleepSystemOptions(
82 const void *inOptions,
39236c6e 83 IOByteCount inOptionsSize,
6d2010ae 84 uint32_t *returnCode)
2d21ac55 85{
2d21ac55 86
91447636
A
87 int local_priv = 0;
88 int admin_priv = 0;
89 IOReturn ret = kIOReturnNotPrivileged;
2d21ac55
A
90 OSDictionary *unserializedOptions = NULL;
91 OSString *unserializeErrorString = NULL;
91447636
A
92
93 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeLocalUser);
94 local_priv = (kIOReturnSuccess == ret);
fe8ab488 95
91447636
A
96 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
97 admin_priv = (kIOReturnSuccess == ret);
fe8ab488
A
98
99
2d21ac55
A
100 if (inOptions)
101 {
102 unserializedOptions = OSDynamicCast( OSDictionary,
39236c6e 103 OSUnserializeXML((const char *)inOptions, inOptionsSize, &unserializeErrorString));
fe8ab488 104
2d21ac55 105 if (!unserializedOptions) {
fe8ab488 106 IOLog("IOPMRootDomain SleepSystem unserialization failure: %s\n",
2d21ac55
A
107 unserializeErrorString ? unserializeErrorString->getCStringNoCopy() : "Unknown");
108 }
109 }
110
39236c6e 111 if ( (local_priv || admin_priv) && fOwner )
2d21ac55 112 {
39236c6e
A
113 proc_t p;
114 p = (proc_t)get_bsdtask_info(fOwningTask);
115 if (p) {
116 fOwner->setProperty("SleepRequestedByPID", proc_pid(p), 32);
117 }
fe8ab488
A
118
119 if (unserializedOptions)
2d21ac55
A
120 {
121 // Publish Sleep Options in registry under root_domain
fe8ab488 122 fOwner->setProperty( kRootDomainSleepOptionsKey, unserializedOptions);
2d21ac55
A
123
124 *returnCode = fOwner->sleepSystemOptions( unserializedOptions );
125
fe8ab488 126 unserializedOptions->release();
2d21ac55
A
127 } else {
128 // No options
129 // Clear any pre-existing options
130 fOwner->removeProperty( kRootDomainSleepOptionsKey );
131
fe8ab488 132 *returnCode = fOwner->sleepSystemOptions( NULL );
2d21ac55 133 }
91447636 134
91447636 135 } else {
2d21ac55 136 *returnCode = kIOReturnNotPrivileged;
91447636
A
137 }
138
2d21ac55 139 return kIOReturnSuccess;
91447636
A
140}
141
fe8ab488 142IOReturn RootDomainUserClient::secureSetAggressiveness(
91447636
A
143 unsigned long type,
144 unsigned long newLevel,
145 int *return_code )
146{
147 int local_priv = 0;
148 int admin_priv = 0;
149 IOReturn ret = kIOReturnNotPrivileged;
150
151 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeLocalUser);
152 local_priv = (kIOReturnSuccess == ret);
fe8ab488 153
91447636
A
154 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
155 admin_priv = (kIOReturnSuccess == ret);
156
157 if((local_priv || admin_priv) && fOwner) {
158 *return_code = fOwner->setAggressiveness(type, newLevel);
91447636
A
159 } else {
160 *return_code = kIOReturnNotPrivileged;
91447636 161 }
6d2010ae 162 return kIOReturnSuccess;
91447636
A
163}
164
6d2010ae
A
165IOReturn RootDomainUserClient::secureSetMaintenanceWakeCalendar(
166 IOPMCalendarStruct *inCalendar,
167 uint32_t *returnCode)
b0d623f7 168{
b0d623f7
A
169 int admin_priv = 0;
170 IOReturn ret = kIOReturnNotPrivileged;
fe8ab488 171
b0d623f7
A
172 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
173 admin_priv = (kIOReturnSuccess == ret);
174
b0d623f7
A
175 if (admin_priv && fOwner) {
176 *returnCode = fOwner->setMaintenanceWakeCalendar(inCalendar);
b0d623f7
A
177 } else {
178 *returnCode = kIOReturnNotPrivileged;
b0d623f7 179 }
6d2010ae 180 return kIOReturnSuccess;
b0d623f7 181}
55e303ae 182
0b4c1975 183IOReturn RootDomainUserClient::secureSetUserAssertionLevels(
6d2010ae 184 uint32_t assertionBitfield)
0b4c1975
A
185{
186 int admin_priv = 0;
187 IOReturn ret = kIOReturnNotPrivileged;
fe8ab488 188
0b4c1975
A
189 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
190 admin_priv = (kIOReturnSuccess == ret);
191
192 if (admin_priv && fOwner) {
6d2010ae 193 ret = fOwner->setPMAssertionUserLevels(assertionBitfield);
0b4c1975
A
194 } else {
195 ret = kIOReturnNotPrivileged;
196 }
197 return kIOReturnSuccess;
198}
199
db609669
A
200IOReturn RootDomainUserClient::secureGetSystemSleepType(
201 uint32_t *outSleepType)
202{
203 int admin_priv = 0;
204 IOReturn ret;
205
206 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
207 admin_priv = (kIOReturnSuccess == ret);
208
209 if (admin_priv && fOwner) {
210 ret = fOwner->getSystemSleepType(outSleepType);
211 } else {
212 ret = kIOReturnNotPrivileged;
213 }
214 return ret;
215}
216
55e303ae
A
217IOReturn RootDomainUserClient::clientClose( void )
218{
219 detach(fOwner);
fe8ab488 220
91447636
A
221 if(fOwningTask) {
222 task_deallocate(fOwningTask);
223 fOwningTask = 0;
55e303ae 224 }
fe8ab488
A
225
226 return kIOReturnSuccess;
55e303ae
A
227}
228
6d2010ae 229IOReturn RootDomainUserClient::externalMethod(
fe8ab488 230 uint32_t selector,
6d2010ae 231 IOExternalMethodArguments * arguments,
fe8ab488 232 IOExternalMethodDispatch * dispatch __unused,
6d2010ae
A
233 OSObject * target __unused,
234 void * reference __unused )
2d21ac55 235{
fe8ab488
A
236 IOReturn ret = kIOReturnBadArgument;
237
6d2010ae
A
238 switch (selector)
239 {
240 case kPMSetAggressiveness:
241 if ((2 == arguments->scalarInputCount)
242 && (1 == arguments->scalarOutputCount))
243 {
244 ret = this->secureSetAggressiveness(
245 (unsigned long)arguments->scalarInput[0],
246 (unsigned long)arguments->scalarInput[1],
247 (int *)&arguments->scalarOutput[0]);
248 }
249 break;
fe8ab488 250
6d2010ae
A
251 case kPMGetAggressiveness:
252 if ((1 == arguments->scalarInputCount)
253 && (1 == arguments->scalarOutputCount))
254 {
255 ret = fOwner->getAggressiveness(
256 (unsigned long)arguments->scalarInput[0],
257 (unsigned long *)&arguments->scalarOutput[0]);
258 }
259 break;
fe8ab488 260
6d2010ae
A
261 case kPMSleepSystem:
262 if (1 == arguments->scalarOutputCount)
263 {
264 ret = this->secureSleepSystem(
fe8ab488 265 (uint32_t *)&arguments->scalarOutput[0]);
6d2010ae
A
266 }
267 break;
268
269 case kPMAllowPowerChange:
270 if (1 == arguments->scalarInputCount)
271 {
272 ret = fOwner->allowPowerChange(
273 arguments->scalarInput[0]);
274 }
275 break;
276
277 case kPMCancelPowerChange:
278 if (1 == arguments->scalarInputCount)
279 {
280 ret = fOwner->cancelPowerChange(
281 arguments->scalarInput[0]);
282 }
283 break;
284
285 case kPMShutdownSystem:
286 // deperecated interface
287 ret = kIOReturnUnsupported;
288 break;
289
290 case kPMRestartSystem:
291 // deperecated interface
292 ret = kIOReturnUnsupported;
293 break;
294
295 case kPMSleepSystemOptions:
296 ret = this->secureSleepSystemOptions(
297 arguments->structureInput,
298 arguments->structureInputSize,
299 (uint32_t *)&arguments->scalarOutput[0]);
300 break;
301 case kPMSetMaintenanceWakeCalendar:
302 ret = this->secureSetMaintenanceWakeCalendar(
fe8ab488 303 (IOPMCalendarStruct *)arguments->structureInput,
6d2010ae
A
304 (uint32_t *)&arguments->structureOutput);
305 arguments->structureOutputSize = sizeof(uint32_t);
306 break;
fe8ab488 307
6d2010ae
A
308 case kPMSetUserAssertionLevels:
309 ret = this->secureSetUserAssertionLevels(
310 (uint32_t)arguments->scalarInput[0]);
311 break;
fe8ab488 312
7ddcb079 313 case kPMActivityTickle:
db609669
A
314 if ( fOwner->checkSystemCanSustainFullWake() )
315 {
316 fOwner->reportUserInput( );
317 fOwner->setProperty(kIOPMRootDomainWakeTypeKey, "UserActivity Assertion");
318 }
7ddcb079
A
319 ret = kIOReturnSuccess;
320 break;
db609669
A
321
322 case kPMSetClamshellSleepState:
323 fOwner->setDisableClamShellSleep(arguments->scalarInput[0] ? true : false);
324 ret = kIOReturnSuccess;
325 break;
326
327 case kPMGetSystemSleepType:
328 if (1 == arguments->scalarOutputCount)
329 {
330 ret = this->secureGetSystemSleepType(
331 (uint32_t *) &arguments->scalarOutput[0]);
332 }
333 break;
39236c6e 334
fe8ab488 335#if defined(__i386__) || defined(__x86_64__)
39236c6e
A
336 case kPMSleepWakeWatchdogEnable:
337 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
338 if (ret == kIOReturnSuccess)
339 fOwner->sleepWakeDebugEnableWdog();
340 break;
341
342
343 case kPMSleepWakeDebugTrig:
344 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
345 if (ret == kIOReturnSuccess)
346 fOwner->sleepWakeDebugTrig(false);
347 break;
fe8ab488 348#endif
39236c6e
A
349
350 case kPMSetDisplayPowerOn:
351 if (1 == arguments->scalarInputCount)
352 {
353 ret = clientHasPrivilege(fOwningTask, kIOClientPrivilegeAdministrator);
354 if (ret == kIOReturnSuccess)
355 fOwner->setDisplayPowerOn((uint32_t)arguments->scalarInput[0]);
356 }
357 break;
6d2010ae 358
6d2010ae
A
359 default:
360 // bad selector
361 return kIOReturnBadArgument;
362 }
363
364 return ret;
2d21ac55 365}
2d21ac55 366
6d2010ae
A
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.
371 */
fe8ab488 372IOExternalMethod * RootDomainUserClient::getTargetAndMethodForIndex(
6d2010ae 373 IOService ** targetP, UInt32 index )
55e303ae 374{
6d2010ae
A
375 // DO NOT EDIT
376 return super::getTargetAndMethodForIndex(targetP, index);
55e303ae
A
377}
378
6d2010ae
A
379/* setPreventative
380 * Does nothing. Exists only for exported symbol compatibility.
381 */
fe8ab488 382void
6d2010ae
A
383RootDomainUserClient::setPreventative(UInt32 on_off, UInt32 types_of_sleep)
384{ return; } // DO NOT EDIT