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