uvm_swap.c revision 1.60 1 1.60 thorpej /* $NetBSD: uvm_swap.c,v 1.60 2002/03/09 07:28:20 thorpej Exp $ */
2 1.1 mrg
3 1.1 mrg /*
4 1.1 mrg * Copyright (c) 1995, 1996, 1997 Matthew R. Green
5 1.1 mrg * All rights reserved.
6 1.1 mrg *
7 1.1 mrg * Redistribution and use in source and binary forms, with or without
8 1.1 mrg * modification, are permitted provided that the following conditions
9 1.1 mrg * are met:
10 1.1 mrg * 1. Redistributions of source code must retain the above copyright
11 1.1 mrg * notice, this list of conditions and the following disclaimer.
12 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mrg * notice, this list of conditions and the following disclaimer in the
14 1.1 mrg * documentation and/or other materials provided with the distribution.
15 1.1 mrg * 3. The name of the author may not be used to endorse or promote products
16 1.1 mrg * derived from this software without specific prior written permission.
17 1.1 mrg *
18 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 mrg * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 mrg * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 mrg * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 mrg * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 1.1 mrg * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 1.1 mrg * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 1.1 mrg * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 1.1 mrg * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 1.1 mrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 1.1 mrg * SUCH DAMAGE.
29 1.3 mrg *
30 1.3 mrg * from: NetBSD: vm_swap.c,v 1.52 1997/12/02 13:47:37 pk Exp
31 1.3 mrg * from: Id: uvm_swap.c,v 1.1.2.42 1998/02/02 20:38:06 chuck Exp
32 1.1 mrg */
33 1.57 lukem
34 1.57 lukem #include <sys/cdefs.h>
35 1.60 thorpej __KERNEL_RCSID(0, "$NetBSD: uvm_swap.c,v 1.60 2002/03/09 07:28:20 thorpej Exp $");
36 1.5 mrg
37 1.6 thorpej #include "fs_nfs.h"
38 1.5 mrg #include "opt_uvmhist.h"
39 1.16 mrg #include "opt_compat_netbsd.h"
40 1.41 chs #include "opt_ddb.h"
41 1.1 mrg
42 1.1 mrg #include <sys/param.h>
43 1.1 mrg #include <sys/systm.h>
44 1.1 mrg #include <sys/buf.h>
45 1.36 mrg #include <sys/conf.h>
46 1.1 mrg #include <sys/proc.h>
47 1.1 mrg #include <sys/namei.h>
48 1.1 mrg #include <sys/disklabel.h>
49 1.1 mrg #include <sys/errno.h>
50 1.1 mrg #include <sys/kernel.h>
51 1.1 mrg #include <sys/malloc.h>
52 1.1 mrg #include <sys/vnode.h>
53 1.1 mrg #include <sys/file.h>
54 1.1 mrg #include <sys/extent.h>
55 1.1 mrg #include <sys/mount.h>
56 1.12 pk #include <sys/pool.h>
57 1.1 mrg #include <sys/syscallargs.h>
58 1.17 mrg #include <sys/swap.h>
59 1.1 mrg
60 1.1 mrg #include <uvm/uvm.h>
61 1.1 mrg
62 1.1 mrg #include <miscfs/specfs/specdev.h>
63 1.1 mrg
64 1.1 mrg /*
65 1.1 mrg * uvm_swap.c: manage configuration and i/o to swap space.
66 1.1 mrg */
67 1.1 mrg
68 1.1 mrg /*
69 1.1 mrg * swap space is managed in the following way:
70 1.51 chs *
71 1.1 mrg * each swap partition or file is described by a "swapdev" structure.
72 1.1 mrg * each "swapdev" structure contains a "swapent" structure which contains
73 1.1 mrg * information that is passed up to the user (via system calls).
74 1.1 mrg *
75 1.1 mrg * each swap partition is assigned a "priority" (int) which controls
76 1.1 mrg * swap parition usage.
77 1.1 mrg *
78 1.1 mrg * the system maintains a global data structure describing all swap
79 1.1 mrg * partitions/files. there is a sorted LIST of "swappri" structures
80 1.1 mrg * which describe "swapdev"'s at that priority. this LIST is headed
81 1.51 chs * by the "swap_priority" global var. each "swappri" contains a
82 1.1 mrg * CIRCLEQ of "swapdev" structures at that priority.
83 1.1 mrg *
84 1.1 mrg * locking:
85 1.1 mrg * - swap_syscall_lock (sleep lock): this lock serializes the swapctl
86 1.1 mrg * system call and prevents the swap priority list from changing
87 1.1 mrg * while we are in the middle of a system call (e.g. SWAP_STATS).
88 1.26 chs * - uvm.swap_data_lock (simple_lock): this lock protects all swap data
89 1.1 mrg * structures including the priority list, the swapdev structures,
90 1.1 mrg * and the swapmap extent.
91 1.1 mrg *
92 1.1 mrg * each swap device has the following info:
93 1.1 mrg * - swap device in use (could be disabled, preventing future use)
94 1.1 mrg * - swap enabled (allows new allocations on swap)
95 1.1 mrg * - map info in /dev/drum
96 1.1 mrg * - vnode pointer
97 1.1 mrg * for swap files only:
98 1.1 mrg * - block size
99 1.1 mrg * - max byte count in buffer
100 1.1 mrg * - buffer
101 1.1 mrg *
102 1.1 mrg * userland controls and configures swap with the swapctl(2) system call.
103 1.1 mrg * the sys_swapctl performs the following operations:
104 1.1 mrg * [1] SWAP_NSWAP: returns the number of swap devices currently configured
105 1.51 chs * [2] SWAP_STATS: given a pointer to an array of swapent structures
106 1.1 mrg * (passed in via "arg") of a size passed in via "misc" ... we load
107 1.1 mrg * the current swap config into the array.
108 1.1 mrg * [3] SWAP_ON: given a pathname in arg (could be device or file) and a
109 1.1 mrg * priority in "misc", start swapping on it.
110 1.1 mrg * [4] SWAP_OFF: as SWAP_ON, but stops swapping to a device
111 1.1 mrg * [5] SWAP_CTL: changes the priority of a swap device (new priority in
112 1.1 mrg * "misc")
113 1.1 mrg */
114 1.1 mrg
115 1.1 mrg /*
116 1.1 mrg * swapdev: describes a single swap partition/file
117 1.1 mrg *
118 1.1 mrg * note the following should be true:
119 1.1 mrg * swd_inuse <= swd_nblks [number of blocks in use is <= total blocks]
120 1.1 mrg * swd_nblks <= swd_mapsize [because mapsize includes miniroot+disklabel]
121 1.1 mrg */
122 1.1 mrg struct swapdev {
123 1.16 mrg struct oswapent swd_ose;
124 1.16 mrg #define swd_dev swd_ose.ose_dev /* device id */
125 1.16 mrg #define swd_flags swd_ose.ose_flags /* flags:inuse/enable/fake */
126 1.16 mrg #define swd_priority swd_ose.ose_priority /* our priority */
127 1.16 mrg /* also: swd_ose.ose_nblks, swd_ose.ose_inuse */
128 1.16 mrg char *swd_path; /* saved pathname of device */
129 1.16 mrg int swd_pathlen; /* length of pathname */
130 1.16 mrg int swd_npages; /* #pages we can use */
131 1.16 mrg int swd_npginuse; /* #pages in use */
132 1.32 chs int swd_npgbad; /* #pages bad */
133 1.16 mrg int swd_drumoffset; /* page0 offset in drum */
134 1.16 mrg int swd_drumsize; /* #pages in drum */
135 1.16 mrg struct extent *swd_ex; /* extent for this swapdev */
136 1.42 enami char swd_exname[12]; /* name of extent above */
137 1.16 mrg struct vnode *swd_vp; /* backing vnode */
138 1.16 mrg CIRCLEQ_ENTRY(swapdev) swd_next; /* priority circleq */
139 1.1 mrg
140 1.16 mrg int swd_bsize; /* blocksize (bytes) */
141 1.16 mrg int swd_maxactive; /* max active i/o reqs */
142 1.33 thorpej struct buf_queue swd_tab; /* buffer list */
143 1.33 thorpej int swd_active; /* number of active buffers */
144 1.1 mrg };
145 1.1 mrg
146 1.1 mrg /*
147 1.1 mrg * swap device priority entry; the list is kept sorted on `spi_priority'.
148 1.1 mrg */
149 1.1 mrg struct swappri {
150 1.1 mrg int spi_priority; /* priority */
151 1.1 mrg CIRCLEQ_HEAD(spi_swapdev, swapdev) spi_swapdev;
152 1.1 mrg /* circleq of swapdevs at this priority */
153 1.1 mrg LIST_ENTRY(swappri) spi_swappri; /* global list of pri's */
154 1.1 mrg };
155 1.1 mrg
156 1.1 mrg /*
157 1.1 mrg * The following two structures are used to keep track of data transfers
158 1.1 mrg * on swap devices associated with regular files.
159 1.1 mrg * NOTE: this code is more or less a copy of vnd.c; we use the same
160 1.1 mrg * structure names here to ease porting..
161 1.1 mrg */
162 1.1 mrg struct vndxfer {
163 1.1 mrg struct buf *vx_bp; /* Pointer to parent buffer */
164 1.1 mrg struct swapdev *vx_sdp;
165 1.1 mrg int vx_error;
166 1.1 mrg int vx_pending; /* # of pending aux buffers */
167 1.1 mrg int vx_flags;
168 1.1 mrg #define VX_BUSY 1
169 1.1 mrg #define VX_DEAD 2
170 1.1 mrg };
171 1.1 mrg
172 1.1 mrg struct vndbuf {
173 1.1 mrg struct buf vb_buf;
174 1.1 mrg struct vndxfer *vb_xfer;
175 1.1 mrg };
176 1.1 mrg
177 1.12 pk
178 1.1 mrg /*
179 1.12 pk * We keep a of pool vndbuf's and vndxfer structures.
180 1.1 mrg */
181 1.49 thorpej static struct pool vndxfer_pool;
182 1.49 thorpej static struct pool vndbuf_pool;
183 1.1 mrg
184 1.12 pk #define getvndxfer(vnx) do { \
185 1.12 pk int s = splbio(); \
186 1.60 thorpej vnx = pool_get(&vndxfer_pool, PR_WAITOK); \
187 1.12 pk splx(s); \
188 1.12 pk } while (0)
189 1.12 pk
190 1.12 pk #define putvndxfer(vnx) { \
191 1.49 thorpej pool_put(&vndxfer_pool, (void *)(vnx)); \
192 1.12 pk }
193 1.12 pk
194 1.12 pk #define getvndbuf(vbp) do { \
195 1.12 pk int s = splbio(); \
196 1.60 thorpej vbp = pool_get(&vndbuf_pool, PR_WAITOK); \
197 1.12 pk splx(s); \
198 1.12 pk } while (0)
199 1.1 mrg
200 1.12 pk #define putvndbuf(vbp) { \
201 1.49 thorpej pool_put(&vndbuf_pool, (void *)(vbp)); \
202 1.12 pk }
203 1.1 mrg
204 1.36 mrg /* /dev/drum */
205 1.36 mrg bdev_decl(sw);
206 1.36 mrg cdev_decl(sw);
207 1.1 mrg
208 1.1 mrg /*
209 1.1 mrg * local variables
210 1.1 mrg */
211 1.1 mrg static struct extent *swapmap; /* controls the mapping of /dev/drum */
212 1.1 mrg
213 1.1 mrg /* list of all active swap devices [by priority] */
214 1.1 mrg LIST_HEAD(swap_priority, swappri);
215 1.1 mrg static struct swap_priority swap_priority;
216 1.1 mrg
217 1.1 mrg /* locks */
218 1.52 chs struct lock swap_syscall_lock;
219 1.1 mrg
220 1.1 mrg /*
221 1.1 mrg * prototypes
222 1.1 mrg */
223 1.1 mrg static struct swapdev *swapdrum_getsdp __P((int));
224 1.1 mrg
225 1.1 mrg static struct swapdev *swaplist_find __P((struct vnode *, int));
226 1.51 chs static void swaplist_insert __P((struct swapdev *,
227 1.1 mrg struct swappri *, int));
228 1.1 mrg static void swaplist_trim __P((void));
229 1.1 mrg
230 1.1 mrg static int swap_on __P((struct proc *, struct swapdev *));
231 1.1 mrg static int swap_off __P((struct proc *, struct swapdev *));
232 1.1 mrg
233 1.1 mrg static void sw_reg_strategy __P((struct swapdev *, struct buf *, int));
234 1.1 mrg static void sw_reg_iodone __P((struct buf *));
235 1.1 mrg static void sw_reg_start __P((struct swapdev *));
236 1.1 mrg
237 1.1 mrg static int uvm_swap_io __P((struct vm_page **, int, int, int));
238 1.1 mrg
239 1.1 mrg /*
240 1.1 mrg * uvm_swap_init: init the swap system data structures and locks
241 1.1 mrg *
242 1.51 chs * => called at boot time from init_main.c after the filesystems
243 1.1 mrg * are brought up (which happens after uvm_init())
244 1.1 mrg */
245 1.1 mrg void
246 1.1 mrg uvm_swap_init()
247 1.1 mrg {
248 1.1 mrg UVMHIST_FUNC("uvm_swap_init");
249 1.1 mrg
250 1.1 mrg UVMHIST_CALLED(pdhist);
251 1.1 mrg /*
252 1.1 mrg * first, init the swap list, its counter, and its lock.
253 1.1 mrg * then get a handle on the vnode for /dev/drum by using
254 1.1 mrg * the its dev_t number ("swapdev", from MD conf.c).
255 1.1 mrg */
256 1.1 mrg
257 1.1 mrg LIST_INIT(&swap_priority);
258 1.1 mrg uvmexp.nswapdev = 0;
259 1.1 mrg lockinit(&swap_syscall_lock, PVM, "swapsys", 0, 0);
260 1.26 chs simple_lock_init(&uvm.swap_data_lock);
261 1.12 pk
262 1.1 mrg if (bdevvp(swapdev, &swapdev_vp))
263 1.1 mrg panic("uvm_swap_init: can't get vnode for swap device");
264 1.1 mrg
265 1.1 mrg /*
266 1.1 mrg * create swap block resource map to map /dev/drum. the range
267 1.1 mrg * from 1 to INT_MAX allows 2 gigablocks of swap space. note
268 1.51 chs * that block 0 is reserved (used to indicate an allocation
269 1.1 mrg * failure, or no allocation).
270 1.1 mrg */
271 1.1 mrg swapmap = extent_create("swapmap", 1, INT_MAX,
272 1.1 mrg M_VMSWAP, 0, 0, EX_NOWAIT);
273 1.1 mrg if (swapmap == 0)
274 1.1 mrg panic("uvm_swap_init: extent_create failed");
275 1.1 mrg
276 1.1 mrg /*
277 1.41 chs * allocate pools for structures used for swapping to files.
278 1.1 mrg */
279 1.1 mrg
280 1.49 thorpej pool_init(&vndxfer_pool, sizeof(struct vndxfer), 0, 0, 0,
281 1.59 thorpej "swp vnx", NULL);
282 1.49 thorpej
283 1.49 thorpej pool_init(&vndbuf_pool, sizeof(struct vndbuf), 0, 0, 0,
284 1.59 thorpej "swp vnd", NULL);
285 1.49 thorpej
286 1.1 mrg /*
287 1.1 mrg * done!
288 1.1 mrg */
289 1.1 mrg UVMHIST_LOG(pdhist, "<- done", 0, 0, 0, 0);
290 1.1 mrg }
291 1.1 mrg
292 1.1 mrg /*
293 1.1 mrg * swaplist functions: functions that operate on the list of swap
294 1.1 mrg * devices on the system.
295 1.1 mrg */
296 1.1 mrg
297 1.1 mrg /*
298 1.1 mrg * swaplist_insert: insert swap device "sdp" into the global list
299 1.1 mrg *
300 1.26 chs * => caller must hold both swap_syscall_lock and uvm.swap_data_lock
301 1.1 mrg * => caller must provide a newly malloc'd swappri structure (we will
302 1.1 mrg * FREE it if we don't need it... this it to prevent malloc blocking
303 1.1 mrg * here while adding swap)
304 1.1 mrg */
305 1.1 mrg static void
306 1.1 mrg swaplist_insert(sdp, newspp, priority)
307 1.1 mrg struct swapdev *sdp;
308 1.1 mrg struct swappri *newspp;
309 1.1 mrg int priority;
310 1.1 mrg {
311 1.1 mrg struct swappri *spp, *pspp;
312 1.1 mrg UVMHIST_FUNC("swaplist_insert"); UVMHIST_CALLED(pdhist);
313 1.1 mrg
314 1.1 mrg /*
315 1.1 mrg * find entry at or after which to insert the new device.
316 1.1 mrg */
317 1.55 chs pspp = NULL;
318 1.55 chs LIST_FOREACH(spp, &swap_priority, spi_swappri) {
319 1.1 mrg if (priority <= spp->spi_priority)
320 1.1 mrg break;
321 1.1 mrg pspp = spp;
322 1.1 mrg }
323 1.1 mrg
324 1.1 mrg /*
325 1.1 mrg * new priority?
326 1.1 mrg */
327 1.1 mrg if (spp == NULL || spp->spi_priority != priority) {
328 1.1 mrg spp = newspp; /* use newspp! */
329 1.32 chs UVMHIST_LOG(pdhist, "created new swappri = %d",
330 1.32 chs priority, 0, 0, 0);
331 1.1 mrg
332 1.1 mrg spp->spi_priority = priority;
333 1.1 mrg CIRCLEQ_INIT(&spp->spi_swapdev);
334 1.1 mrg
335 1.1 mrg if (pspp)
336 1.1 mrg LIST_INSERT_AFTER(pspp, spp, spi_swappri);
337 1.1 mrg else
338 1.1 mrg LIST_INSERT_HEAD(&swap_priority, spp, spi_swappri);
339 1.1 mrg } else {
340 1.1 mrg /* we don't need a new priority structure, free it */
341 1.1 mrg FREE(newspp, M_VMSWAP);
342 1.1 mrg }
343 1.1 mrg
344 1.1 mrg /*
345 1.1 mrg * priority found (or created). now insert on the priority's
346 1.1 mrg * circleq list and bump the total number of swapdevs.
347 1.1 mrg */
348 1.1 mrg sdp->swd_priority = priority;
349 1.1 mrg CIRCLEQ_INSERT_TAIL(&spp->spi_swapdev, sdp, swd_next);
350 1.1 mrg uvmexp.nswapdev++;
351 1.1 mrg }
352 1.1 mrg
353 1.1 mrg /*
354 1.1 mrg * swaplist_find: find and optionally remove a swap device from the
355 1.1 mrg * global list.
356 1.1 mrg *
357 1.26 chs * => caller must hold both swap_syscall_lock and uvm.swap_data_lock
358 1.1 mrg * => we return the swapdev we found (and removed)
359 1.1 mrg */
360 1.1 mrg static struct swapdev *
361 1.1 mrg swaplist_find(vp, remove)
362 1.1 mrg struct vnode *vp;
363 1.1 mrg boolean_t remove;
364 1.1 mrg {
365 1.1 mrg struct swapdev *sdp;
366 1.1 mrg struct swappri *spp;
367 1.1 mrg
368 1.1 mrg /*
369 1.1 mrg * search the lists for the requested vp
370 1.1 mrg */
371 1.55 chs
372 1.55 chs LIST_FOREACH(spp, &swap_priority, spi_swappri) {
373 1.55 chs CIRCLEQ_FOREACH(sdp, &spp->spi_swapdev, swd_next) {
374 1.1 mrg if (sdp->swd_vp == vp) {
375 1.1 mrg if (remove) {
376 1.1 mrg CIRCLEQ_REMOVE(&spp->spi_swapdev,
377 1.1 mrg sdp, swd_next);
378 1.1 mrg uvmexp.nswapdev--;
379 1.1 mrg }
380 1.1 mrg return(sdp);
381 1.1 mrg }
382 1.55 chs }
383 1.1 mrg }
384 1.1 mrg return (NULL);
385 1.1 mrg }
386 1.1 mrg
387 1.1 mrg
388 1.1 mrg /*
389 1.1 mrg * swaplist_trim: scan priority list for empty priority entries and kill
390 1.1 mrg * them.
391 1.1 mrg *
392 1.26 chs * => caller must hold both swap_syscall_lock and uvm.swap_data_lock
393 1.1 mrg */
394 1.1 mrg static void
395 1.1 mrg swaplist_trim()
396 1.1 mrg {
397 1.1 mrg struct swappri *spp, *nextspp;
398 1.1 mrg
399 1.32 chs for (spp = LIST_FIRST(&swap_priority); spp != NULL; spp = nextspp) {
400 1.32 chs nextspp = LIST_NEXT(spp, spi_swappri);
401 1.32 chs if (CIRCLEQ_FIRST(&spp->spi_swapdev) !=
402 1.32 chs (void *)&spp->spi_swapdev)
403 1.1 mrg continue;
404 1.1 mrg LIST_REMOVE(spp, spi_swappri);
405 1.32 chs free(spp, M_VMSWAP);
406 1.1 mrg }
407 1.1 mrg }
408 1.1 mrg
409 1.1 mrg /*
410 1.1 mrg * swapdrum_getsdp: given a page offset in /dev/drum, convert it back
411 1.1 mrg * to the "swapdev" that maps that section of the drum.
412 1.1 mrg *
413 1.1 mrg * => each swapdev takes one big contig chunk of the drum
414 1.26 chs * => caller must hold uvm.swap_data_lock
415 1.1 mrg */
416 1.1 mrg static struct swapdev *
417 1.1 mrg swapdrum_getsdp(pgno)
418 1.1 mrg int pgno;
419 1.1 mrg {
420 1.1 mrg struct swapdev *sdp;
421 1.1 mrg struct swappri *spp;
422 1.51 chs
423 1.55 chs LIST_FOREACH(spp, &swap_priority, spi_swappri) {
424 1.55 chs CIRCLEQ_FOREACH(sdp, &spp->spi_swapdev, swd_next) {
425 1.48 fvdl if (sdp->swd_flags & SWF_FAKE)
426 1.48 fvdl continue;
427 1.1 mrg if (pgno >= sdp->swd_drumoffset &&
428 1.1 mrg pgno < (sdp->swd_drumoffset + sdp->swd_drumsize)) {
429 1.1 mrg return sdp;
430 1.1 mrg }
431 1.48 fvdl }
432 1.55 chs }
433 1.1 mrg return NULL;
434 1.1 mrg }
435 1.1 mrg
436 1.1 mrg
437 1.1 mrg /*
438 1.1 mrg * sys_swapctl: main entry point for swapctl(2) system call
439 1.1 mrg * [with two helper functions: swap_on and swap_off]
440 1.1 mrg */
441 1.1 mrg int
442 1.1 mrg sys_swapctl(p, v, retval)
443 1.1 mrg struct proc *p;
444 1.1 mrg void *v;
445 1.1 mrg register_t *retval;
446 1.1 mrg {
447 1.1 mrg struct sys_swapctl_args /* {
448 1.1 mrg syscallarg(int) cmd;
449 1.1 mrg syscallarg(void *) arg;
450 1.1 mrg syscallarg(int) misc;
451 1.1 mrg } */ *uap = (struct sys_swapctl_args *)v;
452 1.1 mrg struct vnode *vp;
453 1.1 mrg struct nameidata nd;
454 1.1 mrg struct swappri *spp;
455 1.1 mrg struct swapdev *sdp;
456 1.1 mrg struct swapent *sep;
457 1.16 mrg char userpath[PATH_MAX + 1];
458 1.18 enami size_t len;
459 1.18 enami int count, error, misc;
460 1.1 mrg int priority;
461 1.1 mrg UVMHIST_FUNC("sys_swapctl"); UVMHIST_CALLED(pdhist);
462 1.1 mrg
463 1.1 mrg misc = SCARG(uap, misc);
464 1.1 mrg
465 1.1 mrg /*
466 1.1 mrg * ensure serialized syscall access by grabbing the swap_syscall_lock
467 1.1 mrg */
468 1.32 chs lockmgr(&swap_syscall_lock, LK_EXCLUSIVE, NULL);
469 1.24 mrg
470 1.1 mrg /*
471 1.1 mrg * we handle the non-priv NSWAP and STATS request first.
472 1.1 mrg *
473 1.51 chs * SWAP_NSWAP: return number of config'd swap devices
474 1.1 mrg * [can also be obtained with uvmexp sysctl]
475 1.1 mrg */
476 1.1 mrg if (SCARG(uap, cmd) == SWAP_NSWAP) {
477 1.8 mrg UVMHIST_LOG(pdhist, "<- done SWAP_NSWAP=%d", uvmexp.nswapdev,
478 1.8 mrg 0, 0, 0);
479 1.1 mrg *retval = uvmexp.nswapdev;
480 1.16 mrg error = 0;
481 1.16 mrg goto out;
482 1.1 mrg }
483 1.1 mrg
484 1.1 mrg /*
485 1.1 mrg * SWAP_STATS: get stats on current # of configured swap devs
486 1.1 mrg *
487 1.51 chs * note that the swap_priority list can't change as long
488 1.1 mrg * as we are holding the swap_syscall_lock. we don't want
489 1.51 chs * to grab the uvm.swap_data_lock because we may fault&sleep during
490 1.1 mrg * copyout() and we don't want to be holding that lock then!
491 1.1 mrg */
492 1.16 mrg if (SCARG(uap, cmd) == SWAP_STATS
493 1.16 mrg #if defined(COMPAT_13)
494 1.16 mrg || SCARG(uap, cmd) == SWAP_OSTATS
495 1.16 mrg #endif
496 1.16 mrg ) {
497 1.1 mrg sep = (struct swapent *)SCARG(uap, arg);
498 1.1 mrg count = 0;
499 1.1 mrg
500 1.55 chs LIST_FOREACH(spp, &swap_priority, spi_swappri) {
501 1.32 chs for (sdp = CIRCLEQ_FIRST(&spp->spi_swapdev);
502 1.1 mrg sdp != (void *)&spp->spi_swapdev && misc-- > 0;
503 1.32 chs sdp = CIRCLEQ_NEXT(sdp, swd_next)) {
504 1.16 mrg /*
505 1.16 mrg * backwards compatibility for system call.
506 1.16 mrg * note that we use 'struct oswapent' as an
507 1.16 mrg * overlay into both 'struct swapdev' and
508 1.16 mrg * the userland 'struct swapent', as we
509 1.16 mrg * want to retain backwards compatibility
510 1.16 mrg * with NetBSD 1.3.
511 1.16 mrg */
512 1.51 chs sdp->swd_ose.ose_inuse =
513 1.44 enami btodb((u_int64_t)sdp->swd_npginuse <<
514 1.44 enami PAGE_SHIFT);
515 1.32 chs error = copyout(&sdp->swd_ose, sep,
516 1.32 chs sizeof(struct oswapent));
517 1.16 mrg
518 1.16 mrg /* now copy out the path if necessary */
519 1.16 mrg #if defined(COMPAT_13)
520 1.16 mrg if (error == 0 && SCARG(uap, cmd) == SWAP_STATS)
521 1.16 mrg #else
522 1.16 mrg if (error == 0)
523 1.16 mrg #endif
524 1.32 chs error = copyout(sdp->swd_path,
525 1.32 chs &sep->se_path, sdp->swd_pathlen);
526 1.16 mrg
527 1.16 mrg if (error)
528 1.16 mrg goto out;
529 1.1 mrg count++;
530 1.16 mrg #if defined(COMPAT_13)
531 1.16 mrg if (SCARG(uap, cmd) == SWAP_OSTATS)
532 1.50 ross sep = (struct swapent *)
533 1.50 ross ((struct oswapent *)sep + 1);
534 1.16 mrg else
535 1.16 mrg #endif
536 1.16 mrg sep++;
537 1.1 mrg }
538 1.1 mrg }
539 1.1 mrg
540 1.16 mrg UVMHIST_LOG(pdhist, "<- done SWAP_STATS", 0, 0, 0, 0);
541 1.1 mrg
542 1.1 mrg *retval = count;
543 1.16 mrg error = 0;
544 1.16 mrg goto out;
545 1.51 chs }
546 1.55 chs if (SCARG(uap, cmd) == SWAP_GETDUMPDEV) {
547 1.55 chs dev_t *devp = (dev_t *)SCARG(uap, arg);
548 1.55 chs
549 1.55 chs error = copyout(&dumpdev, devp, sizeof(dumpdev));
550 1.55 chs goto out;
551 1.55 chs }
552 1.1 mrg
553 1.1 mrg /*
554 1.1 mrg * all other requests require superuser privs. verify.
555 1.1 mrg */
556 1.16 mrg if ((error = suser(p->p_ucred, &p->p_acflag)))
557 1.16 mrg goto out;
558 1.1 mrg
559 1.1 mrg /*
560 1.1 mrg * at this point we expect a path name in arg. we will
561 1.1 mrg * use namei() to gain a vnode reference (vref), and lock
562 1.1 mrg * the vnode (VOP_LOCK).
563 1.1 mrg *
564 1.1 mrg * XXX: a NULL arg means use the root vnode pointer (e.g. for
565 1.16 mrg * miniroot)
566 1.1 mrg */
567 1.1 mrg if (SCARG(uap, arg) == NULL) {
568 1.1 mrg vp = rootvp; /* miniroot */
569 1.7 fvdl if (vget(vp, LK_EXCLUSIVE)) {
570 1.16 mrg error = EBUSY;
571 1.16 mrg goto out;
572 1.1 mrg }
573 1.16 mrg if (SCARG(uap, cmd) == SWAP_ON &&
574 1.16 mrg copystr("miniroot", userpath, sizeof userpath, &len))
575 1.16 mrg panic("swapctl: miniroot copy failed");
576 1.1 mrg } else {
577 1.16 mrg int space;
578 1.16 mrg char *where;
579 1.16 mrg
580 1.16 mrg if (SCARG(uap, cmd) == SWAP_ON) {
581 1.16 mrg if ((error = copyinstr(SCARG(uap, arg), userpath,
582 1.16 mrg sizeof userpath, &len)))
583 1.16 mrg goto out;
584 1.16 mrg space = UIO_SYSSPACE;
585 1.16 mrg where = userpath;
586 1.16 mrg } else {
587 1.16 mrg space = UIO_USERSPACE;
588 1.16 mrg where = (char *)SCARG(uap, arg);
589 1.1 mrg }
590 1.16 mrg NDINIT(&nd, LOOKUP, FOLLOW|LOCKLEAF, space, where, p);
591 1.16 mrg if ((error = namei(&nd)))
592 1.16 mrg goto out;
593 1.1 mrg vp = nd.ni_vp;
594 1.1 mrg }
595 1.1 mrg /* note: "vp" is referenced and locked */
596 1.1 mrg
597 1.1 mrg error = 0; /* assume no error */
598 1.1 mrg switch(SCARG(uap, cmd)) {
599 1.40 mrg
600 1.24 mrg case SWAP_DUMPDEV:
601 1.24 mrg if (vp->v_type != VBLK) {
602 1.24 mrg error = ENOTBLK;
603 1.45 pk break;
604 1.24 mrg }
605 1.24 mrg dumpdev = vp->v_rdev;
606 1.24 mrg break;
607 1.24 mrg
608 1.1 mrg case SWAP_CTL:
609 1.1 mrg /*
610 1.1 mrg * get new priority, remove old entry (if any) and then
611 1.1 mrg * reinsert it in the correct place. finally, prune out
612 1.1 mrg * any empty priority structures.
613 1.1 mrg */
614 1.1 mrg priority = SCARG(uap, misc);
615 1.32 chs spp = malloc(sizeof *spp, M_VMSWAP, M_WAITOK);
616 1.26 chs simple_lock(&uvm.swap_data_lock);
617 1.1 mrg if ((sdp = swaplist_find(vp, 1)) == NULL) {
618 1.1 mrg error = ENOENT;
619 1.1 mrg } else {
620 1.1 mrg swaplist_insert(sdp, spp, priority);
621 1.1 mrg swaplist_trim();
622 1.1 mrg }
623 1.26 chs simple_unlock(&uvm.swap_data_lock);
624 1.1 mrg if (error)
625 1.1 mrg free(spp, M_VMSWAP);
626 1.1 mrg break;
627 1.1 mrg
628 1.1 mrg case SWAP_ON:
629 1.32 chs
630 1.1 mrg /*
631 1.1 mrg * check for duplicates. if none found, then insert a
632 1.1 mrg * dummy entry on the list to prevent someone else from
633 1.1 mrg * trying to enable this device while we are working on
634 1.1 mrg * it.
635 1.1 mrg */
636 1.32 chs
637 1.1 mrg priority = SCARG(uap, misc);
638 1.48 fvdl sdp = malloc(sizeof *sdp, M_VMSWAP, M_WAITOK);
639 1.48 fvdl spp = malloc(sizeof *spp, M_VMSWAP, M_WAITOK);
640 1.26 chs simple_lock(&uvm.swap_data_lock);
641 1.48 fvdl if (swaplist_find(vp, 0) != NULL) {
642 1.1 mrg error = EBUSY;
643 1.26 chs simple_unlock(&uvm.swap_data_lock);
644 1.48 fvdl free(sdp, M_VMSWAP);
645 1.48 fvdl free(spp, M_VMSWAP);
646 1.16 mrg break;
647 1.1 mrg }
648 1.14 perry memset(sdp, 0, sizeof(*sdp));
649 1.1 mrg sdp->swd_flags = SWF_FAKE; /* placeholder only */
650 1.1 mrg sdp->swd_vp = vp;
651 1.1 mrg sdp->swd_dev = (vp->v_type == VBLK) ? vp->v_rdev : NODEV;
652 1.33 thorpej BUFQ_INIT(&sdp->swd_tab);
653 1.32 chs
654 1.1 mrg swaplist_insert(sdp, spp, priority);
655 1.26 chs simple_unlock(&uvm.swap_data_lock);
656 1.1 mrg
657 1.16 mrg sdp->swd_pathlen = len;
658 1.16 mrg sdp->swd_path = malloc(sdp->swd_pathlen, M_VMSWAP, M_WAITOK);
659 1.19 pk if (copystr(userpath, sdp->swd_path, sdp->swd_pathlen, 0) != 0)
660 1.19 pk panic("swapctl: copystr");
661 1.32 chs
662 1.1 mrg /*
663 1.1 mrg * we've now got a FAKE placeholder in the swap list.
664 1.1 mrg * now attempt to enable swap on it. if we fail, undo
665 1.1 mrg * what we've done and kill the fake entry we just inserted.
666 1.1 mrg * if swap_on is a success, it will clear the SWF_FAKE flag
667 1.1 mrg */
668 1.32 chs
669 1.1 mrg if ((error = swap_on(p, sdp)) != 0) {
670 1.26 chs simple_lock(&uvm.swap_data_lock);
671 1.8 mrg (void) swaplist_find(vp, 1); /* kill fake entry */
672 1.1 mrg swaplist_trim();
673 1.26 chs simple_unlock(&uvm.swap_data_lock);
674 1.19 pk free(sdp->swd_path, M_VMSWAP);
675 1.32 chs free(sdp, M_VMSWAP);
676 1.1 mrg break;
677 1.1 mrg }
678 1.1 mrg break;
679 1.1 mrg
680 1.1 mrg case SWAP_OFF:
681 1.26 chs simple_lock(&uvm.swap_data_lock);
682 1.1 mrg if ((sdp = swaplist_find(vp, 0)) == NULL) {
683 1.26 chs simple_unlock(&uvm.swap_data_lock);
684 1.1 mrg error = ENXIO;
685 1.1 mrg break;
686 1.1 mrg }
687 1.32 chs
688 1.1 mrg /*
689 1.1 mrg * If a device isn't in use or enabled, we
690 1.1 mrg * can't stop swapping from it (again).
691 1.1 mrg */
692 1.1 mrg if ((sdp->swd_flags & (SWF_INUSE|SWF_ENABLE)) == 0) {
693 1.26 chs simple_unlock(&uvm.swap_data_lock);
694 1.1 mrg error = EBUSY;
695 1.16 mrg break;
696 1.1 mrg }
697 1.1 mrg
698 1.1 mrg /*
699 1.32 chs * do the real work.
700 1.1 mrg */
701 1.45 pk error = swap_off(p, sdp);
702 1.1 mrg break;
703 1.1 mrg
704 1.1 mrg default:
705 1.1 mrg error = EINVAL;
706 1.1 mrg }
707 1.1 mrg
708 1.1 mrg /*
709 1.39 chs * done! release the ref gained by namei() and unlock.
710 1.1 mrg */
711 1.1 mrg vput(vp);
712 1.39 chs
713 1.16 mrg out:
714 1.32 chs lockmgr(&swap_syscall_lock, LK_RELEASE, NULL);
715 1.1 mrg
716 1.1 mrg UVMHIST_LOG(pdhist, "<- done! error=%d", error, 0, 0, 0);
717 1.1 mrg return (error);
718 1.1 mrg }
719 1.1 mrg
720 1.1 mrg /*
721 1.1 mrg * swap_on: attempt to enable a swapdev for swapping. note that the
722 1.1 mrg * swapdev is already on the global list, but disabled (marked
723 1.1 mrg * SWF_FAKE).
724 1.1 mrg *
725 1.1 mrg * => we avoid the start of the disk (to protect disk labels)
726 1.1 mrg * => we also avoid the miniroot, if we are swapping to root.
727 1.26 chs * => caller should leave uvm.swap_data_lock unlocked, we may lock it
728 1.1 mrg * if needed.
729 1.1 mrg */
730 1.1 mrg static int
731 1.1 mrg swap_on(p, sdp)
732 1.1 mrg struct proc *p;
733 1.1 mrg struct swapdev *sdp;
734 1.1 mrg {
735 1.1 mrg static int count = 0; /* static */
736 1.1 mrg struct vnode *vp;
737 1.1 mrg int error, npages, nblocks, size;
738 1.1 mrg long addr;
739 1.48 fvdl u_long result;
740 1.1 mrg struct vattr va;
741 1.1 mrg #ifdef NFS
742 1.1 mrg extern int (**nfsv2_vnodeop_p) __P((void *));
743 1.1 mrg #endif /* NFS */
744 1.1 mrg dev_t dev;
745 1.1 mrg UVMHIST_FUNC("swap_on"); UVMHIST_CALLED(pdhist);
746 1.1 mrg
747 1.1 mrg /*
748 1.1 mrg * we want to enable swapping on sdp. the swd_vp contains
749 1.1 mrg * the vnode we want (locked and ref'd), and the swd_dev
750 1.1 mrg * contains the dev_t of the file, if it a block device.
751 1.1 mrg */
752 1.1 mrg
753 1.1 mrg vp = sdp->swd_vp;
754 1.1 mrg dev = sdp->swd_dev;
755 1.1 mrg
756 1.1 mrg /*
757 1.1 mrg * open the swap file (mostly useful for block device files to
758 1.1 mrg * let device driver know what is up).
759 1.1 mrg *
760 1.1 mrg * we skip the open/close for root on swap because the root
761 1.1 mrg * has already been opened when root was mounted (mountroot).
762 1.1 mrg */
763 1.1 mrg if (vp != rootvp) {
764 1.1 mrg if ((error = VOP_OPEN(vp, FREAD|FWRITE, p->p_ucred, p)))
765 1.1 mrg return (error);
766 1.1 mrg }
767 1.1 mrg
768 1.1 mrg /* XXX this only works for block devices */
769 1.1 mrg UVMHIST_LOG(pdhist, " dev=%d, major(dev)=%d", dev, major(dev), 0,0);
770 1.1 mrg
771 1.1 mrg /*
772 1.1 mrg * we now need to determine the size of the swap area. for
773 1.1 mrg * block specials we can call the d_psize function.
774 1.1 mrg * for normal files, we must stat [get attrs].
775 1.1 mrg *
776 1.1 mrg * we put the result in nblks.
777 1.1 mrg * for normal files, we also want the filesystem block size
778 1.1 mrg * (which we get with statfs).
779 1.1 mrg */
780 1.1 mrg switch (vp->v_type) {
781 1.1 mrg case VBLK:
782 1.1 mrg if (bdevsw[major(dev)].d_psize == 0 ||
783 1.1 mrg (nblocks = (*bdevsw[major(dev)].d_psize)(dev)) == -1) {
784 1.1 mrg error = ENXIO;
785 1.1 mrg goto bad;
786 1.1 mrg }
787 1.1 mrg break;
788 1.1 mrg
789 1.1 mrg case VREG:
790 1.1 mrg if ((error = VOP_GETATTR(vp, &va, p->p_ucred, p)))
791 1.1 mrg goto bad;
792 1.1 mrg nblocks = (int)btodb(va.va_size);
793 1.1 mrg if ((error =
794 1.1 mrg VFS_STATFS(vp->v_mount, &vp->v_mount->mnt_stat, p)) != 0)
795 1.1 mrg goto bad;
796 1.1 mrg
797 1.1 mrg sdp->swd_bsize = vp->v_mount->mnt_stat.f_iosize;
798 1.1 mrg /*
799 1.1 mrg * limit the max # of outstanding I/O requests we issue
800 1.1 mrg * at any one time. take it easy on NFS servers.
801 1.1 mrg */
802 1.1 mrg #ifdef NFS
803 1.1 mrg if (vp->v_op == nfsv2_vnodeop_p)
804 1.1 mrg sdp->swd_maxactive = 2; /* XXX */
805 1.1 mrg else
806 1.1 mrg #endif /* NFS */
807 1.1 mrg sdp->swd_maxactive = 8; /* XXX */
808 1.1 mrg break;
809 1.1 mrg
810 1.1 mrg default:
811 1.1 mrg error = ENXIO;
812 1.1 mrg goto bad;
813 1.1 mrg }
814 1.1 mrg
815 1.1 mrg /*
816 1.1 mrg * save nblocks in a safe place and convert to pages.
817 1.1 mrg */
818 1.1 mrg
819 1.16 mrg sdp->swd_ose.ose_nblks = nblocks;
820 1.20 chs npages = dbtob((u_int64_t)nblocks) >> PAGE_SHIFT;
821 1.1 mrg
822 1.1 mrg /*
823 1.1 mrg * for block special files, we want to make sure that leave
824 1.1 mrg * the disklabel and bootblocks alone, so we arrange to skip
825 1.32 chs * over them (arbitrarily choosing to skip PAGE_SIZE bytes).
826 1.1 mrg * note that because of this the "size" can be less than the
827 1.1 mrg * actual number of blocks on the device.
828 1.1 mrg */
829 1.1 mrg if (vp->v_type == VBLK) {
830 1.1 mrg /* we use pages 1 to (size - 1) [inclusive] */
831 1.1 mrg size = npages - 1;
832 1.1 mrg addr = 1;
833 1.1 mrg } else {
834 1.1 mrg /* we use pages 0 to (size - 1) [inclusive] */
835 1.1 mrg size = npages;
836 1.1 mrg addr = 0;
837 1.1 mrg }
838 1.1 mrg
839 1.1 mrg /*
840 1.1 mrg * make sure we have enough blocks for a reasonable sized swap
841 1.1 mrg * area. we want at least one page.
842 1.1 mrg */
843 1.1 mrg
844 1.1 mrg if (size < 1) {
845 1.1 mrg UVMHIST_LOG(pdhist, " size <= 1!!", 0, 0, 0, 0);
846 1.1 mrg error = EINVAL;
847 1.1 mrg goto bad;
848 1.1 mrg }
849 1.1 mrg
850 1.1 mrg UVMHIST_LOG(pdhist, " dev=%x: size=%d addr=%ld\n", dev, size, addr, 0);
851 1.1 mrg
852 1.1 mrg /*
853 1.1 mrg * now we need to allocate an extent to manage this swap device
854 1.1 mrg */
855 1.42 enami snprintf(sdp->swd_exname, sizeof(sdp->swd_exname), "swap0x%04x",
856 1.42 enami count++);
857 1.1 mrg
858 1.1 mrg /* note that extent_create's 3rd arg is inclusive, thus "- 1" */
859 1.42 enami sdp->swd_ex = extent_create(sdp->swd_exname, 0, npages - 1, M_VMSWAP,
860 1.12 pk 0, 0, EX_WAITOK);
861 1.1 mrg /* allocate the `saved' region from the extent so it won't be used */
862 1.1 mrg if (addr) {
863 1.1 mrg if (extent_alloc_region(sdp->swd_ex, 0, addr, EX_WAITOK))
864 1.1 mrg panic("disklabel region");
865 1.1 mrg }
866 1.1 mrg
867 1.1 mrg /*
868 1.51 chs * if the vnode we are swapping to is the root vnode
869 1.1 mrg * (i.e. we are swapping to the miniroot) then we want
870 1.51 chs * to make sure we don't overwrite it. do a statfs to
871 1.1 mrg * find its size and skip over it.
872 1.1 mrg */
873 1.1 mrg if (vp == rootvp) {
874 1.1 mrg struct mount *mp;
875 1.1 mrg struct statfs *sp;
876 1.1 mrg int rootblocks, rootpages;
877 1.1 mrg
878 1.1 mrg mp = rootvnode->v_mount;
879 1.1 mrg sp = &mp->mnt_stat;
880 1.1 mrg rootblocks = sp->f_blocks * btodb(sp->f_bsize);
881 1.20 chs rootpages = round_page(dbtob(rootblocks)) >> PAGE_SHIFT;
882 1.32 chs if (rootpages > size)
883 1.1 mrg panic("swap_on: miniroot larger than swap?");
884 1.1 mrg
885 1.51 chs if (extent_alloc_region(sdp->swd_ex, addr,
886 1.1 mrg rootpages, EX_WAITOK))
887 1.1 mrg panic("swap_on: unable to preserve miniroot");
888 1.1 mrg
889 1.32 chs size -= rootpages;
890 1.1 mrg printf("Preserved %d pages of miniroot ", rootpages);
891 1.32 chs printf("leaving %d pages of swap\n", size);
892 1.1 mrg }
893 1.1 mrg
894 1.43 chs /*
895 1.43 chs * try to add anons to reflect the new swap space.
896 1.43 chs */
897 1.43 chs
898 1.43 chs error = uvm_anon_add(size);
899 1.43 chs if (error) {
900 1.43 chs goto bad;
901 1.43 chs }
902 1.43 chs
903 1.39 chs /*
904 1.39 chs * add a ref to vp to reflect usage as a swap device.
905 1.39 chs */
906 1.39 chs vref(vp);
907 1.39 chs
908 1.1 mrg /*
909 1.1 mrg * now add the new swapdev to the drum and enable.
910 1.1 mrg */
911 1.48 fvdl if (extent_alloc(swapmap, npages, EX_NOALIGN, EX_NOBOUNDARY,
912 1.48 fvdl EX_WAITOK, &result))
913 1.48 fvdl panic("swapdrum_add");
914 1.48 fvdl
915 1.48 fvdl sdp->swd_drumoffset = (int)result;
916 1.48 fvdl sdp->swd_drumsize = npages;
917 1.48 fvdl sdp->swd_npages = size;
918 1.26 chs simple_lock(&uvm.swap_data_lock);
919 1.1 mrg sdp->swd_flags &= ~SWF_FAKE; /* going live */
920 1.1 mrg sdp->swd_flags |= (SWF_INUSE|SWF_ENABLE);
921 1.32 chs uvmexp.swpages += size;
922 1.26 chs simple_unlock(&uvm.swap_data_lock);
923 1.1 mrg return (0);
924 1.1 mrg
925 1.1 mrg /*
926 1.43 chs * failure: clean up and return error.
927 1.1 mrg */
928 1.43 chs
929 1.43 chs bad:
930 1.43 chs if (sdp->swd_ex) {
931 1.43 chs extent_destroy(sdp->swd_ex);
932 1.43 chs }
933 1.43 chs if (vp != rootvp) {
934 1.1 mrg (void)VOP_CLOSE(vp, FREAD|FWRITE, p->p_ucred, p);
935 1.43 chs }
936 1.1 mrg return (error);
937 1.1 mrg }
938 1.1 mrg
939 1.1 mrg /*
940 1.1 mrg * swap_off: stop swapping on swapdev
941 1.1 mrg *
942 1.32 chs * => swap data should be locked, we will unlock.
943 1.1 mrg */
944 1.1 mrg static int
945 1.1 mrg swap_off(p, sdp)
946 1.1 mrg struct proc *p;
947 1.1 mrg struct swapdev *sdp;
948 1.1 mrg {
949 1.1 mrg UVMHIST_FUNC("swap_off"); UVMHIST_CALLED(pdhist);
950 1.32 chs UVMHIST_LOG(pdhist, " dev=%x", sdp->swd_dev,0,0,0);
951 1.1 mrg
952 1.32 chs /* disable the swap area being removed */
953 1.1 mrg sdp->swd_flags &= ~SWF_ENABLE;
954 1.32 chs simple_unlock(&uvm.swap_data_lock);
955 1.32 chs
956 1.32 chs /*
957 1.32 chs * the idea is to find all the pages that are paged out to this
958 1.32 chs * device, and page them all in. in uvm, swap-backed pageable
959 1.32 chs * memory can take two forms: aobjs and anons. call the
960 1.32 chs * swapoff hook for each subsystem to bring in pages.
961 1.32 chs */
962 1.1 mrg
963 1.32 chs if (uao_swap_off(sdp->swd_drumoffset,
964 1.32 chs sdp->swd_drumoffset + sdp->swd_drumsize) ||
965 1.32 chs anon_swap_off(sdp->swd_drumoffset,
966 1.32 chs sdp->swd_drumoffset + sdp->swd_drumsize)) {
967 1.51 chs
968 1.32 chs simple_lock(&uvm.swap_data_lock);
969 1.32 chs sdp->swd_flags |= SWF_ENABLE;
970 1.32 chs simple_unlock(&uvm.swap_data_lock);
971 1.32 chs return ENOMEM;
972 1.32 chs }
973 1.46 chs KASSERT(sdp->swd_npginuse == sdp->swd_npgbad);
974 1.1 mrg
975 1.1 mrg /*
976 1.58 enami * done with the vnode.
977 1.39 chs * drop our ref on the vnode before calling VOP_CLOSE()
978 1.39 chs * so that spec_close() can tell if this is the last close.
979 1.1 mrg */
980 1.39 chs vrele(sdp->swd_vp);
981 1.32 chs if (sdp->swd_vp != rootvp) {
982 1.32 chs (void) VOP_CLOSE(sdp->swd_vp, FREAD|FWRITE, p->p_ucred, p);
983 1.32 chs }
984 1.32 chs
985 1.32 chs /* remove anons from the system */
986 1.32 chs uvm_anon_remove(sdp->swd_npages);
987 1.32 chs
988 1.32 chs simple_lock(&uvm.swap_data_lock);
989 1.32 chs uvmexp.swpages -= sdp->swd_npages;
990 1.1 mrg
991 1.32 chs if (swaplist_find(sdp->swd_vp, 1) == NULL)
992 1.32 chs panic("swap_off: swapdev not in list\n");
993 1.32 chs swaplist_trim();
994 1.48 fvdl simple_unlock(&uvm.swap_data_lock);
995 1.1 mrg
996 1.32 chs /*
997 1.32 chs * free all resources!
998 1.32 chs */
999 1.32 chs extent_free(swapmap, sdp->swd_drumoffset, sdp->swd_drumsize,
1000 1.32 chs EX_WAITOK);
1001 1.1 mrg extent_destroy(sdp->swd_ex);
1002 1.32 chs free(sdp, M_VMSWAP);
1003 1.1 mrg return (0);
1004 1.1 mrg }
1005 1.1 mrg
1006 1.1 mrg /*
1007 1.1 mrg * /dev/drum interface and i/o functions
1008 1.1 mrg */
1009 1.1 mrg
1010 1.1 mrg /*
1011 1.1 mrg * swread: the read function for the drum (just a call to physio)
1012 1.1 mrg */
1013 1.1 mrg /*ARGSUSED*/
1014 1.1 mrg int
1015 1.1 mrg swread(dev, uio, ioflag)
1016 1.1 mrg dev_t dev;
1017 1.1 mrg struct uio *uio;
1018 1.1 mrg int ioflag;
1019 1.1 mrg {
1020 1.1 mrg UVMHIST_FUNC("swread"); UVMHIST_CALLED(pdhist);
1021 1.1 mrg
1022 1.1 mrg UVMHIST_LOG(pdhist, " dev=%x offset=%qx", dev, uio->uio_offset, 0, 0);
1023 1.1 mrg return (physio(swstrategy, NULL, dev, B_READ, minphys, uio));
1024 1.1 mrg }
1025 1.1 mrg
1026 1.1 mrg /*
1027 1.1 mrg * swwrite: the write function for the drum (just a call to physio)
1028 1.1 mrg */
1029 1.1 mrg /*ARGSUSED*/
1030 1.1 mrg int
1031 1.1 mrg swwrite(dev, uio, ioflag)
1032 1.1 mrg dev_t dev;
1033 1.1 mrg struct uio *uio;
1034 1.1 mrg int ioflag;
1035 1.1 mrg {
1036 1.1 mrg UVMHIST_FUNC("swwrite"); UVMHIST_CALLED(pdhist);
1037 1.1 mrg
1038 1.1 mrg UVMHIST_LOG(pdhist, " dev=%x offset=%qx", dev, uio->uio_offset, 0, 0);
1039 1.1 mrg return (physio(swstrategy, NULL, dev, B_WRITE, minphys, uio));
1040 1.1 mrg }
1041 1.1 mrg
1042 1.1 mrg /*
1043 1.1 mrg * swstrategy: perform I/O on the drum
1044 1.1 mrg *
1045 1.1 mrg * => we must map the i/o request from the drum to the correct swapdev.
1046 1.1 mrg */
1047 1.1 mrg void
1048 1.1 mrg swstrategy(bp)
1049 1.1 mrg struct buf *bp;
1050 1.1 mrg {
1051 1.1 mrg struct swapdev *sdp;
1052 1.1 mrg struct vnode *vp;
1053 1.25 chs int s, pageno, bn;
1054 1.1 mrg UVMHIST_FUNC("swstrategy"); UVMHIST_CALLED(pdhist);
1055 1.1 mrg
1056 1.1 mrg /*
1057 1.1 mrg * convert block number to swapdev. note that swapdev can't
1058 1.1 mrg * be yanked out from under us because we are holding resources
1059 1.1 mrg * in it (i.e. the blocks we are doing I/O on).
1060 1.1 mrg */
1061 1.41 chs pageno = dbtob((int64_t)bp->b_blkno) >> PAGE_SHIFT;
1062 1.26 chs simple_lock(&uvm.swap_data_lock);
1063 1.1 mrg sdp = swapdrum_getsdp(pageno);
1064 1.26 chs simple_unlock(&uvm.swap_data_lock);
1065 1.1 mrg if (sdp == NULL) {
1066 1.1 mrg bp->b_error = EINVAL;
1067 1.1 mrg bp->b_flags |= B_ERROR;
1068 1.1 mrg biodone(bp);
1069 1.1 mrg UVMHIST_LOG(pdhist, " failed to get swap device", 0, 0, 0, 0);
1070 1.1 mrg return;
1071 1.1 mrg }
1072 1.1 mrg
1073 1.1 mrg /*
1074 1.1 mrg * convert drum page number to block number on this swapdev.
1075 1.1 mrg */
1076 1.1 mrg
1077 1.32 chs pageno -= sdp->swd_drumoffset; /* page # on swapdev */
1078 1.44 enami bn = btodb((u_int64_t)pageno << PAGE_SHIFT); /* convert to diskblock */
1079 1.1 mrg
1080 1.41 chs UVMHIST_LOG(pdhist, " %s: mapoff=%x bn=%x bcount=%ld",
1081 1.1 mrg ((bp->b_flags & B_READ) == 0) ? "write" : "read",
1082 1.1 mrg sdp->swd_drumoffset, bn, bp->b_bcount);
1083 1.1 mrg
1084 1.1 mrg /*
1085 1.1 mrg * for block devices we finish up here.
1086 1.32 chs * for regular files we have to do more work which we delegate
1087 1.1 mrg * to sw_reg_strategy().
1088 1.1 mrg */
1089 1.1 mrg
1090 1.1 mrg switch (sdp->swd_vp->v_type) {
1091 1.1 mrg default:
1092 1.1 mrg panic("swstrategy: vnode type 0x%x", sdp->swd_vp->v_type);
1093 1.32 chs
1094 1.1 mrg case VBLK:
1095 1.1 mrg
1096 1.1 mrg /*
1097 1.1 mrg * must convert "bp" from an I/O on /dev/drum to an I/O
1098 1.1 mrg * on the swapdev (sdp).
1099 1.1 mrg */
1100 1.25 chs s = splbio();
1101 1.1 mrg bp->b_blkno = bn; /* swapdev block number */
1102 1.1 mrg vp = sdp->swd_vp; /* swapdev vnode pointer */
1103 1.1 mrg bp->b_dev = sdp->swd_dev; /* swapdev dev_t */
1104 1.1 mrg
1105 1.1 mrg /*
1106 1.1 mrg * if we are doing a write, we have to redirect the i/o on
1107 1.1 mrg * drum's v_numoutput counter to the swapdevs.
1108 1.1 mrg */
1109 1.1 mrg if ((bp->b_flags & B_READ) == 0) {
1110 1.1 mrg vwakeup(bp); /* kills one 'v_numoutput' on drum */
1111 1.1 mrg vp->v_numoutput++; /* put it on swapdev */
1112 1.1 mrg }
1113 1.1 mrg
1114 1.41 chs /*
1115 1.1 mrg * finally plug in swapdev vnode and start I/O
1116 1.1 mrg */
1117 1.1 mrg bp->b_vp = vp;
1118 1.25 chs splx(s);
1119 1.1 mrg VOP_STRATEGY(bp);
1120 1.1 mrg return;
1121 1.32 chs
1122 1.1 mrg case VREG:
1123 1.1 mrg /*
1124 1.32 chs * delegate to sw_reg_strategy function.
1125 1.1 mrg */
1126 1.1 mrg sw_reg_strategy(sdp, bp, bn);
1127 1.1 mrg return;
1128 1.1 mrg }
1129 1.1 mrg /* NOTREACHED */
1130 1.1 mrg }
1131 1.1 mrg
1132 1.1 mrg /*
1133 1.1 mrg * sw_reg_strategy: handle swap i/o to regular files
1134 1.1 mrg */
1135 1.1 mrg static void
1136 1.1 mrg sw_reg_strategy(sdp, bp, bn)
1137 1.1 mrg struct swapdev *sdp;
1138 1.1 mrg struct buf *bp;
1139 1.1 mrg int bn;
1140 1.1 mrg {
1141 1.1 mrg struct vnode *vp;
1142 1.1 mrg struct vndxfer *vnx;
1143 1.44 enami daddr_t nbn;
1144 1.1 mrg caddr_t addr;
1145 1.44 enami off_t byteoff;
1146 1.9 mrg int s, off, nra, error, sz, resid;
1147 1.1 mrg UVMHIST_FUNC("sw_reg_strategy"); UVMHIST_CALLED(pdhist);
1148 1.1 mrg
1149 1.1 mrg /*
1150 1.1 mrg * allocate a vndxfer head for this transfer and point it to
1151 1.1 mrg * our buffer.
1152 1.1 mrg */
1153 1.12 pk getvndxfer(vnx);
1154 1.1 mrg vnx->vx_flags = VX_BUSY;
1155 1.1 mrg vnx->vx_error = 0;
1156 1.1 mrg vnx->vx_pending = 0;
1157 1.1 mrg vnx->vx_bp = bp;
1158 1.1 mrg vnx->vx_sdp = sdp;
1159 1.1 mrg
1160 1.1 mrg /*
1161 1.1 mrg * setup for main loop where we read filesystem blocks into
1162 1.1 mrg * our buffer.
1163 1.1 mrg */
1164 1.1 mrg error = 0;
1165 1.1 mrg bp->b_resid = bp->b_bcount; /* nothing transfered yet! */
1166 1.1 mrg addr = bp->b_data; /* current position in buffer */
1167 1.44 enami byteoff = dbtob((u_int64_t)bn);
1168 1.1 mrg
1169 1.1 mrg for (resid = bp->b_resid; resid; resid -= sz) {
1170 1.1 mrg struct vndbuf *nbp;
1171 1.1 mrg
1172 1.1 mrg /*
1173 1.1 mrg * translate byteoffset into block number. return values:
1174 1.1 mrg * vp = vnode of underlying device
1175 1.1 mrg * nbn = new block number (on underlying vnode dev)
1176 1.1 mrg * nra = num blocks we can read-ahead (excludes requested
1177 1.1 mrg * block)
1178 1.1 mrg */
1179 1.1 mrg nra = 0;
1180 1.1 mrg error = VOP_BMAP(sdp->swd_vp, byteoff / sdp->swd_bsize,
1181 1.1 mrg &vp, &nbn, &nra);
1182 1.1 mrg
1183 1.32 chs if (error == 0 && nbn == (daddr_t)-1) {
1184 1.51 chs /*
1185 1.23 marc * this used to just set error, but that doesn't
1186 1.23 marc * do the right thing. Instead, it causes random
1187 1.23 marc * memory errors. The panic() should remain until
1188 1.23 marc * this condition doesn't destabilize the system.
1189 1.23 marc */
1190 1.23 marc #if 1
1191 1.23 marc panic("sw_reg_strategy: swap to sparse file");
1192 1.23 marc #else
1193 1.1 mrg error = EIO; /* failure */
1194 1.23 marc #endif
1195 1.23 marc }
1196 1.1 mrg
1197 1.1 mrg /*
1198 1.1 mrg * punt if there was an error or a hole in the file.
1199 1.1 mrg * we must wait for any i/o ops we have already started
1200 1.1 mrg * to finish before returning.
1201 1.1 mrg *
1202 1.1 mrg * XXX we could deal with holes here but it would be
1203 1.1 mrg * a hassle (in the write case).
1204 1.1 mrg */
1205 1.1 mrg if (error) {
1206 1.1 mrg s = splbio();
1207 1.1 mrg vnx->vx_error = error; /* pass error up */
1208 1.1 mrg goto out;
1209 1.1 mrg }
1210 1.1 mrg
1211 1.1 mrg /*
1212 1.1 mrg * compute the size ("sz") of this transfer (in bytes).
1213 1.1 mrg */
1214 1.41 chs off = byteoff % sdp->swd_bsize;
1215 1.41 chs sz = (1 + nra) * sdp->swd_bsize - off;
1216 1.41 chs if (sz > resid)
1217 1.1 mrg sz = resid;
1218 1.1 mrg
1219 1.41 chs UVMHIST_LOG(pdhist, "sw_reg_strategy: "
1220 1.41 chs "vp %p/%p offset 0x%x/0x%x",
1221 1.41 chs sdp->swd_vp, vp, byteoff, nbn);
1222 1.1 mrg
1223 1.1 mrg /*
1224 1.1 mrg * now get a buf structure. note that the vb_buf is
1225 1.1 mrg * at the front of the nbp structure so that you can
1226 1.1 mrg * cast pointers between the two structure easily.
1227 1.1 mrg */
1228 1.12 pk getvndbuf(nbp);
1229 1.1 mrg nbp->vb_buf.b_flags = bp->b_flags | B_CALL;
1230 1.1 mrg nbp->vb_buf.b_bcount = sz;
1231 1.12 pk nbp->vb_buf.b_bufsize = sz;
1232 1.1 mrg nbp->vb_buf.b_error = 0;
1233 1.1 mrg nbp->vb_buf.b_data = addr;
1234 1.41 chs nbp->vb_buf.b_lblkno = 0;
1235 1.1 mrg nbp->vb_buf.b_blkno = nbn + btodb(off);
1236 1.34 thorpej nbp->vb_buf.b_rawblkno = nbp->vb_buf.b_blkno;
1237 1.1 mrg nbp->vb_buf.b_iodone = sw_reg_iodone;
1238 1.53 chs nbp->vb_buf.b_vp = vp;
1239 1.53 chs if (vp->v_type == VBLK) {
1240 1.53 chs nbp->vb_buf.b_dev = vp->v_rdev;
1241 1.53 chs }
1242 1.30 fvdl LIST_INIT(&nbp->vb_buf.b_dep);
1243 1.1 mrg
1244 1.1 mrg nbp->vb_xfer = vnx; /* patch it back in to vnx */
1245 1.1 mrg
1246 1.1 mrg /*
1247 1.1 mrg * Just sort by block number
1248 1.1 mrg */
1249 1.1 mrg s = splbio();
1250 1.1 mrg if (vnx->vx_error != 0) {
1251 1.1 mrg putvndbuf(nbp);
1252 1.1 mrg goto out;
1253 1.1 mrg }
1254 1.1 mrg vnx->vx_pending++;
1255 1.1 mrg
1256 1.1 mrg /* sort it in and start I/O if we are not over our limit */
1257 1.33 thorpej disksort_blkno(&sdp->swd_tab, &nbp->vb_buf);
1258 1.1 mrg sw_reg_start(sdp);
1259 1.1 mrg splx(s);
1260 1.1 mrg
1261 1.1 mrg /*
1262 1.1 mrg * advance to the next I/O
1263 1.1 mrg */
1264 1.9 mrg byteoff += sz;
1265 1.1 mrg addr += sz;
1266 1.1 mrg }
1267 1.1 mrg
1268 1.1 mrg s = splbio();
1269 1.1 mrg
1270 1.1 mrg out: /* Arrive here at splbio */
1271 1.1 mrg vnx->vx_flags &= ~VX_BUSY;
1272 1.1 mrg if (vnx->vx_pending == 0) {
1273 1.1 mrg if (vnx->vx_error != 0) {
1274 1.1 mrg bp->b_error = vnx->vx_error;
1275 1.1 mrg bp->b_flags |= B_ERROR;
1276 1.1 mrg }
1277 1.1 mrg putvndxfer(vnx);
1278 1.1 mrg biodone(bp);
1279 1.1 mrg }
1280 1.1 mrg splx(s);
1281 1.1 mrg }
1282 1.1 mrg
1283 1.1 mrg /*
1284 1.1 mrg * sw_reg_start: start an I/O request on the requested swapdev
1285 1.1 mrg *
1286 1.1 mrg * => reqs are sorted by disksort (above)
1287 1.1 mrg */
1288 1.1 mrg static void
1289 1.1 mrg sw_reg_start(sdp)
1290 1.1 mrg struct swapdev *sdp;
1291 1.1 mrg {
1292 1.1 mrg struct buf *bp;
1293 1.1 mrg UVMHIST_FUNC("sw_reg_start"); UVMHIST_CALLED(pdhist);
1294 1.1 mrg
1295 1.8 mrg /* recursion control */
1296 1.1 mrg if ((sdp->swd_flags & SWF_BUSY) != 0)
1297 1.1 mrg return;
1298 1.1 mrg
1299 1.1 mrg sdp->swd_flags |= SWF_BUSY;
1300 1.1 mrg
1301 1.33 thorpej while (sdp->swd_active < sdp->swd_maxactive) {
1302 1.33 thorpej bp = BUFQ_FIRST(&sdp->swd_tab);
1303 1.1 mrg if (bp == NULL)
1304 1.1 mrg break;
1305 1.33 thorpej BUFQ_REMOVE(&sdp->swd_tab, bp);
1306 1.33 thorpej sdp->swd_active++;
1307 1.1 mrg
1308 1.1 mrg UVMHIST_LOG(pdhist,
1309 1.1 mrg "sw_reg_start: bp %p vp %p blkno %p cnt %lx",
1310 1.1 mrg bp, bp->b_vp, bp->b_blkno, bp->b_bcount);
1311 1.1 mrg if ((bp->b_flags & B_READ) == 0)
1312 1.1 mrg bp->b_vp->v_numoutput++;
1313 1.41 chs
1314 1.1 mrg VOP_STRATEGY(bp);
1315 1.1 mrg }
1316 1.1 mrg sdp->swd_flags &= ~SWF_BUSY;
1317 1.1 mrg }
1318 1.1 mrg
1319 1.1 mrg /*
1320 1.1 mrg * sw_reg_iodone: one of our i/o's has completed and needs post-i/o cleanup
1321 1.1 mrg *
1322 1.1 mrg * => note that we can recover the vndbuf struct by casting the buf ptr
1323 1.1 mrg */
1324 1.1 mrg static void
1325 1.1 mrg sw_reg_iodone(bp)
1326 1.1 mrg struct buf *bp;
1327 1.1 mrg {
1328 1.1 mrg struct vndbuf *vbp = (struct vndbuf *) bp;
1329 1.1 mrg struct vndxfer *vnx = vbp->vb_xfer;
1330 1.1 mrg struct buf *pbp = vnx->vx_bp; /* parent buffer */
1331 1.1 mrg struct swapdev *sdp = vnx->vx_sdp;
1332 1.1 mrg int s, resid;
1333 1.1 mrg UVMHIST_FUNC("sw_reg_iodone"); UVMHIST_CALLED(pdhist);
1334 1.1 mrg
1335 1.1 mrg UVMHIST_LOG(pdhist, " vbp=%p vp=%p blkno=%x addr=%p",
1336 1.1 mrg vbp, vbp->vb_buf.b_vp, vbp->vb_buf.b_blkno, vbp->vb_buf.b_data);
1337 1.1 mrg UVMHIST_LOG(pdhist, " cnt=%lx resid=%lx",
1338 1.1 mrg vbp->vb_buf.b_bcount, vbp->vb_buf.b_resid, 0, 0);
1339 1.1 mrg
1340 1.1 mrg /*
1341 1.1 mrg * protect vbp at splbio and update.
1342 1.1 mrg */
1343 1.1 mrg
1344 1.1 mrg s = splbio();
1345 1.1 mrg resid = vbp->vb_buf.b_bcount - vbp->vb_buf.b_resid;
1346 1.1 mrg pbp->b_resid -= resid;
1347 1.1 mrg vnx->vx_pending--;
1348 1.1 mrg
1349 1.1 mrg if (vbp->vb_buf.b_error) {
1350 1.1 mrg UVMHIST_LOG(pdhist, " got error=%d !",
1351 1.1 mrg vbp->vb_buf.b_error, 0, 0, 0);
1352 1.1 mrg
1353 1.1 mrg /* pass error upward */
1354 1.1 mrg vnx->vx_error = vbp->vb_buf.b_error;
1355 1.35 chs }
1356 1.35 chs
1357 1.35 chs /*
1358 1.1 mrg * kill vbp structure
1359 1.1 mrg */
1360 1.1 mrg putvndbuf(vbp);
1361 1.1 mrg
1362 1.1 mrg /*
1363 1.1 mrg * wrap up this transaction if it has run to completion or, in
1364 1.1 mrg * case of an error, when all auxiliary buffers have returned.
1365 1.1 mrg */
1366 1.1 mrg if (vnx->vx_error != 0) {
1367 1.1 mrg /* pass error upward */
1368 1.1 mrg pbp->b_flags |= B_ERROR;
1369 1.1 mrg pbp->b_error = vnx->vx_error;
1370 1.1 mrg if ((vnx->vx_flags & VX_BUSY) == 0 && vnx->vx_pending == 0) {
1371 1.1 mrg putvndxfer(vnx);
1372 1.1 mrg biodone(pbp);
1373 1.1 mrg }
1374 1.11 pk } else if (pbp->b_resid == 0) {
1375 1.46 chs KASSERT(vnx->vx_pending == 0);
1376 1.1 mrg if ((vnx->vx_flags & VX_BUSY) == 0) {
1377 1.8 mrg UVMHIST_LOG(pdhist, " iodone error=%d !",
1378 1.8 mrg pbp, vnx->vx_error, 0, 0);
1379 1.8 mrg putvndxfer(vnx);
1380 1.1 mrg biodone(pbp);
1381 1.1 mrg }
1382 1.1 mrg }
1383 1.1 mrg
1384 1.1 mrg /*
1385 1.1 mrg * done! start next swapdev I/O if one is pending
1386 1.1 mrg */
1387 1.33 thorpej sdp->swd_active--;
1388 1.1 mrg sw_reg_start(sdp);
1389 1.1 mrg splx(s);
1390 1.1 mrg }
1391 1.1 mrg
1392 1.1 mrg
1393 1.1 mrg /*
1394 1.1 mrg * uvm_swap_alloc: allocate space on swap
1395 1.1 mrg *
1396 1.1 mrg * => allocation is done "round robin" down the priority list, as we
1397 1.1 mrg * allocate in a priority we "rotate" the circle queue.
1398 1.1 mrg * => space can be freed with uvm_swap_free
1399 1.1 mrg * => we return the page slot number in /dev/drum (0 == invalid slot)
1400 1.26 chs * => we lock uvm.swap_data_lock
1401 1.1 mrg * => XXXMRG: "LESSOK" INTERFACE NEEDED TO EXTENT SYSTEM
1402 1.1 mrg */
1403 1.1 mrg int
1404 1.1 mrg uvm_swap_alloc(nslots, lessok)
1405 1.1 mrg int *nslots; /* IN/OUT */
1406 1.1 mrg boolean_t lessok;
1407 1.1 mrg {
1408 1.1 mrg struct swapdev *sdp;
1409 1.1 mrg struct swappri *spp;
1410 1.1 mrg u_long result;
1411 1.1 mrg UVMHIST_FUNC("uvm_swap_alloc"); UVMHIST_CALLED(pdhist);
1412 1.1 mrg
1413 1.1 mrg /*
1414 1.1 mrg * no swap devices configured yet? definite failure.
1415 1.1 mrg */
1416 1.1 mrg if (uvmexp.nswapdev < 1)
1417 1.1 mrg return 0;
1418 1.51 chs
1419 1.1 mrg /*
1420 1.1 mrg * lock data lock, convert slots into blocks, and enter loop
1421 1.1 mrg */
1422 1.26 chs simple_lock(&uvm.swap_data_lock);
1423 1.1 mrg
1424 1.1 mrg ReTry: /* XXXMRG */
1425 1.55 chs LIST_FOREACH(spp, &swap_priority, spi_swappri) {
1426 1.55 chs CIRCLEQ_FOREACH(sdp, &spp->spi_swapdev, swd_next) {
1427 1.1 mrg /* if it's not enabled, then we can't swap from it */
1428 1.1 mrg if ((sdp->swd_flags & SWF_ENABLE) == 0)
1429 1.1 mrg continue;
1430 1.1 mrg if (sdp->swd_npginuse + *nslots > sdp->swd_npages)
1431 1.1 mrg continue;
1432 1.1 mrg if (extent_alloc(sdp->swd_ex, *nslots, EX_NOALIGN,
1433 1.1 mrg EX_NOBOUNDARY, EX_MALLOCOK|EX_NOWAIT,
1434 1.1 mrg &result) != 0) {
1435 1.1 mrg continue;
1436 1.1 mrg }
1437 1.1 mrg
1438 1.1 mrg /*
1439 1.1 mrg * successful allocation! now rotate the circleq.
1440 1.1 mrg */
1441 1.1 mrg CIRCLEQ_REMOVE(&spp->spi_swapdev, sdp, swd_next);
1442 1.1 mrg CIRCLEQ_INSERT_TAIL(&spp->spi_swapdev, sdp, swd_next);
1443 1.1 mrg sdp->swd_npginuse += *nslots;
1444 1.1 mrg uvmexp.swpginuse += *nslots;
1445 1.26 chs simple_unlock(&uvm.swap_data_lock);
1446 1.1 mrg /* done! return drum slot number */
1447 1.1 mrg UVMHIST_LOG(pdhist,
1448 1.1 mrg "success! returning %d slots starting at %d",
1449 1.1 mrg *nslots, result + sdp->swd_drumoffset, 0, 0);
1450 1.55 chs return (result + sdp->swd_drumoffset);
1451 1.1 mrg }
1452 1.1 mrg }
1453 1.1 mrg
1454 1.1 mrg /* XXXMRG: BEGIN HACK */
1455 1.1 mrg if (*nslots > 1 && lessok) {
1456 1.1 mrg *nslots = 1;
1457 1.1 mrg goto ReTry; /* XXXMRG: ugh! extent should support this for us */
1458 1.1 mrg }
1459 1.1 mrg /* XXXMRG: END HACK */
1460 1.1 mrg
1461 1.26 chs simple_unlock(&uvm.swap_data_lock);
1462 1.55 chs return 0;
1463 1.1 mrg }
1464 1.1 mrg
1465 1.1 mrg /*
1466 1.32 chs * uvm_swap_markbad: keep track of swap ranges where we've had i/o errors
1467 1.32 chs *
1468 1.32 chs * => we lock uvm.swap_data_lock
1469 1.32 chs */
1470 1.32 chs void
1471 1.32 chs uvm_swap_markbad(startslot, nslots)
1472 1.32 chs int startslot;
1473 1.32 chs int nslots;
1474 1.32 chs {
1475 1.32 chs struct swapdev *sdp;
1476 1.32 chs UVMHIST_FUNC("uvm_swap_markbad"); UVMHIST_CALLED(pdhist);
1477 1.32 chs
1478 1.32 chs simple_lock(&uvm.swap_data_lock);
1479 1.32 chs sdp = swapdrum_getsdp(startslot);
1480 1.32 chs
1481 1.32 chs /*
1482 1.32 chs * we just keep track of how many pages have been marked bad
1483 1.32 chs * in this device, to make everything add up in swap_off().
1484 1.32 chs * we assume here that the range of slots will all be within
1485 1.32 chs * one swap device.
1486 1.32 chs */
1487 1.41 chs
1488 1.32 chs sdp->swd_npgbad += nslots;
1489 1.41 chs UVMHIST_LOG(pdhist, "now %d bad", sdp->swd_npgbad, 0,0,0);
1490 1.32 chs simple_unlock(&uvm.swap_data_lock);
1491 1.32 chs }
1492 1.32 chs
1493 1.32 chs /*
1494 1.1 mrg * uvm_swap_free: free swap slots
1495 1.1 mrg *
1496 1.1 mrg * => this can be all or part of an allocation made by uvm_swap_alloc
1497 1.26 chs * => we lock uvm.swap_data_lock
1498 1.1 mrg */
1499 1.1 mrg void
1500 1.1 mrg uvm_swap_free(startslot, nslots)
1501 1.1 mrg int startslot;
1502 1.1 mrg int nslots;
1503 1.1 mrg {
1504 1.1 mrg struct swapdev *sdp;
1505 1.1 mrg UVMHIST_FUNC("uvm_swap_free"); UVMHIST_CALLED(pdhist);
1506 1.1 mrg
1507 1.1 mrg UVMHIST_LOG(pdhist, "freeing %d slots starting at %d", nslots,
1508 1.1 mrg startslot, 0, 0);
1509 1.32 chs
1510 1.32 chs /*
1511 1.32 chs * ignore attempts to free the "bad" slot.
1512 1.32 chs */
1513 1.46 chs
1514 1.32 chs if (startslot == SWSLOT_BAD) {
1515 1.32 chs return;
1516 1.32 chs }
1517 1.32 chs
1518 1.1 mrg /*
1519 1.51 chs * convert drum slot offset back to sdp, free the blocks
1520 1.51 chs * in the extent, and return. must hold pri lock to do
1521 1.1 mrg * lookup and access the extent.
1522 1.1 mrg */
1523 1.46 chs
1524 1.26 chs simple_lock(&uvm.swap_data_lock);
1525 1.1 mrg sdp = swapdrum_getsdp(startslot);
1526 1.46 chs KASSERT(uvmexp.nswapdev >= 1);
1527 1.46 chs KASSERT(sdp != NULL);
1528 1.46 chs KASSERT(sdp->swd_npginuse >= nslots);
1529 1.12 pk if (extent_free(sdp->swd_ex, startslot - sdp->swd_drumoffset, nslots,
1530 1.32 chs EX_MALLOCOK|EX_NOWAIT) != 0) {
1531 1.32 chs printf("warning: resource shortage: %d pages of swap lost\n",
1532 1.12 pk nslots);
1533 1.32 chs }
1534 1.1 mrg sdp->swd_npginuse -= nslots;
1535 1.1 mrg uvmexp.swpginuse -= nslots;
1536 1.26 chs simple_unlock(&uvm.swap_data_lock);
1537 1.1 mrg }
1538 1.1 mrg
1539 1.1 mrg /*
1540 1.1 mrg * uvm_swap_put: put any number of pages into a contig place on swap
1541 1.1 mrg *
1542 1.1 mrg * => can be sync or async
1543 1.1 mrg */
1544 1.54 chs
1545 1.1 mrg int
1546 1.1 mrg uvm_swap_put(swslot, ppsp, npages, flags)
1547 1.1 mrg int swslot;
1548 1.1 mrg struct vm_page **ppsp;
1549 1.54 chs int npages;
1550 1.54 chs int flags;
1551 1.1 mrg {
1552 1.56 chs int error;
1553 1.1 mrg
1554 1.56 chs error = uvm_swap_io(ppsp, swslot, npages, B_WRITE |
1555 1.1 mrg ((flags & PGO_SYNCIO) ? 0 : B_ASYNC));
1556 1.56 chs return error;
1557 1.1 mrg }
1558 1.1 mrg
1559 1.1 mrg /*
1560 1.1 mrg * uvm_swap_get: get a single page from swap
1561 1.1 mrg *
1562 1.1 mrg * => usually a sync op (from fault)
1563 1.1 mrg */
1564 1.54 chs
1565 1.1 mrg int
1566 1.1 mrg uvm_swap_get(page, swslot, flags)
1567 1.1 mrg struct vm_page *page;
1568 1.1 mrg int swslot, flags;
1569 1.1 mrg {
1570 1.56 chs int error;
1571 1.1 mrg
1572 1.1 mrg uvmexp.nswget++;
1573 1.46 chs KASSERT(flags & PGO_SYNCIO);
1574 1.32 chs if (swslot == SWSLOT_BAD) {
1575 1.47 chs return EIO;
1576 1.32 chs }
1577 1.56 chs error = uvm_swap_io(&page, swslot, 1, B_READ |
1578 1.1 mrg ((flags & PGO_SYNCIO) ? 0 : B_ASYNC));
1579 1.56 chs if (error == 0) {
1580 1.47 chs
1581 1.26 chs /*
1582 1.54 chs * this page is no longer only in swap.
1583 1.26 chs */
1584 1.47 chs
1585 1.26 chs simple_lock(&uvm.swap_data_lock);
1586 1.56 chs KASSERT(uvmexp.swpgonly > 0);
1587 1.54 chs uvmexp.swpgonly--;
1588 1.26 chs simple_unlock(&uvm.swap_data_lock);
1589 1.26 chs }
1590 1.56 chs return error;
1591 1.1 mrg }
1592 1.1 mrg
1593 1.1 mrg /*
1594 1.1 mrg * uvm_swap_io: do an i/o operation to swap
1595 1.1 mrg */
1596 1.1 mrg
1597 1.1 mrg static int
1598 1.1 mrg uvm_swap_io(pps, startslot, npages, flags)
1599 1.1 mrg struct vm_page **pps;
1600 1.1 mrg int startslot, npages, flags;
1601 1.1 mrg {
1602 1.1 mrg daddr_t startblk;
1603 1.1 mrg struct buf *bp;
1604 1.15 eeh vaddr_t kva;
1605 1.54 chs int error, s, mapinflags;
1606 1.41 chs boolean_t write, async;
1607 1.1 mrg UVMHIST_FUNC("uvm_swap_io"); UVMHIST_CALLED(pdhist);
1608 1.1 mrg
1609 1.1 mrg UVMHIST_LOG(pdhist, "<- called, startslot=%d, npages=%d, flags=%d",
1610 1.1 mrg startslot, npages, flags, 0);
1611 1.32 chs
1612 1.41 chs write = (flags & B_READ) == 0;
1613 1.41 chs async = (flags & B_ASYNC) != 0;
1614 1.41 chs
1615 1.1 mrg /*
1616 1.1 mrg * convert starting drum slot to block number
1617 1.1 mrg */
1618 1.54 chs
1619 1.44 enami startblk = btodb((u_int64_t)startslot << PAGE_SHIFT);
1620 1.1 mrg
1621 1.1 mrg /*
1622 1.54 chs * first, map the pages into the kernel.
1623 1.41 chs */
1624 1.41 chs
1625 1.54 chs mapinflags = !write ?
1626 1.54 chs UVMPAGER_MAPIN_WAITOK|UVMPAGER_MAPIN_READ :
1627 1.54 chs UVMPAGER_MAPIN_WAITOK|UVMPAGER_MAPIN_WRITE;
1628 1.41 chs kva = uvm_pagermapin(pps, npages, mapinflags);
1629 1.1 mrg
1630 1.51 chs /*
1631 1.41 chs * now allocate a buf for the i/o.
1632 1.1 mrg */
1633 1.54 chs
1634 1.1 mrg s = splbio();
1635 1.54 chs bp = pool_get(&bufpool, PR_WAITOK);
1636 1.41 chs splx(s);
1637 1.1 mrg
1638 1.1 mrg /*
1639 1.1 mrg * fill in the bp/sbp. we currently route our i/o through
1640 1.1 mrg * /dev/drum's vnode [swapdev_vp].
1641 1.1 mrg */
1642 1.54 chs
1643 1.21 mycroft bp->b_flags = B_BUSY | B_NOCACHE | (flags & (B_READ|B_ASYNC));
1644 1.1 mrg bp->b_proc = &proc0; /* XXX */
1645 1.12 pk bp->b_vnbufs.le_next = NOLIST;
1646 1.1 mrg bp->b_data = (caddr_t)kva;
1647 1.1 mrg bp->b_blkno = startblk;
1648 1.1 mrg bp->b_vp = swapdev_vp;
1649 1.53 chs bp->b_dev = swapdev_vp->v_rdev;
1650 1.41 chs bp->b_bufsize = bp->b_bcount = npages << PAGE_SHIFT;
1651 1.30 fvdl LIST_INIT(&bp->b_dep);
1652 1.1 mrg
1653 1.51 chs /*
1654 1.41 chs * bump v_numoutput (counter of number of active outputs).
1655 1.1 mrg */
1656 1.54 chs
1657 1.41 chs if (write) {
1658 1.1 mrg s = splbio();
1659 1.1 mrg swapdev_vp->v_numoutput++;
1660 1.1 mrg splx(s);
1661 1.1 mrg }
1662 1.1 mrg
1663 1.1 mrg /*
1664 1.41 chs * for async ops we must set up the iodone handler.
1665 1.1 mrg */
1666 1.54 chs
1667 1.41 chs if (async) {
1668 1.54 chs bp->b_flags |= B_CALL;
1669 1.41 chs bp->b_iodone = uvm_aio_biodone;
1670 1.1 mrg UVMHIST_LOG(pdhist, "doing async!", 0, 0, 0, 0);
1671 1.1 mrg }
1672 1.1 mrg UVMHIST_LOG(pdhist,
1673 1.41 chs "about to start io: data = %p blkno = 0x%x, bcount = %ld",
1674 1.1 mrg bp->b_data, bp->b_blkno, bp->b_bcount, 0);
1675 1.1 mrg
1676 1.1 mrg /*
1677 1.1 mrg * now we start the I/O, and if async, return.
1678 1.1 mrg */
1679 1.54 chs
1680 1.1 mrg VOP_STRATEGY(bp);
1681 1.41 chs if (async)
1682 1.47 chs return 0;
1683 1.1 mrg
1684 1.1 mrg /*
1685 1.1 mrg * must be sync i/o. wait for it to finish
1686 1.1 mrg */
1687 1.54 chs
1688 1.47 chs error = biowait(bp);
1689 1.1 mrg
1690 1.1 mrg /*
1691 1.1 mrg * kill the pager mapping
1692 1.1 mrg */
1693 1.54 chs
1694 1.1 mrg uvm_pagermapout(kva, npages);
1695 1.1 mrg
1696 1.1 mrg /*
1697 1.54 chs * now dispose of the buf and we're done.
1698 1.1 mrg */
1699 1.54 chs
1700 1.1 mrg s = splbio();
1701 1.41 chs if (write)
1702 1.41 chs vwakeup(bp);
1703 1.41 chs pool_put(&bufpool, bp);
1704 1.1 mrg splx(s);
1705 1.47 chs UVMHIST_LOG(pdhist, "<- done (sync) error=%d", error, 0, 0, 0);
1706 1.47 chs return (error);
1707 1.1 mrg }
1708