/* * Copyright (c) 1982, 1986, 1989, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)vm_swap.c 8.5 (Berkeley) 2/17/94 * $FreeBSD: src/sys/vm/vm_swap.c,v 1.96.2.2 2001/10/14 18:46:47 iedowse Exp $ * $DragonFly: src/sys/vm/vm_swap.c,v 1.36 2007/07/20 17:21:54 dillon Exp $ */ #include "opt_swap.h" #include #include #include #include #include #include #include #include /* XXX */ #include #include #include #include #include #include #include #include #include #include #include #include /* * Indirect driver for multi-controller paging. */ #ifndef NSWAPDEV #define NSWAPDEV 4 #endif static struct swdevt should_be_malloced[NSWAPDEV]; struct swdevt *swdevt = should_be_malloced; /* exported to pstat/systat */ static swblk_t nswap; /* first block after the interleaved devs */ int nswdev = NSWAPDEV; /* exported to pstat/systat */ int vm_swap_size; static int swapdev_strategy (struct vop_strategy_args *ap); struct vnode *swapdev_vp; /* * swapdev_strategy: * * vn_strategy() for swapdev_vp. * Perform swap strategy interleave device selection. * * The bp is expected to be locked and on call. * * (struct vnode *a_vp, struct bio *b_bio) */ static int swapdev_strategy(struct vop_strategy_args *ap) { struct bio *bio = ap->a_bio; struct bio *nbio; struct buf *bp = bio->bio_buf; int sz, off, seg, index, blkno, nblkno; struct swdevt *sp; struct vnode *vp; vp = ap->a_vp; sz = howmany(bp->b_bcount, PAGE_SIZE); blkno = (int)(bio->bio_offset >> PAGE_SHIFT); /* * Convert interleaved swap into per-device swap. Note that * the block size is left in PAGE_SIZE'd chunks (for the newswap) * here. */ nbio = push_bio(bio); if (nswdev > 1) { off = blkno % dmmax; if (off + sz > dmmax) { bp->b_error = EINVAL; bp->b_flags |= B_ERROR; biodone(bio); return 0; } seg = blkno / dmmax; index = seg % nswdev; seg /= nswdev; nbio->bio_offset = (off_t)(seg * dmmax + off) << PAGE_SHIFT; } else { index = 0; nbio->bio_offset = bio->bio_offset; } nblkno = (int)(nbio->bio_offset >> PAGE_SHIFT); sp = &swdevt[index]; if (nblkno + sz > sp->sw_nblks) { bp->b_error = EINVAL; bp->b_flags |= B_ERROR; /* I/O was never started on nbio, must biodone(bio) */ biodone(bio); return 0; } if (sp->sw_vp == NULL) { bp->b_error = ENODEV; bp->b_flags |= B_ERROR; /* I/O was never started on nbio, must biodone(bio) */ biodone(bio); return 0; } /* * Issue a strategy call on the appropriate swap vnode. Note that * bp->b_vp is not modified. Strategy code is always supposed to * use the passed vp. * * We have to use vn_strategy() here even if we know we have a * device in order to properly break up requests which exceed the * device's DMA limits. */ vn_strategy(sp->sw_vp, nbio); return 0; } /* * Create a special vnode op vector for swapdev_vp - we only use * vn_strategy(), everything else returns an error. */ static struct vop_ops swapdev_vnode_vops = { .vop_default = vop_defaultop, .vop_strategy = swapdev_strategy }; static struct vop_ops *swapdev_vnode_vops_p = &swapdev_vnode_vops; VNODEOP_SET(swapdev_vnode_vops); /* * swapon_args(char *name) * * System call swapon(name) enables swapping on device name, * which must be in the swdevsw. Return EBUSY * if already swapping on this device. */ /* ARGSUSED */ int sys_swapon(struct swapon_args *uap) { struct thread *td = curthread; struct vattr attr; struct vnode *vp; struct nlookupdata nd; int error; struct ucred *cred; KKASSERT(td->td_proc); cred = td->td_proc->p_ucred; error = priv_check(td, PRIV_ROOT); if (error) return (error); vp = NULL; error = nlookup_init(&nd, uap->name, UIO_USERSPACE, NLC_FOLLOW); if (error == 0) error = nlookup(&nd); if (error == 0) error = cache_vref(&nd.nl_nch, nd.nl_cred, &vp); nlookup_done(&nd); if (error) return (error); if (vn_isdisk(vp, &error)) error = swaponvp(td, vp, 0); else if (vp->v_type == VREG && vp->v_tag == VT_NFS && (error = VOP_GETATTR(vp, &attr)) == 0) { /* * Allow direct swapping to NFS regular files in the same * way that nfs_mountroot() sets up diskless swapping. */ error = swaponvp(td, vp, attr.va_size / DEV_BSIZE); } if (error) vrele(vp); return (error); } /* * Swfree(index) frees the index'th portion of the swap map. * Each of the nswdev devices provides 1/nswdev'th of the swap * space, which is laid out with blocks of dmmax pages circularly * among the devices. * * The new swap code uses page-sized blocks. The old swap code used * DEV_BSIZE'd chunks. * * XXX locking when multiple swapon's run in parallel */ int swaponvp(struct thread *td, struct vnode *vp, u_quad_t nblks) { swblk_t aligned_nblks; int64_t dpsize; struct ucred *cred; struct swdevt *sp; swblk_t vsbase; swblk_t dvbase; cdev_t dev; int index; int error; long blk; KKASSERT(td->td_proc); cred = td->td_proc->p_ucred; if (!swapdev_vp) { error = getspecialvnode(VT_NON, NULL, &swapdev_vnode_vops_p, &swapdev_vp, 0, 0); if (error) panic("Cannot get vnode for swapdev"); swapdev_vp->v_type = VNON; /* Untyped */ vx_unlock(swapdev_vp); } for (sp = swdevt, index = 0 ; index < nswdev; index++, sp++) { if (sp->sw_vp == vp) return EBUSY; if (!sp->sw_vp) goto found; } return EINVAL; found: vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); error = VOP_OPEN(vp, FREAD | FWRITE, cred, NULL); vn_unlock(vp); if (error) return (error); /* * v_rdev is not valid until after the VOP_OPEN() call. dev_psize() * must be supported if a character device has been specified. */ if (vp->v_type == VCHR) dev = vp->v_rdev; else dev = NULL; if (nblks == 0 && dev != NULL) { dpsize = dev_dpsize(dev); if (dpsize == -1) { VOP_CLOSE(vp, FREAD | FWRITE); return (ENXIO); } nblks = (u_quad_t)dpsize; } if (nblks == 0) { VOP_CLOSE(vp, FREAD | FWRITE); return (ENXIO); } /* * nblks is in DEV_BSIZE'd chunks, convert to PAGE_SIZE'd chunks. * First chop nblks off to page-align it, then convert. * * sw->sw_nblks is in page-sized chunks now too. */ nblks &= ~(u_quad_t)(ctodb(1) - 1); nblks = dbtoc(nblks); /* * Post-conversion nblks must not be >= BLIST_MAXBLKS, and * we impose a 4-swap-device limit so we have to divide it out * further. Going beyond this will result in overflows in the * blist code. * * Post-conversion nblks must fit within a (swblk_t), which * this test also ensures. */ if (nblks > BLIST_MAXBLKS / nswdev) { kprintf("exceeded maximum of %d blocks per swap unit\n", (int)BLIST_MAXBLKS / nswdev); VOP_CLOSE(vp, FREAD | FWRITE); return (ENXIO); } sp->sw_vp = vp; sp->sw_dev = dev2udev(dev); sp->sw_device = dev; sp->sw_flags |= SW_FREED; sp->sw_nblks = (swblk_t)nblks; /* * nblks, nswap, and dmmax are PAGE_SIZE'd parameters now, not * DEV_BSIZE'd. aligned_nblks is used to calculate the * size of the swap bitmap, taking into account the stripe size. */ aligned_nblks = (swblk_t)((nblks + (dmmax - 1)) & ~(u_long)(dmmax - 1)); if (aligned_nblks * nswdev > nswap) nswap = aligned_nblks * nswdev; if (swapblist == NULL) swapblist = blist_create(nswap); else blist_resize(&swapblist, nswap, 0); for (dvbase = dmmax; dvbase < nblks; dvbase += dmmax) { blk = min(nblks - dvbase, dmmax); vsbase = index * dmmax + dvbase * nswdev; blist_free(swapblist, vsbase, blk); vm_swap_size += blk; } swap_pager_newswap(); return (0); }