uvm_amap.h revision 1.10 1 /* $NetBSD: uvm_amap.h,v 1.10 1999/01/28 14:46:27 chuck Exp $ */
2
3 /*
4 *
5 * Copyright (c) 1997 Charles D. Cranor and Washington University.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by Charles D. Cranor and
19 * Washington University.
20 * 4. The name of the author may not be used to endorse or promote products
21 * derived from this software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35 #ifndef _UVM_UVM_AMAP_H_
36 #define _UVM_UVM_AMAP_H_
37
38 /*
39 * uvm_amap.h: general amap interface and amap implementation-specific info
40 */
41
42 /*
43 * an amap structure contains pointers to a set of anons that are
44 * mapped together in virtual memory (an anon is a single page of
45 * anonymous virtual memory -- see uvm_anon.h). in uvm we hide the
46 * details of the implementation of amaps behind a general amap
47 * interface. this allows us to change the amap implementation
48 * without having to touch the rest of the code. this file is divided
49 * into two parts: the definition of the uvm amap interface and the
50 * amap implementation-specific definitions.
51 */
52
53 /*
54 * part 1: amap interface
55 */
56
57 /*
58 * forward definition of vm_amap structure. only amap
59 * implementation-specific code should directly access the fields of
60 * this structure.
61 */
62
63 struct vm_amap;
64
65 /*
66 * handle inline options... we allow amap ops to be inline, but we also
67 * provide a hook to turn this off. macros can also be used.
68 */
69
70 #ifdef UVM_AMAP_INLINE /* defined/undef'd in uvm_amap.c */
71 #define AMAP_INLINE static __inline /* inline enabled */
72 #else
73 #define AMAP_INLINE /* inline disabled */
74 #endif /* UVM_AMAP_INLINE */
75
76
77 /*
78 * prototypes for the amap interface
79 */
80
81 AMAP_INLINE
82 vaddr_t amap_add /* add an anon to an amap */
83 __P((struct vm_aref *, vaddr_t,
84 struct vm_anon *, int));
85 struct vm_amap *amap_alloc /* allocate a new amap */
86 __P((vaddr_t, vaddr_t, int));
87 void amap_copy /* clear amap needs-copy flag */
88 __P((vm_map_t, vm_map_entry_t, int,
89 boolean_t, vaddr_t, vaddr_t));
90 void amap_cow_now /* resolve all COW faults now */
91 __P((vm_map_t, vm_map_entry_t));
92 void amap_extend /* make amap larger */
93 __P((vm_map_entry_t, vsize_t));
94 int amap_flags /* get amap's flags */
95 __P((struct vm_amap *));
96 void amap_free /* free amap */
97 __P((struct vm_amap *));
98 void amap_init /* init amap module (at boot time) */
99 __P((void));
100 void amap_lock /* lock amap */
101 __P((struct vm_amap *));
102 AMAP_INLINE
103 struct vm_anon *amap_lookup /* lookup an anon @ offset in amap */
104 __P((struct vm_aref *, vaddr_t));
105 AMAP_INLINE
106 void amap_lookups /* lookup multiple anons */
107 __P((struct vm_aref *, vaddr_t,
108 struct vm_anon **, int));
109 AMAP_INLINE
110 void amap_ref /* add a reference to an amap */
111 __P((vm_map_entry_t, int));
112 int amap_refs /* get number of references of amap */
113 __P((struct vm_amap *));
114 void amap_share_protect /* protect pages in a shared amap */
115 __P((vm_map_entry_t, vm_prot_t));
116 void amap_splitref /* split reference to amap into two */
117 __P((struct vm_aref *, struct vm_aref *,
118 vaddr_t));
119 AMAP_INLINE
120 void amap_unadd /* remove an anon from an amap */
121 __P((struct vm_amap *, vaddr_t));
122 void amap_unlock /* unlock amap */
123 __P((struct vm_amap *));
124 AMAP_INLINE
125 void amap_unref /* drop reference to an amap */
126 __P((vm_map_entry_t, int));
127 void amap_wipeout /* remove all anons from amap */
128 __P((struct vm_amap *));
129
130 /*
131 * amap flag values
132 */
133
134 #define AMAP_SHARED 0x1 /* amap is shared */
135 #define AMAP_REFALL 0x2 /* amap_ref: reference entire amap */
136
137
138 /**********************************************************************/
139
140 /*
141 * part 2: amap implementation-specific info
142 */
143
144 /*
145 * we currently provide an array-based amap implementation. in this
146 * implementation we provide the option of tracking split references
147 * so that we don't lose track of references during partial unmaps
148 * ... this is enabled with the "UVM_AMAP_PPREF" define.
149 */
150
151 #define UVM_AMAP_PPREF /* track partial references */
152
153 /*
154 * here is the definition of the vm_amap structure for this implementation.
155 */
156
157 struct vm_amap {
158 simple_lock_data_t am_l; /* simple lock [locks all vm_amap fields] */
159 int am_ref; /* reference count */
160 int am_flags; /* flags */
161 int am_maxslot; /* max # of slots allocated */
162 int am_nslot; /* # of slots currently in map ( <= maxslot) */
163 int am_nused; /* # of slots currently in use */
164 int *am_slots; /* contig array of active slots */
165 int *am_bckptr; /* back pointer array to am_slots */
166 struct vm_anon **am_anon; /* array of anonymous pages */
167 #ifdef UVM_AMAP_PPREF
168 int *am_ppref; /* per page reference count (if !NULL) */
169 #endif
170 };
171
172 /*
173 * note that am_slots, am_bckptr, and am_anon are arrays. this allows
174 * fast lookup of pages based on their virual address at the expense of
175 * some extra memory. in the future we should be smarter about memory
176 * usage and fall back to a non-array based implementation on systems
177 * that are short of memory (XXXCDC).
178 *
179 * the entries in the array are called slots... for example an amap that
180 * covers four pages of virtual memory is said to have four slots. here
181 * is an example of the array usage for a four slot amap. note that only
182 * slots one and three have anons assigned to them. "D/C" means that we
183 * "don't care" about the value.
184 *
185 * 0 1 2 3
186 * am_anon: NULL, anon0, NULL, anon1 (actual pointers to anons)
187 * am_bckptr: D/C, 1, D/C, 0 (points to am_slots entry)
188 *
189 * am_slots: 3, 1, D/C, D/C (says slots 3 and 1 are in use)
190 *
191 * note that am_bckptr is D/C if the slot in am_anon is set to NULL.
192 * to find the entry in am_slots for an anon, look at am_bckptr[slot],
193 * thus the entry for slot 3 in am_slots[] is at am_slots[am_bckptr[3]].
194 * in general, if am_anon[X] is non-NULL, then the following must be
195 * true: am_slots[am_bckptr[X]] == X
196 *
197 * note that am_slots is always contig-packed.
198 */
199
200 /*
201 * defines for handling of large sparce amaps:
202 *
203 * one of the problems of array-based amaps is that if you allocate a
204 * large sparcely-used area of virtual memory you end up allocating
205 * large arrays that, for the most part, don't get used. this is a
206 * problem for BSD in that the kernel likes to make these types of
207 * allocations to "reserve" memory for possible future use.
208 *
209 * for example, the kernel allocates (reserves) a large chunk of user
210 * VM for possible stack growth. most of the time only a page or two
211 * of this VM is actually used. since the stack is anonymous memory
212 * it makes sense for it to live in an amap, but if we allocated an
213 * amap for the entire stack range we could end up wasting a large
214 * amount of malloc'd KVM.
215 *
216 * for example, on the i386 at boot time we allocate two amaps for the stack
217 * of /sbin/init:
218 * 1. a 7680 slot amap at protection 0 (reserve space for stack)
219 * 2. a 512 slot amap at protection 7 (top of stack)
220 *
221 * most of the array allocated for the amaps for this is never used.
222 * the amap interface provides a way for us to avoid this problem by
223 * allowing amap_copy() to break larger amaps up into smaller sized
224 * chunks (controlled by the "canchunk" option). we use this feature
225 * to reduce our memory usage with the BSD stack management. if we
226 * are asked to create an amap with more than UVM_AMAP_LARGE slots in it,
227 * we attempt to break it up into a UVM_AMAP_CHUNK sized amap if the
228 * "canchunk" flag is set.
229 *
230 * so, in the i386 example, the 7680 slot area is never referenced so
231 * nothing gets allocated (amap_copy is never called because the protection
232 * is zero). the 512 slot area for the top of the stack is referenced.
233 * the chunking code breaks it up into 16 slot chunks (hopefully a single
234 * 16 slot chunk is enough to handle the whole stack).
235 */
236
237 #define UVM_AMAP_LARGE 256 /* # of slots in "large" amap */
238 #define UVM_AMAP_CHUNK 16 /* # of slots to chunk large amaps in */
239
240
241 /*
242 * macros
243 */
244
245 /* AMAP_B2SLOT: convert byte offset to slot */
246 #ifdef DIAGNOSTIC
247 #define AMAP_B2SLOT(S,B) { \
248 if ((B) & (PAGE_SIZE - 1)) \
249 panic("AMAP_B2SLOT: invalid byte count"); \
250 (S) = (B) >> PAGE_SHIFT; \
251 }
252 #else
253 #define AMAP_B2SLOT(S,B) (S) = (B) >> PAGE_SHIFT
254 #endif
255
256 /*
257 * lock/unlock/refs/flags macros
258 */
259
260 #define amap_flags(AMAP) ((AMAP)->am_flags)
261 #define amap_lock(AMAP) simple_lock(&(AMAP)->am_l)
262 #define amap_refs(AMAP) ((AMAP)->am_ref)
263 #define amap_unlock(AMAP) simple_unlock(&(AMAP)->am_l)
264
265 /*
266 * if we enable PPREF, then we have a couple of extra functions that
267 * we need to prototype here...
268 */
269
270 #ifdef UVM_AMAP_PPREF
271
272 #define PPREF_NONE ((int *) -1) /* not using ppref */
273
274 void amap_pp_adjref /* adjust references */
275 __P((struct vm_amap *, int, vsize_t, int));
276 void amap_pp_establish /* establish ppref */
277 __P((struct vm_amap *));
278 void amap_wiperange /* wipe part of an amap */
279 __P((struct vm_amap *, int, int));
280 #endif /* UVM_AMAP_PPREF */
281
282 #endif /* _UVM_UVM_AMAP_H_ */
283