2 * Copyright (c) 1998-2016 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@
30 * Changes to this API are expected.
33 #ifndef _IOKIT_IOUSERCLIENT_H
34 #define _IOKIT_IOUSERCLIENT_H
36 #include <IOKit/IOTypes.h>
37 #include <IOKit/IOService.h>
38 #include <IOKit/OSMessageNotification.h>
41 #include <IOKit/IOStatisticsPrivate.h>
44 #define _IOUSERCLIENT_SENDASYNCRESULT64WITHOPTIONS_ 1
47 kIOUCTypeMask
= 0x0000000f,
48 kIOUCScalarIScalarO
= 0,
49 kIOUCScalarIStructO
= 2,
50 kIOUCStructIStructO
= 3,
51 kIOUCScalarIStructI
= 4,
53 kIOUCForegroundOnly
= 0x00000010,
57 @abstract Constant to denote a variable length structure argument to IOUserClient.
58 @constant kIOUCVariableStructureSize Use in the structures IOExternalMethod, IOExternalAsyncMethod, IOExternalMethodDispatch to specify the size of the structure is variable.
61 kIOUCVariableStructureSize
= 0xffffffff
65 typedef IOReturn (IOService::*IOMethod
)(void * p1
, void * p2
, void * p3
,
66 void * p4
, void * p5
, void * p6
);
68 typedef IOReturn (IOService::*IOAsyncMethod
)(OSAsyncReference asyncRef
,
69 void * p1
, void * p2
, void * p3
,
70 void * p4
, void * p5
, void * p6
);
72 typedef IOReturn (IOService::*IOTrap
)(void * p1
, void * p2
, void * p3
,
73 void * p4
, void * p5
, void * p6
);
75 struct IOExternalMethod
{
83 struct IOExternalAsyncMethod
{
91 struct IOExternalTrap
{
97 kIOUserNotifyMaxMessageSize
= 64
101 kIOUserNotifyOptionCanDrop
= 0x1 /* Fail if queue is full, rather than infinitely queuing. */
104 // keys for clientHasPrivilege
105 #define kIOClientPrivilegeAdministrator "root"
106 #define kIOClientPrivilegeLocalUser "local"
107 #define kIOClientPrivilegeForeground "foreground"
110 @abstract Constants to specify the maximum number of scalar arguments in the IOExternalMethodArguments structure. These constants are documentary since the scalarInputCount, scalarOutputCount fields reflect the actual number passed.
111 @constant kIOExternalMethodScalarInputCountMax The maximum number of scalars able to passed on input.
112 @constant kIOExternalMethodScalarOutputCountMax The maximum number of scalars able to passed on output.
115 kIOExternalMethodScalarInputCountMax
= 16,
116 kIOExternalMethodScalarOutputCountMax
= 16,
120 struct IOExternalMethodArguments
126 mach_port_t asyncWakePort
;
127 io_user_reference_t
* asyncReference
;
128 uint32_t asyncReferenceCount
;
130 const uint64_t * scalarInput
;
131 uint32_t scalarInputCount
;
133 const void * structureInput
;
134 uint32_t structureInputSize
;
136 IOMemoryDescriptor
* structureInputDescriptor
;
138 uint64_t * scalarOutput
;
139 uint32_t scalarOutputCount
;
141 void * structureOutput
;
142 uint32_t structureOutputSize
;
144 IOMemoryDescriptor
* structureOutputDescriptor
;
145 uint32_t structureOutputDescriptorSize
;
147 uint32_t __reservedA
;
149 OSObject
** structureVariableOutputData
;
151 uint32_t __reserved
[30];
154 typedef IOReturn (*IOExternalMethodAction
)(OSObject
* target
, void * reference
,
155 IOExternalMethodArguments
* arguments
);
156 struct IOExternalMethodDispatch
158 IOExternalMethodAction function
;
159 uint32_t checkScalarInputCount
;
160 uint32_t checkStructureInputSize
;
161 uint32_t checkScalarOutputCount
;
162 uint32_t checkStructureOutputSize
;
166 #define IO_EXTERNAL_METHOD_ARGUMENTS_CURRENT_VERSION 2
167 kIOExternalMethodArgumentsCurrentVersion
= IO_EXTERNAL_METHOD_ARGUMENTS_CURRENT_VERSION
173 @abstract Provides a basis for communication between client applications and I/O Kit objects.
176 class IOUserClient
: public IOService
178 OSDeclareAbstractStructors(IOUserClient
)
180 friend class IOStatistics
;
184 /*! @struct ExpansionData
185 @discussion This structure will be used to expand the capablilties of this class in the future.
187 struct ExpansionData
{
189 IOUserClientCounter
*counter
;
191 void *iokitstatsReserved
;
196 Reserved for future use. (Internal use only)
198 ExpansionData
* reserved
;
202 #ifdef XNU_KERNEL_PRIVATE
206 UInt8 sharedInstance
;
209 UInt8 __reservedA
[1];
210 volatile SInt32 __ipc
;
213 void * __reserved
[5];
215 void * __reserved
[4];
218 #else /* XNU_KERNEL_PRIVATE */
220 void * __reserved
[9];
221 #endif /* XNU_KERNEL_PRIVATE */
224 virtual IOReturn
externalMethod( uint32_t selector
, IOExternalMethodArguments
* arguments
,
225 IOExternalMethodDispatch
* dispatch
= 0, OSObject
* target
= 0, void * reference
= 0 );
227 virtual IOReturn
registerNotificationPort(
228 mach_port_t port
, UInt32 type
, io_user_reference_t refCon
);
232 OSMetaClassDeclareReservedUnused(IOUserClient
, 0);
233 OSMetaClassDeclareReservedUnused(IOUserClient
, 1);
235 OSMetaClassDeclareReservedUsed(IOUserClient
, 0);
236 OSMetaClassDeclareReservedUsed(IOUserClient
, 1);
238 OSMetaClassDeclareReservedUnused(IOUserClient
, 2);
239 OSMetaClassDeclareReservedUnused(IOUserClient
, 3);
240 OSMetaClassDeclareReservedUnused(IOUserClient
, 4);
241 OSMetaClassDeclareReservedUnused(IOUserClient
, 5);
242 OSMetaClassDeclareReservedUnused(IOUserClient
, 6);
243 OSMetaClassDeclareReservedUnused(IOUserClient
, 7);
244 OSMetaClassDeclareReservedUnused(IOUserClient
, 8);
245 OSMetaClassDeclareReservedUnused(IOUserClient
, 9);
246 OSMetaClassDeclareReservedUnused(IOUserClient
, 10);
247 OSMetaClassDeclareReservedUnused(IOUserClient
, 11);
248 OSMetaClassDeclareReservedUnused(IOUserClient
, 12);
249 OSMetaClassDeclareReservedUnused(IOUserClient
, 13);
250 OSMetaClassDeclareReservedUnused(IOUserClient
, 14);
251 OSMetaClassDeclareReservedUnused(IOUserClient
, 15);
253 #ifdef XNU_KERNEL_PRIVATE
255 /* Available within xnu source only */
257 static void initialize( void );
258 static void destroyUserReferences( OSObject
* obj
);
259 static bool finalizeUserReferences( OSObject
* obj
);
260 IOMemoryMap
* mapClientMemory64( IOOptionBits type
,
262 IOOptionBits mapFlags
= kIOMapAnywhere
,
263 mach_vm_address_t atAddress
= 0 );
264 IOReturn
registerOwner(task_t task
);
265 void noMoreSenders(void);
267 #endif /* XNU_KERNEL_PRIVATE */
270 static IOReturn
sendAsyncResult(OSAsyncReference reference
,
271 IOReturn result
, void *args
[], UInt32 numArgs
);
272 static void setAsyncReference(OSAsyncReference asyncRef
,
273 mach_port_t wakePort
,
274 void *callback
, void *refcon
);
276 static IOReturn
sendAsyncResult64(OSAsyncReference64 reference
,
277 IOReturn result
, io_user_reference_t args
[], UInt32 numArgs
);
280 @function sendAsyncResult64WithOptions
281 @abstract Send a notification as with sendAsyncResult, but with finite queueing.
282 @discussion IOUserClient::sendAsyncResult64() will infitely queue messages if the client
283 is not processing them in a timely fashion. This variant will not, for simple
284 handling of situations where clients may be expected to stop processing messages.
286 static IOReturn
sendAsyncResult64WithOptions(OSAsyncReference64 reference
,
287 IOReturn result
, io_user_reference_t args
[], UInt32 numArgs
,
288 IOOptionBits options
);
290 static void setAsyncReference64(OSAsyncReference64 asyncRef
,
291 mach_port_t wakePort
,
292 mach_vm_address_t callback
, io_user_reference_t refcon
);
294 static void setAsyncReference64(OSAsyncReference64 asyncRef
,
295 mach_port_t wakePort
,
296 mach_vm_address_t callback
, io_user_reference_t refcon
,
301 static IOReturn
clientHasAuthorization( task_t task
,
302 IOService
* service
);
304 static IOReturn
clientHasPrivilege( void * securityToken
,
305 const char * privilegeName
);
307 static OSObject
* copyClientEntitlement( task_t task
,
308 const char * entitlement
);
311 @function releaseAsyncReference64
312 @abstract Release the mach_port_t reference held within the OSAsyncReference64 structure.
313 @discussion The OSAsyncReference64 structure passed to async methods holds a reference to the wakeup mach port, which should be released to balance each async method call. Behavior is undefined if these calls are not correctly balanced.
314 @param reference The reference passed to the subclass IOAsyncMethod, or externalMethod() in the IOExternalMethodArguments.asyncReference field.
315 @result A return code.
317 static IOReturn
releaseAsyncReference64(OSAsyncReference64 reference
);
319 @function releaseNotificationPort
320 @abstract Release the mach_port_t passed to registerNotificationPort().
321 @discussion The mach_port_t passed to the registerNotificationPort() methods should be released to balance each call to registerNotificationPort(). Behavior is undefined if these calls are not correctly balanced.
322 @param port The mach_port_t argument previously passed to the subclass implementation of registerNotificationPort().
323 @result A return code.
325 static IOReturn
releaseNotificationPort(mach_port_t port
);
327 virtual bool init() APPLE_KEXT_OVERRIDE
;
328 virtual bool init( OSDictionary
* dictionary
) APPLE_KEXT_OVERRIDE
;
329 // Currently ignores the all args, just passes up to IOService::init()
330 virtual bool initWithTask(
331 task_t owningTask
, void * securityToken
, UInt32 type
,
332 OSDictionary
* properties
);
334 virtual bool initWithTask(
335 task_t owningTask
, void * securityToken
, UInt32 type
);
337 virtual void free() APPLE_KEXT_OVERRIDE
;
339 virtual IOReturn
clientClose( void );
340 virtual IOReturn
clientDied( void );
342 virtual IOService
* getService( void );
344 virtual IOReturn
registerNotificationPort(
345 mach_port_t port
, UInt32 type
, UInt32 refCon
);
347 virtual IOReturn
getNotificationSemaphore( UInt32 notification_type
,
348 semaphore_t
* semaphore
);
350 virtual IOReturn
connectClient( IOUserClient
* client
);
352 // memory will be released by user client when last map is destroyed
353 virtual IOReturn
clientMemoryForType( UInt32 type
,
354 IOOptionBits
* options
,
355 IOMemoryDescriptor
** memory
);
359 APPLE_KEXT_COMPATIBILITY_VIRTUAL
360 IOMemoryMap
* mapClientMemory( IOOptionBits type
,
362 IOOptionBits mapFlags
= kIOMapAnywhere
,
363 IOVirtualAddress atAddress
= 0 );
366 static IOReturn
_sendAsyncResult64(OSAsyncReference64 reference
,
367 IOReturn result
, io_user_reference_t args
[], UInt32 numArgs
, IOOptionBits options
);
371 @function removeMappingForDescriptor
372 Remove the first mapping created from the memory descriptor returned by clientMemoryForType() from IOUserClient's list of mappings. If such a mapping exists, it is retained and the reference currently held by IOUserClient is returned to the caller.
373 @param memory The memory descriptor instance previously returned by the implementation of clientMemoryForType().
374 @result A reference to the first IOMemoryMap instance found in the list of mappings created by IOUserClient from that passed memory descriptor is returned, or zero if none exist. The caller should release this reference.
376 IOMemoryMap
* removeMappingForDescriptor(IOMemoryDescriptor
* memory
);
379 @function exportObjectToClient
380 Make an arbitrary OSObject available to the client task.
381 @param task The task.
382 @param obj The object we want to export to the client.
383 @param clientObj Returned value is the client's port name.
385 virtual IOReturn
exportObjectToClient(task_t task
,
386 OSObject
*obj
, io_object_t
*clientObj
);
388 // Old methods for accessing method vector backward compatiblility only
389 virtual IOExternalMethod
*
390 getExternalMethodForIndex( UInt32 index
)
391 APPLE_KEXT_DEPRECATED
;
392 virtual IOExternalAsyncMethod
*
393 getExternalAsyncMethodForIndex( UInt32 index
)
394 APPLE_KEXT_DEPRECATED
;
396 // Methods for accessing method vector.
397 virtual IOExternalMethod
*
398 getTargetAndMethodForIndex( IOService
** targetP
, UInt32 index
);
399 virtual IOExternalAsyncMethod
*
400 getAsyncTargetAndMethodForIndex( IOService
** targetP
, UInt32 index
);
402 // Methods for accessing trap vector - old and new style
403 virtual IOExternalTrap
*
404 getExternalTrapForIndex( UInt32 index
)
405 APPLE_KEXT_DEPRECATED
;
407 virtual IOExternalTrap
*
408 getTargetAndTrapForIndex( IOService
**targetP
, UInt32 index
);
411 #endif /* ! _IOKIT_IOUSERCLIENT_H */