Edit

IABSD.fr/src/sys/miscfs/deadfs

Branch :

  • Show log

    Commit

  • Author : claudio
    Date : 2020-01-20 23:21:55
    Hash : 2d6b9e38
    Message : struct vops is not modified during runtime so use const which moves each into read-only data segment. OK deraadt@ tedu@

  • dead_vnops.c
  • /*	$OpenBSD: dead_vnops.c,v 1.32 2020/01/20 23:21:56 claudio Exp $	*/
    /*	$NetBSD: dead_vnops.c,v 1.16 1996/02/13 13:12:48 mycroft Exp $	*/
    
    /*
     * Copyright (c) 1989, 1993
     *	The Regents of the University of California.  All rights reserved.
     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions
     * are met:
     * 1. Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
     * 2. Redistributions in binary form must reproduce the above copyright
     *    notice, this list of conditions and the following disclaimer in the
     *    documentation and/or other materials provided with the distribution.
     * 3. Neither the name of the University nor the names of its contributors
     *    may be used to endorse or promote products derived from this software
     *    without specific prior written permission.
     *
     * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     * SUCH DAMAGE.
     *
     *	@(#)dead_vnops.c	8.2 (Berkeley) 11/21/94
     */
    
    #include <sys/param.h>
    #include <sys/systm.h>
    #include <sys/time.h>
    #include <sys/vnode.h>
    #include <sys/lock.h>
    #include <sys/errno.h>
    #include <sys/buf.h>
    #include <sys/poll.h>
    
    /*
     * Prototypes for dead operations on vnodes.
     */
    int	dead_badop(void *);
    int	dead_ebadf(void *);
    
    int	dead_open(void *);
    int	dead_read(void *);
    int	dead_write(void *);
    int	dead_ioctl(void *);
    int	dead_poll(void *);
    int	dead_inactive(void *);
    int	dead_lock(void *);
    int	dead_bmap(void *);
    int	dead_strategy(void *);
    int	dead_print(void *);
    
    int	chkvnlock(struct vnode *);
    
    const struct vops dead_vops = {
    	.vop_lookup	= vop_generic_lookup,
    	.vop_create	= dead_badop,
    	.vop_mknod	= dead_badop,
    	.vop_open	= dead_open,
    	.vop_close	= nullop,
    	.vop_access	= dead_ebadf,
    	.vop_getattr	= dead_ebadf,
    	.vop_setattr	= dead_ebadf,
    	.vop_read	= dead_read,
    	.vop_write	= dead_write,
    	.vop_ioctl	= dead_ioctl,
    	.vop_poll	= dead_poll,
    	.vop_fsync	= nullop,
    	.vop_remove	= dead_badop,
    	.vop_link	= dead_badop,
    	.vop_rename	= dead_badop,
    	.vop_mkdir	= dead_badop,
    	.vop_rmdir	= dead_badop,
    	.vop_symlink	= dead_badop,
    	.vop_readdir	= dead_ebadf,
    	.vop_readlink	= dead_ebadf,
    	.vop_abortop	= dead_badop,
    	.vop_inactive	= dead_inactive,
    	.vop_reclaim	= nullop,
    	.vop_lock	= dead_lock,
    	.vop_unlock	= vop_generic_unlock,
    	.vop_bmap	= dead_bmap,
    	.vop_strategy	= dead_strategy,
    	.vop_print	= dead_print,
    	.vop_islocked	= vop_generic_islocked,
    	.vop_pathconf	= dead_ebadf,
    	.vop_advlock	= dead_ebadf,
    	.vop_bwrite	= nullop,
    };
    
    /*
     * Open always fails as if device did not exist.
     */
    /* ARGSUSED */
    int
    dead_open(void *v)
    {
    	return (ENXIO);
    }
    
    /*
     * Vnode op for read
     */
    /* ARGSUSED */
    int
    dead_read(void *v)
    {
    	struct vop_read_args *ap = v;
    
    	if (chkvnlock(ap->a_vp))
    		panic("dead_read: lock");
    	/*
    	 * Return EOF for tty devices, EIO for others
    	 */
    	if ((ap->a_vp->v_flag & VISTTY) == 0)
    		return (EIO);
    	return (0);
    }
    
    /*
     * Vnode op for write
     */
    /* ARGSUSED */
    int
    dead_write(void *v)
    {
    	struct vop_write_args *ap = v;
    
    	if (chkvnlock(ap->a_vp))
    		panic("dead_write: lock");
    	return (EIO);
    }
    
    /*
     * Device ioctl operation.
     */
    /* ARGSUSED */
    int
    dead_ioctl(void *v)
    {
    	struct vop_ioctl_args *ap = v;
    
    	if (!chkvnlock(ap->a_vp))
    		return (EBADF);
    	return ((ap->a_vp->v_op->vop_ioctl)(ap));
    }
    
    /* ARGSUSED */
    int
    dead_poll(void *v)
    {
    #if 0
    	struct vop_poll_args *ap = v;
    #endif
    
    	/*
    	 * Let the user find out that the descriptor is gone.
    	 */
    	return (POLLHUP);
    }
    
    /*
     * Just call the device strategy routine
     */
    int
    dead_strategy(void *v)
    {
    	struct vop_strategy_args *ap = v;
    	int s;
    
    	if (ap->a_bp->b_vp == NULL || !chkvnlock(ap->a_bp->b_vp)) {
    		ap->a_bp->b_flags |= B_ERROR;
    		s = splbio();
    		biodone(ap->a_bp);
    		splx(s);
    		return (EIO);
    	}
    	return (VOP_STRATEGY(ap->a_bp));
    }
    
    int
    dead_inactive(void *v)
    {
    	struct vop_inactive_args *ap = v;
    
    	VOP_UNLOCK(ap->a_vp);
    	return (0);
    }
    
    /*
     * Wait until the vnode has finished changing state.
     */
    int
    dead_lock(void *v)
    {
    	struct vop_lock_args *ap = v;
    	struct vnode *vp = ap->a_vp;
    
    	if (ap->a_flags & LK_DRAIN || !chkvnlock(vp))
    		return (0);
    
    	return ((vp->v_op->vop_lock)(ap));
    }
    
    /*
     * Wait until the vnode has finished changing state.
     */
    int
    dead_bmap(void *v)
    {
    	struct vop_bmap_args *ap = v;
    
    	if (!chkvnlock(ap->a_vp))
    		return (EIO);
    	return (VOP_BMAP(ap->a_vp, ap->a_bn, ap->a_vpp, ap->a_bnp, ap->a_runp));
    }
    
    /*
     * Print out the contents of a dead vnode.
     */
    /* ARGSUSED */
    int
    dead_print(void *v)
    {
    	printf("tag VT_NON, dead vnode\n");
    	return 0;
    }
    
    /*
     * Empty vnode failed operation
     */
    /*ARGSUSED*/
    int
    dead_ebadf(void *v)
    {
    	return (EBADF);
    }
    
    /*
     * Empty vnode bad operation
     */
    /*ARGSUSED*/
    int
    dead_badop(void *v)
    {
    	panic("dead_badop called");
    	/* NOTREACHED */
    }
    
    /*
     * We have to wait during times when the vnode is
     * in a state of change.
     */
    int
    chkvnlock(struct vnode *vp)
    {
    	int locked = 0;
    
    	while (vp->v_flag & VXLOCK) {
    		vp->v_flag |= VXWANT;
    		tsleep_nsec(vp, PINOD, "chkvnlock", INFSLP);
    		locked = 1;
    	}
    	return (locked);
    }