Deleted Added
sdiff udiff text old ( 52970 ) new ( 54444 )
full compact
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed
6 * to Berkeley by John Heidemann of the UCLA Ficus project.
7 *
8 * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 *
39 * $FreeBSD: head/sys/kern/vfs_default.c 52970 1999-11-07 15:09:49Z phk $
40 */
41
42#include <sys/param.h>
43#include <sys/systm.h>
44#include <sys/buf.h>
45#include <sys/kernel.h>
46#include <sys/lock.h>
47#include <sys/malloc.h>
48#include <sys/mount.h>
49#include <sys/unistd.h>
50#include <sys/vnode.h>
51#include <sys/poll.h>
52
53static int vop_nostrategy __P((struct vop_strategy_args *));
54
55/*
56 * This vnode table stores what we want to do if the filesystem doesn't
57 * implement a particular VOP.
58 *
59 * If there is no specific entry here, we will return EOPNOTSUPP.
60 *
61 */
62
63vop_t **default_vnodeop_p;
64static struct vnodeopv_entry_desc default_vnodeop_entries[] = {
65 { &vop_default_desc, (vop_t *) vop_eopnotsupp },
66 { &vop_abortop_desc, (vop_t *) vop_null },
67 { &vop_advlock_desc, (vop_t *) vop_einval },
68 { &vop_bwrite_desc, (vop_t *) vop_stdbwrite },
69 { &vop_close_desc, (vop_t *) vop_null },
70 { &vop_fsync_desc, (vop_t *) vop_null },
71 { &vop_ioctl_desc, (vop_t *) vop_enotty },
72 { &vop_islocked_desc, (vop_t *) vop_noislocked },
73 { &vop_lease_desc, (vop_t *) vop_null },
74 { &vop_lock_desc, (vop_t *) vop_nolock },
75 { &vop_mmap_desc, (vop_t *) vop_einval },
76 { &vop_open_desc, (vop_t *) vop_null },
77 { &vop_pathconf_desc, (vop_t *) vop_einval },
78 { &vop_poll_desc, (vop_t *) vop_nopoll },
79 { &vop_readlink_desc, (vop_t *) vop_einval },
80 { &vop_reallocblks_desc, (vop_t *) vop_eopnotsupp },
81 { &vop_revoke_desc, (vop_t *) vop_revoke },
82 { &vop_strategy_desc, (vop_t *) vop_nostrategy },
83 { &vop_unlock_desc, (vop_t *) vop_nounlock },
84 { NULL, NULL }
85};
86
87static struct vnodeopv_desc default_vnodeop_opv_desc =
88 { &default_vnodeop_p, default_vnodeop_entries };
89
90VNODEOP_SET(default_vnodeop_opv_desc);
91
92int
93vop_eopnotsupp(struct vop_generic_args *ap)
94{
95 /*
96 printf("vop_notsupp[%s]\n", ap->a_desc->vdesc_name);
97 */
98
99 return (EOPNOTSUPP);
100}
101
102int
103vop_ebadf(struct vop_generic_args *ap)
104{
105
106 return (EBADF);
107}
108
109int
110vop_enotty(struct vop_generic_args *ap)
111{
112
113 return (ENOTTY);
114}
115
116int
117vop_einval(struct vop_generic_args *ap)
118{
119
120 return (EINVAL);
121}
122
123int
124vop_null(struct vop_generic_args *ap)
125{
126
127 return (0);
128}
129
130int
131vop_defaultop(struct vop_generic_args *ap)
132{
133
134 return (VOCALL(default_vnodeop_p, ap->a_desc->vdesc_offset, ap));
135}
136
137int
138vop_panic(struct vop_generic_args *ap)
139{
140
141 printf("vop_panic[%s]\n", ap->a_desc->vdesc_name);
142 panic("Filesystem goof");
143 return (0);
144}
145
146/*
147 * vop_nostrategy:
148 *
149 * Strategy routine for VFS devices that have none.
150 *
151 * B_ERROR and B_INVAL must be cleared prior to calling any strategy
152 * routine. Typically this is done for a B_READ strategy call. Typically
153 * B_INVAL is assumed to already be clear prior to a write and should not
154 * be cleared manually unless you just made the buffer invalid. B_ERROR
155 * should be cleared either way.
156 */
157
158static int
159vop_nostrategy (struct vop_strategy_args *ap)
160{
161 printf("No strategy for buffer at %p\n", ap->a_bp);
162 vprint("", ap->a_vp);
163 vprint("", ap->a_bp->b_vp);
164 ap->a_bp->b_flags |= B_ERROR;
165 ap->a_bp->b_error = EOPNOTSUPP;
166 biodone(ap->a_bp);
167 return (EOPNOTSUPP);
168}
169
170int
171vop_stdpathconf(ap)
172 struct vop_pathconf_args /* {
173 struct vnode *a_vp;
174 int a_name;
175 int *a_retval;
176 } */ *ap;
177{
178
179 switch (ap->a_name) {
180 case _PC_LINK_MAX:
181 *ap->a_retval = LINK_MAX;
182 return (0);
183 case _PC_MAX_CANON:
184 *ap->a_retval = MAX_CANON;
185 return (0);
186 case _PC_MAX_INPUT:
187 *ap->a_retval = MAX_INPUT;
188 return (0);
189 case _PC_PIPE_BUF:
190 *ap->a_retval = PIPE_BUF;
191 return (0);
192 case _PC_CHOWN_RESTRICTED:
193 *ap->a_retval = 1;
194 return (0);
195 case _PC_VDISABLE:
196 *ap->a_retval = _POSIX_VDISABLE;
197 return (0);
198 default:
199 return (EINVAL);
200 }
201 /* NOTREACHED */
202}
203
204/*
205 * Standard lock, unlock and islocked functions.
206 *
207 * These depend on the lock structure being the first element in the
208 * inode, ie: vp->v_data points to the the lock!
209 */
210int
211vop_stdlock(ap)
212 struct vop_lock_args /* {
213 struct vnode *a_vp;
214 int a_flags;
215 struct proc *a_p;
216 } */ *ap;
217{
218 struct lock *l;
219
220 if ((l = (struct lock *)ap->a_vp->v_data) == NULL) {
221 if (ap->a_flags & LK_INTERLOCK)
222 simple_unlock(&ap->a_vp->v_interlock);
223 return 0;
224 }
225
226#ifndef DEBUG_LOCKS
227 return (lockmgr(l, ap->a_flags, &ap->a_vp->v_interlock, ap->a_p));
228#else
229 return (debuglockmgr(l, ap->a_flags, &ap->a_vp->v_interlock, ap->a_p,
230 "vop_stdlock", ap->a_vp->filename, ap->a_vp->line));
231#endif
232}
233
234int
235vop_stdunlock(ap)
236 struct vop_unlock_args /* {
237 struct vnode *a_vp;
238 int a_flags;
239 struct proc *a_p;
240 } */ *ap;
241{
242 struct lock *l;
243
244 if ((l = (struct lock *)ap->a_vp->v_data) == NULL) {
245 if (ap->a_flags & LK_INTERLOCK)
246 simple_unlock(&ap->a_vp->v_interlock);
247 return 0;
248 }
249
250 return (lockmgr(l, ap->a_flags | LK_RELEASE, &ap->a_vp->v_interlock,
251 ap->a_p));
252}
253
254int
255vop_stdislocked(ap)
256 struct vop_islocked_args /* {
257 struct vnode *a_vp;
258 } */ *ap;
259{
260 struct lock *l;
261
262 if ((l = (struct lock *)ap->a_vp->v_data) == NULL)
263 return 0;
264
265 return (lockstatus(l));
266}
267
268/*
269 * Return true for select/poll.
270 */
271int
272vop_nopoll(ap)
273 struct vop_poll_args /* {
274 struct vnode *a_vp;
275 int a_events;
276 struct ucred *a_cred;
277 struct proc *a_p;
278 } */ *ap;
279{
280 /*
281 * Return true for read/write. If the user asked for something
282 * special, return POLLNVAL, so that clients have a way of
283 * determining reliably whether or not the extended
284 * functionality is present without hard-coding knowledge
285 * of specific filesystem implementations.
286 */
287 if (ap->a_events & ~POLLSTANDARD)
288 return (POLLNVAL);
289
290 return (ap->a_events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
291}
292
293/*
294 * Implement poll for local filesystems that support it.
295 */
296int
297vop_stdpoll(ap)
298 struct vop_poll_args /* {
299 struct vnode *a_vp;
300 int a_events;
301 struct ucred *a_cred;
302 struct proc *a_p;
303 } */ *ap;
304{
305 if ((ap->a_events & ~POLLSTANDARD) == 0)
306 return (ap->a_events & (POLLRDNORM|POLLWRNORM));
307 return (vn_pollrecord(ap->a_vp, ap->a_p, ap->a_events));
308}
309
310int
311vop_stdbwrite(ap)
312 struct vop_bwrite_args *ap;
313{
314 return (bwrite(ap->a_bp));
315}
316
317/*
318 * Stubs to use when there is no locking to be done on the underlying object.
319 * A minimal shared lock is necessary to ensure that the underlying object
320 * is not revoked while an operation is in progress. So, an active shared
321 * count is maintained in an auxillary vnode lock structure.
322 */
323int
324vop_sharedlock(ap)
325 struct vop_lock_args /* {
326 struct vnode *a_vp;
327 int a_flags;
328 struct proc *a_p;
329 } */ *ap;
330{
331 /*
332 * This code cannot be used until all the non-locking filesystems
333 * (notably NFS) are converted to properly lock and release nodes.
334 * Also, certain vnode operations change the locking state within
335 * the operation (create, mknod, remove, link, rename, mkdir, rmdir,
336 * and symlink). Ideally these operations should not change the
337 * lock state, but should be changed to let the caller of the
338 * function unlock them. Otherwise all intermediate vnode layers
339 * (such as union, umapfs, etc) must catch these functions to do
340 * the necessary locking at their layer. Note that the inactive
341 * and lookup operations also change their lock state, but this
342 * cannot be avoided, so these two operations will always need
343 * to be handled in intermediate layers.
344 */
345 struct vnode *vp = ap->a_vp;
346 int vnflags, flags = ap->a_flags;
347
348 if (vp->v_vnlock == NULL) {
349 if ((flags & LK_TYPE_MASK) == LK_DRAIN)
350 return (0);
351 MALLOC(vp->v_vnlock, struct lock *, sizeof(struct lock),
352 M_VNODE, M_WAITOK);
353 lockinit(vp->v_vnlock, PVFS, "vnlock", 0, LK_NOPAUSE);
354 }
355 switch (flags & LK_TYPE_MASK) {
356 case LK_DRAIN:
357 vnflags = LK_DRAIN;
358 break;
359 case LK_EXCLUSIVE:
360#ifdef DEBUG_VFS_LOCKS
361 /*
362 * Normally, we use shared locks here, but that confuses
363 * the locking assertions.
364 */
365 vnflags = LK_EXCLUSIVE;
366 break;
367#endif
368 case LK_SHARED:
369 vnflags = LK_SHARED;
370 break;
371 case LK_UPGRADE:
372 case LK_EXCLUPGRADE:
373 case LK_DOWNGRADE:
374 return (0);
375 case LK_RELEASE:
376 default:
377 panic("vop_sharedlock: bad operation %d", flags & LK_TYPE_MASK);
378 }
379 if (flags & LK_INTERLOCK)
380 vnflags |= LK_INTERLOCK;
381#ifndef DEBUG_LOCKS
382 return (lockmgr(vp->v_vnlock, vnflags, &vp->v_interlock, ap->a_p));
383#else
384 return (debuglockmgr(vp->v_vnlock, vnflags, &vp->v_interlock, ap->a_p,
385 "vop_sharedlock", vp->filename, vp->line));
386#endif
387}
388
389/*
390 * Stubs to use when there is no locking to be done on the underlying object.
391 * A minimal shared lock is necessary to ensure that the underlying object
392 * is not revoked while an operation is in progress. So, an active shared
393 * count is maintained in an auxillary vnode lock structure.
394 */
395int
396vop_nolock(ap)
397 struct vop_lock_args /* {
398 struct vnode *a_vp;
399 int a_flags;
400 struct proc *a_p;
401 } */ *ap;
402{
403#ifdef notyet
404 /*
405 * This code cannot be used until all the non-locking filesystems
406 * (notably NFS) are converted to properly lock and release nodes.
407 * Also, certain vnode operations change the locking state within
408 * the operation (create, mknod, remove, link, rename, mkdir, rmdir,
409 * and symlink). Ideally these operations should not change the
410 * lock state, but should be changed to let the caller of the
411 * function unlock them. Otherwise all intermediate vnode layers
412 * (such as union, umapfs, etc) must catch these functions to do
413 * the necessary locking at their layer. Note that the inactive
414 * and lookup operations also change their lock state, but this
415 * cannot be avoided, so these two operations will always need
416 * to be handled in intermediate layers.
417 */
418 struct vnode *vp = ap->a_vp;
419 int vnflags, flags = ap->a_flags;
420
421 if (vp->v_vnlock == NULL) {
422 if ((flags & LK_TYPE_MASK) == LK_DRAIN)
423 return (0);
424 MALLOC(vp->v_vnlock, struct lock *, sizeof(struct lock),
425 M_VNODE, M_WAITOK);
426 lockinit(vp->v_vnlock, PVFS, "vnlock", 0, LK_NOPAUSE);
427 }
428 switch (flags & LK_TYPE_MASK) {
429 case LK_DRAIN:
430 vnflags = LK_DRAIN;
431 break;
432 case LK_EXCLUSIVE:
433 case LK_SHARED:
434 vnflags = LK_SHARED;
435 break;
436 case LK_UPGRADE:
437 case LK_EXCLUPGRADE:
438 case LK_DOWNGRADE:
439 return (0);
440 case LK_RELEASE:
441 default:
442 panic("vop_nolock: bad operation %d", flags & LK_TYPE_MASK);
443 }
444 if (flags & LK_INTERLOCK)
445 vnflags |= LK_INTERLOCK;
446 return(lockmgr(vp->v_vnlock, vnflags, &vp->v_interlock, ap->a_p));
447#else /* for now */
448 /*
449 * Since we are not using the lock manager, we must clear
450 * the interlock here.
451 */
452 if (ap->a_flags & LK_INTERLOCK)
453 simple_unlock(&ap->a_vp->v_interlock);
454 return (0);
455#endif
456}
457
458/*
459 * Do the inverse of vop_nolock, handling the interlock in a compatible way.
460 */
461int
462vop_nounlock(ap)
463 struct vop_unlock_args /* {
464 struct vnode *a_vp;
465 int a_flags;
466 struct proc *a_p;
467 } */ *ap;
468{
469 struct vnode *vp = ap->a_vp;
470
471 if (vp->v_vnlock == NULL) {
472 if (ap->a_flags & LK_INTERLOCK)
473 simple_unlock(&ap->a_vp->v_interlock);
474 return (0);
475 }
476 return (lockmgr(vp->v_vnlock, LK_RELEASE | ap->a_flags,
477 &ap->a_vp->v_interlock, ap->a_p));
478}
479
480/*
481 * Return whether or not the node is in use.
482 */
483int
484vop_noislocked(ap)
485 struct vop_islocked_args /* {
486 struct vnode *a_vp;
487 } */ *ap;
488{
489 struct vnode *vp = ap->a_vp;
490
491 if (vp->v_vnlock == NULL)
492 return (0);
493 return (lockstatus(vp->v_vnlock));
494}
495
496/*
497 * vfs default ops
498 * used to fill the vfs fucntion table to get reasonable default return values.
499 */
500int
501vfs_stdmount (mp, path, data, ndp, p)
502 struct mount *mp;
503 char *path;
504 caddr_t data;
505 struct nameidata *ndp;
506 struct proc *p;
507{
508 return (0);
509}
510
511int
512vfs_stdunmount (mp, mntflags, p)
513 struct mount *mp;
514 int mntflags;
515 struct proc *p;
516{
517 return (0);
518}
519
520int
521vfs_stdroot (mp, vpp)
522 struct mount *mp;
523 struct vnode **vpp;
524{
525 return (EOPNOTSUPP);
526}
527
528int
529vfs_stdstatfs (mp, sbp, p)
530 struct mount *mp;
531 struct statfs *sbp;
532 struct proc *p;
533{
534 return (EOPNOTSUPP);
535}
536
537int
538vfs_stdvptofh (vp, fhp)
539 struct vnode *vp;
540 struct fid *fhp;
541{
542 return (EOPNOTSUPP);
543}
544
545int
546vfs_stdstart (mp, flags, p)
547 struct mount *mp;
548 int flags;
549 struct proc *p;
550{
551 return (0);
552}
553
554int
555vfs_stdquotactl (mp, cmds, uid, arg, p)
556 struct mount *mp;
557 int cmds;
558 uid_t uid;
559 caddr_t arg;
560 struct proc *p;
561{
562 return (EOPNOTSUPP);
563}
564
565int
566vfs_stdsync (mp, waitfor, cred, p)
567 struct mount *mp;
568 int waitfor;
569 struct ucred *cred;
570 struct proc *p;
571{
572 return (0);
573}
574
575int
576vfs_stdvget (mp, ino, vpp)
577 struct mount *mp;
578 ino_t ino;
579 struct vnode **vpp;
580{
581 return (EOPNOTSUPP);
582}
583
584int
585vfs_stdfhtovp (mp, fhp, vpp)
586 struct mount *mp;
587 struct fid *fhp;
588 struct vnode **vpp;
589{
590 return (EOPNOTSUPP);
591}
592
593int
594vfs_stdcheckexp (mp, nam, extflagsp, credanonp)
595 struct mount *mp;
596 struct sockaddr *nam;
597 int *extflagsp;
598 struct ucred **credanonp;
599{
600 return (EOPNOTSUPP);
601}
602
603int
604vfs_stdinit (vfsp)
605 struct vfsconf *vfsp;
606{
607 return (0);
608}
609
610int
611vfs_stduninit (vfsp)
612 struct vfsconf *vfsp;
613{
614 return(0);
615}
616
617/* end of vfs default ops */