2014-02-07 19:29:20 +04:00
|
|
|
/* $NetBSD: dead_vnops.c,v 1.54 2014/02/07 15:29:22 hannken Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-06-08 15:33:09 +04:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* 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.
|
|
|
|
*
|
1995-04-10 04:48:46 +04:00
|
|
|
* @(#)dead_vnops.c 8.2 (Berkeley) 11/21/94
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-10 16:33:40 +03:00
|
|
|
#include <sys/cdefs.h>
|
2014-02-07 19:29:20 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: dead_vnops.c,v 1.54 2014/02/07 15:29:22 hannken Exp $");
|
2001-11-10 16:33:40 +03:00
|
|
|
|
1993-12-18 06:48:27 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/buf.h>
|
1996-02-10 01:39:56 +03:00
|
|
|
#include <sys/proc.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-09-02 03:47:48 +04:00
|
|
|
#include <miscfs/genfs/genfs.h>
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Prototypes for dead operations on vnodes.
|
|
|
|
*/
|
2013-11-07 13:45:53 +04:00
|
|
|
#define dead_bwrite genfs_nullop
|
|
|
|
int dead_lookup(void *);
|
2005-08-31 00:08:01 +04:00
|
|
|
int dead_open(void *);
|
1996-09-02 03:47:48 +04:00
|
|
|
#define dead_close genfs_nullop
|
2005-08-31 00:08:01 +04:00
|
|
|
int dead_read(void *);
|
|
|
|
int dead_write(void *);
|
1999-12-12 03:56:29 +03:00
|
|
|
#define dead_fcntl genfs_nullop
|
2005-08-31 00:08:01 +04:00
|
|
|
int dead_ioctl(void *);
|
|
|
|
int dead_poll(void *);
|
2013-11-07 13:45:53 +04:00
|
|
|
int dead_remove(void *);
|
|
|
|
int dead_link(void *);
|
|
|
|
int dead_rename(void *);
|
|
|
|
int dead_rmdir(void *);
|
1996-09-02 03:47:48 +04:00
|
|
|
#define dead_fsync genfs_nullop
|
|
|
|
#define dead_seek genfs_nullop
|
2013-11-07 13:45:53 +04:00
|
|
|
int dead_inactive(void *);
|
1996-09-02 03:47:48 +04:00
|
|
|
#define dead_reclaim genfs_nullop
|
2013-11-07 13:45:53 +04:00
|
|
|
#define dead_lock genfs_lock
|
2010-12-18 01:03:00 +03:00
|
|
|
#define dead_unlock genfs_unlock
|
2005-08-31 00:08:01 +04:00
|
|
|
int dead_bmap(void *);
|
|
|
|
int dead_strategy(void *);
|
|
|
|
int dead_print(void *);
|
2010-12-18 01:03:00 +03:00
|
|
|
#define dead_islocked genfs_islocked
|
1998-03-01 05:20:01 +03:00
|
|
|
#define dead_revoke genfs_nullop
|
2006-12-11 02:57:33 +03:00
|
|
|
int dead_getpages(void *);
|
2013-11-07 13:45:53 +04:00
|
|
|
int dead_putpages(void *);
|
1996-02-10 01:39:56 +03:00
|
|
|
|
2006-12-09 19:11:50 +03:00
|
|
|
int dead_default_error(void *);
|
1996-02-10 01:39:56 +03:00
|
|
|
|
2005-08-31 00:08:01 +04:00
|
|
|
int (**dead_vnodeop_p)(void *);
|
1996-02-10 01:39:56 +03:00
|
|
|
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_entry_desc dead_vnodeop_entries[] = {
|
2006-12-09 19:11:50 +03:00
|
|
|
{ &vop_default_desc, dead_default_error },
|
2013-11-07 13:45:53 +04:00
|
|
|
{ &vop_bwrite_desc, dead_bwrite }, /* bwrite */
|
|
|
|
{ &vop_lookup_desc, dead_lookup }, /* lookup */
|
1996-09-02 03:47:48 +04:00
|
|
|
{ &vop_open_desc, dead_open }, /* open */
|
|
|
|
{ &vop_close_desc, dead_close }, /* close */
|
|
|
|
{ &vop_read_desc, dead_read }, /* read */
|
|
|
|
{ &vop_write_desc, dead_write }, /* write */
|
1999-12-08 22:16:51 +03:00
|
|
|
{ &vop_fcntl_desc, dead_fcntl }, /* fcntl */
|
1996-09-02 03:47:48 +04:00
|
|
|
{ &vop_ioctl_desc, dead_ioctl }, /* ioctl */
|
1996-09-07 16:40:22 +04:00
|
|
|
{ &vop_poll_desc, dead_poll }, /* poll */
|
2013-11-07 13:45:53 +04:00
|
|
|
{ &vop_remove_desc, dead_remove }, /* remove */
|
|
|
|
{ &vop_link_desc, dead_link }, /* link */
|
|
|
|
{ &vop_rename_desc, dead_rename }, /* rename */
|
|
|
|
{ &vop_rmdir_desc, dead_rmdir }, /* rmdir */
|
1996-09-02 03:47:48 +04:00
|
|
|
{ &vop_fsync_desc, dead_fsync }, /* fsync */
|
|
|
|
{ &vop_seek_desc, dead_seek }, /* seek */
|
|
|
|
{ &vop_inactive_desc, dead_inactive }, /* inactive */
|
|
|
|
{ &vop_reclaim_desc, dead_reclaim }, /* reclaim */
|
|
|
|
{ &vop_lock_desc, dead_lock }, /* lock */
|
|
|
|
{ &vop_unlock_desc, dead_unlock }, /* unlock */
|
|
|
|
{ &vop_bmap_desc, dead_bmap }, /* bmap */
|
|
|
|
{ &vop_strategy_desc, dead_strategy }, /* strategy */
|
|
|
|
{ &vop_print_desc, dead_print }, /* print */
|
|
|
|
{ &vop_islocked_desc, dead_islocked }, /* islocked */
|
2013-11-07 13:45:53 +04:00
|
|
|
{ &vop_revoke_desc, dead_revoke }, /* revoke */
|
2006-12-11 02:57:33 +03:00
|
|
|
{ &vop_getpages_desc, dead_getpages }, /* getpages */
|
2001-12-06 07:27:40 +03:00
|
|
|
{ &vop_putpages_desc, dead_putpages }, /* putpages */
|
|
|
|
{ NULL, NULL }
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc dead_vnodeop_opv_desc =
|
1994-06-08 15:33:09 +04:00
|
|
|
{ &dead_vnodeop_p, dead_vnodeop_entries };
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2013-11-07 13:45:53 +04:00
|
|
|
/* ARGSUSED */
|
1993-06-27 10:01:27 +04:00
|
|
|
int
|
2006-12-09 19:11:50 +03:00
|
|
|
dead_default_error(void *v)
|
1996-02-10 01:39:56 +03:00
|
|
|
{
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2006-12-09 19:11:50 +03:00
|
|
|
return EBADF;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2013-11-07 13:45:53 +04:00
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
|
|
|
dead_bmap(void *v)
|
|
|
|
{
|
|
|
|
/* struct vop_bmap_args {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
daddr_t a_bn;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
daddr_t *a_bnp;
|
|
|
|
int *a_runp;
|
|
|
|
} *ap = v; */
|
|
|
|
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dead_lookup(void *v)
|
|
|
|
{
|
2014-02-07 19:29:20 +04:00
|
|
|
struct vop_lookup_v2_args /* {
|
2013-11-07 13:45:53 +04:00
|
|
|
struct vnode *a_dvp;
|
|
|
|
struct vnode **a_vpp;
|
|
|
|
struct componentname *a_cnp;
|
|
|
|
} */ *ap = v;
|
|
|
|
|
|
|
|
*(ap->a_vpp) = NULL;
|
|
|
|
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* ARGSUSED */
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
dead_open(void *v)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2013-11-07 13:45:53 +04:00
|
|
|
/* struct vop_open_args {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
int a_mode;
|
|
|
|
kauth_cred_t a_cred;
|
|
|
|
} *ap = v; */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2009-03-15 00:04:01 +03:00
|
|
|
dead_read(void *v)
|
1996-02-10 01:39:56 +03:00
|
|
|
{
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vop_read_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
1995-04-10 04:48:46 +04:00
|
|
|
* Return EOF for tty devices, EIO for others
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
2007-10-11 00:42:20 +04:00
|
|
|
if ((ap->a_vp->v_vflag & VV_ISTTY) == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
return (EIO);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2009-03-15 00:04:01 +03:00
|
|
|
dead_write(void *v)
|
1996-02-10 01:39:56 +03:00
|
|
|
{
|
2013-11-07 13:45:53 +04:00
|
|
|
/* struct vop_write_args {
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *a_vp;
|
|
|
|
struct uio *a_uio;
|
|
|
|
int a_ioflag;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2013-11-07 13:45:53 +04:00
|
|
|
} *ap = v; */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2009-03-15 00:04:01 +03:00
|
|
|
dead_ioctl(void *v)
|
1996-02-10 01:39:56 +03:00
|
|
|
{
|
2013-11-07 13:45:53 +04:00
|
|
|
/* struct vop_ioctl_args {
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *a_vp;
|
1994-10-31 00:43:03 +03:00
|
|
|
u_long a_command;
|
2004-04-27 21:37:30 +04:00
|
|
|
void *a_data;
|
1994-06-08 15:33:09 +04:00
|
|
|
int a_fflag;
|
2006-05-15 01:31:52 +04:00
|
|
|
kauth_cred_t a_cred;
|
2005-12-11 15:16:03 +03:00
|
|
|
struct lwp *a_l;
|
2013-11-07 13:45:53 +04:00
|
|
|
} *ap = v; */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2013-11-07 13:45:53 +04:00
|
|
|
return (EBADF);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2009-03-15 00:04:01 +03:00
|
|
|
dead_poll(void *v)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1996-09-07 16:40:22 +04:00
|
|
|
struct vop_poll_args /* {
|
1996-09-02 03:47:48 +04:00
|
|
|
struct vnode *a_vp;
|
1996-09-07 16:40:22 +04:00
|
|
|
int a_events;
|
2005-12-11 15:16:03 +03:00
|
|
|
struct lwp *a_l;
|
1996-09-02 03:47:48 +04:00
|
|
|
} */ *ap = v;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Let the user find out that the descriptor is gone.
|
|
|
|
*/
|
1996-09-07 16:40:22 +04:00
|
|
|
return (ap->a_events);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2013-11-07 13:45:53 +04:00
|
|
|
dead_remove(void *v)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2013-11-07 13:45:53 +04:00
|
|
|
struct vop_remove_args /* {
|
|
|
|
struct vnode *a_dvp;
|
2004-01-25 21:06:48 +03:00
|
|
|
struct vnode *a_vp;
|
2013-11-07 13:45:53 +04:00
|
|
|
struct componentname *a_cnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
2013-11-07 13:45:53 +04:00
|
|
|
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
vput(ap->a_vp);
|
|
|
|
|
|
|
|
return EIO;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2013-11-07 13:45:53 +04:00
|
|
|
dead_link(void *v)
|
1996-02-10 01:39:56 +03:00
|
|
|
{
|
2013-11-07 13:45:53 +04:00
|
|
|
struct vop_link_args /* {
|
|
|
|
struct vnode *a_dvp;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *a_vp;
|
2013-11-07 13:45:53 +04:00
|
|
|
struct componentname *a_cnp;
|
1996-02-10 01:39:56 +03:00
|
|
|
} */ *ap = v;
|
2010-07-02 11:56:46 +04:00
|
|
|
|
2013-11-07 13:45:53 +04:00
|
|
|
vput(ap->a_dvp);
|
|
|
|
|
|
|
|
return EIO;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2013-11-07 13:45:53 +04:00
|
|
|
dead_rename(void *v)
|
1996-02-10 01:39:56 +03:00
|
|
|
{
|
2013-11-07 13:45:53 +04:00
|
|
|
struct vop_rename_args /* {
|
|
|
|
struct vnode *a_fdvp;
|
|
|
|
struct vnode *a_fvp;
|
|
|
|
struct componentname *a_fcnp;
|
|
|
|
struct vnode *a_tdvp;
|
|
|
|
struct vnode *a_tvp;
|
|
|
|
struct componentname *a_tcnp;
|
|
|
|
} */ *ap = v;
|
|
|
|
|
|
|
|
vrele(ap->a_fdvp);
|
|
|
|
vrele(ap->a_fvp);
|
|
|
|
if (ap->a_tvp != NULL && ap->a_tvp != ap->a_tdvp)
|
|
|
|
VOP_UNLOCK(ap->a_tvp);
|
|
|
|
vput(ap->a_tdvp);
|
|
|
|
if (ap->a_tvp != NULL)
|
|
|
|
vrele(ap->a_tvp);
|
|
|
|
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dead_rmdir(void *v)
|
|
|
|
{
|
|
|
|
struct vop_rmdir_args /* {
|
|
|
|
struct vnode *a_dvp;
|
1994-06-08 15:33:09 +04:00
|
|
|
struct vnode *a_vp;
|
2013-11-07 13:45:53 +04:00
|
|
|
struct componentname *a_cnp;
|
|
|
|
} */ *ap = v;
|
|
|
|
|
|
|
|
vput(ap->a_dvp);
|
|
|
|
vput(ap->a_vp);
|
|
|
|
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dead_inactive(void *v)
|
|
|
|
{
|
|
|
|
struct vop_inactive_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
bool *a_recycle;
|
|
|
|
} */ *ap = v;
|
|
|
|
|
|
|
|
*ap->a_recycle = false;
|
|
|
|
VOP_UNLOCK(ap->a_vp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dead_strategy(void *v)
|
|
|
|
{
|
|
|
|
struct vop_strategy_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
struct buf *a_bp;
|
|
|
|
} */ *ap = v;
|
|
|
|
struct buf *bp;
|
|
|
|
|
|
|
|
bp = ap->a_bp;
|
|
|
|
bp->b_error = EIO;
|
|
|
|
bp->b_resid = bp->b_bcount;
|
|
|
|
biodone(ap->a_bp);
|
|
|
|
return (EIO);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2006-11-16 04:32:37 +03:00
|
|
|
dead_print(void *v)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1996-10-13 06:21:25 +04:00
|
|
|
printf("tag VT_NON, dead vnode\n");
|
1996-02-10 01:39:56 +03:00
|
|
|
return 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
2006-12-11 02:57:33 +03:00
|
|
|
int
|
|
|
|
dead_getpages(void *v)
|
|
|
|
{
|
|
|
|
struct vop_getpages_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
voff_t a_offset;
|
|
|
|
struct vm_page **a_m;
|
|
|
|
int *a_count;
|
|
|
|
int a_centeridx;
|
|
|
|
vm_prot_t a_access_type;
|
|
|
|
int a_advice;
|
|
|
|
int a_flags;
|
|
|
|
} */ *ap = v;
|
|
|
|
|
|
|
|
if ((ap->a_flags & PGO_LOCKED) == 0)
|
2011-06-12 07:35:36 +04:00
|
|
|
mutex_exit(ap->a_vp->v_interlock);
|
2006-12-11 02:57:33 +03:00
|
|
|
|
|
|
|
return (EFAULT);
|
|
|
|
}
|
|
|
|
|
1996-02-10 01:39:56 +03:00
|
|
|
int
|
2013-11-07 13:45:53 +04:00
|
|
|
dead_putpages(void *v)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2013-11-07 13:45:53 +04:00
|
|
|
struct vop_putpages_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
voff_t a_offlo;
|
|
|
|
voff_t a_offhi;
|
|
|
|
int a_flags;
|
|
|
|
} */ *ap = v;
|
2007-10-11 00:42:20 +04:00
|
|
|
|
2013-11-07 13:45:53 +04:00
|
|
|
mutex_exit(ap->a_vp->v_interlock);
|
|
|
|
return (EFAULT);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|