2 * Copyright (c) 2000-2009 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@
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988,1987 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.
61 * Author: Avadis Tevanian, Jr., Michael Wayne Young
64 * Virtual memory map module definitions.
73 #include <mach/mach_types.h>
74 #include <mach/kern_return.h>
75 #include <mach/boolean.h>
76 #include <mach/vm_types.h>
77 #include <mach/vm_prot.h>
78 #include <mach/vm_inherit.h>
79 #include <mach/vm_behavior.h>
80 #include <mach/vm_param.h>
85 #include <sys/cdefs.h>
89 extern void vm_map_reference(vm_map_t map
);
90 extern vm_map_t
current_map(void);
92 /* Setup reserved areas in a new VM map */
93 extern kern_return_t
vm_map_exec(
101 #ifdef MACH_KERNEL_PRIVATE
103 #include <task_swapper.h>
104 #include <mach_assert.h>
106 #include <vm/vm_object.h>
107 #include <vm/vm_page.h>
108 #include <kern/locks.h>
109 #include <kern/zalloc.h>
110 #include <kern/macro_help.h>
112 #include <kern/thread.h>
114 #define current_map_fast() (current_thread()->map)
115 #define current_map() (current_map_fast())
117 #include <vm/vm_map_store.h>
123 * vm_map_t the high-level address map data structure.
124 * vm_map_entry_t an entry in an address map.
125 * vm_map_version_t a timestamp of a map, for use with vm_map_lookup
126 * vm_map_copy_t represents memory copied from an address map,
127 * used for inter-map copy operations
129 typedef struct vm_map_entry
*vm_map_entry_t
;
130 #define VM_MAP_ENTRY_NULL ((vm_map_entry_t) 0)
134 * Type: vm_map_object_t [internal use only]
137 * The target of an address mapping, either a virtual
138 * memory object or a sub map (of the kernel map).
140 typedef union vm_map_object
{
141 vm_object_t vm_object
; /* object object */
142 vm_map_t sub_map
; /* belongs to another map */
145 #define named_entry_lock_init(object) lck_mtx_init(&(object)->Lock, &vm_object_lck_grp, &vm_object_lck_attr)
146 #define named_entry_lock_destroy(object) lck_mtx_destroy(&(object)->Lock, &vm_object_lck_grp)
147 #define named_entry_lock(object) lck_mtx_lock(&(object)->Lock)
148 #define named_entry_unlock(object) lck_mtx_unlock(&(object)->Lock)
151 * Type: vm_named_entry_t [internal use only]
154 * Description of a mapping to a memory cache object.
157 * While the handle to this object is used as a means to map
158 * and pass around the right to map regions backed by pagers
159 * of all sorts, the named_entry itself is only manipulated
160 * by the kernel. Named entries hold information on the
161 * right to map a region of a cached object. Namely,
162 * the target cache object, the beginning and ending of the
163 * region to be mapped, and the permissions, (read, write)
164 * with which it can be mapped.
168 struct vm_named_entry
{
169 decl_lck_mtx_data(, Lock
) /* Synchronization */
171 vm_object_t object
; /* object I point to */
172 memory_object_t pager
; /* amo pager port */
173 vm_map_t map
; /* map backing submap */
174 vm_map_copy_t copy
; /* a VM map copy */
176 vm_object_offset_t offset
; /* offset into object */
177 vm_object_size_t size
; /* size of region */
178 vm_object_offset_t data_offset
; /* offset to first byte of data */
179 vm_prot_t protection
; /* access permissions */
180 int ref_count
; /* Number of references */
181 unsigned int /* Is backing.xxx : */
182 /* boolean_t */ internal
:1, /* ... an internal object */
183 /* boolean_t */ is_sub_map
:1, /* ... a submap? */
184 /* boolean_t */ is_pager
:1, /* ... a pager port */
185 /* boolean_t */ is_copy
:1; /* ... a VM map copy */
189 * Type: vm_map_entry_t [internal use only]
192 * A single mapping within an address map.
195 * Address map entries consist of start and end addresses,
196 * a VM object (or sub map) and offset into that object,
197 * and user-exported inheritance and protection information.
198 * Control information for virtual copy operations is also
199 * stored in the address map entry.
202 struct vm_map_links
{
203 struct vm_map_entry
*prev
; /* previous entry */
204 struct vm_map_entry
*next
; /* next entry */
205 vm_map_offset_t start
; /* start address */
206 vm_map_offset_t end
; /* end address */
209 struct vm_map_entry
{
210 struct vm_map_links links
; /* links to other entries */
211 #define vme_prev links.prev
212 #define vme_next links.next
213 #define vme_start links.start
214 #define vme_end links.end
216 struct vm_map_store store
;
217 union vm_map_object object
; /* object I point to */
218 vm_object_offset_t offset
; /* offset into object */
220 /* boolean_t */ is_shared
:1, /* region is shared */
221 /* boolean_t */ is_sub_map
:1, /* Is "object" a submap? */
222 /* boolean_t */ in_transition
:1, /* Entry being changed */
223 /* boolean_t */ needs_wakeup
:1, /* Waiters on in_transition */
224 /* vm_behavior_t */ behavior
:2, /* user paging behavior hint */
225 /* behavior is not defined for submap type */
226 /* boolean_t */ needs_copy
:1, /* object need to be copied? */
227 /* Only in task maps: */
228 /* vm_prot_t */ protection
:3, /* protection code */
229 /* vm_prot_t */ max_protection
:3,/* maximum protection */
230 /* vm_inherit_t */ inheritance
:2, /* inheritance */
231 /* boolean_t */ use_pmap
:1, /*
232 * use_pmap is overloaded:
235 * else (i.e. if object):
236 * use pmap accounting
241 * The "alias" field can be updated while holding the VM map lock
242 * "shared". It's OK as along as it's the only field that can be
243 * updated without the VM map "exclusive" lock.
245 /* unsigned char */ alias
:8, /* user alias */
246 /* boolean_t */ no_cache
:1, /* should new pages be cached? */
247 /* boolean_t */ permanent
:1, /* mapping can not be removed */
248 /* boolean_t */ superpage_size
:1,/* use superpages of a certain size */
249 /* boolean_t */ map_aligned
:1, /* align to map's page size */
250 /* boolean_t */ zero_wired_pages
:1, /* zero out the wired pages of this entry it is being deleted without unwiring them */
251 /* boolean_t */ used_for_jit
:1,
252 /* boolean_t */ from_reserved_zone
:1, /* Allocated from
253 * kernel reserved zone */
255 /* iokit accounting: use the virtual size rather than resident size: */
256 /* boolean_t */ iokit_acct
:1;
258 unsigned short wired_count
; /* can be paged if = 0 */
259 unsigned short user_wired_count
; /* for vm_wire */
261 #define MAP_ENTRY_CREATION_DEBUG (1)
262 #define MAP_ENTRY_INSERTION_DEBUG (1)
264 #if MAP_ENTRY_CREATION_DEBUG
265 struct vm_map_header
*vme_creation_maphdr
;
266 uintptr_t vme_creation_bt
[16];
268 #if MAP_ENTRY_INSERTION_DEBUG
269 uintptr_t vme_insertion_bt
[16];
274 * Convenience macros for dealing with superpages
275 * SUPERPAGE_NBASEPAGES is architecture dependent and defined in pmap.h
277 #define SUPERPAGE_SIZE (PAGE_SIZE*SUPERPAGE_NBASEPAGES)
278 #define SUPERPAGE_MASK (-SUPERPAGE_SIZE)
279 #define SUPERPAGE_ROUND_DOWN(a) (a & SUPERPAGE_MASK)
280 #define SUPERPAGE_ROUND_UP(a) ((a + SUPERPAGE_SIZE-1) & SUPERPAGE_MASK)
283 * wired_counts are unsigned short. This value is used to safeguard
284 * against any mishaps due to runaway user programs.
286 #define MAX_WIRE_COUNT 65535
291 * Type: struct vm_map_header
294 * Header for a vm_map and a vm_map_copy.
298 struct vm_map_header
{
299 struct vm_map_links links
; /* first, last, min, max */
300 int nentries
; /* Number of entries */
301 boolean_t entries_pageable
;
302 /* are map entries pageable? */
303 vm_map_offset_t highest_entry_end_addr
; /* The ending address of the highest allocated vm_entry_t */
304 #ifdef VM_MAP_STORE_USE_RB
305 struct rb_head rb_head_store
;
307 int page_shift
; /* page shift */
310 #define VM_MAP_HDR_PAGE_SHIFT(hdr) ((hdr)->page_shift)
311 #define VM_MAP_HDR_PAGE_SIZE(hdr) (1 << VM_MAP_HDR_PAGE_SHIFT((hdr)))
312 #define VM_MAP_HDR_PAGE_MASK(hdr) (VM_MAP_HDR_PAGE_SIZE((hdr)) - 1)
315 * Type: vm_map_t [exported; contents invisible]
318 * An address map -- a directory relating valid
319 * regions of a task's address space to the corresponding
320 * virtual memory objects.
323 * Maps are doubly-linked lists of map entries, sorted
324 * by address. One hint is used to start
325 * searches again from the last successful search,
326 * insertion, or removal. Another hint is used to
327 * quickly find free space.
330 lck_rw_t lock
; /* map lock */
331 struct vm_map_header hdr
; /* Map entry header */
332 #define min_offset hdr.links.start /* start of range */
333 #define max_offset hdr.links.end /* end of range */
334 #define highest_entry_end hdr.highest_entry_end_addr
335 pmap_t pmap
; /* Physical map */
336 vm_map_size_t size
; /* virtual size */
337 vm_map_size_t user_wire_limit
;/* rlimit on user locked memory */
338 vm_map_size_t user_wire_size
; /* current size of user locked memory in this map */
339 int ref_count
; /* Reference count */
341 int res_count
; /* Residence count (swap) */
342 int sw_state
; /* Swap state */
343 #endif /* TASK_SWAPPER */
344 decl_lck_mtx_data(, s_lock
) /* Lock ref, res fields */
345 lck_mtx_ext_t s_lock_ext
;
346 vm_map_entry_t hint
; /* hint for quick lookups */
347 vm_map_entry_t first_free
; /* First free space hint */
349 /* boolean_t */ wait_for_space
:1, /* Should callers wait for space? */
350 /* boolean_t */ wiring_required
:1, /* All memory wired? */
351 /* boolean_t */ no_zero_fill
:1, /*No zero fill absent pages */
352 /* boolean_t */ mapped_in_other_pmaps
:1, /*has this submap been mapped in maps that use a different pmap */
353 /* boolean_t */ switch_protect
:1, /* Protect map from write faults while switched */
354 /* boolean_t */ disable_vmentry_reuse
:1, /* All vm entries should keep using newer and higher addresses in the map */
355 /* boolean_t */ map_disallow_data_exec
:1, /* Disallow execution from data pages on exec-permissive architectures */
356 /* reserved */ pad
:25;
357 unsigned int timestamp
; /* Version number */
358 unsigned int color_rr
; /* next color (not protected by a lock) */
360 void *default_freezer_handle
;
362 boolean_t jit_entry_exists
;
365 #define vm_map_to_entry(map) ((struct vm_map_entry *) &(map)->hdr.links)
366 #define vm_map_first_entry(map) ((map)->hdr.links.next)
367 #define vm_map_last_entry(map) ((map)->hdr.links.prev)
371 * VM map swap states. There are no transition states.
373 #define MAP_SW_IN 1 /* map is swapped in; residence count > 0 */
374 #define MAP_SW_OUT 2 /* map is out (res_count == 0 */
375 #endif /* TASK_SWAPPER */
378 * Type: vm_map_version_t [exported; contents invisible]
381 * Map versions may be used to quickly validate a previous
385 * Because they are bulky objects, map versions are usually
386 * passed by reference.
389 * Just a timestamp for the main map.
391 typedef struct vm_map_version
{
392 unsigned int main_timestamp
;
396 * Type: vm_map_copy_t [exported; contents invisible]
399 * A map copy object represents a region of virtual memory
400 * that has been copied from an address map but is still
403 * A map copy object may only be used by a single thread
407 * There are three formats for map copy objects.
408 * The first is very similar to the main
409 * address map in structure, and as a result, some
410 * of the internal maintenance functions/macros can
411 * be used with either address maps or map copy objects.
413 * The map copy object contains a header links
414 * entry onto which the other entries that represent
415 * the region are chained.
417 * The second format is a single vm object. This was used
418 * primarily in the pageout path - but is not currently used
419 * except for placeholder copy objects (see vm_map_copy_copy()).
421 * The third format is a kernel buffer copy object - for data
422 * small enough that physical copies were the most efficient
428 #define VM_MAP_COPY_ENTRY_LIST 1
429 #define VM_MAP_COPY_OBJECT 2
430 #define VM_MAP_COPY_KERNEL_BUFFER 3
431 vm_object_offset_t offset
;
434 struct vm_map_header hdr
; /* ENTRY_LIST */
435 vm_object_t object
; /* OBJECT */
437 void *kdata
; /* KERNEL_BUFFER */
438 vm_size_t kalloc_size
; /* size of this copy_t */
444 #define cpy_hdr c_u.hdr
446 #define cpy_object c_u.object
448 #define cpy_kdata c_u.c_k.kdata
449 #define cpy_kalloc_size c_u.c_k.kalloc_size
451 #define VM_MAP_COPY_PAGE_SHIFT(copy) ((copy)->cpy_hdr.page_shift)
452 #define VM_MAP_COPY_PAGE_SIZE(copy) (1 << VM_MAP_COPY_PAGE_SHIFT((copy)))
453 #define VM_MAP_COPY_PAGE_MASK(copy) (VM_MAP_COPY_PAGE_SIZE((copy)) - 1)
456 * Useful macros for entry list copy objects
459 #define vm_map_copy_to_entry(copy) \
460 ((struct vm_map_entry *) &(copy)->cpy_hdr.links)
461 #define vm_map_copy_first_entry(copy) \
462 ((copy)->cpy_hdr.links.next)
463 #define vm_map_copy_last_entry(copy) \
464 ((copy)->cpy_hdr.links.prev)
467 * Macros: vm_map_lock, etc. [internal use only]
469 * Perform locking on the data portion of a map.
470 * When multiple maps are to be locked, order by map address.
471 * (See vm_map.c::vm_remap())
474 #define vm_map_lock_init(map) \
475 ((map)->timestamp = 0 , \
476 lck_rw_init(&(map)->lock, &vm_map_lck_grp, &vm_map_lck_rw_attr))
478 #define vm_map_lock(map) lck_rw_lock_exclusive(&(map)->lock)
479 #define vm_map_unlock(map) \
480 ((map)->timestamp++ , lck_rw_done(&(map)->lock))
481 #define vm_map_lock_read(map) lck_rw_lock_shared(&(map)->lock)
482 #define vm_map_unlock_read(map) lck_rw_done(&(map)->lock)
483 #define vm_map_lock_write_to_read(map) \
484 ((map)->timestamp++ , lck_rw_lock_exclusive_to_shared(&(map)->lock))
485 /* lock_read_to_write() returns FALSE on failure. Macro evaluates to
486 * zero on success and non-zero value on failure.
488 #define vm_map_lock_read_to_write(map) (lck_rw_lock_shared_to_exclusive(&(map)->lock) != TRUE)
491 * Exported procedures that operate on vm_map_t.
494 /* Initialize the module */
495 extern void vm_map_init(void);
497 extern void vm_kernel_reserved_entry_init(void);
499 /* Allocate a range in the specified virtual address map and
500 * return the entry allocated for that range. */
501 extern kern_return_t
vm_map_find_space(
503 vm_map_address_t
*address
, /* OUT */
505 vm_map_offset_t mask
,
507 vm_map_entry_t
*o_entry
); /* OUT */
509 extern void vm_map_clip_start(
511 vm_map_entry_t entry
,
512 vm_map_offset_t endaddr
);
513 extern void vm_map_clip_end(
515 vm_map_entry_t entry
,
516 vm_map_offset_t endaddr
);
517 extern boolean_t
vm_map_entry_should_cow_for_true_share(
518 vm_map_entry_t entry
);
520 /* Lookup map entry containing or the specified address in the given map */
521 extern boolean_t
vm_map_lookup_entry(
523 vm_map_address_t address
,
524 vm_map_entry_t
*entry
); /* OUT */
526 extern void vm_map_copy_remap(
528 vm_map_entry_t where
,
530 vm_map_offset_t adjustment
,
533 vm_inherit_t inheritance
);
535 /* Find the VM object, offset, and protection for a given virtual address
536 * in the specified map, assuming a page fault of the type specified. */
537 extern kern_return_t
vm_map_lookup_locked(
538 vm_map_t
*var_map
, /* IN/OUT */
539 vm_map_address_t vaddr
,
540 vm_prot_t fault_type
,
541 int object_lock_type
,
542 vm_map_version_t
*out_version
, /* OUT */
543 vm_object_t
*object
, /* OUT */
544 vm_object_offset_t
*offset
, /* OUT */
545 vm_prot_t
*out_prot
, /* OUT */
546 boolean_t
*wired
, /* OUT */
547 vm_object_fault_info_t fault_info
, /* OUT */
548 vm_map_t
*real_map
); /* OUT */
550 /* Verifies that the map has not changed since the given version. */
551 extern boolean_t
vm_map_verify(
553 vm_map_version_t
*version
); /* REF */
555 extern vm_map_entry_t
vm_map_entry_insert(
557 vm_map_entry_t insp_entry
,
558 vm_map_offset_t start
,
561 vm_object_offset_t offset
,
562 boolean_t needs_copy
,
564 boolean_t in_transition
,
565 vm_prot_t cur_protection
,
566 vm_prot_t max_protection
,
567 vm_behavior_t behavior
,
568 vm_inherit_t inheritance
,
569 unsigned wired_count
,
572 unsigned int superpage_size
,
573 boolean_t clear_map_aligned
,
574 boolean_t is_submap
);
578 * Functions implemented as macros
580 #define vm_map_min(map) ((map)->min_offset)
581 /* Lowest valid address in
584 #define vm_map_max(map) ((map)->max_offset)
585 /* Highest valid address */
587 #define vm_map_pmap(map) ((map)->pmap)
588 /* Physical map associated
589 * with this address map */
591 #define vm_map_verify_done(map, version) vm_map_unlock_read(map)
592 /* Operation that required
593 * a verified lookup is
597 * Macros/functions for map residence counts and swapin/out of vm maps
602 /* Gain a reference to an existing map */
603 extern void vm_map_reference(
605 /* Lose a residence count */
606 extern void vm_map_res_deallocate(
608 /* Gain a residence count on a map */
609 extern void vm_map_res_reference(
611 /* Gain reference & residence counts to possibly swapped-out map */
612 extern void vm_map_reference_swap(
615 #else /* MACH_ASSERT */
617 #define vm_map_reference(map) \
619 vm_map_t Map = (map); \
621 lck_mtx_lock(&Map->s_lock); \
624 lck_mtx_unlock(&Map->s_lock); \
628 #define vm_map_res_reference(map) \
630 vm_map_t Lmap = (map); \
631 if (Lmap->res_count == 0) { \
632 lck_mtx_unlock(&Lmap->s_lock);\
634 vm_map_swapin(Lmap); \
635 lck_mtx_lock(&Lmap->s_lock); \
637 vm_map_unlock(Lmap); \
642 #define vm_map_res_deallocate(map) \
644 vm_map_t Map = (map); \
645 if (--Map->res_count == 0) { \
646 lck_mtx_unlock(&Map->s_lock); \
648 vm_map_swapout(Map); \
649 vm_map_unlock(Map); \
650 lck_mtx_lock(&Map->s_lock); \
654 #define vm_map_reference_swap(map) \
656 vm_map_t Map = (map); \
657 lck_mtx_lock(&Map->s_lock); \
659 vm_map_res_reference(Map); \
660 lck_mtx_unlock(&Map->s_lock); \
662 #endif /* MACH_ASSERT */
664 extern void vm_map_swapin(
667 extern void vm_map_swapout(
670 #else /* TASK_SWAPPER */
672 #define vm_map_reference(map) \
674 vm_map_t Map = (map); \
676 lck_mtx_lock(&Map->s_lock); \
678 lck_mtx_unlock(&Map->s_lock); \
682 #define vm_map_reference_swap(map) vm_map_reference(map)
683 #define vm_map_res_reference(map)
684 #define vm_map_res_deallocate(map)
686 #endif /* TASK_SWAPPER */
689 * Submap object. Must be used to create memory to be put
690 * in a submap by vm_map_submap.
692 extern vm_object_t vm_submap_object
;
695 * Wait and wakeup macros for in_transition map entries.
697 #define vm_map_entry_wait(map, interruptible) \
698 ((map)->timestamp++ , \
699 lck_rw_sleep(&(map)->lock, LCK_SLEEP_EXCLUSIVE|LCK_SLEEP_PROMOTED_PRI, \
700 (event_t)&(map)->hdr, interruptible))
703 #define vm_map_entry_wakeup(map) \
704 thread_wakeup((event_t)(&(map)->hdr))
707 #define vm_map_ref_fast(map) \
709 lck_mtx_lock(&map->s_lock); \
711 vm_map_res_reference(map); \
712 lck_mtx_unlock(&map->s_lock); \
715 #define vm_map_dealloc_fast(map) \
719 lck_mtx_lock(&map->s_lock); \
720 c = --map->ref_count; \
722 vm_map_res_deallocate(map); \
723 lck_mtx_unlock(&map->s_lock); \
725 vm_map_destroy(map); \
729 /* simplify map entries */
730 extern void vm_map_simplify_entry(
732 vm_map_entry_t this_entry
);
733 extern void vm_map_simplify(
735 vm_map_offset_t start
);
737 /* Move the information in a map copy object to a new map copy object */
738 extern vm_map_copy_t
vm_map_copy_copy(
741 /* Create a copy object from an object. */
742 extern kern_return_t
vm_map_copyin_object(
744 vm_object_offset_t offset
,
745 vm_object_size_t size
,
746 vm_map_copy_t
*copy_result
); /* OUT */
748 extern kern_return_t
vm_map_random_address_for_size(
750 vm_map_offset_t
*address
,
753 /* Enter a mapping */
754 extern kern_return_t
vm_map_enter(
756 vm_map_offset_t
*address
,
758 vm_map_offset_t mask
,
761 vm_object_offset_t offset
,
762 boolean_t needs_copy
,
763 vm_prot_t cur_protection
,
764 vm_prot_t max_protection
,
765 vm_inherit_t inheritance
);
767 /* XXX should go away - replaced with regular enter of contig object */
768 extern kern_return_t
vm_map_enter_cpm(
770 vm_map_address_t
*addr
,
774 extern kern_return_t
vm_map_remap(
776 vm_map_offset_t
*address
,
778 vm_map_offset_t mask
,
781 vm_map_offset_t memory_address
,
783 vm_prot_t
*cur_protection
,
784 vm_prot_t
*max_protection
,
785 vm_inherit_t inheritance
);
789 * Read and write from a kernel buffer to a specified map.
791 extern kern_return_t
vm_map_write_user(
794 vm_map_offset_t dst_addr
,
797 extern kern_return_t
vm_map_read_user(
799 vm_map_offset_t src_addr
,
803 /* Create a new task map using an existing task map as a template. */
804 extern vm_map_t
vm_map_fork(
808 /* Change inheritance */
809 extern kern_return_t
vm_map_inherit(
811 vm_map_offset_t start
,
813 vm_inherit_t new_inheritance
);
815 /* Add or remove machine-dependent attributes from map regions */
816 extern kern_return_t
vm_map_machine_attribute(
818 vm_map_offset_t start
,
820 vm_machine_attribute_t attribute
,
821 vm_machine_attribute_val_t
* value
); /* IN/OUT */
823 extern kern_return_t
vm_map_msync(
825 vm_map_address_t address
,
827 vm_sync_t sync_flags
);
829 /* Set paging behavior */
830 extern kern_return_t
vm_map_behavior_set(
832 vm_map_offset_t start
,
834 vm_behavior_t new_behavior
);
836 extern kern_return_t
vm_map_purgable_control(
838 vm_map_offset_t address
,
839 vm_purgable_t control
,
842 extern kern_return_t
vm_map_region(
844 vm_map_offset_t
*address
,
846 vm_region_flavor_t flavor
,
847 vm_region_info_t info
,
848 mach_msg_type_number_t
*count
,
849 mach_port_t
*object_name
);
851 extern kern_return_t
vm_map_region_recurse_64(
853 vm_map_offset_t
*address
,
855 natural_t
*nesting_depth
,
856 vm_region_submap_info_64_t info
,
857 mach_msg_type_number_t
*count
);
859 extern kern_return_t
vm_map_page_query_internal(
861 vm_map_offset_t offset
,
865 extern kern_return_t
vm_map_query_volatile(
867 mach_vm_size_t
*volatile_virtual_size_p
,
868 mach_vm_size_t
*volatile_resident_size_p
,
869 mach_vm_size_t
*volatile_pmap_size_p
);
871 extern kern_return_t
vm_map_submap(
873 vm_map_offset_t start
,
876 vm_map_offset_t offset
,
879 extern void vm_map_submap_pmap_clean(
881 vm_map_offset_t start
,
884 vm_map_offset_t offset
);
886 /* Convert from a map entry port to a map */
887 extern vm_map_t
convert_port_entry_to_map(
890 /* Convert from a port to a vm_object */
891 extern vm_object_t
convert_port_entry_to_object(
895 extern kern_return_t
vm_map_set_cache_attr(
900 /* definitions related to overriding the NX behavior */
902 #define VM_ABI_32 0x1
903 #define VM_ABI_64 0x2
905 extern int override_nx(vm_map_t map
, uint32_t user_tag
);
907 extern int vm_map_purge(vm_map_t map
);
909 #endif /* MACH_KERNEL_PRIVATE */
913 /* Create an empty map */
914 extern vm_map_t
vm_map_create(
916 vm_map_offset_t min_off
,
917 vm_map_offset_t max_off
,
920 /* Get rid of a map */
921 extern void vm_map_destroy(
925 /* Lose a reference */
926 extern void vm_map_deallocate(
929 extern vm_map_t
vm_map_switch(
932 /* Change protection */
933 extern kern_return_t
vm_map_protect(
935 vm_map_offset_t start
,
940 /* Check protection */
941 extern boolean_t
vm_map_check_protection(
943 vm_map_offset_t start
,
945 vm_prot_t protection
);
947 /* wire down a region */
948 extern kern_return_t
vm_map_wire(
950 vm_map_offset_t start
,
952 vm_prot_t access_type
,
953 boolean_t user_wire
);
955 extern kern_return_t
vm_map_wire_and_extract(
957 vm_map_offset_t start
,
958 vm_prot_t access_type
,
960 ppnum_t
*physpage_p
);
962 /* unwire a region */
963 extern kern_return_t
vm_map_unwire(
965 vm_map_offset_t start
,
967 boolean_t user_wire
);
969 /* Enter a mapping of a memory object */
970 extern kern_return_t
vm_map_enter_mem_object(
972 vm_map_offset_t
*address
,
974 vm_map_offset_t mask
,
977 vm_object_offset_t offset
,
978 boolean_t needs_copy
,
979 vm_prot_t cur_protection
,
980 vm_prot_t max_protection
,
981 vm_inherit_t inheritance
);
983 /* Enter a mapping of a memory object */
984 extern kern_return_t
vm_map_enter_mem_object_prefault(
986 vm_map_offset_t
*address
,
988 vm_map_offset_t mask
,
991 vm_object_offset_t offset
,
992 vm_prot_t cur_protection
,
993 vm_prot_t max_protection
,
994 upl_page_list_ptr_t page_list
,
995 unsigned int page_list_count
);
997 /* Enter a mapping of a memory object */
998 extern kern_return_t
vm_map_enter_mem_object_control(
1000 vm_map_offset_t
*address
,
1002 vm_map_offset_t mask
,
1004 memory_object_control_t control
,
1005 vm_object_offset_t offset
,
1006 boolean_t needs_copy
,
1007 vm_prot_t cur_protection
,
1008 vm_prot_t max_protection
,
1009 vm_inherit_t inheritance
);
1011 /* Deallocate a region */
1012 extern kern_return_t
vm_map_remove(
1014 vm_map_offset_t start
,
1015 vm_map_offset_t end
,
1018 /* Discard a copy without using it */
1019 extern void vm_map_copy_discard(
1020 vm_map_copy_t copy
);
1022 /* Overwrite existing memory with a copy */
1023 extern kern_return_t
vm_map_copy_overwrite(
1025 vm_map_address_t dst_addr
,
1027 boolean_t interruptible
);
1029 /* Place a copy into a map */
1030 extern kern_return_t
vm_map_copyout(
1032 vm_map_address_t
*dst_addr
, /* OUT */
1033 vm_map_copy_t copy
);
1035 extern kern_return_t
vm_map_copyout_internal(
1037 vm_map_address_t
*dst_addr
, /* OUT */
1039 boolean_t consume_on_success
,
1040 vm_prot_t cur_protection
,
1041 vm_prot_t max_protection
,
1042 vm_inherit_t inheritance
);
1044 extern kern_return_t
vm_map_copyin(
1046 vm_map_address_t src_addr
,
1048 boolean_t src_destroy
,
1049 vm_map_copy_t
*copy_result
); /* OUT */
1051 extern kern_return_t
vm_map_copyin_common(
1053 vm_map_address_t src_addr
,
1055 boolean_t src_destroy
,
1056 boolean_t src_volatile
,
1057 vm_map_copy_t
*copy_result
, /* OUT */
1058 boolean_t use_maxprot
);
1060 extern kern_return_t
vm_map_copy_extract(
1062 vm_map_address_t src_addr
,
1064 vm_map_copy_t
*copy_result
, /* OUT */
1065 vm_prot_t
*cur_prot
, /* OUT */
1066 vm_prot_t
*max_prot
);
1069 extern void vm_map_disable_NX(
1072 extern void vm_map_disallow_data_exec(
1075 extern void vm_map_set_64bit(
1078 extern void vm_map_set_32bit(
1081 extern boolean_t
vm_map_has_hard_pagezero(
1083 vm_map_offset_t pagezero_size
);
1085 extern boolean_t
vm_map_is_64bit(
1089 extern kern_return_t
vm_map_raise_max_offset(
1091 vm_map_offset_t new_max_offset
);
1093 extern kern_return_t
vm_map_raise_min_offset(
1095 vm_map_offset_t new_min_offset
);
1097 extern vm_map_offset_t
vm_compute_max_offset(
1100 extern uint64_t vm_map_get_max_aslr_slide_pages(
1103 extern void vm_map_set_user_wire_limit(
1107 extern void vm_map_switch_protect(
1111 extern void vm_map_iokit_mapped_region(
1115 extern void vm_map_iokit_unmapped_region(
1120 extern boolean_t
first_free_is_valid(vm_map_t
);
1122 extern int vm_map_page_shift(
1125 extern int vm_map_page_mask(
1128 extern int vm_map_page_size(
1131 extern vm_map_offset_t
vm_map_round_page_mask(
1132 vm_map_offset_t offset
,
1133 vm_map_offset_t mask
);
1135 extern vm_map_offset_t
vm_map_trunc_page_mask(
1136 vm_map_offset_t offset
,
1137 vm_map_offset_t mask
);
1139 #ifdef XNU_KERNEL_PRIVATE
1140 extern kern_return_t
vm_map_page_info(
1142 vm_map_offset_t offset
,
1143 vm_page_info_flavor_t flavor
,
1144 vm_page_info_t info
,
1145 mach_msg_type_number_t
*count
);
1146 #endif /* XNU_KERNEL_PRIVATE */
1149 #ifdef MACH_KERNEL_PRIVATE
1152 * Macros to invoke vm_map_copyin_common. vm_map_copyin is the
1153 * usual form; it handles a copyin based on the current protection
1154 * (current protection == VM_PROT_NONE) is a failure.
1155 * vm_map_copyin_maxprot handles a copyin based on maximum possible
1156 * access. The difference is that a region with no current access
1157 * BUT possible maximum access is rejected by vm_map_copyin(), but
1158 * returned by vm_map_copyin_maxprot.
1160 #define vm_map_copyin(src_map, src_addr, len, src_destroy, copy_result) \
1161 vm_map_copyin_common(src_map, src_addr, len, src_destroy, \
1162 FALSE, copy_result, FALSE)
1164 #define vm_map_copyin_maxprot(src_map, \
1165 src_addr, len, src_destroy, copy_result) \
1166 vm_map_copyin_common(src_map, src_addr, len, src_destroy, \
1167 FALSE, copy_result, TRUE)
1171 * Internal macros for rounding and truncation of vm_map offsets and sizes
1173 #define VM_MAP_ROUND_PAGE(x,pgmask) (((vm_map_offset_t)(x) + (pgmask)) & ~((signed)(pgmask)))
1174 #define VM_MAP_TRUNC_PAGE(x,pgmask) ((vm_map_offset_t)(x) & ~((signed)(pgmask)))
1177 * Macros for rounding and truncation of vm_map offsets and sizes
1179 #define VM_MAP_PAGE_SHIFT(map) ((map) ? (map)->hdr.page_shift : PAGE_SHIFT)
1180 #define VM_MAP_PAGE_SIZE(map) (1 << VM_MAP_PAGE_SHIFT((map)))
1181 #define VM_MAP_PAGE_MASK(map) (VM_MAP_PAGE_SIZE((map)) - 1)
1182 #define VM_MAP_PAGE_ALIGNED(x,pgmask) (((x) & (pgmask)) == 0)
1184 #endif /* MACH_KERNEL_PRIVATE */
1186 #ifdef XNU_KERNEL_PRIVATE
1187 extern kern_return_t
vm_map_set_page_shift(vm_map_t map
, int pageshift
);
1188 #endif /* XNU_KERNEL_PRIVATE */
1190 #define vm_map_round_page(x,pgmask) (((vm_map_offset_t)(x) + (pgmask)) & ~((signed)(pgmask)))
1191 #define vm_map_trunc_page(x,pgmask) ((vm_map_offset_t)(x) & ~((signed)(pgmask)))
1194 * Flags for vm_map_remove() and vm_map_delete()
1196 #define VM_MAP_NO_FLAGS 0x0
1197 #define VM_MAP_REMOVE_KUNWIRE 0x1
1198 #define VM_MAP_REMOVE_INTERRUPTIBLE 0x2
1199 #define VM_MAP_REMOVE_WAIT_FOR_KWIRE 0x4
1200 #define VM_MAP_REMOVE_SAVE_ENTRIES 0x8
1201 #define VM_MAP_REMOVE_NO_PMAP_CLEANUP 0x10
1202 #define VM_MAP_REMOVE_NO_MAP_ALIGN 0x20
1204 /* Support for UPLs from vm_maps */
1206 extern kern_return_t
vm_map_get_upl(
1207 vm_map_t target_map
,
1208 vm_map_offset_t map_offset
,
1211 upl_page_info_array_t page_info
,
1212 unsigned int *page_infoCnt
,
1214 int force_data_sync
);
1216 #if CONFIG_DYNAMIC_CODE_SIGNING
1217 extern kern_return_t
vm_map_sign(vm_map_t map
,
1218 vm_map_offset_t start
,
1219 vm_map_offset_t end
);
1222 extern kern_return_t
vm_map_partial_reap(
1224 unsigned int *reclaimed_resident
,
1225 unsigned int *reclaimed_compressed
);
1228 void vm_map_freeze_thaw_init(void);
1229 void vm_map_freeze_thaw(void);
1230 void vm_map_demand_fault(void);
1232 extern kern_return_t
vm_map_freeze_walk(
1234 unsigned int *purgeable_count
,
1235 unsigned int *wired_count
,
1236 unsigned int *clean_count
,
1237 unsigned int *dirty_count
,
1238 unsigned int dirty_budget
,
1239 boolean_t
*has_shared
);
1241 extern kern_return_t
vm_map_freeze(
1243 unsigned int *purgeable_count
,
1244 unsigned int *wired_count
,
1245 unsigned int *clean_count
,
1246 unsigned int *dirty_count
,
1247 unsigned int dirty_budget
,
1248 boolean_t
*has_shared
);
1250 extern kern_return_t
vm_map_thaw(
1256 #endif /* KERNEL_PRIVATE */
1258 #endif /* _VM_VM_MAP_H_ */