sys/vfs/deadfs/dead_vnops.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | /* * 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.1 (Berkeley) 6/10/93 * $FreeBSD: src/sys/miscfs/deadfs/dead_vnops.c,v 1.26 1999/08/28 00:46:42 peter Exp $ * $DragonFly: src/sys/vfs/deadfs/dead_vnops.c,v 1.20 2007/08/13 17:31:56 dillon Exp $ */ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/lock.h> #include <sys/vnode.h> #include <sys/fcntl.h> #include <sys/buf.h> /* * Prototypes for dead operations on vnodes. */ static int dead_badop (void); static int dead_bmap (struct vop_bmap_args *); static int dead_ioctl (struct vop_ioctl_args *); static int dead_lookup (struct vop_old_lookup_args *); static int dead_open (struct vop_open_args *); static int dead_close (struct vop_close_args *); static int dead_print (struct vop_print_args *); static int dead_read (struct vop_read_args *); static int dead_write (struct vop_write_args *); struct vop_ops dead_vnode_vops = { .vop_default = vop_defaultop, .vop_access = (void *)vop_ebadf, .vop_advlock = (void *)vop_ebadf, .vop_bmap = dead_bmap, .vop_old_create = (void *)dead_badop, .vop_getattr = (void *)vop_ebadf, .vop_inactive = (void *)vop_null, .vop_ioctl = dead_ioctl, .vop_old_link = (void *)dead_badop, .vop_old_lookup = dead_lookup, .vop_old_mkdir = (void *)dead_badop, .vop_old_mknod = (void *)dead_badop, .vop_open = dead_open, .vop_close = dead_close, .vop_pathconf = (void *)vop_ebadf, /* per pathconf(2) */ .vop_print = dead_print, .vop_read = dead_read, .vop_readdir = (void *)vop_ebadf, .vop_readlink = (void *)vop_ebadf, .vop_reclaim = (void *)vop_null, .vop_old_remove = (void *)dead_badop, .vop_old_rename = (void *)dead_badop, .vop_old_rmdir = (void *)dead_badop, .vop_setattr = (void *)vop_ebadf, .vop_old_symlink = (void *)dead_badop, .vop_write = dead_write }; struct vop_ops *dead_vnode_vops_p = &dead_vnode_vops; VNODEOP_SET(dead_vnode_vops); /* * Trivial lookup routine that always fails. * * dead_lookup(struct vnode *a_dvp, struct vnode **a_vpp, * struct componentname *a_cnp) */ /* ARGSUSED */ static int dead_lookup(struct vop_old_lookup_args *ap) { *ap->a_vpp = NULL; return (ENOTDIR); } /* * Open always fails as if device did not exist. * * dead_open(struct vnode *a_vp, int a_mode, struct ucred *a_cred, * struct proc *a_p) */ /* ARGSUSED */ static int dead_open(struct vop_open_args *ap) { return (ENXIO); } /* * Close always succeeds, and does not warn or panic if v_opencount or * v_writecount is incorrect, because a forced unmount or revocation * might have closed the file out from under the descriptor. */ static int dead_close(struct vop_close_args *ap) { struct vnode *vp = ap->a_vp; vn_lock(vp, LK_UPGRADE | LK_RETRY); /* safety */ if (vp->v_opencount > 0) { if ((ap->a_fflag & FWRITE) && vp->v_writecount > 0) atomic_add_int(&vp->v_writecount, -1); atomic_add_int(&vp->v_opencount, -1); } return (0); } /* * Vnode op for read * * dead_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag, * struct ucred *a_cred) */ /* ARGSUSED */ static int dead_read(struct vop_read_args *ap) { /* * Return EOF for tty devices, EIO for others */ if ((ap->a_vp->v_flag & VISTTY) == 0) return (EIO); return (0); } /* * Vnode op for write * * dead_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag, * struct ucred *a_cred) */ /* ARGSUSED */ static int dead_write(struct vop_write_args *ap) { return (EIO); } /* * Device ioctl operation. * * dead_ioctl(struct vnode *a_vp, int a_command, caddr_t a_data, int a_fflag, * struct ucred *a_cred, struct proc *a_p) */ /* ARGSUSED */ static int dead_ioctl(struct vop_ioctl_args *ap) { return (ENOTTY); } /* * Wait until the vnode has finished changing state. * * dead_bmap(struct vnode *a_vp, off_t a_loffset, * off_t *a_doffsetp, int *a_runp, int *a_runb) */ static int dead_bmap(struct vop_bmap_args *ap) { return (EIO); } /* * Print out the contents of a dead vnode. * * dead_print(struct vnode *a_vp) */ /* ARGSUSED */ static int dead_print(struct vop_print_args *ap) { kprintf("tag VT_NON, dead vnode\n"); return (0); } /* * Empty vnode bad operation */ static int dead_badop(void) { panic("dead_badop called"); /* NOTREACHED */ } |