1994-05-24 10:09:53 +00:00
|
|
|
/*
|
1997-02-10 02:22:35 +00:00
|
|
|
* Copyright (c) 1989, 1993, 1995
|
1994-05-24 10:09:53 +00:00
|
|
|
* 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.
|
|
|
|
*
|
1997-02-10 02:22:35 +00:00
|
|
|
* @(#)spec_vnops.c 8.14 (Berkeley) 5/21/95
|
1998-08-25 17:48:54 +00:00
|
|
|
* $Id: spec_vnops.c,v 1.70 1998/08/24 18:23:18 phk Exp $
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/stat.h>
|
1996-09-03 14:25:27 +00:00
|
|
|
#include <sys/fcntl.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/disklabel.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <sys/vmmeter.h>
|
1995-11-18 12:49:14 +00:00
|
|
|
|
|
|
|
#include <vm/vm.h>
|
1995-12-07 12:48:31 +00:00
|
|
|
#include <vm/vm_prot.h>
|
|
|
|
#include <vm/vm_object.h>
|
1995-12-05 21:51:45 +00:00
|
|
|
#include <vm/vm_page.h>
|
1995-11-18 12:49:14 +00:00
|
|
|
#include <vm/vm_pager.h>
|
|
|
|
#include <vm/vnode_pager.h>
|
1996-08-21 21:56:23 +00:00
|
|
|
#include <vm/vm_extern.h>
|
1995-11-18 12:49:14 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <miscfs/specfs/specdev.h>
|
|
|
|
|
1998-08-25 17:48:54 +00:00
|
|
|
static int spec_advlock __P((struct vop_advlock_args *));
|
1997-10-15 13:24:07 +00:00
|
|
|
static int spec_badop __P((void));
|
1998-08-25 17:48:54 +00:00
|
|
|
static int spec_bmap __P((struct vop_bmap_args *));
|
|
|
|
static int spec_close __P((struct vop_close_args *));
|
|
|
|
static int spec_fsync __P((struct vop_fsync_args *));
|
|
|
|
static int spec_getattr __P((struct vop_getattr_args *));
|
|
|
|
static int spec_getpages __P((struct vop_getpages_args *));
|
|
|
|
static int spec_inactive __P((struct vop_inactive_args *));
|
|
|
|
static int spec_ioctl __P((struct vop_ioctl_args *));
|
1997-10-15 13:24:07 +00:00
|
|
|
static int spec_lookup __P((struct vop_lookup_args *));
|
|
|
|
static int spec_open __P((struct vop_open_args *));
|
1998-08-25 17:48:54 +00:00
|
|
|
static int spec_poll __P((struct vop_poll_args *));
|
|
|
|
static int spec_print __P((struct vop_print_args *));
|
1997-10-15 13:24:07 +00:00
|
|
|
static int spec_read __P((struct vop_read_args *));
|
1998-08-25 17:48:54 +00:00
|
|
|
static int spec_strategy __P((struct vop_strategy_args *));
|
1997-10-15 13:24:07 +00:00
|
|
|
static int spec_write __P((struct vop_write_args *));
|
1995-12-14 09:55:16 +00:00
|
|
|
|
1995-07-29 11:44:31 +00:00
|
|
|
struct vnode *speclisth[SPECHSZ];
|
1995-11-09 08:17:23 +00:00
|
|
|
vop_t **spec_vnodeop_p;
|
1995-12-11 09:24:58 +00:00
|
|
|
static struct vnodeopv_entry_desc spec_vnodeop_entries[] = {
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_default_desc, (vop_t *) vop_defaultop },
|
|
|
|
{ &vop_access_desc, (vop_t *) vop_ebadf },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_advlock_desc, (vop_t *) spec_advlock },
|
|
|
|
{ &vop_bmap_desc, (vop_t *) spec_bmap },
|
|
|
|
{ &vop_close_desc, (vop_t *) spec_close },
|
1997-10-15 13:24:07 +00:00
|
|
|
{ &vop_create_desc, (vop_t *) spec_badop },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_fsync_desc, (vop_t *) spec_fsync },
|
|
|
|
{ &vop_getattr_desc, (vop_t *) spec_getattr },
|
1997-10-15 10:05:29 +00:00
|
|
|
{ &vop_getpages_desc, (vop_t *) spec_getpages },
|
|
|
|
{ &vop_inactive_desc, (vop_t *) spec_inactive },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_ioctl_desc, (vop_t *) spec_ioctl },
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_lease_desc, (vop_t *) vop_null },
|
1997-10-15 13:24:07 +00:00
|
|
|
{ &vop_link_desc, (vop_t *) spec_badop },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_lookup_desc, (vop_t *) spec_lookup },
|
1997-10-15 13:24:07 +00:00
|
|
|
{ &vop_mkdir_desc, (vop_t *) spec_badop },
|
|
|
|
{ &vop_mknod_desc, (vop_t *) spec_badop },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_open_desc, (vop_t *) spec_open },
|
1997-10-16 20:32:40 +00:00
|
|
|
{ &vop_pathconf_desc, (vop_t *) vop_stdpathconf },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_poll_desc, (vop_t *) spec_poll },
|
|
|
|
{ &vop_print_desc, (vop_t *) spec_print },
|
|
|
|
{ &vop_read_desc, (vop_t *) spec_read },
|
1997-10-15 13:24:07 +00:00
|
|
|
{ &vop_readdir_desc, (vop_t *) spec_badop },
|
|
|
|
{ &vop_readlink_desc, (vop_t *) spec_badop },
|
|
|
|
{ &vop_reallocblks_desc, (vop_t *) spec_badop },
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_reclaim_desc, (vop_t *) vop_null },
|
1997-10-15 13:24:07 +00:00
|
|
|
{ &vop_remove_desc, (vop_t *) spec_badop },
|
|
|
|
{ &vop_rename_desc, (vop_t *) spec_badop },
|
|
|
|
{ &vop_rmdir_desc, (vop_t *) spec_badop },
|
1997-10-26 20:55:39 +00:00
|
|
|
{ &vop_setattr_desc, (vop_t *) vop_ebadf },
|
1997-10-15 10:05:29 +00:00
|
|
|
{ &vop_strategy_desc, (vop_t *) spec_strategy },
|
1997-10-15 13:24:07 +00:00
|
|
|
{ &vop_symlink_desc, (vop_t *) spec_badop },
|
1997-10-15 09:22:02 +00:00
|
|
|
{ &vop_write_desc, (vop_t *) spec_write },
|
1995-11-09 08:17:23 +00:00
|
|
|
{ NULL, NULL }
|
1994-05-24 10:09:53 +00:00
|
|
|
};
|
1995-12-11 09:24:58 +00:00
|
|
|
static struct vnodeopv_desc spec_vnodeop_opv_desc =
|
1994-05-24 10:09:53 +00:00
|
|
|
{ &spec_vnodeop_p, spec_vnodeop_entries };
|
|
|
|
|
1994-09-21 03:47:43 +00:00
|
|
|
VNODEOP_SET(spec_vnodeop_opv_desc);
|
|
|
|
|
1997-10-15 13:24:07 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
spec_vnoperate(ap)
|
|
|
|
struct vop_generic_args /* {
|
|
|
|
struct vnodeop_desc *a_desc;
|
|
|
|
<other random data follows, presumably>
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
return (VOCALL(spec_vnodeop_p, ap->a_desc->vdesc_offset, ap));
|
|
|
|
}
|
|
|
|
|
1995-11-18 12:49:14 +00:00
|
|
|
static void spec_getpages_iodone __P((struct buf *bp));
|
1995-10-23 02:23:29 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Trivial lookup routine that always fails.
|
|
|
|
*/
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_lookup(ap)
|
|
|
|
struct vop_lookup_args /* {
|
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
struct componentname *a_cnp;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
|
|
|
|
*ap->a_vpp = NULL;
|
|
|
|
return (ENOTDIR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open a special file.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_open(ap)
|
|
|
|
struct vop_open_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_mode;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
1997-02-10 02:22:35 +00:00
|
|
|
struct proc *p = ap->a_p;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode *bvp, *vp = ap->a_vp;
|
|
|
|
dev_t bdev, dev = (dev_t)vp->v_rdev;
|
1997-02-10 02:22:35 +00:00
|
|
|
int maj = major(dev);
|
1994-05-24 10:09:53 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't allow open if fs is mounted -nodev.
|
|
|
|
*/
|
|
|
|
if (vp->v_mount && (vp->v_mount->mnt_flag & MNT_NODEV))
|
|
|
|
return (ENXIO);
|
|
|
|
|
|
|
|
switch (vp->v_type) {
|
|
|
|
|
|
|
|
case VCHR:
|
|
|
|
if ((u_int)maj >= nchrdev)
|
|
|
|
return (ENXIO);
|
1995-12-13 15:13:57 +00:00
|
|
|
if ( (cdevsw[maj] == NULL) || (cdevsw[maj]->d_open == NULL))
|
1995-11-29 12:38:49 +00:00
|
|
|
return ENXIO;
|
1994-05-24 10:09:53 +00:00
|
|
|
if (ap->a_cred != FSCRED && (ap->a_mode & FWRITE)) {
|
|
|
|
/*
|
|
|
|
* When running in very secure mode, do not allow
|
|
|
|
* opens for writing of any disk character devices.
|
|
|
|
*/
|
1997-02-10 02:22:35 +00:00
|
|
|
if (securelevel >= 2
|
1998-07-04 22:30:26 +00:00
|
|
|
&& cdevsw[maj]->d_bmaj != -1
|
|
|
|
&& (cdevsw[maj]->d_flags & D_TYPEMASK) == D_DISK)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (EPERM);
|
|
|
|
/*
|
|
|
|
* When running in secure mode, do not allow opens
|
|
|
|
* for writing of /dev/mem, /dev/kmem, or character
|
|
|
|
* devices whose corresponding block devices are
|
|
|
|
* currently mounted.
|
|
|
|
*/
|
|
|
|
if (securelevel >= 1) {
|
|
|
|
if ((bdev = chrtoblk(dev)) != NODEV &&
|
|
|
|
vfinddev(bdev, VBLK, &bvp) &&
|
|
|
|
bvp->v_usecount > 0 &&
|
|
|
|
(error = vfs_mountedon(bvp)))
|
|
|
|
return (error);
|
|
|
|
if (iskmemdev(dev))
|
|
|
|
return (EPERM);
|
|
|
|
}
|
|
|
|
}
|
1998-08-23 11:43:29 +00:00
|
|
|
if ((cdevsw[maj]->d_flags & D_TYPEMASK) == D_TTY)
|
1997-02-10 02:22:35 +00:00
|
|
|
vp->v_flag |= VISTTY;
|
|
|
|
VOP_UNLOCK(vp, 0, p);
|
|
|
|
error = (*cdevsw[maj]->d_open)(dev, ap->a_mode, S_IFCHR, p);
|
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
case VBLK:
|
|
|
|
if ((u_int)maj >= nblkdev)
|
|
|
|
return (ENXIO);
|
1995-12-13 15:13:57 +00:00
|
|
|
if ( (bdevsw[maj] == NULL) || (bdevsw[maj]->d_open == NULL))
|
1995-11-29 12:38:49 +00:00
|
|
|
return ENXIO;
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* When running in very secure mode, do not allow
|
|
|
|
* opens for writing of any disk block devices.
|
|
|
|
*/
|
|
|
|
if (securelevel >= 2 && ap->a_cred != FSCRED &&
|
1997-09-27 13:40:20 +00:00
|
|
|
(ap->a_mode & FWRITE) &&
|
|
|
|
(bdevsw[maj]->d_flags & D_TYPEMASK) == D_DISK)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (EPERM);
|
Make our v_usecount vnode reference count work identically to the
original BSD code. The association between the vnode and the vm_object
no longer includes reference counts. The major difference is that
vm_object's are no longer freed gratuitiously from the vnode, and so
once an object is created for the vnode, it will last as long as the
vnode does.
When a vnode object reference count is incremented, then the underlying
vnode reference count is incremented also. The two "objects" are now
more intimately related, and so the interactions are now much less
complex.
When vnodes are now normally placed onto the free queue with an object still
attached. The rundown of the object happens at vnode rundown time, and
happens with exactly the same filesystem semantics of the original VFS
code. There is absolutely no need for vnode_pager_uncache and other
travesties like that anymore.
A side-effect of these changes is that SMP locking should be much simpler,
the I/O copyin/copyout optimizations work, NFS should be more ponderable,
and further work on layered filesystems should be less frustrating, because
of the totally coherent management of the vnode objects and vnodes.
Please be careful with your system while running this code, but I would
greatly appreciate feedback as soon a reasonably possible.
1998-01-06 05:26:17 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Do not allow opens of block devices that are
|
|
|
|
* currently mounted.
|
|
|
|
*/
|
1994-10-10 07:55:48 +00:00
|
|
|
error = vfs_mountedon(vp);
|
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
1997-02-10 02:22:35 +00:00
|
|
|
return ((*bdevsw[maj]->d_open)(dev, ap->a_mode, S_IFBLK, p));
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Vnode op for read
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_read(ap)
|
|
|
|
struct vop_read_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
register struct vnode *vp = ap->a_vp;
|
|
|
|
register struct uio *uio = ap->a_uio;
|
|
|
|
struct proc *p = uio->uio_procp;
|
|
|
|
struct buf *bp;
|
|
|
|
daddr_t bn, nextbn;
|
|
|
|
long bsize, bscale;
|
|
|
|
struct partinfo dpart;
|
1995-11-18 12:49:14 +00:00
|
|
|
int n, on, majordev;
|
|
|
|
d_ioctl_t *ioctl;
|
1994-05-24 10:09:53 +00:00
|
|
|
int error = 0;
|
|
|
|
dev_t dev;
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (uio->uio_rw != UIO_READ)
|
|
|
|
panic("spec_read mode");
|
|
|
|
if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
|
|
|
|
panic("spec_read proc");
|
|
|
|
#endif
|
|
|
|
if (uio->uio_resid == 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
switch (vp->v_type) {
|
|
|
|
|
|
|
|
case VCHR:
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, p);
|
1995-12-13 15:13:57 +00:00
|
|
|
error = (*cdevsw[major(vp->v_rdev)]->d_read)
|
1994-05-24 10:09:53 +00:00
|
|
|
(vp->v_rdev, uio, ap->a_ioflag);
|
1997-02-10 02:22:35 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
case VBLK:
|
|
|
|
if (uio->uio_offset < 0)
|
|
|
|
return (EINVAL);
|
|
|
|
bsize = BLKDEV_IOSIZE;
|
|
|
|
dev = vp->v_rdev;
|
|
|
|
if ((majordev = major(dev)) < nblkdev &&
|
1995-12-13 15:13:57 +00:00
|
|
|
(ioctl = bdevsw[majordev]->d_ioctl) != NULL &&
|
1994-05-24 10:09:53 +00:00
|
|
|
(*ioctl)(dev, DIOCGPART, (caddr_t)&dpart, FREAD, p) == 0 &&
|
|
|
|
dpart.part->p_fstype == FS_BSDFFS &&
|
|
|
|
dpart.part->p_frag != 0 && dpart.part->p_fsize != 0)
|
|
|
|
bsize = dpart.part->p_frag * dpart.part->p_fsize;
|
1996-10-06 21:19:33 +00:00
|
|
|
bscale = btodb(bsize);
|
1994-05-24 10:09:53 +00:00
|
|
|
do {
|
1996-10-06 21:19:33 +00:00
|
|
|
bn = btodb(uio->uio_offset) & ~(bscale - 1);
|
1994-05-24 10:09:53 +00:00
|
|
|
on = uio->uio_offset % bsize;
|
|
|
|
n = min((unsigned)(bsize - on), uio->uio_resid);
|
|
|
|
if (vp->v_lastr + bscale == bn) {
|
|
|
|
nextbn = bn + bscale;
|
|
|
|
error = breadn(vp, bn, (int)bsize, &nextbn,
|
|
|
|
(int *)&bsize, 1, NOCRED, &bp);
|
|
|
|
} else
|
|
|
|
error = bread(vp, bn, (int)bsize, NOCRED, &bp);
|
|
|
|
vp->v_lastr = bn;
|
|
|
|
n = min(n, bsize - bp->b_resid);
|
|
|
|
if (error) {
|
|
|
|
brelse(bp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
error = uiomove((char *)bp->b_data + on, n, uio);
|
|
|
|
brelse(bp);
|
|
|
|
} while (error == 0 && uio->uio_resid > 0 && n != 0);
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("spec_read type");
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Vnode op for write
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_write(ap)
|
|
|
|
struct vop_write_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
register struct vnode *vp = ap->a_vp;
|
|
|
|
register struct uio *uio = ap->a_uio;
|
|
|
|
struct proc *p = uio->uio_procp;
|
|
|
|
struct buf *bp;
|
|
|
|
daddr_t bn;
|
|
|
|
int bsize, blkmask;
|
|
|
|
struct partinfo dpart;
|
|
|
|
register int n, on;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (uio->uio_rw != UIO_WRITE)
|
|
|
|
panic("spec_write mode");
|
|
|
|
if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
|
|
|
|
panic("spec_write proc");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (vp->v_type) {
|
|
|
|
|
|
|
|
case VCHR:
|
1997-02-10 02:22:35 +00:00
|
|
|
VOP_UNLOCK(vp, 0, p);
|
1995-12-13 15:13:57 +00:00
|
|
|
error = (*cdevsw[major(vp->v_rdev)]->d_write)
|
1994-05-24 10:09:53 +00:00
|
|
|
(vp->v_rdev, uio, ap->a_ioflag);
|
1997-02-10 02:22:35 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, p);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
case VBLK:
|
|
|
|
if (uio->uio_resid == 0)
|
|
|
|
return (0);
|
|
|
|
if (uio->uio_offset < 0)
|
|
|
|
return (EINVAL);
|
|
|
|
bsize = BLKDEV_IOSIZE;
|
1995-12-13 15:13:57 +00:00
|
|
|
if ((*bdevsw[major(vp->v_rdev)]->d_ioctl)(vp->v_rdev, DIOCGPART,
|
1994-05-24 10:09:53 +00:00
|
|
|
(caddr_t)&dpart, FREAD, p) == 0) {
|
|
|
|
if (dpart.part->p_fstype == FS_BSDFFS &&
|
|
|
|
dpart.part->p_frag != 0 && dpart.part->p_fsize != 0)
|
|
|
|
bsize = dpart.part->p_frag *
|
|
|
|
dpart.part->p_fsize;
|
|
|
|
}
|
1996-10-06 21:19:33 +00:00
|
|
|
blkmask = btodb(bsize) - 1;
|
1994-05-24 10:09:53 +00:00
|
|
|
do {
|
1996-10-06 21:19:33 +00:00
|
|
|
bn = btodb(uio->uio_offset) & ~blkmask;
|
1994-05-24 10:09:53 +00:00
|
|
|
on = uio->uio_offset % bsize;
|
|
|
|
n = min((unsigned)(bsize - on), uio->uio_resid);
|
|
|
|
if (n == bsize)
|
|
|
|
bp = getblk(vp, bn, bsize, 0, 0);
|
|
|
|
else
|
|
|
|
error = bread(vp, bn, bsize, NOCRED, &bp);
|
|
|
|
n = min(n, bsize - bp->b_resid);
|
|
|
|
if (error) {
|
|
|
|
brelse(bp);
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
error = uiomove((char *)bp->b_data + on, n, uio);
|
1998-03-04 06:44:59 +00:00
|
|
|
if (n + on == bsize)
|
|
|
|
bawrite(bp);
|
|
|
|
else
|
1994-05-24 10:09:53 +00:00
|
|
|
bdwrite(bp);
|
|
|
|
} while (error == 0 && uio->uio_resid > 0 && n != 0);
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("spec_write type");
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Device ioctl operation.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_ioctl(ap)
|
|
|
|
struct vop_ioctl_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_command;
|
|
|
|
caddr_t a_data;
|
|
|
|
int a_fflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
dev_t dev = ap->a_vp->v_rdev;
|
|
|
|
|
|
|
|
switch (ap->a_vp->v_type) {
|
|
|
|
|
|
|
|
case VCHR:
|
1998-08-24 17:47:25 +00:00
|
|
|
return ((*cdevsw[major(dev)]->d_ioctl)(dev, ap->a_command,
|
1998-08-24 18:23:18 +00:00
|
|
|
ap->a_data, ap->a_fflag, ap->a_p));
|
|
|
|
case VBLK:
|
|
|
|
return ((*bdevsw[major(dev)]->d_ioctl)(dev, ap->a_command,
|
1998-08-24 17:47:25 +00:00
|
|
|
ap->a_data, ap->a_fflag, ap->a_p));
|
1994-05-24 10:09:53 +00:00
|
|
|
default:
|
|
|
|
panic("spec_ioctl");
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1997-09-14 02:58:12 +00:00
|
|
|
spec_poll(ap)
|
|
|
|
struct vop_poll_args /* {
|
1994-05-24 10:09:53 +00:00
|
|
|
struct vnode *a_vp;
|
1997-09-14 02:58:12 +00:00
|
|
|
int a_events;
|
1994-05-24 10:09:53 +00:00
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
register dev_t dev;
|
|
|
|
|
|
|
|
switch (ap->a_vp->v_type) {
|
|
|
|
|
|
|
|
case VCHR:
|
|
|
|
dev = ap->a_vp->v_rdev;
|
1997-09-14 02:58:12 +00:00
|
|
|
return (*cdevsw[major(dev)]->d_poll)(dev, ap->a_events, ap->a_p);
|
|
|
|
default:
|
1997-10-16 20:32:40 +00:00
|
|
|
return (vop_defaultop((struct vop_generic_args *)ap));
|
1997-09-14 02:58:12 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Synch buffers associated with a block device
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_fsync(ap)
|
|
|
|
struct vop_fsync_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
int a_waitfor;
|
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
register struct vnode *vp = ap->a_vp;
|
|
|
|
register struct buf *bp;
|
|
|
|
struct buf *nbp;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
if (vp->v_type == VCHR)
|
|
|
|
return (0);
|
|
|
|
/*
|
|
|
|
* Flush all dirty buffers associated with a block device.
|
|
|
|
*/
|
|
|
|
loop:
|
|
|
|
s = splbio();
|
|
|
|
for (bp = vp->v_dirtyblkhd.lh_first; bp; bp = nbp) {
|
|
|
|
nbp = bp->b_vnbufs.le_next;
|
|
|
|
if ((bp->b_flags & B_BUSY))
|
|
|
|
continue;
|
|
|
|
if ((bp->b_flags & B_DELWRI) == 0)
|
|
|
|
panic("spec_fsync: not dirty");
|
Make our v_usecount vnode reference count work identically to the
original BSD code. The association between the vnode and the vm_object
no longer includes reference counts. The major difference is that
vm_object's are no longer freed gratuitiously from the vnode, and so
once an object is created for the vnode, it will last as long as the
vnode does.
When a vnode object reference count is incremented, then the underlying
vnode reference count is incremented also. The two "objects" are now
more intimately related, and so the interactions are now much less
complex.
When vnodes are now normally placed onto the free queue with an object still
attached. The rundown of the object happens at vnode rundown time, and
happens with exactly the same filesystem semantics of the original VFS
code. There is absolutely no need for vnode_pager_uncache and other
travesties like that anymore.
A side-effect of these changes is that SMP locking should be much simpler,
the I/O copyin/copyout optimizations work, NFS should be more ponderable,
and further work on layered filesystems should be less frustrating, because
of the totally coherent management of the vnode objects and vnodes.
Please be careful with your system while running this code, but I would
greatly appreciate feedback as soon a reasonably possible.
1998-01-06 05:26:17 +00:00
|
|
|
if ((vp->v_flag & VOBJBUF) && (bp->b_flags & B_CLUSTEROK)) {
|
|
|
|
vfs_bio_awrite(bp);
|
|
|
|
splx(s);
|
|
|
|
} else {
|
|
|
|
bremfree(bp);
|
|
|
|
bp->b_flags |= B_BUSY;
|
|
|
|
splx(s);
|
|
|
|
bawrite(bp);
|
|
|
|
}
|
1994-05-24 10:09:53 +00:00
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
if (ap->a_waitfor == MNT_WAIT) {
|
|
|
|
while (vp->v_numoutput) {
|
|
|
|
vp->v_flag |= VBWAIT;
|
1994-10-06 21:07:04 +00:00
|
|
|
(void) tsleep((caddr_t)&vp->v_numoutput, PRIBIO + 1, "spfsyn", 0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (vp->v_dirtyblkhd.lh_first) {
|
|
|
|
vprint("spec_fsync: dirty", vp);
|
1995-07-08 04:03:12 +00:00
|
|
|
splx(s);
|
1994-05-24 10:09:53 +00:00
|
|
|
goto loop;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
splx(s);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1997-02-10 02:22:35 +00:00
|
|
|
spec_inactive(ap)
|
|
|
|
struct vop_inactive_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
|
|
|
|
VOP_UNLOCK(ap->a_vp, 0, ap->a_p);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Just call the device strategy routine
|
|
|
|
*/
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_strategy(ap)
|
|
|
|
struct vop_strategy_args /* {
|
|
|
|
struct buf *a_bp;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
1998-03-08 09:59:44 +00:00
|
|
|
struct buf *bp;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1998-03-08 09:59:44 +00:00
|
|
|
bp = ap->a_bp;
|
1998-05-21 07:47:58 +00:00
|
|
|
if (((bp->b_flags & B_READ) == 0) &&
|
|
|
|
(LIST_FIRST(&bp->b_dep)) != NULL && bioops.io_start)
|
1998-03-08 09:59:44 +00:00
|
|
|
(*bioops.io_start)(bp);
|
|
|
|
(*bdevsw[major(bp->b_dev)]->d_strategy)(bp);
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a noop, simply returning what one has been given.
|
|
|
|
*/
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_bmap(ap)
|
|
|
|
struct vop_bmap_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
daddr_t a_bn;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
daddr_t *a_bnp;
|
1995-09-04 00:21:16 +00:00
|
|
|
int *a_runp;
|
|
|
|
int *a_runb;
|
1994-05-24 10:09:53 +00:00
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (ap->a_vpp != NULL)
|
|
|
|
*ap->a_vpp = ap->a_vp;
|
|
|
|
if (ap->a_bnp != NULL)
|
|
|
|
*ap->a_bnp = ap->a_bn;
|
1995-02-03 06:46:28 +00:00
|
|
|
if (ap->a_runp != NULL)
|
|
|
|
*ap->a_runp = 0;
|
1995-09-04 00:21:16 +00:00
|
|
|
if (ap->a_runb != NULL)
|
|
|
|
*ap->a_runb = 0;
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Device close routine
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_close(ap)
|
|
|
|
struct vop_close_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_fflag;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
register struct vnode *vp = ap->a_vp;
|
1997-02-10 02:22:35 +00:00
|
|
|
struct proc *p = ap->a_p;
|
1994-05-24 10:09:53 +00:00
|
|
|
dev_t dev = vp->v_rdev;
|
1995-11-18 12:49:14 +00:00
|
|
|
d_close_t *devclose;
|
1994-05-24 10:09:53 +00:00
|
|
|
int mode, error;
|
|
|
|
|
|
|
|
switch (vp->v_type) {
|
|
|
|
|
|
|
|
case VCHR:
|
|
|
|
/*
|
|
|
|
* Hack: a tty device that is a controlling terminal
|
|
|
|
* has a reference from the session structure.
|
|
|
|
* We cannot easily tell that a character device is
|
|
|
|
* a controlling terminal, unless it is the closing
|
|
|
|
* process' controlling terminal. In that case,
|
|
|
|
* if the reference count is 2 (this last descriptor
|
|
|
|
* plus the session), release the reference from the session.
|
|
|
|
*/
|
|
|
|
if (vcount(vp) == 2 && ap->a_p &&
|
1997-05-29 13:29:13 +00:00
|
|
|
(vp->v_flag & VXLOCK) == 0 &&
|
1994-05-24 10:09:53 +00:00
|
|
|
vp == ap->a_p->p_session->s_ttyvp) {
|
|
|
|
vrele(vp);
|
|
|
|
ap->a_p->p_session->s_ttyvp = NULL;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If the vnode is locked, then we are in the midst
|
|
|
|
* of forcably closing the device, otherwise we only
|
|
|
|
* close on last reference.
|
|
|
|
*/
|
|
|
|
if (vcount(vp) > 1 && (vp->v_flag & VXLOCK) == 0)
|
|
|
|
return (0);
|
1995-12-13 15:13:57 +00:00
|
|
|
devclose = cdevsw[major(dev)]->d_close;
|
1994-05-24 10:09:53 +00:00
|
|
|
mode = S_IFCHR;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VBLK:
|
|
|
|
/*
|
|
|
|
* On last close of a block device (that isn't mounted)
|
|
|
|
* we must invalidate any in core blocks, so that
|
|
|
|
* we can, for instance, change floppy disks.
|
|
|
|
*/
|
1998-03-08 09:59:44 +00:00
|
|
|
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY, ap->a_p);
|
1994-10-10 07:55:48 +00:00
|
|
|
error = vinvalbuf(vp, V_SAVE, ap->a_cred, ap->a_p, 0, 0);
|
1998-03-08 09:59:44 +00:00
|
|
|
VOP_UNLOCK(vp, 0, ap->a_p);
|
1994-10-10 07:55:48 +00:00
|
|
|
if (error)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (error);
|
Make our v_usecount vnode reference count work identically to the
original BSD code. The association between the vnode and the vm_object
no longer includes reference counts. The major difference is that
vm_object's are no longer freed gratuitiously from the vnode, and so
once an object is created for the vnode, it will last as long as the
vnode does.
When a vnode object reference count is incremented, then the underlying
vnode reference count is incremented also. The two "objects" are now
more intimately related, and so the interactions are now much less
complex.
When vnodes are now normally placed onto the free queue with an object still
attached. The rundown of the object happens at vnode rundown time, and
happens with exactly the same filesystem semantics of the original VFS
code. There is absolutely no need for vnode_pager_uncache and other
travesties like that anymore.
A side-effect of these changes is that SMP locking should be much simpler,
the I/O copyin/copyout optimizations work, NFS should be more ponderable,
and further work on layered filesystems should be less frustrating, because
of the totally coherent management of the vnode objects and vnodes.
Please be careful with your system while running this code, but I would
greatly appreciate feedback as soon a reasonably possible.
1998-01-06 05:26:17 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* We do not want to really close the device if it
|
|
|
|
* is still in use unless we are trying to close it
|
|
|
|
* forcibly. Since every use (buffer, vnode, swap, cmap)
|
|
|
|
* holds a reference to the vnode, and because we mark
|
|
|
|
* any other vnodes that alias this device, when the
|
|
|
|
* sum of the reference counts on all the aliased
|
|
|
|
* vnodes descends to one, we are on last close.
|
|
|
|
*/
|
1997-12-29 00:25:11 +00:00
|
|
|
if ((vcount(vp) > 1) && (vp->v_flag & VXLOCK) == 0)
|
1994-05-24 10:09:53 +00:00
|
|
|
return (0);
|
1996-08-21 21:56:23 +00:00
|
|
|
|
1995-12-13 15:13:57 +00:00
|
|
|
devclose = bdevsw[major(dev)]->d_close;
|
1994-05-24 10:09:53 +00:00
|
|
|
mode = S_IFBLK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
panic("spec_close: not special");
|
|
|
|
}
|
|
|
|
|
|
|
|
return ((*devclose)(dev, ap->a_fflag, mode, ap->a_p));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print out the contents of a special device vnode.
|
|
|
|
*/
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_print(ap)
|
|
|
|
struct vop_print_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
|
|
|
|
printf("tag VT_NON, dev %d, %d\n", major(ap->a_vp->v_rdev),
|
|
|
|
minor(ap->a_vp->v_rdev));
|
1994-05-25 09:21:21 +00:00
|
|
|
return (0);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special device advisory byte-level locks.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_advlock(ap)
|
|
|
|
struct vop_advlock_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
caddr_t a_id;
|
|
|
|
int a_op;
|
|
|
|
struct flock *a_fl;
|
|
|
|
int a_flags;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
|
1996-12-19 18:16:33 +00:00
|
|
|
return (ap->a_flags & F_FLOCK ? EOPNOTSUPP : EINVAL);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special device bad operation
|
|
|
|
*/
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1994-05-24 10:09:53 +00:00
|
|
|
spec_badop()
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("spec_badop called");
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
1995-10-23 02:23:29 +00:00
|
|
|
|
1995-11-18 12:49:14 +00:00
|
|
|
static void
|
|
|
|
spec_getpages_iodone(bp)
|
|
|
|
struct buf *bp;
|
|
|
|
{
|
|
|
|
|
1995-10-23 02:23:29 +00:00
|
|
|
bp->b_flags |= B_DONE;
|
|
|
|
wakeup(bp);
|
|
|
|
}
|
|
|
|
|
1997-10-15 13:24:07 +00:00
|
|
|
static int
|
1995-10-23 02:23:29 +00:00
|
|
|
spec_getpages(ap)
|
|
|
|
struct vop_getpages_args *ap;
|
|
|
|
{
|
|
|
|
vm_offset_t kva;
|
1995-11-18 12:49:14 +00:00
|
|
|
int error;
|
|
|
|
int i, pcount, size, s;
|
1995-10-23 02:23:29 +00:00
|
|
|
daddr_t blkno;
|
|
|
|
struct buf *bp;
|
1998-03-08 08:46:18 +00:00
|
|
|
vm_page_t m;
|
1996-10-06 21:19:33 +00:00
|
|
|
vm_ooffset_t offset;
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
int toff, nextoff, nread;
|
1997-05-01 19:12:22 +00:00
|
|
|
struct vnode *vp = ap->a_vp;
|
|
|
|
int blksiz;
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
int gotreqpage;
|
1995-10-23 02:23:29 +00:00
|
|
|
|
1995-11-18 12:49:14 +00:00
|
|
|
error = 0;
|
1995-10-23 02:23:29 +00:00
|
|
|
pcount = round_page(ap->a_count) / PAGE_SIZE;
|
1995-11-18 12:49:14 +00:00
|
|
|
|
1995-10-23 02:23:29 +00:00
|
|
|
/*
|
1996-10-06 21:19:33 +00:00
|
|
|
* Calculate the offset of the transfer.
|
1995-10-23 02:23:29 +00:00
|
|
|
*/
|
1996-10-06 21:19:33 +00:00
|
|
|
offset = IDX_TO_OFF(ap->a_m[0]->pindex) + ap->a_offset;
|
|
|
|
|
|
|
|
/* XXX sanity check before we go into details. */
|
|
|
|
/* XXX limits should be defined elsewhere. */
|
|
|
|
#define DADDR_T_BIT 32
|
|
|
|
#define OFFSET_MAX ((1LL << (DADDR_T_BIT + DEV_BSHIFT)) - 1)
|
|
|
|
if (offset < 0 || offset > OFFSET_MAX) {
|
|
|
|
/* XXX still no %q in kernel. */
|
|
|
|
printf("spec_getpages: preposterous offset 0x%x%08x\n",
|
|
|
|
(u_int)((u_quad_t)offset >> 32),
|
|
|
|
(u_int)(offset & 0xffffffff));
|
1996-01-01 20:20:45 +00:00
|
|
|
return (VM_PAGER_ERROR);
|
|
|
|
}
|
|
|
|
|
1996-10-06 21:19:33 +00:00
|
|
|
blkno = btodb(offset);
|
|
|
|
|
1995-10-23 02:23:29 +00:00
|
|
|
/*
|
1997-05-01 19:12:22 +00:00
|
|
|
* Round up physical size for real devices, use the
|
|
|
|
* fundamental blocksize of the fs if possible.
|
1995-10-23 02:23:29 +00:00
|
|
|
*/
|
1998-04-19 23:32:49 +00:00
|
|
|
if (vp && vp->v_mount) {
|
|
|
|
if (vp->v_type != VBLK) {
|
|
|
|
vprint("Non VBLK", vp);
|
|
|
|
}
|
1997-05-01 19:12:22 +00:00
|
|
|
blksiz = vp->v_mount->mnt_stat.f_bsize;
|
1998-04-19 23:32:49 +00:00
|
|
|
if (blksiz < DEV_BSIZE) {
|
|
|
|
blksiz = DEV_BSIZE;
|
|
|
|
}
|
|
|
|
}
|
1997-05-01 19:12:22 +00:00
|
|
|
else
|
|
|
|
blksiz = DEV_BSIZE;
|
|
|
|
size = (ap->a_count + blksiz - 1) & ~(blksiz - 1);
|
1995-10-23 02:23:29 +00:00
|
|
|
|
|
|
|
bp = getpbuf();
|
1995-11-18 12:49:14 +00:00
|
|
|
kva = (vm_offset_t)bp->b_data;
|
1995-10-23 02:23:29 +00:00
|
|
|
|
|
|
|
/*
|
1995-11-18 12:49:14 +00:00
|
|
|
* Map the pages to be read into the kva.
|
1995-10-23 02:23:29 +00:00
|
|
|
*/
|
|
|
|
pmap_qenter(kva, ap->a_m, pcount);
|
|
|
|
|
1995-11-18 12:49:14 +00:00
|
|
|
/* Build a minimal buffer header. */
|
1995-10-23 02:23:29 +00:00
|
|
|
bp->b_flags = B_BUSY | B_READ | B_CALL;
|
|
|
|
bp->b_iodone = spec_getpages_iodone;
|
1995-11-18 12:49:14 +00:00
|
|
|
|
|
|
|
/* B_PHYS is not set, but it is nice to fill this in. */
|
1995-10-23 02:23:29 +00:00
|
|
|
bp->b_proc = curproc;
|
|
|
|
bp->b_rcred = bp->b_wcred = bp->b_proc->p_ucred;
|
|
|
|
if (bp->b_rcred != NOCRED)
|
|
|
|
crhold(bp->b_rcred);
|
|
|
|
if (bp->b_wcred != NOCRED)
|
|
|
|
crhold(bp->b_wcred);
|
|
|
|
bp->b_blkno = blkno;
|
|
|
|
bp->b_lblkno = blkno;
|
|
|
|
pbgetvp(ap->a_vp, bp);
|
|
|
|
bp->b_bcount = size;
|
|
|
|
bp->b_bufsize = size;
|
1998-03-08 08:46:18 +00:00
|
|
|
bp->b_resid = 0;
|
1995-10-23 02:23:29 +00:00
|
|
|
|
|
|
|
cnt.v_vnodein++;
|
|
|
|
cnt.v_vnodepgsin += pcount;
|
|
|
|
|
1995-11-18 12:49:14 +00:00
|
|
|
/* Do the input. */
|
1998-07-04 20:45:42 +00:00
|
|
|
VOP_STRATEGY(bp->b_vp, bp);
|
1995-10-23 02:23:29 +00:00
|
|
|
|
|
|
|
s = splbio();
|
|
|
|
|
1995-11-18 12:49:14 +00:00
|
|
|
/* We definitely need to be at splbio here. */
|
|
|
|
while ((bp->b_flags & B_DONE) == 0)
|
1997-12-29 00:25:11 +00:00
|
|
|
tsleep(bp, PVM, "spread", 0);
|
1995-11-18 12:49:14 +00:00
|
|
|
|
1995-10-23 02:23:29 +00:00
|
|
|
splx(s);
|
1995-11-18 12:49:14 +00:00
|
|
|
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
if ((bp->b_flags & B_ERROR) != 0) {
|
|
|
|
if (bp->b_error)
|
|
|
|
error = bp->b_error;
|
|
|
|
else
|
|
|
|
error = EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
nread = size - bp->b_resid;
|
1995-10-23 02:23:29 +00:00
|
|
|
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
if (nread < ap->a_count) {
|
|
|
|
bzero((caddr_t)kva + nread,
|
|
|
|
ap->a_count - nread);
|
|
|
|
}
|
1995-10-23 02:23:29 +00:00
|
|
|
pmap_qremove(kva, pcount);
|
|
|
|
|
|
|
|
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
gotreqpage = 0;
|
|
|
|
for (i = 0, toff = 0; i < pcount; i++, toff = nextoff) {
|
|
|
|
nextoff = toff + PAGE_SIZE;
|
|
|
|
m = ap->a_m[i];
|
|
|
|
|
|
|
|
m->flags &= ~PG_ZERO;
|
1995-10-23 02:23:29 +00:00
|
|
|
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
if (nextoff <= nread) {
|
|
|
|
m->valid = VM_PAGE_BITS_ALL;
|
|
|
|
m->dirty = 0;
|
|
|
|
} else if (toff < nread) {
|
|
|
|
int nvalid = ((nread + DEV_BSIZE - 1) - toff) & ~(DEV_BSIZE - 1);
|
|
|
|
vm_page_set_validclean(m, 0, nvalid);
|
|
|
|
} else {
|
|
|
|
m->valid = 0;
|
|
|
|
m->dirty = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i != ap->a_reqpage) {
|
1995-10-23 02:23:29 +00:00
|
|
|
/*
|
1995-11-18 12:49:14 +00:00
|
|
|
* Just in case someone was asking for this page we
|
|
|
|
* now tell them that it is ok to use.
|
1995-10-23 02:23:29 +00:00
|
|
|
*/
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
if (!error || (m->valid == VM_PAGE_BITS_ALL)) {
|
|
|
|
if (m->valid) {
|
|
|
|
if (m->flags & PG_WANTED) {
|
|
|
|
vm_page_activate(m);
|
|
|
|
} else {
|
|
|
|
vm_page_deactivate(m);
|
|
|
|
}
|
|
|
|
PAGE_WAKEUP(m);
|
|
|
|
} else {
|
|
|
|
vm_page_free(m);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
vm_page_free(m);
|
|
|
|
}
|
|
|
|
} else if (m->valid) {
|
|
|
|
gotreqpage = 1;
|
1995-10-23 02:23:29 +00:00
|
|
|
}
|
|
|
|
}
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
if (!gotreqpage) {
|
1998-03-08 08:46:18 +00:00
|
|
|
m = ap->a_m[ap->a_reqpage];
|
|
|
|
#ifndef MAX_PERF
|
1998-07-11 07:46:16 +00:00
|
|
|
printf(
|
|
|
|
"spec_getpages: I/O read failure: (error code=%d)\n",
|
|
|
|
error);
|
|
|
|
printf(
|
|
|
|
" size: %d, resid: %ld, a_count: %d, valid: 0x%x\n",
|
|
|
|
size, bp->b_resid, ap->a_count, m->valid);
|
|
|
|
printf(
|
|
|
|
" nread: %d, reqpage: %d, pindex: %lu, pcount: %d\n",
|
|
|
|
nread, ap->a_reqpage, (u_long)m->pindex, pcount);
|
1998-03-08 08:46:18 +00:00
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Free the buffer header back to the swap buffer pool.
|
|
|
|
*/
|
|
|
|
relpbuf(bp);
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
return VM_PAGER_ERROR;
|
|
|
|
}
|
1998-03-08 08:46:18 +00:00
|
|
|
/*
|
|
|
|
* Free the buffer header back to the swap buffer pool.
|
|
|
|
*/
|
|
|
|
relpbuf(bp);
|
This mega-commit is meant to fix numerous interrelated problems. There
has been some bitrot and incorrect assumptions in the vfs_bio code. These
problems have manifest themselves worse on NFS type filesystems, but can
still affect local filesystems under certain circumstances. Most of
the problems have involved mmap consistancy, and as a side-effect broke
the vfs.ioopt code. This code might have been committed seperately, but
almost everything is interrelated.
1) Allow (pmap_object_init_pt) prefaulting of buffer-busy pages that
are fully valid.
2) Rather than deactivating erroneously read initial (header) pages in
kern_exec, we now free them.
3) Fix the rundown of non-VMIO buffers that are in an inconsistent
(missing vp) state.
4) Fix the disassociation of pages from buffers in brelse. The previous
code had rotted and was faulty in a couple of important circumstances.
5) Remove a gratuitious buffer wakeup in vfs_vmio_release.
6) Remove a crufty and currently unused cluster mechanism for VBLK
files in vfs_bio_awrite. When the code is functional, I'll add back
a cleaner version.
7) The page busy count wakeups assocated with the buffer cache usage were
incorrectly cleaned up in a previous commit by me. Revert to the
original, correct version, but with a cleaner implementation.
8) The cluster read code now tries to keep data associated with buffers
more aggressively (without breaking the heuristics) when it is presumed
that the read data (buffers) will be soon needed.
9) Change to filesystem lockmgr locks so that they use LK_NOPAUSE. The
delay loop waiting is not useful for filesystem locks, due to the
length of the time intervals.
10) Correct and clean-up spec_getpages.
11) Implement a fully functional nfs_getpages, nfs_putpages.
12) Fix nfs_write so that modifications are coherent with the NFS data on
the server disk (at least as well as NFS seems to allow.)
13) Properly support MS_INVALIDATE on NFS.
14) Properly pass down MS_INVALIDATE to lower levels of the VM code from
vm_map_clean.
15) Better support the notion of pages being busy but valid, so that
fewer in-transit waits occur. (use p->busy more for pageouts instead
of PG_BUSY.) Since the page is fully valid, it is still usable for
reads.
16) It is possible (in error) for cached pages to be busy. Make the
page allocation code handle that case correctly. (It should probably
be a printf or panic, but I want the system to handle coding errors
robustly. I'll probably add a printf.)
17) Correct the design and usage of vm_page_sleep. It didn't handle
consistancy problems very well, so make the design a little less
lofty. After vm_page_sleep, if it ever blocked, it is still important
to relookup the page (if the object generation count changed), and
verify it's status (always.)
18) In vm_pageout.c, vm_pageout_clean had rotted, so clean that up.
19) Push the page busy for writes and VM_PROT_READ into vm_pageout_flush.
20) Fix vm_pager_put_pages and it's descendents to support an int flag
instead of a boolean, so that we can pass down the invalidate bit.
1998-03-07 21:37:31 +00:00
|
|
|
return VM_PAGER_OK;
|
1995-10-23 02:23:29 +00:00
|
|
|
}
|
1995-12-11 04:58:34 +00:00
|
|
|
|
|
|
|
/* ARGSUSED */
|
1995-12-14 09:55:16 +00:00
|
|
|
static int
|
1995-12-11 04:58:34 +00:00
|
|
|
spec_getattr(ap)
|
|
|
|
struct vop_getattr_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct vattr *a_vap;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
|
|
|
} */ *ap;
|
|
|
|
{
|
|
|
|
register struct vnode *vp = ap->a_vp;
|
|
|
|
register struct vattr *vap = ap->a_vap;
|
|
|
|
struct partinfo dpart;
|
|
|
|
|
|
|
|
bzero(vap, sizeof (*vap));
|
|
|
|
|
|
|
|
if (vp->v_type == VBLK)
|
|
|
|
vap->va_blocksize = BLKDEV_IOSIZE;
|
|
|
|
else if (vp->v_type == VCHR)
|
|
|
|
vap->va_blocksize = MAXBSIZE;
|
|
|
|
|
1995-12-13 15:13:57 +00:00
|
|
|
if ((*bdevsw[major(vp->v_rdev)]->d_ioctl)(vp->v_rdev, DIOCGPART,
|
1995-12-11 04:58:34 +00:00
|
|
|
(caddr_t)&dpart, FREAD, ap->a_p) == 0) {
|
1996-10-06 21:19:33 +00:00
|
|
|
vap->va_bytes = dbtob(dpart.disklab->d_partitions
|
|
|
|
[minor(vp->v_rdev)].p_size);
|
1995-12-11 04:58:34 +00:00
|
|
|
vap->va_size = vap->va_bytes;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|