2 * Copyright (c) 2000-2004 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@
32 * Mach Operating System
33 * Copyright (c) 1991,1990 Carnegie Mellon University
34 * All Rights Reserved.
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
46 * Carnegie Mellon requests users of this software to return to
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
59 * File: vm/vm_debug.c.
63 * Exported kernel calls. See mach_debug/mach_debug.defs.
65 #include <mach_vm_debug.h>
66 #include <mach/kern_return.h>
67 #include <mach/mach_host_server.h>
68 #include <mach_debug/vm_info.h>
69 #include <mach_debug/page_info.h>
70 #include <mach_debug/hash_info.h>
73 #include <mach/machine/vm_types.h>
74 #include <mach/memory_object_types.h>
75 #include <mach/vm_prot.h>
76 #include <mach/vm_inherit.h>
77 #include <mach/vm_param.h>
78 #include <kern/thread.h>
79 #include <vm/vm_map.h>
80 #include <vm/vm_kern.h>
81 #include <vm/vm_object.h>
82 #include <kern/task.h>
83 #include <kern/host.h>
84 #include <ipc/ipc_port.h>
85 #include <vm/vm_debug.h>
89 #define __DEBUG_ONLY __unused
90 #else /* !MACH_VM_DEBUG */
92 #endif /* !MACH_VM_DEBUG */
96 #include <mach/vm32_map_server.h>
97 #include <mach/vm_map.h>
100 * Routine: mach_vm_region_info [kernel call]
102 * Retrieve information about a VM region,
103 * including info about the object chain.
107 * KERN_SUCCESS Retrieve region/object info.
108 * KERN_INVALID_TASK The map is null.
109 * KERN_NO_SPACE There is no entry at/after the address.
110 * KERN_RESOURCE_SHORTAGE Can't allocate memory.
115 __DEBUG_ONLY vm_map_t map
,
116 __DEBUG_ONLY vm32_offset_t address
,
117 __DEBUG_ONLY vm_info_region_t
*regionp
,
118 __DEBUG_ONLY vm_info_object_array_t
*objectsp
,
119 __DEBUG_ONLY mach_msg_type_number_t
*objectsCntp
)
125 vm_offset_t addr
; /* memory for OOL data */
126 vm_size_t size
; /* size of the memory */
127 unsigned int room
; /* room for this many objects */
128 unsigned int used
; /* actually this many objects */
129 vm_info_region_t region
;
132 if (map
== VM_MAP_NULL
)
133 return KERN_INVALID_TASK
;
135 size
= 0; /* no memory allocated yet */
138 vm_map_t cmap
; /* current map in traversal */
139 vm_map_t nmap
; /* next map to look at */
140 vm_map_entry_t entry
;
141 vm_object_t object
, cobject
, nobject
;
143 /* nothing is locked */
145 vm_map_lock_read(map
);
146 for (cmap
= map
;; cmap
= nmap
) {
147 /* cmap is read-locked */
149 if (!vm_map_lookup_entry(cmap
,
150 (vm_map_address_t
)address
, &entry
)) {
152 entry
= entry
->vme_next
;
153 if (entry
== vm_map_to_entry(cmap
)) {
154 vm_map_unlock_read(cmap
);
156 kmem_free(ipc_kernel_map
,
158 return KERN_NO_SPACE
;
162 if (entry
->is_sub_map
)
163 nmap
= entry
->object
.sub_map
;
167 /* move down to the lower map */
169 vm_map_lock_read(nmap
);
170 vm_map_unlock_read(cmap
);
173 /* cmap is read-locked; we have a real entry */
175 object
= entry
->object
.vm_object
;
176 region
.vir_start
= (natural_t
) entry
->vme_start
;
177 region
.vir_end
= (natural_t
) entry
->vme_end
;
178 region
.vir_object
= (natural_t
)(uintptr_t) object
;
179 region
.vir_offset
= (natural_t
) entry
->offset
;
180 region
.vir_needs_copy
= entry
->needs_copy
;
181 region
.vir_protection
= entry
->protection
;
182 region
.vir_max_protection
= entry
->max_protection
;
183 region
.vir_inheritance
= entry
->inheritance
;
184 region
.vir_wired_count
= entry
->wired_count
;
185 region
.vir_user_wired_count
= entry
->user_wired_count
;
188 room
= (unsigned int) (size
/ sizeof(vm_info_object_t
));
190 if (object
== VM_OBJECT_NULL
) {
191 vm_map_unlock_read(cmap
);
192 /* no memory needed */
196 vm_object_lock(object
);
197 vm_map_unlock_read(cmap
);
199 for (cobject
= object
;; cobject
= nobject
) {
200 /* cobject is locked */
203 vm_info_object_t
*vio
=
204 &((vm_info_object_t
*) addr
)[used
];
207 (natural_t
)(uintptr_t) cobject
;
209 (natural_t
) cobject
->vo_size
;
212 vio
->vio_resident_page_count
=
213 cobject
->resident_page_count
;
215 (natural_t
)(uintptr_t) cobject
->copy
;
217 (natural_t
)(uintptr_t) cobject
->shadow
;
218 vio
->vio_shadow_offset
=
219 (natural_t
) cobject
->vo_shadow_offset
;
220 vio
->vio_paging_offset
=
221 (natural_t
) cobject
->paging_offset
;
222 vio
->vio_copy_strategy
=
223 cobject
->copy_strategy
;
224 vio
->vio_last_alloc
=
225 (vm_offset_t
) cobject
->last_alloc
;
226 vio
->vio_paging_in_progress
=
227 cobject
->paging_in_progress
+
228 cobject
->activity_in_progress
;
229 vio
->vio_pager_created
=
230 cobject
->pager_created
;
231 vio
->vio_pager_initialized
=
232 cobject
->pager_initialized
;
233 vio
->vio_pager_ready
=
234 cobject
->pager_ready
;
235 vio
->vio_can_persist
=
236 cobject
->can_persist
;
244 (cobject
->purgable
!= VM_PURGABLE_DENY
);
245 vio
->vio_purgable_volatile
=
246 (cobject
->purgable
== VM_PURGABLE_VOLATILE
||
247 cobject
->purgable
== VM_PURGABLE_EMPTY
);
251 nobject
= cobject
->shadow
;
252 if (nobject
== VM_OBJECT_NULL
) {
253 vm_object_unlock(cobject
);
257 vm_object_lock(nobject
);
258 vm_object_unlock(cobject
);
266 /* must allocate more memory */
269 kmem_free(ipc_kernel_map
, addr
, size
);
270 size
= round_page(2 * used
* sizeof(vm_info_object_t
));
272 kr
= vm_allocate(ipc_kernel_map
, &addr
, size
, VM_FLAGS_ANYWHERE
);
273 if (kr
!= KERN_SUCCESS
)
274 return KERN_RESOURCE_SHORTAGE
;
276 kr
= vm_map_wire(ipc_kernel_map
, vm_map_trunc_page(addr
),
277 vm_map_round_page(addr
+ size
),
278 VM_PROT_READ
|VM_PROT_WRITE
, FALSE
);
279 assert(kr
== KERN_SUCCESS
);
282 /* free excess memory; make remaining memory pageable */
285 copy
= VM_MAP_COPY_NULL
;
288 kmem_free(ipc_kernel_map
, addr
, size
);
290 vm_size_t size_used
=
291 round_page(used
* sizeof(vm_info_object_t
));
293 kr
= vm_map_unwire(ipc_kernel_map
, vm_map_trunc_page(addr
),
294 vm_map_round_page(addr
+ size_used
), FALSE
);
295 assert(kr
== KERN_SUCCESS
);
297 kr
= vm_map_copyin(ipc_kernel_map
, (vm_map_address_t
)addr
,
298 (vm_map_size_t
)size_used
, TRUE
, ©
);
299 assert(kr
== KERN_SUCCESS
);
301 if (size
!= size_used
)
302 kmem_free(ipc_kernel_map
,
303 addr
+ size_used
, size
- size_used
);
307 *objectsp
= (vm_info_object_array_t
) copy
;
310 #endif /* MACH_VM_DEBUG */
314 * Temporary call for 64 bit data path interface transiotion
319 __DEBUG_ONLY vm_map_t map
,
320 __DEBUG_ONLY vm32_offset_t address
,
321 __DEBUG_ONLY vm_info_region_64_t
*regionp
,
322 __DEBUG_ONLY vm_info_object_array_t
*objectsp
,
323 __DEBUG_ONLY mach_msg_type_number_t
*objectsCntp
)
329 vm_offset_t addr
; /* memory for OOL data */
330 vm_size_t size
; /* size of the memory */
331 unsigned int room
; /* room for this many objects */
332 unsigned int used
; /* actually this many objects */
333 vm_info_region_64_t region
;
336 if (map
== VM_MAP_NULL
)
337 return KERN_INVALID_TASK
;
339 size
= 0; /* no memory allocated yet */
342 vm_map_t cmap
; /* current map in traversal */
343 vm_map_t nmap
; /* next map to look at */
344 vm_map_entry_t entry
;
345 vm_object_t object
, cobject
, nobject
;
347 /* nothing is locked */
349 vm_map_lock_read(map
);
350 for (cmap
= map
;; cmap
= nmap
) {
351 /* cmap is read-locked */
353 if (!vm_map_lookup_entry(cmap
, address
, &entry
)) {
354 entry
= entry
->vme_next
;
355 if (entry
== vm_map_to_entry(cmap
)) {
356 vm_map_unlock_read(cmap
);
358 kmem_free(ipc_kernel_map
,
360 return KERN_NO_SPACE
;
364 if (entry
->is_sub_map
)
365 nmap
= entry
->object
.sub_map
;
369 /* move down to the lower map */
371 vm_map_lock_read(nmap
);
372 vm_map_unlock_read(cmap
);
375 /* cmap is read-locked; we have a real entry */
377 object
= entry
->object
.vm_object
;
378 region
.vir_start
= (natural_t
) entry
->vme_start
;
379 region
.vir_end
= (natural_t
) entry
->vme_end
;
380 region
.vir_object
= (natural_t
)(uintptr_t) object
;
381 region
.vir_offset
= entry
->offset
;
382 region
.vir_needs_copy
= entry
->needs_copy
;
383 region
.vir_protection
= entry
->protection
;
384 region
.vir_max_protection
= entry
->max_protection
;
385 region
.vir_inheritance
= entry
->inheritance
;
386 region
.vir_wired_count
= entry
->wired_count
;
387 region
.vir_user_wired_count
= entry
->user_wired_count
;
390 room
= (unsigned int) (size
/ sizeof(vm_info_object_t
));
392 if (object
== VM_OBJECT_NULL
) {
393 vm_map_unlock_read(cmap
);
394 /* no memory needed */
398 vm_object_lock(object
);
399 vm_map_unlock_read(cmap
);
401 for (cobject
= object
;; cobject
= nobject
) {
402 /* cobject is locked */
405 vm_info_object_t
*vio
=
406 &((vm_info_object_t
*) addr
)[used
];
409 (natural_t
)(uintptr_t) cobject
;
411 (natural_t
) cobject
->vo_size
;
414 vio
->vio_resident_page_count
=
415 cobject
->resident_page_count
;
417 (natural_t
)(uintptr_t) cobject
->copy
;
419 (natural_t
)(uintptr_t) cobject
->shadow
;
420 vio
->vio_shadow_offset
=
421 (natural_t
) cobject
->vo_shadow_offset
;
422 vio
->vio_paging_offset
=
423 (natural_t
) cobject
->paging_offset
;
424 vio
->vio_copy_strategy
=
425 cobject
->copy_strategy
;
426 vio
->vio_last_alloc
=
427 (vm_offset_t
) cobject
->last_alloc
;
428 vio
->vio_paging_in_progress
=
429 cobject
->paging_in_progress
+
430 cobject
->activity_in_progress
;
431 vio
->vio_pager_created
=
432 cobject
->pager_created
;
433 vio
->vio_pager_initialized
=
434 cobject
->pager_initialized
;
435 vio
->vio_pager_ready
=
436 cobject
->pager_ready
;
437 vio
->vio_can_persist
=
438 cobject
->can_persist
;
446 (cobject
->purgable
!= VM_PURGABLE_DENY
);
447 vio
->vio_purgable_volatile
=
448 (cobject
->purgable
== VM_PURGABLE_VOLATILE
||
449 cobject
->purgable
== VM_PURGABLE_EMPTY
);
453 nobject
= cobject
->shadow
;
454 if (nobject
== VM_OBJECT_NULL
) {
455 vm_object_unlock(cobject
);
459 vm_object_lock(nobject
);
460 vm_object_unlock(cobject
);
468 /* must allocate more memory */
471 kmem_free(ipc_kernel_map
, addr
, size
);
472 size
= round_page(2 * used
* sizeof(vm_info_object_t
));
474 kr
= vm_allocate(ipc_kernel_map
, &addr
, size
, VM_FLAGS_ANYWHERE
);
475 if (kr
!= KERN_SUCCESS
)
476 return KERN_RESOURCE_SHORTAGE
;
478 kr
= vm_map_wire(ipc_kernel_map
, vm_map_trunc_page(addr
),
479 vm_map_round_page(addr
+ size
),
480 VM_PROT_READ
|VM_PROT_WRITE
, FALSE
);
481 assert(kr
== KERN_SUCCESS
);
484 /* free excess memory; make remaining memory pageable */
487 copy
= VM_MAP_COPY_NULL
;
490 kmem_free(ipc_kernel_map
, addr
, size
);
492 vm_size_t size_used
=
493 round_page(used
* sizeof(vm_info_object_t
));
495 kr
= vm_map_unwire(ipc_kernel_map
, vm_map_trunc_page(addr
),
496 vm_map_round_page(addr
+ size_used
), FALSE
);
497 assert(kr
== KERN_SUCCESS
);
499 kr
= vm_map_copyin(ipc_kernel_map
, (vm_map_address_t
)addr
,
500 (vm_map_size_t
)size_used
, TRUE
, ©
);
501 assert(kr
== KERN_SUCCESS
);
503 if (size
!= size_used
)
504 kmem_free(ipc_kernel_map
,
505 addr
+ size_used
, size
- size_used
);
509 *objectsp
= (vm_info_object_array_t
) copy
;
512 #endif /* MACH_VM_DEBUG */
515 * Return an array of virtual pages that are mapped to a task.
518 vm32_mapped_pages_info(
519 __DEBUG_ONLY vm_map_t map
,
520 __DEBUG_ONLY page_address_array_t
*pages
,
521 __DEBUG_ONLY mach_msg_type_number_t
*pages_count
)
527 vm_size_t size
, size_used
;
528 unsigned int actual
, space
;
529 page_address_array_t list
;
532 if (map
== VM_MAP_NULL
)
533 return (KERN_INVALID_ARGUMENT
);
536 size
= pmap_resident_count(pmap
) * sizeof(vm_offset_t
);
537 size
= round_page(size
);
540 (void) vm_allocate(ipc_kernel_map
, &addr
, size
, VM_FLAGS_ANYWHERE
);
541 (void) vm_map_unwire(ipc_kernel_map
, vm_map_trunc_page(addr
),
542 vm_map_round_page(addr
+ size
), FALSE
);
544 list
= (page_address_array_t
) addr
;
545 space
= (unsigned int) (size
/ sizeof(vm_offset_t
));
547 actual
= pmap_list_resident_pages(pmap
,
554 * Free memory if not enough
556 (void) kmem_free(ipc_kernel_map
, addr
, size
);
559 * Try again, doubling the size
561 size
= round_page(actual
* sizeof(vm_offset_t
));
566 (void) kmem_free(ipc_kernel_map
, addr
, size
);
569 *pages_count
= actual
;
570 size_used
= round_page(actual
* sizeof(vm_offset_t
));
571 (void) vm_map_wire(ipc_kernel_map
, vm_map_trunc_page(addr
),
572 vm_map_round_page(addr
+ size
),
573 VM_PROT_READ
|VM_PROT_WRITE
, FALSE
);
574 (void) vm_map_copyin(ipc_kernel_map
,
575 (vm_map_address_t
)addr
,
576 (vm_map_size_t
)size_used
,
578 (vm_map_copy_t
*)pages
);
579 if (size_used
!= size
) {
580 (void) kmem_free(ipc_kernel_map
,
586 return (KERN_SUCCESS
);
587 #endif /* MACH_VM_DEBUG */
590 #endif /* VM32_SUPPORT */
593 * Routine: host_virtual_physical_table_info
595 * Return information about the VP table.
597 * Nothing locked. Obeys CountInOut protocol.
599 * KERN_SUCCESS Returned information.
600 * KERN_INVALID_HOST The host is null.
601 * KERN_RESOURCE_SHORTAGE Couldn't allocate memory.
605 host_virtual_physical_table_info(
606 __DEBUG_ONLY host_t host
,
607 __DEBUG_ONLY hash_info_bucket_array_t
*infop
,
608 __DEBUG_ONLY mach_msg_type_number_t
*countp
)
615 hash_info_bucket_t
*info
;
616 unsigned int potential
, actual
;
619 if (host
== HOST_NULL
)
620 return KERN_INVALID_HOST
;
622 /* start with in-line data */
628 actual
= vm_page_info(info
, potential
);
629 if (actual
<= potential
)
632 /* allocate more memory */
635 kmem_free(ipc_kernel_map
, addr
, size
);
637 size
= round_page(actual
* sizeof *info
);
638 kr
= kmem_alloc_pageable(ipc_kernel_map
, &addr
, size
);
639 if (kr
!= KERN_SUCCESS
)
640 return KERN_RESOURCE_SHORTAGE
;
642 info
= (hash_info_bucket_t
*) addr
;
643 potential
= (unsigned int) (size
/sizeof (*info
));
646 if (info
== *infop
) {
647 /* data fit in-line; nothing to deallocate */
650 } else if (actual
== 0) {
651 kmem_free(ipc_kernel_map
, addr
, size
);
658 used
= round_page(actual
* sizeof *info
);
661 kmem_free(ipc_kernel_map
, addr
+ used
, size
- used
);
663 kr
= vm_map_copyin(ipc_kernel_map
, (vm_map_address_t
)addr
,
664 (vm_map_size_t
)used
, TRUE
, ©
);
665 assert(kr
== KERN_SUCCESS
);
667 *infop
= (hash_info_bucket_t
*) copy
;
672 #endif /* MACH_VM_DEBUG */