Home | History | Annotate | Line # | Download | only in specfs
spec_vnops.c revision 1.15
      1   1.1      cgd /*
      2  1.15  mycroft  * Copyright (c) 1989, 1993
      3  1.15  mycroft  *	The Regents of the University of California.  All rights reserved.
      4   1.1      cgd  *
      5   1.1      cgd  * Redistribution and use in source and binary forms, with or without
      6   1.1      cgd  * modification, are permitted provided that the following conditions
      7   1.1      cgd  * are met:
      8   1.1      cgd  * 1. Redistributions of source code must retain the above copyright
      9   1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     10   1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11   1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     12   1.1      cgd  *    documentation and/or other materials provided with the distribution.
     13   1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     14   1.1      cgd  *    must display the following acknowledgement:
     15   1.1      cgd  *	This product includes software developed by the University of
     16   1.1      cgd  *	California, Berkeley and its contributors.
     17   1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     18   1.1      cgd  *    may be used to endorse or promote products derived from this software
     19   1.1      cgd  *    without specific prior written permission.
     20   1.1      cgd  *
     21   1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22   1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23   1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24   1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25   1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26   1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27   1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28   1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29   1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30   1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31   1.1      cgd  * SUCH DAMAGE.
     32   1.1      cgd  *
     33  1.15  mycroft  *	from: @(#)spec_vnops.c	8.6 (Berkeley) 4/9/94
     34  1.15  mycroft  *	$Id: spec_vnops.c,v 1.15 1994/06/08 11:33:47 mycroft Exp $
     35   1.1      cgd  */
     36   1.1      cgd 
     37   1.9  mycroft #include <sys/param.h>
     38   1.9  mycroft #include <sys/proc.h>
     39   1.9  mycroft #include <sys/systm.h>
     40   1.9  mycroft #include <sys/kernel.h>
     41   1.9  mycroft #include <sys/conf.h>
     42   1.9  mycroft #include <sys/buf.h>
     43   1.9  mycroft #include <sys/mount.h>
     44   1.9  mycroft #include <sys/namei.h>
     45   1.9  mycroft #include <sys/vnode.h>
     46   1.9  mycroft #include <sys/stat.h>
     47   1.9  mycroft #include <sys/errno.h>
     48   1.9  mycroft #include <sys/ioctl.h>
     49   1.9  mycroft #include <sys/file.h>
     50   1.9  mycroft #include <sys/disklabel.h>
     51  1.15  mycroft #include <miscfs/specfs/specdev.h>
     52   1.1      cgd 
     53   1.1      cgd /* symbolic sleep message strings for devices */
     54   1.1      cgd char	devopn[] = "devopn";
     55   1.1      cgd char	devio[] = "devio";
     56   1.1      cgd char	devwait[] = "devwait";
     57   1.1      cgd char	devin[] = "devin";
     58   1.1      cgd char	devout[] = "devout";
     59   1.1      cgd char	devioc[] = "devioc";
     60   1.1      cgd char	devcls[] = "devcls";
     61   1.1      cgd 
     62  1.15  mycroft int (**spec_vnodeop_p)();
     63  1.15  mycroft struct vnodeopv_entry_desc spec_vnodeop_entries[] = {
     64  1.15  mycroft 	{ &vop_default_desc, vn_default_error },
     65  1.15  mycroft 	{ &vop_lookup_desc, spec_lookup },		/* lookup */
     66  1.15  mycroft 	{ &vop_create_desc, spec_create },		/* create */
     67  1.15  mycroft 	{ &vop_mknod_desc, spec_mknod },		/* mknod */
     68  1.15  mycroft 	{ &vop_open_desc, spec_open },			/* open */
     69  1.15  mycroft 	{ &vop_close_desc, spec_close },		/* close */
     70  1.15  mycroft 	{ &vop_access_desc, spec_access },		/* access */
     71  1.15  mycroft 	{ &vop_getattr_desc, spec_getattr },		/* getattr */
     72  1.15  mycroft 	{ &vop_setattr_desc, spec_setattr },		/* setattr */
     73  1.15  mycroft 	{ &vop_read_desc, spec_read },			/* read */
     74  1.15  mycroft 	{ &vop_write_desc, spec_write },		/* write */
     75  1.15  mycroft 	{ &vop_ioctl_desc, spec_ioctl },		/* ioctl */
     76  1.15  mycroft 	{ &vop_select_desc, spec_select },		/* select */
     77  1.15  mycroft 	{ &vop_mmap_desc, spec_mmap },			/* mmap */
     78  1.15  mycroft 	{ &vop_fsync_desc, spec_fsync },		/* fsync */
     79  1.15  mycroft 	{ &vop_seek_desc, spec_seek },			/* seek */
     80  1.15  mycroft 	{ &vop_remove_desc, spec_remove },		/* remove */
     81  1.15  mycroft 	{ &vop_link_desc, spec_link },			/* link */
     82  1.15  mycroft 	{ &vop_rename_desc, spec_rename },		/* rename */
     83  1.15  mycroft 	{ &vop_mkdir_desc, spec_mkdir },		/* mkdir */
     84  1.15  mycroft 	{ &vop_rmdir_desc, spec_rmdir },		/* rmdir */
     85  1.15  mycroft 	{ &vop_symlink_desc, spec_symlink },		/* symlink */
     86  1.15  mycroft 	{ &vop_readdir_desc, spec_readdir },		/* readdir */
     87  1.15  mycroft 	{ &vop_readlink_desc, spec_readlink },		/* readlink */
     88  1.15  mycroft 	{ &vop_abortop_desc, spec_abortop },		/* abortop */
     89  1.15  mycroft 	{ &vop_inactive_desc, spec_inactive },		/* inactive */
     90  1.15  mycroft 	{ &vop_reclaim_desc, spec_reclaim },		/* reclaim */
     91  1.15  mycroft 	{ &vop_lock_desc, spec_lock },			/* lock */
     92  1.15  mycroft 	{ &vop_unlock_desc, spec_unlock },		/* unlock */
     93  1.15  mycroft 	{ &vop_bmap_desc, spec_bmap },			/* bmap */
     94  1.15  mycroft 	{ &vop_strategy_desc, spec_strategy },		/* strategy */
     95  1.15  mycroft 	{ &vop_print_desc, spec_print },		/* print */
     96  1.15  mycroft 	{ &vop_islocked_desc, spec_islocked },		/* islocked */
     97  1.15  mycroft 	{ &vop_pathconf_desc, spec_pathconf },		/* pathconf */
     98  1.15  mycroft 	{ &vop_advlock_desc, spec_advlock },		/* advlock */
     99  1.15  mycroft 	{ &vop_blkatoff_desc, spec_blkatoff },		/* blkatoff */
    100  1.15  mycroft 	{ &vop_valloc_desc, spec_valloc },		/* valloc */
    101  1.15  mycroft 	{ &vop_vfree_desc, spec_vfree },		/* vfree */
    102  1.15  mycroft 	{ &vop_truncate_desc, spec_truncate },		/* truncate */
    103  1.15  mycroft 	{ &vop_update_desc, spec_update },		/* update */
    104  1.15  mycroft 	{ &vop_bwrite_desc, spec_bwrite },		/* bwrite */
    105  1.15  mycroft 	{ (struct vnodeop_desc*)NULL, (int(*)())NULL }
    106   1.1      cgd };
    107  1.15  mycroft struct vnodeopv_desc spec_vnodeop_opv_desc =
    108  1.15  mycroft 	{ &spec_vnodeop_p, spec_vnodeop_entries };
    109   1.1      cgd 
    110   1.1      cgd /*
    111   1.1      cgd  * Trivial lookup routine that always fails.
    112   1.1      cgd  */
    113   1.4   andrew int
    114  1.15  mycroft spec_lookup(ap)
    115  1.15  mycroft 	struct vop_lookup_args /* {
    116  1.15  mycroft 		struct vnode *a_dvp;
    117  1.15  mycroft 		struct vnode **a_vpp;
    118  1.15  mycroft 		struct componentname *a_cnp;
    119  1.15  mycroft 	} */ *ap;
    120   1.1      cgd {
    121   1.1      cgd 
    122  1.15  mycroft 	*ap->a_vpp = NULL;
    123   1.1      cgd 	return (ENOTDIR);
    124   1.1      cgd }
    125   1.1      cgd 
    126   1.1      cgd /*
    127  1.15  mycroft  * Open a special file.
    128   1.1      cgd  */
    129   1.1      cgd /* ARGSUSED */
    130  1.15  mycroft spec_open(ap)
    131  1.15  mycroft 	struct vop_open_args /* {
    132  1.15  mycroft 		struct vnode *a_vp;
    133  1.15  mycroft 		int  a_mode;
    134  1.15  mycroft 		struct ucred *a_cred;
    135  1.15  mycroft 		struct proc *a_p;
    136  1.15  mycroft 	} */ *ap;
    137   1.1      cgd {
    138  1.15  mycroft 	struct vnode *bvp, *vp = ap->a_vp;
    139  1.15  mycroft 	dev_t bdev, dev = (dev_t)vp->v_rdev;
    140   1.1      cgd 	register int maj = major(dev);
    141   1.1      cgd 	int error;
    142   1.1      cgd 
    143  1.15  mycroft 	/*
    144  1.15  mycroft 	 * Don't allow open if fs is mounted -nodev.
    145  1.15  mycroft 	 */
    146   1.1      cgd 	if (vp->v_mount && (vp->v_mount->mnt_flag & MNT_NODEV))
    147   1.1      cgd 		return (ENXIO);
    148   1.1      cgd 
    149   1.1      cgd 	switch (vp->v_type) {
    150   1.1      cgd 
    151   1.1      cgd 	case VCHR:
    152   1.1      cgd 		if ((u_int)maj >= nchrdev)
    153   1.1      cgd 			return (ENXIO);
    154  1.15  mycroft 		if (ap->a_cred != FSCRED && (ap->a_mode & FWRITE)) {
    155  1.15  mycroft 			/*
    156  1.15  mycroft 			 * When running in very secure mode, do not allow
    157  1.15  mycroft 			 * opens for writing of any disk character devices.
    158  1.15  mycroft 			 */
    159  1.15  mycroft 			if (securelevel >= 2 && isdisk(dev, VCHR))
    160  1.15  mycroft 				return (EPERM);
    161  1.15  mycroft 			/*
    162  1.15  mycroft 			 * When running in secure mode, do not allow opens
    163  1.15  mycroft 			 * for writing of /dev/mem, /dev/kmem, or character
    164  1.15  mycroft 			 * devices whose corresponding block devices are
    165  1.15  mycroft 			 * currently mounted.
    166  1.15  mycroft 			 */
    167  1.15  mycroft 			if (securelevel >= 1) {
    168  1.15  mycroft 				if ((bdev = chrtoblk(dev)) != NODEV &&
    169  1.15  mycroft 				    vfinddev(bdev, VBLK, &bvp) &&
    170  1.15  mycroft 				    bvp->v_usecount > 0 &&
    171  1.15  mycroft 				    (error = vfs_mountedon(bvp)))
    172  1.15  mycroft 					return (error);
    173  1.15  mycroft 				if (iskmemdev(dev))
    174  1.15  mycroft 					return (EPERM);
    175  1.15  mycroft 			}
    176  1.15  mycroft 		}
    177   1.1      cgd 		VOP_UNLOCK(vp);
    178  1.15  mycroft 		error = (*cdevsw[maj].d_open)(dev, ap->a_mode, S_IFCHR, ap->a_p);
    179   1.1      cgd 		VOP_LOCK(vp);
    180   1.1      cgd 		return (error);
    181   1.1      cgd 
    182   1.1      cgd 	case VBLK:
    183   1.1      cgd 		if ((u_int)maj >= nblkdev)
    184   1.1      cgd 			return (ENXIO);
    185  1.15  mycroft 		/*
    186  1.15  mycroft 		 * When running in very secure mode, do not allow
    187  1.15  mycroft 		 * opens for writing of any disk block devices.
    188  1.15  mycroft 		 */
    189  1.15  mycroft 		if (securelevel >= 2 && ap->a_cred != FSCRED &&
    190  1.15  mycroft 		    (ap->a_mode & FWRITE) && isdisk(dev, VBLK))
    191  1.15  mycroft 			return (EPERM);
    192  1.15  mycroft 		/*
    193  1.15  mycroft 		 * Do not allow opens of block devices that are
    194  1.15  mycroft 		 * currently mounted.
    195  1.15  mycroft 		 */
    196  1.15  mycroft 		if (error = vfs_mountedon(vp))
    197   1.1      cgd 			return (error);
    198  1.15  mycroft 		return ((*bdevsw[maj].d_open)(dev, ap->a_mode, S_IFBLK, ap->a_p));
    199   1.1      cgd 	}
    200  1.15  mycroft 	return (0);
    201   1.1      cgd }
    202   1.1      cgd 
    203   1.1      cgd /*
    204   1.1      cgd  * Vnode op for read
    205   1.1      cgd  */
    206   1.1      cgd /* ARGSUSED */
    207  1.15  mycroft spec_read(ap)
    208  1.15  mycroft 	struct vop_read_args /* {
    209  1.15  mycroft 		struct vnode *a_vp;
    210  1.15  mycroft 		struct uio *a_uio;
    211  1.15  mycroft 		int  a_ioflag;
    212  1.15  mycroft 		struct ucred *a_cred;
    213  1.15  mycroft 	} */ *ap;
    214  1.15  mycroft {
    215  1.15  mycroft 	register struct vnode *vp = ap->a_vp;
    216  1.15  mycroft 	register struct uio *uio = ap->a_uio;
    217  1.15  mycroft  	struct proc *p = uio->uio_procp;
    218   1.1      cgd 	struct buf *bp;
    219  1.15  mycroft 	daddr_t bn, nextbn;
    220   1.1      cgd 	long bsize, bscale;
    221   1.1      cgd 	struct partinfo dpart;
    222  1.15  mycroft 	int n, on, majordev, (*ioctl)();
    223   1.1      cgd 	int error = 0;
    224  1.15  mycroft 	dev_t dev;
    225   1.1      cgd 
    226   1.1      cgd #ifdef DIAGNOSTIC
    227   1.1      cgd 	if (uio->uio_rw != UIO_READ)
    228   1.1      cgd 		panic("spec_read mode");
    229   1.1      cgd 	if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
    230   1.1      cgd 		panic("spec_read proc");
    231   1.1      cgd #endif
    232   1.1      cgd 	if (uio->uio_resid == 0)
    233   1.1      cgd 		return (0);
    234   1.1      cgd 
    235   1.1      cgd 	switch (vp->v_type) {
    236   1.1      cgd 
    237   1.1      cgd 	case VCHR:
    238   1.1      cgd 		VOP_UNLOCK(vp);
    239   1.1      cgd 		error = (*cdevsw[major(vp->v_rdev)].d_read)
    240  1.15  mycroft 			(vp->v_rdev, uio, ap->a_ioflag);
    241   1.1      cgd 		VOP_LOCK(vp);
    242   1.1      cgd 		return (error);
    243   1.1      cgd 
    244   1.1      cgd 	case VBLK:
    245   1.1      cgd 		if (uio->uio_offset < 0)
    246   1.1      cgd 			return (EINVAL);
    247   1.1      cgd 		bsize = BLKDEV_IOSIZE;
    248  1.15  mycroft 		dev = vp->v_rdev;
    249  1.15  mycroft 		if ((majordev = major(dev)) < nblkdev &&
    250  1.15  mycroft 		    (ioctl = bdevsw[majordev].d_ioctl) != NULL &&
    251  1.15  mycroft 		    (*ioctl)(dev, DIOCGPART, (caddr_t)&dpart, FREAD, p) == 0 &&
    252  1.15  mycroft 		    dpart.part->p_fstype == FS_BSDFFS &&
    253  1.15  mycroft 		    dpart.part->p_frag != 0 && dpart.part->p_fsize != 0)
    254  1.15  mycroft 			bsize = dpart.part->p_frag * dpart.part->p_fsize;
    255   1.1      cgd 		bscale = bsize / DEV_BSIZE;
    256   1.1      cgd 		do {
    257   1.1      cgd 			bn = (uio->uio_offset / DEV_BSIZE) &~ (bscale - 1);
    258   1.1      cgd 			on = uio->uio_offset % bsize;
    259  1.14      cgd 			n = min((unsigned)(bsize - on), uio->uio_resid);
    260  1.15  mycroft 			if (vp->v_lastr + bscale == bn) {
    261  1.15  mycroft 				nextbn = bn + bscale;
    262  1.15  mycroft 				error = breadn(vp, bn, (int)bsize, &nextbn,
    263  1.15  mycroft 					(int *)&bsize, 1, NOCRED, &bp);
    264  1.15  mycroft 			} else
    265   1.1      cgd 				error = bread(vp, bn, (int)bsize, NOCRED, &bp);
    266   1.1      cgd 			vp->v_lastr = bn;
    267  1.14      cgd 			n = min(n, bsize - bp->b_resid);
    268   1.1      cgd 			if (error) {
    269   1.1      cgd 				brelse(bp);
    270   1.1      cgd 				return (error);
    271   1.1      cgd 			}
    272  1.15  mycroft 			error = uiomove((char *)bp->b_data + on, n, uio);
    273   1.1      cgd 			if (n + on == bsize)
    274   1.1      cgd 				bp->b_flags |= B_AGE;
    275   1.1      cgd 			brelse(bp);
    276   1.1      cgd 		} while (error == 0 && uio->uio_resid > 0 && n != 0);
    277   1.1      cgd 		return (error);
    278   1.1      cgd 
    279   1.1      cgd 	default:
    280   1.1      cgd 		panic("spec_read type");
    281   1.1      cgd 	}
    282   1.1      cgd 	/* NOTREACHED */
    283   1.1      cgd }
    284   1.1      cgd 
    285   1.1      cgd /*
    286   1.1      cgd  * Vnode op for write
    287   1.1      cgd  */
    288   1.1      cgd /* ARGSUSED */
    289  1.15  mycroft spec_write(ap)
    290  1.15  mycroft 	struct vop_write_args /* {
    291  1.15  mycroft 		struct vnode *a_vp;
    292  1.15  mycroft 		struct uio *a_uio;
    293  1.15  mycroft 		int  a_ioflag;
    294  1.15  mycroft 		struct ucred *a_cred;
    295  1.15  mycroft 	} */ *ap;
    296   1.1      cgd {
    297  1.15  mycroft 	register struct vnode *vp = ap->a_vp;
    298  1.15  mycroft 	register struct uio *uio = ap->a_uio;
    299   1.1      cgd 	struct proc *p = uio->uio_procp;
    300   1.1      cgd 	struct buf *bp;
    301   1.1      cgd 	daddr_t bn;
    302   1.1      cgd 	int bsize, blkmask;
    303   1.1      cgd 	struct partinfo dpart;
    304   1.1      cgd 	register int n, on;
    305   1.1      cgd 	int error = 0;
    306   1.1      cgd 
    307   1.1      cgd #ifdef DIAGNOSTIC
    308   1.1      cgd 	if (uio->uio_rw != UIO_WRITE)
    309   1.1      cgd 		panic("spec_write mode");
    310   1.1      cgd 	if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
    311   1.1      cgd 		panic("spec_write proc");
    312   1.1      cgd #endif
    313   1.1      cgd 
    314   1.1      cgd 	switch (vp->v_type) {
    315   1.1      cgd 
    316   1.1      cgd 	case VCHR:
    317   1.1      cgd 		VOP_UNLOCK(vp);
    318   1.1      cgd 		error = (*cdevsw[major(vp->v_rdev)].d_write)
    319  1.15  mycroft 			(vp->v_rdev, uio, ap->a_ioflag);
    320   1.1      cgd 		VOP_LOCK(vp);
    321   1.1      cgd 		return (error);
    322   1.1      cgd 
    323   1.1      cgd 	case VBLK:
    324   1.1      cgd 		if (uio->uio_resid == 0)
    325   1.1      cgd 			return (0);
    326   1.1      cgd 		if (uio->uio_offset < 0)
    327   1.1      cgd 			return (EINVAL);
    328   1.1      cgd 		bsize = BLKDEV_IOSIZE;
    329   1.1      cgd 		if ((*bdevsw[major(vp->v_rdev)].d_ioctl)(vp->v_rdev, DIOCGPART,
    330   1.1      cgd 		    (caddr_t)&dpart, FREAD, p) == 0) {
    331   1.1      cgd 			if (dpart.part->p_fstype == FS_BSDFFS &&
    332   1.1      cgd 			    dpart.part->p_frag != 0 && dpart.part->p_fsize != 0)
    333   1.1      cgd 				bsize = dpart.part->p_frag *
    334   1.1      cgd 				    dpart.part->p_fsize;
    335   1.1      cgd 		}
    336   1.1      cgd 		blkmask = (bsize / DEV_BSIZE) - 1;
    337   1.1      cgd 		do {
    338   1.1      cgd 			bn = (uio->uio_offset / DEV_BSIZE) &~ blkmask;
    339   1.1      cgd 			on = uio->uio_offset % bsize;
    340  1.14      cgd 			n = min((unsigned)(bsize - on), uio->uio_resid);
    341   1.1      cgd 			if (n == bsize)
    342  1.13      cgd 				bp = getblk(vp, bn, bsize, 0, 0);
    343   1.1      cgd 			else
    344   1.1      cgd 				error = bread(vp, bn, bsize, NOCRED, &bp);
    345  1.14      cgd 			n = min(n, bsize - bp->b_resid);
    346   1.1      cgd 			if (error) {
    347   1.1      cgd 				brelse(bp);
    348   1.1      cgd 				return (error);
    349   1.1      cgd 			}
    350  1.15  mycroft 			error = uiomove((char *)bp->b_data + on, n, uio);
    351   1.1      cgd 			if (n + on == bsize) {
    352   1.1      cgd 				bp->b_flags |= B_AGE;
    353   1.1      cgd 				bawrite(bp);
    354   1.1      cgd 			} else
    355   1.1      cgd 				bdwrite(bp);
    356   1.1      cgd 		} while (error == 0 && uio->uio_resid > 0 && n != 0);
    357   1.1      cgd 		return (error);
    358   1.1      cgd 
    359   1.1      cgd 	default:
    360   1.1      cgd 		panic("spec_write type");
    361   1.1      cgd 	}
    362   1.1      cgd 	/* NOTREACHED */
    363   1.1      cgd }
    364   1.1      cgd 
    365   1.1      cgd /*
    366   1.1      cgd  * Device ioctl operation.
    367   1.1      cgd  */
    368   1.1      cgd /* ARGSUSED */
    369  1.15  mycroft spec_ioctl(ap)
    370  1.15  mycroft 	struct vop_ioctl_args /* {
    371  1.15  mycroft 		struct vnode *a_vp;
    372  1.15  mycroft 		int  a_command;
    373  1.15  mycroft 		caddr_t  a_data;
    374  1.15  mycroft 		int  a_fflag;
    375  1.15  mycroft 		struct ucred *a_cred;
    376  1.15  mycroft 		struct proc *a_p;
    377  1.15  mycroft 	} */ *ap;
    378   1.1      cgd {
    379  1.15  mycroft 	dev_t dev = ap->a_vp->v_rdev;
    380   1.1      cgd 
    381  1.15  mycroft 	switch (ap->a_vp->v_type) {
    382   1.1      cgd 
    383   1.1      cgd 	case VCHR:
    384  1.15  mycroft 		return ((*cdevsw[major(dev)].d_ioctl)(dev, ap->a_command, ap->a_data,
    385  1.15  mycroft 		    ap->a_fflag, ap->a_p));
    386   1.1      cgd 
    387   1.1      cgd 	case VBLK:
    388  1.15  mycroft 		if (ap->a_command == 0 && (int)ap->a_data == B_TAPE)
    389   1.1      cgd 			if (bdevsw[major(dev)].d_flags & B_TAPE)
    390   1.1      cgd 				return (0);
    391   1.1      cgd 			else
    392   1.1      cgd 				return (1);
    393  1.15  mycroft 		return ((*bdevsw[major(dev)].d_ioctl)(dev, ap->a_command, ap->a_data,
    394  1.15  mycroft 		   ap->a_fflag, ap->a_p));
    395   1.1      cgd 
    396   1.1      cgd 	default:
    397   1.1      cgd 		panic("spec_ioctl");
    398   1.1      cgd 		/* NOTREACHED */
    399   1.1      cgd 	}
    400   1.1      cgd }
    401   1.1      cgd 
    402   1.1      cgd /* ARGSUSED */
    403  1.15  mycroft spec_select(ap)
    404  1.15  mycroft 	struct vop_select_args /* {
    405  1.15  mycroft 		struct vnode *a_vp;
    406  1.15  mycroft 		int  a_which;
    407  1.15  mycroft 		int  a_fflags;
    408  1.15  mycroft 		struct ucred *a_cred;
    409  1.15  mycroft 		struct proc *a_p;
    410  1.15  mycroft 	} */ *ap;
    411   1.1      cgd {
    412   1.1      cgd 	register dev_t dev;
    413   1.1      cgd 
    414  1.15  mycroft 	switch (ap->a_vp->v_type) {
    415   1.1      cgd 
    416   1.1      cgd 	default:
    417   1.1      cgd 		return (1);		/* XXX */
    418   1.1      cgd 
    419   1.1      cgd 	case VCHR:
    420  1.15  mycroft 		dev = ap->a_vp->v_rdev;
    421  1.15  mycroft 		return (*cdevsw[major(dev)].d_select)(dev, ap->a_which, ap->a_p);
    422  1.15  mycroft 	}
    423  1.15  mycroft }
    424  1.15  mycroft /*
    425  1.15  mycroft  * Synch buffers associated with a block device
    426  1.15  mycroft  */
    427  1.15  mycroft /* ARGSUSED */
    428  1.15  mycroft int
    429  1.15  mycroft spec_fsync(ap)
    430  1.15  mycroft 	struct vop_fsync_args /* {
    431  1.15  mycroft 		struct vnode *a_vp;
    432  1.15  mycroft 		struct ucred *a_cred;
    433  1.15  mycroft 		int  a_waitfor;
    434  1.15  mycroft 		struct proc *a_p;
    435  1.15  mycroft 	} */ *ap;
    436  1.15  mycroft {
    437  1.15  mycroft 	register struct vnode *vp = ap->a_vp;
    438  1.15  mycroft 	register struct buf *bp;
    439  1.15  mycroft 	struct buf *nbp;
    440  1.15  mycroft 	int s;
    441  1.15  mycroft 
    442  1.15  mycroft 	if (vp->v_type == VCHR)
    443  1.15  mycroft 		return (0);
    444  1.15  mycroft 	/*
    445  1.15  mycroft 	 * Flush all dirty buffers associated with a block device.
    446  1.15  mycroft 	 */
    447  1.15  mycroft loop:
    448  1.15  mycroft 	s = splbio();
    449  1.15  mycroft 	for (bp = vp->v_dirtyblkhd.lh_first; bp; bp = nbp) {
    450  1.15  mycroft 		nbp = bp->b_vnbufs.le_next;
    451  1.15  mycroft 		if ((bp->b_flags & B_BUSY))
    452  1.15  mycroft 			continue;
    453  1.15  mycroft 		if ((bp->b_flags & B_DELWRI) == 0)
    454  1.15  mycroft 			panic("spec_fsync: not dirty");
    455  1.15  mycroft 		bremfree(bp);
    456  1.15  mycroft 		bp->b_flags |= B_BUSY;
    457  1.15  mycroft 		splx(s);
    458  1.15  mycroft 		bawrite(bp);
    459  1.15  mycroft 		goto loop;
    460  1.15  mycroft 	}
    461  1.15  mycroft 	if (ap->a_waitfor == MNT_WAIT) {
    462  1.15  mycroft 		while (vp->v_numoutput) {
    463  1.15  mycroft 			vp->v_flag |= VBWAIT;
    464  1.15  mycroft 			sleep((caddr_t)&vp->v_numoutput, PRIBIO + 1);
    465  1.15  mycroft 		}
    466  1.15  mycroft #ifdef DIAGNOSTIC
    467  1.15  mycroft 		if (vp->v_dirtyblkhd.lh_first) {
    468  1.15  mycroft 			vprint("spec_fsync: dirty", vp);
    469  1.15  mycroft 			goto loop;
    470  1.15  mycroft 		}
    471  1.15  mycroft #endif
    472   1.1      cgd 	}
    473  1.15  mycroft 	splx(s);
    474  1.15  mycroft 	return (0);
    475   1.1      cgd }
    476   1.1      cgd 
    477   1.1      cgd /*
    478   1.1      cgd  * Just call the device strategy routine
    479   1.1      cgd  */
    480  1.15  mycroft spec_strategy(ap)
    481  1.15  mycroft 	struct vop_strategy_args /* {
    482  1.15  mycroft 		struct buf *a_bp;
    483  1.15  mycroft 	} */ *ap;
    484   1.1      cgd {
    485   1.1      cgd 
    486  1.15  mycroft 	(*bdevsw[major(ap->a_bp->b_dev)].d_strategy)(ap->a_bp);
    487   1.1      cgd 	return (0);
    488   1.1      cgd }
    489   1.1      cgd 
    490   1.1      cgd /*
    491   1.1      cgd  * This is a noop, simply returning what one has been given.
    492   1.1      cgd  */
    493  1.15  mycroft spec_bmap(ap)
    494  1.15  mycroft 	struct vop_bmap_args /* {
    495  1.15  mycroft 		struct vnode *a_vp;
    496  1.15  mycroft 		daddr_t  a_bn;
    497  1.15  mycroft 		struct vnode **a_vpp;
    498  1.15  mycroft 		daddr_t *a_bnp;
    499  1.15  mycroft 	} */ *ap;
    500   1.1      cgd {
    501   1.1      cgd 
    502  1.15  mycroft 	if (ap->a_vpp != NULL)
    503  1.15  mycroft 		*ap->a_vpp = ap->a_vp;
    504  1.15  mycroft 	if (ap->a_bnp != NULL)
    505  1.15  mycroft 		*ap->a_bnp = ap->a_bn;
    506   1.1      cgd 	return (0);
    507   1.1      cgd }
    508   1.1      cgd 
    509   1.1      cgd /*
    510   1.1      cgd  * At the moment we do not do any locking.
    511   1.1      cgd  */
    512   1.1      cgd /* ARGSUSED */
    513  1.15  mycroft spec_lock(ap)
    514  1.15  mycroft 	struct vop_lock_args /* {
    515  1.15  mycroft 		struct vnode *a_vp;
    516  1.15  mycroft 	} */ *ap;
    517   1.1      cgd {
    518   1.1      cgd 
    519   1.1      cgd 	return (0);
    520   1.1      cgd }
    521   1.1      cgd 
    522   1.1      cgd /* ARGSUSED */
    523  1.15  mycroft spec_unlock(ap)
    524  1.15  mycroft 	struct vop_unlock_args /* {
    525  1.15  mycroft 		struct vnode *a_vp;
    526  1.15  mycroft 	} */ *ap;
    527   1.1      cgd {
    528   1.1      cgd 
    529   1.1      cgd 	return (0);
    530   1.1      cgd }
    531   1.1      cgd 
    532   1.1      cgd /*
    533   1.1      cgd  * Device close routine
    534   1.1      cgd  */
    535   1.1      cgd /* ARGSUSED */
    536  1.15  mycroft spec_close(ap)
    537  1.15  mycroft 	struct vop_close_args /* {
    538  1.15  mycroft 		struct vnode *a_vp;
    539  1.15  mycroft 		int  a_fflag;
    540  1.15  mycroft 		struct ucred *a_cred;
    541  1.15  mycroft 		struct proc *a_p;
    542  1.15  mycroft 	} */ *ap;
    543   1.1      cgd {
    544  1.15  mycroft 	register struct vnode *vp = ap->a_vp;
    545   1.1      cgd 	dev_t dev = vp->v_rdev;
    546   1.1      cgd 	int (*devclose) __P((dev_t, int, int, struct proc *));
    547  1.15  mycroft 	int mode, error;
    548   1.1      cgd 
    549   1.1      cgd 	switch (vp->v_type) {
    550   1.1      cgd 
    551   1.1      cgd 	case VCHR:
    552  1.11      cgd 		/*
    553  1.11      cgd 		 * Hack: a tty device that is a controlling terminal
    554  1.11      cgd 		 * has a reference from the session structure.
    555  1.11      cgd 		 * We cannot easily tell that a character device is
    556  1.11      cgd 		 * a controlling terminal, unless it is the closing
    557  1.11      cgd 		 * process' controlling terminal.  In that case,
    558  1.11      cgd 		 * if the reference count is 2 (this last descriptor
    559  1.11      cgd 		 * plus the session), release the reference from the session.
    560  1.11      cgd 		 */
    561  1.15  mycroft 		if (vcount(vp) == 2 && ap->a_p &&
    562  1.15  mycroft 		    vp == ap->a_p->p_session->s_ttyvp) {
    563  1.11      cgd 			vrele(vp);
    564  1.15  mycroft 			ap->a_p->p_session->s_ttyvp = NULL;
    565  1.11      cgd 		}
    566   1.1      cgd 		/*
    567   1.1      cgd 		 * If the vnode is locked, then we are in the midst
    568   1.1      cgd 		 * of forcably closing the device, otherwise we only
    569   1.1      cgd 		 * close on last reference.
    570   1.1      cgd 		 */
    571   1.1      cgd 		if (vcount(vp) > 1 && (vp->v_flag & VXLOCK) == 0)
    572   1.1      cgd 			return (0);
    573   1.1      cgd 		devclose = cdevsw[major(dev)].d_close;
    574   1.1      cgd 		mode = S_IFCHR;
    575   1.1      cgd 		break;
    576   1.1      cgd 
    577   1.1      cgd 	case VBLK:
    578   1.1      cgd 		/*
    579   1.1      cgd 		 * On last close of a block device (that isn't mounted)
    580   1.1      cgd 		 * we must invalidate any in core blocks, so that
    581   1.1      cgd 		 * we can, for instance, change floppy disks.
    582   1.1      cgd 		 */
    583  1.15  mycroft 		if (error = vinvalbuf(vp, V_SAVE, ap->a_cred, ap->a_p, 0, 0))
    584  1.15  mycroft 			return (error);
    585   1.1      cgd 		/*
    586   1.1      cgd 		 * We do not want to really close the device if it
    587   1.1      cgd 		 * is still in use unless we are trying to close it
    588   1.1      cgd 		 * forcibly. Since every use (buffer, vnode, swap, cmap)
    589   1.1      cgd 		 * holds a reference to the vnode, and because we mark
    590   1.1      cgd 		 * any other vnodes that alias this device, when the
    591   1.1      cgd 		 * sum of the reference counts on all the aliased
    592   1.1      cgd 		 * vnodes descends to one, we are on last close.
    593   1.1      cgd 		 */
    594   1.1      cgd 		if (vcount(vp) > 1 && (vp->v_flag & VXLOCK) == 0)
    595   1.1      cgd 			return (0);
    596   1.1      cgd 		devclose = bdevsw[major(dev)].d_close;
    597   1.1      cgd 		mode = S_IFBLK;
    598   1.1      cgd 		break;
    599   1.5      cgd 
    600   1.1      cgd 	default:
    601   1.1      cgd 		panic("spec_close: not special");
    602   1.1      cgd 	}
    603   1.1      cgd 
    604  1.15  mycroft 	return ((*devclose)(dev, ap->a_fflag, mode, ap->a_p));
    605   1.1      cgd }
    606   1.1      cgd 
    607   1.1      cgd /*
    608   1.1      cgd  * Print out the contents of a special device vnode.
    609   1.1      cgd  */
    610  1.15  mycroft spec_print(ap)
    611  1.15  mycroft 	struct vop_print_args /* {
    612  1.15  mycroft 		struct vnode *a_vp;
    613  1.15  mycroft 	} */ *ap;
    614  1.15  mycroft {
    615  1.15  mycroft 
    616  1.15  mycroft 	printf("tag VT_NON, dev %d, %d\n", major(ap->a_vp->v_rdev),
    617  1.15  mycroft 		minor(ap->a_vp->v_rdev));
    618  1.15  mycroft }
    619  1.15  mycroft 
    620  1.15  mycroft /*
    621  1.15  mycroft  * Return POSIX pathconf information applicable to special devices.
    622  1.15  mycroft  */
    623  1.15  mycroft spec_pathconf(ap)
    624  1.15  mycroft 	struct vop_pathconf_args /* {
    625  1.15  mycroft 		struct vnode *a_vp;
    626  1.15  mycroft 		int a_name;
    627  1.15  mycroft 		int *a_retval;
    628  1.15  mycroft 	} */ *ap;
    629   1.1      cgd {
    630   1.1      cgd 
    631  1.15  mycroft 	switch (ap->a_name) {
    632  1.15  mycroft 	case _PC_LINK_MAX:
    633  1.15  mycroft 		*ap->a_retval = LINK_MAX;
    634  1.15  mycroft 		return (0);
    635  1.15  mycroft 	case _PC_MAX_CANON:
    636  1.15  mycroft 		*ap->a_retval = MAX_CANON;
    637  1.15  mycroft 		return (0);
    638  1.15  mycroft 	case _PC_MAX_INPUT:
    639  1.15  mycroft 		*ap->a_retval = MAX_INPUT;
    640  1.15  mycroft 		return (0);
    641  1.15  mycroft 	case _PC_PIPE_BUF:
    642  1.15  mycroft 		*ap->a_retval = PIPE_BUF;
    643  1.15  mycroft 		return (0);
    644  1.15  mycroft 	case _PC_CHOWN_RESTRICTED:
    645  1.15  mycroft 		*ap->a_retval = 1;
    646  1.15  mycroft 		return (0);
    647  1.15  mycroft 	case _PC_VDISABLE:
    648  1.15  mycroft 		*ap->a_retval = _POSIX_VDISABLE;
    649  1.15  mycroft 		return (0);
    650  1.15  mycroft 	default:
    651  1.15  mycroft 		return (EINVAL);
    652  1.15  mycroft 	}
    653  1.15  mycroft 	/* NOTREACHED */
    654   1.1      cgd }
    655   1.1      cgd 
    656   1.1      cgd /*
    657   1.1      cgd  * Special device advisory byte-level locks.
    658   1.1      cgd  */
    659   1.1      cgd /* ARGSUSED */
    660  1.15  mycroft spec_advlock(ap)
    661  1.15  mycroft 	struct vop_advlock_args /* {
    662  1.15  mycroft 		struct vnode *a_vp;
    663  1.15  mycroft 		caddr_t  a_id;
    664  1.15  mycroft 		int  a_op;
    665  1.15  mycroft 		struct flock *a_fl;
    666  1.15  mycroft 		int  a_flags;
    667  1.15  mycroft 	} */ *ap;
    668   1.1      cgd {
    669   1.1      cgd 
    670   1.1      cgd 	return (EOPNOTSUPP);
    671   1.1      cgd }
    672   1.1      cgd 
    673   1.1      cgd /*
    674   1.1      cgd  * Special device failed operation
    675   1.1      cgd  */
    676   1.1      cgd spec_ebadf()
    677   1.1      cgd {
    678   1.1      cgd 
    679   1.1      cgd 	return (EBADF);
    680   1.1      cgd }
    681   1.1      cgd 
    682   1.1      cgd /*
    683   1.1      cgd  * Special device bad operation
    684   1.1      cgd  */
    685   1.1      cgd spec_badop()
    686   1.1      cgd {
    687   1.1      cgd 
    688   1.1      cgd 	panic("spec_badop called");
    689   1.1      cgd 	/* NOTREACHED */
    690   1.1      cgd }
    691