dead_vnops.c revision 1.36 1 1.36 xtraeme /* $NetBSD: dead_vnops.c,v 1.36 2005/08/30 20:08:01 xtraeme Exp $ */
2 1.9 cgd
3 1.1 cgd /*
4 1.8 mycroft * Copyright (c) 1989, 1993
5 1.8 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.33 agc * 3. Neither the name of the University nor the names of its contributors
16 1.1 cgd * may be used to endorse or promote products derived from this software
17 1.1 cgd * without specific prior written permission.
18 1.1 cgd *
19 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.1 cgd * SUCH DAMAGE.
30 1.1 cgd *
31 1.13 mycroft * @(#)dead_vnops.c 8.2 (Berkeley) 11/21/94
32 1.1 cgd */
33 1.31 lukem
34 1.31 lukem #include <sys/cdefs.h>
35 1.36 xtraeme __KERNEL_RCSID(0, "$NetBSD: dead_vnops.c,v 1.36 2005/08/30 20:08:01 xtraeme Exp $");
36 1.1 cgd
37 1.6 mycroft #include <sys/param.h>
38 1.6 mycroft #include <sys/systm.h>
39 1.6 mycroft #include <sys/time.h>
40 1.6 mycroft #include <sys/vnode.h>
41 1.6 mycroft #include <sys/errno.h>
42 1.6 mycroft #include <sys/namei.h>
43 1.6 mycroft #include <sys/buf.h>
44 1.14 christos #include <sys/proc.h>
45 1.1 cgd
46 1.17 mycroft #include <miscfs/genfs/genfs.h>
47 1.17 mycroft
48 1.1 cgd /*
49 1.1 cgd * Prototypes for dead operations on vnodes.
50 1.1 cgd */
51 1.36 xtraeme int dead_lookup(void *);
52 1.17 mycroft #define dead_create genfs_badop
53 1.17 mycroft #define dead_mknod genfs_badop
54 1.36 xtraeme int dead_open(void *);
55 1.17 mycroft #define dead_close genfs_nullop
56 1.17 mycroft #define dead_access genfs_ebadf
57 1.17 mycroft #define dead_getattr genfs_ebadf
58 1.17 mycroft #define dead_setattr genfs_ebadf
59 1.36 xtraeme int dead_read(void *);
60 1.36 xtraeme int dead_write(void *);
61 1.26 sommerfe #define dead_lease_check genfs_nullop
62 1.27 sommerfe #define dead_fcntl genfs_nullop
63 1.36 xtraeme int dead_ioctl(void *);
64 1.36 xtraeme int dead_poll(void *);
65 1.17 mycroft #define dead_mmap genfs_badop
66 1.17 mycroft #define dead_fsync genfs_nullop
67 1.17 mycroft #define dead_seek genfs_nullop
68 1.17 mycroft #define dead_remove genfs_badop
69 1.17 mycroft #define dead_link genfs_badop
70 1.17 mycroft #define dead_rename genfs_badop
71 1.17 mycroft #define dead_mkdir genfs_badop
72 1.17 mycroft #define dead_rmdir genfs_badop
73 1.17 mycroft #define dead_symlink genfs_badop
74 1.17 mycroft #define dead_readdir genfs_ebadf
75 1.17 mycroft #define dead_readlink genfs_ebadf
76 1.17 mycroft #define dead_abortop genfs_badop
77 1.17 mycroft #define dead_inactive genfs_nullop
78 1.17 mycroft #define dead_reclaim genfs_nullop
79 1.36 xtraeme int dead_lock(void *);
80 1.17 mycroft #define dead_unlock genfs_nullop
81 1.36 xtraeme int dead_bmap(void *);
82 1.36 xtraeme int dead_strategy(void *);
83 1.36 xtraeme int dead_print(void *);
84 1.17 mycroft #define dead_islocked genfs_nullop
85 1.17 mycroft #define dead_pathconf genfs_ebadf
86 1.17 mycroft #define dead_advlock genfs_ebadf
87 1.17 mycroft #define dead_blkatoff genfs_badop
88 1.17 mycroft #define dead_valloc genfs_badop
89 1.17 mycroft #define dead_vfree genfs_badop
90 1.17 mycroft #define dead_truncate genfs_nullop
91 1.17 mycroft #define dead_update genfs_nullop
92 1.17 mycroft #define dead_bwrite genfs_nullop
93 1.22 fvdl #define dead_revoke genfs_nullop
94 1.32 chs #define dead_putpages genfs_null_putpages
95 1.14 christos
96 1.36 xtraeme int chkvnlock(struct vnode *);
97 1.14 christos
98 1.36 xtraeme int (**dead_vnodeop_p)(void *);
99 1.8 mycroft
100 1.30 jdolecek const struct vnodeopv_entry_desc dead_vnodeop_entries[] = {
101 1.8 mycroft { &vop_default_desc, vn_default_error },
102 1.17 mycroft { &vop_lookup_desc, dead_lookup }, /* lookup */
103 1.17 mycroft { &vop_create_desc, dead_create }, /* create */
104 1.17 mycroft { &vop_mknod_desc, dead_mknod }, /* mknod */
105 1.17 mycroft { &vop_open_desc, dead_open }, /* open */
106 1.17 mycroft { &vop_close_desc, dead_close }, /* close */
107 1.17 mycroft { &vop_access_desc, dead_access }, /* access */
108 1.17 mycroft { &vop_getattr_desc, dead_getattr }, /* getattr */
109 1.17 mycroft { &vop_setattr_desc, dead_setattr }, /* setattr */
110 1.17 mycroft { &vop_read_desc, dead_read }, /* read */
111 1.17 mycroft { &vop_write_desc, dead_write }, /* write */
112 1.26 sommerfe { &vop_lease_desc, dead_lease_check }, /* lease */
113 1.25 sommerfe { &vop_fcntl_desc, dead_fcntl }, /* fcntl */
114 1.17 mycroft { &vop_ioctl_desc, dead_ioctl }, /* ioctl */
115 1.19 mycroft { &vop_poll_desc, dead_poll }, /* poll */
116 1.22 fvdl { &vop_revoke_desc, dead_revoke }, /* revoke */
117 1.17 mycroft { &vop_mmap_desc, dead_mmap }, /* mmap */
118 1.17 mycroft { &vop_fsync_desc, dead_fsync }, /* fsync */
119 1.17 mycroft { &vop_seek_desc, dead_seek }, /* seek */
120 1.17 mycroft { &vop_remove_desc, dead_remove }, /* remove */
121 1.17 mycroft { &vop_link_desc, dead_link }, /* link */
122 1.17 mycroft { &vop_rename_desc, dead_rename }, /* rename */
123 1.17 mycroft { &vop_mkdir_desc, dead_mkdir }, /* mkdir */
124 1.17 mycroft { &vop_rmdir_desc, dead_rmdir }, /* rmdir */
125 1.17 mycroft { &vop_symlink_desc, dead_symlink }, /* symlink */
126 1.17 mycroft { &vop_readdir_desc, dead_readdir }, /* readdir */
127 1.17 mycroft { &vop_readlink_desc, dead_readlink }, /* readlink */
128 1.17 mycroft { &vop_abortop_desc, dead_abortop }, /* abortop */
129 1.17 mycroft { &vop_inactive_desc, dead_inactive }, /* inactive */
130 1.17 mycroft { &vop_reclaim_desc, dead_reclaim }, /* reclaim */
131 1.17 mycroft { &vop_lock_desc, dead_lock }, /* lock */
132 1.17 mycroft { &vop_unlock_desc, dead_unlock }, /* unlock */
133 1.17 mycroft { &vop_bmap_desc, dead_bmap }, /* bmap */
134 1.17 mycroft { &vop_strategy_desc, dead_strategy }, /* strategy */
135 1.17 mycroft { &vop_print_desc, dead_print }, /* print */
136 1.17 mycroft { &vop_islocked_desc, dead_islocked }, /* islocked */
137 1.17 mycroft { &vop_pathconf_desc, dead_pathconf }, /* pathconf */
138 1.17 mycroft { &vop_advlock_desc, dead_advlock }, /* advlock */
139 1.17 mycroft { &vop_blkatoff_desc, dead_blkatoff }, /* blkatoff */
140 1.17 mycroft { &vop_valloc_desc, dead_valloc }, /* valloc */
141 1.17 mycroft { &vop_vfree_desc, dead_vfree }, /* vfree */
142 1.17 mycroft { &vop_truncate_desc, dead_truncate }, /* truncate */
143 1.17 mycroft { &vop_update_desc, dead_update }, /* update */
144 1.17 mycroft { &vop_bwrite_desc, dead_bwrite }, /* bwrite */
145 1.32 chs { &vop_putpages_desc, dead_putpages }, /* putpages */
146 1.32 chs { NULL, NULL }
147 1.1 cgd };
148 1.30 jdolecek const struct vnodeopv_desc dead_vnodeop_opv_desc =
149 1.8 mycroft { &dead_vnodeop_p, dead_vnodeop_entries };
150 1.1 cgd
151 1.1 cgd /*
152 1.1 cgd * Trivial lookup routine that always fails.
153 1.1 cgd */
154 1.1 cgd /* ARGSUSED */
155 1.3 andrew int
156 1.14 christos dead_lookup(v)
157 1.14 christos void *v;
158 1.14 christos {
159 1.8 mycroft struct vop_lookup_args /* {
160 1.8 mycroft struct vnode * a_dvp;
161 1.8 mycroft struct vnode ** a_vpp;
162 1.8 mycroft struct componentname * a_cnp;
163 1.14 christos } */ *ap = v;
164 1.1 cgd
165 1.8 mycroft *ap->a_vpp = NULL;
166 1.1 cgd return (ENOTDIR);
167 1.1 cgd }
168 1.1 cgd
169 1.1 cgd /*
170 1.1 cgd * Open always fails as if device did not exist.
171 1.1 cgd */
172 1.1 cgd /* ARGSUSED */
173 1.14 christos int
174 1.14 christos dead_open(v)
175 1.14 christos void *v;
176 1.1 cgd {
177 1.1 cgd
178 1.1 cgd return (ENXIO);
179 1.1 cgd }
180 1.1 cgd
181 1.1 cgd /*
182 1.1 cgd * Vnode op for read
183 1.1 cgd */
184 1.1 cgd /* ARGSUSED */
185 1.14 christos int
186 1.14 christos dead_read(v)
187 1.14 christos void *v;
188 1.14 christos {
189 1.8 mycroft struct vop_read_args /* {
190 1.8 mycroft struct vnode *a_vp;
191 1.8 mycroft struct uio *a_uio;
192 1.8 mycroft int a_ioflag;
193 1.8 mycroft struct ucred *a_cred;
194 1.14 christos } */ *ap = v;
195 1.1 cgd
196 1.8 mycroft if (chkvnlock(ap->a_vp))
197 1.1 cgd panic("dead_read: lock");
198 1.1 cgd /*
199 1.13 mycroft * Return EOF for tty devices, EIO for others
200 1.1 cgd */
201 1.13 mycroft if ((ap->a_vp->v_flag & VISTTY) == 0)
202 1.1 cgd return (EIO);
203 1.1 cgd return (0);
204 1.1 cgd }
205 1.1 cgd
206 1.1 cgd /*
207 1.1 cgd * Vnode op for write
208 1.1 cgd */
209 1.1 cgd /* ARGSUSED */
210 1.14 christos int
211 1.14 christos dead_write(v)
212 1.14 christos void *v;
213 1.14 christos {
214 1.8 mycroft struct vop_write_args /* {
215 1.8 mycroft struct vnode *a_vp;
216 1.8 mycroft struct uio *a_uio;
217 1.8 mycroft int a_ioflag;
218 1.8 mycroft struct ucred *a_cred;
219 1.14 christos } */ *ap = v;
220 1.1 cgd
221 1.8 mycroft if (chkvnlock(ap->a_vp))
222 1.1 cgd panic("dead_write: lock");
223 1.1 cgd return (EIO);
224 1.1 cgd }
225 1.1 cgd
226 1.1 cgd /*
227 1.1 cgd * Device ioctl operation.
228 1.1 cgd */
229 1.1 cgd /* ARGSUSED */
230 1.14 christos int
231 1.14 christos dead_ioctl(v)
232 1.14 christos void *v;
233 1.14 christos {
234 1.8 mycroft struct vop_ioctl_args /* {
235 1.8 mycroft struct vnode *a_vp;
236 1.10 cgd u_long a_command;
237 1.35 jrf void *a_data;
238 1.8 mycroft int a_fflag;
239 1.8 mycroft struct ucred *a_cred;
240 1.8 mycroft struct proc *a_p;
241 1.14 christos } */ *ap = v;
242 1.1 cgd
243 1.8 mycroft if (!chkvnlock(ap->a_vp))
244 1.1 cgd return (EBADF);
245 1.8 mycroft return (VCALL(ap->a_vp, VOFFSET(vop_ioctl), ap));
246 1.1 cgd }
247 1.1 cgd
248 1.1 cgd /* ARGSUSED */
249 1.14 christos int
250 1.19 mycroft dead_poll(v)
251 1.14 christos void *v;
252 1.1 cgd {
253 1.19 mycroft struct vop_poll_args /* {
254 1.17 mycroft struct vnode *a_vp;
255 1.19 mycroft int a_events;
256 1.17 mycroft struct proc *a_p;
257 1.17 mycroft } */ *ap = v;
258 1.17 mycroft
259 1.1 cgd /*
260 1.1 cgd * Let the user find out that the descriptor is gone.
261 1.1 cgd */
262 1.19 mycroft return (ap->a_events);
263 1.1 cgd }
264 1.1 cgd
265 1.1 cgd /*
266 1.1 cgd * Just call the device strategy routine
267 1.1 cgd */
268 1.14 christos int
269 1.14 christos dead_strategy(v)
270 1.14 christos void *v;
271 1.14 christos {
272 1.14 christos
273 1.8 mycroft struct vop_strategy_args /* {
274 1.34 hannken struct vnode *a_vp;
275 1.8 mycroft struct buf *a_bp;
276 1.14 christos } */ *ap = v;
277 1.34 hannken if (ap->a_vp == NULL || !chkvnlock(ap->a_vp)) {
278 1.8 mycroft ap->a_bp->b_flags |= B_ERROR;
279 1.8 mycroft biodone(ap->a_bp);
280 1.1 cgd return (EIO);
281 1.1 cgd }
282 1.34 hannken return (VOP_STRATEGY(ap->a_vp, ap->a_bp));
283 1.1 cgd }
284 1.1 cgd
285 1.1 cgd /*
286 1.1 cgd * Wait until the vnode has finished changing state.
287 1.1 cgd */
288 1.14 christos int
289 1.14 christos dead_lock(v)
290 1.14 christos void *v;
291 1.14 christos {
292 1.8 mycroft struct vop_lock_args /* {
293 1.8 mycroft struct vnode *a_vp;
294 1.23 pk int a_flags;
295 1.23 pk struct proc *a_p;
296 1.14 christos } */ *ap = v;
297 1.1 cgd
298 1.24 fvdl if (ap->a_flags & LK_INTERLOCK) {
299 1.23 pk simple_unlock(&ap->a_vp->v_interlock);
300 1.24 fvdl ap->a_flags &= ~LK_INTERLOCK;
301 1.24 fvdl }
302 1.8 mycroft if (!chkvnlock(ap->a_vp))
303 1.1 cgd return (0);
304 1.8 mycroft return (VCALL(ap->a_vp, VOFFSET(vop_lock), ap));
305 1.1 cgd }
306 1.1 cgd
307 1.1 cgd /*
308 1.1 cgd * Wait until the vnode has finished changing state.
309 1.1 cgd */
310 1.14 christos int
311 1.14 christos dead_bmap(v)
312 1.14 christos void *v;
313 1.14 christos {
314 1.8 mycroft struct vop_bmap_args /* {
315 1.8 mycroft struct vnode *a_vp;
316 1.8 mycroft daddr_t a_bn;
317 1.8 mycroft struct vnode **a_vpp;
318 1.8 mycroft daddr_t *a_bnp;
319 1.8 mycroft int *a_runp;
320 1.14 christos } */ *ap = v;
321 1.1 cgd
322 1.8 mycroft if (!chkvnlock(ap->a_vp))
323 1.1 cgd return (EIO);
324 1.8 mycroft return (VOP_BMAP(ap->a_vp, ap->a_bn, ap->a_vpp, ap->a_bnp, ap->a_runp));
325 1.1 cgd }
326 1.1 cgd
327 1.1 cgd /*
328 1.1 cgd * Print out the contents of a dead vnode.
329 1.1 cgd */
330 1.1 cgd /* ARGSUSED */
331 1.14 christos int
332 1.14 christos dead_print(v)
333 1.14 christos void *v;
334 1.1 cgd {
335 1.21 christos printf("tag VT_NON, dead vnode\n");
336 1.14 christos return 0;
337 1.1 cgd }
338 1.1 cgd
339 1.1 cgd /*
340 1.1 cgd * We have to wait during times when the vnode is
341 1.1 cgd * in a state of change.
342 1.1 cgd */
343 1.14 christos int
344 1.1 cgd chkvnlock(vp)
345 1.28 augustss struct vnode *vp;
346 1.1 cgd {
347 1.1 cgd int locked = 0;
348 1.1 cgd
349 1.1 cgd while (vp->v_flag & VXLOCK) {
350 1.1 cgd vp->v_flag |= VXWANT;
351 1.29 thorpej (void) tsleep(vp, PINOD, "deadchk", 0);
352 1.1 cgd locked = 1;
353 1.1 cgd }
354 1.1 cgd return (locked);
355 1.1 cgd }
356