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@
30 #include <libkern/c++/OSKext.h>
31 #include <IOKit/IOKitServer.h>
32 #include <IOKit/IOKitKeysPrivate.h>
33 #include <IOKit/IOUserClient.h>
34 #include <IOKit/IOService.h>
35 #include <IOKit/IORegistryEntry.h>
36 #include <IOKit/IOCatalogue.h>
37 #include <IOKit/IOMemoryDescriptor.h>
38 #include <IOKit/IOBufferMemoryDescriptor.h>
39 #include <IOKit/IOLib.h>
40 #include <IOKit/IOStatisticsPrivate.h>
41 #include <IOKit/IOTimeStamp.h>
42 #include <IOKit/system.h>
43 #include <libkern/OSDebug.h>
45 #include <sys/kauth.h>
46 #include <sys/codesign.h>
51 #include <security/mac_framework.h>
53 #include <sys/kauth.h>
57 #endif /* CONFIG_MACF */
59 #include <IOKit/assert.h>
61 #include "IOServicePrivate.h"
62 #include "IOKitKernelInternal.h"
64 #define SCALAR64(x) ((io_user_scalar_t)((unsigned int)x))
65 #define SCALAR32(x) ((uint32_t )x)
66 #define ARG32(x) ((void *)(uintptr_t)SCALAR32(x))
67 #define REF64(x) ((io_user_reference_t)((UInt64)(x)))
68 #define REF32(x) ((int)(x))
72 kIOUCAsync0Flags
= 3ULL,
73 kIOUCAsync64Flag
= 1ULL
78 #define IOStatisticsRegisterCounter() \
80 reserved->counter = IOStatistics::registerUserClient(this); \
83 #define IOStatisticsUnregisterCounter() \
86 IOStatistics::unregisterUserClient(reserved->counter); \
89 #define IOStatisticsClientCall() \
91 IOStatistics::countUserClientCall(client); \
96 #define IOStatisticsRegisterCounter()
97 #define IOStatisticsUnregisterCounter()
98 #define IOStatisticsClientCall()
100 #endif /* IOKITSTATS */
102 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
104 // definitions we should get from osfmk
106 //typedef struct ipc_port * ipc_port_t;
107 typedef natural_t ipc_kobject_type_t
;
109 #define IKOT_IOKIT_SPARE 27
110 #define IKOT_IOKIT_CONNECT 29
111 #define IKOT_IOKIT_OBJECT 30
115 extern ipc_port_t
iokit_alloc_object_port( io_object_t obj
,
116 ipc_kobject_type_t type
);
118 extern kern_return_t
iokit_destroy_object_port( ipc_port_t port
);
120 extern mach_port_name_t
iokit_make_send_right( task_t task
,
121 io_object_t obj
, ipc_kobject_type_t type
);
123 extern kern_return_t
iokit_mod_send_right( task_t task
, mach_port_name_t name
, mach_port_delta_t delta
);
125 extern io_object_t
iokit_lookup_connect_ref(io_object_t clientRef
, ipc_space_t task
);
127 extern io_object_t
iokit_lookup_connect_ref_current_task(io_object_t clientRef
);
129 extern ipc_port_t master_device_port
;
131 extern void iokit_retain_port( ipc_port_t port
);
132 extern void iokit_release_port( ipc_port_t port
);
133 extern void iokit_release_port_send( ipc_port_t port
);
135 extern kern_return_t
iokit_switch_object_port( ipc_port_t port
, io_object_t obj
, ipc_kobject_type_t type
);
137 #include <mach/mach_traps.h>
138 #include <vm/vm_map.h>
143 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
145 // IOMachPort maps OSObjects to ports, avoiding adding an ivar to OSObject.
147 class IOMachPort
: public OSObject
149 OSDeclareDefaultStructors(IOMachPort
)
156 static IOMachPort
* portForObject( OSObject
* obj
,
157 ipc_kobject_type_t type
);
158 static bool noMoreSendersForObject( OSObject
* obj
,
159 ipc_kobject_type_t type
, mach_port_mscount_t
* mscount
);
160 static void releasePortForObject( OSObject
* obj
,
161 ipc_kobject_type_t type
);
162 static void setHoldDestroy( OSObject
* obj
, ipc_kobject_type_t type
);
164 static OSDictionary
* dictForType( ipc_kobject_type_t type
);
166 static mach_port_name_t
makeSendRightForTask( task_t task
,
167 io_object_t obj
, ipc_kobject_type_t type
);
169 virtual void free() APPLE_KEXT_OVERRIDE
;
172 #define super OSObject
173 OSDefineMetaClassAndStructors(IOMachPort
, OSObject
)
175 static IOLock
* gIOObjectPortLock
;
177 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
179 // not in dictForType() for debugging ease
180 static OSDictionary
* gIOObjectPorts
;
181 static OSDictionary
* gIOConnectPorts
;
183 OSDictionary
* IOMachPort::dictForType( ipc_kobject_type_t type
)
185 OSDictionary
** dict
;
187 if( IKOT_IOKIT_OBJECT
== type
)
188 dict
= &gIOObjectPorts
;
189 else if( IKOT_IOKIT_CONNECT
== type
)
190 dict
= &gIOConnectPorts
;
195 *dict
= OSDictionary::withCapacity( 1 );
200 IOMachPort
* IOMachPort::portForObject ( OSObject
* obj
,
201 ipc_kobject_type_t type
)
203 IOMachPort
* inst
= 0;
206 IOTakeLock( gIOObjectPortLock
);
210 dict
= dictForType( type
);
214 if( (inst
= (IOMachPort
*)
215 dict
->getObject( (const OSSymbol
*) obj
))) {
221 inst
= new IOMachPort
;
222 if( inst
&& !inst
->init()) {
227 inst
->port
= iokit_alloc_object_port( obj
, type
);
230 dict
->setObject( (const OSSymbol
*) obj
, inst
);
240 IOUnlock( gIOObjectPortLock
);
245 bool IOMachPort::noMoreSendersForObject( OSObject
* obj
,
246 ipc_kobject_type_t type
, mach_port_mscount_t
* mscount
)
249 IOMachPort
* machPort
;
250 bool destroyed
= true;
252 IOTakeLock( gIOObjectPortLock
);
254 if( (dict
= dictForType( type
))) {
257 machPort
= (IOMachPort
*) dict
->getObject( (const OSSymbol
*) obj
);
259 destroyed
= (machPort
->mscount
<= *mscount
);
261 dict
->removeObject( (const OSSymbol
*) obj
);
263 *mscount
= machPort
->mscount
;
268 IOUnlock( gIOObjectPortLock
);
273 void IOMachPort::releasePortForObject( OSObject
* obj
,
274 ipc_kobject_type_t type
)
277 IOMachPort
* machPort
;
279 IOTakeLock( gIOObjectPortLock
);
281 if( (dict
= dictForType( type
))) {
283 machPort
= (IOMachPort
*) dict
->getObject( (const OSSymbol
*) obj
);
284 if( machPort
&& !machPort
->holdDestroy
)
285 dict
->removeObject( (const OSSymbol
*) obj
);
289 IOUnlock( gIOObjectPortLock
);
292 void IOMachPort::setHoldDestroy( OSObject
* obj
, ipc_kobject_type_t type
)
295 IOMachPort
* machPort
;
297 IOLockLock( gIOObjectPortLock
);
299 if( (dict
= dictForType( type
))) {
300 machPort
= (IOMachPort
*) dict
->getObject( (const OSSymbol
*) obj
);
302 machPort
->holdDestroy
= true;
305 IOLockUnlock( gIOObjectPortLock
);
308 void IOUserClient::destroyUserReferences( OSObject
* obj
)
310 IOMachPort::releasePortForObject( obj
, IKOT_IOKIT_OBJECT
);
313 // IOMachPort::releasePortForObject( obj, IKOT_IOKIT_CONNECT );
317 IOTakeLock( gIOObjectPortLock
);
320 if( (dict
= IOMachPort::dictForType( IKOT_IOKIT_CONNECT
)))
323 port
= (IOMachPort
*) dict
->getObject( (const OSSymbol
*) obj
);
327 if ((uc
= OSDynamicCast(IOUserClient
, obj
)) && uc
->mappings
)
329 dict
->setObject((const OSSymbol
*) uc
->mappings
, port
);
330 iokit_switch_object_port(port
->port
, uc
->mappings
, IKOT_IOKIT_CONNECT
);
332 uc
->mappings
->release();
335 dict
->removeObject( (const OSSymbol
*) obj
);
339 IOUnlock( gIOObjectPortLock
);
342 mach_port_name_t
IOMachPort::makeSendRightForTask( task_t task
,
343 io_object_t obj
, ipc_kobject_type_t type
)
345 return( iokit_make_send_right( task
, obj
, type
));
348 void IOMachPort::free( void )
351 iokit_destroy_object_port( port
);
355 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
357 class IOUserIterator
: public OSIterator
359 OSDeclareDefaultStructors(IOUserIterator
)
361 OSObject
* userIteratorObject
;
364 static IOUserIterator
* withIterator(OSIterator
* iter
);
365 virtual bool init( void ) APPLE_KEXT_OVERRIDE
;
366 virtual void free() APPLE_KEXT_OVERRIDE
;
368 virtual void reset() APPLE_KEXT_OVERRIDE
;
369 virtual bool isValid() APPLE_KEXT_OVERRIDE
;
370 virtual OSObject
* getNextObject() APPLE_KEXT_OVERRIDE
;
373 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
375 class IOUserNotification
: public IOUserIterator
377 OSDeclareDefaultStructors(IOUserNotification
)
379 #define holdNotify userIteratorObject
383 virtual void free() APPLE_KEXT_OVERRIDE
;
385 virtual void setNotification( IONotifier
* obj
);
387 virtual void reset() APPLE_KEXT_OVERRIDE
;
388 virtual bool isValid() APPLE_KEXT_OVERRIDE
;
391 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
393 OSDefineMetaClassAndStructors( IOUserIterator
, OSIterator
)
396 IOUserIterator::withIterator(OSIterator
* iter
)
400 if (!iter
) return (0);
402 me
= new IOUserIterator
;
403 if (me
&& !me
->init())
409 me
->userIteratorObject
= iter
;
415 IOUserIterator::init( void )
417 if (!OSObject::init()) return (false);
419 lock
= IOLockAlloc();
427 IOUserIterator::free()
429 if (userIteratorObject
) userIteratorObject
->release();
430 if (lock
) IOLockFree(lock
);
435 IOUserIterator::reset()
438 assert(OSDynamicCast(OSIterator
, userIteratorObject
));
439 ((OSIterator
*)userIteratorObject
)->reset();
444 IOUserIterator::isValid()
449 assert(OSDynamicCast(OSIterator
, userIteratorObject
));
450 ret
= ((OSIterator
*)userIteratorObject
)->isValid();
457 IOUserIterator::getNextObject()
462 assert(OSDynamicCast(OSIterator
, userIteratorObject
));
463 ret
= ((OSIterator
*)userIteratorObject
)->getNextObject();
469 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
472 // functions called from osfmk/device/iokit_rpc.c
475 iokit_add_reference( io_object_t obj
)
482 iokit_remove_reference( io_object_t obj
)
489 iokit_port_for_object( io_object_t obj
, ipc_kobject_type_t type
)
491 IOMachPort
* machPort
;
494 if( (machPort
= IOMachPort::portForObject( obj
, type
))) {
496 port
= machPort
->port
;
498 iokit_retain_port( port
);
509 iokit_client_died( io_object_t obj
, ipc_port_t
/* port */,
510 ipc_kobject_type_t type
, mach_port_mscount_t
* mscount
)
512 IOUserClient
* client
;
514 IOUserNotification
* notify
;
516 if( !IOMachPort::noMoreSendersForObject( obj
, type
, mscount
))
517 return( kIOReturnNotReady
);
519 if( IKOT_IOKIT_CONNECT
== type
)
521 if( (client
= OSDynamicCast( IOUserClient
, obj
))) {
522 IOStatisticsClientCall();
523 client
->clientDied();
526 else if( IKOT_IOKIT_OBJECT
== type
)
528 if( (map
= OSDynamicCast( IOMemoryMap
, obj
)))
530 else if( (notify
= OSDynamicCast( IOUserNotification
, obj
)))
531 notify
->setNotification( 0 );
534 return( kIOReturnSuccess
);
539 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
541 class IOServiceUserNotification
: public IOUserNotification
543 OSDeclareDefaultStructors(IOServiceUserNotification
)
546 mach_msg_header_t msgHdr
;
547 OSNotificationHeader64 notifyHeader
;
550 enum { kMaxOutstanding
= 1024 };
555 OSObject
* lastEntry
;
560 virtual bool init( mach_port_t port
, natural_t type
,
561 void * reference
, vm_size_t referenceSize
,
563 virtual void free() APPLE_KEXT_OVERRIDE
;
565 static bool _handler( void * target
,
566 void * ref
, IOService
* newService
, IONotifier
* notifier
);
567 virtual bool handler( void * ref
, IOService
* newService
);
569 virtual OSObject
* getNextObject() APPLE_KEXT_OVERRIDE
;
572 class IOServiceMessageUserNotification
: public IOUserNotification
574 OSDeclareDefaultStructors(IOServiceMessageUserNotification
)
577 mach_msg_header_t msgHdr
;
578 mach_msg_body_t msgBody
;
579 mach_msg_port_descriptor_t ports
[1];
580 OSNotificationHeader64 notifyHeader
__attribute__ ((packed
));
590 virtual bool init( mach_port_t port
, natural_t type
,
591 void * reference
, vm_size_t referenceSize
,
595 virtual void free() APPLE_KEXT_OVERRIDE
;
597 static IOReturn
_handler( void * target
, void * ref
,
598 UInt32 messageType
, IOService
* provider
,
599 void * messageArgument
, vm_size_t argSize
);
600 virtual IOReturn
handler( void * ref
,
601 UInt32 messageType
, IOService
* provider
,
602 void * messageArgument
, vm_size_t argSize
);
604 virtual OSObject
* getNextObject() APPLE_KEXT_OVERRIDE
;
607 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
610 #define super IOUserIterator
611 OSDefineMetaClass( IOUserNotification
, IOUserIterator
)
612 OSDefineAbstractStructors( IOUserNotification
, IOUserIterator
)
614 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
616 void IOUserNotification::free( void )
620 assert(OSDynamicCast(IONotifier
, holdNotify
));
621 ((IONotifier
*)holdNotify
)->remove();
624 // can't be in handler now
630 void IOUserNotification::setNotification( IONotifier
* notify
)
632 OSObject
* previousNotify
;
634 IOLockLock( gIOObjectPortLock
);
636 previousNotify
= holdNotify
;
639 IOLockUnlock( gIOObjectPortLock
);
643 assert(OSDynamicCast(IONotifier
, previousNotify
));
644 ((IONotifier
*)previousNotify
)->remove();
648 void IOUserNotification::reset()
653 bool IOUserNotification::isValid()
658 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
661 #define super IOUserNotification
662 OSDefineMetaClassAndStructors(IOServiceUserNotification
, IOUserNotification
)
664 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
666 bool IOServiceUserNotification::init( mach_port_t port
, natural_t type
,
667 void * reference
, vm_size_t referenceSize
,
673 newSet
= OSArray::withCapacity( 1 );
677 if (referenceSize
> sizeof(OSAsyncReference64
))
680 msgSize
= sizeof(PingMsg
) - sizeof(OSAsyncReference64
) + referenceSize
;
681 pingMsg
= (PingMsg
*) IOMalloc( msgSize
);
685 bzero( pingMsg
, msgSize
);
687 pingMsg
->msgHdr
.msgh_remote_port
= port
;
688 pingMsg
->msgHdr
.msgh_bits
= MACH_MSGH_BITS(
689 MACH_MSG_TYPE_COPY_SEND
/*remote*/,
690 MACH_MSG_TYPE_MAKE_SEND
/*local*/);
691 pingMsg
->msgHdr
.msgh_size
= msgSize
;
692 pingMsg
->msgHdr
.msgh_id
= kOSNotificationMessageID
;
694 pingMsg
->notifyHeader
.size
= 0;
695 pingMsg
->notifyHeader
.type
= type
;
696 bcopy( reference
, pingMsg
->notifyHeader
.reference
, referenceSize
);
701 void IOServiceUserNotification::free( void )
706 OSObject
* _lastEntry
;
710 _lastEntry
= lastEntry
;
715 if( _pingMsg
&& _msgSize
) {
716 if (_pingMsg
->msgHdr
.msgh_remote_port
) {
717 iokit_release_port_send(_pingMsg
->msgHdr
.msgh_remote_port
);
719 IOFree(_pingMsg
, _msgSize
);
723 _lastEntry
->release();
729 bool IOServiceUserNotification::_handler( void * target
,
730 void * ref
, IOService
* newService
, IONotifier
* notifier
)
732 return( ((IOServiceUserNotification
*) target
)->handler( ref
, newService
));
735 bool IOServiceUserNotification::handler( void * ref
,
736 IOService
* newService
)
740 ipc_port_t port
= NULL
;
741 bool sendPing
= false;
745 count
= newSet
->getCount();
746 if( count
< kMaxOutstanding
) {
748 newSet
->setObject( newService
);
749 if( (sendPing
= (armed
&& (0 == count
))))
755 if( kIOServiceTerminatedNotificationType
== pingMsg
->notifyHeader
.type
)
756 IOMachPort::setHoldDestroy( newService
, IKOT_IOKIT_OBJECT
);
759 if( (port
= iokit_port_for_object( this, IKOT_IOKIT_OBJECT
) ))
760 pingMsg
->msgHdr
.msgh_local_port
= port
;
762 pingMsg
->msgHdr
.msgh_local_port
= NULL
;
764 kr
= mach_msg_send_from_kernel_with_options( &pingMsg
->msgHdr
,
765 pingMsg
->msgHdr
.msgh_size
,
766 (MACH_SEND_MSG
| MACH_SEND_ALWAYS
| MACH_SEND_IMPORTANCE
),
769 iokit_release_port( port
);
771 if( KERN_SUCCESS
!= kr
)
772 IOLog("%s: mach_msg_send_from_kernel_proper {%x}\n", __FILE__
, kr
);
778 OSObject
* IOServiceUserNotification::getNextObject()
786 lastEntry
->release();
788 count
= newSet
->getCount();
790 result
= newSet
->getObject( count
- 1 );
792 newSet
->removeObject( count
- 1);
804 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
806 OSDefineMetaClassAndStructors(IOServiceMessageUserNotification
, IOUserNotification
)
808 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
810 bool IOServiceMessageUserNotification::init( mach_port_t port
, natural_t type
,
811 void * reference
, vm_size_t referenceSize
, vm_size_t extraSize
,
817 if (referenceSize
> sizeof(OSAsyncReference64
))
820 clientIs64
= client64
;
822 owningPID
= proc_selfpid();
824 extraSize
+= sizeof(IOServiceInterestContent64
);
825 msgSize
= sizeof(PingMsg
) - sizeof(OSAsyncReference64
) + referenceSize
+ extraSize
;
826 pingMsg
= (PingMsg
*) IOMalloc( msgSize
);
830 bzero( pingMsg
, msgSize
);
832 pingMsg
->msgHdr
.msgh_remote_port
= port
;
833 pingMsg
->msgHdr
.msgh_bits
= MACH_MSGH_BITS_COMPLEX
835 MACH_MSG_TYPE_COPY_SEND
/*remote*/,
836 MACH_MSG_TYPE_MAKE_SEND
/*local*/);
837 pingMsg
->msgHdr
.msgh_size
= msgSize
;
838 pingMsg
->msgHdr
.msgh_id
= kOSNotificationMessageID
;
840 pingMsg
->msgBody
.msgh_descriptor_count
= 1;
842 pingMsg
->ports
[0].name
= 0;
843 pingMsg
->ports
[0].disposition
= MACH_MSG_TYPE_MAKE_SEND
;
844 pingMsg
->ports
[0].type
= MACH_MSG_PORT_DESCRIPTOR
;
846 pingMsg
->notifyHeader
.size
= extraSize
;
847 pingMsg
->notifyHeader
.type
= type
;
848 bcopy( reference
, pingMsg
->notifyHeader
.reference
, referenceSize
);
853 void IOServiceMessageUserNotification::free( void )
863 if( _pingMsg
&& _msgSize
) {
864 if (_pingMsg
->msgHdr
.msgh_remote_port
) {
865 iokit_release_port_send(_pingMsg
->msgHdr
.msgh_remote_port
);
867 IOFree( _pingMsg
, _msgSize
);
871 IOReturn
IOServiceMessageUserNotification::_handler( void * target
, void * ref
,
872 UInt32 messageType
, IOService
* provider
,
873 void * argument
, vm_size_t argSize
)
875 return( ((IOServiceMessageUserNotification
*) target
)->handler(
876 ref
, messageType
, provider
, argument
, argSize
));
879 IOReturn
IOServiceMessageUserNotification::handler( void * ref
,
880 UInt32 messageType
, IOService
* provider
,
881 void * messageArgument
, vm_size_t argSize
)
884 ipc_port_t thisPort
, providerPort
;
885 IOServiceInterestContent64
* data
= (IOServiceInterestContent64
*)
886 ((((uint8_t *) pingMsg
) + msgSize
) - pingMsg
->notifyHeader
.size
);
887 // == pingMsg->notifyHeader.content;
889 if (kIOMessageCopyClientID
== messageType
)
891 *((void **) messageArgument
) = OSNumber::withNumber(owningPID
, 32);
892 return (kIOReturnSuccess
);
895 data
->messageType
= messageType
;
899 data
->messageArgument
[0] = (io_user_reference_t
) messageArgument
;
901 argSize
= sizeof(data
->messageArgument
[0]);
904 data
->messageArgument
[0] |= (data
->messageArgument
[0] << 32);
905 argSize
= sizeof(uint32_t);
910 if( argSize
> kIOUserNotifyMaxMessageSize
)
911 argSize
= kIOUserNotifyMaxMessageSize
;
912 bcopy( messageArgument
, data
->messageArgument
, argSize
);
915 // adjust message size for ipc restrictions
917 type
= pingMsg
->notifyHeader
.type
;
918 type
&= ~(kIOKitNoticationMsgSizeMask
<< kIOKitNoticationTypeSizeAdjShift
);
919 type
|= ((argSize
& kIOKitNoticationMsgSizeMask
) << kIOKitNoticationTypeSizeAdjShift
);
920 pingMsg
->notifyHeader
.type
= type
;
921 argSize
= (argSize
+ kIOKitNoticationMsgSizeMask
) & ~kIOKitNoticationMsgSizeMask
;
923 pingMsg
->msgHdr
.msgh_size
= msgSize
- pingMsg
->notifyHeader
.size
924 + sizeof( IOServiceInterestContent64
)
925 - sizeof( data
->messageArgument
)
928 providerPort
= iokit_port_for_object( provider
, IKOT_IOKIT_OBJECT
);
929 pingMsg
->ports
[0].name
= providerPort
;
930 thisPort
= iokit_port_for_object( this, IKOT_IOKIT_OBJECT
);
931 pingMsg
->msgHdr
.msgh_local_port
= thisPort
;
932 kr
= mach_msg_send_from_kernel_with_options( &pingMsg
->msgHdr
,
933 pingMsg
->msgHdr
.msgh_size
,
934 (MACH_SEND_MSG
| MACH_SEND_ALWAYS
| MACH_SEND_IMPORTANCE
),
937 iokit_release_port( thisPort
);
939 iokit_release_port( providerPort
);
941 if( KERN_SUCCESS
!= kr
)
942 IOLog("%s: mach_msg_send_from_kernel_proper {%x}\n", __FILE__
, kr
);
944 return( kIOReturnSuccess
);
947 OSObject
* IOServiceMessageUserNotification::getNextObject()
952 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
955 #define super IOService
956 OSDefineMetaClassAndAbstractStructors( IOUserClient
, IOService
)
958 void IOUserClient::initialize( void )
960 gIOObjectPortLock
= IOLockAlloc();
962 assert( gIOObjectPortLock
);
965 void IOUserClient::setAsyncReference(OSAsyncReference asyncRef
,
966 mach_port_t wakePort
,
967 void *callback
, void *refcon
)
969 asyncRef
[kIOAsyncReservedIndex
] = ((uintptr_t) wakePort
)
970 | (kIOUCAsync0Flags
& asyncRef
[kIOAsyncReservedIndex
]);
971 asyncRef
[kIOAsyncCalloutFuncIndex
] = (uintptr_t) callback
;
972 asyncRef
[kIOAsyncCalloutRefconIndex
] = (uintptr_t) refcon
;
975 void IOUserClient::setAsyncReference64(OSAsyncReference64 asyncRef
,
976 mach_port_t wakePort
,
977 mach_vm_address_t callback
, io_user_reference_t refcon
)
979 asyncRef
[kIOAsyncReservedIndex
] = ((io_user_reference_t
) wakePort
)
980 | (kIOUCAsync0Flags
& asyncRef
[kIOAsyncReservedIndex
]);
981 asyncRef
[kIOAsyncCalloutFuncIndex
] = (io_user_reference_t
) callback
;
982 asyncRef
[kIOAsyncCalloutRefconIndex
] = refcon
;
985 void IOUserClient::setAsyncReference64(OSAsyncReference64 asyncRef
,
986 mach_port_t wakePort
,
987 mach_vm_address_t callback
, io_user_reference_t refcon
, task_t task
)
989 setAsyncReference64(asyncRef
, wakePort
, callback
, refcon
);
990 if (vm_map_is_64bit(get_task_map(task
))) {
991 asyncRef
[kIOAsyncReservedIndex
] |= kIOUCAsync64Flag
;
995 static OSDictionary
* CopyConsoleUser(UInt32 uid
)
998 OSDictionary
* user
= 0;
1000 if ((array
= OSDynamicCast(OSArray
,
1001 IORegistryEntry::getRegistryRoot()->copyProperty(gIOConsoleUsersKey
))))
1003 for (unsigned int idx
= 0;
1004 (user
= OSDynamicCast(OSDictionary
, array
->getObject(idx
)));
1008 if ((num
= OSDynamicCast(OSNumber
, user
->getObject(gIOConsoleSessionUIDKey
)))
1009 && (uid
== num
->unsigned32BitValue())) {
1019 static OSDictionary
* CopyUserOnConsole(void)
1022 OSDictionary
* user
= 0;
1024 if ((array
= OSDynamicCast(OSArray
,
1025 IORegistryEntry::getRegistryRoot()->copyProperty(gIOConsoleUsersKey
))))
1027 for (unsigned int idx
= 0;
1028 (user
= OSDynamicCast(OSDictionary
, array
->getObject(idx
)));
1031 if (kOSBooleanTrue
== user
->getObject(gIOConsoleSessionOnConsoleKey
))
1042 IOReturn
IOUserClient::clientHasAuthorization( task_t task
,
1043 IOService
* service
)
1047 p
= (proc_t
) get_bsdtask_info(task
);
1050 uint64_t authorizationID
;
1052 authorizationID
= proc_uniqueid(p
);
1053 if (authorizationID
)
1055 if (service
->getAuthorizationID() == authorizationID
)
1057 return (kIOReturnSuccess
);
1062 return (kIOReturnNotPermitted
);
1065 IOReturn
IOUserClient::clientHasPrivilege( void * securityToken
,
1066 const char * privilegeName
)
1069 security_token_t token
;
1070 mach_msg_type_number_t count
;
1072 OSDictionary
* user
;
1076 if (!strncmp(privilegeName
, kIOClientPrivilegeForeground
,
1077 sizeof(kIOClientPrivilegeForeground
)))
1079 if (task_is_gpu_denied(current_task()))
1080 return (kIOReturnNotPrivileged
);
1082 return (kIOReturnSuccess
);
1085 if (!strncmp(privilegeName
, kIOClientPrivilegeConsoleSession
,
1086 sizeof(kIOClientPrivilegeConsoleSession
)))
1091 task
= (task_t
) securityToken
;
1093 task
= current_task();
1094 p
= (proc_t
) get_bsdtask_info(task
);
1095 kr
= kIOReturnNotPrivileged
;
1097 if (p
&& (cred
= kauth_cred_proc_ref(p
)))
1099 user
= CopyUserOnConsole();
1103 if ((num
= OSDynamicCast(OSNumber
, user
->getObject(gIOConsoleSessionAuditIDKey
)))
1104 && (cred
->cr_audit
.as_aia_p
->ai_asid
== (au_asid_t
) num
->unsigned32BitValue()))
1106 kr
= kIOReturnSuccess
;
1110 kauth_cred_unref(&cred
);
1115 if ((secureConsole
= !strncmp(privilegeName
, kIOClientPrivilegeSecureConsoleProcess
,
1116 sizeof(kIOClientPrivilegeSecureConsoleProcess
))))
1117 task
= (task_t
)((IOUCProcessToken
*)securityToken
)->token
;
1119 task
= (task_t
)securityToken
;
1121 count
= TASK_SECURITY_TOKEN_COUNT
;
1122 kr
= task_info( task
, TASK_SECURITY_TOKEN
, (task_info_t
) &token
, &count
);
1124 if (KERN_SUCCESS
!= kr
)
1126 else if (!strncmp(privilegeName
, kIOClientPrivilegeAdministrator
,
1127 sizeof(kIOClientPrivilegeAdministrator
))) {
1128 if (0 != token
.val
[0])
1129 kr
= kIOReturnNotPrivileged
;
1130 } else if (!strncmp(privilegeName
, kIOClientPrivilegeLocalUser
,
1131 sizeof(kIOClientPrivilegeLocalUser
))) {
1132 user
= CopyConsoleUser(token
.val
[0]);
1136 kr
= kIOReturnNotPrivileged
;
1137 } else if (secureConsole
|| !strncmp(privilegeName
, kIOClientPrivilegeConsoleUser
,
1138 sizeof(kIOClientPrivilegeConsoleUser
))) {
1139 user
= CopyConsoleUser(token
.val
[0]);
1141 if (user
->getObject(gIOConsoleSessionOnConsoleKey
) != kOSBooleanTrue
)
1142 kr
= kIOReturnNotPrivileged
;
1143 else if ( secureConsole
) {
1144 OSNumber
* pid
= OSDynamicCast(OSNumber
, user
->getObject(gIOConsoleSessionSecureInputPIDKey
));
1145 if ( pid
&& pid
->unsigned32BitValue() != ((IOUCProcessToken
*)securityToken
)->pid
)
1146 kr
= kIOReturnNotPrivileged
;
1151 kr
= kIOReturnNotPrivileged
;
1153 kr
= kIOReturnUnsupported
;
1158 OSObject
* IOUserClient::copyClientEntitlement( task_t task
,
1159 const char * entitlement
)
1161 #define MAX_ENTITLEMENTS_LEN (128 * 1024)
1165 char procname
[MAXCOMLEN
+ 1] = "";
1167 void *entitlements_blob
= NULL
;
1168 char *entitlements_data
= NULL
;
1169 OSObject
*entitlements_obj
= NULL
;
1170 OSDictionary
*entitlements
= NULL
;
1171 OSString
*errorString
= NULL
;
1172 OSObject
*value
= NULL
;
1174 p
= (proc_t
)get_bsdtask_info(task
);
1178 proc_name(pid
, procname
, (int)sizeof(procname
));
1180 if (cs_entitlements_blob_get(p
, &entitlements_blob
, &len
) != 0)
1183 if (len
<= offsetof(CS_GenericBlob
, data
))
1187 * Per <rdar://problem/11593877>, enforce a limit on the amount of XML
1188 * we'll try to parse in the kernel.
1190 len
-= offsetof(CS_GenericBlob
, data
);
1191 if (len
> MAX_ENTITLEMENTS_LEN
) {
1192 IOLog("failed to parse entitlements for %s[%u]: %lu bytes of entitlements exceeds maximum of %u\n", procname
, pid
, len
, MAX_ENTITLEMENTS_LEN
);
1197 * OSUnserializeXML() expects a nul-terminated string, but that isn't
1198 * what is stored in the entitlements blob. Copy the string and
1201 entitlements_data
= (char *)IOMalloc(len
+ 1);
1202 if (entitlements_data
== NULL
)
1204 memcpy(entitlements_data
, ((CS_GenericBlob
*)entitlements_blob
)->data
, len
);
1205 entitlements_data
[len
] = '\0';
1207 entitlements_obj
= OSUnserializeXML(entitlements_data
, len
+ 1, &errorString
);
1208 if (errorString
!= NULL
) {
1209 IOLog("failed to parse entitlements for %s[%u]: %s\n", procname
, pid
, errorString
->getCStringNoCopy());
1212 if (entitlements_obj
== NULL
)
1215 entitlements
= OSDynamicCast(OSDictionary
, entitlements_obj
);
1216 if (entitlements
== NULL
)
1219 /* Fetch the entitlement value from the dictionary. */
1220 value
= entitlements
->getObject(entitlement
);
1225 if (entitlements_data
!= NULL
)
1226 IOFree(entitlements_data
, len
+ 1);
1227 if (entitlements_obj
!= NULL
)
1228 entitlements_obj
->release();
1229 if (errorString
!= NULL
)
1230 errorString
->release();
1234 bool IOUserClient::init()
1236 if (getPropertyTable() || super::init())
1242 bool IOUserClient::init(OSDictionary
* dictionary
)
1244 if (getPropertyTable() || super::init(dictionary
))
1250 bool IOUserClient::initWithTask(task_t owningTask
,
1254 if (getPropertyTable() || super::init())
1260 bool IOUserClient::initWithTask(task_t owningTask
,
1263 OSDictionary
* properties
)
1267 ok
= super::init( properties
);
1268 ok
&= initWithTask( owningTask
, securityID
, type
);
1273 bool IOUserClient::reserve()
1276 reserved
= IONew(ExpansionData
, 1);
1281 setTerminateDefer(NULL
, true);
1282 IOStatisticsRegisterCounter();
1287 void IOUserClient::free()
1290 mappings
->release();
1292 IOStatisticsUnregisterCounter();
1295 IODelete(reserved
, ExpansionData
, 1);
1300 IOReturn
IOUserClient::clientDied( void )
1302 return( clientClose());
1305 IOReturn
IOUserClient::clientClose( void )
1307 return( kIOReturnUnsupported
);
1310 IOService
* IOUserClient::getService( void )
1315 IOReturn
IOUserClient::registerNotificationPort(
1316 mach_port_t
/* port */,
1318 UInt32
/* refCon */)
1320 return( kIOReturnUnsupported
);
1323 IOReturn
IOUserClient::registerNotificationPort(
1326 io_user_reference_t refCon
)
1328 return (registerNotificationPort(port
, type
, (UInt32
) refCon
));
1331 IOReturn
IOUserClient::getNotificationSemaphore( UInt32 notification_type
,
1332 semaphore_t
* semaphore
)
1334 return( kIOReturnUnsupported
);
1337 IOReturn
IOUserClient::connectClient( IOUserClient
* /* client */ )
1339 return( kIOReturnUnsupported
);
1342 IOReturn
IOUserClient::clientMemoryForType( UInt32 type
,
1343 IOOptionBits
* options
,
1344 IOMemoryDescriptor
** memory
)
1346 return( kIOReturnUnsupported
);
1350 IOMemoryMap
* IOUserClient::mapClientMemory(
1353 IOOptionBits mapFlags
,
1354 IOVirtualAddress atAddress
)
1360 IOMemoryMap
* IOUserClient::mapClientMemory64(
1363 IOOptionBits mapFlags
,
1364 mach_vm_address_t atAddress
)
1367 IOOptionBits options
= 0;
1368 IOMemoryDescriptor
* memory
;
1369 IOMemoryMap
* map
= 0;
1371 err
= clientMemoryForType( (UInt32
) type
, &options
, &memory
);
1373 if( memory
&& (kIOReturnSuccess
== err
)) {
1375 options
= (options
& ~kIOMapUserOptionsMask
)
1376 | (mapFlags
& kIOMapUserOptionsMask
);
1377 map
= memory
->createMappingInTask( task
, atAddress
, options
);
1384 IOReturn
IOUserClient::exportObjectToClient(task_t task
,
1385 OSObject
*obj
, io_object_t
*clientObj
)
1387 mach_port_name_t name
;
1389 name
= IOMachPort::makeSendRightForTask( task
, obj
, IKOT_IOKIT_OBJECT
);
1391 *(mach_port_name_t
*)clientObj
= name
;
1392 return kIOReturnSuccess
;
1395 IOExternalMethod
* IOUserClient::getExternalMethodForIndex( UInt32
/* index */)
1400 IOExternalAsyncMethod
* IOUserClient::getExternalAsyncMethodForIndex( UInt32
/* index */)
1405 IOExternalMethod
* IOUserClient::
1406 getTargetAndMethodForIndex(IOService
**targetP
, UInt32 index
)
1408 IOExternalMethod
*method
= getExternalMethodForIndex(index
);
1411 *targetP
= (IOService
*) method
->object
;
1416 IOExternalAsyncMethod
* IOUserClient::
1417 getAsyncTargetAndMethodForIndex(IOService
** targetP
, UInt32 index
)
1419 IOExternalAsyncMethod
*method
= getExternalAsyncMethodForIndex(index
);
1422 *targetP
= (IOService
*) method
->object
;
1427 IOExternalTrap
* IOUserClient::
1428 getExternalTrapForIndex(UInt32 index
)
1433 IOExternalTrap
* IOUserClient::
1434 getTargetAndTrapForIndex(IOService
** targetP
, UInt32 index
)
1436 IOExternalTrap
*trap
= getExternalTrapForIndex(index
);
1439 *targetP
= trap
->object
;
1445 IOReturn
IOUserClient::releaseAsyncReference64(OSAsyncReference64 reference
)
1448 port
= (mach_port_t
) (reference
[0] & ~kIOUCAsync0Flags
);
1450 if (MACH_PORT_NULL
!= port
)
1451 iokit_release_port_send(port
);
1453 return (kIOReturnSuccess
);
1456 IOReturn
IOUserClient::releaseNotificationPort(mach_port_t port
)
1458 if (MACH_PORT_NULL
!= port
)
1459 iokit_release_port_send(port
);
1461 return (kIOReturnSuccess
);
1464 IOReturn
IOUserClient::sendAsyncResult(OSAsyncReference reference
,
1465 IOReturn result
, void *args
[], UInt32 numArgs
)
1467 OSAsyncReference64 reference64
;
1468 io_user_reference_t args64
[kMaxAsyncArgs
];
1471 if (numArgs
> kMaxAsyncArgs
)
1472 return kIOReturnMessageTooLarge
;
1474 for (idx
= 0; idx
< kOSAsyncRef64Count
; idx
++)
1475 reference64
[idx
] = REF64(reference
[idx
]);
1477 for (idx
= 0; idx
< numArgs
; idx
++)
1478 args64
[idx
] = REF64(args
[idx
]);
1480 return (sendAsyncResult64(reference64
, result
, args64
, numArgs
));
1483 IOReturn
IOUserClient::sendAsyncResult64WithOptions(OSAsyncReference64 reference
,
1484 IOReturn result
, io_user_reference_t args
[], UInt32 numArgs
, IOOptionBits options
)
1486 return _sendAsyncResult64(reference
, result
, args
, numArgs
, options
);
1489 IOReturn
IOUserClient::sendAsyncResult64(OSAsyncReference64 reference
,
1490 IOReturn result
, io_user_reference_t args
[], UInt32 numArgs
)
1492 return _sendAsyncResult64(reference
, result
, args
, numArgs
, 0);
1495 IOReturn
IOUserClient::_sendAsyncResult64(OSAsyncReference64 reference
,
1496 IOReturn result
, io_user_reference_t args
[], UInt32 numArgs
, IOOptionBits options
)
1500 mach_msg_header_t msgHdr
;
1505 OSNotificationHeader notifyHdr
;
1506 IOAsyncCompletionContent asyncContent
;
1507 uint32_t args
[kMaxAsyncArgs
];
1511 OSNotificationHeader64 notifyHdr
;
1512 IOAsyncCompletionContent asyncContent
;
1513 io_user_reference_t args
[kMaxAsyncArgs
] __attribute__ ((packed
));
1518 mach_port_t replyPort
;
1521 // If no reply port, do nothing.
1522 replyPort
= (mach_port_t
) (reference
[0] & ~kIOUCAsync0Flags
);
1523 if (replyPort
== MACH_PORT_NULL
)
1524 return kIOReturnSuccess
;
1526 if (numArgs
> kMaxAsyncArgs
)
1527 return kIOReturnMessageTooLarge
;
1529 replyMsg
.msgHdr
.msgh_bits
= MACH_MSGH_BITS(MACH_MSG_TYPE_COPY_SEND
/*remote*/,
1531 replyMsg
.msgHdr
.msgh_remote_port
= replyPort
;
1532 replyMsg
.msgHdr
.msgh_local_port
= 0;
1533 replyMsg
.msgHdr
.msgh_id
= kOSNotificationMessageID
;
1534 if (kIOUCAsync64Flag
& reference
[0])
1536 replyMsg
.msgHdr
.msgh_size
=
1537 sizeof(replyMsg
.msgHdr
) + sizeof(replyMsg
.m
.msg64
)
1538 - (kMaxAsyncArgs
- numArgs
) * sizeof(io_user_reference_t
);
1539 replyMsg
.m
.msg64
.notifyHdr
.size
= sizeof(IOAsyncCompletionContent
)
1540 + numArgs
* sizeof(io_user_reference_t
);
1541 replyMsg
.m
.msg64
.notifyHdr
.type
= kIOAsyncCompletionNotificationType
;
1542 bcopy(reference
, replyMsg
.m
.msg64
.notifyHdr
.reference
, sizeof(OSAsyncReference64
));
1544 replyMsg
.m
.msg64
.asyncContent
.result
= result
;
1546 bcopy(args
, replyMsg
.m
.msg64
.args
, numArgs
* sizeof(io_user_reference_t
));
1552 replyMsg
.msgHdr
.msgh_size
=
1553 sizeof(replyMsg
.msgHdr
) + sizeof(replyMsg
.m
.msg32
)
1554 - (kMaxAsyncArgs
- numArgs
) * sizeof(uint32_t);
1556 replyMsg
.m
.msg32
.notifyHdr
.size
= sizeof(IOAsyncCompletionContent
)
1557 + numArgs
* sizeof(uint32_t);
1558 replyMsg
.m
.msg32
.notifyHdr
.type
= kIOAsyncCompletionNotificationType
;
1560 for (idx
= 0; idx
< kOSAsyncRefCount
; idx
++)
1561 replyMsg
.m
.msg32
.notifyHdr
.reference
[idx
] = REF32(reference
[idx
]);
1563 replyMsg
.m
.msg32
.asyncContent
.result
= result
;
1565 for (idx
= 0; idx
< numArgs
; idx
++)
1566 replyMsg
.m
.msg32
.args
[idx
] = REF32(args
[idx
]);
1569 if ((options
& kIOUserNotifyOptionCanDrop
) != 0) {
1570 kr
= mach_msg_send_from_kernel_with_options( &replyMsg
.msgHdr
,
1571 replyMsg
.msgHdr
.msgh_size
, MACH_SEND_TIMEOUT
, MACH_MSG_TIMEOUT_NONE
);
1573 /* Fail on full queue. */
1574 kr
= mach_msg_send_from_kernel_proper( &replyMsg
.msgHdr
,
1575 replyMsg
.msgHdr
.msgh_size
);
1577 if ((KERN_SUCCESS
!= kr
) && (MACH_SEND_TIMED_OUT
!= kr
))
1578 IOLog("%s: mach_msg_send_from_kernel_proper {%x}\n", __FILE__
, kr
);
1583 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1587 #define CHECK(cls,obj,out) \
1589 if( !(out = OSDynamicCast( cls, obj))) \
1590 return( kIOReturnBadArgument )
1592 #define CHECKLOCKED(cls,obj,out) \
1593 IOUserIterator * oIter; \
1595 if( !(oIter = OSDynamicCast(IOUserIterator, obj))) \
1596 return (kIOReturnBadArgument); \
1597 if( !(out = OSDynamicCast(cls, oIter->userIteratorObject))) \
1598 return (kIOReturnBadArgument)
1600 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1602 // Create a vm_map_copy_t or kalloc'ed data for memory
1603 // to be copied out. ipc will free after the copyout.
1605 static kern_return_t
copyoutkdata( const void * data
, vm_size_t len
,
1606 io_buf_ptr_t
* buf
)
1611 err
= vm_map_copyin( kernel_map
, CAST_USER_ADDR_T(data
), len
,
1612 false /* src_destroy */, ©
);
1614 assert( err
== KERN_SUCCESS
);
1615 if( err
== KERN_SUCCESS
)
1616 *buf
= (char *) copy
;
1621 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1623 /* Routine io_server_version */
1624 kern_return_t
is_io_server_version(
1625 mach_port_t master_port
,
1628 *version
= IOKIT_SERVER_VERSION
;
1629 return (kIOReturnSuccess
);
1632 /* Routine io_object_get_class */
1633 kern_return_t
is_io_object_get_class(
1635 io_name_t className
)
1637 const OSMetaClass
* my_obj
= NULL
;
1638 const char * my_class_name
= NULL
;
1641 return( kIOReturnBadArgument
);
1643 if ( !my_class_name
) {
1644 my_obj
= object
->getMetaClass();
1646 return (kIOReturnNotFound
);
1649 my_class_name
= my_obj
->getClassName();
1652 strlcpy( className
, my_class_name
, sizeof(io_name_t
));
1654 return( kIOReturnSuccess
);
1657 /* Routine io_object_get_superclass */
1658 kern_return_t
is_io_object_get_superclass(
1659 mach_port_t master_port
,
1661 io_name_t class_name
)
1663 const OSMetaClass
* my_obj
= NULL
;
1664 const OSMetaClass
* superclass
= NULL
;
1665 const OSSymbol
*my_name
= NULL
;
1666 const char *my_cstr
= NULL
;
1668 if (!obj_name
|| !class_name
)
1669 return (kIOReturnBadArgument
);
1671 if( master_port
!= master_device_port
)
1672 return( kIOReturnNotPrivileged
);
1674 my_name
= OSSymbol::withCString(obj_name
);
1677 my_obj
= OSMetaClass::getMetaClassWithName(my_name
);
1681 superclass
= my_obj
->getSuperClass();
1685 return( kIOReturnNotFound
);
1688 my_cstr
= superclass
->getClassName();
1691 strlcpy(class_name
, my_cstr
, sizeof(io_name_t
));
1692 return( kIOReturnSuccess
);
1694 return (kIOReturnNotFound
);
1697 /* Routine io_object_get_bundle_identifier */
1698 kern_return_t
is_io_object_get_bundle_identifier(
1699 mach_port_t master_port
,
1701 io_name_t bundle_name
)
1703 const OSMetaClass
* my_obj
= NULL
;
1704 const OSSymbol
*my_name
= NULL
;
1705 const OSSymbol
*identifier
= NULL
;
1706 const char *my_cstr
= NULL
;
1708 if (!obj_name
|| !bundle_name
)
1709 return (kIOReturnBadArgument
);
1711 if( master_port
!= master_device_port
)
1712 return( kIOReturnNotPrivileged
);
1714 my_name
= OSSymbol::withCString(obj_name
);
1717 my_obj
= OSMetaClass::getMetaClassWithName(my_name
);
1722 identifier
= my_obj
->getKmodName();
1725 return( kIOReturnNotFound
);
1728 my_cstr
= identifier
->getCStringNoCopy();
1730 strlcpy(bundle_name
, identifier
->getCStringNoCopy(), sizeof(io_name_t
));
1731 return( kIOReturnSuccess
);
1734 return (kIOReturnBadArgument
);
1737 /* Routine io_object_conforms_to */
1738 kern_return_t
is_io_object_conforms_to(
1740 io_name_t className
,
1741 boolean_t
*conforms
)
1744 return( kIOReturnBadArgument
);
1746 *conforms
= (0 != object
->metaCast( className
));
1748 return( kIOReturnSuccess
);
1751 /* Routine io_object_get_retain_count */
1752 kern_return_t
is_io_object_get_retain_count(
1754 uint32_t *retainCount
)
1757 return( kIOReturnBadArgument
);
1759 *retainCount
= object
->getRetainCount();
1760 return( kIOReturnSuccess
);
1763 /* Routine io_iterator_next */
1764 kern_return_t
is_io_iterator_next(
1765 io_object_t iterator
,
1766 io_object_t
*object
)
1771 CHECK( OSIterator
, iterator
, iter
);
1773 obj
= iter
->getNextObject();
1777 ret
= kIOReturnSuccess
;
1779 ret
= kIOReturnNoDevice
;
1784 /* Routine io_iterator_reset */
1785 kern_return_t
is_io_iterator_reset(
1786 io_object_t iterator
)
1788 CHECK( OSIterator
, iterator
, iter
);
1792 return( kIOReturnSuccess
);
1795 /* Routine io_iterator_is_valid */
1796 kern_return_t
is_io_iterator_is_valid(
1797 io_object_t iterator
,
1798 boolean_t
*is_valid
)
1800 CHECK( OSIterator
, iterator
, iter
);
1802 *is_valid
= iter
->isValid();
1804 return( kIOReturnSuccess
);
1808 static kern_return_t
internal_io_service_match_property_table(
1809 io_service_t _service
,
1810 const char * matching
,
1811 mach_msg_type_number_t matching_size
,
1814 CHECK( IOService
, _service
, service
);
1818 OSDictionary
* dict
;
1820 obj
= matching_size
? OSUnserializeXML(matching
, matching_size
)
1821 : OSUnserializeXML(matching
);
1822 if( (dict
= OSDynamicCast( OSDictionary
, obj
))) {
1824 *matches
= service
->passiveMatch( dict
);
1825 kr
= kIOReturnSuccess
;
1827 kr
= kIOReturnBadArgument
;
1835 /* Routine io_service_match_property_table */
1836 kern_return_t
is_io_service_match_property_table(
1837 io_service_t service
,
1838 io_string_t matching
,
1839 boolean_t
*matches
)
1841 return (internal_io_service_match_property_table(service
, matching
, 0, matches
));
1845 /* Routine io_service_match_property_table_ool */
1846 kern_return_t
is_io_service_match_property_table_ool(
1847 io_object_t service
,
1848 io_buf_ptr_t matching
,
1849 mach_msg_type_number_t matchingCnt
,
1850 kern_return_t
*result
,
1851 boolean_t
*matches
)
1855 vm_map_offset_t map_data
;
1857 kr
= vm_map_copyout( kernel_map
, &map_data
, (vm_map_copy_t
) matching
);
1858 data
= CAST_DOWN(vm_offset_t
, map_data
);
1860 if( KERN_SUCCESS
== kr
) {
1861 // must return success after vm_map_copyout() succeeds
1862 *result
= internal_io_service_match_property_table(service
,
1863 (const char *)data
, matchingCnt
, matches
);
1864 vm_deallocate( kernel_map
, data
, matchingCnt
);
1870 /* Routine io_service_match_property_table_bin */
1871 kern_return_t
is_io_service_match_property_table_bin(
1872 io_object_t service
,
1873 io_struct_inband_t matching
,
1874 mach_msg_type_number_t matchingCnt
,
1877 return (internal_io_service_match_property_table(service
, matching
, matchingCnt
, matches
));
1880 static kern_return_t
internal_io_service_get_matching_services(
1881 mach_port_t master_port
,
1882 const char * matching
,
1883 mach_msg_type_number_t matching_size
,
1884 io_iterator_t
*existing
)
1888 OSDictionary
* dict
;
1890 if( master_port
!= master_device_port
)
1891 return( kIOReturnNotPrivileged
);
1893 obj
= matching_size
? OSUnserializeXML(matching
, matching_size
)
1894 : OSUnserializeXML(matching
);
1895 if( (dict
= OSDynamicCast( OSDictionary
, obj
))) {
1896 *existing
= IOUserIterator::withIterator(IOService::getMatchingServices( dict
));
1897 kr
= kIOReturnSuccess
;
1899 kr
= kIOReturnBadArgument
;
1907 /* Routine io_service_get_matching_services */
1908 kern_return_t
is_io_service_get_matching_services(
1909 mach_port_t master_port
,
1910 io_string_t matching
,
1911 io_iterator_t
*existing
)
1913 return (internal_io_service_get_matching_services(master_port
, matching
, 0, existing
));
1916 /* Routine io_service_get_matching_services_ool */
1917 kern_return_t
is_io_service_get_matching_services_ool(
1918 mach_port_t master_port
,
1919 io_buf_ptr_t matching
,
1920 mach_msg_type_number_t matchingCnt
,
1921 kern_return_t
*result
,
1922 io_object_t
*existing
)
1926 vm_map_offset_t map_data
;
1928 kr
= vm_map_copyout( kernel_map
, &map_data
, (vm_map_copy_t
) matching
);
1929 data
= CAST_DOWN(vm_offset_t
, map_data
);
1931 if( KERN_SUCCESS
== kr
) {
1932 // must return success after vm_map_copyout() succeeds
1933 *result
= internal_io_service_get_matching_services(master_port
,
1934 (const char *) data
, matchingCnt
, existing
);
1935 vm_deallocate( kernel_map
, data
, matchingCnt
);
1941 /* Routine io_service_get_matching_services_bin */
1942 kern_return_t
is_io_service_get_matching_services_bin(
1943 mach_port_t master_port
,
1944 io_struct_inband_t matching
,
1945 mach_msg_type_number_t matchingCnt
,
1946 io_object_t
*existing
)
1948 return (internal_io_service_get_matching_services(master_port
, matching
, matchingCnt
, existing
));
1952 static kern_return_t
internal_io_service_get_matching_service(
1953 mach_port_t master_port
,
1954 const char * matching
,
1955 mach_msg_type_number_t matching_size
,
1956 io_service_t
*service
)
1960 OSDictionary
* dict
;
1962 if( master_port
!= master_device_port
)
1963 return( kIOReturnNotPrivileged
);
1965 obj
= matching_size
? OSUnserializeXML(matching
, matching_size
)
1966 : OSUnserializeXML(matching
);
1967 if( (dict
= OSDynamicCast( OSDictionary
, obj
))) {
1968 *service
= IOService::copyMatchingService( dict
);
1969 kr
= *service
? kIOReturnSuccess
: kIOReturnNotFound
;
1971 kr
= kIOReturnBadArgument
;
1979 /* Routine io_service_get_matching_service */
1980 kern_return_t
is_io_service_get_matching_service(
1981 mach_port_t master_port
,
1982 io_string_t matching
,
1983 io_service_t
*service
)
1985 return (internal_io_service_get_matching_service(master_port
, matching
, 0, service
));
1988 /* Routine io_service_get_matching_services_ool */
1989 kern_return_t
is_io_service_get_matching_service_ool(
1990 mach_port_t master_port
,
1991 io_buf_ptr_t matching
,
1992 mach_msg_type_number_t matchingCnt
,
1993 kern_return_t
*result
,
1994 io_object_t
*service
)
1998 vm_map_offset_t map_data
;
2000 kr
= vm_map_copyout( kernel_map
, &map_data
, (vm_map_copy_t
) matching
);
2001 data
= CAST_DOWN(vm_offset_t
, map_data
);
2003 if( KERN_SUCCESS
== kr
) {
2004 // must return success after vm_map_copyout() succeeds
2005 *result
= internal_io_service_get_matching_service(master_port
,
2006 (const char *) data
, matchingCnt
, service
);
2007 vm_deallocate( kernel_map
, data
, matchingCnt
);
2013 /* Routine io_service_get_matching_service_bin */
2014 kern_return_t
is_io_service_get_matching_service_bin(
2015 mach_port_t master_port
,
2016 io_struct_inband_t matching
,
2017 mach_msg_type_number_t matchingCnt
,
2018 io_object_t
*service
)
2020 return (internal_io_service_get_matching_service(master_port
, matching
, matchingCnt
, service
));
2023 static kern_return_t
internal_io_service_add_notification(
2024 mach_port_t master_port
,
2025 io_name_t notification_type
,
2026 const char * matching
,
2027 size_t matching_size
,
2030 vm_size_t referenceSize
,
2032 io_object_t
* notification
)
2034 IOServiceUserNotification
* userNotify
= 0;
2035 IONotifier
* notify
= 0;
2036 const OSSymbol
* sym
;
2037 OSDictionary
* dict
;
2039 unsigned long int userMsgType
;
2041 if( master_port
!= master_device_port
)
2042 return( kIOReturnNotPrivileged
);
2045 err
= kIOReturnNoResources
;
2047 if( !(sym
= OSSymbol::withCString( notification_type
)))
2048 err
= kIOReturnNoResources
;
2052 dict
= OSDynamicCast(OSDictionary
, OSUnserializeXML(matching
, matching_size
));
2056 dict
= OSDynamicCast(OSDictionary
, OSUnserializeXML(matching
));
2060 err
= kIOReturnBadArgument
;
2064 if( (sym
== gIOPublishNotification
)
2065 || (sym
== gIOFirstPublishNotification
))
2066 userMsgType
= kIOServicePublishNotificationType
;
2067 else if( (sym
== gIOMatchedNotification
)
2068 || (sym
== gIOFirstMatchNotification
))
2069 userMsgType
= kIOServiceMatchedNotificationType
;
2070 else if( sym
== gIOTerminatedNotification
)
2071 userMsgType
= kIOServiceTerminatedNotificationType
;
2073 userMsgType
= kLastIOKitNotificationType
;
2075 userNotify
= new IOServiceUserNotification
;
2077 if( userNotify
&& !userNotify
->init( port
, userMsgType
,
2078 reference
, referenceSize
, client64
)) {
2079 iokit_release_port_send(port
);
2080 userNotify
->release();
2086 notify
= IOService::addMatchingNotification( sym
, dict
,
2087 &userNotify
->_handler
, userNotify
);
2089 *notification
= userNotify
;
2090 userNotify
->setNotification( notify
);
2091 err
= kIOReturnSuccess
;
2093 err
= kIOReturnUnsupported
;
2106 /* Routine io_service_add_notification */
2107 kern_return_t
is_io_service_add_notification(
2108 mach_port_t master_port
,
2109 io_name_t notification_type
,
2110 io_string_t matching
,
2112 io_async_ref_t reference
,
2113 mach_msg_type_number_t referenceCnt
,
2114 io_object_t
* notification
)
2116 return (internal_io_service_add_notification(master_port
, notification_type
,
2117 matching
, 0, port
, &reference
[0], sizeof(io_async_ref_t
),
2118 false, notification
));
2121 /* Routine io_service_add_notification_64 */
2122 kern_return_t
is_io_service_add_notification_64(
2123 mach_port_t master_port
,
2124 io_name_t notification_type
,
2125 io_string_t matching
,
2126 mach_port_t wake_port
,
2127 io_async_ref64_t reference
,
2128 mach_msg_type_number_t referenceCnt
,
2129 io_object_t
*notification
)
2131 return (internal_io_service_add_notification(master_port
, notification_type
,
2132 matching
, 0, wake_port
, &reference
[0], sizeof(io_async_ref64_t
),
2133 true, notification
));
2136 /* Routine io_service_add_notification_bin */
2137 kern_return_t is_io_service_add_notification_bin
2139 mach_port_t master_port
,
2140 io_name_t notification_type
,
2141 io_struct_inband_t matching
,
2142 mach_msg_type_number_t matchingCnt
,
2143 mach_port_t wake_port
,
2144 io_async_ref_t reference
,
2145 mach_msg_type_number_t referenceCnt
,
2146 io_object_t
*notification
)
2148 return (internal_io_service_add_notification(master_port
, notification_type
,
2149 matching
, matchingCnt
, wake_port
, &reference
[0], sizeof(io_async_ref_t
),
2150 false, notification
));
2153 /* Routine io_service_add_notification_bin_64 */
2154 kern_return_t is_io_service_add_notification_bin_64
2156 mach_port_t master_port
,
2157 io_name_t notification_type
,
2158 io_struct_inband_t matching
,
2159 mach_msg_type_number_t matchingCnt
,
2160 mach_port_t wake_port
,
2161 io_async_ref64_t reference
,
2162 mach_msg_type_number_t referenceCnt
,
2163 io_object_t
*notification
)
2165 return (internal_io_service_add_notification(master_port
, notification_type
,
2166 matching
, matchingCnt
, wake_port
, &reference
[0], sizeof(io_async_ref64_t
),
2167 true, notification
));
2170 static kern_return_t
internal_io_service_add_notification_ool(
2171 mach_port_t master_port
,
2172 io_name_t notification_type
,
2173 io_buf_ptr_t matching
,
2174 mach_msg_type_number_t matchingCnt
,
2175 mach_port_t wake_port
,
2177 vm_size_t referenceSize
,
2179 kern_return_t
*result
,
2180 io_object_t
*notification
)
2184 vm_map_offset_t map_data
;
2186 kr
= vm_map_copyout( kernel_map
, &map_data
, (vm_map_copy_t
) matching
);
2187 data
= CAST_DOWN(vm_offset_t
, map_data
);
2189 if( KERN_SUCCESS
== kr
) {
2190 // must return success after vm_map_copyout() succeeds
2191 *result
= internal_io_service_add_notification( master_port
, notification_type
,
2192 (char *) data
, matchingCnt
, wake_port
, reference
, referenceSize
, client64
, notification
);
2193 vm_deallocate( kernel_map
, data
, matchingCnt
);
2199 /* Routine io_service_add_notification_ool */
2200 kern_return_t
is_io_service_add_notification_ool(
2201 mach_port_t master_port
,
2202 io_name_t notification_type
,
2203 io_buf_ptr_t matching
,
2204 mach_msg_type_number_t matchingCnt
,
2205 mach_port_t wake_port
,
2206 io_async_ref_t reference
,
2207 mach_msg_type_number_t referenceCnt
,
2208 kern_return_t
*result
,
2209 io_object_t
*notification
)
2211 return (internal_io_service_add_notification_ool(master_port
, notification_type
,
2212 matching
, matchingCnt
, wake_port
, &reference
[0], sizeof(io_async_ref_t
),
2213 false, result
, notification
));
2216 /* Routine io_service_add_notification_ool_64 */
2217 kern_return_t
is_io_service_add_notification_ool_64(
2218 mach_port_t master_port
,
2219 io_name_t notification_type
,
2220 io_buf_ptr_t matching
,
2221 mach_msg_type_number_t matchingCnt
,
2222 mach_port_t wake_port
,
2223 io_async_ref64_t reference
,
2224 mach_msg_type_number_t referenceCnt
,
2225 kern_return_t
*result
,
2226 io_object_t
*notification
)
2228 return (internal_io_service_add_notification_ool(master_port
, notification_type
,
2229 matching
, matchingCnt
, wake_port
, &reference
[0], sizeof(io_async_ref64_t
),
2230 true, result
, notification
));
2233 /* Routine io_service_add_notification_old */
2234 kern_return_t
is_io_service_add_notification_old(
2235 mach_port_t master_port
,
2236 io_name_t notification_type
,
2237 io_string_t matching
,
2239 // for binary compatibility reasons, this must be natural_t for ILP32
2241 io_object_t
* notification
)
2243 return( is_io_service_add_notification( master_port
, notification_type
,
2244 matching
, port
, &ref
, 1, notification
));
2248 static kern_return_t
internal_io_service_add_interest_notification(
2249 io_object_t _service
,
2250 io_name_t type_of_interest
,
2253 vm_size_t referenceSize
,
2255 io_object_t
* notification
)
2258 IOServiceMessageUserNotification
* userNotify
= 0;
2259 IONotifier
* notify
= 0;
2260 const OSSymbol
* sym
;
2263 CHECK( IOService
, _service
, service
);
2265 err
= kIOReturnNoResources
;
2266 if( (sym
= OSSymbol::withCString( type_of_interest
))) do {
2268 userNotify
= new IOServiceMessageUserNotification
;
2270 if( userNotify
&& !userNotify
->init( port
, kIOServiceMessageNotificationType
,
2271 reference
, referenceSize
,
2272 kIOUserNotifyMaxMessageSize
,
2274 iokit_release_port_send(port
);
2275 userNotify
->release();
2281 notify
= service
->registerInterest( sym
,
2282 &userNotify
->_handler
, userNotify
);
2284 *notification
= userNotify
;
2285 userNotify
->setNotification( notify
);
2286 err
= kIOReturnSuccess
;
2288 err
= kIOReturnUnsupported
;
2297 /* Routine io_service_add_message_notification */
2298 kern_return_t
is_io_service_add_interest_notification(
2299 io_object_t service
,
2300 io_name_t type_of_interest
,
2302 io_async_ref_t reference
,
2303 mach_msg_type_number_t referenceCnt
,
2304 io_object_t
* notification
)
2306 return (internal_io_service_add_interest_notification(service
, type_of_interest
,
2307 port
, &reference
[0], sizeof(io_async_ref_t
), false, notification
));
2310 /* Routine io_service_add_interest_notification_64 */
2311 kern_return_t
is_io_service_add_interest_notification_64(
2312 io_object_t service
,
2313 io_name_t type_of_interest
,
2314 mach_port_t wake_port
,
2315 io_async_ref64_t reference
,
2316 mach_msg_type_number_t referenceCnt
,
2317 io_object_t
*notification
)
2319 return (internal_io_service_add_interest_notification(service
, type_of_interest
,
2320 wake_port
, &reference
[0], sizeof(io_async_ref64_t
), true, notification
));
2324 /* Routine io_service_acknowledge_notification */
2325 kern_return_t
is_io_service_acknowledge_notification(
2326 io_object_t _service
,
2327 natural_t notify_ref
,
2328 natural_t response
)
2330 CHECK( IOService
, _service
, service
);
2332 return( service
->acknowledgeNotification( (IONotificationRef
)(uintptr_t) notify_ref
,
2333 (IOOptionBits
) response
));
2337 /* Routine io_connect_get_semaphore */
2338 kern_return_t
is_io_connect_get_notification_semaphore(
2339 io_connect_t connection
,
2340 natural_t notification_type
,
2341 semaphore_t
*semaphore
)
2343 CHECK( IOUserClient
, connection
, client
);
2345 IOStatisticsClientCall();
2346 return( client
->getNotificationSemaphore( (UInt32
) notification_type
,
2350 /* Routine io_registry_get_root_entry */
2351 kern_return_t
is_io_registry_get_root_entry(
2352 mach_port_t master_port
,
2355 IORegistryEntry
* entry
;
2357 if( master_port
!= master_device_port
)
2358 return( kIOReturnNotPrivileged
);
2360 entry
= IORegistryEntry::getRegistryRoot();
2365 return( kIOReturnSuccess
);
2368 /* Routine io_registry_create_iterator */
2369 kern_return_t
is_io_registry_create_iterator(
2370 mach_port_t master_port
,
2373 io_object_t
*iterator
)
2375 if( master_port
!= master_device_port
)
2376 return( kIOReturnNotPrivileged
);
2378 *iterator
= IOUserIterator::withIterator(
2379 IORegistryIterator::iterateOver(
2380 IORegistryEntry::getPlane( plane
), options
));
2382 return( *iterator
? kIOReturnSuccess
: kIOReturnBadArgument
);
2385 /* Routine io_registry_entry_create_iterator */
2386 kern_return_t
is_io_registry_entry_create_iterator(
2387 io_object_t registry_entry
,
2390 io_object_t
*iterator
)
2392 CHECK( IORegistryEntry
, registry_entry
, entry
);
2394 *iterator
= IOUserIterator::withIterator(
2395 IORegistryIterator::iterateOver( entry
,
2396 IORegistryEntry::getPlane( plane
), options
));
2398 return( *iterator
? kIOReturnSuccess
: kIOReturnBadArgument
);
2401 /* Routine io_registry_iterator_enter */
2402 kern_return_t
is_io_registry_iterator_enter_entry(
2403 io_object_t iterator
)
2405 CHECKLOCKED( IORegistryIterator
, iterator
, iter
);
2407 IOLockLock(oIter
->lock
);
2409 IOLockUnlock(oIter
->lock
);
2411 return( kIOReturnSuccess
);
2414 /* Routine io_registry_iterator_exit */
2415 kern_return_t
is_io_registry_iterator_exit_entry(
2416 io_object_t iterator
)
2420 CHECKLOCKED( IORegistryIterator
, iterator
, iter
);
2422 IOLockLock(oIter
->lock
);
2423 didIt
= iter
->exitEntry();
2424 IOLockUnlock(oIter
->lock
);
2426 return( didIt
? kIOReturnSuccess
: kIOReturnNoDevice
);
2429 /* Routine io_registry_entry_from_path */
2430 kern_return_t
is_io_registry_entry_from_path(
2431 mach_port_t master_port
,
2433 io_object_t
*registry_entry
)
2435 IORegistryEntry
* entry
;
2437 if( master_port
!= master_device_port
)
2438 return( kIOReturnNotPrivileged
);
2440 entry
= IORegistryEntry::fromPath( path
);
2442 *registry_entry
= entry
;
2444 return( kIOReturnSuccess
);
2448 /* Routine io_registry_entry_from_path */
2449 kern_return_t
is_io_registry_entry_from_path_ool(
2450 mach_port_t master_port
,
2451 io_string_inband_t path
,
2452 io_buf_ptr_t path_ool
,
2453 mach_msg_type_number_t path_oolCnt
,
2454 kern_return_t
*result
,
2455 io_object_t
*registry_entry
)
2457 IORegistryEntry
* entry
;
2458 vm_map_offset_t map_data
;
2463 if (master_port
!= master_device_port
) return(kIOReturnNotPrivileged
);
2467 res
= err
= KERN_SUCCESS
;
2468 if (path
[0]) cpath
= path
;
2471 if (!path_oolCnt
) return(kIOReturnBadArgument
);
2472 if (path_oolCnt
> (sizeof(io_struct_inband_t
) * 1024)) return(kIOReturnMessageTooLarge
);
2474 err
= vm_map_copyout(kernel_map
, &map_data
, (vm_map_copy_t
) path_ool
);
2475 if (KERN_SUCCESS
== err
)
2477 // must return success to mig after vm_map_copyout() succeeds, so result is actual
2478 cpath
= CAST_DOWN(const char *, map_data
);
2479 if (cpath
[path_oolCnt
- 1]) res
= kIOReturnBadArgument
;
2483 if ((KERN_SUCCESS
== err
) && (KERN_SUCCESS
== res
))
2485 entry
= IORegistryEntry::fromPath(cpath
);
2486 res
= entry
? kIOReturnSuccess
: kIOReturnNotFound
;
2489 if (map_data
) vm_deallocate(kernel_map
, map_data
, path_oolCnt
);
2491 if (KERN_SUCCESS
!= err
) res
= err
;
2492 *registry_entry
= entry
;
2499 /* Routine io_registry_entry_in_plane */
2500 kern_return_t
is_io_registry_entry_in_plane(
2501 io_object_t registry_entry
,
2503 boolean_t
*inPlane
)
2505 CHECK( IORegistryEntry
, registry_entry
, entry
);
2507 *inPlane
= entry
->inPlane( IORegistryEntry::getPlane( plane
));
2509 return( kIOReturnSuccess
);
2513 /* Routine io_registry_entry_get_path */
2514 kern_return_t
is_io_registry_entry_get_path(
2515 io_object_t registry_entry
,
2520 CHECK( IORegistryEntry
, registry_entry
, entry
);
2522 length
= sizeof( io_string_t
);
2523 if( entry
->getPath( path
, &length
, IORegistryEntry::getPlane( plane
)))
2524 return( kIOReturnSuccess
);
2526 return( kIOReturnBadArgument
);
2529 /* Routine io_registry_entry_get_path */
2530 kern_return_t
is_io_registry_entry_get_path_ool(
2531 io_object_t registry_entry
,
2533 io_string_inband_t path
,
2534 io_buf_ptr_t
*path_ool
,
2535 mach_msg_type_number_t
*path_oolCnt
)
2537 enum { kMaxPath
= 16384 };
2542 CHECK( IORegistryEntry
, registry_entry
, entry
);
2546 length
= sizeof(io_string_inband_t
);
2547 if (entry
->getPath(path
, &length
, IORegistryEntry::getPlane(plane
))) err
= kIOReturnSuccess
;
2551 buf
= IONew(char, length
);
2552 if (!buf
) err
= kIOReturnNoMemory
;
2553 else if (!entry
->getPath(buf
, &length
, IORegistryEntry::getPlane(plane
))) err
= kIOReturnError
;
2556 *path_oolCnt
= length
;
2557 err
= copyoutkdata(buf
, length
, path_ool
);
2559 if (buf
) IODelete(buf
, char, kMaxPath
);
2566 /* Routine io_registry_entry_get_name */
2567 kern_return_t
is_io_registry_entry_get_name(
2568 io_object_t registry_entry
,
2571 CHECK( IORegistryEntry
, registry_entry
, entry
);
2573 strncpy( name
, entry
->getName(), sizeof( io_name_t
));
2575 return( kIOReturnSuccess
);
2578 /* Routine io_registry_entry_get_name_in_plane */
2579 kern_return_t
is_io_registry_entry_get_name_in_plane(
2580 io_object_t registry_entry
,
2581 io_name_t planeName
,
2584 const IORegistryPlane
* plane
;
2585 CHECK( IORegistryEntry
, registry_entry
, entry
);
2588 plane
= IORegistryEntry::getPlane( planeName
);
2592 strncpy( name
, entry
->getName( plane
), sizeof( io_name_t
));
2594 return( kIOReturnSuccess
);
2597 /* Routine io_registry_entry_get_location_in_plane */
2598 kern_return_t
is_io_registry_entry_get_location_in_plane(
2599 io_object_t registry_entry
,
2600 io_name_t planeName
,
2601 io_name_t location
)
2603 const IORegistryPlane
* plane
;
2604 CHECK( IORegistryEntry
, registry_entry
, entry
);
2607 plane
= IORegistryEntry::getPlane( planeName
);
2611 const char * cstr
= entry
->getLocation( plane
);
2614 strncpy( location
, cstr
, sizeof( io_name_t
));
2615 return( kIOReturnSuccess
);
2617 return( kIOReturnNotFound
);
2620 /* Routine io_registry_entry_get_registry_entry_id */
2621 kern_return_t
is_io_registry_entry_get_registry_entry_id(
2622 io_object_t registry_entry
,
2623 uint64_t *entry_id
)
2625 CHECK( IORegistryEntry
, registry_entry
, entry
);
2627 *entry_id
= entry
->getRegistryEntryID();
2629 return (kIOReturnSuccess
);
2632 /* Routine io_registry_entry_get_property */
2633 kern_return_t
is_io_registry_entry_get_property_bytes(
2634 io_object_t registry_entry
,
2635 io_name_t property_name
,
2636 io_struct_inband_t buf
,
2637 mach_msg_type_number_t
*dataCnt
)
2645 unsigned int len
= 0;
2646 const void * bytes
= 0;
2647 IOReturn ret
= kIOReturnSuccess
;
2649 CHECK( IORegistryEntry
, registry_entry
, entry
);
2652 if (0 != mac_iokit_check_get_property(kauth_cred_get(), entry
, property_name
))
2653 return kIOReturnNotPermitted
;
2656 obj
= entry
->copyProperty(property_name
);
2658 return( kIOReturnNoResources
);
2660 // One day OSData will be a common container base class
2662 if( (data
= OSDynamicCast( OSData
, obj
))) {
2663 len
= data
->getLength();
2664 bytes
= data
->getBytesNoCopy();
2666 } else if( (str
= OSDynamicCast( OSString
, obj
))) {
2667 len
= str
->getLength() + 1;
2668 bytes
= str
->getCStringNoCopy();
2670 } else if( (boo
= OSDynamicCast( OSBoolean
, obj
))) {
2671 len
= boo
->isTrue() ? sizeof("Yes") : sizeof("No");
2672 bytes
= boo
->isTrue() ? "Yes" : "No";
2674 } else if( (off
= OSDynamicCast( OSNumber
, obj
))) {
2675 offsetBytes
= off
->unsigned64BitValue();
2676 len
= off
->numberOfBytes();
2677 bytes
= &offsetBytes
;
2678 #ifdef __BIG_ENDIAN__
2679 bytes
= (const void *)
2680 (((UInt32
) bytes
) + (sizeof( UInt64
) - len
));
2684 ret
= kIOReturnBadArgument
;
2688 ret
= kIOReturnIPCError
;
2691 bcopy( bytes
, buf
, len
);
2700 /* Routine io_registry_entry_get_property */
2701 kern_return_t
is_io_registry_entry_get_property(
2702 io_object_t registry_entry
,
2703 io_name_t property_name
,
2704 io_buf_ptr_t
*properties
,
2705 mach_msg_type_number_t
*propertiesCnt
)
2711 CHECK( IORegistryEntry
, registry_entry
, entry
);
2714 if (0 != mac_iokit_check_get_property(kauth_cred_get(), entry
, property_name
))
2715 return kIOReturnNotPermitted
;
2718 obj
= entry
->copyProperty(property_name
);
2720 return( kIOReturnNotFound
);
2722 OSSerialize
* s
= OSSerialize::withCapacity(4096);
2725 return( kIOReturnNoMemory
);
2728 if( obj
->serialize( s
)) {
2729 len
= s
->getLength();
2730 *propertiesCnt
= len
;
2731 err
= copyoutkdata( s
->text(), len
, properties
);
2734 err
= kIOReturnUnsupported
;
2742 /* Routine io_registry_entry_get_property_recursively */
2743 kern_return_t
is_io_registry_entry_get_property_recursively(
2744 io_object_t registry_entry
,
2746 io_name_t property_name
,
2748 io_buf_ptr_t
*properties
,
2749 mach_msg_type_number_t
*propertiesCnt
)
2755 CHECK( IORegistryEntry
, registry_entry
, entry
);
2758 if (0 != mac_iokit_check_get_property(kauth_cred_get(), entry
, property_name
))
2759 return kIOReturnNotPermitted
;
2762 obj
= entry
->copyProperty( property_name
,
2763 IORegistryEntry::getPlane( plane
), options
);
2765 return( kIOReturnNotFound
);
2767 OSSerialize
* s
= OSSerialize::withCapacity(4096);
2770 return( kIOReturnNoMemory
);
2773 if( obj
->serialize( s
)) {
2774 len
= s
->getLength();
2775 *propertiesCnt
= len
;
2776 err
= copyoutkdata( s
->text(), len
, properties
);
2779 err
= kIOReturnUnsupported
;
2789 static kern_return_t
2790 filteredProperties(IORegistryEntry
*entry
, OSDictionary
*properties
, OSDictionary
**filteredp
)
2792 kern_return_t err
= 0;
2793 OSDictionary
*filtered
= NULL
;
2794 OSCollectionIterator
*iter
= NULL
;
2797 kauth_cred_t cred
= kauth_cred_get();
2799 if (properties
== NULL
)
2800 return kIOReturnUnsupported
;
2802 if ((iter
= OSCollectionIterator::withCollection(properties
)) == NULL
||
2803 (filtered
= OSDictionary::withCapacity(properties
->getCapacity())) == NULL
) {
2804 err
= kIOReturnNoMemory
;
2808 while ((p
= iter
->getNextObject()) != NULL
) {
2809 if ((key
= OSDynamicCast(OSSymbol
, p
)) == NULL
||
2810 mac_iokit_check_get_property(cred
, entry
, key
->getCStringNoCopy()) != 0)
2812 filtered
->setObject(key
, properties
->getObject(key
));
2818 *filteredp
= filtered
;
2824 /* Routine io_registry_entry_get_properties */
2825 kern_return_t
is_io_registry_entry_get_properties(
2826 io_object_t registry_entry
,
2827 io_buf_ptr_t
*properties
,
2828 mach_msg_type_number_t
*propertiesCnt
)
2830 kern_return_t err
= 0;
2833 CHECK( IORegistryEntry
, registry_entry
, entry
);
2835 OSSerialize
* s
= OSSerialize::withCapacity(4096);
2837 return( kIOReturnNoMemory
);
2839 if (!entry
->serializeProperties(s
))
2840 err
= kIOReturnUnsupported
;
2843 if (!err
&& mac_iokit_check_filter_properties(kauth_cred_get(), entry
)) {
2844 OSObject
*propobj
= OSUnserializeXML(s
->text(), s
->getLength());
2845 OSDictionary
*filteredprops
= NULL
;
2846 err
= filteredProperties(entry
, OSDynamicCast(OSDictionary
, propobj
), &filteredprops
);
2847 if (propobj
) propobj
->release();
2851 if (!filteredprops
->serialize(s
))
2852 err
= kIOReturnUnsupported
;
2854 if (filteredprops
!= NULL
)
2855 filteredprops
->release();
2857 #endif /* CONFIG_MACF */
2860 len
= s
->getLength();
2861 *propertiesCnt
= len
;
2862 err
= copyoutkdata( s
->text(), len
, properties
);
2871 struct GetPropertiesEditorRef
2874 IORegistryEntry
* entry
;
2875 OSCollection
* root
;
2878 static const OSMetaClassBase
*
2879 GetPropertiesEditor(void * reference
,
2881 OSCollection
* container
,
2882 const OSSymbol
* name
,
2883 const OSMetaClassBase
* value
)
2885 GetPropertiesEditorRef
* ref
= (typeof(ref
)) reference
;
2887 if (!ref
->root
) ref
->root
= container
;
2888 if (ref
->root
== container
)
2890 if (0 != mac_iokit_check_get_property(ref
->cred
, ref
->entry
, name
->getCStringNoCopy()))
2895 if (value
) value
->retain();
2899 #endif /* CONFIG_MACF */
2901 /* Routine io_registry_entry_get_properties */
2902 kern_return_t
is_io_registry_entry_get_properties_bin(
2903 io_object_t registry_entry
,
2904 io_buf_ptr_t
*properties
,
2905 mach_msg_type_number_t
*propertiesCnt
)
2907 kern_return_t err
= kIOReturnSuccess
;
2910 OSSerialize::Editor editor
= 0;
2913 CHECK(IORegistryEntry
, registry_entry
, entry
);
2916 GetPropertiesEditorRef ref
;
2917 if (mac_iokit_check_filter_properties(kauth_cred_get(), entry
))
2919 editor
= &GetPropertiesEditor
;
2921 ref
.cred
= kauth_cred_get();
2927 s
= OSSerialize::binaryWithCapacity(4096, editor
, editRef
);
2928 if (!s
) return (kIOReturnNoMemory
);
2930 if (!entry
->serializeProperties(s
)) err
= kIOReturnUnsupported
;
2932 if (kIOReturnSuccess
== err
)
2934 len
= s
->getLength();
2935 *propertiesCnt
= len
;
2936 err
= copyoutkdata(s
->text(), len
, properties
);
2943 /* Routine io_registry_entry_get_property_bin */
2944 kern_return_t
is_io_registry_entry_get_property_bin(
2945 io_object_t registry_entry
,
2947 io_name_t property_name
,
2949 io_buf_ptr_t
*properties
,
2950 mach_msg_type_number_t
*propertiesCnt
)
2955 const OSSymbol
* sym
;
2957 CHECK( IORegistryEntry
, registry_entry
, entry
);
2960 if (0 != mac_iokit_check_get_property(kauth_cred_get(), entry
, property_name
))
2961 return kIOReturnNotPermitted
;
2964 if ((kIORegistryIterateRecursively
& options
) && plane
[0])
2966 obj
= entry
->copyProperty(property_name
,
2967 IORegistryEntry::getPlane(plane
), options
);
2971 obj
= entry
->copyProperty(property_name
);
2975 return( kIOReturnNotFound
);
2977 sym
= OSSymbol::withCString(property_name
);
2980 if (gIORemoveOnReadProperties
->containsObject(sym
)) entry
->removeProperty(sym
);
2984 OSSerialize
* s
= OSSerialize::binaryWithCapacity(4096);
2987 return( kIOReturnNoMemory
);
2990 if( obj
->serialize( s
)) {
2991 len
= s
->getLength();
2992 *propertiesCnt
= len
;
2993 err
= copyoutkdata( s
->text(), len
, properties
);
2995 } else err
= kIOReturnUnsupported
;
3004 /* Routine io_registry_entry_set_properties */
3005 kern_return_t is_io_registry_entry_set_properties
3007 io_object_t registry_entry
,
3008 io_buf_ptr_t properties
,
3009 mach_msg_type_number_t propertiesCnt
,
3010 kern_return_t
* result
)
3016 vm_map_offset_t map_data
;
3018 CHECK( IORegistryEntry
, registry_entry
, entry
);
3020 if( propertiesCnt
> sizeof(io_struct_inband_t
) * 1024)
3021 return( kIOReturnMessageTooLarge
);
3023 err
= vm_map_copyout( kernel_map
, &map_data
, (vm_map_copy_t
) properties
);
3024 data
= CAST_DOWN(vm_offset_t
, map_data
);
3026 if( KERN_SUCCESS
== err
) {
3028 // must return success after vm_map_copyout() succeeds
3029 obj
= OSUnserializeXML( (const char *) data
, propertiesCnt
);
3030 vm_deallocate( kernel_map
, data
, propertiesCnt
);
3033 res
= kIOReturnBadArgument
;
3035 else if (0 != mac_iokit_check_set_properties(kauth_cred_get(),
3036 registry_entry
, obj
))
3038 res
= kIOReturnNotPermitted
;
3043 res
= entry
->setProperties( obj
);
3055 /* Routine io_registry_entry_get_child_iterator */
3056 kern_return_t
is_io_registry_entry_get_child_iterator(
3057 io_object_t registry_entry
,
3059 io_object_t
*iterator
)
3061 CHECK( IORegistryEntry
, registry_entry
, entry
);
3063 *iterator
= entry
->getChildIterator(
3064 IORegistryEntry::getPlane( plane
));
3066 return( kIOReturnSuccess
);
3069 /* Routine io_registry_entry_get_parent_iterator */
3070 kern_return_t
is_io_registry_entry_get_parent_iterator(
3071 io_object_t registry_entry
,
3073 io_object_t
*iterator
)
3075 CHECK( IORegistryEntry
, registry_entry
, entry
);
3077 *iterator
= entry
->getParentIterator(
3078 IORegistryEntry::getPlane( plane
));
3080 return( kIOReturnSuccess
);
3083 /* Routine io_service_get_busy_state */
3084 kern_return_t
is_io_service_get_busy_state(
3085 io_object_t _service
,
3086 uint32_t *busyState
)
3088 CHECK( IOService
, _service
, service
);
3090 *busyState
= service
->getBusyState();
3092 return( kIOReturnSuccess
);
3095 /* Routine io_service_get_state */
3096 kern_return_t
is_io_service_get_state(
3097 io_object_t _service
,
3099 uint32_t *busy_state
,
3100 uint64_t *accumulated_busy_time
)
3102 CHECK( IOService
, _service
, service
);
3104 *state
= service
->getState();
3105 *busy_state
= service
->getBusyState();
3106 *accumulated_busy_time
= service
->getAccumulatedBusyTime();
3108 return( kIOReturnSuccess
);
3111 /* Routine io_service_wait_quiet */
3112 kern_return_t
is_io_service_wait_quiet(
3113 io_object_t _service
,
3114 mach_timespec_t wait_time
)
3118 CHECK( IOService
, _service
, service
);
3120 timeoutNS
= wait_time
.tv_sec
;
3121 timeoutNS
*= kSecondScale
;
3122 timeoutNS
+= wait_time
.tv_nsec
;
3124 return( service
->waitQuiet(timeoutNS
) );
3127 /* Routine io_service_request_probe */
3128 kern_return_t
is_io_service_request_probe(
3129 io_object_t _service
,
3132 CHECK( IOService
, _service
, service
);
3134 return( service
->requestProbe( options
));
3137 /* Routine io_service_get_authorization_id */
3138 kern_return_t
is_io_service_get_authorization_id(
3139 io_object_t _service
,
3140 uint64_t *authorization_id
)
3144 CHECK( IOService
, _service
, service
);
3146 kr
= IOUserClient::clientHasPrivilege( (void *) current_task(),
3147 kIOClientPrivilegeAdministrator
);
3148 if( kIOReturnSuccess
!= kr
)
3151 *authorization_id
= service
->getAuthorizationID();
3156 /* Routine io_service_set_authorization_id */
3157 kern_return_t
is_io_service_set_authorization_id(
3158 io_object_t _service
,
3159 uint64_t authorization_id
)
3161 CHECK( IOService
, _service
, service
);
3163 return( service
->setAuthorizationID( authorization_id
) );
3166 /* Routine io_service_open_ndr */
3167 kern_return_t
is_io_service_open_extended(
3168 io_object_t _service
,
3170 uint32_t connect_type
,
3172 io_buf_ptr_t properties
,
3173 mach_msg_type_number_t propertiesCnt
,
3174 kern_return_t
* result
,
3175 io_object_t
*connection
)
3177 IOUserClient
* client
= 0;
3178 kern_return_t err
= KERN_SUCCESS
;
3179 IOReturn res
= kIOReturnSuccess
;
3180 OSDictionary
* propertiesDict
= 0;
3182 bool disallowAccess
;
3184 CHECK( IOService
, _service
, service
);
3186 if (!owningTask
) return (kIOReturnBadArgument
);
3194 vm_map_offset_t map_data
;
3196 if( propertiesCnt
> sizeof(io_struct_inband_t
))
3197 return( kIOReturnMessageTooLarge
);
3199 err
= vm_map_copyout( kernel_map
, &map_data
, (vm_map_copy_t
) properties
);
3201 data
= CAST_DOWN(vm_offset_t
, map_data
);
3202 if (KERN_SUCCESS
== err
)
3204 // must return success after vm_map_copyout() succeeds
3205 obj
= OSUnserializeXML( (const char *) data
, propertiesCnt
);
3206 vm_deallocate( kernel_map
, data
, propertiesCnt
);
3207 propertiesDict
= OSDynamicCast(OSDictionary
, obj
);
3208 if (!propertiesDict
)
3210 res
= kIOReturnBadArgument
;
3215 if (kIOReturnSuccess
!= res
)
3219 crossEndian
= (ndr
.int_rep
!= NDR_record
.int_rep
);
3222 if (!propertiesDict
)
3223 propertiesDict
= OSDictionary::withCapacity(4);
3224 OSData
* data
= OSData::withBytes(&ndr
, sizeof(ndr
));
3228 propertiesDict
->setObject(kIOUserClientCrossEndianKey
, data
);
3233 res
= service
->newUserClient( owningTask
, (void *) owningTask
,
3234 connect_type
, propertiesDict
, &client
);
3237 propertiesDict
->release();
3239 if (res
== kIOReturnSuccess
)
3241 assert( OSDynamicCast(IOUserClient
, client
) );
3243 disallowAccess
= (crossEndian
3244 && (kOSBooleanTrue
!= service
->getProperty(kIOUserClientCrossEndianCompatibleKey
))
3245 && (kOSBooleanTrue
!= client
->getProperty(kIOUserClientCrossEndianCompatibleKey
)));
3246 if (disallowAccess
) res
= kIOReturnUnsupported
;
3248 else if (0 != mac_iokit_check_open(kauth_cred_get(), client
, connect_type
))
3249 res
= kIOReturnNotPermitted
;
3251 if (kIOReturnSuccess
!= res
)
3253 IOStatisticsClientCall();
3254 client
->clientClose();
3259 client
->sharedInstance
= (0 != client
->getProperty(kIOUserClientSharedInstanceKey
));
3260 OSString
* creatorName
= IOCopyLogNameForPID(proc_selfpid());
3263 client
->setProperty(kIOUserClientCreatorKey
, creatorName
);
3264 creatorName
->release();
3266 client
->setTerminateDefer(service
, false);
3271 *connection
= client
;
3277 /* Routine io_service_close */
3278 kern_return_t
is_io_service_close(
3279 io_object_t connection
)
3282 if ((mappings
= OSDynamicCast(OSSet
, connection
)))
3283 return( kIOReturnSuccess
);
3285 CHECK( IOUserClient
, connection
, client
);
3287 IOStatisticsClientCall();
3288 client
->clientClose();
3290 return( kIOReturnSuccess
);
3293 /* Routine io_connect_get_service */
3294 kern_return_t
is_io_connect_get_service(
3295 io_object_t connection
,
3296 io_object_t
*service
)
3298 IOService
* theService
;
3300 CHECK( IOUserClient
, connection
, client
);
3302 theService
= client
->getService();
3304 theService
->retain();
3306 *service
= theService
;
3308 return( theService
? kIOReturnSuccess
: kIOReturnUnsupported
);
3311 /* Routine io_connect_set_notification_port */
3312 kern_return_t
is_io_connect_set_notification_port(
3313 io_object_t connection
,
3314 uint32_t notification_type
,
3318 CHECK( IOUserClient
, connection
, client
);
3320 IOStatisticsClientCall();
3321 return( client
->registerNotificationPort( port
, notification_type
,
3322 (io_user_reference_t
) reference
));
3325 /* Routine io_connect_set_notification_port */
3326 kern_return_t
is_io_connect_set_notification_port_64(
3327 io_object_t connection
,
3328 uint32_t notification_type
,
3330 io_user_reference_t reference
)
3332 CHECK( IOUserClient
, connection
, client
);
3334 IOStatisticsClientCall();
3335 return( client
->registerNotificationPort( port
, notification_type
,
3339 /* Routine io_connect_map_memory_into_task */
3340 kern_return_t is_io_connect_map_memory_into_task
3342 io_connect_t connection
,
3343 uint32_t memory_type
,
3345 mach_vm_address_t
*address
,
3346 mach_vm_size_t
*size
,
3353 CHECK( IOUserClient
, connection
, client
);
3355 if (!into_task
) return (kIOReturnBadArgument
);
3357 IOStatisticsClientCall();
3358 map
= client
->mapClientMemory64( memory_type
, into_task
, flags
, *address
);
3361 *address
= map
->getAddress();
3363 *size
= map
->getSize();
3365 if( client
->sharedInstance
3366 || (into_task
!= current_task())) {
3367 // push a name out to the task owning the map,
3368 // so we can clean up maps
3369 mach_port_name_t name __unused
=
3370 IOMachPort::makeSendRightForTask(
3371 into_task
, map
, IKOT_IOKIT_OBJECT
);
3374 // keep it with the user client
3375 IOLockLock( gIOObjectPortLock
);
3376 if( 0 == client
->mappings
)
3377 client
->mappings
= OSSet::withCapacity(2);
3378 if( client
->mappings
)
3379 client
->mappings
->setObject( map
);
3380 IOLockUnlock( gIOObjectPortLock
);
3383 err
= kIOReturnSuccess
;
3386 err
= kIOReturnBadArgument
;
3391 /* Routine is_io_connect_map_memory */
3392 kern_return_t
is_io_connect_map_memory(
3393 io_object_t connect
,
3401 mach_vm_address_t address
;
3402 mach_vm_size_t size
;
3404 address
= SCALAR64(*mapAddr
);
3405 size
= SCALAR64(*mapSize
);
3407 err
= is_io_connect_map_memory_into_task(connect
, type
, task
, &address
, &size
, flags
);
3409 *mapAddr
= SCALAR32(address
);
3410 *mapSize
= SCALAR32(size
);
3417 IOMemoryMap
* IOUserClient::removeMappingForDescriptor(IOMemoryDescriptor
* mem
)
3420 IOMemoryMap
* map
= 0;
3422 IOLockLock(gIOObjectPortLock
);
3424 iter
= OSCollectionIterator::withCollection(mappings
);
3427 while ((map
= OSDynamicCast(IOMemoryMap
, iter
->getNextObject())))
3429 if(mem
== map
->getMemoryDescriptor())
3432 mappings
->removeObject(map
);
3439 IOLockUnlock(gIOObjectPortLock
);
3446 /* Routine io_connect_unmap_memory_from_task */
3447 kern_return_t is_io_connect_unmap_memory_from_task
3449 io_connect_t connection
,
3450 uint32_t memory_type
,
3452 mach_vm_address_t address
)
3455 IOOptionBits options
= 0;
3456 IOMemoryDescriptor
* memory
;
3459 CHECK( IOUserClient
, connection
, client
);
3461 if (!from_task
) return (kIOReturnBadArgument
);
3463 IOStatisticsClientCall();
3464 err
= client
->clientMemoryForType( (UInt32
) memory_type
, &options
, &memory
);
3466 if( memory
&& (kIOReturnSuccess
== err
)) {
3468 options
= (options
& ~kIOMapUserOptionsMask
)
3469 | kIOMapAnywhere
| kIOMapReference
;
3471 map
= memory
->createMappingInTask( from_task
, address
, options
);
3475 IOLockLock( gIOObjectPortLock
);
3476 if( client
->mappings
)
3477 client
->mappings
->removeObject( map
);
3478 IOLockUnlock( gIOObjectPortLock
);
3480 mach_port_name_t name
= 0;
3481 if (from_task
!= current_task())
3482 name
= IOMachPort::makeSendRightForTask( from_task
, map
, IKOT_IOKIT_OBJECT
);
3485 map
->userClientUnmap();
3486 err
= iokit_mod_send_right( from_task
, name
, -2 );
3487 err
= kIOReturnSuccess
;
3490 IOMachPort::releasePortForObject( map
, IKOT_IOKIT_OBJECT
);
3491 if (from_task
== current_task())
3495 err
= kIOReturnBadArgument
;
3501 kern_return_t
is_io_connect_unmap_memory(
3502 io_object_t connect
,
3508 mach_vm_address_t address
;
3510 address
= SCALAR64(mapAddr
);
3512 err
= is_io_connect_unmap_memory_from_task(connect
, type
, task
, mapAddr
);
3518 /* Routine io_connect_add_client */
3519 kern_return_t
is_io_connect_add_client(
3520 io_object_t connection
,
3521 io_object_t connect_to
)
3523 CHECK( IOUserClient
, connection
, client
);
3524 CHECK( IOUserClient
, connect_to
, to
);
3526 IOStatisticsClientCall();
3527 return( client
->connectClient( to
) );
3531 /* Routine io_connect_set_properties */
3532 kern_return_t
is_io_connect_set_properties(
3533 io_object_t connection
,
3534 io_buf_ptr_t properties
,
3535 mach_msg_type_number_t propertiesCnt
,
3536 kern_return_t
* result
)
3538 return( is_io_registry_entry_set_properties( connection
, properties
, propertiesCnt
, result
));
3541 /* Routine io_user_client_method */
3542 kern_return_t is_io_connect_method_var_output
3544 io_connect_t connection
,
3546 io_scalar_inband64_t scalar_input
,
3547 mach_msg_type_number_t scalar_inputCnt
,
3548 io_struct_inband_t inband_input
,
3549 mach_msg_type_number_t inband_inputCnt
,
3550 mach_vm_address_t ool_input
,
3551 mach_vm_size_t ool_input_size
,
3552 io_struct_inband_t inband_output
,
3553 mach_msg_type_number_t
*inband_outputCnt
,
3554 io_scalar_inband64_t scalar_output
,
3555 mach_msg_type_number_t
*scalar_outputCnt
,
3556 io_buf_ptr_t
*var_output
,
3557 mach_msg_type_number_t
*var_outputCnt
3560 CHECK( IOUserClient
, connection
, client
);
3562 IOExternalMethodArguments args
;
3564 IOMemoryDescriptor
* inputMD
= 0;
3565 OSObject
* structureVariableOutputData
= 0;
3567 bzero(&args
.__reserved
[0], sizeof(args
.__reserved
));
3568 args
.version
= kIOExternalMethodArgumentsCurrentVersion
;
3570 args
.selector
= selector
;
3572 args
.asyncWakePort
= MACH_PORT_NULL
;
3573 args
.asyncReference
= 0;
3574 args
.asyncReferenceCount
= 0;
3575 args
.structureVariableOutputData
= &structureVariableOutputData
;
3577 args
.scalarInput
= scalar_input
;
3578 args
.scalarInputCount
= scalar_inputCnt
;
3579 args
.structureInput
= inband_input
;
3580 args
.structureInputSize
= inband_inputCnt
;
3583 inputMD
= IOMemoryDescriptor::withAddressRange(ool_input
, ool_input_size
,
3584 kIODirectionOut
, current_task());
3586 args
.structureInputDescriptor
= inputMD
;
3588 args
.scalarOutput
= scalar_output
;
3589 args
.scalarOutputCount
= *scalar_outputCnt
;
3590 bzero(&scalar_output
[0], *scalar_outputCnt
* sizeof(scalar_output
[0]));
3591 args
.structureOutput
= inband_output
;
3592 args
.structureOutputSize
= *inband_outputCnt
;
3593 args
.structureOutputDescriptor
= NULL
;
3594 args
.structureOutputDescriptorSize
= 0;
3596 IOStatisticsClientCall();
3597 ret
= client
->externalMethod( selector
, &args
);
3599 *scalar_outputCnt
= args
.scalarOutputCount
;
3600 *inband_outputCnt
= args
.structureOutputSize
;
3602 if (var_outputCnt
&& var_output
&& (kIOReturnSuccess
== ret
))
3604 OSSerialize
* serialize
;
3608 if ((serialize
= OSDynamicCast(OSSerialize
, structureVariableOutputData
)))
3610 len
= serialize
->getLength();
3611 *var_outputCnt
= len
;
3612 ret
= copyoutkdata(serialize
->text(), len
, var_output
);
3614 else if ((data
= OSDynamicCast(OSData
, structureVariableOutputData
)))
3616 len
= data
->getLength();
3617 *var_outputCnt
= len
;
3618 ret
= copyoutkdata(data
->getBytesNoCopy(), len
, var_output
);
3622 ret
= kIOReturnUnderrun
;
3628 if (structureVariableOutputData
)
3629 structureVariableOutputData
->release();
3634 /* Routine io_user_client_method */
3635 kern_return_t is_io_connect_method
3637 io_connect_t connection
,
3639 io_scalar_inband64_t scalar_input
,
3640 mach_msg_type_number_t scalar_inputCnt
,
3641 io_struct_inband_t inband_input
,
3642 mach_msg_type_number_t inband_inputCnt
,
3643 mach_vm_address_t ool_input
,
3644 mach_vm_size_t ool_input_size
,
3645 io_struct_inband_t inband_output
,
3646 mach_msg_type_number_t
*inband_outputCnt
,
3647 io_scalar_inband64_t scalar_output
,
3648 mach_msg_type_number_t
*scalar_outputCnt
,
3649 mach_vm_address_t ool_output
,
3650 mach_vm_size_t
*ool_output_size
3653 CHECK( IOUserClient
, connection
, client
);
3655 IOExternalMethodArguments args
;
3657 IOMemoryDescriptor
* inputMD
= 0;
3658 IOMemoryDescriptor
* outputMD
= 0;
3660 bzero(&args
.__reserved
[0], sizeof(args
.__reserved
));
3661 args
.version
= kIOExternalMethodArgumentsCurrentVersion
;
3663 args
.selector
= selector
;
3665 args
.asyncWakePort
= MACH_PORT_NULL
;
3666 args
.asyncReference
= 0;
3667 args
.asyncReferenceCount
= 0;
3668 args
.structureVariableOutputData
= 0;
3670 args
.scalarInput
= scalar_input
;
3671 args
.scalarInputCount
= scalar_inputCnt
;
3672 args
.structureInput
= inband_input
;
3673 args
.structureInputSize
= inband_inputCnt
;
3676 inputMD
= IOMemoryDescriptor::withAddressRange(ool_input
, ool_input_size
,
3677 kIODirectionOut
, current_task());
3679 args
.structureInputDescriptor
= inputMD
;
3681 args
.scalarOutput
= scalar_output
;
3682 args
.scalarOutputCount
= *scalar_outputCnt
;
3683 bzero(&scalar_output
[0], *scalar_outputCnt
* sizeof(scalar_output
[0]));
3684 args
.structureOutput
= inband_output
;
3685 args
.structureOutputSize
= *inband_outputCnt
;
3687 if (ool_output
&& ool_output_size
)
3689 outputMD
= IOMemoryDescriptor::withAddressRange(ool_output
, *ool_output_size
,
3690 kIODirectionIn
, current_task());
3693 args
.structureOutputDescriptor
= outputMD
;
3694 args
.structureOutputDescriptorSize
= ool_output_size
? *ool_output_size
: 0;
3696 IOStatisticsClientCall();
3697 ret
= client
->externalMethod( selector
, &args
);
3699 *scalar_outputCnt
= args
.scalarOutputCount
;
3700 *inband_outputCnt
= args
.structureOutputSize
;
3701 *ool_output_size
= args
.structureOutputDescriptorSize
;
3706 outputMD
->release();
3711 /* Routine io_async_user_client_method */
3712 kern_return_t is_io_connect_async_method
3714 io_connect_t connection
,
3715 mach_port_t wake_port
,
3716 io_async_ref64_t reference
,
3717 mach_msg_type_number_t referenceCnt
,
3719 io_scalar_inband64_t scalar_input
,
3720 mach_msg_type_number_t scalar_inputCnt
,
3721 io_struct_inband_t inband_input
,
3722 mach_msg_type_number_t inband_inputCnt
,
3723 mach_vm_address_t ool_input
,
3724 mach_vm_size_t ool_input_size
,
3725 io_struct_inband_t inband_output
,
3726 mach_msg_type_number_t
*inband_outputCnt
,
3727 io_scalar_inband64_t scalar_output
,
3728 mach_msg_type_number_t
*scalar_outputCnt
,
3729 mach_vm_address_t ool_output
,
3730 mach_vm_size_t
* ool_output_size
3733 CHECK( IOUserClient
, connection
, client
);
3735 IOExternalMethodArguments args
;
3737 IOMemoryDescriptor
* inputMD
= 0;
3738 IOMemoryDescriptor
* outputMD
= 0;
3740 bzero(&args
.__reserved
[0], sizeof(args
.__reserved
));
3741 args
.version
= kIOExternalMethodArgumentsCurrentVersion
;
3743 reference
[0] = (io_user_reference_t
) wake_port
;
3744 if (vm_map_is_64bit(get_task_map(current_task())))
3745 reference
[0] |= kIOUCAsync64Flag
;
3747 args
.selector
= selector
;
3749 args
.asyncWakePort
= wake_port
;
3750 args
.asyncReference
= reference
;
3751 args
.asyncReferenceCount
= referenceCnt
;
3753 args
.scalarInput
= scalar_input
;
3754 args
.scalarInputCount
= scalar_inputCnt
;
3755 args
.structureInput
= inband_input
;
3756 args
.structureInputSize
= inband_inputCnt
;
3759 inputMD
= IOMemoryDescriptor::withAddressRange(ool_input
, ool_input_size
,
3760 kIODirectionOut
, current_task());
3762 args
.structureInputDescriptor
= inputMD
;
3764 args
.scalarOutput
= scalar_output
;
3765 args
.scalarOutputCount
= *scalar_outputCnt
;
3766 bzero(&scalar_output
[0], *scalar_outputCnt
* sizeof(scalar_output
[0]));
3767 args
.structureOutput
= inband_output
;
3768 args
.structureOutputSize
= *inband_outputCnt
;
3772 outputMD
= IOMemoryDescriptor::withAddressRange(ool_output
, *ool_output_size
,
3773 kIODirectionIn
, current_task());
3776 args
.structureOutputDescriptor
= outputMD
;
3777 args
.structureOutputDescriptorSize
= *ool_output_size
;
3779 IOStatisticsClientCall();
3780 ret
= client
->externalMethod( selector
, &args
);
3782 *inband_outputCnt
= args
.structureOutputSize
;
3783 *ool_output_size
= args
.structureOutputDescriptorSize
;
3788 outputMD
->release();
3793 /* Routine io_connect_method_scalarI_scalarO */
3794 kern_return_t
is_io_connect_method_scalarI_scalarO(
3795 io_object_t connect
,
3797 io_scalar_inband_t input
,
3798 mach_msg_type_number_t inputCount
,
3799 io_scalar_inband_t output
,
3800 mach_msg_type_number_t
* outputCount
)
3804 io_scalar_inband64_t _input
;
3805 io_scalar_inband64_t _output
;
3807 mach_msg_type_number_t struct_outputCnt
= 0;
3808 mach_vm_size_t ool_output_size
= 0;
3810 bzero(&_output
[0], sizeof(_output
));
3811 for (i
= 0; i
< inputCount
; i
++)
3812 _input
[i
] = SCALAR64(input
[i
]);
3814 err
= is_io_connect_method(connect
, index
,
3818 NULL
, &struct_outputCnt
,
3819 _output
, outputCount
,
3820 0, &ool_output_size
);
3822 for (i
= 0; i
< *outputCount
; i
++)
3823 output
[i
] = SCALAR32(_output
[i
]);
3828 kern_return_t
shim_io_connect_method_scalarI_scalarO(
3829 IOExternalMethod
* method
,
3831 const io_user_scalar_t
* input
,
3832 mach_msg_type_number_t inputCount
,
3833 io_user_scalar_t
* output
,
3834 mach_msg_type_number_t
* outputCount
)
3837 io_scalar_inband_t _output
;
3839 err
= kIOReturnBadArgument
;
3841 bzero(&_output
[0], sizeof(_output
));
3844 if( inputCount
!= method
->count0
)
3846 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
3849 if( *outputCount
!= method
->count1
)
3851 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
3855 func
= method
->func
;
3857 switch( inputCount
) {
3860 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
3861 ARG32(input
[3]), ARG32(input
[4]), ARG32(input
[5]) );
3864 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
3865 ARG32(input
[3]), ARG32(input
[4]),
3869 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
3871 &_output
[0], &_output
[1] );
3874 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
3875 &_output
[0], &_output
[1], &_output
[2] );
3878 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]),
3879 &_output
[0], &_output
[1], &_output
[2],
3883 err
= (object
->*func
)( ARG32(input
[0]),
3884 &_output
[0], &_output
[1], &_output
[2],
3885 &_output
[3], &_output
[4] );
3888 err
= (object
->*func
)( &_output
[0], &_output
[1], &_output
[2],
3889 &_output
[3], &_output
[4], &_output
[5] );
3893 IOLog("%s: Bad method table\n", object
->getName());
3899 for (i
= 0; i
< *outputCount
; i
++)
3900 output
[i
] = SCALAR32(_output
[i
]);
3905 /* Routine io_async_method_scalarI_scalarO */
3906 kern_return_t
is_io_async_method_scalarI_scalarO(
3907 io_object_t connect
,
3908 mach_port_t wake_port
,
3909 io_async_ref_t reference
,
3910 mach_msg_type_number_t referenceCnt
,
3912 io_scalar_inband_t input
,
3913 mach_msg_type_number_t inputCount
,
3914 io_scalar_inband_t output
,
3915 mach_msg_type_number_t
* outputCount
)
3919 io_scalar_inband64_t _input
;
3920 io_scalar_inband64_t _output
;
3921 io_async_ref64_t _reference
;
3923 bzero(&_output
[0], sizeof(_output
));
3924 for (i
= 0; i
< referenceCnt
; i
++)
3925 _reference
[i
] = REF64(reference
[i
]);
3927 mach_msg_type_number_t struct_outputCnt
= 0;
3928 mach_vm_size_t ool_output_size
= 0;
3930 for (i
= 0; i
< inputCount
; i
++)
3931 _input
[i
] = SCALAR64(input
[i
]);
3933 err
= is_io_connect_async_method(connect
,
3934 wake_port
, _reference
, referenceCnt
,
3939 NULL
, &struct_outputCnt
,
3940 _output
, outputCount
,
3941 0, &ool_output_size
);
3943 for (i
= 0; i
< *outputCount
; i
++)
3944 output
[i
] = SCALAR32(_output
[i
]);
3948 /* Routine io_async_method_scalarI_structureO */
3949 kern_return_t
is_io_async_method_scalarI_structureO(
3950 io_object_t connect
,
3951 mach_port_t wake_port
,
3952 io_async_ref_t reference
,
3953 mach_msg_type_number_t referenceCnt
,
3955 io_scalar_inband_t input
,
3956 mach_msg_type_number_t inputCount
,
3957 io_struct_inband_t output
,
3958 mach_msg_type_number_t
* outputCount
)
3961 io_scalar_inband64_t _input
;
3962 io_async_ref64_t _reference
;
3964 for (i
= 0; i
< referenceCnt
; i
++)
3965 _reference
[i
] = REF64(reference
[i
]);
3967 mach_msg_type_number_t scalar_outputCnt
= 0;
3968 mach_vm_size_t ool_output_size
= 0;
3970 for (i
= 0; i
< inputCount
; i
++)
3971 _input
[i
] = SCALAR64(input
[i
]);
3973 return (is_io_connect_async_method(connect
,
3974 wake_port
, _reference
, referenceCnt
,
3979 output
, outputCount
,
3980 NULL
, &scalar_outputCnt
,
3981 0, &ool_output_size
));
3984 /* Routine io_async_method_scalarI_structureI */
3985 kern_return_t
is_io_async_method_scalarI_structureI(
3986 io_connect_t connect
,
3987 mach_port_t wake_port
,
3988 io_async_ref_t reference
,
3989 mach_msg_type_number_t referenceCnt
,
3991 io_scalar_inband_t input
,
3992 mach_msg_type_number_t inputCount
,
3993 io_struct_inband_t inputStruct
,
3994 mach_msg_type_number_t inputStructCount
)
3997 io_scalar_inband64_t _input
;
3998 io_async_ref64_t _reference
;
4000 for (i
= 0; i
< referenceCnt
; i
++)
4001 _reference
[i
] = REF64(reference
[i
]);
4003 mach_msg_type_number_t scalar_outputCnt
= 0;
4004 mach_msg_type_number_t inband_outputCnt
= 0;
4005 mach_vm_size_t ool_output_size
= 0;
4007 for (i
= 0; i
< inputCount
; i
++)
4008 _input
[i
] = SCALAR64(input
[i
]);
4010 return (is_io_connect_async_method(connect
,
4011 wake_port
, _reference
, referenceCnt
,
4014 inputStruct
, inputStructCount
,
4016 NULL
, &inband_outputCnt
,
4017 NULL
, &scalar_outputCnt
,
4018 0, &ool_output_size
));
4021 /* Routine io_async_method_structureI_structureO */
4022 kern_return_t
is_io_async_method_structureI_structureO(
4023 io_object_t connect
,
4024 mach_port_t wake_port
,
4025 io_async_ref_t reference
,
4026 mach_msg_type_number_t referenceCnt
,
4028 io_struct_inband_t input
,
4029 mach_msg_type_number_t inputCount
,
4030 io_struct_inband_t output
,
4031 mach_msg_type_number_t
* outputCount
)
4034 mach_msg_type_number_t scalar_outputCnt
= 0;
4035 mach_vm_size_t ool_output_size
= 0;
4036 io_async_ref64_t _reference
;
4038 for (i
= 0; i
< referenceCnt
; i
++)
4039 _reference
[i
] = REF64(reference
[i
]);
4041 return (is_io_connect_async_method(connect
,
4042 wake_port
, _reference
, referenceCnt
,
4047 output
, outputCount
,
4048 NULL
, &scalar_outputCnt
,
4049 0, &ool_output_size
));
4053 kern_return_t
shim_io_async_method_scalarI_scalarO(
4054 IOExternalAsyncMethod
* method
,
4056 mach_port_t asyncWakePort
,
4057 io_user_reference_t
* asyncReference
,
4058 uint32_t asyncReferenceCount
,
4059 const io_user_scalar_t
* input
,
4060 mach_msg_type_number_t inputCount
,
4061 io_user_scalar_t
* output
,
4062 mach_msg_type_number_t
* outputCount
)
4066 io_scalar_inband_t _output
;
4068 io_async_ref_t reference
;
4070 bzero(&_output
[0], sizeof(_output
));
4071 for (i
= 0; i
< asyncReferenceCount
; i
++)
4072 reference
[i
] = REF32(asyncReference
[i
]);
4074 err
= kIOReturnBadArgument
;
4078 if( inputCount
!= method
->count0
)
4080 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
4083 if( *outputCount
!= method
->count1
)
4085 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
4089 func
= method
->func
;
4091 switch( inputCount
) {
4094 err
= (object
->*func
)( reference
,
4095 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4096 ARG32(input
[3]), ARG32(input
[4]), ARG32(input
[5]) );
4099 err
= (object
->*func
)( reference
,
4100 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4101 ARG32(input
[3]), ARG32(input
[4]),
4105 err
= (object
->*func
)( reference
,
4106 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4108 &_output
[0], &_output
[1] );
4111 err
= (object
->*func
)( reference
,
4112 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4113 &_output
[0], &_output
[1], &_output
[2] );
4116 err
= (object
->*func
)( reference
,
4117 ARG32(input
[0]), ARG32(input
[1]),
4118 &_output
[0], &_output
[1], &_output
[2],
4122 err
= (object
->*func
)( reference
,
4124 &_output
[0], &_output
[1], &_output
[2],
4125 &_output
[3], &_output
[4] );
4128 err
= (object
->*func
)( reference
,
4129 &_output
[0], &_output
[1], &_output
[2],
4130 &_output
[3], &_output
[4], &_output
[5] );
4134 IOLog("%s: Bad method table\n", object
->getName());
4139 for (i
= 0; i
< *outputCount
; i
++)
4140 output
[i
] = SCALAR32(_output
[i
]);
4146 /* Routine io_connect_method_scalarI_structureO */
4147 kern_return_t
is_io_connect_method_scalarI_structureO(
4148 io_object_t connect
,
4150 io_scalar_inband_t input
,
4151 mach_msg_type_number_t inputCount
,
4152 io_struct_inband_t output
,
4153 mach_msg_type_number_t
* outputCount
)
4156 io_scalar_inband64_t _input
;
4158 mach_msg_type_number_t scalar_outputCnt
= 0;
4159 mach_vm_size_t ool_output_size
= 0;
4161 for (i
= 0; i
< inputCount
; i
++)
4162 _input
[i
] = SCALAR64(input
[i
]);
4164 return (is_io_connect_method(connect
, index
,
4168 output
, outputCount
,
4169 NULL
, &scalar_outputCnt
,
4170 0, &ool_output_size
));
4173 kern_return_t
shim_io_connect_method_scalarI_structureO(
4175 IOExternalMethod
* method
,
4177 const io_user_scalar_t
* input
,
4178 mach_msg_type_number_t inputCount
,
4179 io_struct_inband_t output
,
4180 IOByteCount
* outputCount
)
4185 err
= kIOReturnBadArgument
;
4188 if( inputCount
!= method
->count0
)
4190 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
4193 if( (kIOUCVariableStructureSize
!= method
->count1
)
4194 && (*outputCount
!= method
->count1
))
4196 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
4200 func
= method
->func
;
4202 switch( inputCount
) {
4205 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4206 ARG32(input
[3]), ARG32(input
[4]),
4210 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4212 output
, (void *)outputCount
);
4215 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4216 output
, (void *)outputCount
, 0 );
4219 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]),
4220 output
, (void *)outputCount
, 0, 0 );
4223 err
= (object
->*func
)( ARG32(input
[0]),
4224 output
, (void *)outputCount
, 0, 0, 0 );
4227 err
= (object
->*func
)( output
, (void *)outputCount
, 0, 0, 0, 0 );
4231 IOLog("%s: Bad method table\n", object
->getName());
4240 kern_return_t
shim_io_async_method_scalarI_structureO(
4241 IOExternalAsyncMethod
* method
,
4243 mach_port_t asyncWakePort
,
4244 io_user_reference_t
* asyncReference
,
4245 uint32_t asyncReferenceCount
,
4246 const io_user_scalar_t
* input
,
4247 mach_msg_type_number_t inputCount
,
4248 io_struct_inband_t output
,
4249 mach_msg_type_number_t
* outputCount
)
4254 io_async_ref_t reference
;
4256 for (i
= 0; i
< asyncReferenceCount
; i
++)
4257 reference
[i
] = REF32(asyncReference
[i
]);
4259 err
= kIOReturnBadArgument
;
4261 if( inputCount
!= method
->count0
)
4263 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
4266 if( (kIOUCVariableStructureSize
!= method
->count1
)
4267 && (*outputCount
!= method
->count1
))
4269 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
4273 func
= method
->func
;
4275 switch( inputCount
) {
4278 err
= (object
->*func
)( reference
,
4279 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4280 ARG32(input
[3]), ARG32(input
[4]),
4284 err
= (object
->*func
)( reference
,
4285 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4287 output
, (void *)outputCount
);
4290 err
= (object
->*func
)( reference
,
4291 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4292 output
, (void *)outputCount
, 0 );
4295 err
= (object
->*func
)( reference
,
4296 ARG32(input
[0]), ARG32(input
[1]),
4297 output
, (void *)outputCount
, 0, 0 );
4300 err
= (object
->*func
)( reference
,
4302 output
, (void *)outputCount
, 0, 0, 0 );
4305 err
= (object
->*func
)( reference
,
4306 output
, (void *)outputCount
, 0, 0, 0, 0 );
4310 IOLog("%s: Bad method table\n", object
->getName());
4318 /* Routine io_connect_method_scalarI_structureI */
4319 kern_return_t
is_io_connect_method_scalarI_structureI(
4320 io_connect_t connect
,
4322 io_scalar_inband_t input
,
4323 mach_msg_type_number_t inputCount
,
4324 io_struct_inband_t inputStruct
,
4325 mach_msg_type_number_t inputStructCount
)
4328 io_scalar_inband64_t _input
;
4330 mach_msg_type_number_t scalar_outputCnt
= 0;
4331 mach_msg_type_number_t inband_outputCnt
= 0;
4332 mach_vm_size_t ool_output_size
= 0;
4334 for (i
= 0; i
< inputCount
; i
++)
4335 _input
[i
] = SCALAR64(input
[i
]);
4337 return (is_io_connect_method(connect
, index
,
4339 inputStruct
, inputStructCount
,
4341 NULL
, &inband_outputCnt
,
4342 NULL
, &scalar_outputCnt
,
4343 0, &ool_output_size
));
4346 kern_return_t
shim_io_connect_method_scalarI_structureI(
4347 IOExternalMethod
* method
,
4349 const io_user_scalar_t
* input
,
4350 mach_msg_type_number_t inputCount
,
4351 io_struct_inband_t inputStruct
,
4352 mach_msg_type_number_t inputStructCount
)
4355 IOReturn err
= kIOReturnBadArgument
;
4359 if (inputCount
!= method
->count0
)
4361 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
4364 if( (kIOUCVariableStructureSize
!= method
->count1
)
4365 && (inputStructCount
!= method
->count1
))
4367 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
4371 func
= method
->func
;
4373 switch( inputCount
) {
4376 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4377 ARG32(input
[3]), ARG32(input
[4]),
4381 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), (void *) input
[2],
4383 inputStruct
, (void *)(uintptr_t)inputStructCount
);
4386 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4387 inputStruct
, (void *)(uintptr_t)inputStructCount
,
4391 err
= (object
->*func
)( ARG32(input
[0]), ARG32(input
[1]),
4392 inputStruct
, (void *)(uintptr_t)inputStructCount
,
4396 err
= (object
->*func
)( ARG32(input
[0]),
4397 inputStruct
, (void *)(uintptr_t)inputStructCount
,
4401 err
= (object
->*func
)( inputStruct
, (void *)(uintptr_t)inputStructCount
,
4406 IOLog("%s: Bad method table\n", object
->getName());
4414 kern_return_t
shim_io_async_method_scalarI_structureI(
4415 IOExternalAsyncMethod
* method
,
4417 mach_port_t asyncWakePort
,
4418 io_user_reference_t
* asyncReference
,
4419 uint32_t asyncReferenceCount
,
4420 const io_user_scalar_t
* input
,
4421 mach_msg_type_number_t inputCount
,
4422 io_struct_inband_t inputStruct
,
4423 mach_msg_type_number_t inputStructCount
)
4427 IOReturn err
= kIOReturnBadArgument
;
4428 io_async_ref_t reference
;
4430 for (i
= 0; i
< asyncReferenceCount
; i
++)
4431 reference
[i
] = REF32(asyncReference
[i
]);
4435 if (inputCount
!= method
->count0
)
4437 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
4440 if( (kIOUCVariableStructureSize
!= method
->count1
)
4441 && (inputStructCount
!= method
->count1
))
4443 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
4447 func
= method
->func
;
4449 switch( inputCount
) {
4452 err
= (object
->*func
)( reference
,
4453 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4454 ARG32(input
[3]), ARG32(input
[4]),
4458 err
= (object
->*func
)( reference
,
4459 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4461 inputStruct
, (void *)(uintptr_t)inputStructCount
);
4464 err
= (object
->*func
)( reference
,
4465 ARG32(input
[0]), ARG32(input
[1]), ARG32(input
[2]),
4466 inputStruct
, (void *)(uintptr_t)inputStructCount
,
4470 err
= (object
->*func
)( reference
,
4471 ARG32(input
[0]), ARG32(input
[1]),
4472 inputStruct
, (void *)(uintptr_t)inputStructCount
,
4476 err
= (object
->*func
)( reference
,
4478 inputStruct
, (void *)(uintptr_t)inputStructCount
,
4482 err
= (object
->*func
)( reference
,
4483 inputStruct
, (void *)(uintptr_t)inputStructCount
,
4488 IOLog("%s: Bad method table\n", object
->getName());
4496 /* Routine io_connect_method_structureI_structureO */
4497 kern_return_t
is_io_connect_method_structureI_structureO(
4498 io_object_t connect
,
4500 io_struct_inband_t input
,
4501 mach_msg_type_number_t inputCount
,
4502 io_struct_inband_t output
,
4503 mach_msg_type_number_t
* outputCount
)
4505 mach_msg_type_number_t scalar_outputCnt
= 0;
4506 mach_vm_size_t ool_output_size
= 0;
4508 return (is_io_connect_method(connect
, index
,
4512 output
, outputCount
,
4513 NULL
, &scalar_outputCnt
,
4514 0, &ool_output_size
));
4517 kern_return_t
shim_io_connect_method_structureI_structureO(
4518 IOExternalMethod
* method
,
4520 io_struct_inband_t input
,
4521 mach_msg_type_number_t inputCount
,
4522 io_struct_inband_t output
,
4523 IOByteCount
* outputCount
)
4526 IOReturn err
= kIOReturnBadArgument
;
4530 if( (kIOUCVariableStructureSize
!= method
->count0
)
4531 && (inputCount
!= method
->count0
))
4533 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
4536 if( (kIOUCVariableStructureSize
!= method
->count1
)
4537 && (*outputCount
!= method
->count1
))
4539 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
4543 func
= method
->func
;
4545 if( method
->count1
) {
4546 if( method
->count0
) {
4547 err
= (object
->*func
)( input
, output
,
4548 (void *)(uintptr_t)inputCount
, outputCount
, 0, 0 );
4550 err
= (object
->*func
)( output
, outputCount
, 0, 0, 0, 0 );
4553 err
= (object
->*func
)( input
, (void *)(uintptr_t)inputCount
, 0, 0, 0, 0 );
4562 kern_return_t
shim_io_async_method_structureI_structureO(
4563 IOExternalAsyncMethod
* method
,
4565 mach_port_t asyncWakePort
,
4566 io_user_reference_t
* asyncReference
,
4567 uint32_t asyncReferenceCount
,
4568 io_struct_inband_t input
,
4569 mach_msg_type_number_t inputCount
,
4570 io_struct_inband_t output
,
4571 mach_msg_type_number_t
* outputCount
)
4576 io_async_ref_t reference
;
4578 for (i
= 0; i
< asyncReferenceCount
; i
++)
4579 reference
[i
] = REF32(asyncReference
[i
]);
4581 err
= kIOReturnBadArgument
;
4584 if( (kIOUCVariableStructureSize
!= method
->count0
)
4585 && (inputCount
!= method
->count0
))
4587 IOLog("%s: IOUserClient inputCount count mismatch\n", object
->getName());
4590 if( (kIOUCVariableStructureSize
!= method
->count1
)
4591 && (*outputCount
!= method
->count1
))
4593 IOLog("%s: IOUserClient outputCount count mismatch\n", object
->getName());
4597 func
= method
->func
;
4599 if( method
->count1
) {
4600 if( method
->count0
) {
4601 err
= (object
->*func
)( reference
,
4603 (void *)(uintptr_t)inputCount
, outputCount
, 0, 0 );
4605 err
= (object
->*func
)( reference
,
4606 output
, outputCount
, 0, 0, 0, 0 );
4609 err
= (object
->*func
)( reference
,
4610 input
, (void *)(uintptr_t)inputCount
, 0, 0, 0, 0 );
4618 /* Routine io_catalog_send_data */
4619 kern_return_t
is_io_catalog_send_data(
4620 mach_port_t master_port
,
4622 io_buf_ptr_t inData
,
4623 mach_msg_type_number_t inDataCount
,
4624 kern_return_t
* result
)
4628 kern_return_t kr
= kIOReturnError
;
4630 //printf("io_catalog_send_data called. flag: %d\n", flag);
4632 if( master_port
!= master_device_port
)
4633 return kIOReturnNotPrivileged
;
4635 if( (flag
!= kIOCatalogRemoveKernelLinker
&&
4636 flag
!= kIOCatalogKextdActive
&&
4637 flag
!= kIOCatalogKextdFinishedLaunching
) &&
4638 ( !inData
|| !inDataCount
) )
4640 return kIOReturnBadArgument
;
4644 vm_map_offset_t map_data
;
4646 if( inDataCount
> sizeof(io_struct_inband_t
) * 1024)
4647 return( kIOReturnMessageTooLarge
);
4649 kr
= vm_map_copyout( kernel_map
, &map_data
, (vm_map_copy_t
)inData
);
4650 data
= CAST_DOWN(vm_offset_t
, map_data
);
4652 if( kr
!= KERN_SUCCESS
)
4655 // must return success after vm_map_copyout() succeeds
4658 obj
= (OSObject
*)OSUnserializeXML((const char *)data
, inDataCount
);
4659 vm_deallocate( kernel_map
, data
, inDataCount
);
4661 *result
= kIOReturnNoMemory
;
4662 return( KERN_SUCCESS
);
4668 case kIOCatalogResetDrivers
:
4669 case kIOCatalogResetDriversNoMatch
: {
4672 array
= OSDynamicCast(OSArray
, obj
);
4674 if ( !gIOCatalogue
->resetAndAddDrivers(array
,
4675 flag
== kIOCatalogResetDrivers
) ) {
4677 kr
= kIOReturnError
;
4680 kr
= kIOReturnBadArgument
;
4685 case kIOCatalogAddDrivers
:
4686 case kIOCatalogAddDriversNoMatch
: {
4689 array
= OSDynamicCast(OSArray
, obj
);
4691 if ( !gIOCatalogue
->addDrivers( array
,
4692 flag
== kIOCatalogAddDrivers
) ) {
4693 kr
= kIOReturnError
;
4697 kr
= kIOReturnBadArgument
;
4702 case kIOCatalogRemoveDrivers
:
4703 case kIOCatalogRemoveDriversNoMatch
: {
4704 OSDictionary
* dict
;
4706 dict
= OSDynamicCast(OSDictionary
, obj
);
4708 if ( !gIOCatalogue
->removeDrivers( dict
,
4709 flag
== kIOCatalogRemoveDrivers
) ) {
4710 kr
= kIOReturnError
;
4714 kr
= kIOReturnBadArgument
;
4719 case kIOCatalogStartMatching
: {
4720 OSDictionary
* dict
;
4722 dict
= OSDynamicCast(OSDictionary
, obj
);
4724 if ( !gIOCatalogue
->startMatching( dict
) ) {
4725 kr
= kIOReturnError
;
4729 kr
= kIOReturnBadArgument
;
4734 case kIOCatalogRemoveKernelLinker
:
4735 kr
= KERN_NOT_SUPPORTED
;
4738 case kIOCatalogKextdActive
:
4740 IOServiceTrace(IOSERVICE_KEXTD_ALIVE
, 0, 0, 0, 0);
4741 OSKext::setKextdActive();
4743 /* Dump all nonloaded startup extensions; kextd will now send them
4746 OSKext::flushNonloadedKexts( /* flushPrelinkedKexts */ false);
4748 kr
= kIOReturnSuccess
;
4751 case kIOCatalogKextdFinishedLaunching
: {
4753 static bool clearedBusy
= false;
4756 IOService
* serviceRoot
= IOService::getServiceRoot();
4758 IOServiceTrace(IOSERVICE_KEXTD_READY
, 0, 0, 0, 0);
4759 serviceRoot
->adjustBusy(-1);
4764 kr
= kIOReturnSuccess
;
4769 kr
= kIOReturnBadArgument
;
4773 if (obj
) obj
->release();
4776 return( KERN_SUCCESS
);
4779 /* Routine io_catalog_terminate */
4780 kern_return_t
is_io_catalog_terminate(
4781 mach_port_t master_port
,
4787 if( master_port
!= master_device_port
)
4788 return kIOReturnNotPrivileged
;
4790 kr
= IOUserClient::clientHasPrivilege( (void *) current_task(),
4791 kIOClientPrivilegeAdministrator
);
4792 if( kIOReturnSuccess
!= kr
)
4796 #if !defined(SECURE_KERNEL)
4797 case kIOCatalogServiceTerminate
:
4799 IOService
* service
;
4801 iter
= IORegistryIterator::iterateOver(gIOServicePlane
,
4802 kIORegistryIterateRecursively
);
4804 return kIOReturnNoMemory
;
4808 while( (service
= (IOService
*)iter
->getNextObject()) ) {
4809 if( service
->metaCast(name
)) {
4810 if ( !service
->terminate( kIOServiceRequired
4811 | kIOServiceSynchronous
) ) {
4812 kr
= kIOReturnUnsupported
;
4817 } while( !service
&& !iter
->isValid());
4821 case kIOCatalogModuleUnload
:
4822 case kIOCatalogModuleTerminate
:
4823 kr
= gIOCatalogue
->terminateDriversForModule(name
,
4824 flag
== kIOCatalogModuleUnload
);
4829 kr
= kIOReturnBadArgument
;
4836 /* Routine io_catalog_get_data */
4837 kern_return_t
is_io_catalog_get_data(
4838 mach_port_t master_port
,
4840 io_buf_ptr_t
*outData
,
4841 mach_msg_type_number_t
*outDataCount
)
4843 kern_return_t kr
= kIOReturnSuccess
;
4846 if( master_port
!= master_device_port
)
4847 return kIOReturnNotPrivileged
;
4849 //printf("io_catalog_get_data called. flag: %d\n", flag);
4851 s
= OSSerialize::withCapacity(4096);
4853 return kIOReturnNoMemory
;
4855 kr
= gIOCatalogue
->serializeData(flag
, s
);
4857 if ( kr
== kIOReturnSuccess
) {
4862 size
= s
->getLength();
4863 kr
= vm_allocate(kernel_map
, &data
, size
, VM_FLAGS_ANYWHERE
);
4864 if ( kr
== kIOReturnSuccess
) {
4865 bcopy(s
->text(), (void *)data
, size
);
4866 kr
= vm_map_copyin(kernel_map
, (vm_map_address_t
)data
,
4867 (vm_map_size_t
)size
, true, ©
);
4868 *outData
= (char *)copy
;
4869 *outDataCount
= size
;
4878 /* Routine io_catalog_get_gen_count */
4879 kern_return_t
is_io_catalog_get_gen_count(
4880 mach_port_t master_port
,
4883 if( master_port
!= master_device_port
)
4884 return kIOReturnNotPrivileged
;
4886 //printf("io_catalog_get_gen_count called.\n");
4889 return kIOReturnBadArgument
;
4891 *genCount
= gIOCatalogue
->getGenerationCount();
4893 return kIOReturnSuccess
;
4896 /* Routine io_catalog_module_loaded.
4897 * Is invoked from IOKitLib's IOCatalogueModuleLoaded(). Doesn't seem to be used.
4899 kern_return_t
is_io_catalog_module_loaded(
4900 mach_port_t master_port
,
4903 if( master_port
!= master_device_port
)
4904 return kIOReturnNotPrivileged
;
4906 //printf("io_catalog_module_loaded called. name %s\n", name);
4909 return kIOReturnBadArgument
;
4911 gIOCatalogue
->moduleHasLoaded(name
);
4913 return kIOReturnSuccess
;
4916 kern_return_t
is_io_catalog_reset(
4917 mach_port_t master_port
,
4920 if( master_port
!= master_device_port
)
4921 return kIOReturnNotPrivileged
;
4924 case kIOCatalogResetDefault
:
4925 gIOCatalogue
->reset();
4929 return kIOReturnBadArgument
;
4932 return kIOReturnSuccess
;
4935 kern_return_t
iokit_user_client_trap(struct iokit_user_client_trap_args
*args
)
4937 kern_return_t result
= kIOReturnBadArgument
;
4938 IOUserClient
*userClient
;
4940 if ((userClient
= OSDynamicCast(IOUserClient
,
4941 iokit_lookup_connect_ref_current_task((OSObject
*)(args
->userClientRef
))))) {
4942 IOExternalTrap
*trap
;
4943 IOService
*target
= NULL
;
4945 trap
= userClient
->getTargetAndTrapForIndex(&target
, args
->index
);
4947 if (trap
&& target
) {
4953 result
= (target
->*func
)(args
->p1
, args
->p2
, args
->p3
, args
->p4
, args
->p5
, args
->p6
);
4957 userClient
->release();
4965 IOReturn
IOUserClient::externalMethod( uint32_t selector
, IOExternalMethodArguments
* args
,
4966 IOExternalMethodDispatch
* dispatch
, OSObject
* target
, void * reference
)
4970 IOByteCount structureOutputSize
;
4975 count
= dispatch
->checkScalarInputCount
;
4976 if ((kIOUCVariableStructureSize
!= count
) && (count
!= args
->scalarInputCount
))
4978 return (kIOReturnBadArgument
);
4981 count
= dispatch
->checkStructureInputSize
;
4982 if ((kIOUCVariableStructureSize
!= count
)
4983 && (count
!= ((args
->structureInputDescriptor
)
4984 ? args
->structureInputDescriptor
->getLength() : args
->structureInputSize
)))
4986 return (kIOReturnBadArgument
);
4989 count
= dispatch
->checkScalarOutputCount
;
4990 if ((kIOUCVariableStructureSize
!= count
) && (count
!= args
->scalarOutputCount
))
4992 return (kIOReturnBadArgument
);
4995 count
= dispatch
->checkStructureOutputSize
;
4996 if ((kIOUCVariableStructureSize
!= count
)
4997 && (count
!= ((args
->structureOutputDescriptor
)
4998 ? args
->structureOutputDescriptor
->getLength() : args
->structureOutputSize
)))
5000 return (kIOReturnBadArgument
);
5003 if (dispatch
->function
)
5004 err
= (*dispatch
->function
)(target
, reference
, args
);
5006 err
= kIOReturnNoCompletion
; /* implementator can dispatch */
5012 // pre-Leopard API's don't do ool structs
5013 if (args
->structureInputDescriptor
|| args
->structureOutputDescriptor
)
5015 err
= kIOReturnIPCError
;
5019 structureOutputSize
= args
->structureOutputSize
;
5021 if (args
->asyncWakePort
)
5023 IOExternalAsyncMethod
* method
;
5025 if( !(method
= getAsyncTargetAndMethodForIndex(&object
, selector
)) || !object
)
5026 return (kIOReturnUnsupported
);
5028 if (kIOUCForegroundOnly
& method
->flags
)
5030 if (task_is_gpu_denied(current_task()))
5031 return (kIOReturnNotPermitted
);
5034 switch (method
->flags
& kIOUCTypeMask
)
5036 case kIOUCScalarIStructI
:
5037 err
= shim_io_async_method_scalarI_structureI( method
, object
,
5038 args
->asyncWakePort
, args
->asyncReference
, args
->asyncReferenceCount
,
5039 args
->scalarInput
, args
->scalarInputCount
,
5040 (char *)args
->structureInput
, args
->structureInputSize
);
5043 case kIOUCScalarIScalarO
:
5044 err
= shim_io_async_method_scalarI_scalarO( method
, object
,
5045 args
->asyncWakePort
, args
->asyncReference
, args
->asyncReferenceCount
,
5046 args
->scalarInput
, args
->scalarInputCount
,
5047 args
->scalarOutput
, &args
->scalarOutputCount
);
5050 case kIOUCScalarIStructO
:
5051 err
= shim_io_async_method_scalarI_structureO( method
, object
,
5052 args
->asyncWakePort
, args
->asyncReference
, args
->asyncReferenceCount
,
5053 args
->scalarInput
, args
->scalarInputCount
,
5054 (char *) args
->structureOutput
, &args
->structureOutputSize
);
5058 case kIOUCStructIStructO
:
5059 err
= shim_io_async_method_structureI_structureO( method
, object
,
5060 args
->asyncWakePort
, args
->asyncReference
, args
->asyncReferenceCount
,
5061 (char *)args
->structureInput
, args
->structureInputSize
,
5062 (char *) args
->structureOutput
, &args
->structureOutputSize
);
5066 err
= kIOReturnBadArgument
;
5072 IOExternalMethod
* method
;
5074 if( !(method
= getTargetAndMethodForIndex(&object
, selector
)) || !object
)
5075 return (kIOReturnUnsupported
);
5077 if (kIOUCForegroundOnly
& method
->flags
)
5079 if (task_is_gpu_denied(current_task()))
5080 return (kIOReturnNotPermitted
);
5083 switch (method
->flags
& kIOUCTypeMask
)
5085 case kIOUCScalarIStructI
:
5086 err
= shim_io_connect_method_scalarI_structureI( method
, object
,
5087 args
->scalarInput
, args
->scalarInputCount
,
5088 (char *) args
->structureInput
, args
->structureInputSize
);
5091 case kIOUCScalarIScalarO
:
5092 err
= shim_io_connect_method_scalarI_scalarO( method
, object
,
5093 args
->scalarInput
, args
->scalarInputCount
,
5094 args
->scalarOutput
, &args
->scalarOutputCount
);
5097 case kIOUCScalarIStructO
:
5098 err
= shim_io_connect_method_scalarI_structureO( method
, object
,
5099 args
->scalarInput
, args
->scalarInputCount
,
5100 (char *) args
->structureOutput
, &structureOutputSize
);
5104 case kIOUCStructIStructO
:
5105 err
= shim_io_connect_method_structureI_structureO( method
, object
,
5106 (char *) args
->structureInput
, args
->structureInputSize
,
5107 (char *) args
->structureOutput
, &structureOutputSize
);
5111 err
= kIOReturnBadArgument
;
5116 args
->structureOutputSize
= structureOutputSize
;
5123 OSMetaClassDefineReservedUnused(IOUserClient
, 0);
5124 OSMetaClassDefineReservedUnused(IOUserClient
, 1);
5126 OSMetaClassDefineReservedUsed(IOUserClient
, 0);
5127 OSMetaClassDefineReservedUsed(IOUserClient
, 1);
5129 OSMetaClassDefineReservedUnused(IOUserClient
, 2);
5130 OSMetaClassDefineReservedUnused(IOUserClient
, 3);
5131 OSMetaClassDefineReservedUnused(IOUserClient
, 4);
5132 OSMetaClassDefineReservedUnused(IOUserClient
, 5);
5133 OSMetaClassDefineReservedUnused(IOUserClient
, 6);
5134 OSMetaClassDefineReservedUnused(IOUserClient
, 7);
5135 OSMetaClassDefineReservedUnused(IOUserClient
, 8);
5136 OSMetaClassDefineReservedUnused(IOUserClient
, 9);
5137 OSMetaClassDefineReservedUnused(IOUserClient
, 10);
5138 OSMetaClassDefineReservedUnused(IOUserClient
, 11);
5139 OSMetaClassDefineReservedUnused(IOUserClient
, 12);
5140 OSMetaClassDefineReservedUnused(IOUserClient
, 13);
5141 OSMetaClassDefineReservedUnused(IOUserClient
, 14);
5142 OSMetaClassDefineReservedUnused(IOUserClient
, 15);