uvm_map.c revision 1.312 1 1.312 rmind /* $NetBSD: uvm_map.c,v 1.312 2012/01/28 00:00:06 rmind Exp $ */
2 1.1 mrg
3 1.98 chs /*
4 1.1 mrg * Copyright (c) 1997 Charles D. Cranor and Washington University.
5 1.98 chs * Copyright (c) 1991, 1993, The Regents of the University of California.
6 1.1 mrg *
7 1.1 mrg * All rights reserved.
8 1.1 mrg *
9 1.1 mrg * This code is derived from software contributed to Berkeley by
10 1.1 mrg * The Mach Operating System project at Carnegie-Mellon University.
11 1.1 mrg *
12 1.1 mrg * Redistribution and use in source and binary forms, with or without
13 1.1 mrg * modification, are permitted provided that the following conditions
14 1.1 mrg * are met:
15 1.1 mrg * 1. Redistributions of source code must retain the above copyright
16 1.1 mrg * notice, this list of conditions and the following disclaimer.
17 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 mrg * notice, this list of conditions and the following disclaimer in the
19 1.1 mrg * documentation and/or other materials provided with the distribution.
20 1.295 chuck * 3. Neither the name of the University nor the names of its contributors
21 1.1 mrg * may be used to endorse or promote products derived from this software
22 1.1 mrg * without specific prior written permission.
23 1.1 mrg *
24 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.1 mrg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.1 mrg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.1 mrg * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.1 mrg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.1 mrg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.1 mrg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.1 mrg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.1 mrg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.1 mrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.1 mrg * SUCH DAMAGE.
35 1.1 mrg *
36 1.1 mrg * @(#)vm_map.c 8.3 (Berkeley) 1/12/94
37 1.3 mrg * from: Id: uvm_map.c,v 1.1.2.27 1998/02/07 01:16:54 chs Exp
38 1.1 mrg *
39 1.1 mrg *
40 1.1 mrg * Copyright (c) 1987, 1990 Carnegie-Mellon University.
41 1.1 mrg * All rights reserved.
42 1.98 chs *
43 1.1 mrg * Permission to use, copy, modify and distribute this software and
44 1.1 mrg * its documentation is hereby granted, provided that both the copyright
45 1.1 mrg * notice and this permission notice appear in all copies of the
46 1.1 mrg * software, derivative works or modified versions, and any portions
47 1.1 mrg * thereof, and that both notices appear in supporting documentation.
48 1.98 chs *
49 1.98 chs * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
50 1.98 chs * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
51 1.1 mrg * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
52 1.98 chs *
53 1.1 mrg * Carnegie Mellon requests users of this software to return to
54 1.1 mrg *
55 1.1 mrg * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
56 1.1 mrg * School of Computer Science
57 1.1 mrg * Carnegie Mellon University
58 1.1 mrg * Pittsburgh PA 15213-3890
59 1.1 mrg *
60 1.1 mrg * any improvements or extensions that they make and grant Carnegie the
61 1.1 mrg * rights to redistribute these changes.
62 1.1 mrg */
63 1.1 mrg
64 1.114 lukem /*
65 1.114 lukem * uvm_map.c: uvm map operations
66 1.114 lukem */
67 1.114 lukem
68 1.114 lukem #include <sys/cdefs.h>
69 1.312 rmind __KERNEL_RCSID(0, "$NetBSD: uvm_map.c,v 1.312 2012/01/28 00:00:06 rmind Exp $");
70 1.114 lukem
71 1.21 jonathan #include "opt_ddb.h"
72 1.6 mrg #include "opt_uvmhist.h"
73 1.169 petrov #include "opt_uvm.h"
74 1.31 tron #include "opt_sysv.h"
75 1.1 mrg
76 1.1 mrg #include <sys/param.h>
77 1.1 mrg #include <sys/systm.h>
78 1.1 mrg #include <sys/mman.h>
79 1.1 mrg #include <sys/proc.h>
80 1.25 thorpej #include <sys/pool.h>
81 1.104 chs #include <sys/kernel.h>
82 1.112 thorpej #include <sys/mount.h>
83 1.109 thorpej #include <sys/vnode.h>
84 1.244 yamt #include <sys/lockdebug.h>
85 1.248 ad #include <sys/atomic.h>
86 1.288 drochner #ifndef __USER_VA0_IS_SAFE
87 1.288 drochner #include <sys/sysctl.h>
88 1.288 drochner #include <sys/kauth.h>
89 1.290 drochner #include "opt_user_va0_disable_default.h"
90 1.288 drochner #endif
91 1.1 mrg
92 1.1 mrg #ifdef SYSVSHM
93 1.1 mrg #include <sys/shm.h>
94 1.1 mrg #endif
95 1.1 mrg
96 1.1 mrg #include <uvm/uvm.h>
97 1.271 yamt #include <uvm/uvm_readahead.h>
98 1.21 jonathan
99 1.270 pooka #if defined(DDB) || defined(DEBUGPRINT)
100 1.21 jonathan #include <uvm/uvm_ddb.h>
101 1.21 jonathan #endif
102 1.21 jonathan
103 1.258 ad #if !defined(UVMMAP_COUNTERS)
104 1.207 yamt
105 1.207 yamt #define UVMMAP_EVCNT_DEFINE(name) /* nothing */
106 1.207 yamt #define UVMMAP_EVCNT_INCR(ev) /* nothing */
107 1.207 yamt #define UVMMAP_EVCNT_DECR(ev) /* nothing */
108 1.207 yamt
109 1.207 yamt #else /* defined(UVMMAP_NOCOUNTERS) */
110 1.207 yamt
111 1.228 yamt #include <sys/evcnt.h>
112 1.207 yamt #define UVMMAP_EVCNT_DEFINE(name) \
113 1.207 yamt struct evcnt uvmmap_evcnt_##name = EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, \
114 1.207 yamt "uvmmap", #name); \
115 1.207 yamt EVCNT_ATTACH_STATIC(uvmmap_evcnt_##name);
116 1.207 yamt #define UVMMAP_EVCNT_INCR(ev) uvmmap_evcnt_##ev.ev_count++
117 1.207 yamt #define UVMMAP_EVCNT_DECR(ev) uvmmap_evcnt_##ev.ev_count--
118 1.207 yamt
119 1.207 yamt #endif /* defined(UVMMAP_NOCOUNTERS) */
120 1.207 yamt
121 1.207 yamt UVMMAP_EVCNT_DEFINE(ubackmerge)
122 1.207 yamt UVMMAP_EVCNT_DEFINE(uforwmerge)
123 1.207 yamt UVMMAP_EVCNT_DEFINE(ubimerge)
124 1.207 yamt UVMMAP_EVCNT_DEFINE(unomerge)
125 1.207 yamt UVMMAP_EVCNT_DEFINE(kbackmerge)
126 1.207 yamt UVMMAP_EVCNT_DEFINE(kforwmerge)
127 1.207 yamt UVMMAP_EVCNT_DEFINE(kbimerge)
128 1.207 yamt UVMMAP_EVCNT_DEFINE(knomerge)
129 1.207 yamt UVMMAP_EVCNT_DEFINE(map_call)
130 1.207 yamt UVMMAP_EVCNT_DEFINE(mlk_call)
131 1.207 yamt UVMMAP_EVCNT_DEFINE(mlk_hint)
132 1.263 matt UVMMAP_EVCNT_DEFINE(mlk_list)
133 1.263 matt UVMMAP_EVCNT_DEFINE(mlk_tree)
134 1.263 matt UVMMAP_EVCNT_DEFINE(mlk_treeloop)
135 1.263 matt UVMMAP_EVCNT_DEFINE(mlk_listloop)
136 1.169 petrov
137 1.87 enami const char vmmapbsy[] = "vmmapbsy";
138 1.1 mrg
139 1.1 mrg /*
140 1.248 ad * cache for vmspace structures.
141 1.25 thorpej */
142 1.25 thorpej
143 1.248 ad static struct pool_cache uvm_vmspace_cache;
144 1.25 thorpej
145 1.26 thorpej /*
146 1.248 ad * cache for dynamically-allocated map entries.
147 1.26 thorpej */
148 1.26 thorpej
149 1.248 ad static struct pool_cache uvm_map_entry_cache;
150 1.130 thorpej
151 1.40 thorpej #ifdef PMAP_GROWKERNEL
152 1.40 thorpej /*
153 1.40 thorpej * This global represents the end of the kernel virtual address
154 1.40 thorpej * space. If we want to exceed this, we must grow the kernel
155 1.40 thorpej * virtual address space dynamically.
156 1.40 thorpej *
157 1.40 thorpej * Note, this variable is locked by kernel_map's lock.
158 1.40 thorpej */
159 1.40 thorpej vaddr_t uvm_maxkaddr;
160 1.40 thorpej #endif
161 1.40 thorpej
162 1.288 drochner #ifndef __USER_VA0_IS_SAFE
163 1.290 drochner #ifndef __USER_VA0_DISABLE_DEFAULT
164 1.290 drochner #define __USER_VA0_DISABLE_DEFAULT 1
165 1.288 drochner #endif
166 1.290 drochner #ifdef USER_VA0_DISABLE_DEFAULT /* kernel config option overrides */
167 1.290 drochner #undef __USER_VA0_DISABLE_DEFAULT
168 1.290 drochner #define __USER_VA0_DISABLE_DEFAULT USER_VA0_DISABLE_DEFAULT
169 1.288 drochner #endif
170 1.290 drochner static int user_va0_disable = __USER_VA0_DISABLE_DEFAULT;
171 1.288 drochner #endif
172 1.288 drochner
173 1.25 thorpej /*
174 1.1 mrg * macros
175 1.1 mrg */
176 1.1 mrg
177 1.1 mrg /*
178 1.194 yamt * UVM_ET_ISCOMPATIBLE: check some requirements for map entry merging
179 1.194 yamt */
180 1.311 para extern struct vm_map *pager_map;
181 1.194 yamt
182 1.194 yamt #define UVM_ET_ISCOMPATIBLE(ent, type, uobj, meflags, \
183 1.194 yamt prot, maxprot, inh, adv, wire) \
184 1.194 yamt ((ent)->etype == (type) && \
185 1.311 para (((ent)->flags ^ (meflags)) & (UVM_MAP_NOMERGE)) == 0 && \
186 1.194 yamt (ent)->object.uvm_obj == (uobj) && \
187 1.194 yamt (ent)->protection == (prot) && \
188 1.194 yamt (ent)->max_protection == (maxprot) && \
189 1.194 yamt (ent)->inheritance == (inh) && \
190 1.194 yamt (ent)->advice == (adv) && \
191 1.194 yamt (ent)->wired_count == (wire))
192 1.194 yamt
193 1.194 yamt /*
194 1.1 mrg * uvm_map_entry_link: insert entry into a map
195 1.1 mrg *
196 1.1 mrg * => map must be locked
197 1.1 mrg */
198 1.10 mrg #define uvm_map_entry_link(map, after_where, entry) do { \
199 1.218 yamt uvm_mapent_check(entry); \
200 1.10 mrg (map)->nentries++; \
201 1.10 mrg (entry)->prev = (after_where); \
202 1.10 mrg (entry)->next = (after_where)->next; \
203 1.10 mrg (entry)->prev->next = (entry); \
204 1.10 mrg (entry)->next->prev = (entry); \
205 1.144 yamt uvm_rb_insert((map), (entry)); \
206 1.124 perry } while (/*CONSTCOND*/ 0)
207 1.10 mrg
208 1.1 mrg /*
209 1.1 mrg * uvm_map_entry_unlink: remove entry from a map
210 1.1 mrg *
211 1.1 mrg * => map must be locked
212 1.1 mrg */
213 1.10 mrg #define uvm_map_entry_unlink(map, entry) do { \
214 1.221 yamt KASSERT((entry) != (map)->first_free); \
215 1.221 yamt KASSERT((entry) != (map)->hint); \
216 1.218 yamt uvm_mapent_check(entry); \
217 1.10 mrg (map)->nentries--; \
218 1.10 mrg (entry)->next->prev = (entry)->prev; \
219 1.10 mrg (entry)->prev->next = (entry)->next; \
220 1.144 yamt uvm_rb_remove((map), (entry)); \
221 1.124 perry } while (/*CONSTCOND*/ 0)
222 1.1 mrg
223 1.1 mrg /*
224 1.1 mrg * SAVE_HINT: saves the specified entry as the hint for future lookups.
225 1.1 mrg *
226 1.248 ad * => map need not be locked.
227 1.1 mrg */
228 1.248 ad #define SAVE_HINT(map, check, value) do { \
229 1.258 ad if ((map)->hint == (check)) \
230 1.258 ad (map)->hint = (value); \
231 1.124 perry } while (/*CONSTCOND*/ 0)
232 1.1 mrg
233 1.1 mrg /*
234 1.221 yamt * clear_hints: ensure that hints don't point to the entry.
235 1.221 yamt *
236 1.221 yamt * => map must be write-locked.
237 1.221 yamt */
238 1.221 yamt static void
239 1.221 yamt clear_hints(struct vm_map *map, struct vm_map_entry *ent)
240 1.221 yamt {
241 1.221 yamt
242 1.221 yamt SAVE_HINT(map, ent, ent->prev);
243 1.221 yamt if (map->first_free == ent) {
244 1.221 yamt map->first_free = ent->prev;
245 1.221 yamt }
246 1.221 yamt }
247 1.221 yamt
248 1.221 yamt /*
249 1.1 mrg * VM_MAP_RANGE_CHECK: check and correct range
250 1.1 mrg *
251 1.1 mrg * => map must at least be read locked
252 1.1 mrg */
253 1.1 mrg
254 1.10 mrg #define VM_MAP_RANGE_CHECK(map, start, end) do { \
255 1.139 enami if (start < vm_map_min(map)) \
256 1.139 enami start = vm_map_min(map); \
257 1.139 enami if (end > vm_map_max(map)) \
258 1.139 enami end = vm_map_max(map); \
259 1.139 enami if (start > end) \
260 1.139 enami start = end; \
261 1.124 perry } while (/*CONSTCOND*/ 0)
262 1.1 mrg
263 1.1 mrg /*
264 1.1 mrg * local prototypes
265 1.1 mrg */
266 1.1 mrg
267 1.138 enami static struct vm_map_entry *
268 1.138 enami uvm_mapent_alloc(struct vm_map *, int);
269 1.138 enami static void uvm_mapent_copy(struct vm_map_entry *, struct vm_map_entry *);
270 1.138 enami static void uvm_mapent_free(struct vm_map_entry *);
271 1.218 yamt #if defined(DEBUG)
272 1.218 yamt static void _uvm_mapent_check(const struct vm_map_entry *, const char *,
273 1.218 yamt int);
274 1.218 yamt #define uvm_mapent_check(map) _uvm_mapent_check(map, __FILE__, __LINE__)
275 1.218 yamt #else /* defined(DEBUG) */
276 1.218 yamt #define uvm_mapent_check(e) /* nothing */
277 1.218 yamt #endif /* defined(DEBUG) */
278 1.219 yamt
279 1.138 enami static void uvm_map_entry_unwire(struct vm_map *, struct vm_map_entry *);
280 1.138 enami static void uvm_map_reference_amap(struct vm_map_entry *, int);
281 1.140 enami static int uvm_map_space_avail(vaddr_t *, vsize_t, voff_t, vsize_t, int,
282 1.304 matt int, struct vm_map_entry *);
283 1.138 enami static void uvm_map_unreference_amap(struct vm_map_entry *, int);
284 1.1 mrg
285 1.222 yamt int _uvm_map_sanity(struct vm_map *);
286 1.222 yamt int _uvm_tree_sanity(struct vm_map *);
287 1.263 matt static vsize_t uvm_rb_maxgap(const struct vm_map_entry *);
288 1.144 yamt
289 1.263 matt #define ROOT_ENTRY(map) ((struct vm_map_entry *)(map)->rb_tree.rbt_root)
290 1.263 matt #define LEFT_ENTRY(entry) ((struct vm_map_entry *)(entry)->rb_node.rb_left)
291 1.263 matt #define RIGHT_ENTRY(entry) ((struct vm_map_entry *)(entry)->rb_node.rb_right)
292 1.263 matt #define PARENT_ENTRY(map, entry) \
293 1.263 matt (ROOT_ENTRY(map) == (entry) \
294 1.293 rmind ? NULL : (struct vm_map_entry *)RB_FATHER(&(entry)->rb_node))
295 1.263 matt
296 1.263 matt static int
297 1.293 rmind uvm_map_compare_nodes(void *ctx, const void *nparent, const void *nkey)
298 1.144 yamt {
299 1.293 rmind const struct vm_map_entry *eparent = nparent;
300 1.293 rmind const struct vm_map_entry *ekey = nkey;
301 1.144 yamt
302 1.263 matt KASSERT(eparent->start < ekey->start || eparent->start >= ekey->end);
303 1.263 matt KASSERT(ekey->start < eparent->start || ekey->start >= eparent->end);
304 1.164 junyoung
305 1.293 rmind if (eparent->start < ekey->start)
306 1.263 matt return -1;
307 1.293 rmind if (eparent->end >= ekey->start)
308 1.263 matt return 1;
309 1.263 matt return 0;
310 1.144 yamt }
311 1.144 yamt
312 1.263 matt static int
313 1.293 rmind uvm_map_compare_key(void *ctx, const void *nparent, const void *vkey)
314 1.144 yamt {
315 1.293 rmind const struct vm_map_entry *eparent = nparent;
316 1.263 matt const vaddr_t va = *(const vaddr_t *) vkey;
317 1.144 yamt
318 1.293 rmind if (eparent->start < va)
319 1.263 matt return -1;
320 1.293 rmind if (eparent->end >= va)
321 1.263 matt return 1;
322 1.263 matt return 0;
323 1.144 yamt }
324 1.144 yamt
325 1.293 rmind static const rb_tree_ops_t uvm_map_tree_ops = {
326 1.263 matt .rbto_compare_nodes = uvm_map_compare_nodes,
327 1.263 matt .rbto_compare_key = uvm_map_compare_key,
328 1.293 rmind .rbto_node_offset = offsetof(struct vm_map_entry, rb_node),
329 1.293 rmind .rbto_context = NULL
330 1.263 matt };
331 1.144 yamt
332 1.293 rmind /*
333 1.293 rmind * uvm_rb_gap: return the gap size between our entry and next entry.
334 1.293 rmind */
335 1.206 perry static inline vsize_t
336 1.263 matt uvm_rb_gap(const struct vm_map_entry *entry)
337 1.144 yamt {
338 1.293 rmind
339 1.144 yamt KASSERT(entry->next != NULL);
340 1.144 yamt return entry->next->start - entry->end;
341 1.144 yamt }
342 1.144 yamt
343 1.144 yamt static vsize_t
344 1.263 matt uvm_rb_maxgap(const struct vm_map_entry *entry)
345 1.144 yamt {
346 1.263 matt struct vm_map_entry *child;
347 1.263 matt vsize_t maxgap = entry->gap;
348 1.144 yamt
349 1.263 matt /*
350 1.263 matt * We need maxgap to be the largest gap of us or any of our
351 1.263 matt * descendents. Since each of our children's maxgap is the
352 1.263 matt * cached value of their largest gap of themselves or their
353 1.263 matt * descendents, we can just use that value and avoid recursing
354 1.263 matt * down the tree to calculate it.
355 1.263 matt */
356 1.263 matt if ((child = LEFT_ENTRY(entry)) != NULL && maxgap < child->maxgap)
357 1.263 matt maxgap = child->maxgap;
358 1.144 yamt
359 1.263 matt if ((child = RIGHT_ENTRY(entry)) != NULL && maxgap < child->maxgap)
360 1.263 matt maxgap = child->maxgap;
361 1.144 yamt
362 1.263 matt return maxgap;
363 1.144 yamt }
364 1.144 yamt
365 1.263 matt static void
366 1.144 yamt uvm_rb_fixup(struct vm_map *map, struct vm_map_entry *entry)
367 1.144 yamt {
368 1.263 matt struct vm_map_entry *parent;
369 1.263 matt
370 1.263 matt KASSERT(entry->gap == uvm_rb_gap(entry));
371 1.263 matt entry->maxgap = uvm_rb_maxgap(entry);
372 1.263 matt
373 1.263 matt while ((parent = PARENT_ENTRY(map, entry)) != NULL) {
374 1.263 matt struct vm_map_entry *brother;
375 1.263 matt vsize_t maxgap = parent->gap;
376 1.293 rmind unsigned int which;
377 1.263 matt
378 1.263 matt KDASSERT(parent->gap == uvm_rb_gap(parent));
379 1.263 matt if (maxgap < entry->maxgap)
380 1.263 matt maxgap = entry->maxgap;
381 1.263 matt /*
382 1.293 rmind * Since we work towards the root, we know entry's maxgap
383 1.293 rmind * value is OK, but its brothers may now be out-of-date due
384 1.293 rmind * to rebalancing. So refresh it.
385 1.263 matt */
386 1.293 rmind which = RB_POSITION(&entry->rb_node) ^ RB_DIR_OTHER;
387 1.293 rmind brother = (struct vm_map_entry *)parent->rb_node.rb_nodes[which];
388 1.263 matt if (brother != NULL) {
389 1.263 matt KDASSERT(brother->gap == uvm_rb_gap(brother));
390 1.263 matt brother->maxgap = uvm_rb_maxgap(brother);
391 1.263 matt if (maxgap < brother->maxgap)
392 1.263 matt maxgap = brother->maxgap;
393 1.263 matt }
394 1.263 matt
395 1.263 matt parent->maxgap = maxgap;
396 1.263 matt entry = parent;
397 1.263 matt }
398 1.144 yamt }
399 1.144 yamt
400 1.203 thorpej static void
401 1.144 yamt uvm_rb_insert(struct vm_map *map, struct vm_map_entry *entry)
402 1.144 yamt {
403 1.293 rmind struct vm_map_entry *ret;
404 1.293 rmind
405 1.263 matt entry->gap = entry->maxgap = uvm_rb_gap(entry);
406 1.263 matt if (entry->prev != &map->header)
407 1.263 matt entry->prev->gap = uvm_rb_gap(entry->prev);
408 1.144 yamt
409 1.293 rmind ret = rb_tree_insert_node(&map->rb_tree, entry);
410 1.293 rmind KASSERTMSG(ret == entry,
411 1.305 jym "uvm_rb_insert: map %p: duplicate entry %p", map, ret);
412 1.263 matt
413 1.263 matt /*
414 1.263 matt * If the previous entry is not our immediate left child, then it's an
415 1.263 matt * ancestor and will be fixed up on the way to the root. We don't
416 1.263 matt * have to check entry->prev against &map->header since &map->header
417 1.263 matt * will never be in the tree.
418 1.263 matt */
419 1.263 matt uvm_rb_fixup(map,
420 1.263 matt LEFT_ENTRY(entry) == entry->prev ? entry->prev : entry);
421 1.144 yamt }
422 1.144 yamt
423 1.203 thorpej static void
424 1.144 yamt uvm_rb_remove(struct vm_map *map, struct vm_map_entry *entry)
425 1.144 yamt {
426 1.263 matt struct vm_map_entry *prev_parent = NULL, *next_parent = NULL;
427 1.144 yamt
428 1.263 matt /*
429 1.263 matt * If we are removing an interior node, then an adjacent node will
430 1.263 matt * be used to replace its position in the tree. Therefore we will
431 1.263 matt * need to fixup the tree starting at the parent of the replacement
432 1.263 matt * node. So record their parents for later use.
433 1.263 matt */
434 1.144 yamt if (entry->prev != &map->header)
435 1.263 matt prev_parent = PARENT_ENTRY(map, entry->prev);
436 1.263 matt if (entry->next != &map->header)
437 1.263 matt next_parent = PARENT_ENTRY(map, entry->next);
438 1.263 matt
439 1.293 rmind rb_tree_remove_node(&map->rb_tree, entry);
440 1.263 matt
441 1.263 matt /*
442 1.263 matt * If the previous node has a new parent, fixup the tree starting
443 1.263 matt * at the previous node's old parent.
444 1.263 matt */
445 1.263 matt if (entry->prev != &map->header) {
446 1.263 matt /*
447 1.263 matt * Update the previous entry's gap due to our absence.
448 1.263 matt */
449 1.263 matt entry->prev->gap = uvm_rb_gap(entry->prev);
450 1.144 yamt uvm_rb_fixup(map, entry->prev);
451 1.263 matt if (prev_parent != NULL
452 1.263 matt && prev_parent != entry
453 1.263 matt && prev_parent != PARENT_ENTRY(map, entry->prev))
454 1.263 matt uvm_rb_fixup(map, prev_parent);
455 1.263 matt }
456 1.263 matt
457 1.263 matt /*
458 1.263 matt * If the next node has a new parent, fixup the tree starting
459 1.263 matt * at the next node's old parent.
460 1.263 matt */
461 1.263 matt if (entry->next != &map->header) {
462 1.263 matt uvm_rb_fixup(map, entry->next);
463 1.263 matt if (next_parent != NULL
464 1.263 matt && next_parent != entry
465 1.263 matt && next_parent != PARENT_ENTRY(map, entry->next))
466 1.263 matt uvm_rb_fixup(map, next_parent);
467 1.263 matt }
468 1.144 yamt }
469 1.144 yamt
470 1.222 yamt #if defined(DEBUG)
471 1.222 yamt int uvm_debug_check_map = 0;
472 1.159 yamt int uvm_debug_check_rbtree = 0;
473 1.222 yamt #define uvm_map_check(map, name) \
474 1.222 yamt _uvm_map_check((map), (name), __FILE__, __LINE__)
475 1.222 yamt static void
476 1.222 yamt _uvm_map_check(struct vm_map *map, const char *name,
477 1.222 yamt const char *file, int line)
478 1.222 yamt {
479 1.222 yamt
480 1.222 yamt if ((uvm_debug_check_map && _uvm_map_sanity(map)) ||
481 1.222 yamt (uvm_debug_check_rbtree && _uvm_tree_sanity(map))) {
482 1.222 yamt panic("uvm_map_check failed: \"%s\" map=%p (%s:%d)",
483 1.222 yamt name, map, file, line);
484 1.222 yamt }
485 1.222 yamt }
486 1.222 yamt #else /* defined(DEBUG) */
487 1.222 yamt #define uvm_map_check(map, name) /* nothing */
488 1.222 yamt #endif /* defined(DEBUG) */
489 1.222 yamt
490 1.222 yamt #if defined(DEBUG) || defined(DDB)
491 1.222 yamt int
492 1.222 yamt _uvm_map_sanity(struct vm_map *map)
493 1.222 yamt {
494 1.234 thorpej bool first_free_found = false;
495 1.234 thorpej bool hint_found = false;
496 1.222 yamt const struct vm_map_entry *e;
497 1.272 yamt struct vm_map_entry *hint = map->hint;
498 1.222 yamt
499 1.222 yamt e = &map->header;
500 1.222 yamt for (;;) {
501 1.222 yamt if (map->first_free == e) {
502 1.234 thorpej first_free_found = true;
503 1.222 yamt } else if (!first_free_found && e->next->start > e->end) {
504 1.222 yamt printf("first_free %p should be %p\n",
505 1.222 yamt map->first_free, e);
506 1.222 yamt return -1;
507 1.222 yamt }
508 1.272 yamt if (hint == e) {
509 1.234 thorpej hint_found = true;
510 1.222 yamt }
511 1.222 yamt
512 1.222 yamt e = e->next;
513 1.222 yamt if (e == &map->header) {
514 1.222 yamt break;
515 1.222 yamt }
516 1.222 yamt }
517 1.222 yamt if (!first_free_found) {
518 1.222 yamt printf("stale first_free\n");
519 1.222 yamt return -1;
520 1.222 yamt }
521 1.222 yamt if (!hint_found) {
522 1.222 yamt printf("stale hint\n");
523 1.222 yamt return -1;
524 1.222 yamt }
525 1.222 yamt return 0;
526 1.222 yamt }
527 1.144 yamt
528 1.144 yamt int
529 1.222 yamt _uvm_tree_sanity(struct vm_map *map)
530 1.144 yamt {
531 1.144 yamt struct vm_map_entry *tmp, *trtmp;
532 1.144 yamt int n = 0, i = 1;
533 1.144 yamt
534 1.263 matt for (tmp = map->header.next; tmp != &map->header; tmp = tmp->next) {
535 1.263 matt if (tmp->gap != uvm_rb_gap(tmp)) {
536 1.263 matt printf("%d/%d gap %lx != %lx %s\n",
537 1.222 yamt n + 1, map->nentries,
538 1.263 matt (ulong)tmp->gap, (ulong)uvm_rb_gap(tmp),
539 1.144 yamt tmp->next == &map->header ? "(last)" : "");
540 1.144 yamt goto error;
541 1.144 yamt }
542 1.263 matt /*
543 1.263 matt * If any entries are out of order, tmp->gap will be unsigned
544 1.263 matt * and will likely exceed the size of the map.
545 1.263 matt */
546 1.273 yamt if (tmp->gap >= vm_map_max(map) - vm_map_min(map)) {
547 1.273 yamt printf("too large gap %zu\n", (size_t)tmp->gap);
548 1.273 yamt goto error;
549 1.273 yamt }
550 1.263 matt n++;
551 1.263 matt }
552 1.263 matt
553 1.263 matt if (n != map->nentries) {
554 1.263 matt printf("nentries: %d vs %d\n", n, map->nentries);
555 1.263 matt goto error;
556 1.144 yamt }
557 1.263 matt
558 1.144 yamt trtmp = NULL;
559 1.263 matt for (tmp = map->header.next; tmp != &map->header; tmp = tmp->next) {
560 1.263 matt if (tmp->maxgap != uvm_rb_maxgap(tmp)) {
561 1.263 matt printf("maxgap %lx != %lx\n",
562 1.263 matt (ulong)tmp->maxgap,
563 1.263 matt (ulong)uvm_rb_maxgap(tmp));
564 1.144 yamt goto error;
565 1.144 yamt }
566 1.144 yamt if (trtmp != NULL && trtmp->start >= tmp->start) {
567 1.285 matt printf("corrupt: 0x%"PRIxVADDR"x >= 0x%"PRIxVADDR"x\n",
568 1.222 yamt trtmp->start, tmp->start);
569 1.144 yamt goto error;
570 1.144 yamt }
571 1.144 yamt
572 1.144 yamt trtmp = tmp;
573 1.144 yamt }
574 1.144 yamt
575 1.263 matt for (tmp = map->header.next; tmp != &map->header;
576 1.144 yamt tmp = tmp->next, i++) {
577 1.293 rmind trtmp = rb_tree_iterate(&map->rb_tree, tmp, RB_DIR_LEFT);
578 1.263 matt if (trtmp == NULL)
579 1.263 matt trtmp = &map->header;
580 1.263 matt if (tmp->prev != trtmp) {
581 1.263 matt printf("lookup: %d: %p->prev=%p: %p\n",
582 1.263 matt i, tmp, tmp->prev, trtmp);
583 1.263 matt goto error;
584 1.263 matt }
585 1.293 rmind trtmp = rb_tree_iterate(&map->rb_tree, tmp, RB_DIR_RIGHT);
586 1.263 matt if (trtmp == NULL)
587 1.263 matt trtmp = &map->header;
588 1.263 matt if (tmp->next != trtmp) {
589 1.263 matt printf("lookup: %d: %p->next=%p: %p\n",
590 1.263 matt i, tmp, tmp->next, trtmp);
591 1.263 matt goto error;
592 1.263 matt }
593 1.293 rmind trtmp = rb_tree_find_node(&map->rb_tree, &tmp->start);
594 1.144 yamt if (trtmp != tmp) {
595 1.222 yamt printf("lookup: %d: %p - %p: %p\n", i, tmp, trtmp,
596 1.263 matt PARENT_ENTRY(map, tmp));
597 1.144 yamt goto error;
598 1.144 yamt }
599 1.144 yamt }
600 1.144 yamt
601 1.144 yamt return (0);
602 1.144 yamt error:
603 1.144 yamt return (-1);
604 1.144 yamt }
605 1.222 yamt #endif /* defined(DEBUG) || defined(DDB) */
606 1.144 yamt
607 1.1 mrg /*
608 1.238 ad * vm_map_lock: acquire an exclusive (write) lock on a map.
609 1.238 ad *
610 1.238 ad * => Note that "intrsafe" maps use only exclusive, spin locks.
611 1.238 ad *
612 1.238 ad * => The locking protocol provides for guaranteed upgrade from shared ->
613 1.238 ad * exclusive by whichever thread currently has the map marked busy.
614 1.238 ad * See "LOCKING PROTOCOL NOTES" in uvm_map.h. This is horrible; among
615 1.238 ad * other problems, it defeats any fairness guarantees provided by RW
616 1.238 ad * locks.
617 1.238 ad */
618 1.238 ad
619 1.238 ad void
620 1.238 ad vm_map_lock(struct vm_map *map)
621 1.238 ad {
622 1.238 ad
623 1.238 ad if ((map->flags & VM_MAP_INTRSAFE) != 0) {
624 1.238 ad mutex_spin_enter(&map->mutex);
625 1.238 ad return;
626 1.238 ad }
627 1.238 ad
628 1.238 ad for (;;) {
629 1.238 ad rw_enter(&map->lock, RW_WRITER);
630 1.238 ad if (map->busy == NULL)
631 1.238 ad break;
632 1.249 yamt if (map->busy == curlwp)
633 1.249 yamt break;
634 1.238 ad mutex_enter(&map->misc_lock);
635 1.238 ad rw_exit(&map->lock);
636 1.248 ad if (map->busy != NULL)
637 1.248 ad cv_wait(&map->cv, &map->misc_lock);
638 1.238 ad mutex_exit(&map->misc_lock);
639 1.238 ad }
640 1.238 ad
641 1.238 ad map->timestamp++;
642 1.238 ad }
643 1.238 ad
644 1.238 ad /*
645 1.238 ad * vm_map_lock_try: try to lock a map, failing if it is already locked.
646 1.238 ad */
647 1.238 ad
648 1.238 ad bool
649 1.238 ad vm_map_lock_try(struct vm_map *map)
650 1.238 ad {
651 1.238 ad
652 1.238 ad if ((map->flags & VM_MAP_INTRSAFE) != 0)
653 1.238 ad return mutex_tryenter(&map->mutex);
654 1.238 ad if (!rw_tryenter(&map->lock, RW_WRITER))
655 1.238 ad return false;
656 1.238 ad if (map->busy != NULL) {
657 1.238 ad rw_exit(&map->lock);
658 1.238 ad return false;
659 1.238 ad }
660 1.238 ad
661 1.238 ad map->timestamp++;
662 1.238 ad return true;
663 1.238 ad }
664 1.238 ad
665 1.238 ad /*
666 1.238 ad * vm_map_unlock: release an exclusive lock on a map.
667 1.238 ad */
668 1.238 ad
669 1.238 ad void
670 1.238 ad vm_map_unlock(struct vm_map *map)
671 1.238 ad {
672 1.238 ad
673 1.238 ad if ((map->flags & VM_MAP_INTRSAFE) != 0)
674 1.238 ad mutex_spin_exit(&map->mutex);
675 1.238 ad else {
676 1.238 ad KASSERT(rw_write_held(&map->lock));
677 1.249 yamt KASSERT(map->busy == NULL || map->busy == curlwp);
678 1.238 ad rw_exit(&map->lock);
679 1.238 ad }
680 1.238 ad }
681 1.238 ad
682 1.238 ad /*
683 1.238 ad * vm_map_unbusy: mark the map as unbusy, and wake any waiters that
684 1.238 ad * want an exclusive lock.
685 1.238 ad */
686 1.238 ad
687 1.238 ad void
688 1.238 ad vm_map_unbusy(struct vm_map *map)
689 1.238 ad {
690 1.238 ad
691 1.238 ad KASSERT(map->busy == curlwp);
692 1.238 ad
693 1.238 ad /*
694 1.238 ad * Safe to clear 'busy' and 'waiters' with only a read lock held:
695 1.238 ad *
696 1.238 ad * o they can only be set with a write lock held
697 1.238 ad * o writers are blocked out with a read or write hold
698 1.238 ad * o at any time, only one thread owns the set of values
699 1.238 ad */
700 1.248 ad mutex_enter(&map->misc_lock);
701 1.238 ad map->busy = NULL;
702 1.238 ad cv_broadcast(&map->cv);
703 1.238 ad mutex_exit(&map->misc_lock);
704 1.238 ad }
705 1.238 ad
706 1.238 ad /*
707 1.248 ad * vm_map_lock_read: acquire a shared (read) lock on a map.
708 1.248 ad */
709 1.248 ad
710 1.248 ad void
711 1.248 ad vm_map_lock_read(struct vm_map *map)
712 1.248 ad {
713 1.248 ad
714 1.248 ad KASSERT((map->flags & VM_MAP_INTRSAFE) == 0);
715 1.248 ad
716 1.248 ad rw_enter(&map->lock, RW_READER);
717 1.248 ad }
718 1.248 ad
719 1.248 ad /*
720 1.248 ad * vm_map_unlock_read: release a shared lock on a map.
721 1.248 ad */
722 1.248 ad
723 1.248 ad void
724 1.248 ad vm_map_unlock_read(struct vm_map *map)
725 1.248 ad {
726 1.248 ad
727 1.248 ad KASSERT((map->flags & VM_MAP_INTRSAFE) == 0);
728 1.248 ad
729 1.248 ad rw_exit(&map->lock);
730 1.248 ad }
731 1.248 ad
732 1.248 ad /*
733 1.248 ad * vm_map_busy: mark a map as busy.
734 1.248 ad *
735 1.248 ad * => the caller must hold the map write locked
736 1.248 ad */
737 1.248 ad
738 1.248 ad void
739 1.248 ad vm_map_busy(struct vm_map *map)
740 1.248 ad {
741 1.248 ad
742 1.248 ad KASSERT(rw_write_held(&map->lock));
743 1.248 ad KASSERT(map->busy == NULL);
744 1.248 ad
745 1.248 ad map->busy = curlwp;
746 1.248 ad }
747 1.248 ad
748 1.248 ad /*
749 1.248 ad * vm_map_locked_p: return true if the map is write locked.
750 1.269 yamt *
751 1.269 yamt * => only for debug purposes like KASSERTs.
752 1.269 yamt * => should not be used to verify that a map is not locked.
753 1.248 ad */
754 1.248 ad
755 1.248 ad bool
756 1.248 ad vm_map_locked_p(struct vm_map *map)
757 1.248 ad {
758 1.248 ad
759 1.248 ad if ((map->flags & VM_MAP_INTRSAFE) != 0) {
760 1.248 ad return mutex_owned(&map->mutex);
761 1.248 ad } else {
762 1.248 ad return rw_write_held(&map->lock);
763 1.248 ad }
764 1.248 ad }
765 1.248 ad
766 1.248 ad /*
767 1.1 mrg * uvm_mapent_alloc: allocate a map entry
768 1.1 mrg */
769 1.1 mrg
770 1.203 thorpej static struct vm_map_entry *
771 1.138 enami uvm_mapent_alloc(struct vm_map *map, int flags)
772 1.10 mrg {
773 1.99 chs struct vm_map_entry *me;
774 1.127 thorpej int pflags = (flags & UVM_FLAG_NOWAIT) ? PR_NOWAIT : PR_WAITOK;
775 1.104 chs UVMHIST_FUNC("uvm_mapent_alloc"); UVMHIST_CALLED(maphist);
776 1.1 mrg
777 1.311 para me = pool_cache_get(&uvm_map_entry_cache, pflags);
778 1.311 para if (__predict_false(me == NULL))
779 1.311 para return NULL;
780 1.311 para me->flags = 0;
781 1.311 para
782 1.1 mrg
783 1.104 chs UVMHIST_LOG(maphist, "<- new entry=0x%x [kentry=%d]", me,
784 1.104 chs ((map->flags & VM_MAP_INTRSAFE) != 0 || map == kernel_map), 0, 0);
785 1.139 enami return (me);
786 1.1 mrg }
787 1.1 mrg
788 1.1 mrg /*
789 1.1 mrg * uvm_mapent_free: free map entry
790 1.1 mrg */
791 1.1 mrg
792 1.203 thorpej static void
793 1.138 enami uvm_mapent_free(struct vm_map_entry *me)
794 1.1 mrg {
795 1.104 chs UVMHIST_FUNC("uvm_mapent_free"); UVMHIST_CALLED(maphist);
796 1.104 chs
797 1.98 chs UVMHIST_LOG(maphist,"<- freeing map entry=0x%x [flags=%d]",
798 1.1 mrg me, me->flags, 0, 0);
799 1.311 para pool_cache_put(&uvm_map_entry_cache, me);
800 1.1 mrg }
801 1.1 mrg
802 1.1 mrg /*
803 1.1 mrg * uvm_mapent_copy: copy a map entry, preserving flags
804 1.1 mrg */
805 1.1 mrg
806 1.206 perry static inline void
807 1.138 enami uvm_mapent_copy(struct vm_map_entry *src, struct vm_map_entry *dst)
808 1.10 mrg {
809 1.139 enami
810 1.106 chs memcpy(dst, src, ((char *)&src->uvm_map_entry_stop_copy) -
811 1.139 enami ((char *)src));
812 1.1 mrg }
813 1.1 mrg
814 1.218 yamt #if defined(DEBUG)
815 1.218 yamt static void
816 1.218 yamt _uvm_mapent_check(const struct vm_map_entry *entry, const char *file, int line)
817 1.218 yamt {
818 1.218 yamt
819 1.218 yamt if (entry->start >= entry->end) {
820 1.218 yamt goto bad;
821 1.218 yamt }
822 1.218 yamt if (UVM_ET_ISOBJ(entry)) {
823 1.218 yamt if (entry->object.uvm_obj == NULL) {
824 1.218 yamt goto bad;
825 1.218 yamt }
826 1.218 yamt } else if (UVM_ET_ISSUBMAP(entry)) {
827 1.218 yamt if (entry->object.sub_map == NULL) {
828 1.218 yamt goto bad;
829 1.218 yamt }
830 1.218 yamt } else {
831 1.218 yamt if (entry->object.uvm_obj != NULL ||
832 1.218 yamt entry->object.sub_map != NULL) {
833 1.218 yamt goto bad;
834 1.218 yamt }
835 1.218 yamt }
836 1.218 yamt if (!UVM_ET_ISOBJ(entry)) {
837 1.218 yamt if (entry->offset != 0) {
838 1.218 yamt goto bad;
839 1.218 yamt }
840 1.218 yamt }
841 1.218 yamt
842 1.218 yamt return;
843 1.218 yamt
844 1.218 yamt bad:
845 1.218 yamt panic("%s: bad entry %p (%s:%d)", __func__, entry, file, line);
846 1.218 yamt }
847 1.218 yamt #endif /* defined(DEBUG) */
848 1.218 yamt
849 1.1 mrg /*
850 1.1 mrg * uvm_map_entry_unwire: unwire a map entry
851 1.1 mrg *
852 1.1 mrg * => map should be locked by caller
853 1.1 mrg */
854 1.1 mrg
855 1.206 perry static inline void
856 1.138 enami uvm_map_entry_unwire(struct vm_map *map, struct vm_map_entry *entry)
857 1.10 mrg {
858 1.139 enami
859 1.10 mrg entry->wired_count = 0;
860 1.57 thorpej uvm_fault_unwire_locked(map, entry->start, entry->end);
861 1.1 mrg }
862 1.1 mrg
863 1.85 chs
864 1.85 chs /*
865 1.85 chs * wrapper for calling amap_ref()
866 1.85 chs */
867 1.206 perry static inline void
868 1.138 enami uvm_map_reference_amap(struct vm_map_entry *entry, int flags)
869 1.85 chs {
870 1.139 enami
871 1.99 chs amap_ref(entry->aref.ar_amap, entry->aref.ar_pageoff,
872 1.139 enami (entry->end - entry->start) >> PAGE_SHIFT, flags);
873 1.85 chs }
874 1.85 chs
875 1.85 chs
876 1.85 chs /*
877 1.98 chs * wrapper for calling amap_unref()
878 1.85 chs */
879 1.206 perry static inline void
880 1.138 enami uvm_map_unreference_amap(struct vm_map_entry *entry, int flags)
881 1.85 chs {
882 1.139 enami
883 1.99 chs amap_unref(entry->aref.ar_amap, entry->aref.ar_pageoff,
884 1.139 enami (entry->end - entry->start) >> PAGE_SHIFT, flags);
885 1.85 chs }
886 1.85 chs
887 1.85 chs
888 1.1 mrg /*
889 1.248 ad * uvm_map_init: init mapping system at boot time.
890 1.1 mrg */
891 1.1 mrg
892 1.10 mrg void
893 1.138 enami uvm_map_init(void)
894 1.1 mrg {
895 1.1 mrg #if defined(UVMHIST)
896 1.297 mrg static struct kern_history_ent maphistbuf[100];
897 1.297 mrg static struct kern_history_ent pdhistbuf[100];
898 1.1 mrg #endif
899 1.10 mrg
900 1.10 mrg /*
901 1.10 mrg * first, init logging system.
902 1.10 mrg */
903 1.1 mrg
904 1.10 mrg UVMHIST_FUNC("uvm_map_init");
905 1.10 mrg UVMHIST_INIT_STATIC(maphist, maphistbuf);
906 1.10 mrg UVMHIST_INIT_STATIC(pdhist, pdhistbuf);
907 1.10 mrg UVMHIST_CALLED(maphist);
908 1.10 mrg UVMHIST_LOG(maphist,"<starting uvm map system>", 0, 0, 0, 0);
909 1.10 mrg
910 1.10 mrg /*
911 1.174 yamt * initialize the global lock for kernel map entry.
912 1.10 mrg */
913 1.10 mrg
914 1.238 ad mutex_init(&uvm_kentry_lock, MUTEX_DRIVER, IPL_VM);
915 1.311 para }
916 1.248 ad
917 1.311 para /*
918 1.311 para * uvm_map_init_caches: init mapping system caches.
919 1.311 para */
920 1.311 para void
921 1.311 para uvm_map_init_caches(void)
922 1.312 rmind {
923 1.248 ad /*
924 1.248 ad * initialize caches.
925 1.248 ad */
926 1.248 ad
927 1.248 ad pool_cache_bootstrap(&uvm_map_entry_cache, sizeof(struct vm_map_entry),
928 1.248 ad 0, 0, 0, "vmmpepl", NULL, IPL_NONE, NULL, NULL, NULL);
929 1.248 ad pool_cache_bootstrap(&uvm_vmspace_cache, sizeof(struct vmspace),
930 1.248 ad 0, 0, 0, "vmsppl", NULL, IPL_NONE, NULL, NULL, NULL);
931 1.1 mrg }
932 1.1 mrg
933 1.1 mrg /*
934 1.1 mrg * clippers
935 1.1 mrg */
936 1.1 mrg
937 1.1 mrg /*
938 1.218 yamt * uvm_mapent_splitadj: adjust map entries for splitting, after uvm_mapent_copy.
939 1.218 yamt */
940 1.218 yamt
941 1.218 yamt static void
942 1.218 yamt uvm_mapent_splitadj(struct vm_map_entry *entry1, struct vm_map_entry *entry2,
943 1.218 yamt vaddr_t splitat)
944 1.218 yamt {
945 1.218 yamt vaddr_t adj;
946 1.218 yamt
947 1.218 yamt KASSERT(entry1->start < splitat);
948 1.218 yamt KASSERT(splitat < entry1->end);
949 1.218 yamt
950 1.218 yamt adj = splitat - entry1->start;
951 1.218 yamt entry1->end = entry2->start = splitat;
952 1.218 yamt
953 1.218 yamt if (entry1->aref.ar_amap) {
954 1.218 yamt amap_splitref(&entry1->aref, &entry2->aref, adj);
955 1.218 yamt }
956 1.218 yamt if (UVM_ET_ISSUBMAP(entry1)) {
957 1.218 yamt /* ... unlikely to happen, but play it safe */
958 1.218 yamt uvm_map_reference(entry1->object.sub_map);
959 1.218 yamt } else if (UVM_ET_ISOBJ(entry1)) {
960 1.218 yamt KASSERT(entry1->object.uvm_obj != NULL); /* suppress coverity */
961 1.218 yamt entry2->offset += adj;
962 1.218 yamt if (entry1->object.uvm_obj->pgops &&
963 1.218 yamt entry1->object.uvm_obj->pgops->pgo_reference)
964 1.218 yamt entry1->object.uvm_obj->pgops->pgo_reference(
965 1.218 yamt entry1->object.uvm_obj);
966 1.218 yamt }
967 1.218 yamt }
968 1.218 yamt
969 1.218 yamt /*
970 1.1 mrg * uvm_map_clip_start: ensure that the entry begins at or after
971 1.1 mrg * the starting address, if it doesn't we split the entry.
972 1.98 chs *
973 1.1 mrg * => caller should use UVM_MAP_CLIP_START macro rather than calling
974 1.1 mrg * this directly
975 1.1 mrg * => map must be locked by caller
976 1.1 mrg */
977 1.1 mrg
978 1.99 chs void
979 1.138 enami uvm_map_clip_start(struct vm_map *map, struct vm_map_entry *entry,
980 1.311 para vaddr_t start)
981 1.1 mrg {
982 1.99 chs struct vm_map_entry *new_entry;
983 1.1 mrg
984 1.1 mrg /* uvm_map_simplify_entry(map, entry); */ /* XXX */
985 1.1 mrg
986 1.222 yamt uvm_map_check(map, "clip_start entry");
987 1.218 yamt uvm_mapent_check(entry);
988 1.144 yamt
989 1.10 mrg /*
990 1.10 mrg * Split off the front portion. note that we must insert the new
991 1.10 mrg * entry BEFORE this one, so that this entry has the specified
992 1.1 mrg * starting address.
993 1.10 mrg */
994 1.311 para new_entry = uvm_mapent_alloc(map, 0);
995 1.1 mrg uvm_mapent_copy(entry, new_entry); /* entry -> new_entry */
996 1.218 yamt uvm_mapent_splitadj(new_entry, entry, start);
997 1.10 mrg uvm_map_entry_link(map, entry->prev, new_entry);
998 1.85 chs
999 1.222 yamt uvm_map_check(map, "clip_start leave");
1000 1.1 mrg }
1001 1.1 mrg
1002 1.1 mrg /*
1003 1.1 mrg * uvm_map_clip_end: ensure that the entry ends at or before
1004 1.1 mrg * the ending address, if it does't we split the reference
1005 1.98 chs *
1006 1.1 mrg * => caller should use UVM_MAP_CLIP_END macro rather than calling
1007 1.1 mrg * this directly
1008 1.1 mrg * => map must be locked by caller
1009 1.1 mrg */
1010 1.1 mrg
1011 1.10 mrg void
1012 1.311 para uvm_map_clip_end(struct vm_map *map, struct vm_map_entry *entry, vaddr_t end)
1013 1.1 mrg {
1014 1.218 yamt struct vm_map_entry *new_entry;
1015 1.1 mrg
1016 1.222 yamt uvm_map_check(map, "clip_end entry");
1017 1.218 yamt uvm_mapent_check(entry);
1018 1.174 yamt
1019 1.1 mrg /*
1020 1.1 mrg * Create a new entry and insert it
1021 1.1 mrg * AFTER the specified entry
1022 1.1 mrg */
1023 1.311 para new_entry = uvm_mapent_alloc(map, 0);
1024 1.1 mrg uvm_mapent_copy(entry, new_entry); /* entry -> new_entry */
1025 1.218 yamt uvm_mapent_splitadj(entry, new_entry, end);
1026 1.1 mrg uvm_map_entry_link(map, entry, new_entry);
1027 1.1 mrg
1028 1.222 yamt uvm_map_check(map, "clip_end leave");
1029 1.1 mrg }
1030 1.1 mrg
1031 1.1 mrg /*
1032 1.1 mrg * M A P - m a i n e n t r y p o i n t
1033 1.1 mrg */
1034 1.1 mrg /*
1035 1.1 mrg * uvm_map: establish a valid mapping in a map
1036 1.1 mrg *
1037 1.1 mrg * => assume startp is page aligned.
1038 1.1 mrg * => assume size is a multiple of PAGE_SIZE.
1039 1.1 mrg * => assume sys_mmap provides enough of a "hint" to have us skip
1040 1.1 mrg * over text/data/bss area.
1041 1.1 mrg * => map must be unlocked (we will lock it)
1042 1.1 mrg * => <uobj,uoffset> value meanings (4 cases):
1043 1.139 enami * [1] <NULL,uoffset> == uoffset is a hint for PMAP_PREFER
1044 1.1 mrg * [2] <NULL,UVM_UNKNOWN_OFFSET> == don't PMAP_PREFER
1045 1.1 mrg * [3] <uobj,uoffset> == normal mapping
1046 1.1 mrg * [4] <uobj,UVM_UNKNOWN_OFFSET> == uvm_map finds offset based on VA
1047 1.98 chs *
1048 1.1 mrg * case [4] is for kernel mappings where we don't know the offset until
1049 1.8 chuck * we've found a virtual address. note that kernel object offsets are
1050 1.8 chuck * always relative to vm_map_min(kernel_map).
1051 1.81 thorpej *
1052 1.165 yamt * => if `align' is non-zero, we align the virtual address to the specified
1053 1.165 yamt * alignment.
1054 1.165 yamt * this is provided as a mechanism for large pages.
1055 1.81 thorpej *
1056 1.1 mrg * => XXXCDC: need way to map in external amap?
1057 1.1 mrg */
1058 1.1 mrg
1059 1.10 mrg int
1060 1.138 enami uvm_map(struct vm_map *map, vaddr_t *startp /* IN/OUT */, vsize_t size,
1061 1.138 enami struct uvm_object *uobj, voff_t uoffset, vsize_t align, uvm_flag_t flags)
1062 1.10 mrg {
1063 1.174 yamt struct uvm_map_args args;
1064 1.174 yamt struct vm_map_entry *new_entry;
1065 1.174 yamt int error;
1066 1.174 yamt
1067 1.187 yamt KASSERT((size & PAGE_MASK) == 0);
1068 1.174 yamt
1069 1.288 drochner #ifndef __USER_VA0_IS_SAFE
1070 1.288 drochner if ((flags & UVM_FLAG_FIXED) && *startp == 0 &&
1071 1.290 drochner !VM_MAP_IS_KERNEL(map) && user_va0_disable)
1072 1.288 drochner return EACCES;
1073 1.288 drochner #endif
1074 1.288 drochner
1075 1.174 yamt /*
1076 1.174 yamt * for pager_map, allocate the new entry first to avoid sleeping
1077 1.174 yamt * for memory while we have the map locked.
1078 1.174 yamt */
1079 1.174 yamt
1080 1.174 yamt new_entry = NULL;
1081 1.311 para if (map == pager_map) {
1082 1.174 yamt new_entry = uvm_mapent_alloc(map, (flags & UVM_FLAG_NOWAIT));
1083 1.174 yamt if (__predict_false(new_entry == NULL))
1084 1.174 yamt return ENOMEM;
1085 1.174 yamt }
1086 1.174 yamt if (map == pager_map)
1087 1.174 yamt flags |= UVM_FLAG_NOMERGE;
1088 1.174 yamt
1089 1.174 yamt error = uvm_map_prepare(map, *startp, size, uobj, uoffset, align,
1090 1.174 yamt flags, &args);
1091 1.174 yamt if (!error) {
1092 1.174 yamt error = uvm_map_enter(map, &args, new_entry);
1093 1.174 yamt *startp = args.uma_start;
1094 1.189 yamt } else if (new_entry) {
1095 1.189 yamt uvm_mapent_free(new_entry);
1096 1.174 yamt }
1097 1.174 yamt
1098 1.187 yamt #if defined(DEBUG)
1099 1.187 yamt if (!error && VM_MAP_IS_KERNEL(map)) {
1100 1.264 ad uvm_km_check_empty(map, *startp, *startp + size);
1101 1.187 yamt }
1102 1.187 yamt #endif /* defined(DEBUG) */
1103 1.187 yamt
1104 1.174 yamt return error;
1105 1.174 yamt }
1106 1.174 yamt
1107 1.307 yamt /*
1108 1.307 yamt * uvm_map_prepare:
1109 1.307 yamt *
1110 1.307 yamt * called with map unlocked.
1111 1.307 yamt * on success, returns the map locked.
1112 1.307 yamt */
1113 1.307 yamt
1114 1.174 yamt int
1115 1.174 yamt uvm_map_prepare(struct vm_map *map, vaddr_t start, vsize_t size,
1116 1.174 yamt struct uvm_object *uobj, voff_t uoffset, vsize_t align, uvm_flag_t flags,
1117 1.174 yamt struct uvm_map_args *args)
1118 1.174 yamt {
1119 1.174 yamt struct vm_map_entry *prev_entry;
1120 1.174 yamt vm_prot_t prot = UVM_PROTECTION(flags);
1121 1.174 yamt vm_prot_t maxprot = UVM_MAXPROTECTION(flags);
1122 1.174 yamt
1123 1.174 yamt UVMHIST_FUNC("uvm_map_prepare");
1124 1.10 mrg UVMHIST_CALLED(maphist);
1125 1.1 mrg
1126 1.174 yamt UVMHIST_LOG(maphist, "(map=0x%x, start=0x%x, size=%d, flags=0x%x)",
1127 1.174 yamt map, start, size, flags);
1128 1.10 mrg UVMHIST_LOG(maphist, " uobj/offset 0x%x/%d", uobj, uoffset,0,0);
1129 1.107 chs
1130 1.107 chs /*
1131 1.107 chs * detect a popular device driver bug.
1132 1.107 chs */
1133 1.107 chs
1134 1.139 enami KASSERT(doing_shutdown || curlwp != NULL ||
1135 1.129 christos (map->flags & VM_MAP_INTRSAFE));
1136 1.1 mrg
1137 1.10 mrg /*
1138 1.144 yamt * zero-sized mapping doesn't make any sense.
1139 1.144 yamt */
1140 1.144 yamt KASSERT(size > 0);
1141 1.144 yamt
1142 1.180 yamt KASSERT((~flags & (UVM_FLAG_NOWAIT | UVM_FLAG_WAITVA)) != 0);
1143 1.180 yamt
1144 1.222 yamt uvm_map_check(map, "map entry");
1145 1.144 yamt
1146 1.144 yamt /*
1147 1.106 chs * check sanity of protection code
1148 1.10 mrg */
1149 1.1 mrg
1150 1.10 mrg if ((prot & maxprot) != prot) {
1151 1.98 chs UVMHIST_LOG(maphist, "<- prot. failure: prot=0x%x, max=0x%x",
1152 1.10 mrg prot, maxprot,0,0);
1153 1.94 chs return EACCES;
1154 1.10 mrg }
1155 1.1 mrg
1156 1.10 mrg /*
1157 1.106 chs * figure out where to put new VM range
1158 1.10 mrg */
1159 1.1 mrg
1160 1.180 yamt retry:
1161 1.234 thorpej if (vm_map_lock_try(map) == false) {
1162 1.248 ad if ((flags & UVM_FLAG_TRYLOCK) != 0 &&
1163 1.248 ad (map->flags & VM_MAP_INTRSAFE) == 0) {
1164 1.94 chs return EAGAIN;
1165 1.106 chs }
1166 1.10 mrg vm_map_lock(map); /* could sleep here */
1167 1.10 mrg }
1168 1.226 yamt prev_entry = uvm_map_findspace(map, start, size, &start,
1169 1.226 yamt uobj, uoffset, align, flags);
1170 1.226 yamt if (prev_entry == NULL) {
1171 1.180 yamt unsigned int timestamp;
1172 1.180 yamt
1173 1.180 yamt timestamp = map->timestamp;
1174 1.180 yamt UVMHIST_LOG(maphist,"waiting va timestamp=0x%x",
1175 1.180 yamt timestamp,0,0,0);
1176 1.180 yamt map->flags |= VM_MAP_WANTVA;
1177 1.10 mrg vm_map_unlock(map);
1178 1.180 yamt
1179 1.180 yamt /*
1180 1.226 yamt * try to reclaim kva and wait until someone does unmap.
1181 1.238 ad * fragile locking here, so we awaken every second to
1182 1.238 ad * recheck the condition.
1183 1.180 yamt */
1184 1.180 yamt
1185 1.238 ad mutex_enter(&map->misc_lock);
1186 1.180 yamt while ((map->flags & VM_MAP_WANTVA) != 0 &&
1187 1.180 yamt map->timestamp == timestamp) {
1188 1.226 yamt if ((flags & UVM_FLAG_WAITVA) == 0) {
1189 1.238 ad mutex_exit(&map->misc_lock);
1190 1.226 yamt UVMHIST_LOG(maphist,
1191 1.226 yamt "<- uvm_map_findspace failed!", 0,0,0,0);
1192 1.226 yamt return ENOMEM;
1193 1.226 yamt } else {
1194 1.238 ad cv_timedwait(&map->cv, &map->misc_lock, hz);
1195 1.226 yamt }
1196 1.180 yamt }
1197 1.238 ad mutex_exit(&map->misc_lock);
1198 1.180 yamt goto retry;
1199 1.10 mrg }
1200 1.1 mrg
1201 1.40 thorpej #ifdef PMAP_GROWKERNEL
1202 1.152 simonb /*
1203 1.152 simonb * If the kernel pmap can't map the requested space,
1204 1.152 simonb * then allocate more resources for it.
1205 1.152 simonb */
1206 1.229 yamt if (map == kernel_map && uvm_maxkaddr < (start + size))
1207 1.229 yamt uvm_maxkaddr = pmap_growkernel(start + size);
1208 1.10 mrg #endif
1209 1.10 mrg
1210 1.207 yamt UVMMAP_EVCNT_INCR(map_call);
1211 1.10 mrg
1212 1.10 mrg /*
1213 1.10 mrg * if uobj is null, then uoffset is either a VAC hint for PMAP_PREFER
1214 1.98 chs * [typically from uvm_map_reserve] or it is UVM_UNKNOWN_OFFSET. in
1215 1.98 chs * either case we want to zero it before storing it in the map entry
1216 1.10 mrg * (because it looks strange and confusing when debugging...)
1217 1.98 chs *
1218 1.98 chs * if uobj is not null
1219 1.10 mrg * if uoffset is not UVM_UNKNOWN_OFFSET then we have a normal mapping
1220 1.10 mrg * and we do not need to change uoffset.
1221 1.10 mrg * if uoffset is UVM_UNKNOWN_OFFSET then we need to find the offset
1222 1.10 mrg * now (based on the starting address of the map). this case is
1223 1.10 mrg * for kernel object mappings where we don't know the offset until
1224 1.10 mrg * the virtual address is found (with uvm_map_findspace). the
1225 1.10 mrg * offset is the distance we are from the start of the map.
1226 1.10 mrg */
1227 1.10 mrg
1228 1.10 mrg if (uobj == NULL) {
1229 1.10 mrg uoffset = 0;
1230 1.10 mrg } else {
1231 1.10 mrg if (uoffset == UVM_UNKNOWN_OFFSET) {
1232 1.85 chs KASSERT(UVM_OBJ_IS_KERN_OBJECT(uobj));
1233 1.174 yamt uoffset = start - vm_map_min(kernel_map);
1234 1.10 mrg }
1235 1.10 mrg }
1236 1.10 mrg
1237 1.174 yamt args->uma_flags = flags;
1238 1.174 yamt args->uma_prev = prev_entry;
1239 1.174 yamt args->uma_start = start;
1240 1.174 yamt args->uma_size = size;
1241 1.174 yamt args->uma_uobj = uobj;
1242 1.174 yamt args->uma_uoffset = uoffset;
1243 1.174 yamt
1244 1.276 matt UVMHIST_LOG(maphist, "<- done!", 0,0,0,0);
1245 1.174 yamt return 0;
1246 1.174 yamt }
1247 1.174 yamt
1248 1.307 yamt /*
1249 1.307 yamt * uvm_map_enter:
1250 1.307 yamt *
1251 1.307 yamt * called with map locked.
1252 1.307 yamt * unlock the map before returning.
1253 1.307 yamt */
1254 1.307 yamt
1255 1.174 yamt int
1256 1.174 yamt uvm_map_enter(struct vm_map *map, const struct uvm_map_args *args,
1257 1.174 yamt struct vm_map_entry *new_entry)
1258 1.174 yamt {
1259 1.174 yamt struct vm_map_entry *prev_entry = args->uma_prev;
1260 1.174 yamt struct vm_map_entry *dead = NULL;
1261 1.174 yamt
1262 1.174 yamt const uvm_flag_t flags = args->uma_flags;
1263 1.174 yamt const vm_prot_t prot = UVM_PROTECTION(flags);
1264 1.174 yamt const vm_prot_t maxprot = UVM_MAXPROTECTION(flags);
1265 1.174 yamt const vm_inherit_t inherit = UVM_INHERIT(flags);
1266 1.174 yamt const int amapwaitflag = (flags & UVM_FLAG_NOWAIT) ?
1267 1.174 yamt AMAP_EXTEND_NOWAIT : 0;
1268 1.174 yamt const int advice = UVM_ADVICE(flags);
1269 1.174 yamt
1270 1.174 yamt vaddr_t start = args->uma_start;
1271 1.174 yamt vsize_t size = args->uma_size;
1272 1.174 yamt struct uvm_object *uobj = args->uma_uobj;
1273 1.174 yamt voff_t uoffset = args->uma_uoffset;
1274 1.174 yamt
1275 1.174 yamt const int kmap = (vm_map_pmap(map) == pmap_kernel());
1276 1.174 yamt int merged = 0;
1277 1.174 yamt int error;
1278 1.176 yamt int newetype;
1279 1.174 yamt
1280 1.174 yamt UVMHIST_FUNC("uvm_map_enter");
1281 1.174 yamt UVMHIST_CALLED(maphist);
1282 1.174 yamt
1283 1.174 yamt UVMHIST_LOG(maphist, "(map=0x%x, start=0x%x, size=%d, flags=0x%x)",
1284 1.174 yamt map, start, size, flags);
1285 1.174 yamt UVMHIST_LOG(maphist, " uobj/offset 0x%x/%d", uobj, uoffset,0,0);
1286 1.174 yamt
1287 1.221 yamt KASSERT(map->hint == prev_entry); /* bimerge case assumes this */
1288 1.307 yamt KASSERT(vm_map_locked_p(map));
1289 1.221 yamt
1290 1.176 yamt if (uobj)
1291 1.176 yamt newetype = UVM_ET_OBJ;
1292 1.176 yamt else
1293 1.176 yamt newetype = 0;
1294 1.176 yamt
1295 1.176 yamt if (flags & UVM_FLAG_COPYONW) {
1296 1.176 yamt newetype |= UVM_ET_COPYONWRITE;
1297 1.176 yamt if ((flags & UVM_FLAG_OVERLAY) == 0)
1298 1.176 yamt newetype |= UVM_ET_NEEDSCOPY;
1299 1.176 yamt }
1300 1.176 yamt
1301 1.10 mrg /*
1302 1.106 chs * try and insert in map by extending previous entry, if possible.
1303 1.10 mrg * XXX: we don't try and pull back the next entry. might be useful
1304 1.10 mrg * for a stack, but we are currently allocating our stack in advance.
1305 1.10 mrg */
1306 1.10 mrg
1307 1.121 atatat if (flags & UVM_FLAG_NOMERGE)
1308 1.121 atatat goto nomerge;
1309 1.121 atatat
1310 1.194 yamt if (prev_entry->end == start &&
1311 1.121 atatat prev_entry != &map->header &&
1312 1.312 rmind UVM_ET_ISCOMPATIBLE(prev_entry, newetype, uobj, 0,
1313 1.194 yamt prot, maxprot, inherit, advice, 0)) {
1314 1.161 matt
1315 1.10 mrg if (uobj && prev_entry->offset +
1316 1.10 mrg (prev_entry->end - prev_entry->start) != uoffset)
1317 1.121 atatat goto forwardmerge;
1318 1.10 mrg
1319 1.10 mrg /*
1320 1.98 chs * can't extend a shared amap. note: no need to lock amap to
1321 1.34 chuck * look at refs since we don't care about its exact value.
1322 1.10 mrg * if it is one (i.e. we have only reference) it will stay there
1323 1.10 mrg */
1324 1.85 chs
1325 1.10 mrg if (prev_entry->aref.ar_amap &&
1326 1.34 chuck amap_refs(prev_entry->aref.ar_amap) != 1) {
1327 1.121 atatat goto forwardmerge;
1328 1.10 mrg }
1329 1.85 chs
1330 1.119 chs if (prev_entry->aref.ar_amap) {
1331 1.139 enami error = amap_extend(prev_entry, size,
1332 1.126 bouyer amapwaitflag | AMAP_EXTEND_FORWARDS);
1333 1.174 yamt if (error)
1334 1.191 yamt goto nomerge;
1335 1.119 chs }
1336 1.10 mrg
1337 1.258 ad if (kmap) {
1338 1.207 yamt UVMMAP_EVCNT_INCR(kbackmerge);
1339 1.258 ad } else {
1340 1.207 yamt UVMMAP_EVCNT_INCR(ubackmerge);
1341 1.258 ad }
1342 1.10 mrg UVMHIST_LOG(maphist," starting back merge", 0, 0, 0, 0);
1343 1.10 mrg
1344 1.10 mrg /*
1345 1.10 mrg * drop our reference to uobj since we are extending a reference
1346 1.10 mrg * that we already have (the ref count can not drop to zero).
1347 1.10 mrg */
1348 1.119 chs
1349 1.10 mrg if (uobj && uobj->pgops->pgo_detach)
1350 1.10 mrg uobj->pgops->pgo_detach(uobj);
1351 1.10 mrg
1352 1.263 matt /*
1353 1.263 matt * Now that we've merged the entries, note that we've grown
1354 1.263 matt * and our gap has shrunk. Then fix the tree.
1355 1.263 matt */
1356 1.10 mrg prev_entry->end += size;
1357 1.263 matt prev_entry->gap -= size;
1358 1.145 yamt uvm_rb_fixup(map, prev_entry);
1359 1.145 yamt
1360 1.222 yamt uvm_map_check(map, "map backmerged");
1361 1.10 mrg
1362 1.10 mrg UVMHIST_LOG(maphist,"<- done (via backmerge)!", 0, 0, 0, 0);
1363 1.121 atatat merged++;
1364 1.106 chs }
1365 1.10 mrg
1366 1.121 atatat forwardmerge:
1367 1.194 yamt if (prev_entry->next->start == (start + size) &&
1368 1.121 atatat prev_entry->next != &map->header &&
1369 1.312 rmind UVM_ET_ISCOMPATIBLE(prev_entry->next, newetype, uobj, 0,
1370 1.194 yamt prot, maxprot, inherit, advice, 0)) {
1371 1.161 matt
1372 1.121 atatat if (uobj && prev_entry->next->offset != uoffset + size)
1373 1.121 atatat goto nomerge;
1374 1.121 atatat
1375 1.121 atatat /*
1376 1.121 atatat * can't extend a shared amap. note: no need to lock amap to
1377 1.121 atatat * look at refs since we don't care about its exact value.
1378 1.122 atatat * if it is one (i.e. we have only reference) it will stay there.
1379 1.122 atatat *
1380 1.122 atatat * note that we also can't merge two amaps, so if we
1381 1.122 atatat * merged with the previous entry which has an amap,
1382 1.122 atatat * and the next entry also has an amap, we give up.
1383 1.122 atatat *
1384 1.125 atatat * Interesting cases:
1385 1.125 atatat * amap, new, amap -> give up second merge (single fwd extend)
1386 1.125 atatat * amap, new, none -> double forward extend (extend again here)
1387 1.125 atatat * none, new, amap -> double backward extend (done here)
1388 1.125 atatat * uobj, new, amap -> single backward extend (done here)
1389 1.125 atatat *
1390 1.122 atatat * XXX should we attempt to deal with someone refilling
1391 1.122 atatat * the deallocated region between two entries that are
1392 1.122 atatat * backed by the same amap (ie, arefs is 2, "prev" and
1393 1.122 atatat * "next" refer to it, and adding this allocation will
1394 1.122 atatat * close the hole, thus restoring arefs to 1 and
1395 1.122 atatat * deallocating the "next" vm_map_entry)? -- @@@
1396 1.121 atatat */
1397 1.121 atatat
1398 1.121 atatat if (prev_entry->next->aref.ar_amap &&
1399 1.122 atatat (amap_refs(prev_entry->next->aref.ar_amap) != 1 ||
1400 1.122 atatat (merged && prev_entry->aref.ar_amap))) {
1401 1.121 atatat goto nomerge;
1402 1.121 atatat }
1403 1.121 atatat
1404 1.122 atatat if (merged) {
1405 1.123 atatat /*
1406 1.123 atatat * Try to extend the amap of the previous entry to
1407 1.123 atatat * cover the next entry as well. If it doesn't work
1408 1.123 atatat * just skip on, don't actually give up, since we've
1409 1.123 atatat * already completed the back merge.
1410 1.123 atatat */
1411 1.125 atatat if (prev_entry->aref.ar_amap) {
1412 1.125 atatat if (amap_extend(prev_entry,
1413 1.125 atatat prev_entry->next->end -
1414 1.125 atatat prev_entry->next->start,
1415 1.126 bouyer amapwaitflag | AMAP_EXTEND_FORWARDS))
1416 1.142 enami goto nomerge;
1417 1.125 atatat }
1418 1.125 atatat
1419 1.125 atatat /*
1420 1.125 atatat * Try to extend the amap of the *next* entry
1421 1.125 atatat * back to cover the new allocation *and* the
1422 1.125 atatat * previous entry as well (the previous merge
1423 1.125 atatat * didn't have an amap already otherwise we
1424 1.125 atatat * wouldn't be checking here for an amap). If
1425 1.125 atatat * it doesn't work just skip on, again, don't
1426 1.125 atatat * actually give up, since we've already
1427 1.125 atatat * completed the back merge.
1428 1.125 atatat */
1429 1.125 atatat else if (prev_entry->next->aref.ar_amap) {
1430 1.125 atatat if (amap_extend(prev_entry->next,
1431 1.125 atatat prev_entry->end -
1432 1.141 atatat prev_entry->start,
1433 1.126 bouyer amapwaitflag | AMAP_EXTEND_BACKWARDS))
1434 1.142 enami goto nomerge;
1435 1.125 atatat }
1436 1.125 atatat } else {
1437 1.125 atatat /*
1438 1.125 atatat * Pull the next entry's amap backwards to cover this
1439 1.125 atatat * new allocation.
1440 1.125 atatat */
1441 1.125 atatat if (prev_entry->next->aref.ar_amap) {
1442 1.125 atatat error = amap_extend(prev_entry->next, size,
1443 1.126 bouyer amapwaitflag | AMAP_EXTEND_BACKWARDS);
1444 1.174 yamt if (error)
1445 1.191 yamt goto nomerge;
1446 1.125 atatat }
1447 1.122 atatat }
1448 1.122 atatat
1449 1.121 atatat if (merged) {
1450 1.121 atatat if (kmap) {
1451 1.207 yamt UVMMAP_EVCNT_DECR(kbackmerge);
1452 1.207 yamt UVMMAP_EVCNT_INCR(kbimerge);
1453 1.121 atatat } else {
1454 1.207 yamt UVMMAP_EVCNT_DECR(ubackmerge);
1455 1.207 yamt UVMMAP_EVCNT_INCR(ubimerge);
1456 1.121 atatat }
1457 1.122 atatat } else {
1458 1.258 ad if (kmap) {
1459 1.207 yamt UVMMAP_EVCNT_INCR(kforwmerge);
1460 1.258 ad } else {
1461 1.207 yamt UVMMAP_EVCNT_INCR(uforwmerge);
1462 1.258 ad }
1463 1.121 atatat }
1464 1.121 atatat UVMHIST_LOG(maphist," starting forward merge", 0, 0, 0, 0);
1465 1.10 mrg
1466 1.121 atatat /*
1467 1.121 atatat * drop our reference to uobj since we are extending a reference
1468 1.121 atatat * that we already have (the ref count can not drop to zero).
1469 1.121 atatat * (if merged, we've already detached)
1470 1.121 atatat */
1471 1.121 atatat if (uobj && uobj->pgops->pgo_detach && !merged)
1472 1.121 atatat uobj->pgops->pgo_detach(uobj);
1473 1.1 mrg
1474 1.121 atatat if (merged) {
1475 1.174 yamt dead = prev_entry->next;
1476 1.121 atatat prev_entry->end = dead->end;
1477 1.121 atatat uvm_map_entry_unlink(map, dead);
1478 1.125 atatat if (dead->aref.ar_amap != NULL) {
1479 1.125 atatat prev_entry->aref = dead->aref;
1480 1.125 atatat dead->aref.ar_amap = NULL;
1481 1.125 atatat }
1482 1.121 atatat } else {
1483 1.121 atatat prev_entry->next->start -= size;
1484 1.263 matt if (prev_entry != &map->header) {
1485 1.263 matt prev_entry->gap -= size;
1486 1.263 matt KASSERT(prev_entry->gap == uvm_rb_gap(prev_entry));
1487 1.145 yamt uvm_rb_fixup(map, prev_entry);
1488 1.263 matt }
1489 1.121 atatat if (uobj)
1490 1.121 atatat prev_entry->next->offset = uoffset;
1491 1.121 atatat }
1492 1.145 yamt
1493 1.222 yamt uvm_map_check(map, "map forwardmerged");
1494 1.1 mrg
1495 1.121 atatat UVMHIST_LOG(maphist,"<- done forwardmerge", 0, 0, 0, 0);
1496 1.121 atatat merged++;
1497 1.106 chs }
1498 1.121 atatat
1499 1.121 atatat nomerge:
1500 1.121 atatat if (!merged) {
1501 1.121 atatat UVMHIST_LOG(maphist," allocating new map entry", 0, 0, 0, 0);
1502 1.258 ad if (kmap) {
1503 1.207 yamt UVMMAP_EVCNT_INCR(knomerge);
1504 1.258 ad } else {
1505 1.207 yamt UVMMAP_EVCNT_INCR(unomerge);
1506 1.258 ad }
1507 1.106 chs
1508 1.10 mrg /*
1509 1.121 atatat * allocate new entry and link it in.
1510 1.10 mrg */
1511 1.106 chs
1512 1.121 atatat if (new_entry == NULL) {
1513 1.126 bouyer new_entry = uvm_mapent_alloc(map,
1514 1.127 thorpej (flags & UVM_FLAG_NOWAIT));
1515 1.126 bouyer if (__predict_false(new_entry == NULL)) {
1516 1.174 yamt error = ENOMEM;
1517 1.174 yamt goto done;
1518 1.126 bouyer }
1519 1.121 atatat }
1520 1.174 yamt new_entry->start = start;
1521 1.121 atatat new_entry->end = new_entry->start + size;
1522 1.121 atatat new_entry->object.uvm_obj = uobj;
1523 1.121 atatat new_entry->offset = uoffset;
1524 1.121 atatat
1525 1.176 yamt new_entry->etype = newetype;
1526 1.121 atatat
1527 1.161 matt if (flags & UVM_FLAG_NOMERGE) {
1528 1.161 matt new_entry->flags |= UVM_MAP_NOMERGE;
1529 1.161 matt }
1530 1.121 atatat
1531 1.121 atatat new_entry->protection = prot;
1532 1.121 atatat new_entry->max_protection = maxprot;
1533 1.121 atatat new_entry->inheritance = inherit;
1534 1.121 atatat new_entry->wired_count = 0;
1535 1.121 atatat new_entry->advice = advice;
1536 1.121 atatat if (flags & UVM_FLAG_OVERLAY) {
1537 1.121 atatat
1538 1.121 atatat /*
1539 1.121 atatat * to_add: for BSS we overallocate a little since we
1540 1.121 atatat * are likely to extend
1541 1.121 atatat */
1542 1.121 atatat
1543 1.121 atatat vaddr_t to_add = (flags & UVM_FLAG_AMAPPAD) ?
1544 1.121 atatat UVM_AMAP_CHUNK << PAGE_SHIFT : 0;
1545 1.126 bouyer struct vm_amap *amap = amap_alloc(size, to_add,
1546 1.227 yamt (flags & UVM_FLAG_NOWAIT));
1547 1.126 bouyer if (__predict_false(amap == NULL)) {
1548 1.174 yamt error = ENOMEM;
1549 1.174 yamt goto done;
1550 1.126 bouyer }
1551 1.121 atatat new_entry->aref.ar_pageoff = 0;
1552 1.121 atatat new_entry->aref.ar_amap = amap;
1553 1.121 atatat } else {
1554 1.121 atatat new_entry->aref.ar_pageoff = 0;
1555 1.121 atatat new_entry->aref.ar_amap = NULL;
1556 1.121 atatat }
1557 1.121 atatat uvm_map_entry_link(map, prev_entry, new_entry);
1558 1.1 mrg
1559 1.121 atatat /*
1560 1.121 atatat * Update the free space hint
1561 1.121 atatat */
1562 1.10 mrg
1563 1.121 atatat if ((map->first_free == prev_entry) &&
1564 1.121 atatat (prev_entry->end >= new_entry->start))
1565 1.121 atatat map->first_free = new_entry;
1566 1.174 yamt
1567 1.174 yamt new_entry = NULL;
1568 1.121 atatat }
1569 1.10 mrg
1570 1.146 yamt map->size += size;
1571 1.146 yamt
1572 1.10 mrg UVMHIST_LOG(maphist,"<- done!", 0, 0, 0, 0);
1573 1.174 yamt
1574 1.174 yamt error = 0;
1575 1.174 yamt done:
1576 1.311 para vm_map_unlock(map);
1577 1.311 para
1578 1.311 para if (new_entry) {
1579 1.311 para uvm_mapent_free(new_entry);
1580 1.174 yamt }
1581 1.311 para
1582 1.174 yamt if (dead) {
1583 1.174 yamt KDASSERT(merged);
1584 1.311 para uvm_mapent_free(dead);
1585 1.248 ad }
1586 1.311 para
1587 1.174 yamt return error;
1588 1.1 mrg }
1589 1.1 mrg
1590 1.1 mrg /*
1591 1.247 yamt * uvm_map_lookup_entry_bytree: lookup an entry in tree
1592 1.247 yamt */
1593 1.247 yamt
1594 1.263 matt static inline bool
1595 1.247 yamt uvm_map_lookup_entry_bytree(struct vm_map *map, vaddr_t address,
1596 1.247 yamt struct vm_map_entry **entry /* OUT */)
1597 1.247 yamt {
1598 1.247 yamt struct vm_map_entry *prev = &map->header;
1599 1.263 matt struct vm_map_entry *cur = ROOT_ENTRY(map);
1600 1.247 yamt
1601 1.247 yamt while (cur) {
1602 1.263 matt UVMMAP_EVCNT_INCR(mlk_treeloop);
1603 1.247 yamt if (address >= cur->start) {
1604 1.247 yamt if (address < cur->end) {
1605 1.247 yamt *entry = cur;
1606 1.247 yamt return true;
1607 1.247 yamt }
1608 1.247 yamt prev = cur;
1609 1.263 matt cur = RIGHT_ENTRY(cur);
1610 1.247 yamt } else
1611 1.263 matt cur = LEFT_ENTRY(cur);
1612 1.247 yamt }
1613 1.247 yamt *entry = prev;
1614 1.247 yamt return false;
1615 1.247 yamt }
1616 1.247 yamt
1617 1.247 yamt /*
1618 1.1 mrg * uvm_map_lookup_entry: find map entry at or before an address
1619 1.1 mrg *
1620 1.1 mrg * => map must at least be read-locked by caller
1621 1.1 mrg * => entry is returned in "entry"
1622 1.1 mrg * => return value is true if address is in the returned entry
1623 1.1 mrg */
1624 1.1 mrg
1625 1.233 thorpej bool
1626 1.138 enami uvm_map_lookup_entry(struct vm_map *map, vaddr_t address,
1627 1.138 enami struct vm_map_entry **entry /* OUT */)
1628 1.1 mrg {
1629 1.99 chs struct vm_map_entry *cur;
1630 1.234 thorpej bool use_tree = false;
1631 1.1 mrg UVMHIST_FUNC("uvm_map_lookup_entry");
1632 1.1 mrg UVMHIST_CALLED(maphist);
1633 1.1 mrg
1634 1.1 mrg UVMHIST_LOG(maphist,"(map=0x%x,addr=0x%x,ent=0x%x)",
1635 1.10 mrg map, address, entry, 0);
1636 1.1 mrg
1637 1.1 mrg /*
1638 1.10 mrg * start looking either from the head of the
1639 1.10 mrg * list, or from the hint.
1640 1.1 mrg */
1641 1.1 mrg
1642 1.1 mrg cur = map->hint;
1643 1.1 mrg
1644 1.1 mrg if (cur == &map->header)
1645 1.1 mrg cur = cur->next;
1646 1.1 mrg
1647 1.207 yamt UVMMAP_EVCNT_INCR(mlk_call);
1648 1.1 mrg if (address >= cur->start) {
1649 1.99 chs
1650 1.139 enami /*
1651 1.10 mrg * go from hint to end of list.
1652 1.1 mrg *
1653 1.10 mrg * but first, make a quick check to see if
1654 1.10 mrg * we are already looking at the entry we
1655 1.10 mrg * want (which is usually the case).
1656 1.10 mrg * note also that we don't need to save the hint
1657 1.10 mrg * here... it is the same hint (unless we are
1658 1.10 mrg * at the header, in which case the hint didn't
1659 1.10 mrg * buy us anything anyway).
1660 1.1 mrg */
1661 1.99 chs
1662 1.144 yamt if (cur != &map->header && cur->end > address) {
1663 1.207 yamt UVMMAP_EVCNT_INCR(mlk_hint);
1664 1.1 mrg *entry = cur;
1665 1.1 mrg UVMHIST_LOG(maphist,"<- got it via hint (0x%x)",
1666 1.10 mrg cur, 0, 0, 0);
1667 1.218 yamt uvm_mapent_check(*entry);
1668 1.234 thorpej return (true);
1669 1.1 mrg }
1670 1.144 yamt
1671 1.263 matt if (map->nentries > 15)
1672 1.234 thorpej use_tree = true;
1673 1.10 mrg } else {
1674 1.99 chs
1675 1.139 enami /*
1676 1.144 yamt * invalid hint. use tree.
1677 1.1 mrg */
1678 1.234 thorpej use_tree = true;
1679 1.144 yamt }
1680 1.144 yamt
1681 1.222 yamt uvm_map_check(map, __func__);
1682 1.144 yamt
1683 1.144 yamt if (use_tree) {
1684 1.144 yamt /*
1685 1.144 yamt * Simple lookup in the tree. Happens when the hint is
1686 1.144 yamt * invalid, or nentries reach a threshold.
1687 1.144 yamt */
1688 1.263 matt UVMMAP_EVCNT_INCR(mlk_tree);
1689 1.247 yamt if (uvm_map_lookup_entry_bytree(map, address, entry)) {
1690 1.247 yamt goto got;
1691 1.247 yamt } else {
1692 1.247 yamt goto failed;
1693 1.144 yamt }
1694 1.1 mrg }
1695 1.1 mrg
1696 1.1 mrg /*
1697 1.10 mrg * search linearly
1698 1.1 mrg */
1699 1.1 mrg
1700 1.263 matt UVMMAP_EVCNT_INCR(mlk_list);
1701 1.144 yamt while (cur != &map->header) {
1702 1.263 matt UVMMAP_EVCNT_INCR(mlk_listloop);
1703 1.1 mrg if (cur->end > address) {
1704 1.1 mrg if (address >= cur->start) {
1705 1.139 enami /*
1706 1.10 mrg * save this lookup for future
1707 1.10 mrg * hints, and return
1708 1.1 mrg */
1709 1.1 mrg
1710 1.1 mrg *entry = cur;
1711 1.144 yamt got:
1712 1.144 yamt SAVE_HINT(map, map->hint, *entry);
1713 1.1 mrg UVMHIST_LOG(maphist,"<- search got it (0x%x)",
1714 1.10 mrg cur, 0, 0, 0);
1715 1.144 yamt KDASSERT((*entry)->start <= address);
1716 1.144 yamt KDASSERT(address < (*entry)->end);
1717 1.218 yamt uvm_mapent_check(*entry);
1718 1.234 thorpej return (true);
1719 1.1 mrg }
1720 1.1 mrg break;
1721 1.1 mrg }
1722 1.1 mrg cur = cur->next;
1723 1.1 mrg }
1724 1.1 mrg *entry = cur->prev;
1725 1.144 yamt failed:
1726 1.82 thorpej SAVE_HINT(map, map->hint, *entry);
1727 1.1 mrg UVMHIST_LOG(maphist,"<- failed!",0,0,0,0);
1728 1.147 yamt KDASSERT((*entry) == &map->header || (*entry)->end <= address);
1729 1.144 yamt KDASSERT((*entry)->next == &map->header ||
1730 1.144 yamt address < (*entry)->next->start);
1731 1.234 thorpej return (false);
1732 1.1 mrg }
1733 1.1 mrg
1734 1.1 mrg /*
1735 1.140 enami * See if the range between start and start + length fits in the gap
1736 1.140 enami * entry->next->start and entry->end. Returns 1 if fits, 0 if doesn't
1737 1.140 enami * fit, and -1 address wraps around.
1738 1.140 enami */
1739 1.203 thorpej static int
1740 1.232 yamt uvm_map_space_avail(vaddr_t *start, vsize_t length, voff_t uoffset,
1741 1.304 matt vsize_t align, int flags, int topdown, struct vm_map_entry *entry)
1742 1.140 enami {
1743 1.140 enami vaddr_t end;
1744 1.140 enami
1745 1.140 enami #ifdef PMAP_PREFER
1746 1.140 enami /*
1747 1.140 enami * push start address forward as needed to avoid VAC alias problems.
1748 1.140 enami * we only do this if a valid offset is specified.
1749 1.140 enami */
1750 1.140 enami
1751 1.140 enami if (uoffset != UVM_UNKNOWN_OFFSET)
1752 1.182 atatat PMAP_PREFER(uoffset, start, length, topdown);
1753 1.140 enami #endif
1754 1.304 matt if ((flags & UVM_FLAG_COLORMATCH) != 0) {
1755 1.304 matt KASSERT(align < uvmexp.ncolors);
1756 1.304 matt if (uvmexp.ncolors > 1) {
1757 1.304 matt const u_int colormask = uvmexp.colormask;
1758 1.304 matt const u_int colorsize = colormask + 1;
1759 1.304 matt vaddr_t hint = atop(*start);
1760 1.304 matt const u_int color = hint & colormask;
1761 1.304 matt if (color != align) {
1762 1.304 matt hint -= color; /* adjust to color boundary */
1763 1.304 matt KASSERT((hint & colormask) == 0);
1764 1.304 matt if (topdown) {
1765 1.304 matt if (align > color)
1766 1.304 matt hint -= colorsize;
1767 1.304 matt } else {
1768 1.304 matt if (align < color)
1769 1.304 matt hint += colorsize;
1770 1.304 matt }
1771 1.304 matt *start = ptoa(hint + align); /* adjust to color */
1772 1.304 matt }
1773 1.304 matt }
1774 1.304 matt } else if (align != 0) {
1775 1.140 enami if ((*start & (align - 1)) != 0) {
1776 1.140 enami if (topdown)
1777 1.140 enami *start &= ~(align - 1);
1778 1.140 enami else
1779 1.140 enami *start = roundup(*start, align);
1780 1.140 enami }
1781 1.140 enami /*
1782 1.140 enami * XXX Should we PMAP_PREFER() here again?
1783 1.182 atatat * eh...i think we're okay
1784 1.140 enami */
1785 1.140 enami }
1786 1.140 enami
1787 1.140 enami /*
1788 1.140 enami * Find the end of the proposed new region. Be sure we didn't
1789 1.140 enami * wrap around the address; if so, we lose. Otherwise, if the
1790 1.140 enami * proposed new region fits before the next entry, we win.
1791 1.140 enami */
1792 1.140 enami
1793 1.140 enami end = *start + length;
1794 1.140 enami if (end < *start)
1795 1.140 enami return (-1);
1796 1.140 enami
1797 1.140 enami if (entry->next->start >= end && *start >= entry->end)
1798 1.140 enami return (1);
1799 1.140 enami
1800 1.140 enami return (0);
1801 1.140 enami }
1802 1.140 enami
1803 1.140 enami /*
1804 1.1 mrg * uvm_map_findspace: find "length" sized space in "map".
1805 1.1 mrg *
1806 1.167 junyoung * => "hint" is a hint about where we want it, unless UVM_FLAG_FIXED is
1807 1.167 junyoung * set in "flags" (in which case we insist on using "hint").
1808 1.1 mrg * => "result" is VA returned
1809 1.1 mrg * => uobj/uoffset are to be used to handle VAC alignment, if required
1810 1.167 junyoung * => if "align" is non-zero, we attempt to align to that value.
1811 1.1 mrg * => caller must at least have read-locked map
1812 1.1 mrg * => returns NULL on failure, or pointer to prev. map entry if success
1813 1.1 mrg * => note this is a cross between the old vm_map_findspace and vm_map_find
1814 1.1 mrg */
1815 1.1 mrg
1816 1.99 chs struct vm_map_entry *
1817 1.138 enami uvm_map_findspace(struct vm_map *map, vaddr_t hint, vsize_t length,
1818 1.232 yamt vaddr_t *result /* OUT */, struct uvm_object *uobj, voff_t uoffset,
1819 1.138 enami vsize_t align, int flags)
1820 1.1 mrg {
1821 1.140 enami struct vm_map_entry *entry;
1822 1.144 yamt struct vm_map_entry *child, *prev, *tmp;
1823 1.140 enami vaddr_t orig_hint;
1824 1.131 atatat const int topdown = map->flags & VM_MAP_TOPDOWN;
1825 1.1 mrg UVMHIST_FUNC("uvm_map_findspace");
1826 1.1 mrg UVMHIST_CALLED(maphist);
1827 1.1 mrg
1828 1.98 chs UVMHIST_LOG(maphist, "(map=0x%x, hint=0x%x, len=%d, flags=0x%x)",
1829 1.140 enami map, hint, length, flags);
1830 1.304 matt KASSERT((flags & UVM_FLAG_COLORMATCH) != 0 || (align & (align - 1)) == 0);
1831 1.304 matt KASSERT((flags & UVM_FLAG_COLORMATCH) == 0 || align < uvmexp.ncolors);
1832 1.85 chs KASSERT((flags & UVM_FLAG_FIXED) == 0 || align == 0);
1833 1.81 thorpej
1834 1.222 yamt uvm_map_check(map, "map_findspace entry");
1835 1.144 yamt
1836 1.81 thorpej /*
1837 1.81 thorpej * remember the original hint. if we are aligning, then we
1838 1.81 thorpej * may have to try again with no alignment constraint if
1839 1.81 thorpej * we fail the first time.
1840 1.81 thorpej */
1841 1.85 chs
1842 1.81 thorpej orig_hint = hint;
1843 1.184 chs if (hint < vm_map_min(map)) { /* check ranges ... */
1844 1.81 thorpej if (flags & UVM_FLAG_FIXED) {
1845 1.1 mrg UVMHIST_LOG(maphist,"<- VA below map range",0,0,0,0);
1846 1.139 enami return (NULL);
1847 1.1 mrg }
1848 1.184 chs hint = vm_map_min(map);
1849 1.1 mrg }
1850 1.184 chs if (hint > vm_map_max(map)) {
1851 1.1 mrg UVMHIST_LOG(maphist,"<- VA 0x%x > range [0x%x->0x%x]",
1852 1.184 chs hint, vm_map_min(map), vm_map_max(map), 0);
1853 1.139 enami return (NULL);
1854 1.1 mrg }
1855 1.1 mrg
1856 1.1 mrg /*
1857 1.1 mrg * Look for the first possible address; if there's already
1858 1.1 mrg * something at this address, we have to start after it.
1859 1.1 mrg */
1860 1.1 mrg
1861 1.131 atatat /*
1862 1.131 atatat * @@@: there are four, no, eight cases to consider.
1863 1.131 atatat *
1864 1.131 atatat * 0: found, fixed, bottom up -> fail
1865 1.131 atatat * 1: found, fixed, top down -> fail
1866 1.140 enami * 2: found, not fixed, bottom up -> start after entry->end,
1867 1.140 enami * loop up
1868 1.140 enami * 3: found, not fixed, top down -> start before entry->start,
1869 1.140 enami * loop down
1870 1.140 enami * 4: not found, fixed, bottom up -> check entry->next->start, fail
1871 1.140 enami * 5: not found, fixed, top down -> check entry->next->start, fail
1872 1.140 enami * 6: not found, not fixed, bottom up -> check entry->next->start,
1873 1.140 enami * loop up
1874 1.140 enami * 7: not found, not fixed, top down -> check entry->next->start,
1875 1.140 enami * loop down
1876 1.131 atatat *
1877 1.131 atatat * as you can see, it reduces to roughly five cases, and that
1878 1.131 atatat * adding top down mapping only adds one unique case (without
1879 1.131 atatat * it, there would be four cases).
1880 1.131 atatat */
1881 1.131 atatat
1882 1.184 chs if ((flags & UVM_FLAG_FIXED) == 0 && hint == vm_map_min(map)) {
1883 1.140 enami entry = map->first_free;
1884 1.1 mrg } else {
1885 1.140 enami if (uvm_map_lookup_entry(map, hint, &entry)) {
1886 1.1 mrg /* "hint" address already in use ... */
1887 1.81 thorpej if (flags & UVM_FLAG_FIXED) {
1888 1.140 enami UVMHIST_LOG(maphist, "<- fixed & VA in use",
1889 1.10 mrg 0, 0, 0, 0);
1890 1.139 enami return (NULL);
1891 1.1 mrg }
1892 1.140 enami if (topdown)
1893 1.140 enami /* Start from lower gap. */
1894 1.140 enami entry = entry->prev;
1895 1.140 enami } else if (flags & UVM_FLAG_FIXED) {
1896 1.140 enami if (entry->next->start >= hint + length &&
1897 1.140 enami hint + length > hint)
1898 1.140 enami goto found;
1899 1.140 enami
1900 1.140 enami /* "hint" address is gap but too small */
1901 1.140 enami UVMHIST_LOG(maphist, "<- fixed mapping failed",
1902 1.140 enami 0, 0, 0, 0);
1903 1.140 enami return (NULL); /* only one shot at it ... */
1904 1.140 enami } else {
1905 1.140 enami /*
1906 1.140 enami * See if given hint fits in this gap.
1907 1.140 enami */
1908 1.140 enami switch (uvm_map_space_avail(&hint, length,
1909 1.304 matt uoffset, align, flags, topdown, entry)) {
1910 1.140 enami case 1:
1911 1.140 enami goto found;
1912 1.140 enami case -1:
1913 1.140 enami goto wraparound;
1914 1.140 enami }
1915 1.140 enami
1916 1.148 yamt if (topdown) {
1917 1.140 enami /*
1918 1.140 enami * Still there is a chance to fit
1919 1.140 enami * if hint > entry->end.
1920 1.140 enami */
1921 1.148 yamt } else {
1922 1.168 junyoung /* Start from higher gap. */
1923 1.148 yamt entry = entry->next;
1924 1.148 yamt if (entry == &map->header)
1925 1.148 yamt goto notfound;
1926 1.140 enami goto nextgap;
1927 1.148 yamt }
1928 1.1 mrg }
1929 1.1 mrg }
1930 1.1 mrg
1931 1.1 mrg /*
1932 1.144 yamt * Note that all UVM_FLAGS_FIXED case is already handled.
1933 1.144 yamt */
1934 1.144 yamt KDASSERT((flags & UVM_FLAG_FIXED) == 0);
1935 1.144 yamt
1936 1.144 yamt /* Try to find the space in the red-black tree */
1937 1.144 yamt
1938 1.144 yamt /* Check slot before any entry */
1939 1.144 yamt hint = topdown ? entry->next->start - length : entry->end;
1940 1.304 matt switch (uvm_map_space_avail(&hint, length, uoffset, align, flags,
1941 1.144 yamt topdown, entry)) {
1942 1.144 yamt case 1:
1943 1.144 yamt goto found;
1944 1.144 yamt case -1:
1945 1.144 yamt goto wraparound;
1946 1.144 yamt }
1947 1.144 yamt
1948 1.144 yamt nextgap:
1949 1.148 yamt KDASSERT((flags & UVM_FLAG_FIXED) == 0);
1950 1.144 yamt /* If there is not enough space in the whole tree, we fail */
1951 1.263 matt tmp = ROOT_ENTRY(map);
1952 1.263 matt if (tmp == NULL || tmp->maxgap < length)
1953 1.144 yamt goto notfound;
1954 1.144 yamt
1955 1.144 yamt prev = NULL; /* previous candidate */
1956 1.144 yamt
1957 1.144 yamt /* Find an entry close to hint that has enough space */
1958 1.144 yamt for (; tmp;) {
1959 1.263 matt KASSERT(tmp->next->start == tmp->end + tmp->gap);
1960 1.144 yamt if (topdown) {
1961 1.144 yamt if (tmp->next->start < hint + length &&
1962 1.144 yamt (prev == NULL || tmp->end > prev->end)) {
1963 1.263 matt if (tmp->gap >= length)
1964 1.144 yamt prev = tmp;
1965 1.263 matt else if ((child = LEFT_ENTRY(tmp)) != NULL
1966 1.263 matt && child->maxgap >= length)
1967 1.144 yamt prev = tmp;
1968 1.144 yamt }
1969 1.144 yamt } else {
1970 1.144 yamt if (tmp->end >= hint &&
1971 1.144 yamt (prev == NULL || tmp->end < prev->end)) {
1972 1.263 matt if (tmp->gap >= length)
1973 1.144 yamt prev = tmp;
1974 1.263 matt else if ((child = RIGHT_ENTRY(tmp)) != NULL
1975 1.263 matt && child->maxgap >= length)
1976 1.144 yamt prev = tmp;
1977 1.144 yamt }
1978 1.144 yamt }
1979 1.144 yamt if (tmp->next->start < hint + length)
1980 1.263 matt child = RIGHT_ENTRY(tmp);
1981 1.144 yamt else if (tmp->end > hint)
1982 1.263 matt child = LEFT_ENTRY(tmp);
1983 1.144 yamt else {
1984 1.263 matt if (tmp->gap >= length)
1985 1.144 yamt break;
1986 1.144 yamt if (topdown)
1987 1.263 matt child = LEFT_ENTRY(tmp);
1988 1.144 yamt else
1989 1.263 matt child = RIGHT_ENTRY(tmp);
1990 1.144 yamt }
1991 1.263 matt if (child == NULL || child->maxgap < length)
1992 1.144 yamt break;
1993 1.144 yamt tmp = child;
1994 1.144 yamt }
1995 1.144 yamt
1996 1.148 yamt if (tmp != NULL && tmp->start < hint && hint < tmp->next->start) {
1997 1.164 junyoung /*
1998 1.144 yamt * Check if the entry that we found satifies the
1999 1.144 yamt * space requirement
2000 1.144 yamt */
2001 1.148 yamt if (topdown) {
2002 1.149 yamt if (hint > tmp->next->start - length)
2003 1.149 yamt hint = tmp->next->start - length;
2004 1.148 yamt } else {
2005 1.149 yamt if (hint < tmp->end)
2006 1.149 yamt hint = tmp->end;
2007 1.148 yamt }
2008 1.148 yamt switch (uvm_map_space_avail(&hint, length, uoffset, align,
2009 1.304 matt flags, topdown, tmp)) {
2010 1.148 yamt case 1:
2011 1.144 yamt entry = tmp;
2012 1.144 yamt goto found;
2013 1.148 yamt case -1:
2014 1.148 yamt goto wraparound;
2015 1.144 yamt }
2016 1.263 matt if (tmp->gap >= length)
2017 1.144 yamt goto listsearch;
2018 1.144 yamt }
2019 1.144 yamt if (prev == NULL)
2020 1.144 yamt goto notfound;
2021 1.144 yamt
2022 1.148 yamt if (topdown) {
2023 1.150 yamt KASSERT(orig_hint >= prev->next->start - length ||
2024 1.148 yamt prev->next->start - length > prev->next->start);
2025 1.148 yamt hint = prev->next->start - length;
2026 1.148 yamt } else {
2027 1.150 yamt KASSERT(orig_hint <= prev->end);
2028 1.148 yamt hint = prev->end;
2029 1.148 yamt }
2030 1.148 yamt switch (uvm_map_space_avail(&hint, length, uoffset, align,
2031 1.304 matt flags, topdown, prev)) {
2032 1.148 yamt case 1:
2033 1.144 yamt entry = prev;
2034 1.144 yamt goto found;
2035 1.148 yamt case -1:
2036 1.148 yamt goto wraparound;
2037 1.144 yamt }
2038 1.263 matt if (prev->gap >= length)
2039 1.144 yamt goto listsearch;
2040 1.164 junyoung
2041 1.144 yamt if (topdown)
2042 1.263 matt tmp = LEFT_ENTRY(prev);
2043 1.144 yamt else
2044 1.263 matt tmp = RIGHT_ENTRY(prev);
2045 1.144 yamt for (;;) {
2046 1.263 matt KASSERT(tmp && tmp->maxgap >= length);
2047 1.144 yamt if (topdown)
2048 1.263 matt child = RIGHT_ENTRY(tmp);
2049 1.144 yamt else
2050 1.263 matt child = LEFT_ENTRY(tmp);
2051 1.263 matt if (child && child->maxgap >= length) {
2052 1.144 yamt tmp = child;
2053 1.144 yamt continue;
2054 1.144 yamt }
2055 1.263 matt if (tmp->gap >= length)
2056 1.144 yamt break;
2057 1.144 yamt if (topdown)
2058 1.263 matt tmp = LEFT_ENTRY(tmp);
2059 1.144 yamt else
2060 1.263 matt tmp = RIGHT_ENTRY(tmp);
2061 1.144 yamt }
2062 1.164 junyoung
2063 1.148 yamt if (topdown) {
2064 1.150 yamt KASSERT(orig_hint >= tmp->next->start - length ||
2065 1.148 yamt tmp->next->start - length > tmp->next->start);
2066 1.148 yamt hint = tmp->next->start - length;
2067 1.148 yamt } else {
2068 1.150 yamt KASSERT(orig_hint <= tmp->end);
2069 1.148 yamt hint = tmp->end;
2070 1.148 yamt }
2071 1.144 yamt switch (uvm_map_space_avail(&hint, length, uoffset, align,
2072 1.304 matt flags, topdown, tmp)) {
2073 1.144 yamt case 1:
2074 1.144 yamt entry = tmp;
2075 1.144 yamt goto found;
2076 1.148 yamt case -1:
2077 1.148 yamt goto wraparound;
2078 1.144 yamt }
2079 1.144 yamt
2080 1.164 junyoung /*
2081 1.144 yamt * The tree fails to find an entry because of offset or alignment
2082 1.144 yamt * restrictions. Search the list instead.
2083 1.144 yamt */
2084 1.144 yamt listsearch:
2085 1.144 yamt /*
2086 1.1 mrg * Look through the rest of the map, trying to fit a new region in
2087 1.1 mrg * the gap between existing regions, or after the very last region.
2088 1.140 enami * note: entry->end = base VA of current gap,
2089 1.140 enami * entry->next->start = VA of end of current gap
2090 1.1 mrg */
2091 1.99 chs
2092 1.140 enami for (;;) {
2093 1.140 enami /* Update hint for current gap. */
2094 1.140 enami hint = topdown ? entry->next->start - length : entry->end;
2095 1.140 enami
2096 1.140 enami /* See if it fits. */
2097 1.140 enami switch (uvm_map_space_avail(&hint, length, uoffset, align,
2098 1.304 matt flags, topdown, entry)) {
2099 1.140 enami case 1:
2100 1.140 enami goto found;
2101 1.140 enami case -1:
2102 1.140 enami goto wraparound;
2103 1.140 enami }
2104 1.140 enami
2105 1.140 enami /* Advance to next/previous gap */
2106 1.140 enami if (topdown) {
2107 1.140 enami if (entry == &map->header) {
2108 1.140 enami UVMHIST_LOG(maphist, "<- failed (off start)",
2109 1.140 enami 0,0,0,0);
2110 1.140 enami goto notfound;
2111 1.134 matt }
2112 1.140 enami entry = entry->prev;
2113 1.140 enami } else {
2114 1.140 enami entry = entry->next;
2115 1.140 enami if (entry == &map->header) {
2116 1.140 enami UVMHIST_LOG(maphist, "<- failed (off end)",
2117 1.81 thorpej 0,0,0,0);
2118 1.140 enami goto notfound;
2119 1.81 thorpej }
2120 1.1 mrg }
2121 1.1 mrg }
2122 1.140 enami
2123 1.140 enami found:
2124 1.82 thorpej SAVE_HINT(map, map->hint, entry);
2125 1.1 mrg *result = hint;
2126 1.1 mrg UVMHIST_LOG(maphist,"<- got it! (result=0x%x)", hint, 0,0,0);
2127 1.148 yamt KASSERT( topdown || hint >= orig_hint);
2128 1.148 yamt KASSERT(!topdown || hint <= orig_hint);
2129 1.144 yamt KASSERT(entry->end <= hint);
2130 1.144 yamt KASSERT(hint + length <= entry->next->start);
2131 1.1 mrg return (entry);
2132 1.140 enami
2133 1.140 enami wraparound:
2134 1.140 enami UVMHIST_LOG(maphist, "<- failed (wrap around)", 0,0,0,0);
2135 1.140 enami
2136 1.165 yamt return (NULL);
2137 1.165 yamt
2138 1.140 enami notfound:
2139 1.165 yamt UVMHIST_LOG(maphist, "<- failed (notfound)", 0,0,0,0);
2140 1.165 yamt
2141 1.140 enami return (NULL);
2142 1.1 mrg }
2143 1.1 mrg
2144 1.1 mrg /*
2145 1.1 mrg * U N M A P - m a i n h e l p e r f u n c t i o n s
2146 1.1 mrg */
2147 1.1 mrg
2148 1.1 mrg /*
2149 1.1 mrg * uvm_unmap_remove: remove mappings from a vm_map (from "start" up to "stop")
2150 1.1 mrg *
2151 1.98 chs * => caller must check alignment and size
2152 1.1 mrg * => map must be locked by caller
2153 1.1 mrg * => we return a list of map entries that we've remove from the map
2154 1.1 mrg * in "entry_list"
2155 1.1 mrg */
2156 1.1 mrg
2157 1.94 chs void
2158 1.138 enami uvm_unmap_remove(struct vm_map *map, vaddr_t start, vaddr_t end,
2159 1.311 para struct vm_map_entry **entry_list /* OUT */, int flags)
2160 1.10 mrg {
2161 1.99 chs struct vm_map_entry *entry, *first_entry, *next;
2162 1.24 eeh vaddr_t len;
2163 1.99 chs UVMHIST_FUNC("uvm_unmap_remove"); UVMHIST_CALLED(maphist);
2164 1.10 mrg
2165 1.10 mrg UVMHIST_LOG(maphist,"(map=0x%x, start=0x%x, end=0x%x)",
2166 1.10 mrg map, start, end, 0);
2167 1.10 mrg VM_MAP_RANGE_CHECK(map, start, end);
2168 1.10 mrg
2169 1.222 yamt uvm_map_check(map, "unmap_remove entry");
2170 1.144 yamt
2171 1.10 mrg /*
2172 1.10 mrg * find first entry
2173 1.10 mrg */
2174 1.99 chs
2175 1.234 thorpej if (uvm_map_lookup_entry(map, start, &first_entry) == true) {
2176 1.29 chuck /* clip and go... */
2177 1.10 mrg entry = first_entry;
2178 1.311 para UVM_MAP_CLIP_START(map, entry, start);
2179 1.10 mrg /* critical! prevents stale hint */
2180 1.82 thorpej SAVE_HINT(map, entry, entry->prev);
2181 1.10 mrg } else {
2182 1.10 mrg entry = first_entry->next;
2183 1.10 mrg }
2184 1.10 mrg
2185 1.10 mrg /*
2186 1.10 mrg * Save the free space hint
2187 1.10 mrg */
2188 1.10 mrg
2189 1.220 yamt if (map->first_free != &map->header && map->first_free->start >= start)
2190 1.10 mrg map->first_free = entry->prev;
2191 1.10 mrg
2192 1.10 mrg /*
2193 1.10 mrg * note: we now re-use first_entry for a different task. we remove
2194 1.10 mrg * a number of map entries from the map and save them in a linked
2195 1.10 mrg * list headed by "first_entry". once we remove them from the map
2196 1.10 mrg * the caller should unlock the map and drop the references to the
2197 1.10 mrg * backing objects [c.f. uvm_unmap_detach]. the object is to
2198 1.100 wiz * separate unmapping from reference dropping. why?
2199 1.10 mrg * [1] the map has to be locked for unmapping
2200 1.10 mrg * [2] the map need not be locked for reference dropping
2201 1.10 mrg * [3] dropping references may trigger pager I/O, and if we hit
2202 1.10 mrg * a pager that does synchronous I/O we may have to wait for it.
2203 1.10 mrg * [4] we would like all waiting for I/O to occur with maps unlocked
2204 1.98 chs * so that we don't block other threads.
2205 1.10 mrg */
2206 1.99 chs
2207 1.10 mrg first_entry = NULL;
2208 1.106 chs *entry_list = NULL;
2209 1.10 mrg
2210 1.10 mrg /*
2211 1.98 chs * break up the area into map entry sized regions and unmap. note
2212 1.10 mrg * that all mappings have to be removed before we can even consider
2213 1.10 mrg * dropping references to amaps or VM objects (otherwise we could end
2214 1.10 mrg * up with a mapping to a page on the free list which would be very bad)
2215 1.10 mrg */
2216 1.10 mrg
2217 1.10 mrg while ((entry != &map->header) && (entry->start < end)) {
2218 1.311 para KASSERT((entry->flags & UVM_MAP_STATIC) == 0);
2219 1.174 yamt
2220 1.311 para UVM_MAP_CLIP_END(map, entry, end);
2221 1.10 mrg next = entry->next;
2222 1.10 mrg len = entry->end - entry->start;
2223 1.81 thorpej
2224 1.10 mrg /*
2225 1.10 mrg * unwire before removing addresses from the pmap; otherwise
2226 1.10 mrg * unwiring will put the entries back into the pmap (XXX).
2227 1.10 mrg */
2228 1.1 mrg
2229 1.106 chs if (VM_MAPENT_ISWIRED(entry)) {
2230 1.10 mrg uvm_map_entry_unwire(map, entry);
2231 1.106 chs }
2232 1.187 yamt if (flags & UVM_FLAG_VAONLY) {
2233 1.187 yamt
2234 1.187 yamt /* nothing */
2235 1.187 yamt
2236 1.187 yamt } else if ((map->flags & VM_MAP_PAGEABLE) == 0) {
2237 1.10 mrg
2238 1.106 chs /*
2239 1.106 chs * if the map is non-pageable, any pages mapped there
2240 1.106 chs * must be wired and entered with pmap_kenter_pa(),
2241 1.106 chs * and we should free any such pages immediately.
2242 1.287 joerg * this is mostly used for kmem_map.
2243 1.106 chs */
2244 1.292 rmind KASSERT(vm_map_pmap(map) == pmap_kernel());
2245 1.99 chs
2246 1.174 yamt if ((entry->flags & UVM_MAP_KMAPENT) == 0) {
2247 1.264 ad uvm_km_pgremove_intrsafe(map, entry->start,
2248 1.174 yamt entry->end);
2249 1.174 yamt pmap_kremove(entry->start, len);
2250 1.174 yamt }
2251 1.106 chs } else if (UVM_ET_ISOBJ(entry) &&
2252 1.106 chs UVM_OBJ_IS_KERN_OBJECT(entry->object.uvm_obj)) {
2253 1.300 yamt panic("%s: kernel object %p %p\n",
2254 1.300 yamt __func__, map, entry);
2255 1.106 chs } else if (UVM_ET_ISOBJ(entry) || entry->aref.ar_amap) {
2256 1.29 chuck /*
2257 1.298 rmind * remove mappings the standard way. lock object
2258 1.298 rmind * and/or amap to ensure vm_page state does not
2259 1.298 rmind * change while in pmap_remove().
2260 1.139 enami */
2261 1.99 chs
2262 1.298 rmind uvm_map_lock_entry(entry);
2263 1.29 chuck pmap_remove(map->pmap, entry->start, entry->end);
2264 1.298 rmind uvm_map_unlock_entry(entry);
2265 1.10 mrg }
2266 1.10 mrg
2267 1.177 yamt #if defined(DEBUG)
2268 1.177 yamt if ((entry->flags & UVM_MAP_KMAPENT) == 0) {
2269 1.177 yamt
2270 1.177 yamt /*
2271 1.177 yamt * check if there's remaining mapping,
2272 1.177 yamt * which is a bug in caller.
2273 1.177 yamt */
2274 1.177 yamt
2275 1.177 yamt vaddr_t va;
2276 1.177 yamt for (va = entry->start; va < entry->end;
2277 1.177 yamt va += PAGE_SIZE) {
2278 1.177 yamt if (pmap_extract(vm_map_pmap(map), va, NULL)) {
2279 1.304 matt panic("%s: %#"PRIxVADDR" has mapping",
2280 1.304 matt __func__, va);
2281 1.177 yamt }
2282 1.177 yamt }
2283 1.187 yamt
2284 1.187 yamt if (VM_MAP_IS_KERNEL(map)) {
2285 1.264 ad uvm_km_check_empty(map, entry->start,
2286 1.264 ad entry->end);
2287 1.187 yamt }
2288 1.177 yamt }
2289 1.177 yamt #endif /* defined(DEBUG) */
2290 1.177 yamt
2291 1.10 mrg /*
2292 1.98 chs * remove entry from map and put it on our list of entries
2293 1.106 chs * that we've nuked. then go to next entry.
2294 1.10 mrg */
2295 1.99 chs
2296 1.10 mrg UVMHIST_LOG(maphist, " removed map entry 0x%x", entry, 0, 0,0);
2297 1.82 thorpej
2298 1.82 thorpej /* critical! prevents stale hint */
2299 1.82 thorpej SAVE_HINT(map, entry, entry->prev);
2300 1.82 thorpej
2301 1.10 mrg uvm_map_entry_unlink(map, entry);
2302 1.146 yamt KASSERT(map->size >= len);
2303 1.10 mrg map->size -= len;
2304 1.131 atatat entry->prev = NULL;
2305 1.10 mrg entry->next = first_entry;
2306 1.10 mrg first_entry = entry;
2307 1.106 chs entry = next;
2308 1.10 mrg }
2309 1.292 rmind
2310 1.292 rmind /*
2311 1.292 rmind * Note: if map is dying, leave pmap_update() for pmap_destroy(),
2312 1.292 rmind * which will be called later.
2313 1.292 rmind */
2314 1.120 chs if ((map->flags & VM_MAP_DYING) == 0) {
2315 1.120 chs pmap_update(vm_map_pmap(map));
2316 1.292 rmind } else {
2317 1.292 rmind KASSERT(vm_map_pmap(map) != pmap_kernel());
2318 1.120 chs }
2319 1.10 mrg
2320 1.222 yamt uvm_map_check(map, "unmap_remove leave");
2321 1.144 yamt
2322 1.10 mrg /*
2323 1.10 mrg * now we've cleaned up the map and are ready for the caller to drop
2324 1.98 chs * references to the mapped objects.
2325 1.10 mrg */
2326 1.10 mrg
2327 1.10 mrg *entry_list = first_entry;
2328 1.10 mrg UVMHIST_LOG(maphist,"<- done!", 0, 0, 0, 0);
2329 1.180 yamt
2330 1.180 yamt if (map->flags & VM_MAP_WANTVA) {
2331 1.238 ad mutex_enter(&map->misc_lock);
2332 1.180 yamt map->flags &= ~VM_MAP_WANTVA;
2333 1.238 ad cv_broadcast(&map->cv);
2334 1.238 ad mutex_exit(&map->misc_lock);
2335 1.180 yamt }
2336 1.1 mrg }
2337 1.1 mrg
2338 1.1 mrg /*
2339 1.1 mrg * uvm_unmap_detach: drop references in a chain of map entries
2340 1.1 mrg *
2341 1.1 mrg * => we will free the map entries as we traverse the list.
2342 1.1 mrg */
2343 1.1 mrg
2344 1.10 mrg void
2345 1.138 enami uvm_unmap_detach(struct vm_map_entry *first_entry, int flags)
2346 1.1 mrg {
2347 1.99 chs struct vm_map_entry *next_entry;
2348 1.10 mrg UVMHIST_FUNC("uvm_unmap_detach"); UVMHIST_CALLED(maphist);
2349 1.1 mrg
2350 1.10 mrg while (first_entry) {
2351 1.85 chs KASSERT(!VM_MAPENT_ISWIRED(first_entry));
2352 1.10 mrg UVMHIST_LOG(maphist,
2353 1.98 chs " detach 0x%x: amap=0x%x, obj=0x%x, submap?=%d",
2354 1.98 chs first_entry, first_entry->aref.ar_amap,
2355 1.29 chuck first_entry->object.uvm_obj,
2356 1.29 chuck UVM_ET_ISSUBMAP(first_entry));
2357 1.1 mrg
2358 1.10 mrg /*
2359 1.10 mrg * drop reference to amap, if we've got one
2360 1.10 mrg */
2361 1.10 mrg
2362 1.10 mrg if (first_entry->aref.ar_amap)
2363 1.85 chs uvm_map_unreference_amap(first_entry, flags);
2364 1.10 mrg
2365 1.10 mrg /*
2366 1.10 mrg * drop reference to our backing object, if we've got one
2367 1.10 mrg */
2368 1.85 chs
2369 1.120 chs KASSERT(!UVM_ET_ISSUBMAP(first_entry));
2370 1.120 chs if (UVM_ET_ISOBJ(first_entry) &&
2371 1.120 chs first_entry->object.uvm_obj->pgops->pgo_detach) {
2372 1.120 chs (*first_entry->object.uvm_obj->pgops->pgo_detach)
2373 1.120 chs (first_entry->object.uvm_obj);
2374 1.10 mrg }
2375 1.10 mrg next_entry = first_entry->next;
2376 1.10 mrg uvm_mapent_free(first_entry);
2377 1.10 mrg first_entry = next_entry;
2378 1.10 mrg }
2379 1.10 mrg UVMHIST_LOG(maphist, "<- done", 0,0,0,0);
2380 1.1 mrg }
2381 1.1 mrg
2382 1.1 mrg /*
2383 1.1 mrg * E X T R A C T I O N F U N C T I O N S
2384 1.1 mrg */
2385 1.1 mrg
2386 1.98 chs /*
2387 1.1 mrg * uvm_map_reserve: reserve space in a vm_map for future use.
2388 1.1 mrg *
2389 1.98 chs * => we reserve space in a map by putting a dummy map entry in the
2390 1.1 mrg * map (dummy means obj=NULL, amap=NULL, prot=VM_PROT_NONE)
2391 1.1 mrg * => map should be unlocked (we will write lock it)
2392 1.1 mrg * => we return true if we were able to reserve space
2393 1.1 mrg * => XXXCDC: should be inline?
2394 1.1 mrg */
2395 1.1 mrg
2396 1.10 mrg int
2397 1.138 enami uvm_map_reserve(struct vm_map *map, vsize_t size,
2398 1.138 enami vaddr_t offset /* hint for pmap_prefer */,
2399 1.243 yamt vsize_t align /* alignment */,
2400 1.210 yamt vaddr_t *raddr /* IN:hint, OUT: reserved VA */,
2401 1.210 yamt uvm_flag_t flags /* UVM_FLAG_FIXED or 0 */)
2402 1.1 mrg {
2403 1.98 chs UVMHIST_FUNC("uvm_map_reserve"); UVMHIST_CALLED(maphist);
2404 1.85 chs
2405 1.10 mrg UVMHIST_LOG(maphist, "(map=0x%x, size=0x%x, offset=0x%x,addr=0x%x)",
2406 1.139 enami map,size,offset,raddr);
2407 1.85 chs
2408 1.10 mrg size = round_page(size);
2409 1.85 chs
2410 1.10 mrg /*
2411 1.10 mrg * reserve some virtual space.
2412 1.10 mrg */
2413 1.85 chs
2414 1.243 yamt if (uvm_map(map, raddr, size, NULL, offset, align,
2415 1.10 mrg UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE, UVM_INH_NONE,
2416 1.210 yamt UVM_ADV_RANDOM, UVM_FLAG_NOMERGE|flags)) != 0) {
2417 1.10 mrg UVMHIST_LOG(maphist, "<- done (no VM)", 0,0,0,0);
2418 1.234 thorpej return (false);
2419 1.98 chs }
2420 1.85 chs
2421 1.10 mrg UVMHIST_LOG(maphist, "<- done (*raddr=0x%x)", *raddr,0,0,0);
2422 1.234 thorpej return (true);
2423 1.1 mrg }
2424 1.1 mrg
2425 1.1 mrg /*
2426 1.98 chs * uvm_map_replace: replace a reserved (blank) area of memory with
2427 1.1 mrg * real mappings.
2428 1.1 mrg *
2429 1.98 chs * => caller must WRITE-LOCK the map
2430 1.234 thorpej * => we return true if replacement was a success
2431 1.1 mrg * => we expect the newents chain to have nnewents entrys on it and
2432 1.1 mrg * we expect newents->prev to point to the last entry on the list
2433 1.1 mrg * => note newents is allowed to be NULL
2434 1.1 mrg */
2435 1.1 mrg
2436 1.275 yamt static int
2437 1.138 enami uvm_map_replace(struct vm_map *map, vaddr_t start, vaddr_t end,
2438 1.275 yamt struct vm_map_entry *newents, int nnewents, vsize_t nsize,
2439 1.275 yamt struct vm_map_entry **oldentryp)
2440 1.10 mrg {
2441 1.99 chs struct vm_map_entry *oldent, *last;
2442 1.1 mrg
2443 1.222 yamt uvm_map_check(map, "map_replace entry");
2444 1.144 yamt
2445 1.10 mrg /*
2446 1.10 mrg * first find the blank map entry at the specified address
2447 1.10 mrg */
2448 1.85 chs
2449 1.10 mrg if (!uvm_map_lookup_entry(map, start, &oldent)) {
2450 1.234 thorpej return (false);
2451 1.10 mrg }
2452 1.85 chs
2453 1.10 mrg /*
2454 1.10 mrg * check to make sure we have a proper blank entry
2455 1.10 mrg */
2456 1.1 mrg
2457 1.311 para if (end < oldent->end) {
2458 1.311 para UVM_MAP_CLIP_END(map, oldent, end);
2459 1.210 yamt }
2460 1.98 chs if (oldent->start != start || oldent->end != end ||
2461 1.10 mrg oldent->object.uvm_obj != NULL || oldent->aref.ar_amap != NULL) {
2462 1.234 thorpej return (false);
2463 1.10 mrg }
2464 1.1 mrg
2465 1.1 mrg #ifdef DIAGNOSTIC
2466 1.99 chs
2467 1.10 mrg /*
2468 1.10 mrg * sanity check the newents chain
2469 1.10 mrg */
2470 1.99 chs
2471 1.10 mrg {
2472 1.99 chs struct vm_map_entry *tmpent = newents;
2473 1.10 mrg int nent = 0;
2474 1.275 yamt vsize_t sz = 0;
2475 1.24 eeh vaddr_t cur = start;
2476 1.10 mrg
2477 1.10 mrg while (tmpent) {
2478 1.10 mrg nent++;
2479 1.275 yamt sz += tmpent->end - tmpent->start;
2480 1.10 mrg if (tmpent->start < cur)
2481 1.10 mrg panic("uvm_map_replace1");
2482 1.275 yamt if (tmpent->start >= tmpent->end || tmpent->end > end) {
2483 1.286 matt panic("uvm_map_replace2: "
2484 1.286 matt "tmpent->start=0x%"PRIxVADDR
2485 1.286 matt ", tmpent->end=0x%"PRIxVADDR
2486 1.286 matt ", end=0x%"PRIxVADDR,
2487 1.286 matt tmpent->start, tmpent->end, end);
2488 1.10 mrg }
2489 1.10 mrg cur = tmpent->end;
2490 1.10 mrg if (tmpent->next) {
2491 1.10 mrg if (tmpent->next->prev != tmpent)
2492 1.10 mrg panic("uvm_map_replace3");
2493 1.10 mrg } else {
2494 1.10 mrg if (newents->prev != tmpent)
2495 1.10 mrg panic("uvm_map_replace4");
2496 1.10 mrg }
2497 1.10 mrg tmpent = tmpent->next;
2498 1.10 mrg }
2499 1.10 mrg if (nent != nnewents)
2500 1.10 mrg panic("uvm_map_replace5");
2501 1.275 yamt if (sz != nsize)
2502 1.275 yamt panic("uvm_map_replace6");
2503 1.10 mrg }
2504 1.10 mrg #endif
2505 1.10 mrg
2506 1.10 mrg /*
2507 1.10 mrg * map entry is a valid blank! replace it. (this does all the
2508 1.10 mrg * work of map entry link/unlink...).
2509 1.10 mrg */
2510 1.10 mrg
2511 1.10 mrg if (newents) {
2512 1.99 chs last = newents->prev;
2513 1.10 mrg
2514 1.10 mrg /* critical: flush stale hints out of map */
2515 1.82 thorpej SAVE_HINT(map, map->hint, newents);
2516 1.10 mrg if (map->first_free == oldent)
2517 1.10 mrg map->first_free = last;
2518 1.10 mrg
2519 1.10 mrg last->next = oldent->next;
2520 1.10 mrg last->next->prev = last;
2521 1.144 yamt
2522 1.144 yamt /* Fix RB tree */
2523 1.144 yamt uvm_rb_remove(map, oldent);
2524 1.144 yamt
2525 1.10 mrg newents->prev = oldent->prev;
2526 1.10 mrg newents->prev->next = newents;
2527 1.10 mrg map->nentries = map->nentries + (nnewents - 1);
2528 1.10 mrg
2529 1.144 yamt /* Fixup the RB tree */
2530 1.144 yamt {
2531 1.144 yamt int i;
2532 1.144 yamt struct vm_map_entry *tmp;
2533 1.144 yamt
2534 1.144 yamt tmp = newents;
2535 1.144 yamt for (i = 0; i < nnewents && tmp; i++) {
2536 1.144 yamt uvm_rb_insert(map, tmp);
2537 1.144 yamt tmp = tmp->next;
2538 1.144 yamt }
2539 1.144 yamt }
2540 1.10 mrg } else {
2541 1.10 mrg /* NULL list of new entries: just remove the old one */
2542 1.221 yamt clear_hints(map, oldent);
2543 1.10 mrg uvm_map_entry_unlink(map, oldent);
2544 1.10 mrg }
2545 1.275 yamt map->size -= end - start - nsize;
2546 1.10 mrg
2547 1.222 yamt uvm_map_check(map, "map_replace leave");
2548 1.10 mrg
2549 1.10 mrg /*
2550 1.209 yamt * now we can free the old blank entry and return.
2551 1.10 mrg */
2552 1.1 mrg
2553 1.253 yamt *oldentryp = oldent;
2554 1.234 thorpej return (true);
2555 1.1 mrg }
2556 1.1 mrg
2557 1.1 mrg /*
2558 1.1 mrg * uvm_map_extract: extract a mapping from a map and put it somewhere
2559 1.1 mrg * (maybe removing the old mapping)
2560 1.1 mrg *
2561 1.1 mrg * => maps should be unlocked (we will write lock them)
2562 1.1 mrg * => returns 0 on success, error code otherwise
2563 1.1 mrg * => start must be page aligned
2564 1.1 mrg * => len must be page sized
2565 1.1 mrg * => flags:
2566 1.1 mrg * UVM_EXTRACT_REMOVE: remove mappings from srcmap
2567 1.1 mrg * UVM_EXTRACT_CONTIG: abort if unmapped area (advisory only)
2568 1.1 mrg * UVM_EXTRACT_QREF: for a temporary extraction do quick obj refs
2569 1.1 mrg * UVM_EXTRACT_FIXPROT: set prot to maxprot as we go
2570 1.1 mrg * >>>NOTE: if you set REMOVE, you are not allowed to use CONTIG or QREF!<<<
2571 1.1 mrg * >>>NOTE: QREF's must be unmapped via the QREF path, thus should only
2572 1.1 mrg * be used from within the kernel in a kernel level map <<<
2573 1.1 mrg */
2574 1.1 mrg
2575 1.10 mrg int
2576 1.138 enami uvm_map_extract(struct vm_map *srcmap, vaddr_t start, vsize_t len,
2577 1.138 enami struct vm_map *dstmap, vaddr_t *dstaddrp, int flags)
2578 1.10 mrg {
2579 1.163 mycroft vaddr_t dstaddr, end, newend, oldoffset, fudge, orig_fudge;
2580 1.99 chs struct vm_map_entry *chain, *endchain, *entry, *orig_entry, *newentry,
2581 1.99 chs *deadentry, *oldentry;
2582 1.253 yamt struct vm_map_entry *resentry = NULL; /* a dummy reservation entry */
2583 1.24 eeh vsize_t elen;
2584 1.10 mrg int nchain, error, copy_ok;
2585 1.275 yamt vsize_t nsize;
2586 1.10 mrg UVMHIST_FUNC("uvm_map_extract"); UVMHIST_CALLED(maphist);
2587 1.85 chs
2588 1.10 mrg UVMHIST_LOG(maphist,"(srcmap=0x%x,start=0x%x, len=0x%x", srcmap, start,
2589 1.10 mrg len,0);
2590 1.10 mrg UVMHIST_LOG(maphist," ...,dstmap=0x%x, flags=0x%x)", dstmap,flags,0,0);
2591 1.10 mrg
2592 1.10 mrg /*
2593 1.10 mrg * step 0: sanity check: start must be on a page boundary, length
2594 1.10 mrg * must be page sized. can't ask for CONTIG/QREF if you asked for
2595 1.10 mrg * REMOVE.
2596 1.10 mrg */
2597 1.10 mrg
2598 1.85 chs KASSERT((start & PAGE_MASK) == 0 && (len & PAGE_MASK) == 0);
2599 1.85 chs KASSERT((flags & UVM_EXTRACT_REMOVE) == 0 ||
2600 1.85 chs (flags & (UVM_EXTRACT_CONTIG|UVM_EXTRACT_QREF)) == 0);
2601 1.10 mrg
2602 1.10 mrg /*
2603 1.10 mrg * step 1: reserve space in the target map for the extracted area
2604 1.10 mrg */
2605 1.10 mrg
2606 1.210 yamt if ((flags & UVM_EXTRACT_RESERVED) == 0) {
2607 1.210 yamt dstaddr = vm_map_min(dstmap);
2608 1.210 yamt if (!uvm_map_reserve(dstmap, len, start, 0, &dstaddr, 0))
2609 1.210 yamt return (ENOMEM);
2610 1.210 yamt *dstaddrp = dstaddr; /* pass address back to caller */
2611 1.210 yamt UVMHIST_LOG(maphist, " dstaddr=0x%x", dstaddr,0,0,0);
2612 1.210 yamt } else {
2613 1.210 yamt dstaddr = *dstaddrp;
2614 1.210 yamt }
2615 1.10 mrg
2616 1.10 mrg /*
2617 1.98 chs * step 2: setup for the extraction process loop by init'ing the
2618 1.10 mrg * map entry chain, locking src map, and looking up the first useful
2619 1.10 mrg * entry in the map.
2620 1.10 mrg */
2621 1.1 mrg
2622 1.10 mrg end = start + len;
2623 1.10 mrg newend = dstaddr + len;
2624 1.10 mrg chain = endchain = NULL;
2625 1.10 mrg nchain = 0;
2626 1.275 yamt nsize = 0;
2627 1.10 mrg vm_map_lock(srcmap);
2628 1.10 mrg
2629 1.10 mrg if (uvm_map_lookup_entry(srcmap, start, &entry)) {
2630 1.10 mrg
2631 1.10 mrg /* "start" is within an entry */
2632 1.10 mrg if (flags & UVM_EXTRACT_QREF) {
2633 1.85 chs
2634 1.10 mrg /*
2635 1.10 mrg * for quick references we don't clip the entry, so
2636 1.10 mrg * the entry may map space "before" the starting
2637 1.10 mrg * virtual address... this is the "fudge" factor
2638 1.10 mrg * (which can be non-zero only the first time
2639 1.10 mrg * through the "while" loop in step 3).
2640 1.10 mrg */
2641 1.85 chs
2642 1.10 mrg fudge = start - entry->start;
2643 1.10 mrg } else {
2644 1.85 chs
2645 1.10 mrg /*
2646 1.10 mrg * normal reference: we clip the map to fit (thus
2647 1.10 mrg * fudge is zero)
2648 1.10 mrg */
2649 1.85 chs
2650 1.311 para UVM_MAP_CLIP_START(srcmap, entry, start);
2651 1.82 thorpej SAVE_HINT(srcmap, srcmap->hint, entry->prev);
2652 1.10 mrg fudge = 0;
2653 1.10 mrg }
2654 1.85 chs } else {
2655 1.1 mrg
2656 1.10 mrg /* "start" is not within an entry ... skip to next entry */
2657 1.10 mrg if (flags & UVM_EXTRACT_CONTIG) {
2658 1.10 mrg error = EINVAL;
2659 1.10 mrg goto bad; /* definite hole here ... */
2660 1.10 mrg }
2661 1.1 mrg
2662 1.10 mrg entry = entry->next;
2663 1.10 mrg fudge = 0;
2664 1.10 mrg }
2665 1.85 chs
2666 1.10 mrg /* save values from srcmap for step 6 */
2667 1.10 mrg orig_entry = entry;
2668 1.10 mrg orig_fudge = fudge;
2669 1.1 mrg
2670 1.10 mrg /*
2671 1.10 mrg * step 3: now start looping through the map entries, extracting
2672 1.10 mrg * as we go.
2673 1.10 mrg */
2674 1.1 mrg
2675 1.10 mrg while (entry->start < end && entry != &srcmap->header) {
2676 1.85 chs
2677 1.10 mrg /* if we are not doing a quick reference, clip it */
2678 1.10 mrg if ((flags & UVM_EXTRACT_QREF) == 0)
2679 1.311 para UVM_MAP_CLIP_END(srcmap, entry, end);
2680 1.10 mrg
2681 1.10 mrg /* clear needs_copy (allow chunking) */
2682 1.10 mrg if (UVM_ET_ISNEEDSCOPY(entry)) {
2683 1.212 yamt amap_copy(srcmap, entry,
2684 1.212 yamt AMAP_COPY_NOWAIT|AMAP_COPY_NOMERGE, start, end);
2685 1.10 mrg if (UVM_ET_ISNEEDSCOPY(entry)) { /* failed? */
2686 1.10 mrg error = ENOMEM;
2687 1.10 mrg goto bad;
2688 1.10 mrg }
2689 1.85 chs
2690 1.10 mrg /* amap_copy could clip (during chunk)! update fudge */
2691 1.10 mrg if (fudge) {
2692 1.163 mycroft fudge = start - entry->start;
2693 1.10 mrg orig_fudge = fudge;
2694 1.10 mrg }
2695 1.10 mrg }
2696 1.1 mrg
2697 1.10 mrg /* calculate the offset of this from "start" */
2698 1.10 mrg oldoffset = (entry->start + fudge) - start;
2699 1.1 mrg
2700 1.10 mrg /* allocate a new map entry */
2701 1.126 bouyer newentry = uvm_mapent_alloc(dstmap, 0);
2702 1.10 mrg if (newentry == NULL) {
2703 1.10 mrg error = ENOMEM;
2704 1.10 mrg goto bad;
2705 1.10 mrg }
2706 1.10 mrg
2707 1.10 mrg /* set up new map entry */
2708 1.10 mrg newentry->next = NULL;
2709 1.10 mrg newentry->prev = endchain;
2710 1.10 mrg newentry->start = dstaddr + oldoffset;
2711 1.10 mrg newentry->end =
2712 1.10 mrg newentry->start + (entry->end - (entry->start + fudge));
2713 1.37 chs if (newentry->end > newend || newentry->end < newentry->start)
2714 1.10 mrg newentry->end = newend;
2715 1.10 mrg newentry->object.uvm_obj = entry->object.uvm_obj;
2716 1.10 mrg if (newentry->object.uvm_obj) {
2717 1.10 mrg if (newentry->object.uvm_obj->pgops->pgo_reference)
2718 1.10 mrg newentry->object.uvm_obj->pgops->
2719 1.10 mrg pgo_reference(newentry->object.uvm_obj);
2720 1.10 mrg newentry->offset = entry->offset + fudge;
2721 1.10 mrg } else {
2722 1.10 mrg newentry->offset = 0;
2723 1.10 mrg }
2724 1.10 mrg newentry->etype = entry->etype;
2725 1.98 chs newentry->protection = (flags & UVM_EXTRACT_FIXPROT) ?
2726 1.98 chs entry->max_protection : entry->protection;
2727 1.10 mrg newentry->max_protection = entry->max_protection;
2728 1.10 mrg newentry->inheritance = entry->inheritance;
2729 1.10 mrg newentry->wired_count = 0;
2730 1.10 mrg newentry->aref.ar_amap = entry->aref.ar_amap;
2731 1.10 mrg if (newentry->aref.ar_amap) {
2732 1.34 chuck newentry->aref.ar_pageoff =
2733 1.34 chuck entry->aref.ar_pageoff + (fudge >> PAGE_SHIFT);
2734 1.85 chs uvm_map_reference_amap(newentry, AMAP_SHARED |
2735 1.10 mrg ((flags & UVM_EXTRACT_QREF) ? AMAP_REFALL : 0));
2736 1.10 mrg } else {
2737 1.34 chuck newentry->aref.ar_pageoff = 0;
2738 1.10 mrg }
2739 1.10 mrg newentry->advice = entry->advice;
2740 1.245 yamt if ((flags & UVM_EXTRACT_QREF) != 0) {
2741 1.245 yamt newentry->flags |= UVM_MAP_NOMERGE;
2742 1.245 yamt }
2743 1.10 mrg
2744 1.10 mrg /* now link it on the chain */
2745 1.10 mrg nchain++;
2746 1.275 yamt nsize += newentry->end - newentry->start;
2747 1.10 mrg if (endchain == NULL) {
2748 1.10 mrg chain = endchain = newentry;
2749 1.10 mrg } else {
2750 1.10 mrg endchain->next = newentry;
2751 1.10 mrg endchain = newentry;
2752 1.10 mrg }
2753 1.10 mrg
2754 1.10 mrg /* end of 'while' loop! */
2755 1.98 chs if ((flags & UVM_EXTRACT_CONTIG) && entry->end < end &&
2756 1.10 mrg (entry->next == &srcmap->header ||
2757 1.10 mrg entry->next->start != entry->end)) {
2758 1.10 mrg error = EINVAL;
2759 1.10 mrg goto bad;
2760 1.10 mrg }
2761 1.10 mrg entry = entry->next;
2762 1.10 mrg fudge = 0;
2763 1.10 mrg }
2764 1.10 mrg
2765 1.10 mrg /*
2766 1.10 mrg * step 4: close off chain (in format expected by uvm_map_replace)
2767 1.10 mrg */
2768 1.10 mrg
2769 1.10 mrg if (chain)
2770 1.10 mrg chain->prev = endchain;
2771 1.10 mrg
2772 1.10 mrg /*
2773 1.10 mrg * step 5: attempt to lock the dest map so we can pmap_copy.
2774 1.98 chs * note usage of copy_ok:
2775 1.10 mrg * 1 => dstmap locked, pmap_copy ok, and we "replace" here (step 5)
2776 1.10 mrg * 0 => dstmap unlocked, NO pmap_copy, and we will "replace" in step 7
2777 1.10 mrg */
2778 1.85 chs
2779 1.234 thorpej if (srcmap == dstmap || vm_map_lock_try(dstmap) == true) {
2780 1.10 mrg copy_ok = 1;
2781 1.10 mrg if (!uvm_map_replace(dstmap, dstaddr, dstaddr+len, chain,
2782 1.275 yamt nchain, nsize, &resentry)) {
2783 1.10 mrg if (srcmap != dstmap)
2784 1.10 mrg vm_map_unlock(dstmap);
2785 1.10 mrg error = EIO;
2786 1.10 mrg goto bad;
2787 1.10 mrg }
2788 1.10 mrg } else {
2789 1.10 mrg copy_ok = 0;
2790 1.10 mrg /* replace defered until step 7 */
2791 1.10 mrg }
2792 1.10 mrg
2793 1.10 mrg /*
2794 1.10 mrg * step 6: traverse the srcmap a second time to do the following:
2795 1.10 mrg * - if we got a lock on the dstmap do pmap_copy
2796 1.10 mrg * - if UVM_EXTRACT_REMOVE remove the entries
2797 1.10 mrg * we make use of orig_entry and orig_fudge (saved in step 2)
2798 1.10 mrg */
2799 1.10 mrg
2800 1.10 mrg if (copy_ok || (flags & UVM_EXTRACT_REMOVE)) {
2801 1.10 mrg
2802 1.10 mrg /* purge possible stale hints from srcmap */
2803 1.10 mrg if (flags & UVM_EXTRACT_REMOVE) {
2804 1.82 thorpej SAVE_HINT(srcmap, srcmap->hint, orig_entry->prev);
2805 1.220 yamt if (srcmap->first_free != &srcmap->header &&
2806 1.220 yamt srcmap->first_free->start >= start)
2807 1.10 mrg srcmap->first_free = orig_entry->prev;
2808 1.10 mrg }
2809 1.10 mrg
2810 1.10 mrg entry = orig_entry;
2811 1.10 mrg fudge = orig_fudge;
2812 1.10 mrg deadentry = NULL; /* for UVM_EXTRACT_REMOVE */
2813 1.10 mrg
2814 1.10 mrg while (entry->start < end && entry != &srcmap->header) {
2815 1.10 mrg if (copy_ok) {
2816 1.74 thorpej oldoffset = (entry->start + fudge) - start;
2817 1.90 chs elen = MIN(end, entry->end) -
2818 1.74 thorpej (entry->start + fudge);
2819 1.74 thorpej pmap_copy(dstmap->pmap, srcmap->pmap,
2820 1.74 thorpej dstaddr + oldoffset, elen,
2821 1.74 thorpej entry->start + fudge);
2822 1.10 mrg }
2823 1.10 mrg
2824 1.74 thorpej /* we advance "entry" in the following if statement */
2825 1.10 mrg if (flags & UVM_EXTRACT_REMOVE) {
2826 1.298 rmind uvm_map_lock_entry(entry);
2827 1.98 chs pmap_remove(srcmap->pmap, entry->start,
2828 1.20 chuck entry->end);
2829 1.298 rmind uvm_map_unlock_entry(entry);
2830 1.139 enami oldentry = entry; /* save entry */
2831 1.139 enami entry = entry->next; /* advance */
2832 1.20 chuck uvm_map_entry_unlink(srcmap, oldentry);
2833 1.20 chuck /* add to dead list */
2834 1.20 chuck oldentry->next = deadentry;
2835 1.20 chuck deadentry = oldentry;
2836 1.139 enami } else {
2837 1.139 enami entry = entry->next; /* advance */
2838 1.10 mrg }
2839 1.10 mrg
2840 1.10 mrg /* end of 'while' loop */
2841 1.10 mrg fudge = 0;
2842 1.10 mrg }
2843 1.105 chris pmap_update(srcmap->pmap);
2844 1.10 mrg
2845 1.10 mrg /*
2846 1.10 mrg * unlock dstmap. we will dispose of deadentry in
2847 1.10 mrg * step 7 if needed
2848 1.10 mrg */
2849 1.85 chs
2850 1.10 mrg if (copy_ok && srcmap != dstmap)
2851 1.10 mrg vm_map_unlock(dstmap);
2852 1.10 mrg
2853 1.99 chs } else {
2854 1.99 chs deadentry = NULL;
2855 1.10 mrg }
2856 1.10 mrg
2857 1.10 mrg /*
2858 1.10 mrg * step 7: we are done with the source map, unlock. if copy_ok
2859 1.10 mrg * is 0 then we have not replaced the dummy mapping in dstmap yet
2860 1.10 mrg * and we need to do so now.
2861 1.10 mrg */
2862 1.10 mrg
2863 1.10 mrg vm_map_unlock(srcmap);
2864 1.10 mrg if ((flags & UVM_EXTRACT_REMOVE) && deadentry)
2865 1.10 mrg uvm_unmap_detach(deadentry, 0); /* dispose of old entries */
2866 1.10 mrg
2867 1.10 mrg /* now do the replacement if we didn't do it in step 5 */
2868 1.10 mrg if (copy_ok == 0) {
2869 1.10 mrg vm_map_lock(dstmap);
2870 1.10 mrg error = uvm_map_replace(dstmap, dstaddr, dstaddr+len, chain,
2871 1.275 yamt nchain, nsize, &resentry);
2872 1.10 mrg vm_map_unlock(dstmap);
2873 1.10 mrg
2874 1.234 thorpej if (error == false) {
2875 1.10 mrg error = EIO;
2876 1.10 mrg goto bad2;
2877 1.10 mrg }
2878 1.10 mrg }
2879 1.144 yamt
2880 1.253 yamt if (resentry != NULL)
2881 1.253 yamt uvm_mapent_free(resentry);
2882 1.253 yamt
2883 1.139 enami return (0);
2884 1.10 mrg
2885 1.10 mrg /*
2886 1.10 mrg * bad: failure recovery
2887 1.10 mrg */
2888 1.10 mrg bad:
2889 1.10 mrg vm_map_unlock(srcmap);
2890 1.10 mrg bad2: /* src already unlocked */
2891 1.10 mrg if (chain)
2892 1.10 mrg uvm_unmap_detach(chain,
2893 1.10 mrg (flags & UVM_EXTRACT_QREF) ? AMAP_REFALL : 0);
2894 1.144 yamt
2895 1.253 yamt if (resentry != NULL)
2896 1.253 yamt uvm_mapent_free(resentry);
2897 1.253 yamt
2898 1.210 yamt if ((flags & UVM_EXTRACT_RESERVED) == 0) {
2899 1.210 yamt uvm_unmap(dstmap, dstaddr, dstaddr+len); /* ??? */
2900 1.210 yamt }
2901 1.139 enami return (error);
2902 1.10 mrg }
2903 1.10 mrg
2904 1.10 mrg /* end of extraction functions */
2905 1.1 mrg
2906 1.1 mrg /*
2907 1.1 mrg * uvm_map_submap: punch down part of a map into a submap
2908 1.1 mrg *
2909 1.1 mrg * => only the kernel_map is allowed to be submapped
2910 1.1 mrg * => the purpose of submapping is to break up the locking granularity
2911 1.1 mrg * of a larger map
2912 1.1 mrg * => the range specified must have been mapped previously with a uvm_map()
2913 1.1 mrg * call [with uobj==NULL] to create a blank map entry in the main map.
2914 1.1 mrg * [And it had better still be blank!]
2915 1.1 mrg * => maps which contain submaps should never be copied or forked.
2916 1.98 chs * => to remove a submap, use uvm_unmap() on the main map
2917 1.1 mrg * and then uvm_map_deallocate() the submap.
2918 1.1 mrg * => main map must be unlocked.
2919 1.1 mrg * => submap must have been init'd and have a zero reference count.
2920 1.1 mrg * [need not be locked as we don't actually reference it]
2921 1.1 mrg */
2922 1.85 chs
2923 1.10 mrg int
2924 1.138 enami uvm_map_submap(struct vm_map *map, vaddr_t start, vaddr_t end,
2925 1.138 enami struct vm_map *submap)
2926 1.10 mrg {
2927 1.99 chs struct vm_map_entry *entry;
2928 1.94 chs int error;
2929 1.1 mrg
2930 1.10 mrg vm_map_lock(map);
2931 1.85 chs VM_MAP_RANGE_CHECK(map, start, end);
2932 1.1 mrg
2933 1.10 mrg if (uvm_map_lookup_entry(map, start, &entry)) {
2934 1.311 para UVM_MAP_CLIP_START(map, entry, start);
2935 1.311 para UVM_MAP_CLIP_END(map, entry, end); /* to be safe */
2936 1.94 chs } else {
2937 1.10 mrg entry = NULL;
2938 1.10 mrg }
2939 1.1 mrg
2940 1.98 chs if (entry != NULL &&
2941 1.10 mrg entry->start == start && entry->end == end &&
2942 1.10 mrg entry->object.uvm_obj == NULL && entry->aref.ar_amap == NULL &&
2943 1.10 mrg !UVM_ET_ISCOPYONWRITE(entry) && !UVM_ET_ISNEEDSCOPY(entry)) {
2944 1.29 chuck entry->etype |= UVM_ET_SUBMAP;
2945 1.10 mrg entry->object.sub_map = submap;
2946 1.10 mrg entry->offset = 0;
2947 1.10 mrg uvm_map_reference(submap);
2948 1.94 chs error = 0;
2949 1.10 mrg } else {
2950 1.94 chs error = EINVAL;
2951 1.10 mrg }
2952 1.10 mrg vm_map_unlock(map);
2953 1.174 yamt
2954 1.94 chs return error;
2955 1.1 mrg }
2956 1.1 mrg
2957 1.175 yamt /*
2958 1.1 mrg * uvm_map_protect: change map protection
2959 1.1 mrg *
2960 1.1 mrg * => set_max means set max_protection.
2961 1.1 mrg * => map must be unlocked.
2962 1.1 mrg */
2963 1.1 mrg
2964 1.139 enami #define MASK(entry) (UVM_ET_ISCOPYONWRITE(entry) ? \
2965 1.36 mycroft ~VM_PROT_WRITE : VM_PROT_ALL)
2966 1.1 mrg
2967 1.10 mrg int
2968 1.138 enami uvm_map_protect(struct vm_map *map, vaddr_t start, vaddr_t end,
2969 1.233 thorpej vm_prot_t new_prot, bool set_max)
2970 1.10 mrg {
2971 1.99 chs struct vm_map_entry *current, *entry;
2972 1.94 chs int error = 0;
2973 1.10 mrg UVMHIST_FUNC("uvm_map_protect"); UVMHIST_CALLED(maphist);
2974 1.10 mrg UVMHIST_LOG(maphist,"(map=0x%x,start=0x%x,end=0x%x,new_prot=0x%x)",
2975 1.85 chs map, start, end, new_prot);
2976 1.85 chs
2977 1.10 mrg vm_map_lock(map);
2978 1.10 mrg VM_MAP_RANGE_CHECK(map, start, end);
2979 1.10 mrg if (uvm_map_lookup_entry(map, start, &entry)) {
2980 1.311 para UVM_MAP_CLIP_START(map, entry, start);
2981 1.10 mrg } else {
2982 1.10 mrg entry = entry->next;
2983 1.10 mrg }
2984 1.10 mrg
2985 1.1 mrg /*
2986 1.10 mrg * make a first pass to check for protection violations.
2987 1.1 mrg */
2988 1.1 mrg
2989 1.10 mrg current = entry;
2990 1.10 mrg while ((current != &map->header) && (current->start < end)) {
2991 1.65 thorpej if (UVM_ET_ISSUBMAP(current)) {
2992 1.94 chs error = EINVAL;
2993 1.65 thorpej goto out;
2994 1.65 thorpej }
2995 1.10 mrg if ((new_prot & current->max_protection) != new_prot) {
2996 1.94 chs error = EACCES;
2997 1.65 thorpej goto out;
2998 1.112 thorpej }
2999 1.112 thorpej /*
3000 1.112 thorpej * Don't allow VM_PROT_EXECUTE to be set on entries that
3001 1.112 thorpej * point to vnodes that are associated with a NOEXEC file
3002 1.112 thorpej * system.
3003 1.112 thorpej */
3004 1.112 thorpej if (UVM_ET_ISOBJ(current) &&
3005 1.112 thorpej UVM_OBJ_IS_VNODE(current->object.uvm_obj)) {
3006 1.112 thorpej struct vnode *vp =
3007 1.112 thorpej (struct vnode *) current->object.uvm_obj;
3008 1.112 thorpej
3009 1.112 thorpej if ((new_prot & VM_PROT_EXECUTE) != 0 &&
3010 1.112 thorpej (vp->v_mount->mnt_flag & MNT_NOEXEC) != 0) {
3011 1.112 thorpej error = EACCES;
3012 1.112 thorpej goto out;
3013 1.112 thorpej }
3014 1.10 mrg }
3015 1.224 elad
3016 1.65 thorpej current = current->next;
3017 1.10 mrg }
3018 1.10 mrg
3019 1.10 mrg /* go back and fix up protections (no need to clip this time). */
3020 1.10 mrg
3021 1.10 mrg current = entry;
3022 1.10 mrg while ((current != &map->header) && (current->start < end)) {
3023 1.10 mrg vm_prot_t old_prot;
3024 1.85 chs
3025 1.311 para UVM_MAP_CLIP_END(map, current, end);
3026 1.10 mrg old_prot = current->protection;
3027 1.10 mrg if (set_max)
3028 1.10 mrg current->protection =
3029 1.10 mrg (current->max_protection = new_prot) & old_prot;
3030 1.10 mrg else
3031 1.10 mrg current->protection = new_prot;
3032 1.10 mrg
3033 1.10 mrg /*
3034 1.98 chs * update physical map if necessary. worry about copy-on-write
3035 1.10 mrg * here -- CHECK THIS XXX
3036 1.10 mrg */
3037 1.10 mrg
3038 1.10 mrg if (current->protection != old_prot) {
3039 1.29 chuck /* update pmap! */
3040 1.298 rmind uvm_map_lock_entry(current);
3041 1.29 chuck pmap_protect(map->pmap, current->start, current->end,
3042 1.29 chuck current->protection & MASK(entry));
3043 1.298 rmind uvm_map_unlock_entry(current);
3044 1.109 thorpej
3045 1.109 thorpej /*
3046 1.109 thorpej * If this entry points at a vnode, and the
3047 1.109 thorpej * protection includes VM_PROT_EXECUTE, mark
3048 1.111 thorpej * the vnode as VEXECMAP.
3049 1.109 thorpej */
3050 1.109 thorpej if (UVM_ET_ISOBJ(current)) {
3051 1.109 thorpej struct uvm_object *uobj =
3052 1.109 thorpej current->object.uvm_obj;
3053 1.109 thorpej
3054 1.109 thorpej if (UVM_OBJ_IS_VNODE(uobj) &&
3055 1.241 ad (current->protection & VM_PROT_EXECUTE)) {
3056 1.110 thorpej vn_markexec((struct vnode *) uobj);
3057 1.241 ad }
3058 1.109 thorpej }
3059 1.65 thorpej }
3060 1.10 mrg
3061 1.65 thorpej /*
3062 1.65 thorpej * If the map is configured to lock any future mappings,
3063 1.65 thorpej * wire this entry now if the old protection was VM_PROT_NONE
3064 1.65 thorpej * and the new protection is not VM_PROT_NONE.
3065 1.65 thorpej */
3066 1.65 thorpej
3067 1.65 thorpej if ((map->flags & VM_MAP_WIREFUTURE) != 0 &&
3068 1.65 thorpej VM_MAPENT_ISWIRED(entry) == 0 &&
3069 1.65 thorpej old_prot == VM_PROT_NONE &&
3070 1.65 thorpej new_prot != VM_PROT_NONE) {
3071 1.65 thorpej if (uvm_map_pageable(map, entry->start,
3072 1.234 thorpej entry->end, false,
3073 1.94 chs UVM_LK_ENTER|UVM_LK_EXIT) != 0) {
3074 1.99 chs
3075 1.65 thorpej /*
3076 1.65 thorpej * If locking the entry fails, remember the
3077 1.65 thorpej * error if it's the first one. Note we
3078 1.65 thorpej * still continue setting the protection in
3079 1.94 chs * the map, but will return the error
3080 1.94 chs * condition regardless.
3081 1.65 thorpej *
3082 1.65 thorpej * XXX Ignore what the actual error is,
3083 1.65 thorpej * XXX just call it a resource shortage
3084 1.65 thorpej * XXX so that it doesn't get confused
3085 1.65 thorpej * XXX what uvm_map_protect() itself would
3086 1.65 thorpej * XXX normally return.
3087 1.65 thorpej */
3088 1.99 chs
3089 1.94 chs error = ENOMEM;
3090 1.65 thorpej }
3091 1.10 mrg }
3092 1.10 mrg current = current->next;
3093 1.10 mrg }
3094 1.105 chris pmap_update(map->pmap);
3095 1.85 chs
3096 1.65 thorpej out:
3097 1.10 mrg vm_map_unlock(map);
3098 1.174 yamt
3099 1.94 chs UVMHIST_LOG(maphist, "<- done, error=%d",error,0,0,0);
3100 1.94 chs return error;
3101 1.1 mrg }
3102 1.1 mrg
3103 1.1 mrg #undef MASK
3104 1.1 mrg
3105 1.98 chs /*
3106 1.1 mrg * uvm_map_inherit: set inheritance code for range of addrs in map.
3107 1.1 mrg *
3108 1.1 mrg * => map must be unlocked
3109 1.1 mrg * => note that the inherit code is used during a "fork". see fork
3110 1.1 mrg * code for details.
3111 1.1 mrg */
3112 1.1 mrg
3113 1.10 mrg int
3114 1.138 enami uvm_map_inherit(struct vm_map *map, vaddr_t start, vaddr_t end,
3115 1.138 enami vm_inherit_t new_inheritance)
3116 1.10 mrg {
3117 1.99 chs struct vm_map_entry *entry, *temp_entry;
3118 1.10 mrg UVMHIST_FUNC("uvm_map_inherit"); UVMHIST_CALLED(maphist);
3119 1.10 mrg UVMHIST_LOG(maphist,"(map=0x%x,start=0x%x,end=0x%x,new_inh=0x%x)",
3120 1.10 mrg map, start, end, new_inheritance);
3121 1.10 mrg
3122 1.10 mrg switch (new_inheritance) {
3123 1.80 wiz case MAP_INHERIT_NONE:
3124 1.80 wiz case MAP_INHERIT_COPY:
3125 1.80 wiz case MAP_INHERIT_SHARE:
3126 1.10 mrg break;
3127 1.10 mrg default:
3128 1.10 mrg UVMHIST_LOG(maphist,"<- done (INVALID ARG)",0,0,0,0);
3129 1.94 chs return EINVAL;
3130 1.10 mrg }
3131 1.1 mrg
3132 1.10 mrg vm_map_lock(map);
3133 1.10 mrg VM_MAP_RANGE_CHECK(map, start, end);
3134 1.10 mrg if (uvm_map_lookup_entry(map, start, &temp_entry)) {
3135 1.10 mrg entry = temp_entry;
3136 1.311 para UVM_MAP_CLIP_START(map, entry, start);
3137 1.10 mrg } else {
3138 1.10 mrg entry = temp_entry->next;
3139 1.10 mrg }
3140 1.10 mrg while ((entry != &map->header) && (entry->start < end)) {
3141 1.311 para UVM_MAP_CLIP_END(map, entry, end);
3142 1.10 mrg entry->inheritance = new_inheritance;
3143 1.10 mrg entry = entry->next;
3144 1.10 mrg }
3145 1.10 mrg vm_map_unlock(map);
3146 1.10 mrg UVMHIST_LOG(maphist,"<- done (OK)",0,0,0,0);
3147 1.94 chs return 0;
3148 1.41 mrg }
3149 1.41 mrg
3150 1.98 chs /*
3151 1.41 mrg * uvm_map_advice: set advice code for range of addrs in map.
3152 1.41 mrg *
3153 1.41 mrg * => map must be unlocked
3154 1.41 mrg */
3155 1.41 mrg
3156 1.41 mrg int
3157 1.138 enami uvm_map_advice(struct vm_map *map, vaddr_t start, vaddr_t end, int new_advice)
3158 1.41 mrg {
3159 1.99 chs struct vm_map_entry *entry, *temp_entry;
3160 1.41 mrg UVMHIST_FUNC("uvm_map_advice"); UVMHIST_CALLED(maphist);
3161 1.41 mrg UVMHIST_LOG(maphist,"(map=0x%x,start=0x%x,end=0x%x,new_adv=0x%x)",
3162 1.41 mrg map, start, end, new_advice);
3163 1.41 mrg
3164 1.41 mrg vm_map_lock(map);
3165 1.41 mrg VM_MAP_RANGE_CHECK(map, start, end);
3166 1.41 mrg if (uvm_map_lookup_entry(map, start, &temp_entry)) {
3167 1.41 mrg entry = temp_entry;
3168 1.311 para UVM_MAP_CLIP_START(map, entry, start);
3169 1.41 mrg } else {
3170 1.41 mrg entry = temp_entry->next;
3171 1.41 mrg }
3172 1.61 thorpej
3173 1.61 thorpej /*
3174 1.61 thorpej * XXXJRT: disallow holes?
3175 1.61 thorpej */
3176 1.61 thorpej
3177 1.41 mrg while ((entry != &map->header) && (entry->start < end)) {
3178 1.311 para UVM_MAP_CLIP_END(map, entry, end);
3179 1.41 mrg
3180 1.41 mrg switch (new_advice) {
3181 1.41 mrg case MADV_NORMAL:
3182 1.41 mrg case MADV_RANDOM:
3183 1.41 mrg case MADV_SEQUENTIAL:
3184 1.41 mrg /* nothing special here */
3185 1.41 mrg break;
3186 1.41 mrg
3187 1.41 mrg default:
3188 1.50 mrg vm_map_unlock(map);
3189 1.41 mrg UVMHIST_LOG(maphist,"<- done (INVALID ARG)",0,0,0,0);
3190 1.94 chs return EINVAL;
3191 1.41 mrg }
3192 1.41 mrg entry->advice = new_advice;
3193 1.41 mrg entry = entry->next;
3194 1.41 mrg }
3195 1.41 mrg
3196 1.41 mrg vm_map_unlock(map);
3197 1.41 mrg UVMHIST_LOG(maphist,"<- done (OK)",0,0,0,0);
3198 1.94 chs return 0;
3199 1.1 mrg }
3200 1.1 mrg
3201 1.1 mrg /*
3202 1.271 yamt * uvm_map_willneed: apply MADV_WILLNEED
3203 1.271 yamt */
3204 1.271 yamt
3205 1.271 yamt int
3206 1.271 yamt uvm_map_willneed(struct vm_map *map, vaddr_t start, vaddr_t end)
3207 1.271 yamt {
3208 1.271 yamt struct vm_map_entry *entry;
3209 1.271 yamt UVMHIST_FUNC("uvm_map_willneed"); UVMHIST_CALLED(maphist);
3210 1.271 yamt UVMHIST_LOG(maphist,"(map=0x%lx,start=0x%lx,end=0x%lx)",
3211 1.271 yamt map, start, end, 0);
3212 1.271 yamt
3213 1.271 yamt vm_map_lock_read(map);
3214 1.271 yamt VM_MAP_RANGE_CHECK(map, start, end);
3215 1.271 yamt if (!uvm_map_lookup_entry(map, start, &entry)) {
3216 1.271 yamt entry = entry->next;
3217 1.271 yamt }
3218 1.271 yamt while (entry->start < end) {
3219 1.271 yamt struct vm_amap * const amap = entry->aref.ar_amap;
3220 1.271 yamt struct uvm_object * const uobj = entry->object.uvm_obj;
3221 1.271 yamt
3222 1.271 yamt KASSERT(entry != &map->header);
3223 1.271 yamt KASSERT(start < entry->end);
3224 1.271 yamt /*
3225 1.296 yamt * For now, we handle only the easy but commonly-requested case.
3226 1.296 yamt * ie. start prefetching of backing uobj pages.
3227 1.271 yamt *
3228 1.296 yamt * XXX It might be useful to pmap_enter() the already-in-core
3229 1.296 yamt * pages by inventing a "weak" mode for uvm_fault() which would
3230 1.296 yamt * only do the PGO_LOCKED pgo_get().
3231 1.271 yamt */
3232 1.271 yamt if (UVM_ET_ISOBJ(entry) && amap == NULL && uobj != NULL) {
3233 1.271 yamt off_t offset;
3234 1.271 yamt off_t size;
3235 1.271 yamt
3236 1.271 yamt offset = entry->offset;
3237 1.271 yamt if (start < entry->start) {
3238 1.271 yamt offset += entry->start - start;
3239 1.271 yamt }
3240 1.271 yamt size = entry->offset + (entry->end - entry->start);
3241 1.271 yamt if (entry->end < end) {
3242 1.271 yamt size -= end - entry->end;
3243 1.271 yamt }
3244 1.271 yamt uvm_readahead(uobj, offset, size);
3245 1.271 yamt }
3246 1.271 yamt entry = entry->next;
3247 1.271 yamt }
3248 1.271 yamt vm_map_unlock_read(map);
3249 1.271 yamt UVMHIST_LOG(maphist,"<- done (OK)",0,0,0,0);
3250 1.271 yamt return 0;
3251 1.271 yamt }
3252 1.271 yamt
3253 1.271 yamt /*
3254 1.1 mrg * uvm_map_pageable: sets the pageability of a range in a map.
3255 1.1 mrg *
3256 1.56 thorpej * => wires map entries. should not be used for transient page locking.
3257 1.56 thorpej * for that, use uvm_fault_wire()/uvm_fault_unwire() (see uvm_vslock()).
3258 1.216 drochner * => regions specified as not pageable require lock-down (wired) memory
3259 1.1 mrg * and page tables.
3260 1.59 thorpej * => map must never be read-locked
3261 1.234 thorpej * => if islocked is true, map is already write-locked
3262 1.59 thorpej * => we always unlock the map, since we must downgrade to a read-lock
3263 1.59 thorpej * to call uvm_fault_wire()
3264 1.1 mrg * => XXXCDC: check this and try and clean it up.
3265 1.1 mrg */
3266 1.1 mrg
3267 1.19 kleink int
3268 1.138 enami uvm_map_pageable(struct vm_map *map, vaddr_t start, vaddr_t end,
3269 1.233 thorpej bool new_pageable, int lockflags)
3270 1.1 mrg {
3271 1.99 chs struct vm_map_entry *entry, *start_entry, *failed_entry;
3272 1.10 mrg int rv;
3273 1.60 thorpej #ifdef DIAGNOSTIC
3274 1.60 thorpej u_int timestamp_save;
3275 1.60 thorpej #endif
3276 1.10 mrg UVMHIST_FUNC("uvm_map_pageable"); UVMHIST_CALLED(maphist);
3277 1.10 mrg UVMHIST_LOG(maphist,"(map=0x%x,start=0x%x,end=0x%x,new_pageable=0x%x)",
3278 1.85 chs map, start, end, new_pageable);
3279 1.85 chs KASSERT(map->flags & VM_MAP_PAGEABLE);
3280 1.45 thorpej
3281 1.64 thorpej if ((lockflags & UVM_LK_ENTER) == 0)
3282 1.59 thorpej vm_map_lock(map);
3283 1.10 mrg VM_MAP_RANGE_CHECK(map, start, end);
3284 1.10 mrg
3285 1.98 chs /*
3286 1.10 mrg * only one pageability change may take place at one time, since
3287 1.10 mrg * uvm_fault_wire assumes it will be called only once for each
3288 1.10 mrg * wiring/unwiring. therefore, we have to make sure we're actually
3289 1.10 mrg * changing the pageability for the entire region. we do so before
3290 1.98 chs * making any changes.
3291 1.10 mrg */
3292 1.10 mrg
3293 1.234 thorpej if (uvm_map_lookup_entry(map, start, &start_entry) == false) {
3294 1.64 thorpej if ((lockflags & UVM_LK_EXIT) == 0)
3295 1.64 thorpej vm_map_unlock(map);
3296 1.85 chs
3297 1.94 chs UVMHIST_LOG(maphist,"<- done (fault)",0,0,0,0);
3298 1.94 chs return EFAULT;
3299 1.10 mrg }
3300 1.10 mrg entry = start_entry;
3301 1.10 mrg
3302 1.98 chs /*
3303 1.100 wiz * handle wiring and unwiring separately.
3304 1.10 mrg */
3305 1.1 mrg
3306 1.56 thorpej if (new_pageable) { /* unwire */
3307 1.311 para UVM_MAP_CLIP_START(map, entry, start);
3308 1.85 chs
3309 1.10 mrg /*
3310 1.10 mrg * unwiring. first ensure that the range to be unwired is
3311 1.98 chs * really wired down and that there are no holes.
3312 1.10 mrg */
3313 1.85 chs
3314 1.10 mrg while ((entry != &map->header) && (entry->start < end)) {
3315 1.10 mrg if (entry->wired_count == 0 ||
3316 1.10 mrg (entry->end < end &&
3317 1.55 thorpej (entry->next == &map->header ||
3318 1.55 thorpej entry->next->start > entry->end))) {
3319 1.64 thorpej if ((lockflags & UVM_LK_EXIT) == 0)
3320 1.64 thorpej vm_map_unlock(map);
3321 1.94 chs UVMHIST_LOG(maphist, "<- done (INVAL)",0,0,0,0);
3322 1.94 chs return EINVAL;
3323 1.10 mrg }
3324 1.10 mrg entry = entry->next;
3325 1.10 mrg }
3326 1.10 mrg
3327 1.98 chs /*
3328 1.56 thorpej * POSIX 1003.1b - a single munlock call unlocks a region,
3329 1.56 thorpej * regardless of the number of mlock calls made on that
3330 1.56 thorpej * region.
3331 1.10 mrg */
3332 1.85 chs
3333 1.10 mrg entry = start_entry;
3334 1.10 mrg while ((entry != &map->header) && (entry->start < end)) {
3335 1.311 para UVM_MAP_CLIP_END(map, entry, end);
3336 1.56 thorpej if (VM_MAPENT_ISWIRED(entry))
3337 1.10 mrg uvm_map_entry_unwire(map, entry);
3338 1.10 mrg entry = entry->next;
3339 1.10 mrg }
3340 1.64 thorpej if ((lockflags & UVM_LK_EXIT) == 0)
3341 1.64 thorpej vm_map_unlock(map);
3342 1.10 mrg UVMHIST_LOG(maphist,"<- done (OK UNWIRE)",0,0,0,0);
3343 1.94 chs return 0;
3344 1.10 mrg }
3345 1.10 mrg
3346 1.10 mrg /*
3347 1.10 mrg * wire case: in two passes [XXXCDC: ugly block of code here]
3348 1.10 mrg *
3349 1.10 mrg * 1: holding the write lock, we create any anonymous maps that need
3350 1.10 mrg * to be created. then we clip each map entry to the region to
3351 1.98 chs * be wired and increment its wiring count.
3352 1.10 mrg *
3353 1.10 mrg * 2: we downgrade to a read lock, and call uvm_fault_wire to fault
3354 1.56 thorpej * in the pages for any newly wired area (wired_count == 1).
3355 1.10 mrg *
3356 1.10 mrg * downgrading to a read lock for uvm_fault_wire avoids a possible
3357 1.10 mrg * deadlock with another thread that may have faulted on one of
3358 1.10 mrg * the pages to be wired (it would mark the page busy, blocking
3359 1.10 mrg * us, then in turn block on the map lock that we hold). because
3360 1.10 mrg * of problems in the recursive lock package, we cannot upgrade
3361 1.10 mrg * to a write lock in vm_map_lookup. thus, any actions that
3362 1.10 mrg * require the write lock must be done beforehand. because we
3363 1.10 mrg * keep the read lock on the map, the copy-on-write status of the
3364 1.10 mrg * entries we modify here cannot change.
3365 1.10 mrg */
3366 1.10 mrg
3367 1.10 mrg while ((entry != &map->header) && (entry->start < end)) {
3368 1.55 thorpej if (VM_MAPENT_ISWIRED(entry) == 0) { /* not already wired? */
3369 1.85 chs
3370 1.85 chs /*
3371 1.10 mrg * perform actions of vm_map_lookup that need the
3372 1.10 mrg * write lock on the map: create an anonymous map
3373 1.10 mrg * for a copy-on-write region, or an anonymous map
3374 1.29 chuck * for a zero-fill region. (XXXCDC: submap case
3375 1.29 chuck * ok?)
3376 1.10 mrg */
3377 1.85 chs
3378 1.29 chuck if (!UVM_ET_ISSUBMAP(entry)) { /* not submap */
3379 1.98 chs if (UVM_ET_ISNEEDSCOPY(entry) &&
3380 1.117 chs ((entry->max_protection & VM_PROT_WRITE) ||
3381 1.54 thorpej (entry->object.uvm_obj == NULL))) {
3382 1.212 yamt amap_copy(map, entry, 0, start, end);
3383 1.10 mrg /* XXXCDC: wait OK? */
3384 1.10 mrg }
3385 1.10 mrg }
3386 1.55 thorpej }
3387 1.311 para UVM_MAP_CLIP_START(map, entry, start);
3388 1.311 para UVM_MAP_CLIP_END(map, entry, end);
3389 1.10 mrg entry->wired_count++;
3390 1.10 mrg
3391 1.10 mrg /*
3392 1.98 chs * Check for holes
3393 1.10 mrg */
3394 1.85 chs
3395 1.54 thorpej if (entry->protection == VM_PROT_NONE ||
3396 1.54 thorpej (entry->end < end &&
3397 1.54 thorpej (entry->next == &map->header ||
3398 1.54 thorpej entry->next->start > entry->end))) {
3399 1.85 chs
3400 1.10 mrg /*
3401 1.10 mrg * found one. amap creation actions do not need to
3402 1.98 chs * be undone, but the wired counts need to be restored.
3403 1.10 mrg */
3404 1.85 chs
3405 1.10 mrg while (entry != &map->header && entry->end > start) {
3406 1.10 mrg entry->wired_count--;
3407 1.10 mrg entry = entry->prev;
3408 1.10 mrg }
3409 1.64 thorpej if ((lockflags & UVM_LK_EXIT) == 0)
3410 1.64 thorpej vm_map_unlock(map);
3411 1.10 mrg UVMHIST_LOG(maphist,"<- done (INVALID WIRE)",0,0,0,0);
3412 1.94 chs return EINVAL;
3413 1.10 mrg }
3414 1.10 mrg entry = entry->next;
3415 1.10 mrg }
3416 1.10 mrg
3417 1.10 mrg /*
3418 1.10 mrg * Pass 2.
3419 1.10 mrg */
3420 1.51 thorpej
3421 1.60 thorpej #ifdef DIAGNOSTIC
3422 1.60 thorpej timestamp_save = map->timestamp;
3423 1.60 thorpej #endif
3424 1.60 thorpej vm_map_busy(map);
3425 1.249 yamt vm_map_unlock(map);
3426 1.10 mrg
3427 1.10 mrg rv = 0;
3428 1.10 mrg entry = start_entry;
3429 1.10 mrg while (entry != &map->header && entry->start < end) {
3430 1.51 thorpej if (entry->wired_count == 1) {
3431 1.44 thorpej rv = uvm_fault_wire(map, entry->start, entry->end,
3432 1.216 drochner entry->max_protection, 1);
3433 1.10 mrg if (rv) {
3434 1.94 chs
3435 1.51 thorpej /*
3436 1.51 thorpej * wiring failed. break out of the loop.
3437 1.51 thorpej * we'll clean up the map below, once we
3438 1.51 thorpej * have a write lock again.
3439 1.51 thorpej */
3440 1.94 chs
3441 1.51 thorpej break;
3442 1.10 mrg }
3443 1.10 mrg }
3444 1.10 mrg entry = entry->next;
3445 1.10 mrg }
3446 1.10 mrg
3447 1.139 enami if (rv) { /* failed? */
3448 1.85 chs
3449 1.52 thorpej /*
3450 1.52 thorpej * Get back to an exclusive (write) lock.
3451 1.52 thorpej */
3452 1.85 chs
3453 1.249 yamt vm_map_lock(map);
3454 1.60 thorpej vm_map_unbusy(map);
3455 1.60 thorpej
3456 1.60 thorpej #ifdef DIAGNOSTIC
3457 1.252 yamt if (timestamp_save + 1 != map->timestamp)
3458 1.60 thorpej panic("uvm_map_pageable: stale map");
3459 1.60 thorpej #endif
3460 1.10 mrg
3461 1.51 thorpej /*
3462 1.51 thorpej * first drop the wiring count on all the entries
3463 1.51 thorpej * which haven't actually been wired yet.
3464 1.51 thorpej */
3465 1.85 chs
3466 1.54 thorpej failed_entry = entry;
3467 1.54 thorpej while (entry != &map->header && entry->start < end) {
3468 1.51 thorpej entry->wired_count--;
3469 1.54 thorpej entry = entry->next;
3470 1.54 thorpej }
3471 1.51 thorpej
3472 1.51 thorpej /*
3473 1.54 thorpej * now, unwire all the entries that were successfully
3474 1.54 thorpej * wired above.
3475 1.51 thorpej */
3476 1.85 chs
3477 1.54 thorpej entry = start_entry;
3478 1.54 thorpej while (entry != failed_entry) {
3479 1.54 thorpej entry->wired_count--;
3480 1.55 thorpej if (VM_MAPENT_ISWIRED(entry) == 0)
3481 1.54 thorpej uvm_map_entry_unwire(map, entry);
3482 1.54 thorpej entry = entry->next;
3483 1.54 thorpej }
3484 1.64 thorpej if ((lockflags & UVM_LK_EXIT) == 0)
3485 1.64 thorpej vm_map_unlock(map);
3486 1.10 mrg UVMHIST_LOG(maphist, "<- done (RV=%d)", rv,0,0,0);
3487 1.139 enami return (rv);
3488 1.10 mrg }
3489 1.51 thorpej
3490 1.64 thorpej if ((lockflags & UVM_LK_EXIT) == 0) {
3491 1.64 thorpej vm_map_unbusy(map);
3492 1.64 thorpej } else {
3493 1.85 chs
3494 1.64 thorpej /*
3495 1.64 thorpej * Get back to an exclusive (write) lock.
3496 1.64 thorpej */
3497 1.85 chs
3498 1.249 yamt vm_map_lock(map);
3499 1.64 thorpej vm_map_unbusy(map);
3500 1.64 thorpej }
3501 1.64 thorpej
3502 1.10 mrg UVMHIST_LOG(maphist,"<- done (OK WIRE)",0,0,0,0);
3503 1.94 chs return 0;
3504 1.1 mrg }
3505 1.1 mrg
3506 1.1 mrg /*
3507 1.54 thorpej * uvm_map_pageable_all: special case of uvm_map_pageable - affects
3508 1.54 thorpej * all mapped regions.
3509 1.54 thorpej *
3510 1.54 thorpej * => map must not be locked.
3511 1.54 thorpej * => if no flags are specified, all regions are unwired.
3512 1.54 thorpej * => XXXJRT: has some of the same problems as uvm_map_pageable() above.
3513 1.54 thorpej */
3514 1.54 thorpej
3515 1.54 thorpej int
3516 1.138 enami uvm_map_pageable_all(struct vm_map *map, int flags, vsize_t limit)
3517 1.54 thorpej {
3518 1.99 chs struct vm_map_entry *entry, *failed_entry;
3519 1.54 thorpej vsize_t size;
3520 1.54 thorpej int rv;
3521 1.60 thorpej #ifdef DIAGNOSTIC
3522 1.60 thorpej u_int timestamp_save;
3523 1.60 thorpej #endif
3524 1.54 thorpej UVMHIST_FUNC("uvm_map_pageable_all"); UVMHIST_CALLED(maphist);
3525 1.54 thorpej UVMHIST_LOG(maphist,"(map=0x%x,flags=0x%x)", map, flags, 0, 0);
3526 1.54 thorpej
3527 1.85 chs KASSERT(map->flags & VM_MAP_PAGEABLE);
3528 1.54 thorpej
3529 1.54 thorpej vm_map_lock(map);
3530 1.54 thorpej
3531 1.54 thorpej /*
3532 1.54 thorpej * handle wiring and unwiring separately.
3533 1.54 thorpej */
3534 1.54 thorpej
3535 1.54 thorpej if (flags == 0) { /* unwire */
3536 1.99 chs
3537 1.54 thorpej /*
3538 1.56 thorpej * POSIX 1003.1b -- munlockall unlocks all regions,
3539 1.56 thorpej * regardless of how many times mlockall has been called.
3540 1.54 thorpej */
3541 1.99 chs
3542 1.54 thorpej for (entry = map->header.next; entry != &map->header;
3543 1.54 thorpej entry = entry->next) {
3544 1.56 thorpej if (VM_MAPENT_ISWIRED(entry))
3545 1.56 thorpej uvm_map_entry_unwire(map, entry);
3546 1.54 thorpej }
3547 1.238 ad map->flags &= ~VM_MAP_WIREFUTURE;
3548 1.54 thorpej vm_map_unlock(map);
3549 1.54 thorpej UVMHIST_LOG(maphist,"<- done (OK UNWIRE)",0,0,0,0);
3550 1.94 chs return 0;
3551 1.54 thorpej }
3552 1.54 thorpej
3553 1.54 thorpej if (flags & MCL_FUTURE) {
3554 1.99 chs
3555 1.54 thorpej /*
3556 1.54 thorpej * must wire all future mappings; remember this.
3557 1.54 thorpej */
3558 1.99 chs
3559 1.238 ad map->flags |= VM_MAP_WIREFUTURE;
3560 1.54 thorpej }
3561 1.54 thorpej
3562 1.54 thorpej if ((flags & MCL_CURRENT) == 0) {
3563 1.99 chs
3564 1.54 thorpej /*
3565 1.54 thorpej * no more work to do!
3566 1.54 thorpej */
3567 1.99 chs
3568 1.54 thorpej UVMHIST_LOG(maphist,"<- done (OK no wire)",0,0,0,0);
3569 1.54 thorpej vm_map_unlock(map);
3570 1.94 chs return 0;
3571 1.54 thorpej }
3572 1.54 thorpej
3573 1.54 thorpej /*
3574 1.54 thorpej * wire case: in three passes [XXXCDC: ugly block of code here]
3575 1.54 thorpej *
3576 1.54 thorpej * 1: holding the write lock, count all pages mapped by non-wired
3577 1.54 thorpej * entries. if this would cause us to go over our limit, we fail.
3578 1.54 thorpej *
3579 1.54 thorpej * 2: still holding the write lock, we create any anonymous maps that
3580 1.54 thorpej * need to be created. then we increment its wiring count.
3581 1.54 thorpej *
3582 1.54 thorpej * 3: we downgrade to a read lock, and call uvm_fault_wire to fault
3583 1.56 thorpej * in the pages for any newly wired area (wired_count == 1).
3584 1.54 thorpej *
3585 1.54 thorpej * downgrading to a read lock for uvm_fault_wire avoids a possible
3586 1.54 thorpej * deadlock with another thread that may have faulted on one of
3587 1.54 thorpej * the pages to be wired (it would mark the page busy, blocking
3588 1.54 thorpej * us, then in turn block on the map lock that we hold). because
3589 1.54 thorpej * of problems in the recursive lock package, we cannot upgrade
3590 1.54 thorpej * to a write lock in vm_map_lookup. thus, any actions that
3591 1.54 thorpej * require the write lock must be done beforehand. because we
3592 1.54 thorpej * keep the read lock on the map, the copy-on-write status of the
3593 1.54 thorpej * entries we modify here cannot change.
3594 1.54 thorpej */
3595 1.54 thorpej
3596 1.54 thorpej for (size = 0, entry = map->header.next; entry != &map->header;
3597 1.54 thorpej entry = entry->next) {
3598 1.54 thorpej if (entry->protection != VM_PROT_NONE &&
3599 1.55 thorpej VM_MAPENT_ISWIRED(entry) == 0) { /* not already wired? */
3600 1.54 thorpej size += entry->end - entry->start;
3601 1.54 thorpej }
3602 1.54 thorpej }
3603 1.54 thorpej
3604 1.54 thorpej if (atop(size) + uvmexp.wired > uvmexp.wiredmax) {
3605 1.54 thorpej vm_map_unlock(map);
3606 1.94 chs return ENOMEM;
3607 1.54 thorpej }
3608 1.54 thorpej
3609 1.54 thorpej if (limit != 0 &&
3610 1.54 thorpej (size + ptoa(pmap_wired_count(vm_map_pmap(map))) > limit)) {
3611 1.54 thorpej vm_map_unlock(map);
3612 1.94 chs return ENOMEM;
3613 1.54 thorpej }
3614 1.54 thorpej
3615 1.54 thorpej /*
3616 1.54 thorpej * Pass 2.
3617 1.54 thorpej */
3618 1.54 thorpej
3619 1.54 thorpej for (entry = map->header.next; entry != &map->header;
3620 1.54 thorpej entry = entry->next) {
3621 1.54 thorpej if (entry->protection == VM_PROT_NONE)
3622 1.54 thorpej continue;
3623 1.55 thorpej if (VM_MAPENT_ISWIRED(entry) == 0) { /* not already wired? */
3624 1.99 chs
3625 1.54 thorpej /*
3626 1.54 thorpej * perform actions of vm_map_lookup that need the
3627 1.54 thorpej * write lock on the map: create an anonymous map
3628 1.54 thorpej * for a copy-on-write region, or an anonymous map
3629 1.54 thorpej * for a zero-fill region. (XXXCDC: submap case
3630 1.54 thorpej * ok?)
3631 1.54 thorpej */
3632 1.99 chs
3633 1.54 thorpej if (!UVM_ET_ISSUBMAP(entry)) { /* not submap */
3634 1.98 chs if (UVM_ET_ISNEEDSCOPY(entry) &&
3635 1.117 chs ((entry->max_protection & VM_PROT_WRITE) ||
3636 1.54 thorpej (entry->object.uvm_obj == NULL))) {
3637 1.212 yamt amap_copy(map, entry, 0, entry->start,
3638 1.212 yamt entry->end);
3639 1.54 thorpej /* XXXCDC: wait OK? */
3640 1.54 thorpej }
3641 1.54 thorpej }
3642 1.55 thorpej }
3643 1.54 thorpej entry->wired_count++;
3644 1.54 thorpej }
3645 1.54 thorpej
3646 1.54 thorpej /*
3647 1.54 thorpej * Pass 3.
3648 1.54 thorpej */
3649 1.54 thorpej
3650 1.60 thorpej #ifdef DIAGNOSTIC
3651 1.60 thorpej timestamp_save = map->timestamp;
3652 1.60 thorpej #endif
3653 1.60 thorpej vm_map_busy(map);
3654 1.249 yamt vm_map_unlock(map);
3655 1.54 thorpej
3656 1.94 chs rv = 0;
3657 1.54 thorpej for (entry = map->header.next; entry != &map->header;
3658 1.54 thorpej entry = entry->next) {
3659 1.54 thorpej if (entry->wired_count == 1) {
3660 1.54 thorpej rv = uvm_fault_wire(map, entry->start, entry->end,
3661 1.216 drochner entry->max_protection, 1);
3662 1.54 thorpej if (rv) {
3663 1.99 chs
3664 1.54 thorpej /*
3665 1.54 thorpej * wiring failed. break out of the loop.
3666 1.54 thorpej * we'll clean up the map below, once we
3667 1.54 thorpej * have a write lock again.
3668 1.54 thorpej */
3669 1.99 chs
3670 1.54 thorpej break;
3671 1.54 thorpej }
3672 1.54 thorpej }
3673 1.54 thorpej }
3674 1.54 thorpej
3675 1.99 chs if (rv) {
3676 1.99 chs
3677 1.54 thorpej /*
3678 1.54 thorpej * Get back an exclusive (write) lock.
3679 1.54 thorpej */
3680 1.99 chs
3681 1.249 yamt vm_map_lock(map);
3682 1.60 thorpej vm_map_unbusy(map);
3683 1.60 thorpej
3684 1.60 thorpej #ifdef DIAGNOSTIC
3685 1.252 yamt if (timestamp_save + 1 != map->timestamp)
3686 1.60 thorpej panic("uvm_map_pageable_all: stale map");
3687 1.60 thorpej #endif
3688 1.54 thorpej
3689 1.54 thorpej /*
3690 1.54 thorpej * first drop the wiring count on all the entries
3691 1.54 thorpej * which haven't actually been wired yet.
3692 1.67 thorpej *
3693 1.67 thorpej * Skip VM_PROT_NONE entries like we did above.
3694 1.54 thorpej */
3695 1.99 chs
3696 1.54 thorpej failed_entry = entry;
3697 1.54 thorpej for (/* nothing */; entry != &map->header;
3698 1.67 thorpej entry = entry->next) {
3699 1.67 thorpej if (entry->protection == VM_PROT_NONE)
3700 1.67 thorpej continue;
3701 1.54 thorpej entry->wired_count--;
3702 1.67 thorpej }
3703 1.54 thorpej
3704 1.54 thorpej /*
3705 1.54 thorpej * now, unwire all the entries that were successfully
3706 1.54 thorpej * wired above.
3707 1.67 thorpej *
3708 1.67 thorpej * Skip VM_PROT_NONE entries like we did above.
3709 1.54 thorpej */
3710 1.99 chs
3711 1.54 thorpej for (entry = map->header.next; entry != failed_entry;
3712 1.54 thorpej entry = entry->next) {
3713 1.67 thorpej if (entry->protection == VM_PROT_NONE)
3714 1.67 thorpej continue;
3715 1.54 thorpej entry->wired_count--;
3716 1.67 thorpej if (VM_MAPENT_ISWIRED(entry))
3717 1.54 thorpej uvm_map_entry_unwire(map, entry);
3718 1.54 thorpej }
3719 1.54 thorpej vm_map_unlock(map);
3720 1.54 thorpej UVMHIST_LOG(maphist,"<- done (RV=%d)", rv,0,0,0);
3721 1.54 thorpej return (rv);
3722 1.54 thorpej }
3723 1.54 thorpej
3724 1.60 thorpej vm_map_unbusy(map);
3725 1.54 thorpej
3726 1.54 thorpej UVMHIST_LOG(maphist,"<- done (OK WIRE)",0,0,0,0);
3727 1.94 chs return 0;
3728 1.54 thorpej }
3729 1.54 thorpej
3730 1.54 thorpej /*
3731 1.61 thorpej * uvm_map_clean: clean out a map range
3732 1.1 mrg *
3733 1.1 mrg * => valid flags:
3734 1.61 thorpej * if (flags & PGO_CLEANIT): dirty pages are cleaned first
3735 1.1 mrg * if (flags & PGO_SYNCIO): dirty pages are written synchronously
3736 1.1 mrg * if (flags & PGO_DEACTIVATE): any cached pages are deactivated after clean
3737 1.1 mrg * if (flags & PGO_FREE): any cached pages are freed after clean
3738 1.1 mrg * => returns an error if any part of the specified range isn't mapped
3739 1.98 chs * => never a need to flush amap layer since the anonymous memory has
3740 1.61 thorpej * no permanent home, but may deactivate pages there
3741 1.61 thorpej * => called from sys_msync() and sys_madvise()
3742 1.1 mrg * => caller must not write-lock map (read OK).
3743 1.1 mrg * => we may sleep while cleaning if SYNCIO [with map read-locked]
3744 1.1 mrg */
3745 1.1 mrg
3746 1.10 mrg int
3747 1.138 enami uvm_map_clean(struct vm_map *map, vaddr_t start, vaddr_t end, int flags)
3748 1.10 mrg {
3749 1.99 chs struct vm_map_entry *current, *entry;
3750 1.61 thorpej struct uvm_object *uobj;
3751 1.61 thorpej struct vm_amap *amap;
3752 1.298 rmind struct vm_anon *anon, *anon_tofree;
3753 1.61 thorpej struct vm_page *pg;
3754 1.61 thorpej vaddr_t offset;
3755 1.24 eeh vsize_t size;
3756 1.188 dbj voff_t uoff;
3757 1.106 chs int error, refs;
3758 1.10 mrg UVMHIST_FUNC("uvm_map_clean"); UVMHIST_CALLED(maphist);
3759 1.85 chs
3760 1.10 mrg UVMHIST_LOG(maphist,"(map=0x%x,start=0x%x,end=0x%x,flags=0x%x)",
3761 1.85 chs map, start, end, flags);
3762 1.85 chs KASSERT((flags & (PGO_FREE|PGO_DEACTIVATE)) !=
3763 1.85 chs (PGO_FREE|PGO_DEACTIVATE));
3764 1.61 thorpej
3765 1.10 mrg vm_map_lock_read(map);
3766 1.10 mrg VM_MAP_RANGE_CHECK(map, start, end);
3767 1.234 thorpej if (uvm_map_lookup_entry(map, start, &entry) == false) {
3768 1.10 mrg vm_map_unlock_read(map);
3769 1.94 chs return EFAULT;
3770 1.10 mrg }
3771 1.10 mrg
3772 1.10 mrg /*
3773 1.186 chs * Make a first pass to check for holes and wiring problems.
3774 1.10 mrg */
3775 1.85 chs
3776 1.10 mrg for (current = entry; current->start < end; current = current->next) {
3777 1.10 mrg if (UVM_ET_ISSUBMAP(current)) {
3778 1.10 mrg vm_map_unlock_read(map);
3779 1.94 chs return EINVAL;
3780 1.10 mrg }
3781 1.186 chs if ((flags & PGO_FREE) != 0 && VM_MAPENT_ISWIRED(entry)) {
3782 1.186 chs vm_map_unlock_read(map);
3783 1.186 chs return EBUSY;
3784 1.186 chs }
3785 1.90 chs if (end <= current->end) {
3786 1.90 chs break;
3787 1.90 chs }
3788 1.90 chs if (current->end != current->next->start) {
3789 1.10 mrg vm_map_unlock_read(map);
3790 1.94 chs return EFAULT;
3791 1.10 mrg }
3792 1.10 mrg }
3793 1.10 mrg
3794 1.94 chs error = 0;
3795 1.90 chs for (current = entry; start < end; current = current->next) {
3796 1.283 uebayasi amap = current->aref.ar_amap; /* upper layer */
3797 1.283 uebayasi uobj = current->object.uvm_obj; /* lower layer */
3798 1.85 chs KASSERT(start >= current->start);
3799 1.1 mrg
3800 1.10 mrg /*
3801 1.61 thorpej * No amap cleaning necessary if:
3802 1.61 thorpej *
3803 1.61 thorpej * (1) There's no amap.
3804 1.61 thorpej *
3805 1.61 thorpej * (2) We're not deactivating or freeing pages.
3806 1.10 mrg */
3807 1.85 chs
3808 1.90 chs if (amap == NULL || (flags & (PGO_DEACTIVATE|PGO_FREE)) == 0)
3809 1.61 thorpej goto flush_object;
3810 1.61 thorpej
3811 1.61 thorpej offset = start - current->start;
3812 1.90 chs size = MIN(end, current->end) - start;
3813 1.303 rmind anon_tofree = NULL;
3814 1.303 rmind
3815 1.303 rmind amap_lock(amap);
3816 1.90 chs for ( ; size != 0; size -= PAGE_SIZE, offset += PAGE_SIZE) {
3817 1.61 thorpej anon = amap_lookup(¤t->aref, offset);
3818 1.61 thorpej if (anon == NULL)
3819 1.61 thorpej continue;
3820 1.61 thorpej
3821 1.298 rmind KASSERT(anon->an_lock == amap->am_lock);
3822 1.192 yamt pg = anon->an_page;
3823 1.63 thorpej if (pg == NULL) {
3824 1.63 thorpej continue;
3825 1.63 thorpej }
3826 1.63 thorpej
3827 1.61 thorpej switch (flags & (PGO_CLEANIT|PGO_FREE|PGO_DEACTIVATE)) {
3828 1.85 chs
3829 1.61 thorpej /*
3830 1.115 chs * In these first 3 cases, we just deactivate the page.
3831 1.61 thorpej */
3832 1.85 chs
3833 1.61 thorpej case PGO_CLEANIT|PGO_FREE:
3834 1.61 thorpej case PGO_CLEANIT|PGO_DEACTIVATE:
3835 1.61 thorpej case PGO_DEACTIVATE:
3836 1.68 thorpej deactivate_it:
3837 1.61 thorpej /*
3838 1.115 chs * skip the page if it's loaned or wired,
3839 1.115 chs * since it shouldn't be on a paging queue
3840 1.115 chs * at all in these cases.
3841 1.61 thorpej */
3842 1.85 chs
3843 1.248 ad mutex_enter(&uvm_pageqlock);
3844 1.115 chs if (pg->loan_count != 0 ||
3845 1.115 chs pg->wire_count != 0) {
3846 1.248 ad mutex_exit(&uvm_pageqlock);
3847 1.61 thorpej continue;
3848 1.61 thorpej }
3849 1.85 chs KASSERT(pg->uanon == anon);
3850 1.61 thorpej uvm_pagedeactivate(pg);
3851 1.248 ad mutex_exit(&uvm_pageqlock);
3852 1.61 thorpej continue;
3853 1.61 thorpej
3854 1.61 thorpej case PGO_FREE:
3855 1.85 chs
3856 1.68 thorpej /*
3857 1.68 thorpej * If there are multiple references to
3858 1.68 thorpej * the amap, just deactivate the page.
3859 1.68 thorpej */
3860 1.85 chs
3861 1.68 thorpej if (amap_refs(amap) > 1)
3862 1.68 thorpej goto deactivate_it;
3863 1.68 thorpej
3864 1.115 chs /* skip the page if it's wired */
3865 1.62 thorpej if (pg->wire_count != 0) {
3866 1.62 thorpej continue;
3867 1.62 thorpej }
3868 1.66 thorpej amap_unadd(¤t->aref, offset);
3869 1.61 thorpej refs = --anon->an_ref;
3870 1.298 rmind if (refs == 0) {
3871 1.298 rmind anon->an_link = anon_tofree;
3872 1.298 rmind anon_tofree = anon;
3873 1.298 rmind }
3874 1.61 thorpej continue;
3875 1.61 thorpej }
3876 1.61 thorpej }
3877 1.303 rmind uvm_anon_freelst(amap, anon_tofree);
3878 1.1 mrg
3879 1.61 thorpej flush_object:
3880 1.10 mrg /*
3881 1.33 chuck * flush pages if we've got a valid backing object.
3882 1.116 chs * note that we must always clean object pages before
3883 1.116 chs * freeing them since otherwise we could reveal stale
3884 1.116 chs * data from files.
3885 1.10 mrg */
3886 1.1 mrg
3887 1.188 dbj uoff = current->offset + (start - current->start);
3888 1.90 chs size = MIN(end, current->end) - start;
3889 1.61 thorpej if (uobj != NULL) {
3890 1.298 rmind mutex_enter(uobj->vmobjlock);
3891 1.136 thorpej if (uobj->pgops->pgo_put != NULL)
3892 1.188 dbj error = (uobj->pgops->pgo_put)(uobj, uoff,
3893 1.188 dbj uoff + size, flags | PGO_CLEANIT);
3894 1.136 thorpej else
3895 1.136 thorpej error = 0;
3896 1.10 mrg }
3897 1.10 mrg start += size;
3898 1.10 mrg }
3899 1.1 mrg vm_map_unlock_read(map);
3900 1.98 chs return (error);
3901 1.1 mrg }
3902 1.1 mrg
3903 1.1 mrg
3904 1.1 mrg /*
3905 1.1 mrg * uvm_map_checkprot: check protection in map
3906 1.1 mrg *
3907 1.1 mrg * => must allow specified protection in a fully allocated region.
3908 1.1 mrg * => map must be read or write locked by caller.
3909 1.1 mrg */
3910 1.1 mrg
3911 1.233 thorpej bool
3912 1.138 enami uvm_map_checkprot(struct vm_map *map, vaddr_t start, vaddr_t end,
3913 1.138 enami vm_prot_t protection)
3914 1.10 mrg {
3915 1.99 chs struct vm_map_entry *entry;
3916 1.99 chs struct vm_map_entry *tmp_entry;
3917 1.10 mrg
3918 1.94 chs if (!uvm_map_lookup_entry(map, start, &tmp_entry)) {
3919 1.234 thorpej return (false);
3920 1.94 chs }
3921 1.94 chs entry = tmp_entry;
3922 1.94 chs while (start < end) {
3923 1.94 chs if (entry == &map->header) {
3924 1.234 thorpej return (false);
3925 1.94 chs }
3926 1.85 chs
3927 1.10 mrg /*
3928 1.10 mrg * no holes allowed
3929 1.10 mrg */
3930 1.10 mrg
3931 1.94 chs if (start < entry->start) {
3932 1.234 thorpej return (false);
3933 1.94 chs }
3934 1.10 mrg
3935 1.10 mrg /*
3936 1.10 mrg * check protection associated with entry
3937 1.10 mrg */
3938 1.1 mrg
3939 1.94 chs if ((entry->protection & protection) != protection) {
3940 1.234 thorpej return (false);
3941 1.94 chs }
3942 1.94 chs start = entry->end;
3943 1.94 chs entry = entry->next;
3944 1.94 chs }
3945 1.234 thorpej return (true);
3946 1.1 mrg }
3947 1.1 mrg
3948 1.1 mrg /*
3949 1.1 mrg * uvmspace_alloc: allocate a vmspace structure.
3950 1.1 mrg *
3951 1.1 mrg * - structure includes vm_map and pmap
3952 1.1 mrg * - XXX: no locking on this structure
3953 1.1 mrg * - refcnt set to 1, rest must be init'd by caller
3954 1.1 mrg */
3955 1.10 mrg struct vmspace *
3956 1.199 christos uvmspace_alloc(vaddr_t vmin, vaddr_t vmax)
3957 1.10 mrg {
3958 1.10 mrg struct vmspace *vm;
3959 1.10 mrg UVMHIST_FUNC("uvmspace_alloc"); UVMHIST_CALLED(maphist);
3960 1.10 mrg
3961 1.248 ad vm = pool_cache_get(&uvm_vmspace_cache, PR_WAITOK);
3962 1.199 christos uvmspace_init(vm, NULL, vmin, vmax);
3963 1.15 thorpej UVMHIST_LOG(maphist,"<- done (vm=0x%x)", vm,0,0,0);
3964 1.15 thorpej return (vm);
3965 1.15 thorpej }
3966 1.15 thorpej
3967 1.15 thorpej /*
3968 1.15 thorpej * uvmspace_init: initialize a vmspace structure.
3969 1.15 thorpej *
3970 1.15 thorpej * - XXX: no locking on this structure
3971 1.132 matt * - refcnt set to 1, rest must be init'd by caller
3972 1.15 thorpej */
3973 1.15 thorpej void
3974 1.199 christos uvmspace_init(struct vmspace *vm, struct pmap *pmap, vaddr_t vmin, vaddr_t vmax)
3975 1.15 thorpej {
3976 1.15 thorpej UVMHIST_FUNC("uvmspace_init"); UVMHIST_CALLED(maphist);
3977 1.15 thorpej
3978 1.23 perry memset(vm, 0, sizeof(*vm));
3979 1.199 christos uvm_map_setup(&vm->vm_map, vmin, vmax, VM_MAP_PAGEABLE
3980 1.131 atatat #ifdef __USING_TOPDOWN_VM
3981 1.131 atatat | VM_MAP_TOPDOWN
3982 1.131 atatat #endif
3983 1.131 atatat );
3984 1.15 thorpej if (pmap)
3985 1.15 thorpej pmap_reference(pmap);
3986 1.15 thorpej else
3987 1.15 thorpej pmap = pmap_create();
3988 1.15 thorpej vm->vm_map.pmap = pmap;
3989 1.10 mrg vm->vm_refcnt = 1;
3990 1.15 thorpej UVMHIST_LOG(maphist,"<- done",0,0,0,0);
3991 1.1 mrg }
3992 1.1 mrg
3993 1.1 mrg /*
3994 1.168 junyoung * uvmspace_share: share a vmspace between two processes
3995 1.1 mrg *
3996 1.1 mrg * - used for vfork, threads(?)
3997 1.1 mrg */
3998 1.1 mrg
3999 1.10 mrg void
4000 1.138 enami uvmspace_share(struct proc *p1, struct proc *p2)
4001 1.1 mrg {
4002 1.139 enami
4003 1.215 yamt uvmspace_addref(p1->p_vmspace);
4004 1.10 mrg p2->p_vmspace = p1->p_vmspace;
4005 1.1 mrg }
4006 1.1 mrg
4007 1.282 rmind #if 0
4008 1.282 rmind
4009 1.1 mrg /*
4010 1.1 mrg * uvmspace_unshare: ensure that process "p" has its own, unshared, vmspace
4011 1.1 mrg *
4012 1.1 mrg * - XXX: no locking on vmspace
4013 1.1 mrg */
4014 1.1 mrg
4015 1.10 mrg void
4016 1.138 enami uvmspace_unshare(struct lwp *l)
4017 1.10 mrg {
4018 1.128 thorpej struct proc *p = l->l_proc;
4019 1.10 mrg struct vmspace *nvm, *ovm = p->p_vmspace;
4020 1.85 chs
4021 1.10 mrg if (ovm->vm_refcnt == 1)
4022 1.10 mrg /* nothing to do: vmspace isn't shared in the first place */
4023 1.10 mrg return;
4024 1.85 chs
4025 1.10 mrg /* make a new vmspace, still holding old one */
4026 1.10 mrg nvm = uvmspace_fork(ovm);
4027 1.10 mrg
4028 1.254 ad kpreempt_disable();
4029 1.128 thorpej pmap_deactivate(l); /* unbind old vmspace */
4030 1.98 chs p->p_vmspace = nvm;
4031 1.128 thorpej pmap_activate(l); /* switch to new vmspace */
4032 1.254 ad kpreempt_enable();
4033 1.13 thorpej
4034 1.10 mrg uvmspace_free(ovm); /* drop reference to old vmspace */
4035 1.1 mrg }
4036 1.1 mrg
4037 1.282 rmind #endif
4038 1.282 rmind
4039 1.1 mrg /*
4040 1.1 mrg * uvmspace_exec: the process wants to exec a new program
4041 1.1 mrg */
4042 1.1 mrg
4043 1.10 mrg void
4044 1.138 enami uvmspace_exec(struct lwp *l, vaddr_t start, vaddr_t end)
4045 1.1 mrg {
4046 1.128 thorpej struct proc *p = l->l_proc;
4047 1.10 mrg struct vmspace *nvm, *ovm = p->p_vmspace;
4048 1.302 martin struct vm_map *map;
4049 1.1 mrg
4050 1.294 matt #ifdef __HAVE_CPU_VMSPACE_EXEC
4051 1.294 matt cpu_vmspace_exec(l, start, end);
4052 1.294 matt #endif
4053 1.1 mrg
4054 1.10 mrg /*
4055 1.302 martin * Special case: no vmspace yet (see posix_spawn) -
4056 1.302 martin * no races possible in this case.
4057 1.302 martin */
4058 1.302 martin if (ovm == NULL) {
4059 1.302 martin p->p_vmspace = uvmspace_alloc(start, end);
4060 1.302 martin pmap_activate(l);
4061 1.302 martin return;
4062 1.302 martin }
4063 1.302 martin
4064 1.302 martin map = &ovm->vm_map;
4065 1.302 martin /*
4066 1.10 mrg * see if more than one process is using this vmspace...
4067 1.10 mrg */
4068 1.1 mrg
4069 1.10 mrg if (ovm->vm_refcnt == 1) {
4070 1.1 mrg
4071 1.10 mrg /*
4072 1.10 mrg * if p is the only process using its vmspace then we can safely
4073 1.10 mrg * recycle that vmspace for the program that is being exec'd.
4074 1.10 mrg */
4075 1.1 mrg
4076 1.1 mrg #ifdef SYSVSHM
4077 1.10 mrg /*
4078 1.10 mrg * SYSV SHM semantics require us to kill all segments on an exec
4079 1.10 mrg */
4080 1.99 chs
4081 1.10 mrg if (ovm->vm_shm)
4082 1.10 mrg shmexit(ovm);
4083 1.10 mrg #endif
4084 1.54 thorpej
4085 1.54 thorpej /*
4086 1.54 thorpej * POSIX 1003.1b -- "lock future mappings" is revoked
4087 1.54 thorpej * when a process execs another program image.
4088 1.54 thorpej */
4089 1.99 chs
4090 1.238 ad map->flags &= ~VM_MAP_WIREFUTURE;
4091 1.10 mrg
4092 1.10 mrg /*
4093 1.10 mrg * now unmap the old program
4094 1.10 mrg */
4095 1.99 chs
4096 1.120 chs pmap_remove_all(map->pmap);
4097 1.184 chs uvm_unmap(map, vm_map_min(map), vm_map_max(map));
4098 1.144 yamt KASSERT(map->header.prev == &map->header);
4099 1.144 yamt KASSERT(map->nentries == 0);
4100 1.93 eeh
4101 1.93 eeh /*
4102 1.93 eeh * resize the map
4103 1.93 eeh */
4104 1.99 chs
4105 1.184 chs vm_map_setmin(map, start);
4106 1.184 chs vm_map_setmax(map, end);
4107 1.10 mrg } else {
4108 1.10 mrg
4109 1.10 mrg /*
4110 1.10 mrg * p's vmspace is being shared, so we can't reuse it for p since
4111 1.10 mrg * it is still being used for others. allocate a new vmspace
4112 1.10 mrg * for p
4113 1.10 mrg */
4114 1.99 chs
4115 1.101 chs nvm = uvmspace_alloc(start, end);
4116 1.1 mrg
4117 1.10 mrg /*
4118 1.10 mrg * install new vmspace and drop our ref to the old one.
4119 1.10 mrg */
4120 1.10 mrg
4121 1.254 ad kpreempt_disable();
4122 1.128 thorpej pmap_deactivate(l);
4123 1.10 mrg p->p_vmspace = nvm;
4124 1.128 thorpej pmap_activate(l);
4125 1.254 ad kpreempt_enable();
4126 1.13 thorpej
4127 1.10 mrg uvmspace_free(ovm);
4128 1.10 mrg }
4129 1.1 mrg }
4130 1.1 mrg
4131 1.1 mrg /*
4132 1.215 yamt * uvmspace_addref: add a referece to a vmspace.
4133 1.215 yamt */
4134 1.215 yamt
4135 1.215 yamt void
4136 1.215 yamt uvmspace_addref(struct vmspace *vm)
4137 1.215 yamt {
4138 1.215 yamt struct vm_map *map = &vm->vm_map;
4139 1.215 yamt
4140 1.215 yamt KASSERT((map->flags & VM_MAP_DYING) == 0);
4141 1.215 yamt
4142 1.238 ad mutex_enter(&map->misc_lock);
4143 1.215 yamt KASSERT(vm->vm_refcnt > 0);
4144 1.215 yamt vm->vm_refcnt++;
4145 1.238 ad mutex_exit(&map->misc_lock);
4146 1.215 yamt }
4147 1.215 yamt
4148 1.215 yamt /*
4149 1.1 mrg * uvmspace_free: free a vmspace data structure
4150 1.1 mrg */
4151 1.1 mrg
4152 1.10 mrg void
4153 1.138 enami uvmspace_free(struct vmspace *vm)
4154 1.1 mrg {
4155 1.99 chs struct vm_map_entry *dead_entries;
4156 1.171 pk struct vm_map *map = &vm->vm_map;
4157 1.172 he int n;
4158 1.172 he
4159 1.10 mrg UVMHIST_FUNC("uvmspace_free"); UVMHIST_CALLED(maphist);
4160 1.1 mrg
4161 1.10 mrg UVMHIST_LOG(maphist,"(vm=0x%x) ref=%d", vm, vm->vm_refcnt,0,0);
4162 1.238 ad mutex_enter(&map->misc_lock);
4163 1.172 he n = --vm->vm_refcnt;
4164 1.238 ad mutex_exit(&map->misc_lock);
4165 1.171 pk if (n > 0)
4166 1.120 chs return;
4167 1.99 chs
4168 1.120 chs /*
4169 1.120 chs * at this point, there should be no other references to the map.
4170 1.120 chs * delete all of the mappings, then destroy the pmap.
4171 1.120 chs */
4172 1.99 chs
4173 1.120 chs map->flags |= VM_MAP_DYING;
4174 1.120 chs pmap_remove_all(map->pmap);
4175 1.92 thorpej #ifdef SYSVSHM
4176 1.120 chs /* Get rid of any SYSV shared memory segments. */
4177 1.120 chs if (vm->vm_shm != NULL)
4178 1.120 chs shmexit(vm);
4179 1.92 thorpej #endif
4180 1.120 chs if (map->nentries) {
4181 1.184 chs uvm_unmap_remove(map, vm_map_min(map), vm_map_max(map),
4182 1.311 para &dead_entries, 0);
4183 1.120 chs if (dead_entries != NULL)
4184 1.120 chs uvm_unmap_detach(dead_entries, 0);
4185 1.10 mrg }
4186 1.146 yamt KASSERT(map->nentries == 0);
4187 1.146 yamt KASSERT(map->size == 0);
4188 1.239 ad mutex_destroy(&map->misc_lock);
4189 1.239 ad mutex_destroy(&map->mutex);
4190 1.239 ad rw_destroy(&map->lock);
4191 1.255 ad cv_destroy(&map->cv);
4192 1.120 chs pmap_destroy(map->pmap);
4193 1.248 ad pool_cache_put(&uvm_vmspace_cache, vm);
4194 1.1 mrg }
4195 1.1 mrg
4196 1.1 mrg /*
4197 1.1 mrg * F O R K - m a i n e n t r y p o i n t
4198 1.1 mrg */
4199 1.1 mrg /*
4200 1.1 mrg * uvmspace_fork: fork a process' main map
4201 1.1 mrg *
4202 1.1 mrg * => create a new vmspace for child process from parent.
4203 1.1 mrg * => parent's map must not be locked.
4204 1.1 mrg */
4205 1.1 mrg
4206 1.10 mrg struct vmspace *
4207 1.138 enami uvmspace_fork(struct vmspace *vm1)
4208 1.10 mrg {
4209 1.10 mrg struct vmspace *vm2;
4210 1.99 chs struct vm_map *old_map = &vm1->vm_map;
4211 1.99 chs struct vm_map *new_map;
4212 1.99 chs struct vm_map_entry *old_entry;
4213 1.99 chs struct vm_map_entry *new_entry;
4214 1.10 mrg UVMHIST_FUNC("uvmspace_fork"); UVMHIST_CALLED(maphist);
4215 1.1 mrg
4216 1.10 mrg vm_map_lock(old_map);
4217 1.1 mrg
4218 1.184 chs vm2 = uvmspace_alloc(vm_map_min(old_map), vm_map_max(old_map));
4219 1.23 perry memcpy(&vm2->vm_startcopy, &vm1->vm_startcopy,
4220 1.235 christos (char *) (vm1 + 1) - (char *) &vm1->vm_startcopy);
4221 1.10 mrg new_map = &vm2->vm_map; /* XXX */
4222 1.10 mrg
4223 1.10 mrg old_entry = old_map->header.next;
4224 1.162 pooka new_map->size = old_map->size;
4225 1.10 mrg
4226 1.10 mrg /*
4227 1.10 mrg * go entry-by-entry
4228 1.10 mrg */
4229 1.1 mrg
4230 1.10 mrg while (old_entry != &old_map->header) {
4231 1.1 mrg
4232 1.10 mrg /*
4233 1.10 mrg * first, some sanity checks on the old entry
4234 1.10 mrg */
4235 1.99 chs
4236 1.94 chs KASSERT(!UVM_ET_ISSUBMAP(old_entry));
4237 1.94 chs KASSERT(UVM_ET_ISCOPYONWRITE(old_entry) ||
4238 1.94 chs !UVM_ET_ISNEEDSCOPY(old_entry));
4239 1.1 mrg
4240 1.10 mrg switch (old_entry->inheritance) {
4241 1.80 wiz case MAP_INHERIT_NONE:
4242 1.99 chs
4243 1.10 mrg /*
4244 1.162 pooka * drop the mapping, modify size
4245 1.10 mrg */
4246 1.162 pooka new_map->size -= old_entry->end - old_entry->start;
4247 1.10 mrg break;
4248 1.10 mrg
4249 1.80 wiz case MAP_INHERIT_SHARE:
4250 1.99 chs
4251 1.10 mrg /*
4252 1.10 mrg * share the mapping: this means we want the old and
4253 1.10 mrg * new entries to share amaps and backing objects.
4254 1.10 mrg */
4255 1.10 mrg /*
4256 1.10 mrg * if the old_entry needs a new amap (due to prev fork)
4257 1.10 mrg * then we need to allocate it now so that we have
4258 1.10 mrg * something we own to share with the new_entry. [in
4259 1.10 mrg * other words, we need to clear needs_copy]
4260 1.10 mrg */
4261 1.10 mrg
4262 1.10 mrg if (UVM_ET_ISNEEDSCOPY(old_entry)) {
4263 1.10 mrg /* get our own amap, clears needs_copy */
4264 1.212 yamt amap_copy(old_map, old_entry, AMAP_COPY_NOCHUNK,
4265 1.98 chs 0, 0);
4266 1.10 mrg /* XXXCDC: WAITOK??? */
4267 1.10 mrg }
4268 1.10 mrg
4269 1.126 bouyer new_entry = uvm_mapent_alloc(new_map, 0);
4270 1.10 mrg /* old_entry -> new_entry */
4271 1.10 mrg uvm_mapent_copy(old_entry, new_entry);
4272 1.10 mrg
4273 1.10 mrg /* new pmap has nothing wired in it */
4274 1.10 mrg new_entry->wired_count = 0;
4275 1.10 mrg
4276 1.10 mrg /*
4277 1.29 chuck * gain reference to object backing the map (can't
4278 1.29 chuck * be a submap, already checked this case).
4279 1.10 mrg */
4280 1.99 chs
4281 1.10 mrg if (new_entry->aref.ar_amap)
4282 1.85 chs uvm_map_reference_amap(new_entry, AMAP_SHARED);
4283 1.10 mrg
4284 1.10 mrg if (new_entry->object.uvm_obj &&
4285 1.10 mrg new_entry->object.uvm_obj->pgops->pgo_reference)
4286 1.10 mrg new_entry->object.uvm_obj->
4287 1.10 mrg pgops->pgo_reference(
4288 1.10 mrg new_entry->object.uvm_obj);
4289 1.10 mrg
4290 1.10 mrg /* insert entry at end of new_map's entry list */
4291 1.10 mrg uvm_map_entry_link(new_map, new_map->header.prev,
4292 1.10 mrg new_entry);
4293 1.10 mrg
4294 1.10 mrg break;
4295 1.10 mrg
4296 1.80 wiz case MAP_INHERIT_COPY:
4297 1.10 mrg
4298 1.10 mrg /*
4299 1.10 mrg * copy-on-write the mapping (using mmap's
4300 1.10 mrg * MAP_PRIVATE semantics)
4301 1.29 chuck *
4302 1.98 chs * allocate new_entry, adjust reference counts.
4303 1.29 chuck * (note that new references are read-only).
4304 1.10 mrg */
4305 1.10 mrg
4306 1.126 bouyer new_entry = uvm_mapent_alloc(new_map, 0);
4307 1.10 mrg /* old_entry -> new_entry */
4308 1.10 mrg uvm_mapent_copy(old_entry, new_entry);
4309 1.10 mrg
4310 1.10 mrg if (new_entry->aref.ar_amap)
4311 1.85 chs uvm_map_reference_amap(new_entry, 0);
4312 1.10 mrg
4313 1.10 mrg if (new_entry->object.uvm_obj &&
4314 1.10 mrg new_entry->object.uvm_obj->pgops->pgo_reference)
4315 1.10 mrg new_entry->object.uvm_obj->pgops->pgo_reference
4316 1.10 mrg (new_entry->object.uvm_obj);
4317 1.10 mrg
4318 1.10 mrg /* new pmap has nothing wired in it */
4319 1.10 mrg new_entry->wired_count = 0;
4320 1.10 mrg
4321 1.10 mrg new_entry->etype |=
4322 1.10 mrg (UVM_ET_COPYONWRITE|UVM_ET_NEEDSCOPY);
4323 1.10 mrg uvm_map_entry_link(new_map, new_map->header.prev,
4324 1.10 mrg new_entry);
4325 1.85 chs
4326 1.14 chuck /*
4327 1.10 mrg * the new entry will need an amap. it will either
4328 1.10 mrg * need to be copied from the old entry or created
4329 1.14 chuck * from scratch (if the old entry does not have an
4330 1.14 chuck * amap). can we defer this process until later
4331 1.14 chuck * (by setting "needs_copy") or do we need to copy
4332 1.14 chuck * the amap now?
4333 1.10 mrg *
4334 1.14 chuck * we must copy the amap now if any of the following
4335 1.10 mrg * conditions hold:
4336 1.14 chuck * 1. the old entry has an amap and that amap is
4337 1.14 chuck * being shared. this means that the old (parent)
4338 1.98 chs * process is sharing the amap with another
4339 1.14 chuck * process. if we do not clear needs_copy here
4340 1.14 chuck * we will end up in a situation where both the
4341 1.14 chuck * parent and child process are refering to the
4342 1.98 chs * same amap with "needs_copy" set. if the
4343 1.14 chuck * parent write-faults, the fault routine will
4344 1.14 chuck * clear "needs_copy" in the parent by allocating
4345 1.98 chs * a new amap. this is wrong because the
4346 1.14 chuck * parent is supposed to be sharing the old amap
4347 1.14 chuck * and the new amap will break that.
4348 1.10 mrg *
4349 1.14 chuck * 2. if the old entry has an amap and a non-zero
4350 1.14 chuck * wire count then we are going to have to call
4351 1.98 chs * amap_cow_now to avoid page faults in the
4352 1.14 chuck * parent process. since amap_cow_now requires
4353 1.14 chuck * "needs_copy" to be clear we might as well
4354 1.14 chuck * clear it here as well.
4355 1.10 mrg *
4356 1.10 mrg */
4357 1.10 mrg
4358 1.14 chuck if (old_entry->aref.ar_amap != NULL) {
4359 1.99 chs if ((amap_flags(old_entry->aref.ar_amap) &
4360 1.99 chs AMAP_SHARED) != 0 ||
4361 1.99 chs VM_MAPENT_ISWIRED(old_entry)) {
4362 1.99 chs
4363 1.212 yamt amap_copy(new_map, new_entry,
4364 1.212 yamt AMAP_COPY_NOCHUNK, 0, 0);
4365 1.99 chs /* XXXCDC: M_WAITOK ... ok? */
4366 1.99 chs }
4367 1.10 mrg }
4368 1.85 chs
4369 1.10 mrg /*
4370 1.14 chuck * if the parent's entry is wired down, then the
4371 1.14 chuck * parent process does not want page faults on
4372 1.14 chuck * access to that memory. this means that we
4373 1.14 chuck * cannot do copy-on-write because we can't write
4374 1.14 chuck * protect the old entry. in this case we
4375 1.14 chuck * resolve all copy-on-write faults now, using
4376 1.14 chuck * amap_cow_now. note that we have already
4377 1.14 chuck * allocated any needed amap (above).
4378 1.10 mrg */
4379 1.10 mrg
4380 1.55 thorpej if (VM_MAPENT_ISWIRED(old_entry)) {
4381 1.1 mrg
4382 1.98 chs /*
4383 1.14 chuck * resolve all copy-on-write faults now
4384 1.98 chs * (note that there is nothing to do if
4385 1.14 chuck * the old mapping does not have an amap).
4386 1.14 chuck */
4387 1.14 chuck if (old_entry->aref.ar_amap)
4388 1.14 chuck amap_cow_now(new_map, new_entry);
4389 1.14 chuck
4390 1.98 chs } else {
4391 1.14 chuck
4392 1.14 chuck /*
4393 1.14 chuck * setup mappings to trigger copy-on-write faults
4394 1.14 chuck * we must write-protect the parent if it has
4395 1.14 chuck * an amap and it is not already "needs_copy"...
4396 1.14 chuck * if it is already "needs_copy" then the parent
4397 1.14 chuck * has already been write-protected by a previous
4398 1.14 chuck * fork operation.
4399 1.14 chuck */
4400 1.14 chuck
4401 1.113 chs if (old_entry->aref.ar_amap &&
4402 1.113 chs !UVM_ET_ISNEEDSCOPY(old_entry)) {
4403 1.14 chuck if (old_entry->max_protection & VM_PROT_WRITE) {
4404 1.14 chuck pmap_protect(old_map->pmap,
4405 1.14 chuck old_entry->start,
4406 1.14 chuck old_entry->end,
4407 1.14 chuck old_entry->protection &
4408 1.14 chuck ~VM_PROT_WRITE);
4409 1.14 chuck }
4410 1.14 chuck old_entry->etype |= UVM_ET_NEEDSCOPY;
4411 1.14 chuck }
4412 1.10 mrg }
4413 1.10 mrg break;
4414 1.14 chuck } /* end of switch statement */
4415 1.10 mrg old_entry = old_entry->next;
4416 1.1 mrg }
4417 1.1 mrg
4418 1.268 ad pmap_update(old_map->pmap);
4419 1.98 chs vm_map_unlock(old_map);
4420 1.1 mrg
4421 1.1 mrg #ifdef SYSVSHM
4422 1.10 mrg if (vm1->vm_shm)
4423 1.10 mrg shmfork(vm1, vm2);
4424 1.39 thorpej #endif
4425 1.39 thorpej
4426 1.39 thorpej #ifdef PMAP_FORK
4427 1.39 thorpej pmap_fork(vm1->vm_map.pmap, vm2->vm_map.pmap);
4428 1.1 mrg #endif
4429 1.1 mrg
4430 1.10 mrg UVMHIST_LOG(maphist,"<- done",0,0,0,0);
4431 1.139 enami return (vm2);
4432 1.1 mrg }
4433 1.1 mrg
4434 1.1 mrg
4435 1.174 yamt /*
4436 1.194 yamt * uvm_mapent_trymerge: try to merge an entry with its neighbors.
4437 1.194 yamt *
4438 1.194 yamt * => called with map locked.
4439 1.194 yamt * => return non zero if successfully merged.
4440 1.194 yamt */
4441 1.194 yamt
4442 1.194 yamt int
4443 1.194 yamt uvm_mapent_trymerge(struct vm_map *map, struct vm_map_entry *entry, int flags)
4444 1.194 yamt {
4445 1.194 yamt struct uvm_object *uobj;
4446 1.194 yamt struct vm_map_entry *next;
4447 1.194 yamt struct vm_map_entry *prev;
4448 1.195 yamt vsize_t size;
4449 1.194 yamt int merged = 0;
4450 1.233 thorpej bool copying;
4451 1.194 yamt int newetype;
4452 1.194 yamt
4453 1.194 yamt if (entry->aref.ar_amap != NULL) {
4454 1.194 yamt return 0;
4455 1.194 yamt }
4456 1.194 yamt if ((entry->flags & UVM_MAP_NOMERGE) != 0) {
4457 1.194 yamt return 0;
4458 1.194 yamt }
4459 1.194 yamt
4460 1.194 yamt uobj = entry->object.uvm_obj;
4461 1.195 yamt size = entry->end - entry->start;
4462 1.194 yamt copying = (flags & UVM_MERGE_COPYING) != 0;
4463 1.194 yamt newetype = copying ? (entry->etype & ~UVM_ET_NEEDSCOPY) : entry->etype;
4464 1.194 yamt
4465 1.194 yamt next = entry->next;
4466 1.194 yamt if (next != &map->header &&
4467 1.194 yamt next->start == entry->end &&
4468 1.194 yamt ((copying && next->aref.ar_amap != NULL &&
4469 1.194 yamt amap_refs(next->aref.ar_amap) == 1) ||
4470 1.194 yamt (!copying && next->aref.ar_amap == NULL)) &&
4471 1.194 yamt UVM_ET_ISCOMPATIBLE(next, newetype,
4472 1.194 yamt uobj, entry->flags, entry->protection,
4473 1.194 yamt entry->max_protection, entry->inheritance, entry->advice,
4474 1.195 yamt entry->wired_count) &&
4475 1.195 yamt (uobj == NULL || entry->offset + size == next->offset)) {
4476 1.194 yamt int error;
4477 1.194 yamt
4478 1.194 yamt if (copying) {
4479 1.195 yamt error = amap_extend(next, size,
4480 1.194 yamt AMAP_EXTEND_NOWAIT|AMAP_EXTEND_BACKWARDS);
4481 1.194 yamt } else {
4482 1.194 yamt error = 0;
4483 1.194 yamt }
4484 1.194 yamt if (error == 0) {
4485 1.197 yamt if (uobj) {
4486 1.197 yamt if (uobj->pgops->pgo_detach) {
4487 1.197 yamt uobj->pgops->pgo_detach(uobj);
4488 1.197 yamt }
4489 1.194 yamt }
4490 1.194 yamt
4491 1.194 yamt entry->end = next->end;
4492 1.221 yamt clear_hints(map, next);
4493 1.194 yamt uvm_map_entry_unlink(map, next);
4494 1.194 yamt if (copying) {
4495 1.194 yamt entry->aref = next->aref;
4496 1.194 yamt entry->etype &= ~UVM_ET_NEEDSCOPY;
4497 1.194 yamt }
4498 1.222 yamt uvm_map_check(map, "trymerge forwardmerge");
4499 1.311 para uvm_mapent_free(next);
4500 1.194 yamt merged++;
4501 1.194 yamt }
4502 1.194 yamt }
4503 1.194 yamt
4504 1.194 yamt prev = entry->prev;
4505 1.194 yamt if (prev != &map->header &&
4506 1.194 yamt prev->end == entry->start &&
4507 1.194 yamt ((copying && !merged && prev->aref.ar_amap != NULL &&
4508 1.194 yamt amap_refs(prev->aref.ar_amap) == 1) ||
4509 1.194 yamt (!copying && prev->aref.ar_amap == NULL)) &&
4510 1.194 yamt UVM_ET_ISCOMPATIBLE(prev, newetype,
4511 1.194 yamt uobj, entry->flags, entry->protection,
4512 1.194 yamt entry->max_protection, entry->inheritance, entry->advice,
4513 1.195 yamt entry->wired_count) &&
4514 1.196 yamt (uobj == NULL ||
4515 1.196 yamt prev->offset + prev->end - prev->start == entry->offset)) {
4516 1.194 yamt int error;
4517 1.194 yamt
4518 1.194 yamt if (copying) {
4519 1.195 yamt error = amap_extend(prev, size,
4520 1.194 yamt AMAP_EXTEND_NOWAIT|AMAP_EXTEND_FORWARDS);
4521 1.194 yamt } else {
4522 1.194 yamt error = 0;
4523 1.194 yamt }
4524 1.194 yamt if (error == 0) {
4525 1.197 yamt if (uobj) {
4526 1.197 yamt if (uobj->pgops->pgo_detach) {
4527 1.197 yamt uobj->pgops->pgo_detach(uobj);
4528 1.197 yamt }
4529 1.197 yamt entry->offset = prev->offset;
4530 1.194 yamt }
4531 1.194 yamt
4532 1.194 yamt entry->start = prev->start;
4533 1.221 yamt clear_hints(map, prev);
4534 1.194 yamt uvm_map_entry_unlink(map, prev);
4535 1.194 yamt if (copying) {
4536 1.194 yamt entry->aref = prev->aref;
4537 1.194 yamt entry->etype &= ~UVM_ET_NEEDSCOPY;
4538 1.194 yamt }
4539 1.222 yamt uvm_map_check(map, "trymerge backmerge");
4540 1.311 para uvm_mapent_free(prev);
4541 1.194 yamt merged++;
4542 1.194 yamt }
4543 1.194 yamt }
4544 1.194 yamt
4545 1.194 yamt return merged;
4546 1.194 yamt }
4547 1.194 yamt
4548 1.211 yamt /*
4549 1.211 yamt * uvm_map_setup: init map
4550 1.211 yamt *
4551 1.211 yamt * => map must not be in service yet.
4552 1.211 yamt */
4553 1.211 yamt
4554 1.211 yamt void
4555 1.211 yamt uvm_map_setup(struct vm_map *map, vaddr_t vmin, vaddr_t vmax, int flags)
4556 1.211 yamt {
4557 1.238 ad int ipl;
4558 1.211 yamt
4559 1.263 matt rb_tree_init(&map->rb_tree, &uvm_map_tree_ops);
4560 1.211 yamt map->header.next = map->header.prev = &map->header;
4561 1.211 yamt map->nentries = 0;
4562 1.211 yamt map->size = 0;
4563 1.211 yamt map->ref_count = 1;
4564 1.211 yamt vm_map_setmin(map, vmin);
4565 1.211 yamt vm_map_setmax(map, vmax);
4566 1.211 yamt map->flags = flags;
4567 1.211 yamt map->first_free = &map->header;
4568 1.211 yamt map->hint = &map->header;
4569 1.211 yamt map->timestamp = 0;
4570 1.238 ad map->busy = NULL;
4571 1.238 ad
4572 1.238 ad if ((flags & VM_MAP_INTRSAFE) != 0) {
4573 1.238 ad ipl = IPL_VM;
4574 1.238 ad } else {
4575 1.238 ad ipl = IPL_NONE;
4576 1.238 ad }
4577 1.238 ad
4578 1.240 ad rw_init(&map->lock);
4579 1.238 ad cv_init(&map->cv, "vm_map");
4580 1.238 ad mutex_init(&map->misc_lock, MUTEX_DRIVER, ipl);
4581 1.238 ad mutex_init(&map->mutex, MUTEX_DRIVER, ipl);
4582 1.211 yamt }
4583 1.211 yamt
4584 1.211 yamt
4585 1.211 yamt /*
4586 1.211 yamt * U N M A P - m a i n e n t r y p o i n t
4587 1.211 yamt */
4588 1.211 yamt
4589 1.211 yamt /*
4590 1.211 yamt * uvm_unmap1: remove mappings from a vm_map (from "start" up to "stop")
4591 1.211 yamt *
4592 1.211 yamt * => caller must check alignment and size
4593 1.211 yamt * => map must be unlocked (we will lock it)
4594 1.211 yamt * => flags is UVM_FLAG_QUANTUM or 0.
4595 1.211 yamt */
4596 1.211 yamt
4597 1.211 yamt void
4598 1.211 yamt uvm_unmap1(struct vm_map *map, vaddr_t start, vaddr_t end, int flags)
4599 1.211 yamt {
4600 1.211 yamt struct vm_map_entry *dead_entries;
4601 1.211 yamt UVMHIST_FUNC("uvm_unmap"); UVMHIST_CALLED(maphist);
4602 1.211 yamt
4603 1.211 yamt UVMHIST_LOG(maphist, " (map=0x%x, start=0x%x, end=0x%x)",
4604 1.211 yamt map, start, end, 0);
4605 1.246 xtraeme if (map == kernel_map) {
4606 1.244 yamt LOCKDEBUG_MEM_CHECK((void *)start, end - start);
4607 1.246 xtraeme }
4608 1.211 yamt /*
4609 1.211 yamt * work now done by helper functions. wipe the pmap's and then
4610 1.211 yamt * detach from the dead entries...
4611 1.211 yamt */
4612 1.211 yamt vm_map_lock(map);
4613 1.311 para uvm_unmap_remove(map, start, end, &dead_entries, flags);
4614 1.211 yamt vm_map_unlock(map);
4615 1.211 yamt
4616 1.211 yamt if (dead_entries != NULL)
4617 1.211 yamt uvm_unmap_detach(dead_entries, 0);
4618 1.211 yamt
4619 1.211 yamt UVMHIST_LOG(maphist, "<- done", 0,0,0,0);
4620 1.211 yamt }
4621 1.211 yamt
4622 1.211 yamt
4623 1.211 yamt /*
4624 1.211 yamt * uvm_map_reference: add reference to a map
4625 1.211 yamt *
4626 1.238 ad * => map need not be locked (we use misc_lock).
4627 1.211 yamt */
4628 1.211 yamt
4629 1.211 yamt void
4630 1.211 yamt uvm_map_reference(struct vm_map *map)
4631 1.211 yamt {
4632 1.238 ad mutex_enter(&map->misc_lock);
4633 1.211 yamt map->ref_count++;
4634 1.238 ad mutex_exit(&map->misc_lock);
4635 1.211 yamt }
4636 1.211 yamt
4637 1.233 thorpej bool
4638 1.226 yamt vm_map_starved_p(struct vm_map *map)
4639 1.226 yamt {
4640 1.226 yamt
4641 1.226 yamt if ((map->flags & VM_MAP_WANTVA) != 0) {
4642 1.234 thorpej return true;
4643 1.226 yamt }
4644 1.226 yamt /* XXX */
4645 1.226 yamt if ((vm_map_max(map) - vm_map_min(map)) / 16 * 15 < map->size) {
4646 1.234 thorpej return true;
4647 1.226 yamt }
4648 1.234 thorpej return false;
4649 1.226 yamt }
4650 1.247 yamt
4651 1.298 rmind void
4652 1.298 rmind uvm_map_lock_entry(struct vm_map_entry *entry)
4653 1.298 rmind {
4654 1.298 rmind
4655 1.299 rmind if (entry->aref.ar_amap != NULL) {
4656 1.299 rmind amap_lock(entry->aref.ar_amap);
4657 1.299 rmind }
4658 1.298 rmind if (UVM_ET_ISOBJ(entry)) {
4659 1.298 rmind mutex_enter(entry->object.uvm_obj->vmobjlock);
4660 1.298 rmind }
4661 1.298 rmind }
4662 1.298 rmind
4663 1.298 rmind void
4664 1.298 rmind uvm_map_unlock_entry(struct vm_map_entry *entry)
4665 1.298 rmind {
4666 1.298 rmind
4667 1.299 rmind if (UVM_ET_ISOBJ(entry)) {
4668 1.299 rmind mutex_exit(entry->object.uvm_obj->vmobjlock);
4669 1.299 rmind }
4670 1.298 rmind if (entry->aref.ar_amap != NULL) {
4671 1.298 rmind amap_unlock(entry->aref.ar_amap);
4672 1.298 rmind }
4673 1.298 rmind }
4674 1.298 rmind
4675 1.270 pooka #if defined(DDB) || defined(DEBUGPRINT)
4676 1.280 thorpej
4677 1.280 thorpej /*
4678 1.280 thorpej * uvm_map_printit: actually prints the map
4679 1.280 thorpej */
4680 1.280 thorpej
4681 1.280 thorpej void
4682 1.280 thorpej uvm_map_printit(struct vm_map *map, bool full,
4683 1.280 thorpej void (*pr)(const char *, ...))
4684 1.280 thorpej {
4685 1.280 thorpej struct vm_map_entry *entry;
4686 1.280 thorpej
4687 1.280 thorpej (*pr)("MAP %p: [0x%lx->0x%lx]\n", map, vm_map_min(map),
4688 1.280 thorpej vm_map_max(map));
4689 1.280 thorpej (*pr)("\t#ent=%d, sz=%d, ref=%d, version=%d, flags=0x%x\n",
4690 1.280 thorpej map->nentries, map->size, map->ref_count, map->timestamp,
4691 1.280 thorpej map->flags);
4692 1.280 thorpej (*pr)("\tpmap=%p(resident=%ld, wired=%ld)\n", map->pmap,
4693 1.280 thorpej pmap_resident_count(map->pmap), pmap_wired_count(map->pmap));
4694 1.280 thorpej if (!full)
4695 1.280 thorpej return;
4696 1.280 thorpej for (entry = map->header.next; entry != &map->header;
4697 1.280 thorpej entry = entry->next) {
4698 1.280 thorpej (*pr)(" - %p: 0x%lx->0x%lx: obj=%p/0x%llx, amap=%p/%d\n",
4699 1.280 thorpej entry, entry->start, entry->end, entry->object.uvm_obj,
4700 1.280 thorpej (long long)entry->offset, entry->aref.ar_amap,
4701 1.280 thorpej entry->aref.ar_pageoff);
4702 1.280 thorpej (*pr)(
4703 1.280 thorpej "\tsubmap=%c, cow=%c, nc=%c, prot(max)=%d/%d, inh=%d, "
4704 1.280 thorpej "wc=%d, adv=%d\n",
4705 1.280 thorpej (entry->etype & UVM_ET_SUBMAP) ? 'T' : 'F',
4706 1.280 thorpej (entry->etype & UVM_ET_COPYONWRITE) ? 'T' : 'F',
4707 1.280 thorpej (entry->etype & UVM_ET_NEEDSCOPY) ? 'T' : 'F',
4708 1.280 thorpej entry->protection, entry->max_protection,
4709 1.280 thorpej entry->inheritance, entry->wired_count, entry->advice);
4710 1.280 thorpej }
4711 1.280 thorpej }
4712 1.280 thorpej
4713 1.247 yamt void
4714 1.247 yamt uvm_whatis(uintptr_t addr, void (*pr)(const char *, ...))
4715 1.247 yamt {
4716 1.247 yamt struct vm_map *map;
4717 1.247 yamt
4718 1.247 yamt for (map = kernel_map;;) {
4719 1.247 yamt struct vm_map_entry *entry;
4720 1.247 yamt
4721 1.247 yamt if (!uvm_map_lookup_entry_bytree(map, (vaddr_t)addr, &entry)) {
4722 1.247 yamt break;
4723 1.247 yamt }
4724 1.247 yamt (*pr)("%p is %p+%zu from VMMAP %p\n",
4725 1.247 yamt (void *)addr, (void *)entry->start,
4726 1.247 yamt (size_t)(addr - (uintptr_t)entry->start), map);
4727 1.247 yamt if (!UVM_ET_ISSUBMAP(entry)) {
4728 1.247 yamt break;
4729 1.247 yamt }
4730 1.247 yamt map = entry->object.sub_map;
4731 1.247 yamt }
4732 1.247 yamt }
4733 1.280 thorpej
4734 1.280 thorpej #endif /* DDB || DEBUGPRINT */
4735 1.288 drochner
4736 1.288 drochner #ifndef __USER_VA0_IS_SAFE
4737 1.288 drochner static int
4738 1.290 drochner sysctl_user_va0_disable(SYSCTLFN_ARGS)
4739 1.288 drochner {
4740 1.288 drochner struct sysctlnode node;
4741 1.288 drochner int t, error;
4742 1.288 drochner
4743 1.288 drochner node = *rnode;
4744 1.288 drochner node.sysctl_data = &t;
4745 1.290 drochner t = user_va0_disable;
4746 1.288 drochner error = sysctl_lookup(SYSCTLFN_CALL(&node));
4747 1.288 drochner if (error || newp == NULL)
4748 1.288 drochner return (error);
4749 1.288 drochner
4750 1.288 drochner /* lower only at securelevel < 1 */
4751 1.290 drochner if (!t && user_va0_disable &&
4752 1.288 drochner kauth_authorize_system(l->l_cred,
4753 1.288 drochner KAUTH_SYSTEM_CHSYSFLAGS /* XXX */, 0,
4754 1.288 drochner NULL, NULL, NULL))
4755 1.288 drochner return EPERM;
4756 1.288 drochner
4757 1.290 drochner user_va0_disable = !!t;
4758 1.288 drochner return 0;
4759 1.288 drochner }
4760 1.288 drochner
4761 1.288 drochner SYSCTL_SETUP(sysctl_uvmmap_setup, "sysctl uvmmap setup")
4762 1.288 drochner {
4763 1.288 drochner
4764 1.288 drochner sysctl_createv(clog, 0, NULL, NULL,
4765 1.288 drochner CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
4766 1.289 drochner CTLTYPE_INT, "user_va0_disable",
4767 1.288 drochner SYSCTL_DESCR("Disable VA 0"),
4768 1.290 drochner sysctl_user_va0_disable, 0, &user_va0_disable, 0,
4769 1.288 drochner CTL_VM, CTL_CREATE, CTL_EOL);
4770 1.288 drochner }
4771 1.288 drochner #endif
4772