2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <zone_debug.h>
32 #include <mach/boolean.h>
33 #include <mach/kern_return.h>
34 #include <mach/mig_errors.h>
35 #include <mach/port.h>
36 #include <mach/vm_param.h>
37 #include <mach/notify.h>
38 //#include <mach/mach_host_server.h>
39 #include <mach/mach_types.h>
41 #include <machine/machparam.h> /* spl definitions */
43 #include <ipc/ipc_port.h>
44 #include <ipc/ipc_space.h>
46 #include <kern/clock.h>
48 #include <kern/counters.h>
49 #include <kern/queue.h>
50 #include <kern/zalloc.h>
51 #include <kern/thread.h>
52 #include <kern/task.h>
53 #include <kern/sched_prim.h>
54 #include <kern/misc_protos.h>
57 #include <vm/vm_map.h>
58 #include <vm/vm_kern.h>
60 #include <device/device_types.h>
61 #include <device/device_port.h>
62 #include <device/device_server.h>
64 #include <machine/machparam.h>
67 #include <ppc/mappings.h>
69 #if defined(__i386__) || defined(__x86_64__)
70 #include <i386/pmap.h>
72 #include <IOKit/IOTypes.h>
78 * Functions in iokit:IOUserClient.cpp
81 extern void iokit_add_reference( io_object_t obj
);
83 extern ipc_port_t
iokit_port_for_object( io_object_t obj
,
84 ipc_kobject_type_t type
);
86 extern kern_return_t
iokit_client_died( io_object_t obj
,
87 ipc_port_t port
, ipc_kobject_type_t type
, mach_port_mscount_t
* mscount
);
90 iokit_client_memory_for_type(
94 vm_address_t
* address
,
98 extern ppnum_t
IOGetLastPageNumber(void);
101 * Functions imported by iokit:IOUserClient.cpp
104 extern ipc_port_t
iokit_alloc_object_port( io_object_t obj
,
105 ipc_kobject_type_t type
);
107 extern kern_return_t
iokit_destroy_object_port( ipc_port_t port
);
109 extern mach_port_name_t
iokit_make_send_right( task_t task
,
110 io_object_t obj
, ipc_kobject_type_t type
);
112 extern kern_return_t
iokit_mod_send_right( task_t task
, mach_port_name_t name
, mach_port_delta_t delta
);
114 extern io_object_t
iokit_lookup_connect_ref(io_object_t clientRef
, ipc_space_t task
);
116 extern io_object_t
iokit_lookup_connect_ref_current_task(io_object_t clientRef
);
118 extern void iokit_retain_port( ipc_port_t port
);
119 extern void iokit_release_port( ipc_port_t port
);
120 extern void iokit_release_port_send( ipc_port_t port
);
122 extern kern_return_t
iokit_switch_object_port( ipc_port_t port
, io_object_t obj
, ipc_kobject_type_t type
);
125 * Functions imported by iokit:IOMemoryDescriptor.cpp
128 extern kern_return_t
IOMapPages(vm_map_t map
, mach_vm_address_t va
, mach_vm_address_t pa
,
129 mach_vm_size_t length
, unsigned int mapFlags
);
131 extern kern_return_t
IOUnmapPages(vm_map_t map
, mach_vm_address_t va
, mach_vm_size_t length
);
133 extern kern_return_t
IOProtectCacheMode(vm_map_t map
, mach_vm_address_t va
,
134 mach_vm_size_t length
, unsigned int options
);
136 extern unsigned int IODefaultCacheBits(addr64_t pa
);
139 * Lookup a device by its port.
140 * Doesn't consume the naked send right; produces a device reference.
142 MIGEXTERN io_object_t
143 iokit_lookup_object_port(
146 register io_object_t obj
;
152 if (ip_active(port
) && (ip_kotype(port
) == IKOT_IOKIT_OBJECT
)) {
153 obj
= (io_object_t
) port
->ip_kobject
;
154 iokit_add_reference( obj
);
164 MIGEXTERN io_object_t
165 iokit_lookup_connect_port(
168 register io_object_t obj
;
174 if (ip_active(port
) && (ip_kotype(port
) == IKOT_IOKIT_CONNECT
)) {
175 obj
= (io_object_t
) port
->ip_kobject
;
176 iokit_add_reference( obj
);
187 iokit_lookup_connect_ref(io_object_t connectRef
, ipc_space_t space
)
189 io_object_t obj
= NULL
;
191 if (connectRef
&& MACH_PORT_VALID(CAST_MACH_PORT_TO_NAME(connectRef
))) {
195 kr
= ipc_object_translate(space
, CAST_MACH_PORT_TO_NAME(connectRef
), MACH_PORT_RIGHT_SEND
, (ipc_object_t
*)&port
);
197 if (kr
== KERN_SUCCESS
) {
198 assert(IP_VALID(port
));
200 if (ip_active(port
) && (ip_kotype(port
) == IKOT_IOKIT_CONNECT
)) {
201 obj
= (io_object_t
) port
->ip_kobject
;
202 iokit_add_reference(obj
);
213 iokit_lookup_connect_ref_current_task(io_object_t connectRef
)
215 return iokit_lookup_connect_ref(connectRef
, current_space());
219 iokit_retain_port( ipc_port_t port
)
221 ipc_port_reference( port
);
225 iokit_release_port( ipc_port_t port
)
227 ipc_port_release( port
);
231 iokit_release_port_send( ipc_port_t port
)
233 ipc_port_release_send( port
);
237 * Get the port for a device.
238 * Consumes a device reference; produces a naked send right.
241 iokit_make_object_port(
244 register ipc_port_t port
;
245 register ipc_port_t sendPort
;
250 port
= iokit_port_for_object( obj
, IKOT_IOKIT_OBJECT
);
252 sendPort
= ipc_port_make_send( port
);
253 iokit_release_port( port
);
257 iokit_remove_reference( obj
);
263 iokit_make_connect_port(
266 register ipc_port_t port
;
267 register ipc_port_t sendPort
;
272 port
= iokit_port_for_object( obj
, IKOT_IOKIT_CONNECT
);
274 sendPort
= ipc_port_make_send( port
);
275 iokit_release_port( port
);
279 iokit_remove_reference( obj
);
287 iokit_alloc_object_port( io_object_t obj
, ipc_kobject_type_t type
)
294 /* Allocate port, keeping a reference for it. */
295 port
= ipc_port_alloc_kernel();
299 /* set kobject & type */
300 // iokit_add_reference( obj );
301 ipc_kobject_set( port
, (ipc_kobject_t
) obj
, type
);
303 /* Request no-senders notifications on the port. */
304 notify
= ipc_port_make_sonce( port
);
306 ipc_port_nsrequest( port
, 1, notify
, ¬ify
);
307 assert( notify
== IP_NULL
);
317 iokit_destroy_object_port( ipc_port_t port
)
319 ipc_kobject_set( port
, IKO_NULL
, IKOT_NONE
);
321 // iokit_remove_reference( obj );
323 ipc_port_dealloc_kernel( port
);
326 return( KERN_SUCCESS
);
330 iokit_switch_object_port( ipc_port_t port
, io_object_t obj
, ipc_kobject_type_t type
)
332 ipc_kobject_set( port
, (ipc_kobject_t
) obj
, type
);
334 return( KERN_SUCCESS
);
337 EXTERN mach_port_name_t
338 iokit_make_send_right( task_t task
, io_object_t obj
, ipc_kobject_type_t type
)
342 mach_port_name_t name
;
345 return MACH_PORT_NULL
;
347 port
= iokit_port_for_object( obj
, type
);
349 sendPort
= ipc_port_make_send( port
);
350 iokit_release_port( port
);
354 if (IP_VALID( sendPort
)) {
356 kr
= ipc_object_copyout( task
->itk_space
, (ipc_object_t
) sendPort
,
357 MACH_MSG_TYPE_PORT_SEND
, TRUE
, &name
);
358 if ( kr
!= KERN_SUCCESS
)
359 name
= MACH_PORT_NULL
;
360 } else if ( sendPort
== IP_NULL
)
361 name
= MACH_PORT_NULL
;
362 else if ( sendPort
== IP_DEAD
)
363 name
= MACH_PORT_DEAD
;
365 iokit_remove_reference( obj
);
371 iokit_mod_send_right( task_t task
, mach_port_name_t name
, mach_port_delta_t delta
)
373 return (mach_port_mod_refs( task
->itk_space
, name
, MACH_PORT_RIGHT_SEND
, delta
));
377 * Handle the No-More_Senders notification generated from a device port destroy.
378 * Since there are no longer any tasks which hold a send right to this device
379 * port a NMS notification has been generated.
383 iokit_no_senders( mach_no_senders_notification_t
* notification
)
386 io_object_t obj
= NULL
;
387 ipc_kobject_type_t type
= IKOT_NONE
;
390 port
= (ipc_port_t
) notification
->not_header
.msgh_remote_port
;
392 // convert a port to io_object_t.
393 if( IP_VALID(port
)) {
395 if( ip_active(port
)) {
396 obj
= (io_object_t
) port
->ip_kobject
;
397 type
= ip_kotype( port
);
398 if( (IKOT_IOKIT_OBJECT
== type
)
399 || (IKOT_IOKIT_CONNECT
== type
))
400 iokit_add_reference( obj
);
408 mach_port_mscount_t mscount
= notification
->not_count
;
410 if( KERN_SUCCESS
!= iokit_client_died( obj
, port
, type
, &mscount
))
412 /* Re-request no-senders notifications on the port. */
413 notify
= ipc_port_make_sonce( port
);
415 ipc_port_nsrequest( port
, mscount
+ 1, notify
, ¬ify
);
416 assert( notify
== IP_NULL
);
418 iokit_remove_reference( obj
);
426 iokit_notify( mach_msg_header_t
* msg
)
428 switch (msg
->msgh_id
) {
429 case MACH_NOTIFY_NO_SENDERS
:
430 iokit_no_senders((mach_no_senders_notification_t
*) msg
);
433 case MACH_NOTIFY_PORT_DELETED
:
434 case MACH_NOTIFY_PORT_DESTROYED
:
435 case MACH_NOTIFY_SEND_ONCE
:
436 case MACH_NOTIFY_DEAD_NAME
:
438 printf("iokit_notify: strange notification %d\n", msg
->msgh_id
);
443 /* need to create a pmap function to generalize */
444 unsigned int IODefaultCacheBits(addr64_t pa
)
446 return(pmap_cache_attributes((ppnum_t
)(pa
>> PAGE_SHIFT
)));
449 kern_return_t
IOMapPages(vm_map_t map
, mach_vm_address_t va
, mach_vm_address_t pa
,
450 mach_vm_size_t length
, unsigned int options
)
454 pmap_t pmap
= map
->pmap
;
456 prot
= (options
& kIOMapReadOnly
)
457 ? VM_PROT_READ
: (VM_PROT_READ
|VM_PROT_WRITE
);
459 switch(options
& kIOMapCacheMask
) { /* What cache mode do we need? */
461 case kIOMapDefaultCache
:
463 flags
= IODefaultCacheBits(pa
);
466 case kIOMapInhibitCache
:
470 case kIOMapWriteThruCache
:
471 flags
= VM_WIMG_WTHRU
;
474 case kIOMapWriteCombineCache
:
475 flags
= VM_WIMG_WCOMB
;
478 case kIOMapCopybackCache
:
479 flags
= VM_WIMG_COPYBACK
;
483 // Set up a block mapped area
484 pmap_map_block(pmap
, va
, (ppnum_t
)atop_64(pa
), (uint32_t) atop_64(round_page_64(length
)), prot
, flags
, 0);
486 return( KERN_SUCCESS
);
489 kern_return_t
IOUnmapPages(vm_map_t map
, mach_vm_address_t va
, mach_vm_size_t length
)
491 pmap_t pmap
= map
->pmap
;
493 pmap_remove(pmap
, trunc_page_64(va
), round_page_64(va
+ length
));
495 return( KERN_SUCCESS
);
498 kern_return_t
IOProtectCacheMode(vm_map_t __unused map
, mach_vm_address_t __unused va
,
499 mach_vm_size_t __unused length
, unsigned int __unused options
)
502 // can't remap block mappings, but ppc doesn't speculatively read from WC
508 pmap_t pmap
= map
->pmap
;
510 prot
= (options
& kIOMapReadOnly
)
511 ? VM_PROT_READ
: (VM_PROT_READ
|VM_PROT_WRITE
);
513 switch (options
& kIOMapCacheMask
)
515 // what cache mode do we need?
516 case kIOMapDefaultCache
:
518 return (KERN_INVALID_ARGUMENT
);
520 case kIOMapInhibitCache
:
524 case kIOMapWriteThruCache
:
525 flags
= VM_WIMG_WTHRU
;
528 case kIOMapWriteCombineCache
:
529 flags
= VM_WIMG_WCOMB
;
532 case kIOMapCopybackCache
:
533 flags
= VM_WIMG_COPYBACK
;
537 // enter each page's physical address in the target map
538 for (off
= 0; off
< length
; off
+= page_size
)
540 ppnum_t ppnum
= pmap_find_phys(pmap
, va
+ off
);
542 pmap_enter(pmap
, va
+ off
, ppnum
, prot
, flags
, TRUE
);
547 return (KERN_SUCCESS
);
550 ppnum_t
IOGetLastPageNumber(void)
552 ppnum_t lastPage
, highest
= 0;
556 for (idx
= 0; idx
< pmap_mem_regions_count
; idx
++)
558 lastPage
= pmap_mem_regions
[idx
].mrEnd
;
559 #elif __i386__ || __x86_64__
560 for (idx
= 0; idx
< pmap_memory_region_count
; idx
++)
562 lastPage
= pmap_memory_regions
[idx
].end
- 1;
566 if (lastPage
> highest
)
573 void IOGetTime( mach_timespec_t
* clock_time
);
574 void IOGetTime( mach_timespec_t
* clock_time
)
578 clock_get_system_nanotime(&sec
, &nsec
);
579 clock_time
->tv_sec
= (typeof(clock_time
->tv_sec
))sec
;
580 clock_time
->tv_nsec
= nsec
;