Home | History | Annotate | Line # | Download | only in uvm
uvm_map.h revision 1.28
      1 /*	$NetBSD: uvm_map.h,v 1.28 2001/06/02 18:09:27 chs 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. All advertising materials mentioning features or use of this software
     21  *    must display the following acknowledgement:
     22  *	This product includes software developed by Charles D. Cranor,
     23  *      Washington University, the University of California, Berkeley and
     24  *      its contributors.
     25  * 4. Neither the name of the University nor the names of its contributors
     26  *    may be used to endorse or promote products derived from this software
     27  *    without specific prior written permission.
     28  *
     29  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39  * SUCH DAMAGE.
     40  *
     41  *	@(#)vm_map.h    8.3 (Berkeley) 3/15/94
     42  * from: Id: uvm_map.h,v 1.1.2.3 1998/02/07 01:16:55 chs Exp
     43  *
     44  *
     45  * Copyright (c) 1987, 1990 Carnegie-Mellon University.
     46  * All rights reserved.
     47  *
     48  * Permission to use, copy, modify and distribute this software and
     49  * its documentation is hereby granted, provided that both the copyright
     50  * notice and this permission notice appear in all copies of the
     51  * software, derivative works or modified versions, and any portions
     52  * thereof, and that both notices appear in supporting documentation.
     53  *
     54  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     55  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     56  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     57  *
     58  * Carnegie Mellon requests users of this software to return to
     59  *
     60  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     61  *  School of Computer Science
     62  *  Carnegie Mellon University
     63  *  Pittsburgh PA 15213-3890
     64  *
     65  * any improvements or extensions that they make and grant Carnegie the
     66  * rights to redistribute these changes.
     67  */
     68 
     69 #ifndef _UVM_UVM_MAP_H_
     70 #define _UVM_UVM_MAP_H_
     71 
     72 /*
     73  * uvm_map.h
     74  */
     75 
     76 #ifdef _KERNEL
     77 
     78 /*
     79  * macros
     80  */
     81 
     82 /*
     83  * UVM_MAP_CLIP_START: ensure that the entry begins at or after
     84  * the starting address, if it doesn't we split the entry.
     85  *
     86  * => map must be locked by caller
     87  */
     88 
     89 #define UVM_MAP_CLIP_START(MAP,ENTRY,VA) { \
     90 	if ((VA) > (ENTRY)->start) uvm_map_clip_start(MAP,ENTRY,VA); }
     91 
     92 /*
     93  * UVM_MAP_CLIP_END: ensure that the entry ends at or before
     94  *      the ending address, if it does't we split the entry.
     95  *
     96  * => map must be locked by caller
     97  */
     98 
     99 #define UVM_MAP_CLIP_END(MAP,ENTRY,VA) { \
    100 	if ((VA) < (ENTRY)->end) uvm_map_clip_end(MAP,ENTRY,VA); }
    101 
    102 /*
    103  * extract flags
    104  */
    105 #define UVM_EXTRACT_REMOVE	0x1	/* remove mapping from old map */
    106 #define UVM_EXTRACT_CONTIG	0x2	/* try to keep it contig */
    107 #define UVM_EXTRACT_QREF	0x4	/* use quick refs */
    108 #define UVM_EXTRACT_FIXPROT	0x8	/* set prot to maxprot as we go */
    109 
    110 #endif /* _KERNEL */
    111 
    112 #include <uvm/uvm_anon.h>
    113 
    114 /*
    115  * Address map entries consist of start and end addresses,
    116  * a VM object (or sharing map) and offset into that object,
    117  * and user-exported inheritance and protection information.
    118  * Also included is control information for virtual copy operations.
    119  */
    120 struct vm_map_entry {
    121 	struct vm_map_entry	*prev;		/* previous entry */
    122 	struct vm_map_entry	*next;		/* next entry */
    123 	vaddr_t			start;		/* start address */
    124 	vaddr_t			end;		/* end address */
    125 	union {
    126 		struct uvm_object *uvm_obj;	/* uvm object */
    127 		struct vm_map	*sub_map;	/* belongs to another map */
    128 	} object;				/* object I point to */
    129 	voff_t			offset;		/* offset into object */
    130 	int			etype;		/* entry type */
    131 	vm_prot_t		protection;	/* protection code */
    132 	vm_prot_t		max_protection;	/* maximum protection */
    133 	vm_inherit_t		inheritance;	/* inheritance */
    134 	int			wired_count;	/* can be paged if == 0 */
    135 	struct vm_aref		aref;		/* anonymous overlay */
    136 	int			advice;		/* madvise advice */
    137 #define uvm_map_entry_stop_copy flags
    138 	u_int8_t		flags;		/* flags */
    139 
    140 #define UVM_MAP_STATIC		0x01		/* static map entry */
    141 
    142 };
    143 
    144 #define	VM_MAPENT_ISWIRED(entry)	((entry)->wired_count != 0)
    145 
    146 /*
    147  *	Maps are doubly-linked lists of map entries, kept sorted
    148  *	by address.  A single hint is provided to start
    149  *	searches again from the last successful search,
    150  *	insertion, or removal.
    151  *
    152  *	LOCKING PROTOCOL NOTES:
    153  *	-----------------------
    154  *
    155  *	VM map locking is a little complicated.  There are both shared
    156  *	and exclusive locks on maps.  However, it is sometimes required
    157  *	to downgrade an exclusive lock to a shared lock, and upgrade to
    158  *	an exclusive lock again (to perform error recovery).  However,
    159  *	another thread *must not* queue itself to receive an exclusive
    160  *	lock while before we upgrade back to exclusive, otherwise the
    161  *	error recovery becomes extremely difficult, if not impossible.
    162  *
    163  *	In order to prevent this scenario, we introduce the notion of
    164  *	a `busy' map.  A `busy' map is read-locked, but other threads
    165  *	attempting to write-lock wait for this flag to clear before
    166  *	entering the lock manager.  A map may only be marked busy
    167  *	when the map is write-locked (and then the map must be downgraded
    168  *	to read-locked), and may only be marked unbusy by the thread
    169  *	which marked it busy (holding *either* a read-lock or a
    170  *	write-lock, the latter being gained by an upgrade).
    171  *
    172  *	Access to the map `flags' member is controlled by the `flags_lock'
    173  *	simple lock.  Note that some flags are static (set once at map
    174  *	creation time, and never changed), and thus require no locking
    175  *	to check those flags.  All flags which are r/w must be set or
    176  *	cleared while the `flags_lock' is asserted.  Additional locking
    177  *	requirements are:
    178  *
    179  *		VM_MAP_PAGEABLE		r/o static flag; no locking required
    180  *
    181  *		VM_MAP_INTRSAFE		r/o static flag; no locking required
    182  *
    183  *		VM_MAP_WIREFUTURE	r/w; may only be set or cleared when
    184  *					map is write-locked.  may be tested
    185  *					without asserting `flags_lock'.
    186  *
    187  *		VM_MAP_BUSY		r/w; may only be set when map is
    188  *					write-locked, may only be cleared by
    189  *					thread which set it, map read-locked
    190  *					or write-locked.  must be tested
    191  *					while `flags_lock' is asserted.
    192  *
    193  *		VM_MAP_WANTLOCK		r/w; may only be set when the map
    194  *					is busy, and thread is attempting
    195  *					to write-lock.  must be tested
    196  *					while `flags_lock' is asserted.
    197  */
    198 struct vm_map {
    199 	struct pmap *		pmap;		/* Physical map */
    200 	struct lock		lock;		/* Lock for map data */
    201 	struct vm_map_entry	header;		/* List of entries */
    202 	int			nentries;	/* Number of entries */
    203 	vsize_t			size;		/* virtual size */
    204 	int			ref_count;	/* Reference count */
    205 	struct simplelock	ref_lock;	/* Lock for ref_count field */
    206 	struct vm_map_entry *	hint;		/* hint for quick lookups */
    207 	struct simplelock	hint_lock;	/* lock for hint storage */
    208 	struct vm_map_entry *	first_free;	/* First free space hint */
    209 	int			flags;		/* flags */
    210 	struct simplelock	flags_lock;	/* Lock for flags field */
    211 	unsigned int		timestamp;	/* Version number */
    212 #define	min_offset		header.start
    213 #define max_offset		header.end
    214 };
    215 
    216 /* vm_map flags */
    217 #define	VM_MAP_PAGEABLE		0x01		/* ro: entries are pageable */
    218 #define	VM_MAP_INTRSAFE		0x02		/* ro: interrupt safe map */
    219 #define	VM_MAP_WIREFUTURE	0x04		/* rw: wire future mappings */
    220 #define	VM_MAP_BUSY		0x08		/* rw: map is busy */
    221 #define	VM_MAP_WANTLOCK		0x10		/* rw: want to write-lock */
    222 
    223 /* XXX: number of kernel maps and entries to statically allocate */
    224 
    225 #if !defined(MAX_KMAPENT)
    226 #if (50 + (2 * NPROC) > 1000)
    227 #define MAX_KMAPENT (50 + (2 * NPROC))
    228 #else
    229 #define	MAX_KMAPENT	1000  /* XXXCDC: no crash */
    230 #endif
    231 #endif	/* !defined MAX_KMAPENT */
    232 
    233 #ifdef _KERNEL
    234 #define	vm_map_modflags(map, set, clear)				\
    235 do {									\
    236 	simple_lock(&(map)->flags_lock);				\
    237 	(map)->flags = ((map)->flags | (set)) & ~(clear);		\
    238 	simple_unlock(&(map)->flags_lock);				\
    239 } while (0)
    240 #endif /* _KERNEL */
    241 
    242 /*
    243  *	Interrupt-safe maps must also be kept on a special list,
    244  *	to assist uvm_fault() in avoiding locking problems.
    245  */
    246 struct vm_map_intrsafe {
    247 	struct vm_map	vmi_map;
    248 	LIST_ENTRY(vm_map_intrsafe) vmi_list;
    249 };
    250 
    251 LIST_HEAD(vmi_list, vm_map_intrsafe);
    252 #ifdef _KERNEL
    253 extern struct simplelock vmi_list_slock;
    254 extern struct vmi_list vmi_list;
    255 
    256 static __inline int vmi_list_lock __P((void));
    257 static __inline void vmi_list_unlock __P((int));
    258 
    259 static __inline int
    260 vmi_list_lock()
    261 {
    262 	int s;
    263 
    264 	s = splhigh();
    265 	simple_lock(&vmi_list_slock);
    266 	return (s);
    267 }
    268 
    269 static __inline void
    270 vmi_list_unlock(s)
    271 	int s;
    272 {
    273 
    274 	simple_unlock(&vmi_list_slock);
    275 	splx(s);
    276 }
    277 #endif /* _KERNEL */
    278 
    279 /*
    280  * handle inline options
    281  */
    282 
    283 #ifdef UVM_MAP_INLINE
    284 #define MAP_INLINE static __inline
    285 #else
    286 #define MAP_INLINE /* nothing */
    287 #endif /* UVM_MAP_INLINE */
    288 
    289 /*
    290  * globals:
    291  */
    292 
    293 #ifdef _KERNEL
    294 
    295 #ifdef PMAP_GROWKERNEL
    296 extern vaddr_t	uvm_maxkaddr;
    297 #endif
    298 
    299 /*
    300  * protos: the following prototypes define the interface to vm_map
    301  */
    302 
    303 MAP_INLINE
    304 void		uvm_map_deallocate __P((struct vm_map *));
    305 
    306 int		uvm_map_clean __P((struct vm_map *, vaddr_t, vaddr_t, int));
    307 void		uvm_map_clip_start __P((struct vm_map *, struct vm_map_entry *,
    308 		    vaddr_t));
    309 void		uvm_map_clip_end __P((struct vm_map *, struct vm_map_entry *,
    310 		    vaddr_t));
    311 MAP_INLINE
    312 struct vm_map	*uvm_map_create __P((pmap_t, vaddr_t, vaddr_t, int));
    313 int		uvm_map_extract __P((struct vm_map *, vaddr_t, vsize_t,
    314 		    struct vm_map *, vaddr_t *, int));
    315 struct vm_map_entry *uvm_map_findspace __P((struct vm_map *, vaddr_t, vsize_t,
    316 		    vaddr_t *, struct uvm_object *, voff_t, vsize_t, int));
    317 int		uvm_map_inherit __P((struct vm_map *, vaddr_t, vaddr_t,
    318 		    vm_inherit_t));
    319 int		uvm_map_advice __P((struct vm_map *, vaddr_t, vaddr_t, int));
    320 void		uvm_map_init __P((void));
    321 boolean_t	uvm_map_lookup_entry __P((struct vm_map *, vaddr_t,
    322 		    struct vm_map_entry **));
    323 MAP_INLINE
    324 void		uvm_map_reference __P((struct vm_map *));
    325 int		uvm_map_replace __P((struct vm_map *, vaddr_t, vaddr_t,
    326 		    struct vm_map_entry *, int));
    327 int		uvm_map_reserve __P((struct vm_map *, vsize_t, vaddr_t, vsize_t,
    328 		    vaddr_t *));
    329 void		uvm_map_setup __P((struct vm_map *, vaddr_t, vaddr_t, int));
    330 int		uvm_map_submap __P((struct vm_map *, vaddr_t, vaddr_t,
    331 		    struct vm_map *));
    332 MAP_INLINE
    333 void		uvm_unmap __P((struct vm_map *, vaddr_t, vaddr_t));
    334 void		uvm_unmap_detach __P((struct vm_map_entry *,int));
    335 void		uvm_unmap_remove __P((struct vm_map *, vaddr_t, vaddr_t,
    336 		    struct vm_map_entry **));
    337 
    338 #endif /* _KERNEL */
    339 
    340 /*
    341  * VM map locking operations:
    342  *
    343  *	These operations perform locking on the data portion of the
    344  *	map.
    345  *
    346  *	vm_map_lock_try: try to lock a map, failing if it is already locked.
    347  *
    348  *	vm_map_lock: acquire an exclusive (write) lock on a map.
    349  *
    350  *	vm_map_lock_read: acquire a shared (read) lock on a map.
    351  *
    352  *	vm_map_unlock: release an exclusive lock on a map.
    353  *
    354  *	vm_map_unlock_read: release a shared lock on a map.
    355  *
    356  *	vm_map_downgrade: downgrade an exclusive lock to a shared lock.
    357  *
    358  *	vm_map_upgrade: upgrade a shared lock to an exclusive lock.
    359  *
    360  *	vm_map_busy: mark a map as busy.
    361  *
    362  *	vm_map_unbusy: clear busy status on a map.
    363  *
    364  * Note that "intrsafe" maps use only exclusive, spin locks.  We simply
    365  * use the sleep lock's interlock for this.
    366  */
    367 
    368 #ifdef _KERNEL
    369 /* XXX: clean up later */
    370 #include <sys/time.h>
    371 #include <sys/proc.h>	/* for tsleep(), wakeup() */
    372 #include <sys/systm.h>	/* for panic() */
    373 
    374 static __inline boolean_t vm_map_lock_try __P((struct vm_map *));
    375 static __inline void vm_map_lock __P((struct vm_map *));
    376 extern const char vmmapbsy[];
    377 
    378 static __inline boolean_t
    379 vm_map_lock_try(map)
    380 	struct vm_map *map;
    381 {
    382 	boolean_t rv;
    383 
    384 	if (map->flags & VM_MAP_INTRSAFE)
    385 		rv = simple_lock_try(&map->lock.lk_interlock);
    386 	else {
    387 		simple_lock(&map->flags_lock);
    388 		if (map->flags & VM_MAP_BUSY) {
    389 			simple_unlock(&map->flags_lock);
    390 			return (FALSE);
    391 		}
    392 		rv = (lockmgr(&map->lock, LK_EXCLUSIVE|LK_NOWAIT|LK_INTERLOCK,
    393 		    &map->flags_lock) == 0);
    394 	}
    395 
    396 	if (rv)
    397 		map->timestamp++;
    398 
    399 	return (rv);
    400 }
    401 
    402 static __inline void
    403 vm_map_lock(map)
    404 	struct vm_map *map;
    405 {
    406 	int error;
    407 
    408 	if (map->flags & VM_MAP_INTRSAFE) {
    409 		simple_lock(&map->lock.lk_interlock);
    410 		return;
    411 	}
    412 
    413  try_again:
    414 	simple_lock(&map->flags_lock);
    415 	while (map->flags & VM_MAP_BUSY) {
    416 		map->flags |= VM_MAP_WANTLOCK;
    417 		ltsleep(&map->flags, PVM, vmmapbsy, 0, &map->flags_lock);
    418 	}
    419 
    420 	error = lockmgr(&map->lock, LK_EXCLUSIVE|LK_SLEEPFAIL|LK_INTERLOCK,
    421 	    &map->flags_lock);
    422 
    423 	if (error) {
    424 		KASSERT(error == ENOLCK);
    425 		goto try_again;
    426 	}
    427 
    428 	(map)->timestamp++;
    429 }
    430 
    431 #ifdef DIAGNOSTIC
    432 #define	vm_map_lock_read(map)						\
    433 do {									\
    434 	if (map->flags & VM_MAP_INTRSAFE)				\
    435 		panic("vm_map_lock_read: intrsafe map");		\
    436 	(void) lockmgr(&(map)->lock, LK_SHARED, NULL);			\
    437 } while (0)
    438 #else
    439 #define	vm_map_lock_read(map)						\
    440 	(void) lockmgr(&(map)->lock, LK_SHARED, NULL)
    441 #endif
    442 
    443 #define	vm_map_unlock(map)						\
    444 do {									\
    445 	if ((map)->flags & VM_MAP_INTRSAFE)				\
    446 		simple_unlock(&(map)->lock.lk_interlock);		\
    447 	else								\
    448 		(void) lockmgr(&(map)->lock, LK_RELEASE, NULL);		\
    449 } while (0)
    450 
    451 #define	vm_map_unlock_read(map)						\
    452 	(void) lockmgr(&(map)->lock, LK_RELEASE, NULL)
    453 
    454 #define	vm_map_downgrade(map)						\
    455 	(void) lockmgr(&(map)->lock, LK_DOWNGRADE, NULL)
    456 
    457 #ifdef DIAGNOSTIC
    458 #define	vm_map_upgrade(map)						\
    459 do {									\
    460 	if (lockmgr(&(map)->lock, LK_UPGRADE, NULL) != 0)		\
    461 		panic("vm_map_upgrade: failed to upgrade lock");	\
    462 } while (0)
    463 #else
    464 #define	vm_map_upgrade(map)						\
    465 	(void) lockmgr(&(map)->lock, LK_UPGRADE, NULL)
    466 #endif
    467 
    468 #define	vm_map_busy(map)						\
    469 do {									\
    470 	simple_lock(&(map)->flags_lock);				\
    471 	(map)->flags |= VM_MAP_BUSY;					\
    472 	simple_unlock(&(map)->flags_lock);				\
    473 } while (0)
    474 
    475 #define	vm_map_unbusy(map)						\
    476 do {									\
    477 	int oflags;							\
    478 									\
    479 	simple_lock(&(map)->flags_lock);				\
    480 	oflags = (map)->flags;						\
    481 	(map)->flags &= ~(VM_MAP_BUSY|VM_MAP_WANTLOCK);			\
    482 	simple_unlock(&(map)->flags_lock);				\
    483 	if (oflags & VM_MAP_WANTLOCK)					\
    484 		wakeup(&(map)->flags);					\
    485 } while (0)
    486 #endif /* _KERNEL */
    487 
    488 /*
    489  *	Functions implemented as macros
    490  */
    491 #define		vm_map_min(map)		((map)->min_offset)
    492 #define		vm_map_max(map)		((map)->max_offset)
    493 #define		vm_map_pmap(map)	((map)->pmap)
    494 
    495 #endif /* _UVM_UVM_MAP_H_ */
    496