1 /*-
2 * SPDX-License-Identifier: BSD-3-Clause
3 *
4 * Copyright (c) 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * This code is derived from software contributed
8 * to Berkeley by John Heidemann of the UCLA Ficus project.
9 *
10 * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/bio.h>
43 #include <sys/buf.h>
44 #include <sys/conf.h>
45 #include <sys/event.h>
46 #include <sys/kernel.h>
47 #include <sys/limits.h>
48 #include <sys/lock.h>
49 #include <sys/lockf.h>
50 #include <sys/malloc.h>
51 #include <sys/mount.h>
52 #include <sys/namei.h>
53 #include <sys/rwlock.h>
54 #include <sys/fcntl.h>
55 #include <sys/unistd.h>
56 #include <sys/vnode.h>
57 #include <sys/dirent.h>
58 #include <sys/poll.h>
59
60 #include <security/mac/mac_framework.h>
61
62 #include <vm/vm.h>
63 #include <vm/vm_object.h>
64 #include <vm/vm_extern.h>
65 #include <vm/pmap.h>
66 #include <vm/vm_map.h>
67 #include <vm/vm_page.h>
68 #include <vm/vm_pager.h>
69 #include <vm/vnode_pager.h>
70
71 static int vop_nolookup(struct vop_lookup_args *);
72 static int vop_norename(struct vop_rename_args *);
73 static int vop_nostrategy(struct vop_strategy_args *);
74 static int get_next_dirent(struct vnode *vp, struct dirent **dpp,
75 char *dirbuf, int dirbuflen, off_t *off,
76 char **cpos, int *len, int *eofflag,
77 struct thread *td);
78 static int dirent_exists(struct vnode *vp, const char *dirname,
79 struct thread *td);
80
81 #define DIRENT_MINSIZE (sizeof(struct dirent) - (MAXNAMLEN+1) + 4)
82
83 static int vop_stdis_text(struct vop_is_text_args *ap);
84 static int vop_stdunset_text(struct vop_unset_text_args *ap);
85 static int vop_stdadd_writecount(struct vop_add_writecount_args *ap);
86 static int vop_stdfdatasync(struct vop_fdatasync_args *ap);
87 static int vop_stdgetpages_async(struct vop_getpages_async_args *ap);
88
89 /*
90 * This vnode table stores what we want to do if the filesystem doesn't
91 * implement a particular VOP.
92 *
93 * If there is no specific entry here, we will return EOPNOTSUPP.
94 *
95 * Note that every filesystem has to implement either vop_access
96 * or vop_accessx; failing to do so will result in immediate crash
97 * due to stack overflow, as vop_stdaccess() calls vop_stdaccessx(),
98 * which calls vop_stdaccess() etc.
99 */
100
101 struct vop_vector default_vnodeops = {
102 .vop_default = NULL,
103 .vop_bypass = VOP_EOPNOTSUPP,
104
105 .vop_access = vop_stdaccess,
106 .vop_accessx = vop_stdaccessx,
107 .vop_advise = vop_stdadvise,
108 .vop_advlock = vop_stdadvlock,
109 .vop_advlockasync = vop_stdadvlockasync,
110 .vop_advlockpurge = vop_stdadvlockpurge,
111 .vop_allocate = vop_stdallocate,
112 .vop_bmap = vop_stdbmap,
113 .vop_close = VOP_NULL,
114 .vop_fsync = VOP_NULL,
115 .vop_fdatasync = vop_stdfdatasync,
116 .vop_getpages = vop_stdgetpages,
117 .vop_getpages_async = vop_stdgetpages_async,
118 .vop_getwritemount = vop_stdgetwritemount,
119 .vop_inactive = VOP_NULL,
120 .vop_ioctl = VOP_ENOTTY,
121 .vop_kqfilter = vop_stdkqfilter,
122 .vop_islocked = vop_stdislocked,
123 .vop_lock1 = vop_stdlock,
124 .vop_lookup = vop_nolookup,
125 .vop_open = VOP_NULL,
126 .vop_pathconf = VOP_EINVAL,
127 .vop_poll = vop_nopoll,
128 .vop_putpages = vop_stdputpages,
129 .vop_readlink = VOP_EINVAL,
130 .vop_rename = vop_norename,
131 .vop_revoke = VOP_PANIC,
132 .vop_strategy = vop_nostrategy,
133 .vop_unlock = vop_stdunlock,
134 .vop_vptocnp = vop_stdvptocnp,
135 .vop_vptofh = vop_stdvptofh,
136 .vop_unp_bind = vop_stdunp_bind,
137 .vop_unp_connect = vop_stdunp_connect,
138 .vop_unp_detach = vop_stdunp_detach,
139 .vop_is_text = vop_stdis_text,
140 .vop_set_text = vop_stdset_text,
141 .vop_unset_text = vop_stdunset_text,
142 .vop_add_writecount = vop_stdadd_writecount,
143 };
144
145 /*
146 * Series of placeholder functions for various error returns for
147 * VOPs.
148 */
149
150 int
vop_eopnotsupp(struct vop_generic_args * ap)151 vop_eopnotsupp(struct vop_generic_args *ap)
152 {
153 /*
154 printf("vop_notsupp[%s]\n", ap->a_desc->vdesc_name);
155 */
156
157 return (EOPNOTSUPP);
158 }
159
160 int
vop_ebadf(struct vop_generic_args * ap)161 vop_ebadf(struct vop_generic_args *ap)
162 {
163
164 return (EBADF);
165 }
166
167 int
vop_enotty(struct vop_generic_args * ap)168 vop_enotty(struct vop_generic_args *ap)
169 {
170
171 return (ENOTTY);
172 }
173
174 int
vop_einval(struct vop_generic_args * ap)175 vop_einval(struct vop_generic_args *ap)
176 {
177
178 return (EINVAL);
179 }
180
181 int
vop_enoent(struct vop_generic_args * ap)182 vop_enoent(struct vop_generic_args *ap)
183 {
184
185 return (ENOENT);
186 }
187
188 int
vop_null(struct vop_generic_args * ap)189 vop_null(struct vop_generic_args *ap)
190 {
191
192 return (0);
193 }
194
195 /*
196 * Helper function to panic on some bad VOPs in some filesystems.
197 */
198 int
vop_panic(struct vop_generic_args * ap)199 vop_panic(struct vop_generic_args *ap)
200 {
201
202 panic("filesystem goof: vop_panic[%s]", ap->a_desc->vdesc_name);
203 }
204
205 /*
206 * vop_std<something> and vop_no<something> are default functions for use by
207 * filesystems that need the "default reasonable" implementation for a
208 * particular operation.
209 *
210 * The documentation for the operations they implement exists (if it exists)
211 * in the VOP_<SOMETHING>(9) manpage (all uppercase).
212 */
213
214 /*
215 * Default vop for filesystems that do not support name lookup
216 */
217 static int
vop_nolookup(ap)218 vop_nolookup(ap)
219 struct vop_lookup_args /* {
220 struct vnode *a_dvp;
221 struct vnode **a_vpp;
222 struct componentname *a_cnp;
223 } */ *ap;
224 {
225
226 *ap->a_vpp = NULL;
227 return (ENOTDIR);
228 }
229
230 /*
231 * vop_norename:
232 *
233 * Handle unlock and reference counting for arguments of vop_rename
234 * for filesystems that do not implement rename operation.
235 */
236 static int
vop_norename(struct vop_rename_args * ap)237 vop_norename(struct vop_rename_args *ap)
238 {
239
240 vop_rename_fail(ap);
241 return (EOPNOTSUPP);
242 }
243
244 /*
245 * vop_nostrategy:
246 *
247 * Strategy routine for VFS devices that have none.
248 *
249 * BIO_ERROR and B_INVAL must be cleared prior to calling any strategy
250 * routine. Typically this is done for a BIO_READ strategy call.
251 * Typically B_INVAL is assumed to already be clear prior to a write
252 * and should not be cleared manually unless you just made the buffer
253 * invalid. BIO_ERROR should be cleared either way.
254 */
255
256 static int
vop_nostrategy(struct vop_strategy_args * ap)257 vop_nostrategy (struct vop_strategy_args *ap)
258 {
259 printf("No strategy for buffer at %p\n", ap->a_bp);
260 vn_printf(ap->a_vp, "vnode ");
261 ap->a_bp->b_ioflags |= BIO_ERROR;
262 ap->a_bp->b_error = EOPNOTSUPP;
263 bufdone(ap->a_bp);
264 return (EOPNOTSUPP);
265 }
266
267 static int
get_next_dirent(struct vnode * vp,struct dirent ** dpp,char * dirbuf,int dirbuflen,off_t * off,char ** cpos,int * len,int * eofflag,struct thread * td)268 get_next_dirent(struct vnode *vp, struct dirent **dpp, char *dirbuf,
269 int dirbuflen, off_t *off, char **cpos, int *len,
270 int *eofflag, struct thread *td)
271 {
272 int error, reclen;
273 struct uio uio;
274 struct iovec iov;
275 struct dirent *dp;
276
277 KASSERT(VOP_ISLOCKED(vp), ("vp %p is not locked", vp));
278 KASSERT(vp->v_type == VDIR, ("vp %p is not a directory", vp));
279
280 if (*len == 0) {
281 iov.iov_base = dirbuf;
282 iov.iov_len = dirbuflen;
283
284 uio.uio_iov = &iov;
285 uio.uio_iovcnt = 1;
286 uio.uio_offset = *off;
287 uio.uio_resid = dirbuflen;
288 uio.uio_segflg = UIO_SYSSPACE;
289 uio.uio_rw = UIO_READ;
290 uio.uio_td = td;
291
292 *eofflag = 0;
293
294 #ifdef MAC
295 error = mac_vnode_check_readdir(td->td_ucred, vp);
296 if (error == 0)
297 #endif
298 error = VOP_READDIR(vp, &uio, td->td_ucred, eofflag,
299 NULL, NULL);
300 if (error)
301 return (error);
302
303 *off = uio.uio_offset;
304
305 *cpos = dirbuf;
306 *len = (dirbuflen - uio.uio_resid);
307
308 if (*len == 0)
309 return (ENOENT);
310 }
311
312 dp = (struct dirent *)(*cpos);
313 reclen = dp->d_reclen;
314 *dpp = dp;
315
316 /* check for malformed directory.. */
317 if (reclen < DIRENT_MINSIZE)
318 return (EINVAL);
319
320 *cpos += reclen;
321 *len -= reclen;
322
323 return (0);
324 }
325
326 /*
327 * Check if a named file exists in a given directory vnode.
328 */
329 static int
dirent_exists(struct vnode * vp,const char * dirname,struct thread * td)330 dirent_exists(struct vnode *vp, const char *dirname, struct thread *td)
331 {
332 char *dirbuf, *cpos;
333 int error, eofflag, dirbuflen, len, found;
334 off_t off;
335 struct dirent *dp;
336 struct vattr va;
337
338 KASSERT(VOP_ISLOCKED(vp), ("vp %p is not locked", vp));
339 KASSERT(vp->v_type == VDIR, ("vp %p is not a directory", vp));
340
341 found = 0;
342
343 error = VOP_GETATTR(vp, &va, td->td_ucred);
344 if (error)
345 return (found);
346
347 dirbuflen = DEV_BSIZE;
348 if (dirbuflen < va.va_blocksize)
349 dirbuflen = va.va_blocksize;
350 dirbuf = (char *)malloc(dirbuflen, M_TEMP, M_WAITOK);
351
352 off = 0;
353 len = 0;
354 do {
355 error = get_next_dirent(vp, &dp, dirbuf, dirbuflen, &off,
356 &cpos, &len, &eofflag, td);
357 if (error)
358 goto out;
359
360 if (dp->d_type != DT_WHT && dp->d_fileno != 0 &&
361 strcmp(dp->d_name, dirname) == 0) {
362 found = 1;
363 goto out;
364 }
365 } while (len > 0 || !eofflag);
366
367 out:
368 free(dirbuf, M_TEMP);
369 return (found);
370 }
371
372 int
vop_stdaccess(struct vop_access_args * ap)373 vop_stdaccess(struct vop_access_args *ap)
374 {
375
376 KASSERT((ap->a_accmode & ~(VEXEC | VWRITE | VREAD | VADMIN |
377 VAPPEND)) == 0, ("invalid bit in accmode"));
378
379 return (VOP_ACCESSX(ap->a_vp, ap->a_accmode, ap->a_cred, ap->a_td));
380 }
381
382 int
vop_stdaccessx(struct vop_accessx_args * ap)383 vop_stdaccessx(struct vop_accessx_args *ap)
384 {
385 int error;
386 accmode_t accmode = ap->a_accmode;
387
388 error = vfs_unixify_accmode(&accmode);
389 if (error != 0)
390 return (error);
391
392 if (accmode == 0)
393 return (0);
394
395 return (VOP_ACCESS(ap->a_vp, accmode, ap->a_cred, ap->a_td));
396 }
397
398 /*
399 * Advisory record locking support
400 */
401 int
vop_stdadvlock(struct vop_advlock_args * ap)402 vop_stdadvlock(struct vop_advlock_args *ap)
403 {
404 struct vnode *vp;
405 struct vattr vattr;
406 int error;
407
408 vp = ap->a_vp;
409 if (ap->a_fl->l_whence == SEEK_END) {
410 /*
411 * The NFSv4 server must avoid doing a vn_lock() here, since it
412 * can deadlock the nfsd threads, due to a LOR. Fortunately
413 * the NFSv4 server always uses SEEK_SET and this code is
414 * only required for the SEEK_END case.
415 */
416 vn_lock(vp, LK_SHARED | LK_RETRY);
417 error = VOP_GETATTR(vp, &vattr, curthread->td_ucred);
418 VOP_UNLOCK(vp, 0);
419 if (error)
420 return (error);
421 } else
422 vattr.va_size = 0;
423
424 return (lf_advlock(ap, &(vp->v_lockf), vattr.va_size));
425 }
426
427 int
vop_stdadvlockasync(struct vop_advlockasync_args * ap)428 vop_stdadvlockasync(struct vop_advlockasync_args *ap)
429 {
430 struct vnode *vp;
431 struct vattr vattr;
432 int error;
433
434 vp = ap->a_vp;
435 if (ap->a_fl->l_whence == SEEK_END) {
436 /* The size argument is only needed for SEEK_END. */
437 vn_lock(vp, LK_SHARED | LK_RETRY);
438 error = VOP_GETATTR(vp, &vattr, curthread->td_ucred);
439 VOP_UNLOCK(vp, 0);
440 if (error)
441 return (error);
442 } else
443 vattr.va_size = 0;
444
445 return (lf_advlockasync(ap, &(vp->v_lockf), vattr.va_size));
446 }
447
448 int
vop_stdadvlockpurge(struct vop_advlockpurge_args * ap)449 vop_stdadvlockpurge(struct vop_advlockpurge_args *ap)
450 {
451 struct vnode *vp;
452
453 vp = ap->a_vp;
454 lf_purgelocks(vp, &vp->v_lockf);
455 return (0);
456 }
457
458 /*
459 * vop_stdpathconf:
460 *
461 * Standard implementation of POSIX pathconf, to get information about limits
462 * for a filesystem.
463 * Override per filesystem for the case where the filesystem has smaller
464 * limits.
465 */
466 int
vop_stdpathconf(ap)467 vop_stdpathconf(ap)
468 struct vop_pathconf_args /* {
469 struct vnode *a_vp;
470 int a_name;
471 int *a_retval;
472 } */ *ap;
473 {
474
475 switch (ap->a_name) {
476 case _PC_ASYNC_IO:
477 *ap->a_retval = _POSIX_ASYNCHRONOUS_IO;
478 return (0);
479 case _PC_PATH_MAX:
480 *ap->a_retval = PATH_MAX;
481 return (0);
482 case _PC_ACL_EXTENDED:
483 case _PC_ACL_NFS4:
484 case _PC_CAP_PRESENT:
485 case _PC_INF_PRESENT:
486 case _PC_MAC_PRESENT:
487 *ap->a_retval = 0;
488 return (0);
489 default:
490 return (EINVAL);
491 }
492 /* NOTREACHED */
493 }
494
495 /*
496 * Standard lock, unlock and islocked functions.
497 */
498 int
vop_stdlock(ap)499 vop_stdlock(ap)
500 struct vop_lock1_args /* {
501 struct vnode *a_vp;
502 int a_flags;
503 char *file;
504 int line;
505 } */ *ap;
506 {
507 struct vnode *vp = ap->a_vp;
508 struct mtx *ilk;
509
510 ilk = VI_MTX(vp);
511 return (lockmgr_lock_fast_path(vp->v_vnlock, ap->a_flags,
512 &ilk->lock_object, ap->a_file, ap->a_line));
513 }
514
515 /* See above. */
516 int
vop_stdunlock(ap)517 vop_stdunlock(ap)
518 struct vop_unlock_args /* {
519 struct vnode *a_vp;
520 int a_flags;
521 } */ *ap;
522 {
523 struct vnode *vp = ap->a_vp;
524 struct mtx *ilk;
525
526 ilk = VI_MTX(vp);
527 return (lockmgr_unlock_fast_path(vp->v_vnlock, ap->a_flags,
528 &ilk->lock_object));
529 }
530
531 /* See above. */
532 int
vop_stdislocked(ap)533 vop_stdislocked(ap)
534 struct vop_islocked_args /* {
535 struct vnode *a_vp;
536 } */ *ap;
537 {
538
539 return (lockstatus(ap->a_vp->v_vnlock));
540 }
541
542 /*
543 * Return true for select/poll.
544 */
545 int
vop_nopoll(ap)546 vop_nopoll(ap)
547 struct vop_poll_args /* {
548 struct vnode *a_vp;
549 int a_events;
550 struct ucred *a_cred;
551 struct thread *a_td;
552 } */ *ap;
553 {
554
555 return (poll_no_poll(ap->a_events));
556 }
557
558 /*
559 * Implement poll for local filesystems that support it.
560 */
561 int
vop_stdpoll(ap)562 vop_stdpoll(ap)
563 struct vop_poll_args /* {
564 struct vnode *a_vp;
565 int a_events;
566 struct ucred *a_cred;
567 struct thread *a_td;
568 } */ *ap;
569 {
570 if (ap->a_events & ~POLLSTANDARD)
571 return (vn_pollrecord(ap->a_vp, ap->a_td, ap->a_events));
572 return (ap->a_events & (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM));
573 }
574
575 /*
576 * Return our mount point, as we will take charge of the writes.
577 */
578 int
vop_stdgetwritemount(ap)579 vop_stdgetwritemount(ap)
580 struct vop_getwritemount_args /* {
581 struct vnode *a_vp;
582 struct mount **a_mpp;
583 } */ *ap;
584 {
585 struct mount *mp;
586
587 /*
588 * XXX Since this is called unlocked we may be recycled while
589 * attempting to ref the mount. If this is the case or mountpoint
590 * will be set to NULL. We only have to prevent this call from
591 * returning with a ref to an incorrect mountpoint. It is not
592 * harmful to return with a ref to our previous mountpoint.
593 */
594 mp = ap->a_vp->v_mount;
595 if (mp != NULL) {
596 vfs_ref(mp);
597 if (mp != ap->a_vp->v_mount) {
598 vfs_rel(mp);
599 mp = NULL;
600 }
601 }
602 *(ap->a_mpp) = mp;
603 return (0);
604 }
605
606 /*
607 * If the file system doesn't implement VOP_BMAP, then return sensible defaults:
608 * - Return the vnode's bufobj instead of any underlying device's bufobj
609 * - Calculate the physical block number as if there were equal size
610 * consecutive blocks, but
611 * - Report no contiguous runs of blocks.
612 */
613 int
vop_stdbmap(ap)614 vop_stdbmap(ap)
615 struct vop_bmap_args /* {
616 struct vnode *a_vp;
617 daddr_t a_bn;
618 struct bufobj **a_bop;
619 daddr_t *a_bnp;
620 int *a_runp;
621 int *a_runb;
622 } */ *ap;
623 {
624
625 if (ap->a_bop != NULL)
626 *ap->a_bop = &ap->a_vp->v_bufobj;
627 if (ap->a_bnp != NULL)
628 *ap->a_bnp = ap->a_bn * btodb(ap->a_vp->v_mount->mnt_stat.f_iosize);
629 if (ap->a_runp != NULL)
630 *ap->a_runp = 0;
631 if (ap->a_runb != NULL)
632 *ap->a_runb = 0;
633 return (0);
634 }
635
636 int
vop_stdfsync(ap)637 vop_stdfsync(ap)
638 struct vop_fsync_args /* {
639 struct vnode *a_vp;
640 int a_waitfor;
641 struct thread *a_td;
642 } */ *ap;
643 {
644
645 return (vn_fsync_buf(ap->a_vp, ap->a_waitfor));
646 }
647
648 static int
vop_stdfdatasync(struct vop_fdatasync_args * ap)649 vop_stdfdatasync(struct vop_fdatasync_args *ap)
650 {
651
652 return (VOP_FSYNC(ap->a_vp, MNT_WAIT, ap->a_td));
653 }
654
655 int
vop_stdfdatasync_buf(struct vop_fdatasync_args * ap)656 vop_stdfdatasync_buf(struct vop_fdatasync_args *ap)
657 {
658
659 return (vn_fsync_buf(ap->a_vp, MNT_WAIT));
660 }
661
662 /* XXX Needs good comment and more info in the manpage (VOP_GETPAGES(9)). */
663 int
vop_stdgetpages(ap)664 vop_stdgetpages(ap)
665 struct vop_getpages_args /* {
666 struct vnode *a_vp;
667 vm_page_t *a_m;
668 int a_count;
669 int *a_rbehind;
670 int *a_rahead;
671 } */ *ap;
672 {
673
674 return vnode_pager_generic_getpages(ap->a_vp, ap->a_m,
675 ap->a_count, ap->a_rbehind, ap->a_rahead, NULL, NULL);
676 }
677
678 static int
vop_stdgetpages_async(struct vop_getpages_async_args * ap)679 vop_stdgetpages_async(struct vop_getpages_async_args *ap)
680 {
681 int error;
682
683 error = VOP_GETPAGES(ap->a_vp, ap->a_m, ap->a_count, ap->a_rbehind,
684 ap->a_rahead);
685 ap->a_iodone(ap->a_arg, ap->a_m, ap->a_count, error);
686 return (error);
687 }
688
689 int
vop_stdkqfilter(struct vop_kqfilter_args * ap)690 vop_stdkqfilter(struct vop_kqfilter_args *ap)
691 {
692 return vfs_kqfilter(ap);
693 }
694
695 /* XXX Needs good comment and more info in the manpage (VOP_PUTPAGES(9)). */
696 int
vop_stdputpages(ap)697 vop_stdputpages(ap)
698 struct vop_putpages_args /* {
699 struct vnode *a_vp;
700 vm_page_t *a_m;
701 int a_count;
702 int a_sync;
703 int *a_rtvals;
704 } */ *ap;
705 {
706
707 return vnode_pager_generic_putpages(ap->a_vp, ap->a_m, ap->a_count,
708 ap->a_sync, ap->a_rtvals);
709 }
710
711 int
vop_stdvptofh(struct vop_vptofh_args * ap)712 vop_stdvptofh(struct vop_vptofh_args *ap)
713 {
714 return (EOPNOTSUPP);
715 }
716
717 int
vop_stdvptocnp(struct vop_vptocnp_args * ap)718 vop_stdvptocnp(struct vop_vptocnp_args *ap)
719 {
720 struct vnode *vp = ap->a_vp;
721 struct vnode **dvp = ap->a_vpp;
722 struct ucred *cred = ap->a_cred;
723 char *buf = ap->a_buf;
724 int *buflen = ap->a_buflen;
725 char *dirbuf, *cpos;
726 int i, error, eofflag, dirbuflen, flags, locked, len, covered;
727 off_t off;
728 ino_t fileno;
729 struct vattr va;
730 struct nameidata nd;
731 struct thread *td;
732 struct dirent *dp;
733 struct vnode *mvp;
734
735 i = *buflen;
736 error = 0;
737 covered = 0;
738 td = curthread;
739
740 if (vp->v_type != VDIR)
741 return (ENOENT);
742
743 error = VOP_GETATTR(vp, &va, cred);
744 if (error)
745 return (error);
746
747 VREF(vp);
748 locked = VOP_ISLOCKED(vp);
749 VOP_UNLOCK(vp, 0);
750 NDINIT_ATVP(&nd, LOOKUP, FOLLOW | LOCKSHARED | LOCKLEAF, UIO_SYSSPACE,
751 "..", vp, td);
752 flags = FREAD;
753 error = vn_open_cred(&nd, &flags, 0, VN_OPEN_NOAUDIT, cred, NULL);
754 if (error) {
755 vn_lock(vp, locked | LK_RETRY);
756 return (error);
757 }
758 NDFREE(&nd, NDF_ONLY_PNBUF);
759
760 mvp = *dvp = nd.ni_vp;
761
762 if (vp->v_mount != (*dvp)->v_mount &&
763 ((*dvp)->v_vflag & VV_ROOT) &&
764 ((*dvp)->v_mount->mnt_flag & MNT_UNION)) {
765 *dvp = (*dvp)->v_mount->mnt_vnodecovered;
766 VREF(mvp);
767 VOP_UNLOCK(mvp, 0);
768 vn_close(mvp, FREAD, cred, td);
769 VREF(*dvp);
770 vn_lock(*dvp, LK_SHARED | LK_RETRY);
771 covered = 1;
772 }
773
774 fileno = va.va_fileid;
775
776 dirbuflen = DEV_BSIZE;
777 if (dirbuflen < va.va_blocksize)
778 dirbuflen = va.va_blocksize;
779 dirbuf = (char *)malloc(dirbuflen, M_TEMP, M_WAITOK);
780
781 if ((*dvp)->v_type != VDIR) {
782 error = ENOENT;
783 goto out;
784 }
785
786 off = 0;
787 len = 0;
788 do {
789 /* call VOP_READDIR of parent */
790 error = get_next_dirent(*dvp, &dp, dirbuf, dirbuflen, &off,
791 &cpos, &len, &eofflag, td);
792 if (error)
793 goto out;
794
795 if ((dp->d_type != DT_WHT) &&
796 (dp->d_fileno == fileno)) {
797 if (covered) {
798 VOP_UNLOCK(*dvp, 0);
799 vn_lock(mvp, LK_SHARED | LK_RETRY);
800 if (dirent_exists(mvp, dp->d_name, td)) {
801 error = ENOENT;
802 VOP_UNLOCK(mvp, 0);
803 vn_lock(*dvp, LK_SHARED | LK_RETRY);
804 goto out;
805 }
806 VOP_UNLOCK(mvp, 0);
807 vn_lock(*dvp, LK_SHARED | LK_RETRY);
808 }
809 i -= dp->d_namlen;
810
811 if (i < 0) {
812 error = ENOMEM;
813 goto out;
814 }
815 if (dp->d_namlen == 1 && dp->d_name[0] == '.') {
816 error = ENOENT;
817 } else {
818 bcopy(dp->d_name, buf + i, dp->d_namlen);
819 error = 0;
820 }
821 goto out;
822 }
823 } while (len > 0 || !eofflag);
824 error = ENOENT;
825
826 out:
827 free(dirbuf, M_TEMP);
828 if (!error) {
829 *buflen = i;
830 vref(*dvp);
831 }
832 if (covered) {
833 vput(*dvp);
834 vrele(mvp);
835 } else {
836 VOP_UNLOCK(mvp, 0);
837 vn_close(mvp, FREAD, cred, td);
838 }
839 vn_lock(vp, locked | LK_RETRY);
840 return (error);
841 }
842
843 int
vop_stdallocate(struct vop_allocate_args * ap)844 vop_stdallocate(struct vop_allocate_args *ap)
845 {
846 #ifdef __notyet__
847 struct statfs *sfs;
848 off_t maxfilesize = 0;
849 #endif
850 struct iovec aiov;
851 struct vattr vattr, *vap;
852 struct uio auio;
853 off_t fsize, len, cur, offset;
854 uint8_t *buf;
855 struct thread *td;
856 struct vnode *vp;
857 size_t iosize;
858 int error;
859
860 buf = NULL;
861 error = 0;
862 td = curthread;
863 vap = &vattr;
864 vp = ap->a_vp;
865 len = *ap->a_len;
866 offset = *ap->a_offset;
867
868 error = VOP_GETATTR(vp, vap, td->td_ucred);
869 if (error != 0)
870 goto out;
871 fsize = vap->va_size;
872 iosize = vap->va_blocksize;
873 if (iosize == 0)
874 iosize = BLKDEV_IOSIZE;
875 if (iosize > MAXPHYS)
876 iosize = MAXPHYS;
877 buf = malloc(iosize, M_TEMP, M_WAITOK);
878
879 #ifdef __notyet__
880 /*
881 * Check if the filesystem sets f_maxfilesize; if not use
882 * VOP_SETATTR to perform the check.
883 */
884 sfs = malloc(sizeof(struct statfs), M_STATFS, M_WAITOK);
885 error = VFS_STATFS(vp->v_mount, sfs, td);
886 if (error == 0)
887 maxfilesize = sfs->f_maxfilesize;
888 free(sfs, M_STATFS);
889 if (error != 0)
890 goto out;
891 if (maxfilesize) {
892 if (offset > maxfilesize || len > maxfilesize ||
893 offset + len > maxfilesize) {
894 error = EFBIG;
895 goto out;
896 }
897 } else
898 #endif
899 if (offset + len > vap->va_size) {
900 /*
901 * Test offset + len against the filesystem's maxfilesize.
902 */
903 VATTR_NULL(vap);
904 vap->va_size = offset + len;
905 error = VOP_SETATTR(vp, vap, td->td_ucred);
906 if (error != 0)
907 goto out;
908 VATTR_NULL(vap);
909 vap->va_size = fsize;
910 error = VOP_SETATTR(vp, vap, td->td_ucred);
911 if (error != 0)
912 goto out;
913 }
914
915 for (;;) {
916 /*
917 * Read and write back anything below the nominal file
918 * size. There's currently no way outside the filesystem
919 * to know whether this area is sparse or not.
920 */
921 cur = iosize;
922 if ((offset % iosize) != 0)
923 cur -= (offset % iosize);
924 if (cur > len)
925 cur = len;
926 if (offset < fsize) {
927 aiov.iov_base = buf;
928 aiov.iov_len = cur;
929 auio.uio_iov = &aiov;
930 auio.uio_iovcnt = 1;
931 auio.uio_offset = offset;
932 auio.uio_resid = cur;
933 auio.uio_segflg = UIO_SYSSPACE;
934 auio.uio_rw = UIO_READ;
935 auio.uio_td = td;
936 error = VOP_READ(vp, &auio, 0, td->td_ucred);
937 if (error != 0)
938 break;
939 if (auio.uio_resid > 0) {
940 bzero(buf + cur - auio.uio_resid,
941 auio.uio_resid);
942 }
943 } else {
944 bzero(buf, cur);
945 }
946
947 aiov.iov_base = buf;
948 aiov.iov_len = cur;
949 auio.uio_iov = &aiov;
950 auio.uio_iovcnt = 1;
951 auio.uio_offset = offset;
952 auio.uio_resid = cur;
953 auio.uio_segflg = UIO_SYSSPACE;
954 auio.uio_rw = UIO_WRITE;
955 auio.uio_td = td;
956
957 error = VOP_WRITE(vp, &auio, 0, td->td_ucred);
958 if (error != 0)
959 break;
960
961 len -= cur;
962 offset += cur;
963 if (len == 0)
964 break;
965 if (should_yield())
966 break;
967 }
968
969 out:
970 *ap->a_len = len;
971 *ap->a_offset = offset;
972 free(buf, M_TEMP);
973 return (error);
974 }
975
976 int
vop_stdadvise(struct vop_advise_args * ap)977 vop_stdadvise(struct vop_advise_args *ap)
978 {
979 struct vnode *vp;
980 struct bufobj *bo;
981 daddr_t startn, endn;
982 off_t start, end;
983 int bsize, error;
984
985 vp = ap->a_vp;
986 switch (ap->a_advice) {
987 case POSIX_FADV_WILLNEED:
988 /*
989 * Do nothing for now. Filesystems should provide a
990 * custom method which starts an asynchronous read of
991 * the requested region.
992 */
993 error = 0;
994 break;
995 case POSIX_FADV_DONTNEED:
996 error = 0;
997 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
998 if (vp->v_iflag & VI_DOOMED) {
999 VOP_UNLOCK(vp, 0);
1000 break;
1001 }
1002
1003 /*
1004 * Deactivate pages in the specified range from the backing VM
1005 * object. Pages that are resident in the buffer cache will
1006 * remain wired until their corresponding buffers are released
1007 * below.
1008 */
1009 if (vp->v_object != NULL) {
1010 start = trunc_page(ap->a_start);
1011 end = round_page(ap->a_end);
1012 VM_OBJECT_RLOCK(vp->v_object);
1013 vm_object_page_noreuse(vp->v_object, OFF_TO_IDX(start),
1014 OFF_TO_IDX(end));
1015 VM_OBJECT_RUNLOCK(vp->v_object);
1016 }
1017
1018 bo = &vp->v_bufobj;
1019 BO_RLOCK(bo);
1020 bsize = vp->v_bufobj.bo_bsize;
1021 startn = ap->a_start / bsize;
1022 endn = ap->a_end / bsize;
1023 error = bnoreuselist(&bo->bo_clean, bo, startn, endn);
1024 if (error == 0)
1025 error = bnoreuselist(&bo->bo_dirty, bo, startn, endn);
1026 BO_RUNLOCK(bo);
1027 VOP_UNLOCK(vp, 0);
1028 break;
1029 default:
1030 error = EINVAL;
1031 break;
1032 }
1033 return (error);
1034 }
1035
1036 int
vop_stdunp_bind(struct vop_unp_bind_args * ap)1037 vop_stdunp_bind(struct vop_unp_bind_args *ap)
1038 {
1039
1040 ap->a_vp->v_unpcb = ap->a_unpcb;
1041 return (0);
1042 }
1043
1044 int
vop_stdunp_connect(struct vop_unp_connect_args * ap)1045 vop_stdunp_connect(struct vop_unp_connect_args *ap)
1046 {
1047
1048 *ap->a_unpcb = ap->a_vp->v_unpcb;
1049 return (0);
1050 }
1051
1052 int
vop_stdunp_detach(struct vop_unp_detach_args * ap)1053 vop_stdunp_detach(struct vop_unp_detach_args *ap)
1054 {
1055
1056 ap->a_vp->v_unpcb = NULL;
1057 return (0);
1058 }
1059
1060 static int
vop_stdis_text(struct vop_is_text_args * ap)1061 vop_stdis_text(struct vop_is_text_args *ap)
1062 {
1063
1064 return (ap->a_vp->v_writecount < 0);
1065 }
1066
1067 int
vop_stdset_text(struct vop_set_text_args * ap)1068 vop_stdset_text(struct vop_set_text_args *ap)
1069 {
1070 struct vnode *vp;
1071 struct mount *mp;
1072 int error;
1073
1074 vp = ap->a_vp;
1075 VI_LOCK(vp);
1076 if (vp->v_writecount > 0) {
1077 error = ETXTBSY;
1078 } else {
1079 /*
1080 * If requested by fs, keep a use reference to the
1081 * vnode until the last text reference is released.
1082 */
1083 mp = vp->v_mount;
1084 if (mp != NULL && (mp->mnt_kern_flag & MNTK_TEXT_REFS) != 0 &&
1085 vp->v_writecount == 0) {
1086 vp->v_iflag |= VI_TEXT_REF;
1087 vrefl(vp);
1088 }
1089
1090 vp->v_writecount--;
1091 error = 0;
1092 }
1093 VI_UNLOCK(vp);
1094 return (error);
1095 }
1096
1097 static int
vop_stdunset_text(struct vop_unset_text_args * ap)1098 vop_stdunset_text(struct vop_unset_text_args *ap)
1099 {
1100 struct vnode *vp;
1101 int error;
1102 bool last;
1103
1104 vp = ap->a_vp;
1105 last = false;
1106 VI_LOCK(vp);
1107 if (vp->v_writecount < 0) {
1108 if ((vp->v_iflag & VI_TEXT_REF) != 0 &&
1109 vp->v_writecount == -1) {
1110 last = true;
1111 vp->v_iflag &= ~VI_TEXT_REF;
1112 }
1113 vp->v_writecount++;
1114 error = 0;
1115 } else {
1116 error = EINVAL;
1117 }
1118 VI_UNLOCK(vp);
1119 if (last)
1120 vunref(vp);
1121 return (error);
1122 }
1123
1124 static int
vop_stdadd_writecount(struct vop_add_writecount_args * ap)1125 vop_stdadd_writecount(struct vop_add_writecount_args *ap)
1126 {
1127 struct vnode *vp;
1128 int error;
1129
1130 vp = ap->a_vp;
1131 VI_LOCK_FLAGS(vp, MTX_DUPOK);
1132 if (vp->v_writecount < 0) {
1133 error = ETXTBSY;
1134 } else {
1135 VNASSERT(vp->v_writecount + ap->a_inc >= 0, vp,
1136 ("neg writecount increment %d", ap->a_inc));
1137 vp->v_writecount += ap->a_inc;
1138 error = 0;
1139 }
1140 VI_UNLOCK(vp);
1141 return (error);
1142 }
1143
1144 /*
1145 * vfs default ops
1146 * used to fill the vfs function table to get reasonable default return values.
1147 */
1148 int
vfs_stdroot(mp,flags,vpp)1149 vfs_stdroot (mp, flags, vpp)
1150 struct mount *mp;
1151 int flags;
1152 struct vnode **vpp;
1153 {
1154
1155 return (EOPNOTSUPP);
1156 }
1157
1158 int
vfs_stdstatfs(mp,sbp)1159 vfs_stdstatfs (mp, sbp)
1160 struct mount *mp;
1161 struct statfs *sbp;
1162 {
1163
1164 return (EOPNOTSUPP);
1165 }
1166
1167 int
vfs_stdquotactl(mp,cmds,uid,arg)1168 vfs_stdquotactl (mp, cmds, uid, arg)
1169 struct mount *mp;
1170 int cmds;
1171 uid_t uid;
1172 void *arg;
1173 {
1174
1175 return (EOPNOTSUPP);
1176 }
1177
1178 int
vfs_stdsync(mp,waitfor)1179 vfs_stdsync(mp, waitfor)
1180 struct mount *mp;
1181 int waitfor;
1182 {
1183 struct vnode *vp, *mvp;
1184 struct thread *td;
1185 int error, lockreq, allerror = 0;
1186
1187 td = curthread;
1188 lockreq = LK_EXCLUSIVE | LK_INTERLOCK;
1189 if (waitfor != MNT_WAIT)
1190 lockreq |= LK_NOWAIT;
1191 /*
1192 * Force stale buffer cache information to be flushed.
1193 */
1194 loop:
1195 MNT_VNODE_FOREACH_ALL(vp, mp, mvp) {
1196 if (vp->v_bufobj.bo_dirty.bv_cnt == 0) {
1197 VI_UNLOCK(vp);
1198 continue;
1199 }
1200 if ((error = vget(vp, lockreq, td)) != 0) {
1201 if (error == ENOENT) {
1202 MNT_VNODE_FOREACH_ALL_ABORT(mp, mvp);
1203 goto loop;
1204 }
1205 continue;
1206 }
1207 error = VOP_FSYNC(vp, waitfor, td);
1208 if (error)
1209 allerror = error;
1210 vput(vp);
1211 }
1212 return (allerror);
1213 }
1214
1215 int
vfs_stdnosync(mp,waitfor)1216 vfs_stdnosync (mp, waitfor)
1217 struct mount *mp;
1218 int waitfor;
1219 {
1220
1221 return (0);
1222 }
1223
1224 int
vfs_stdvget(mp,ino,flags,vpp)1225 vfs_stdvget (mp, ino, flags, vpp)
1226 struct mount *mp;
1227 ino_t ino;
1228 int flags;
1229 struct vnode **vpp;
1230 {
1231
1232 return (EOPNOTSUPP);
1233 }
1234
1235 int
vfs_stdfhtovp(mp,fhp,flags,vpp)1236 vfs_stdfhtovp (mp, fhp, flags, vpp)
1237 struct mount *mp;
1238 struct fid *fhp;
1239 int flags;
1240 struct vnode **vpp;
1241 {
1242
1243 return (EOPNOTSUPP);
1244 }
1245
1246 int
vfs_stdinit(vfsp)1247 vfs_stdinit (vfsp)
1248 struct vfsconf *vfsp;
1249 {
1250
1251 return (0);
1252 }
1253
1254 int
vfs_stduninit(vfsp)1255 vfs_stduninit (vfsp)
1256 struct vfsconf *vfsp;
1257 {
1258
1259 return(0);
1260 }
1261
1262 int
vfs_stdextattrctl(mp,cmd,filename_vp,attrnamespace,attrname)1263 vfs_stdextattrctl(mp, cmd, filename_vp, attrnamespace, attrname)
1264 struct mount *mp;
1265 int cmd;
1266 struct vnode *filename_vp;
1267 int attrnamespace;
1268 const char *attrname;
1269 {
1270
1271 if (filename_vp != NULL)
1272 VOP_UNLOCK(filename_vp, 0);
1273 return (EOPNOTSUPP);
1274 }
1275
1276 int
vfs_stdsysctl(mp,op,req)1277 vfs_stdsysctl(mp, op, req)
1278 struct mount *mp;
1279 fsctlop_t op;
1280 struct sysctl_req *req;
1281 {
1282
1283 return (EOPNOTSUPP);
1284 }
1285
1286 /* end of vfs default ops */
1287