Home | History | Annotate | Line # | Download | only in specfs
spec_vnops.c revision 1.154
      1  1.154  christos /*	$NetBSD: spec_vnops.c,v 1.154 2015/12/04 23:54:06 christos Exp $	*/
      2  1.112        ad 
      3  1.112        ad /*-
      4  1.112        ad  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      5  1.112        ad  * All rights reserved.
      6  1.112        ad  *
      7  1.112        ad  * Redistribution and use in source and binary forms, with or without
      8  1.112        ad  * modification, are permitted provided that the following conditions
      9  1.112        ad  * are met:
     10  1.112        ad  * 1. Redistributions of source code must retain the above copyright
     11  1.112        ad  *    notice, this list of conditions and the following disclaimer.
     12  1.112        ad  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.112        ad  *    notice, this list of conditions and the following disclaimer in the
     14  1.112        ad  *    documentation and/or other materials provided with the distribution.
     15  1.112        ad  *
     16  1.112        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  1.112        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  1.112        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  1.112        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  1.112        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  1.112        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  1.112        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  1.112        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  1.112        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  1.112        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  1.112        ad  * POSSIBILITY OF SUCH DAMAGE.
     27  1.112        ad  */
     28   1.16       cgd 
     29    1.1       cgd /*
     30   1.15   mycroft  * Copyright (c) 1989, 1993
     31   1.15   mycroft  *	The Regents of the University of California.  All rights reserved.
     32    1.1       cgd  *
     33    1.1       cgd  * Redistribution and use in source and binary forms, with or without
     34    1.1       cgd  * modification, are permitted provided that the following conditions
     35    1.1       cgd  * are met:
     36    1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     37    1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     38    1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     39    1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     40    1.1       cgd  *    documentation and/or other materials provided with the distribution.
     41   1.69       agc  * 3. Neither the name of the University nor the names of its contributors
     42    1.1       cgd  *    may be used to endorse or promote products derived from this software
     43    1.1       cgd  *    without specific prior written permission.
     44    1.1       cgd  *
     45    1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     46    1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     47    1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     48    1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     49    1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     50    1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     51    1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     52    1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     53    1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     54    1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     55    1.1       cgd  * SUCH DAMAGE.
     56    1.1       cgd  *
     57   1.39      fvdl  *	@(#)spec_vnops.c	8.15 (Berkeley) 7/14/95
     58    1.1       cgd  */
     59   1.60     lukem 
     60   1.60     lukem #include <sys/cdefs.h>
     61  1.154  christos __KERNEL_RCSID(0, "$NetBSD: spec_vnops.c,v 1.154 2015/12/04 23:54:06 christos Exp $");
     62    1.1       cgd 
     63    1.9   mycroft #include <sys/param.h>
     64    1.9   mycroft #include <sys/proc.h>
     65    1.9   mycroft #include <sys/systm.h>
     66    1.9   mycroft #include <sys/kernel.h>
     67    1.9   mycroft #include <sys/conf.h>
     68    1.9   mycroft #include <sys/buf.h>
     69    1.9   mycroft #include <sys/mount.h>
     70    1.9   mycroft #include <sys/namei.h>
     71    1.9   mycroft #include <sys/vnode.h>
     72    1.9   mycroft #include <sys/stat.h>
     73    1.9   mycroft #include <sys/errno.h>
     74    1.9   mycroft #include <sys/ioctl.h>
     75   1.81        ws #include <sys/poll.h>
     76    1.9   mycroft #include <sys/file.h>
     77    1.9   mycroft #include <sys/disklabel.h>
     78   1.35    kleink #include <sys/lockf.h>
     79   1.71       dsl #include <sys/tty.h>
     80   1.87      elad #include <sys/kauth.h>
     81  1.106   hannken #include <sys/fstrans.h>
     82  1.122      haad #include <sys/module.h>
     83   1.28  christos 
     84   1.30   mycroft #include <miscfs/genfs/genfs.h>
     85   1.15   mycroft #include <miscfs/specfs/specdev.h>
     86    1.1       cgd 
     87    1.1       cgd /* symbolic sleep message strings for devices */
     88   1.37   mycroft const char	devopn[] = "devopn";
     89   1.37   mycroft const char	devio[] = "devio";
     90   1.37   mycroft const char	devwait[] = "devwait";
     91   1.37   mycroft const char	devin[] = "devin";
     92   1.37   mycroft const char	devout[] = "devout";
     93   1.37   mycroft const char	devioc[] = "devioc";
     94   1.37   mycroft const char	devcls[] = "devcls";
     95   1.61      matt 
     96  1.137   hannken #define	SPECHSZ	64
     97  1.137   hannken #if	((SPECHSZ&(SPECHSZ-1)) == 0)
     98  1.137   hannken #define	SPECHASH(rdev)	(((rdev>>5)+(rdev))&(SPECHSZ-1))
     99  1.137   hannken #else
    100  1.137   hannken #define	SPECHASH(rdev)	(((unsigned)((rdev>>5)+(rdev)))%SPECHSZ)
    101  1.137   hannken #endif
    102  1.137   hannken 
    103  1.137   hannken static vnode_t	*specfs_hash[SPECHSZ];
    104  1.148   hannken extern struct mount *dead_rootmount;
    105   1.46  sommerfe 
    106   1.46  sommerfe /*
    107  1.112        ad  * This vnode operations vector is used for special device nodes
    108  1.112        ad  * created from whole cloth by the kernel.  For the ops vector for
    109  1.112        ad  * vnodes built from special devices found in a filesystem, see (e.g)
    110  1.112        ad  * ffs_specop_entries[] in ffs_vnops.c or the equivalent for other
    111  1.112        ad  * filesystems.
    112   1.46  sommerfe  */
    113    1.1       cgd 
    114   1.82   xtraeme int (**spec_vnodeop_p)(void *);
    115   1.53  jdolecek const struct vnodeopv_entry_desc spec_vnodeop_entries[] = {
    116   1.15   mycroft 	{ &vop_default_desc, vn_default_error },
    117   1.15   mycroft 	{ &vop_lookup_desc, spec_lookup },		/* lookup */
    118   1.15   mycroft 	{ &vop_create_desc, spec_create },		/* create */
    119   1.15   mycroft 	{ &vop_mknod_desc, spec_mknod },		/* mknod */
    120   1.15   mycroft 	{ &vop_open_desc, spec_open },			/* open */
    121   1.15   mycroft 	{ &vop_close_desc, spec_close },		/* close */
    122   1.15   mycroft 	{ &vop_access_desc, spec_access },		/* access */
    123   1.15   mycroft 	{ &vop_getattr_desc, spec_getattr },		/* getattr */
    124   1.15   mycroft 	{ &vop_setattr_desc, spec_setattr },		/* setattr */
    125   1.15   mycroft 	{ &vop_read_desc, spec_read },			/* read */
    126   1.15   mycroft 	{ &vop_write_desc, spec_write },		/* write */
    127  1.145  dholland 	{ &vop_fallocate_desc, spec_fallocate },	/* fallocate */
    128  1.145  dholland 	{ &vop_fdiscard_desc, spec_fdiscard },		/* fdiscard */
    129   1.47  sommerfe 	{ &vop_fcntl_desc, spec_fcntl },		/* fcntl */
    130   1.15   mycroft 	{ &vop_ioctl_desc, spec_ioctl },		/* ioctl */
    131   1.32   mycroft 	{ &vop_poll_desc, spec_poll },			/* poll */
    132   1.65  jdolecek 	{ &vop_kqfilter_desc, spec_kqfilter },		/* kqfilter */
    133   1.39      fvdl 	{ &vop_revoke_desc, spec_revoke },		/* revoke */
    134   1.15   mycroft 	{ &vop_mmap_desc, spec_mmap },			/* mmap */
    135   1.15   mycroft 	{ &vop_fsync_desc, spec_fsync },		/* fsync */
    136   1.15   mycroft 	{ &vop_seek_desc, spec_seek },			/* seek */
    137   1.15   mycroft 	{ &vop_remove_desc, spec_remove },		/* remove */
    138   1.15   mycroft 	{ &vop_link_desc, spec_link },			/* link */
    139   1.15   mycroft 	{ &vop_rename_desc, spec_rename },		/* rename */
    140   1.15   mycroft 	{ &vop_mkdir_desc, spec_mkdir },		/* mkdir */
    141   1.15   mycroft 	{ &vop_rmdir_desc, spec_rmdir },		/* rmdir */
    142   1.15   mycroft 	{ &vop_symlink_desc, spec_symlink },		/* symlink */
    143   1.15   mycroft 	{ &vop_readdir_desc, spec_readdir },		/* readdir */
    144   1.15   mycroft 	{ &vop_readlink_desc, spec_readlink },		/* readlink */
    145   1.15   mycroft 	{ &vop_abortop_desc, spec_abortop },		/* abortop */
    146   1.15   mycroft 	{ &vop_inactive_desc, spec_inactive },		/* inactive */
    147   1.15   mycroft 	{ &vop_reclaim_desc, spec_reclaim },		/* reclaim */
    148   1.15   mycroft 	{ &vop_lock_desc, spec_lock },			/* lock */
    149   1.15   mycroft 	{ &vop_unlock_desc, spec_unlock },		/* unlock */
    150   1.15   mycroft 	{ &vop_bmap_desc, spec_bmap },			/* bmap */
    151   1.15   mycroft 	{ &vop_strategy_desc, spec_strategy },		/* strategy */
    152   1.15   mycroft 	{ &vop_print_desc, spec_print },		/* print */
    153   1.15   mycroft 	{ &vop_islocked_desc, spec_islocked },		/* islocked */
    154   1.15   mycroft 	{ &vop_pathconf_desc, spec_pathconf },		/* pathconf */
    155   1.15   mycroft 	{ &vop_advlock_desc, spec_advlock },		/* advlock */
    156   1.28  christos 	{ &vop_bwrite_desc, spec_bwrite },		/* bwrite */
    157   1.55       chs 	{ &vop_getpages_desc, spec_getpages },		/* getpages */
    158   1.55       chs 	{ &vop_putpages_desc, spec_putpages },		/* putpages */
    159   1.55       chs 	{ NULL, NULL }
    160    1.1       cgd };
    161   1.53  jdolecek const struct vnodeopv_desc spec_vnodeop_opv_desc =
    162   1.15   mycroft 	{ &spec_vnodeop_p, spec_vnodeop_entries };
    163    1.1       cgd 
    164  1.127      elad static kauth_listener_t rawio_listener;
    165  1.127      elad 
    166  1.126      elad /* Returns true if vnode is /dev/mem or /dev/kmem. */
    167  1.126      elad bool
    168  1.126      elad iskmemvp(struct vnode *vp)
    169  1.126      elad {
    170  1.126      elad 	return ((vp->v_type == VCHR) && iskmemdev(vp->v_rdev));
    171  1.126      elad }
    172  1.126      elad 
    173    1.1       cgd /*
    174  1.112        ad  * Returns true if dev is /dev/mem or /dev/kmem.
    175  1.112        ad  */
    176  1.112        ad int
    177  1.112        ad iskmemdev(dev_t dev)
    178  1.112        ad {
    179  1.112        ad 	/* mem_no is emitted by config(8) to generated devsw.c */
    180  1.112        ad 	extern const int mem_no;
    181  1.112        ad 
    182  1.112        ad 	/* minor 14 is /dev/io on i386 with COMPAT_10 */
    183  1.112        ad 	return (major(dev) == mem_no && (minor(dev) < 2 || minor(dev) == 14));
    184  1.112        ad }
    185  1.112        ad 
    186  1.127      elad static int
    187  1.127      elad rawio_listener_cb(kauth_cred_t cred, kauth_action_t action, void *cookie,
    188  1.127      elad     void *arg0, void *arg1, void *arg2, void *arg3)
    189  1.127      elad {
    190  1.127      elad 	int result;
    191  1.127      elad 
    192  1.127      elad 	result = KAUTH_RESULT_DEFER;
    193  1.127      elad 
    194  1.127      elad 	if ((action != KAUTH_DEVICE_RAWIO_SPEC) &&
    195  1.127      elad 	    (action != KAUTH_DEVICE_RAWIO_PASSTHRU))
    196  1.127      elad 		return result;
    197  1.127      elad 
    198  1.127      elad 	/* Access is mandated by permissions. */
    199  1.127      elad 	result = KAUTH_RESULT_ALLOW;
    200  1.127      elad 
    201  1.127      elad 	return result;
    202  1.127      elad }
    203  1.127      elad 
    204  1.127      elad void
    205  1.127      elad spec_init(void)
    206  1.127      elad {
    207  1.127      elad 
    208  1.127      elad 	rawio_listener = kauth_listen_scope(KAUTH_SCOPE_DEVICE,
    209  1.127      elad 	    rawio_listener_cb, NULL);
    210  1.127      elad }
    211  1.127      elad 
    212  1.112        ad /*
    213  1.112        ad  * Initialize a vnode that represents a device.
    214  1.112        ad  */
    215  1.112        ad void
    216  1.112        ad spec_node_init(vnode_t *vp, dev_t rdev)
    217  1.112        ad {
    218  1.112        ad 	specnode_t *sn;
    219  1.112        ad 	specdev_t *sd;
    220  1.112        ad 	vnode_t *vp2;
    221  1.112        ad 	vnode_t **vpp;
    222  1.112        ad 
    223  1.112        ad 	KASSERT(vp->v_type == VBLK || vp->v_type == VCHR);
    224  1.112        ad 	KASSERT(vp->v_specnode == NULL);
    225  1.112        ad 
    226  1.112        ad 	/*
    227  1.112        ad 	 * Search the hash table for this device.  If known, add a
    228  1.112        ad 	 * reference to the device structure.  If not known, create
    229  1.112        ad 	 * a new entry to represent the device.  In all cases add
    230  1.112        ad 	 * the vnode to the hash table.
    231  1.112        ad 	 */
    232  1.112        ad 	sn = kmem_alloc(sizeof(*sn), KM_SLEEP);
    233  1.112        ad 	if (sn == NULL) {
    234  1.112        ad 		/* XXX */
    235  1.112        ad 		panic("spec_node_init: unable to allocate memory");
    236  1.112        ad 	}
    237  1.112        ad 	sd = kmem_alloc(sizeof(*sd), KM_SLEEP);
    238  1.112        ad 	if (sd == NULL) {
    239  1.112        ad 		/* XXX */
    240  1.112        ad 		panic("spec_node_init: unable to allocate memory");
    241  1.112        ad 	}
    242  1.120     pooka 	mutex_enter(&device_lock);
    243  1.112        ad 	vpp = &specfs_hash[SPECHASH(rdev)];
    244  1.112        ad 	for (vp2 = *vpp; vp2 != NULL; vp2 = vp2->v_specnext) {
    245  1.112        ad 		KASSERT(vp2->v_specnode != NULL);
    246  1.112        ad 		if (rdev == vp2->v_rdev && vp->v_type == vp2->v_type) {
    247  1.112        ad 			break;
    248  1.112        ad 		}
    249  1.112        ad 	}
    250  1.112        ad 	if (vp2 == NULL) {
    251  1.112        ad 		/* No existing record, create a new one. */
    252  1.112        ad 		sd->sd_rdev = rdev;
    253  1.112        ad 		sd->sd_mountpoint = NULL;
    254  1.112        ad 		sd->sd_lockf = NULL;
    255  1.112        ad 		sd->sd_refcnt = 1;
    256  1.112        ad 		sd->sd_opencnt = 0;
    257  1.112        ad 		sd->sd_bdevvp = NULL;
    258  1.112        ad 		sn->sn_dev = sd;
    259  1.112        ad 		sd = NULL;
    260  1.112        ad 	} else {
    261  1.112        ad 		/* Use the existing record. */
    262  1.112        ad 		sn->sn_dev = vp2->v_specnode->sn_dev;
    263  1.112        ad 		sn->sn_dev->sd_refcnt++;
    264  1.112        ad 	}
    265  1.112        ad 	/* Insert vnode into the hash chain. */
    266  1.112        ad 	sn->sn_opencnt = 0;
    267  1.112        ad 	sn->sn_rdev = rdev;
    268  1.112        ad 	sn->sn_gone = false;
    269  1.112        ad 	vp->v_specnode = sn;
    270  1.112        ad 	vp->v_specnext = *vpp;
    271  1.112        ad 	*vpp = vp;
    272  1.120     pooka 	mutex_exit(&device_lock);
    273  1.112        ad 
    274  1.112        ad 	/* Free the record we allocated if unused. */
    275  1.112        ad 	if (sd != NULL) {
    276  1.112        ad 		kmem_free(sd, sizeof(*sd));
    277  1.112        ad 	}
    278  1.112        ad }
    279  1.112        ad 
    280  1.112        ad /*
    281  1.137   hannken  * Lookup a vnode by device number and return it referenced.
    282  1.137   hannken  */
    283  1.137   hannken int
    284  1.137   hannken spec_node_lookup_by_dev(enum vtype type, dev_t dev, vnode_t **vpp)
    285  1.137   hannken {
    286  1.137   hannken 	int error;
    287  1.137   hannken 	vnode_t *vp;
    288  1.137   hannken 
    289  1.137   hannken 	mutex_enter(&device_lock);
    290  1.137   hannken 	for (vp = specfs_hash[SPECHASH(dev)]; vp; vp = vp->v_specnext) {
    291  1.137   hannken 		if (type == vp->v_type && dev == vp->v_rdev) {
    292  1.137   hannken 			mutex_enter(vp->v_interlock);
    293  1.137   hannken 			/* If clean or being cleaned, then ignore it. */
    294  1.143   hannken 			if (vdead_check(vp, VDEAD_NOWAIT) == 0)
    295  1.137   hannken 				break;
    296  1.137   hannken 			mutex_exit(vp->v_interlock);
    297  1.137   hannken 		}
    298  1.137   hannken 	}
    299  1.137   hannken 	KASSERT(vp == NULL || mutex_owned(vp->v_interlock));
    300  1.137   hannken 	if (vp == NULL) {
    301  1.137   hannken 		mutex_exit(&device_lock);
    302  1.137   hannken 		return ENOENT;
    303  1.137   hannken 	}
    304  1.137   hannken 	/*
    305  1.137   hannken 	 * If it is an opened block device return the opened vnode.
    306  1.137   hannken 	 */
    307  1.137   hannken 	if (type == VBLK && vp->v_specnode->sn_dev->sd_bdevvp != NULL) {
    308  1.137   hannken 		mutex_exit(vp->v_interlock);
    309  1.137   hannken 		vp = vp->v_specnode->sn_dev->sd_bdevvp;
    310  1.137   hannken 		mutex_enter(vp->v_interlock);
    311  1.137   hannken 	}
    312  1.137   hannken 	mutex_exit(&device_lock);
    313  1.147  riastrad 	error = vget(vp, 0, true /* wait */);
    314  1.137   hannken 	if (error != 0)
    315  1.137   hannken 		return error;
    316  1.137   hannken 	*vpp = vp;
    317  1.137   hannken 
    318  1.137   hannken 	return 0;
    319  1.137   hannken }
    320  1.137   hannken 
    321  1.137   hannken /*
    322  1.137   hannken  * Lookup a vnode by file system mounted on and return it referenced.
    323  1.137   hannken  */
    324  1.137   hannken int
    325  1.137   hannken spec_node_lookup_by_mount(struct mount *mp, vnode_t **vpp)
    326  1.137   hannken {
    327  1.137   hannken 	int i, error;
    328  1.137   hannken 	vnode_t *vp, *vq;
    329  1.137   hannken 
    330  1.137   hannken 	mutex_enter(&device_lock);
    331  1.137   hannken 	for (i = 0, vq = NULL; i < SPECHSZ && vq == NULL; i++) {
    332  1.137   hannken 		for (vp = specfs_hash[i]; vp; vp = vp->v_specnext) {
    333  1.137   hannken 			if (vp->v_type != VBLK)
    334  1.137   hannken 				continue;
    335  1.137   hannken 			vq = vp->v_specnode->sn_dev->sd_bdevvp;
    336  1.141   hannken 			if (vq != NULL &&
    337  1.141   hannken 			    vq->v_specnode->sn_dev->sd_mountpoint == mp)
    338  1.137   hannken 				break;
    339  1.137   hannken 			vq = NULL;
    340  1.137   hannken 		}
    341  1.137   hannken 	}
    342  1.137   hannken 	if (vq == NULL) {
    343  1.137   hannken 		mutex_exit(&device_lock);
    344  1.137   hannken 		return ENOENT;
    345  1.137   hannken 	}
    346  1.137   hannken 	mutex_enter(vq->v_interlock);
    347  1.137   hannken 	mutex_exit(&device_lock);
    348  1.147  riastrad 	error = vget(vq, 0, true /* wait */);
    349  1.137   hannken 	if (error != 0)
    350  1.137   hannken 		return error;
    351  1.137   hannken 	*vpp = vq;
    352  1.137   hannken 
    353  1.137   hannken 	return 0;
    354  1.137   hannken 
    355  1.137   hannken }
    356  1.137   hannken 
    357  1.137   hannken /*
    358  1.141   hannken  * Get the file system mounted on this block device.
    359  1.141   hannken  */
    360  1.141   hannken struct mount *
    361  1.141   hannken spec_node_getmountedfs(vnode_t *devvp)
    362  1.141   hannken {
    363  1.141   hannken 	struct mount *mp;
    364  1.141   hannken 
    365  1.141   hannken 	KASSERT(devvp->v_type == VBLK);
    366  1.141   hannken 	mp = devvp->v_specnode->sn_dev->sd_mountpoint;
    367  1.141   hannken 
    368  1.141   hannken 	return mp;
    369  1.141   hannken }
    370  1.141   hannken 
    371  1.141   hannken /*
    372  1.141   hannken  * Set the file system mounted on this block device.
    373  1.141   hannken  */
    374  1.141   hannken void
    375  1.141   hannken spec_node_setmountedfs(vnode_t *devvp, struct mount *mp)
    376  1.141   hannken {
    377  1.141   hannken 
    378  1.141   hannken 	KASSERT(devvp->v_type == VBLK);
    379  1.141   hannken 	KASSERT(devvp->v_specnode->sn_dev->sd_mountpoint == NULL || mp == NULL);
    380  1.141   hannken 	devvp->v_specnode->sn_dev->sd_mountpoint = mp;
    381  1.141   hannken }
    382  1.141   hannken 
    383  1.141   hannken /*
    384  1.112        ad  * A vnode representing a special device is going away.  Close
    385  1.112        ad  * the device if the vnode holds it open.
    386  1.112        ad  */
    387  1.112        ad void
    388  1.112        ad spec_node_revoke(vnode_t *vp)
    389  1.112        ad {
    390  1.112        ad 	specnode_t *sn;
    391  1.112        ad 	specdev_t *sd;
    392  1.112        ad 
    393  1.112        ad 	sn = vp->v_specnode;
    394  1.112        ad 	sd = sn->sn_dev;
    395  1.112        ad 
    396  1.112        ad 	KASSERT(vp->v_type == VBLK || vp->v_type == VCHR);
    397  1.112        ad 	KASSERT(vp->v_specnode != NULL);
    398  1.112        ad 	KASSERT(sn->sn_gone == false);
    399  1.112        ad 
    400  1.120     pooka 	mutex_enter(&device_lock);
    401  1.112        ad 	KASSERT(sn->sn_opencnt <= sd->sd_opencnt);
    402  1.112        ad 	if (sn->sn_opencnt != 0) {
    403  1.112        ad 		sd->sd_opencnt -= (sn->sn_opencnt - 1);
    404  1.112        ad 		sn->sn_opencnt = 1;
    405  1.112        ad 		sn->sn_gone = true;
    406  1.120     pooka 		mutex_exit(&device_lock);
    407  1.112        ad 
    408  1.112        ad 		VOP_CLOSE(vp, FNONBLOCK, NOCRED);
    409  1.112        ad 
    410  1.120     pooka 		mutex_enter(&device_lock);
    411  1.112        ad 		KASSERT(sn->sn_opencnt == 0);
    412  1.112        ad 	}
    413  1.120     pooka 	mutex_exit(&device_lock);
    414  1.112        ad }
    415  1.112        ad 
    416  1.112        ad /*
    417  1.112        ad  * A vnode representing a special device is being recycled.
    418  1.112        ad  * Destroy the specfs component.
    419  1.112        ad  */
    420  1.112        ad void
    421  1.112        ad spec_node_destroy(vnode_t *vp)
    422  1.112        ad {
    423  1.112        ad 	specnode_t *sn;
    424  1.112        ad 	specdev_t *sd;
    425  1.112        ad 	vnode_t **vpp, *vp2;
    426  1.112        ad 	int refcnt;
    427  1.112        ad 
    428  1.112        ad 	sn = vp->v_specnode;
    429  1.112        ad 	sd = sn->sn_dev;
    430  1.112        ad 
    431  1.112        ad 	KASSERT(vp->v_type == VBLK || vp->v_type == VCHR);
    432  1.112        ad 	KASSERT(vp->v_specnode != NULL);
    433  1.112        ad 	KASSERT(sn->sn_opencnt == 0);
    434  1.112        ad 
    435  1.120     pooka 	mutex_enter(&device_lock);
    436  1.112        ad 	/* Remove from the hash and destroy the node. */
    437  1.112        ad 	vpp = &specfs_hash[SPECHASH(vp->v_rdev)];
    438  1.112        ad 	for (vp2 = *vpp;; vp2 = vp2->v_specnext) {
    439  1.112        ad 		if (vp2 == NULL) {
    440  1.112        ad 			panic("spec_node_destroy: corrupt hash");
    441  1.112        ad 		}
    442  1.112        ad 		if (vp2 == vp) {
    443  1.112        ad 			KASSERT(vp == *vpp);
    444  1.112        ad 			*vpp = vp->v_specnext;
    445  1.112        ad 			break;
    446  1.112        ad 		}
    447  1.112        ad 		if (vp2->v_specnext == vp) {
    448  1.112        ad 			vp2->v_specnext = vp->v_specnext;
    449  1.112        ad 			break;
    450  1.112        ad 		}
    451  1.112        ad 	}
    452  1.112        ad 	sn = vp->v_specnode;
    453  1.112        ad 	vp->v_specnode = NULL;
    454  1.112        ad 	refcnt = sd->sd_refcnt--;
    455  1.112        ad 	KASSERT(refcnt > 0);
    456  1.120     pooka 	mutex_exit(&device_lock);
    457  1.112        ad 
    458  1.112        ad 	/* If the device is no longer in use, destroy our record. */
    459  1.112        ad 	if (refcnt == 1) {
    460  1.112        ad 		KASSERT(sd->sd_opencnt == 0);
    461  1.112        ad 		KASSERT(sd->sd_bdevvp == NULL);
    462  1.112        ad 		kmem_free(sd, sizeof(*sd));
    463  1.112        ad 	}
    464  1.112        ad 	kmem_free(sn, sizeof(*sn));
    465  1.112        ad }
    466  1.112        ad 
    467  1.112        ad /*
    468    1.1       cgd  * Trivial lookup routine that always fails.
    469    1.1       cgd  */
    470    1.4    andrew int
    471  1.104     pooka spec_lookup(void *v)
    472   1.28  christos {
    473  1.142   hannken 	struct vop_lookup_v2_args /* {
    474   1.15   mycroft 		struct vnode *a_dvp;
    475   1.15   mycroft 		struct vnode **a_vpp;
    476   1.15   mycroft 		struct componentname *a_cnp;
    477   1.28  christos 	} */ *ap = v;
    478    1.1       cgd 
    479   1.15   mycroft 	*ap->a_vpp = NULL;
    480    1.1       cgd 	return (ENOTDIR);
    481   1.66  jdolecek }
    482   1.66  jdolecek 
    483  1.154  christos typedef int (*spec_ioctl_t)(dev_t, u_long, void *, int, struct lwp *);
    484  1.154  christos 
    485   1.66  jdolecek /*
    486   1.15   mycroft  * Open a special file.
    487    1.1       cgd  */
    488    1.1       cgd /* ARGSUSED */
    489   1.28  christos int
    490  1.104     pooka spec_open(void *v)
    491   1.28  christos {
    492   1.15   mycroft 	struct vop_open_args /* {
    493   1.15   mycroft 		struct vnode *a_vp;
    494   1.15   mycroft 		int  a_mode;
    495   1.87      elad 		kauth_cred_t a_cred;
    496   1.28  christos 	} */ *ap = v;
    497  1.112        ad 	struct lwp *l;
    498  1.112        ad 	struct vnode *vp;
    499  1.112        ad 	dev_t dev;
    500    1.1       cgd 	int error;
    501   1.96      elad 	enum kauth_device_req req;
    502  1.112        ad 	specnode_t *sn;
    503  1.112        ad 	specdev_t *sd;
    504  1.154  christos 	spec_ioctl_t ioctl;
    505  1.154  christos 	off_t off;
    506  1.122      haad 	u_int gen;
    507  1.122      haad 	const char *name;
    508  1.122      haad 
    509  1.112        ad 	l = curlwp;
    510  1.112        ad 	vp = ap->a_vp;
    511  1.112        ad 	dev = vp->v_rdev;
    512  1.112        ad 	sn = vp->v_specnode;
    513  1.112        ad 	sd = sn->sn_dev;
    514  1.122      haad 	name = NULL;
    515  1.122      haad 	gen = 0;
    516  1.122      haad 
    517   1.15   mycroft 	/*
    518   1.15   mycroft 	 * Don't allow open if fs is mounted -nodev.
    519   1.15   mycroft 	 */
    520    1.1       cgd 	if (vp->v_mount && (vp->v_mount->mnt_flag & MNT_NODEV))
    521    1.1       cgd 		return (ENXIO);
    522    1.1       cgd 
    523  1.112        ad 	switch (ap->a_mode & (FREAD | FWRITE)) {
    524  1.112        ad 	case FREAD | FWRITE:
    525  1.112        ad 		req = KAUTH_REQ_DEVICE_RAWIO_SPEC_RW;
    526  1.112        ad 		break;
    527  1.112        ad 	case FWRITE:
    528  1.112        ad 		req = KAUTH_REQ_DEVICE_RAWIO_SPEC_WRITE;
    529  1.112        ad 		break;
    530  1.112        ad 	default:
    531  1.112        ad 		req = KAUTH_REQ_DEVICE_RAWIO_SPEC_READ;
    532  1.112        ad 		break;
    533  1.112        ad 	}
    534   1.89      elad 
    535    1.1       cgd 	switch (vp->v_type) {
    536    1.1       cgd 	case VCHR:
    537   1.96      elad 		error = kauth_authorize_device_spec(ap->a_cred, req, vp);
    538  1.112        ad 		if (error != 0)
    539   1.96      elad 			return (error);
    540   1.89      elad 
    541  1.112        ad 		/*
    542  1.112        ad 		 * Character devices can accept opens from multiple
    543  1.112        ad 		 * vnodes.
    544  1.112        ad 		 */
    545  1.120     pooka 		mutex_enter(&device_lock);
    546  1.112        ad 		if (sn->sn_gone) {
    547  1.120     pooka 			mutex_exit(&device_lock);
    548  1.112        ad 			return (EBADF);
    549  1.112        ad 		}
    550  1.112        ad 		sd->sd_opencnt++;
    551  1.112        ad 		sn->sn_opencnt++;
    552  1.120     pooka 		mutex_exit(&device_lock);
    553  1.100        ad 		if (cdev_type(dev) == D_TTY)
    554  1.108        ad 			vp->v_vflag |= VV_ISTTY;
    555  1.130   hannken 		VOP_UNLOCK(vp);
    556  1.122      haad 		do {
    557  1.125   tsutsui 			const struct cdevsw *cdev;
    558  1.125   tsutsui 
    559  1.122      haad 			gen = module_gen;
    560  1.122      haad 			error = cdev_open(dev, ap->a_mode, S_IFCHR, l);
    561  1.122      haad 			if (error != ENXIO)
    562  1.122      haad 				break;
    563  1.122      haad 
    564  1.125   tsutsui 			/* Check if we already have a valid driver */
    565  1.125   tsutsui 			mutex_enter(&device_lock);
    566  1.125   tsutsui 			cdev = cdevsw_lookup(dev);
    567  1.125   tsutsui 			mutex_exit(&device_lock);
    568  1.125   tsutsui 			if (cdev != NULL)
    569  1.125   tsutsui 				break;
    570  1.125   tsutsui 
    571  1.122      haad 			/* Get device name from devsw_conv array */
    572  1.122      haad 			if ((name = cdevsw_getname(major(dev))) == NULL)
    573  1.122      haad 				break;
    574  1.122      haad 
    575  1.122      haad 			/* Try to autoload device module */
    576  1.129     ahoka 			(void) module_autoload(name, MODULE_CLASS_DRIVER);
    577  1.122      haad 		} while (gen != module_gen);
    578  1.122      haad 
    579   1.39      fvdl 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    580   1.70       dsl 		break;
    581    1.1       cgd 
    582    1.1       cgd 	case VBLK:
    583   1.96      elad 		error = kauth_authorize_device_spec(ap->a_cred, req, vp);
    584  1.112        ad 		if (error != 0)
    585   1.96      elad 			return (error);
    586  1.112        ad 
    587  1.112        ad 		/*
    588  1.112        ad 		 * For block devices, permit only one open.  The buffer
    589  1.112        ad 		 * cache cannot remain self-consistent with multiple
    590  1.112        ad 		 * vnodes holding a block device open.
    591  1.112        ad 		 */
    592  1.120     pooka 		mutex_enter(&device_lock);
    593  1.112        ad 		if (sn->sn_gone) {
    594  1.120     pooka 			mutex_exit(&device_lock);
    595  1.112        ad 			return (EBADF);
    596  1.112        ad 		}
    597  1.112        ad 		if (sd->sd_opencnt != 0) {
    598  1.120     pooka 			mutex_exit(&device_lock);
    599  1.112        ad 			return EBUSY;
    600  1.112        ad 		}
    601  1.112        ad 		sn->sn_opencnt = 1;
    602  1.112        ad 		sd->sd_opencnt = 1;
    603  1.112        ad 		sd->sd_bdevvp = vp;
    604  1.120     pooka 		mutex_exit(&device_lock);
    605  1.122      haad 		do {
    606  1.125   tsutsui 			const struct bdevsw *bdev;
    607  1.125   tsutsui 
    608  1.122      haad 			gen = module_gen;
    609  1.122      haad 			error = bdev_open(dev, ap->a_mode, S_IFBLK, l);
    610  1.122      haad 			if (error != ENXIO)
    611  1.122      haad 				break;
    612  1.122      haad 
    613  1.125   tsutsui 			/* Check if we already have a valid driver */
    614  1.125   tsutsui 			mutex_enter(&device_lock);
    615  1.125   tsutsui 			bdev = bdevsw_lookup(dev);
    616  1.125   tsutsui 			mutex_exit(&device_lock);
    617  1.125   tsutsui 			if (bdev != NULL)
    618  1.125   tsutsui 				break;
    619  1.125   tsutsui 
    620  1.122      haad 			/* Get device name from devsw_conv array */
    621  1.122      haad 			if ((name = bdevsw_getname(major(dev))) == NULL)
    622  1.122      haad 				break;
    623  1.122      haad 
    624  1.130   hannken 			VOP_UNLOCK(vp);
    625  1.122      haad 
    626  1.122      haad                         /* Try to autoload device module */
    627  1.122      haad 			(void) module_autoload(name, MODULE_CLASS_DRIVER);
    628  1.122      haad 
    629  1.122      haad 			vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    630  1.122      haad 		} while (gen != module_gen);
    631  1.112        ad 
    632   1.70       dsl 		break;
    633   1.55       chs 
    634   1.28  christos 	case VNON:
    635   1.28  christos 	case VLNK:
    636   1.28  christos 	case VDIR:
    637   1.28  christos 	case VREG:
    638   1.28  christos 	case VBAD:
    639   1.28  christos 	case VFIFO:
    640   1.28  christos 	case VSOCK:
    641   1.70       dsl 	default:
    642   1.70       dsl 		return 0;
    643    1.1       cgd 	}
    644   1.70       dsl 
    645  1.120     pooka 	mutex_enter(&device_lock);
    646  1.112        ad 	if (sn->sn_gone) {
    647  1.112        ad 		if (error == 0)
    648  1.112        ad 			error = EBADF;
    649  1.112        ad 	} else if (error != 0) {
    650  1.112        ad 		sd->sd_opencnt--;
    651  1.112        ad 		sn->sn_opencnt--;
    652  1.115   hannken 		if (vp->v_type == VBLK)
    653  1.115   hannken 			sd->sd_bdevvp = NULL;
    654  1.115   hannken 
    655  1.112        ad 	}
    656  1.120     pooka 	mutex_exit(&device_lock);
    657   1.89      elad 
    658  1.112        ad 	if (cdev_type(dev) != D_DISK || error != 0)
    659   1.70       dsl 		return error;
    660  1.112        ad 
    661  1.154  christos 
    662  1.154  christos 	ioctl = vp->v_type == VCHR ? cdev_ioctl : bdev_ioctl;
    663  1.154  christos 
    664  1.154  christos 	error = (*ioctl)(vp->v_rdev, DIOCGMEDIASIZE, &off, FREAD, curlwp);
    665  1.154  christos 	if (error) {
    666  1.154  christos 		struct partinfo pi;
    667  1.154  christos #ifdef DIAGNOSTIC
    668  1.154  christos 		printf("ioctl DIOCGMEDIASIZE failed %d\n", error);
    669  1.154  christos #endif
    670  1.154  christos 		error = (*ioctl)(vp->v_rdev, DIOCGPART, &pi, FREAD, curlwp);
    671  1.154  christos 		off = (off_t)pi.disklab->d_secsize * pi.part->p_size;
    672  1.154  christos 	}
    673  1.154  christos 
    674  1.100        ad 	if (error == 0)
    675  1.154  christos 		uvm_vnp_setsize(vp, (voff_t)off);
    676  1.154  christos 
    677   1.70       dsl 	return 0;
    678    1.1       cgd }
    679    1.1       cgd 
    680    1.1       cgd /*
    681    1.1       cgd  * Vnode op for read
    682    1.1       cgd  */
    683    1.1       cgd /* ARGSUSED */
    684   1.28  christos int
    685  1.104     pooka spec_read(void *v)
    686   1.28  christos {
    687   1.15   mycroft 	struct vop_read_args /* {
    688   1.15   mycroft 		struct vnode *a_vp;
    689   1.15   mycroft 		struct uio *a_uio;
    690   1.15   mycroft 		int  a_ioflag;
    691   1.87      elad 		kauth_cred_t a_cred;
    692   1.28  christos 	} */ *ap = v;
    693   1.48  augustss 	struct vnode *vp = ap->a_vp;
    694   1.48  augustss 	struct uio *uio = ap->a_uio;
    695   1.86      yamt  	struct lwp *l = curlwp;
    696   1.56       chs 	struct buf *bp;
    697   1.57       chs 	daddr_t bn;
    698   1.59       chs 	int bsize, bscale;
    699   1.56       chs 	struct partinfo dpart;
    700   1.64   gehenna 	int n, on;
    701    1.1       cgd 	int error = 0;
    702    1.1       cgd 
    703    1.1       cgd #ifdef DIAGNOSTIC
    704    1.1       cgd 	if (uio->uio_rw != UIO_READ)
    705    1.1       cgd 		panic("spec_read mode");
    706   1.86      yamt 	if (&uio->uio_vmspace->vm_map != kernel_map &&
    707   1.86      yamt 	    uio->uio_vmspace != curproc->p_vmspace)
    708    1.1       cgd 		panic("spec_read proc");
    709    1.1       cgd #endif
    710    1.1       cgd 	if (uio->uio_resid == 0)
    711    1.1       cgd 		return (0);
    712    1.1       cgd 
    713   1.56       chs 	switch (vp->v_type) {
    714   1.56       chs 
    715   1.56       chs 	case VCHR:
    716  1.130   hannken 		VOP_UNLOCK(vp);
    717  1.100        ad 		error = cdev_read(vp->v_rdev, uio, ap->a_ioflag);
    718   1.58       chs 		vn_lock(vp, LK_SHARED | LK_RETRY);
    719    1.1       cgd 		return (error);
    720    1.1       cgd 
    721   1.56       chs 	case VBLK:
    722  1.112        ad 		KASSERT(vp == vp->v_specnode->sn_dev->sd_bdevvp);
    723   1.56       chs 		if (uio->uio_offset < 0)
    724   1.56       chs 			return (EINVAL);
    725   1.56       chs 		bsize = BLKDEV_IOSIZE;
    726  1.138  dholland 
    727  1.138  dholland 		/*
    728  1.138  dholland 		 * dholland 20130616: XXX this logic should not be
    729  1.138  dholland 		 * here. It is here because the old buffer cache
    730  1.138  dholland 		 * demands that all accesses to the same blocks need
    731  1.138  dholland 		 * to be the same size; but it only works for FFS and
    732  1.138  dholland 		 * nowadays I think it'll fail silently if the size
    733  1.138  dholland 		 * info in the disklabel is wrong. (Or missing.) The
    734  1.138  dholland 		 * buffer cache needs to be smarter; or failing that
    735  1.138  dholland 		 * we need a reliable way here to get the right block
    736  1.138  dholland 		 * size; or a reliable way to guarantee that (a) the
    737  1.138  dholland 		 * fs is not mounted when we get here and (b) any
    738  1.138  dholland 		 * buffers generated here will get purged when the fs
    739  1.138  dholland 		 * does get mounted.
    740  1.138  dholland 		 */
    741  1.100        ad 		if (bdev_ioctl(vp->v_rdev, DIOCGPART, &dpart, FREAD, l) == 0) {
    742   1.56       chs 			if (dpart.part->p_fstype == FS_BSDFFS &&
    743   1.56       chs 			    dpart.part->p_frag != 0 && dpart.part->p_fsize != 0)
    744   1.56       chs 				bsize = dpart.part->p_frag *
    745   1.56       chs 				    dpart.part->p_fsize;
    746   1.56       chs 		}
    747  1.138  dholland 
    748   1.59       chs 		bscale = bsize >> DEV_BSHIFT;
    749   1.56       chs 		do {
    750   1.59       chs 			bn = (uio->uio_offset >> DEV_BSHIFT) &~ (bscale - 1);
    751   1.56       chs 			on = uio->uio_offset % bsize;
    752   1.56       chs 			n = min((unsigned)(bsize - on), uio->uio_resid);
    753  1.146      maxv 			error = bread(vp, bn, bsize, 0, &bp);
    754   1.56       chs 			if (error) {
    755   1.56       chs 				return (error);
    756   1.56       chs 			}
    757  1.136   hannken 			n = min(n, bsize - bp->b_resid);
    758   1.56       chs 			error = uiomove((char *)bp->b_data + on, n, uio);
    759  1.107        ad 			brelse(bp, 0);
    760   1.56       chs 		} while (error == 0 && uio->uio_resid > 0 && n != 0);
    761   1.56       chs 		return (error);
    762   1.56       chs 
    763   1.56       chs 	default:
    764   1.56       chs 		panic("spec_read type");
    765    1.1       cgd 	}
    766   1.56       chs 	/* NOTREACHED */
    767    1.1       cgd }
    768    1.1       cgd 
    769    1.1       cgd /*
    770    1.1       cgd  * Vnode op for write
    771    1.1       cgd  */
    772    1.1       cgd /* ARGSUSED */
    773   1.28  christos int
    774  1.104     pooka spec_write(void *v)
    775   1.28  christos {
    776   1.15   mycroft 	struct vop_write_args /* {
    777   1.15   mycroft 		struct vnode *a_vp;
    778   1.15   mycroft 		struct uio *a_uio;
    779   1.15   mycroft 		int  a_ioflag;
    780   1.87      elad 		kauth_cred_t a_cred;
    781   1.28  christos 	} */ *ap = v;
    782   1.48  augustss 	struct vnode *vp = ap->a_vp;
    783   1.48  augustss 	struct uio *uio = ap->a_uio;
    784   1.86      yamt 	struct lwp *l = curlwp;
    785   1.56       chs 	struct buf *bp;
    786   1.56       chs 	daddr_t bn;
    787   1.59       chs 	int bsize, bscale;
    788   1.56       chs 	struct partinfo dpart;
    789   1.64   gehenna 	int n, on;
    790    1.1       cgd 	int error = 0;
    791    1.1       cgd 
    792    1.1       cgd #ifdef DIAGNOSTIC
    793    1.1       cgd 	if (uio->uio_rw != UIO_WRITE)
    794    1.1       cgd 		panic("spec_write mode");
    795   1.86      yamt 	if (&uio->uio_vmspace->vm_map != kernel_map &&
    796   1.86      yamt 	    uio->uio_vmspace != curproc->p_vmspace)
    797    1.1       cgd 		panic("spec_write proc");
    798    1.1       cgd #endif
    799    1.1       cgd 
    800   1.56       chs 	switch (vp->v_type) {
    801   1.56       chs 
    802   1.56       chs 	case VCHR:
    803  1.130   hannken 		VOP_UNLOCK(vp);
    804  1.100        ad 		error = cdev_write(vp->v_rdev, uio, ap->a_ioflag);
    805   1.39      fvdl 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    806    1.1       cgd 		return (error);
    807   1.56       chs 
    808   1.56       chs 	case VBLK:
    809  1.112        ad 		KASSERT(vp == vp->v_specnode->sn_dev->sd_bdevvp);
    810   1.56       chs 		if (uio->uio_resid == 0)
    811   1.56       chs 			return (0);
    812   1.56       chs 		if (uio->uio_offset < 0)
    813   1.56       chs 			return (EINVAL);
    814   1.56       chs 		bsize = BLKDEV_IOSIZE;
    815  1.100        ad 		if (bdev_ioctl(vp->v_rdev, DIOCGPART, &dpart, FREAD, l) == 0) {
    816   1.56       chs 			if (dpart.part->p_fstype == FS_BSDFFS &&
    817   1.56       chs 			    dpart.part->p_frag != 0 && dpart.part->p_fsize != 0)
    818   1.56       chs 				bsize = dpart.part->p_frag *
    819   1.56       chs 				    dpart.part->p_fsize;
    820   1.56       chs 		}
    821   1.59       chs 		bscale = bsize >> DEV_BSHIFT;
    822   1.56       chs 		do {
    823   1.59       chs 			bn = (uio->uio_offset >> DEV_BSHIFT) &~ (bscale - 1);
    824   1.56       chs 			on = uio->uio_offset % bsize;
    825   1.56       chs 			n = min((unsigned)(bsize - on), uio->uio_resid);
    826   1.56       chs 			if (n == bsize)
    827   1.56       chs 				bp = getblk(vp, bn, bsize, 0, 0);
    828   1.56       chs 			else
    829  1.146      maxv 				error = bread(vp, bn, bsize, B_MODIFY, &bp);
    830   1.56       chs 			if (error) {
    831   1.56       chs 				return (error);
    832   1.56       chs 			}
    833   1.56       chs 			n = min(n, bsize - bp->b_resid);
    834   1.56       chs 			error = uiomove((char *)bp->b_data + on, n, uio);
    835   1.56       chs 			if (error)
    836  1.107        ad 				brelse(bp, 0);
    837   1.56       chs 			else {
    838   1.56       chs 				if (n + on == bsize)
    839   1.56       chs 					bawrite(bp);
    840   1.56       chs 				else
    841   1.56       chs 					bdwrite(bp);
    842  1.107        ad 				error = bp->b_error;
    843   1.56       chs 			}
    844   1.56       chs 		} while (error == 0 && uio->uio_resid > 0 && n != 0);
    845   1.56       chs 		return (error);
    846   1.56       chs 
    847   1.56       chs 	default:
    848   1.56       chs 		panic("spec_write type");
    849   1.55       chs 	}
    850   1.56       chs 	/* NOTREACHED */
    851    1.1       cgd }
    852    1.1       cgd 
    853    1.1       cgd /*
    854  1.144  dholland  * fdiscard, which on disk devices becomes TRIM.
    855  1.144  dholland  */
    856  1.144  dholland int
    857  1.144  dholland spec_fdiscard(void *v)
    858  1.144  dholland {
    859  1.144  dholland 	struct vop_fdiscard_args /* {
    860  1.144  dholland 		struct vnode *a_vp;
    861  1.144  dholland 		off_t a_pos;
    862  1.144  dholland 		off_t a_len;
    863  1.144  dholland 	} */ *ap = v;
    864  1.144  dholland 	struct vnode *vp;
    865  1.144  dholland 	dev_t dev;
    866  1.144  dholland 
    867  1.144  dholland 	vp = ap->a_vp;
    868  1.144  dholland 	dev = NODEV;
    869  1.144  dholland 
    870  1.144  dholland 	mutex_enter(vp->v_interlock);
    871  1.144  dholland 	if (vdead_check(vp, VDEAD_NOWAIT) == 0 && vp->v_specnode != NULL) {
    872  1.144  dholland 		dev = vp->v_rdev;
    873  1.144  dholland 	}
    874  1.144  dholland 	mutex_exit(vp->v_interlock);
    875  1.144  dholland 
    876  1.144  dholland 	if (dev == NODEV) {
    877  1.144  dholland 		return ENXIO;
    878  1.144  dholland 	}
    879  1.144  dholland 
    880  1.144  dholland 	switch (vp->v_type) {
    881  1.144  dholland 	    case VCHR:
    882  1.144  dholland 		// this is not stored for character devices
    883  1.144  dholland 		//KASSERT(vp == vp->v_specnode->sn_dev->sd_cdevvp);
    884  1.144  dholland 		return cdev_discard(dev, ap->a_pos, ap->a_len);
    885  1.144  dholland 	    case VBLK:
    886  1.144  dholland 		KASSERT(vp == vp->v_specnode->sn_dev->sd_bdevvp);
    887  1.144  dholland 		return bdev_discard(dev, ap->a_pos, ap->a_len);
    888  1.144  dholland 	    default:
    889  1.144  dholland 		panic("spec_fdiscard: not a device\n");
    890  1.144  dholland 	}
    891  1.144  dholland }
    892  1.144  dholland 
    893  1.144  dholland /*
    894    1.1       cgd  * Device ioctl operation.
    895    1.1       cgd  */
    896    1.1       cgd /* ARGSUSED */
    897   1.28  christos int
    898  1.104     pooka spec_ioctl(void *v)
    899   1.28  christos {
    900   1.15   mycroft 	struct vop_ioctl_args /* {
    901   1.15   mycroft 		struct vnode *a_vp;
    902   1.19       cgd 		u_long a_command;
    903   1.78       jrf 		void  *a_data;
    904   1.15   mycroft 		int  a_fflag;
    905   1.87      elad 		kauth_cred_t a_cred;
    906   1.28  christos 	} */ *ap = v;
    907   1.83       chs 	struct vnode *vp;
    908   1.83       chs 	dev_t dev;
    909    1.1       cgd 
    910   1.83       chs 	/*
    911   1.83       chs 	 * Extract all the info we need from the vnode, taking care to
    912   1.83       chs 	 * avoid a race with VOP_REVOKE().
    913   1.83       chs 	 */
    914   1.83       chs 
    915   1.83       chs 	vp = ap->a_vp;
    916   1.83       chs 	dev = NODEV;
    917  1.134     rmind 	mutex_enter(vp->v_interlock);
    918  1.143   hannken 	if (vdead_check(vp, VDEAD_NOWAIT) == 0 && vp->v_specnode) {
    919   1.83       chs 		dev = vp->v_rdev;
    920   1.83       chs 	}
    921  1.134     rmind 	mutex_exit(vp->v_interlock);
    922   1.83       chs 	if (dev == NODEV) {
    923   1.83       chs 		return ENXIO;
    924   1.83       chs 	}
    925   1.83       chs 
    926   1.83       chs 	switch (vp->v_type) {
    927    1.1       cgd 
    928    1.1       cgd 	case VCHR:
    929  1.100        ad 		return cdev_ioctl(dev, ap->a_command, ap->a_data,
    930  1.109     pooka 		    ap->a_fflag, curlwp);
    931    1.1       cgd 
    932    1.1       cgd 	case VBLK:
    933  1.112        ad 		KASSERT(vp == vp->v_specnode->sn_dev->sd_bdevvp);
    934  1.100        ad 		return bdev_ioctl(dev, ap->a_command, ap->a_data,
    935  1.109     pooka 		   ap->a_fflag, curlwp);
    936    1.1       cgd 
    937    1.1       cgd 	default:
    938    1.1       cgd 		panic("spec_ioctl");
    939    1.1       cgd 		/* NOTREACHED */
    940    1.1       cgd 	}
    941    1.1       cgd }
    942    1.1       cgd 
    943    1.1       cgd /* ARGSUSED */
    944   1.28  christos int
    945  1.104     pooka spec_poll(void *v)
    946   1.28  christos {
    947   1.32   mycroft 	struct vop_poll_args /* {
    948   1.15   mycroft 		struct vnode *a_vp;
    949   1.32   mycroft 		int a_events;
    950   1.28  christos 	} */ *ap = v;
    951   1.91       jld 	struct vnode *vp;
    952   1.48  augustss 	dev_t dev;
    953    1.1       cgd 
    954   1.91       jld 	/*
    955   1.91       jld 	 * Extract all the info we need from the vnode, taking care to
    956   1.91       jld 	 * avoid a race with VOP_REVOKE().
    957   1.91       jld 	 */
    958   1.91       jld 
    959   1.91       jld 	vp = ap->a_vp;
    960   1.91       jld 	dev = NODEV;
    961  1.134     rmind 	mutex_enter(vp->v_interlock);
    962  1.143   hannken 	if (vdead_check(vp, VDEAD_NOWAIT) == 0 && vp->v_specnode) {
    963   1.91       jld 		dev = vp->v_rdev;
    964   1.91       jld 	}
    965  1.134     rmind 	mutex_exit(vp->v_interlock);
    966   1.91       jld 	if (dev == NODEV) {
    967   1.92       jld 		return POLLERR;
    968   1.91       jld 	}
    969   1.91       jld 
    970   1.91       jld 	switch (vp->v_type) {
    971    1.1       cgd 
    972    1.1       cgd 	case VCHR:
    973  1.109     pooka 		return cdev_poll(dev, ap->a_events, curlwp);
    974   1.30   mycroft 
    975   1.30   mycroft 	default:
    976   1.32   mycroft 		return (genfs_poll(v));
    977   1.15   mycroft 	}
    978   1.15   mycroft }
    979   1.65  jdolecek 
    980   1.65  jdolecek /* ARGSUSED */
    981   1.65  jdolecek int
    982  1.104     pooka spec_kqfilter(void *v)
    983   1.65  jdolecek {
    984   1.65  jdolecek 	struct vop_kqfilter_args /* {
    985   1.65  jdolecek 		struct vnode	*a_vp;
    986   1.65  jdolecek 		struct proc	*a_kn;
    987   1.65  jdolecek 	} */ *ap = v;
    988   1.65  jdolecek 	dev_t dev;
    989   1.65  jdolecek 
    990   1.65  jdolecek 	switch (ap->a_vp->v_type) {
    991   1.65  jdolecek 
    992   1.65  jdolecek 	case VCHR:
    993   1.65  jdolecek 		dev = ap->a_vp->v_rdev;
    994  1.100        ad 		return cdev_kqfilter(dev, ap->a_kn);
    995   1.65  jdolecek 	default:
    996   1.65  jdolecek 		/*
    997   1.65  jdolecek 		 * Block devices don't support kqfilter, and refuse it
    998   1.65  jdolecek 		 * for any other files (like those vflush()ed) too.
    999   1.65  jdolecek 		 */
   1000   1.65  jdolecek 		return (EOPNOTSUPP);
   1001   1.65  jdolecek 	}
   1002   1.65  jdolecek }
   1003   1.65  jdolecek 
   1004   1.15   mycroft /*
   1005  1.101     pooka  * Allow mapping of only D_DISK.  This is called only for VBLK.
   1006  1.101     pooka  */
   1007  1.101     pooka int
   1008  1.104     pooka spec_mmap(void *v)
   1009  1.101     pooka {
   1010  1.101     pooka 	struct vop_mmap_args /* {
   1011  1.101     pooka 		struct vnode *a_vp;
   1012  1.102     pooka 		vm_prot_t a_prot;
   1013  1.101     pooka 		kauth_cred_t a_cred;
   1014  1.101     pooka 	} */ *ap = v;
   1015  1.101     pooka 	struct vnode *vp = ap->a_vp;
   1016  1.101     pooka 
   1017  1.101     pooka 	KASSERT(vp->v_type == VBLK);
   1018  1.101     pooka 	if (bdev_type(vp->v_rdev) != D_DISK)
   1019  1.101     pooka 		return EINVAL;
   1020  1.101     pooka 
   1021  1.101     pooka 	return 0;
   1022  1.101     pooka }
   1023  1.101     pooka 
   1024  1.101     pooka /*
   1025   1.15   mycroft  * Synch buffers associated with a block device
   1026   1.15   mycroft  */
   1027   1.15   mycroft /* ARGSUSED */
   1028   1.15   mycroft int
   1029  1.104     pooka spec_fsync(void *v)
   1030   1.28  christos {
   1031   1.15   mycroft 	struct vop_fsync_args /* {
   1032   1.15   mycroft 		struct vnode *a_vp;
   1033   1.87      elad 		kauth_cred_t a_cred;
   1034   1.40    kleink 		int  a_flags;
   1035   1.50      fvdl 		off_t offlo;
   1036   1.50      fvdl 		off_t offhi;
   1037   1.28  christos 	} */ *ap = v;
   1038   1.48  augustss 	struct vnode *vp = ap->a_vp;
   1039  1.118        ad 	struct mount *mp;
   1040  1.118        ad 	int error;
   1041   1.15   mycroft 
   1042  1.112        ad 	if (vp->v_type == VBLK) {
   1043  1.141   hannken 		if ((mp = spec_node_getmountedfs(vp)) != NULL) {
   1044  1.133   hannken 			error = VFS_FSYNC(mp, vp, ap->a_flags);
   1045  1.118        ad 			if (error != EOPNOTSUPP)
   1046  1.118        ad 				return error;
   1047  1.118        ad 		}
   1048  1.135       chs 		return vflushbuf(vp, ap->a_flags);
   1049  1.112        ad 	}
   1050   1.15   mycroft 	return (0);
   1051    1.1       cgd }
   1052    1.1       cgd 
   1053    1.1       cgd /*
   1054    1.1       cgd  * Just call the device strategy routine
   1055    1.1       cgd  */
   1056   1.28  christos int
   1057  1.104     pooka spec_strategy(void *v)
   1058   1.28  christos {
   1059   1.15   mycroft 	struct vop_strategy_args /* {
   1060   1.76   hannken 		struct vnode *a_vp;
   1061   1.15   mycroft 		struct buf *a_bp;
   1062   1.28  christos 	} */ *ap = v;
   1063   1.76   hannken 	struct vnode *vp = ap->a_vp;
   1064   1.76   hannken 	struct buf *bp = ap->a_bp;
   1065  1.106   hannken 	int error;
   1066    1.1       cgd 
   1067  1.112        ad 	KASSERT(vp == vp->v_specnode->sn_dev->sd_bdevvp);
   1068  1.112        ad 
   1069   1.79   hannken 	error = 0;
   1070   1.76   hannken 	bp->b_dev = vp->v_rdev;
   1071   1.77   hannken 
   1072  1.106   hannken 	if (!(bp->b_flags & B_READ))
   1073  1.110   hannken 		error = fscow_run(bp, false);
   1074   1.77   hannken 
   1075   1.79   hannken 	if (error) {
   1076   1.79   hannken 		bp->b_error = error;
   1077  1.140  dholland 		bp->b_resid = bp->b_bcount;
   1078   1.79   hannken 		biodone(bp);
   1079   1.79   hannken 		return (error);
   1080   1.79   hannken 	}
   1081   1.79   hannken 
   1082  1.100        ad 	bdev_strategy(bp);
   1083   1.76   hannken 
   1084    1.1       cgd 	return (0);
   1085    1.1       cgd }
   1086    1.1       cgd 
   1087   1.39      fvdl int
   1088  1.104     pooka spec_inactive(void *v)
   1089   1.39      fvdl {
   1090   1.39      fvdl 	struct vop_inactive_args /* {
   1091   1.39      fvdl 		struct vnode *a_vp;
   1092  1.148   hannken 		struct bool *a_recycle;
   1093   1.39      fvdl 	} */ *ap = v;
   1094  1.148   hannken 	struct vnode *vp = ap->a_vp;
   1095  1.148   hannken 
   1096  1.148   hannken 	KASSERT(vp->v_mount == dead_rootmount);
   1097  1.148   hannken 	*ap->a_recycle = true;
   1098  1.148   hannken 	VOP_UNLOCK(vp);
   1099  1.148   hannken 	return 0;
   1100  1.148   hannken }
   1101  1.148   hannken 
   1102  1.148   hannken int
   1103  1.148   hannken spec_reclaim(void *v)
   1104  1.148   hannken {
   1105  1.148   hannken 	struct vop_reclaim_args /* {
   1106  1.148   hannken 		struct vnode *a_vp;
   1107  1.148   hannken 	} */ *ap = v;
   1108  1.148   hannken 	struct vnode *vp = ap->a_vp;
   1109   1.39      fvdl 
   1110  1.148   hannken 	KASSERT(vp->v_mount == dead_rootmount);
   1111  1.153   hannken 	vcache_remove(vp->v_mount, &vp->v_interlock, sizeof(vp->v_interlock));
   1112  1.148   hannken 	return 0;
   1113   1.39      fvdl }
   1114   1.39      fvdl 
   1115    1.1       cgd /*
   1116    1.1       cgd  * This is a noop, simply returning what one has been given.
   1117    1.1       cgd  */
   1118   1.28  christos int
   1119  1.104     pooka spec_bmap(void *v)
   1120   1.28  christos {
   1121   1.15   mycroft 	struct vop_bmap_args /* {
   1122   1.15   mycroft 		struct vnode *a_vp;
   1123   1.15   mycroft 		daddr_t  a_bn;
   1124   1.15   mycroft 		struct vnode **a_vpp;
   1125   1.15   mycroft 		daddr_t *a_bnp;
   1126   1.39      fvdl 		int *a_runp;
   1127   1.28  christos 	} */ *ap = v;
   1128    1.1       cgd 
   1129   1.15   mycroft 	if (ap->a_vpp != NULL)
   1130   1.15   mycroft 		*ap->a_vpp = ap->a_vp;
   1131   1.15   mycroft 	if (ap->a_bnp != NULL)
   1132   1.15   mycroft 		*ap->a_bnp = ap->a_bn;
   1133   1.39      fvdl 	if (ap->a_runp != NULL)
   1134   1.55       chs 		*ap->a_runp = (MAXBSIZE >> DEV_BSHIFT) - 1;
   1135    1.1       cgd 	return (0);
   1136    1.1       cgd }
   1137    1.1       cgd 
   1138    1.1       cgd /*
   1139    1.1       cgd  * Device close routine
   1140    1.1       cgd  */
   1141    1.1       cgd /* ARGSUSED */
   1142   1.28  christos int
   1143  1.104     pooka spec_close(void *v)
   1144   1.28  christos {
   1145   1.15   mycroft 	struct vop_close_args /* {
   1146   1.15   mycroft 		struct vnode *a_vp;
   1147   1.15   mycroft 		int  a_fflag;
   1148   1.87      elad 		kauth_cred_t a_cred;
   1149   1.28  christos 	} */ *ap = v;
   1150   1.48  augustss 	struct vnode *vp = ap->a_vp;
   1151   1.71       dsl 	struct session *sess;
   1152    1.1       cgd 	dev_t dev = vp->v_rdev;
   1153  1.143   hannken 	int flags = ap->a_fflag;
   1154  1.143   hannken 	int mode, error, count;
   1155  1.112        ad 	specnode_t *sn;
   1156  1.112        ad 	specdev_t *sd;
   1157   1.44  wrstuden 
   1158  1.143   hannken 	mutex_enter(vp->v_interlock);
   1159  1.112        ad 	sn = vp->v_specnode;
   1160  1.112        ad 	sd = sn->sn_dev;
   1161  1.143   hannken 	/*
   1162  1.143   hannken 	 * If we're going away soon, make this non-blocking.
   1163  1.143   hannken 	 * Also ensures that we won't wedge in vn_lock below.
   1164  1.143   hannken 	 */
   1165  1.143   hannken 	if (vdead_check(vp, VDEAD_NOWAIT) != 0)
   1166  1.143   hannken 		flags |= FNONBLOCK;
   1167  1.143   hannken 	mutex_exit(vp->v_interlock);
   1168    1.1       cgd 
   1169    1.1       cgd 	switch (vp->v_type) {
   1170    1.1       cgd 
   1171    1.1       cgd 	case VCHR:
   1172   1.11       cgd 		/*
   1173   1.11       cgd 		 * Hack: a tty device that is a controlling terminal
   1174  1.112        ad 		 * has a reference from the session structure.  We
   1175  1.112        ad 		 * cannot easily tell that a character device is a
   1176  1.112        ad 		 * controlling terminal, unless it is the closing
   1177  1.112        ad 		 * process' controlling terminal.  In that case, if the
   1178  1.112        ad 		 * open count is 1 release the reference from the
   1179  1.112        ad 		 * session.  Also, remove the link from the tty back to
   1180  1.112        ad 		 * the session and pgrp.
   1181  1.112        ad 		 *
   1182  1.112        ad 		 * XXX V. fishy.
   1183   1.11       cgd 		 */
   1184  1.116        ad 		mutex_enter(proc_lock);
   1185  1.112        ad 		sess = curlwp->l_proc->p_session;
   1186  1.112        ad 		if (sn->sn_opencnt == 1 && vp == sess->s_ttyvp) {
   1187  1.112        ad 			mutex_spin_enter(&tty_lock);
   1188   1.71       dsl 			sess->s_ttyvp = NULL;
   1189   1.72        pk 			if (sess->s_ttyp->t_session != NULL) {
   1190   1.72        pk 				sess->s_ttyp->t_pgrp = NULL;
   1191   1.72        pk 				sess->s_ttyp->t_session = NULL;
   1192  1.112        ad 				mutex_spin_exit(&tty_lock);
   1193  1.124     rmind 				/* Releases proc_lock. */
   1194  1.124     rmind 				proc_sessrele(sess);
   1195  1.100        ad 			} else {
   1196  1.112        ad 				mutex_spin_exit(&tty_lock);
   1197  1.100        ad 				if (sess->s_ttyp->t_pgrp != NULL)
   1198  1.100        ad 					panic("spec_close: spurious pgrp ref");
   1199  1.116        ad 				mutex_exit(proc_lock);
   1200  1.100        ad 			}
   1201   1.11       cgd 			vrele(vp);
   1202  1.100        ad 		} else
   1203  1.116        ad 			mutex_exit(proc_lock);
   1204  1.100        ad 
   1205    1.1       cgd 		/*
   1206    1.1       cgd 		 * If the vnode is locked, then we are in the midst
   1207    1.1       cgd 		 * of forcably closing the device, otherwise we only
   1208    1.1       cgd 		 * close on last reference.
   1209    1.1       cgd 		 */
   1210    1.1       cgd 		mode = S_IFCHR;
   1211    1.1       cgd 		break;
   1212    1.1       cgd 
   1213    1.1       cgd 	case VBLK:
   1214  1.112        ad 		KASSERT(vp == vp->v_specnode->sn_dev->sd_bdevvp);
   1215    1.1       cgd 		/*
   1216    1.1       cgd 		 * On last close of a block device (that isn't mounted)
   1217    1.1       cgd 		 * we must invalidate any in core blocks, so that
   1218    1.1       cgd 		 * we can, for instance, change floppy disks.
   1219    1.1       cgd 		 */
   1220  1.109     pooka 		error = vinvalbuf(vp, V_SAVE, ap->a_cred, curlwp, 0, 0);
   1221   1.28  christos 		if (error)
   1222   1.15   mycroft 			return (error);
   1223    1.1       cgd 		/*
   1224    1.1       cgd 		 * We do not want to really close the device if it
   1225    1.1       cgd 		 * is still in use unless we are trying to close it
   1226    1.1       cgd 		 * forcibly. Since every use (buffer, vnode, swap, cmap)
   1227    1.1       cgd 		 * holds a reference to the vnode, and because we mark
   1228    1.1       cgd 		 * any other vnodes that alias this device, when the
   1229    1.1       cgd 		 * sum of the reference counts on all the aliased
   1230    1.1       cgd 		 * vnodes descends to one, we are on last close.
   1231    1.1       cgd 		 */
   1232    1.1       cgd 		mode = S_IFBLK;
   1233    1.1       cgd 		break;
   1234    1.5       cgd 
   1235    1.1       cgd 	default:
   1236    1.1       cgd 		panic("spec_close: not special");
   1237    1.1       cgd 	}
   1238    1.1       cgd 
   1239  1.120     pooka 	mutex_enter(&device_lock);
   1240  1.112        ad 	sn->sn_opencnt--;
   1241  1.112        ad 	count = --sd->sd_opencnt;
   1242  1.112        ad 	if (vp->v_type == VBLK)
   1243  1.112        ad 		sd->sd_bdevvp = NULL;
   1244  1.120     pooka 	mutex_exit(&device_lock);
   1245  1.112        ad 
   1246  1.112        ad 	if (count != 0)
   1247  1.112        ad 		return 0;
   1248  1.112        ad 
   1249   1.44  wrstuden 	/*
   1250   1.62       wiz 	 * If we're able to block, release the vnode lock & reacquire. We
   1251   1.72        pk 	 * might end up sleeping for someone else who wants our queues. They
   1252  1.143   hannken 	 * won't get them if we hold the vnode locked.
   1253   1.44  wrstuden 	 */
   1254  1.143   hannken 	if (!(flags & FNONBLOCK))
   1255  1.130   hannken 		VOP_UNLOCK(vp);
   1256   1.44  wrstuden 
   1257  1.100        ad 	if (vp->v_type == VBLK)
   1258  1.143   hannken 		error = bdev_close(dev, flags, mode, curlwp);
   1259   1.64   gehenna 	else
   1260  1.143   hannken 		error = cdev_close(dev, flags, mode, curlwp);
   1261   1.44  wrstuden 
   1262  1.143   hannken 	if (!(flags & FNONBLOCK))
   1263   1.44  wrstuden 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
   1264   1.44  wrstuden 
   1265   1.44  wrstuden 	return (error);
   1266    1.1       cgd }
   1267    1.1       cgd 
   1268    1.1       cgd /*
   1269    1.1       cgd  * Print out the contents of a special device vnode.
   1270    1.1       cgd  */
   1271   1.28  christos int
   1272  1.104     pooka spec_print(void *v)
   1273   1.28  christos {
   1274   1.15   mycroft 	struct vop_print_args /* {
   1275   1.15   mycroft 		struct vnode *a_vp;
   1276   1.28  christos 	} */ *ap = v;
   1277   1.15   mycroft 
   1278  1.121  christos 	printf("dev %llu, %llu\n", (unsigned long long)major(ap->a_vp->v_rdev),
   1279  1.121  christos 	    (unsigned long long)minor(ap->a_vp->v_rdev));
   1280   1.28  christos 	return 0;
   1281   1.15   mycroft }
   1282   1.15   mycroft 
   1283   1.15   mycroft /*
   1284   1.15   mycroft  * Return POSIX pathconf information applicable to special devices.
   1285   1.15   mycroft  */
   1286   1.28  christos int
   1287  1.104     pooka spec_pathconf(void *v)
   1288   1.28  christos {
   1289   1.15   mycroft 	struct vop_pathconf_args /* {
   1290   1.15   mycroft 		struct vnode *a_vp;
   1291   1.15   mycroft 		int a_name;
   1292   1.18       cgd 		register_t *a_retval;
   1293   1.28  christos 	} */ *ap = v;
   1294    1.1       cgd 
   1295   1.15   mycroft 	switch (ap->a_name) {
   1296   1.15   mycroft 	case _PC_LINK_MAX:
   1297   1.15   mycroft 		*ap->a_retval = LINK_MAX;
   1298   1.15   mycroft 		return (0);
   1299   1.15   mycroft 	case _PC_MAX_CANON:
   1300   1.15   mycroft 		*ap->a_retval = MAX_CANON;
   1301   1.15   mycroft 		return (0);
   1302   1.15   mycroft 	case _PC_MAX_INPUT:
   1303   1.15   mycroft 		*ap->a_retval = MAX_INPUT;
   1304   1.15   mycroft 		return (0);
   1305   1.15   mycroft 	case _PC_PIPE_BUF:
   1306   1.15   mycroft 		*ap->a_retval = PIPE_BUF;
   1307   1.15   mycroft 		return (0);
   1308   1.15   mycroft 	case _PC_CHOWN_RESTRICTED:
   1309   1.15   mycroft 		*ap->a_retval = 1;
   1310   1.15   mycroft 		return (0);
   1311   1.15   mycroft 	case _PC_VDISABLE:
   1312   1.15   mycroft 		*ap->a_retval = _POSIX_VDISABLE;
   1313   1.41    kleink 		return (0);
   1314   1.41    kleink 	case _PC_SYNC_IO:
   1315   1.41    kleink 		*ap->a_retval = 1;
   1316   1.15   mycroft 		return (0);
   1317   1.15   mycroft 	default:
   1318   1.15   mycroft 		return (EINVAL);
   1319   1.15   mycroft 	}
   1320    1.1       cgd 	/* NOTREACHED */
   1321   1.35    kleink }
   1322   1.35    kleink 
   1323   1.80     perry /*
   1324   1.35    kleink  * Advisory record locking support.
   1325   1.35    kleink  */
   1326   1.35    kleink int
   1327  1.104     pooka spec_advlock(void *v)
   1328   1.35    kleink {
   1329   1.35    kleink 	struct vop_advlock_args /* {
   1330   1.35    kleink 		struct vnode *a_vp;
   1331   1.78       jrf 		void *a_id;
   1332   1.35    kleink 		int a_op;
   1333   1.35    kleink 		struct flock *a_fl;
   1334   1.35    kleink 		int a_flags;
   1335   1.35    kleink 	} */ *ap = v;
   1336   1.48  augustss 	struct vnode *vp = ap->a_vp;
   1337   1.35    kleink 
   1338   1.49  jdolecek 	return lf_advlock(ap, &vp->v_speclockf, (off_t)0);
   1339    1.1       cgd }
   1340