]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/kern/vfs_vnops.c
MFC r281060, r294060, r294291, r294493, r294284:
[FreeBSD/stable/10.git] / sys / kern / vfs_vnops.c
1 /*-
2  * Copyright (c) 1982, 1986, 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Copyright (c) 2012 Konstantin Belousov <kib@FreeBSD.org>
11  * Copyright (c) 2013, 2014 The FreeBSD Foundation
12  *
13  * Portions of this software were developed by Konstantin Belousov
14  * under sponsorship from the FreeBSD Foundation.
15  *
16  * Redistribution and use in source and binary forms, with or without
17  * modification, are permitted provided that the following conditions
18  * are met:
19  * 1. Redistributions of source code must retain the above copyright
20  *    notice, this list of conditions and the following disclaimer.
21  * 2. Redistributions in binary form must reproduce the above copyright
22  *    notice, this list of conditions and the following disclaimer in the
23  *    documentation and/or other materials provided with the distribution.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *      @(#)vfs_vnops.c 8.2 (Berkeley) 1/21/94
41  */
42
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/disk.h>
49 #include <sys/fcntl.h>
50 #include <sys/file.h>
51 #include <sys/kdb.h>
52 #include <sys/stat.h>
53 #include <sys/priv.h>
54 #include <sys/proc.h>
55 #include <sys/limits.h>
56 #include <sys/lock.h>
57 #include <sys/mount.h>
58 #include <sys/mutex.h>
59 #include <sys/namei.h>
60 #include <sys/vnode.h>
61 #include <sys/bio.h>
62 #include <sys/buf.h>
63 #include <sys/filio.h>
64 #include <sys/resourcevar.h>
65 #include <sys/rwlock.h>
66 #include <sys/sx.h>
67 #include <sys/sysctl.h>
68 #include <sys/ttycom.h>
69 #include <sys/conf.h>
70 #include <sys/syslog.h>
71 #include <sys/unistd.h>
72
73 #include <security/audit/audit.h>
74 #include <security/mac/mac_framework.h>
75
76 #include <vm/vm.h>
77 #include <vm/vm_extern.h>
78 #include <vm/pmap.h>
79 #include <vm/vm_map.h>
80 #include <vm/vm_object.h>
81 #include <vm/vm_page.h>
82
83 static fo_rdwr_t        vn_read;
84 static fo_rdwr_t        vn_write;
85 static fo_rdwr_t        vn_io_fault;
86 static fo_truncate_t    vn_truncate;
87 static fo_ioctl_t       vn_ioctl;
88 static fo_poll_t        vn_poll;
89 static fo_kqfilter_t    vn_kqfilter;
90 static fo_stat_t        vn_statfile;
91 static fo_close_t       vn_closefile;
92
93 struct  fileops vnops = {
94         .fo_read = vn_io_fault,
95         .fo_write = vn_io_fault,
96         .fo_truncate = vn_truncate,
97         .fo_ioctl = vn_ioctl,
98         .fo_poll = vn_poll,
99         .fo_kqfilter = vn_kqfilter,
100         .fo_stat = vn_statfile,
101         .fo_close = vn_closefile,
102         .fo_chmod = vn_chmod,
103         .fo_chown = vn_chown,
104         .fo_sendfile = vn_sendfile,
105         .fo_seek = vn_seek,
106         .fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE
107 };
108
109 static const int io_hold_cnt = 16;
110 static int vn_io_fault_enable = 1;
111 SYSCTL_INT(_debug, OID_AUTO, vn_io_fault_enable, CTLFLAG_RW,
112     &vn_io_fault_enable, 0, "Enable vn_io_fault lock avoidance");
113 static int vn_io_fault_prefault = 0;
114 SYSCTL_INT(_debug, OID_AUTO, vn_io_fault_prefault, CTLFLAG_RW,
115     &vn_io_fault_prefault, 0, "Enable vn_io_fault prefaulting");
116 static u_long vn_io_faults_cnt;
117 SYSCTL_ULONG(_debug, OID_AUTO, vn_io_faults, CTLFLAG_RD,
118     &vn_io_faults_cnt, 0, "Count of vn_io_fault lock avoidance triggers");
119
120 /*
121  * Returns true if vn_io_fault mode of handling the i/o request should
122  * be used.
123  */
124 static bool
125 do_vn_io_fault(struct vnode *vp, struct uio *uio)
126 {
127         struct mount *mp;
128
129         return (uio->uio_segflg == UIO_USERSPACE && vp->v_type == VREG &&
130             (mp = vp->v_mount) != NULL &&
131             (mp->mnt_kern_flag & MNTK_NO_IOPF) != 0 && vn_io_fault_enable);
132 }
133
134 /*
135  * Structure used to pass arguments to vn_io_fault1(), to do either
136  * file- or vnode-based I/O calls.
137  */
138 struct vn_io_fault_args {
139         enum {
140                 VN_IO_FAULT_FOP,
141                 VN_IO_FAULT_VOP
142         } kind;
143         struct ucred *cred;
144         int flags;
145         union {
146                 struct fop_args_tag {
147                         struct file *fp;
148                         fo_rdwr_t *doio;
149                 } fop_args;
150                 struct vop_args_tag {
151                         struct vnode *vp;
152                 } vop_args;
153         } args;
154 };
155
156 static int vn_io_fault1(struct vnode *vp, struct uio *uio,
157     struct vn_io_fault_args *args, struct thread *td);
158
159 int
160 vn_open(ndp, flagp, cmode, fp)
161         struct nameidata *ndp;
162         int *flagp, cmode;
163         struct file *fp;
164 {
165         struct thread *td = ndp->ni_cnd.cn_thread;
166
167         return (vn_open_cred(ndp, flagp, cmode, 0, td->td_ucred, fp));
168 }
169
170 /*
171  * Common code for vnode open operations via a name lookup.
172  * Lookup the vnode and invoke VOP_CREATE if needed.
173  * Check permissions, and call the VOP_OPEN or VOP_CREATE routine.
174  * 
175  * Note that this does NOT free nameidata for the successful case,
176  * due to the NDINIT being done elsewhere.
177  */
178 int
179 vn_open_cred(struct nameidata *ndp, int *flagp, int cmode, u_int vn_open_flags,
180     struct ucred *cred, struct file *fp)
181 {
182         struct vnode *vp;
183         struct mount *mp;
184         struct thread *td = ndp->ni_cnd.cn_thread;
185         struct vattr vat;
186         struct vattr *vap = &vat;
187         int fmode, error;
188
189 restart:
190         fmode = *flagp;
191         if ((fmode & (O_CREAT | O_EXCL | O_DIRECTORY)) == (O_CREAT |
192             O_EXCL | O_DIRECTORY))
193                 return (EINVAL);
194         else if ((fmode & (O_CREAT | O_DIRECTORY)) == O_CREAT) {
195                 ndp->ni_cnd.cn_nameiop = CREATE;
196                 /*
197                  * Set NOCACHE to avoid flushing the cache when
198                  * rolling in many files at once.
199                 */
200                 ndp->ni_cnd.cn_flags = ISOPEN | LOCKPARENT | LOCKLEAF | NOCACHE;
201                 if ((fmode & O_EXCL) == 0 && (fmode & O_NOFOLLOW) == 0)
202                         ndp->ni_cnd.cn_flags |= FOLLOW;
203                 if (!(vn_open_flags & VN_OPEN_NOAUDIT))
204                         ndp->ni_cnd.cn_flags |= AUDITVNODE1;
205                 if (vn_open_flags & VN_OPEN_NOCAPCHECK)
206                         ndp->ni_cnd.cn_flags |= NOCAPCHECK;
207                 bwillwrite();
208                 if ((error = namei(ndp)) != 0)
209                         return (error);
210                 if (ndp->ni_vp == NULL) {
211                         VATTR_NULL(vap);
212                         vap->va_type = VREG;
213                         vap->va_mode = cmode;
214                         if (fmode & O_EXCL)
215                                 vap->va_vaflags |= VA_EXCLUSIVE;
216                         if (vn_start_write(ndp->ni_dvp, &mp, V_NOWAIT) != 0) {
217                                 NDFREE(ndp, NDF_ONLY_PNBUF);
218                                 vput(ndp->ni_dvp);
219                                 if ((error = vn_start_write(NULL, &mp,
220                                     V_XSLEEP | PCATCH)) != 0)
221                                         return (error);
222                                 goto restart;
223                         }
224                         if ((vn_open_flags & VN_OPEN_NAMECACHE) != 0)
225                                 ndp->ni_cnd.cn_flags |= MAKEENTRY;
226 #ifdef MAC
227                         error = mac_vnode_check_create(cred, ndp->ni_dvp,
228                             &ndp->ni_cnd, vap);
229                         if (error == 0)
230 #endif
231                                 error = VOP_CREATE(ndp->ni_dvp, &ndp->ni_vp,
232                                                    &ndp->ni_cnd, vap);
233                         vput(ndp->ni_dvp);
234                         vn_finished_write(mp);
235                         if (error) {
236                                 NDFREE(ndp, NDF_ONLY_PNBUF);
237                                 return (error);
238                         }
239                         fmode &= ~O_TRUNC;
240                         vp = ndp->ni_vp;
241                 } else {
242                         if (ndp->ni_dvp == ndp->ni_vp)
243                                 vrele(ndp->ni_dvp);
244                         else
245                                 vput(ndp->ni_dvp);
246                         ndp->ni_dvp = NULL;
247                         vp = ndp->ni_vp;
248                         if (fmode & O_EXCL) {
249                                 error = EEXIST;
250                                 goto bad;
251                         }
252                         fmode &= ~O_CREAT;
253                 }
254         } else {
255                 ndp->ni_cnd.cn_nameiop = LOOKUP;
256                 ndp->ni_cnd.cn_flags = ISOPEN |
257                     ((fmode & O_NOFOLLOW) ? NOFOLLOW : FOLLOW) | LOCKLEAF;
258                 if (!(fmode & FWRITE))
259                         ndp->ni_cnd.cn_flags |= LOCKSHARED;
260                 if (!(vn_open_flags & VN_OPEN_NOAUDIT))
261                         ndp->ni_cnd.cn_flags |= AUDITVNODE1;
262                 if (vn_open_flags & VN_OPEN_NOCAPCHECK)
263                         ndp->ni_cnd.cn_flags |= NOCAPCHECK;
264                 if ((error = namei(ndp)) != 0)
265                         return (error);
266                 vp = ndp->ni_vp;
267         }
268         error = vn_open_vnode(vp, fmode, cred, td, fp);
269         if (error)
270                 goto bad;
271         *flagp = fmode;
272         return (0);
273 bad:
274         NDFREE(ndp, NDF_ONLY_PNBUF);
275         vput(vp);
276         *flagp = fmode;
277         ndp->ni_vp = NULL;
278         return (error);
279 }
280
281 /*
282  * Common code for vnode open operations once a vnode is located.
283  * Check permissions, and call the VOP_OPEN routine.
284  */
285 int
286 vn_open_vnode(struct vnode *vp, int fmode, struct ucred *cred,
287     struct thread *td, struct file *fp)
288 {
289         struct mount *mp;
290         accmode_t accmode;
291         struct flock lf;
292         int error, have_flock, lock_flags, type;
293
294         if (vp->v_type == VLNK)
295                 return (EMLINK);
296         if (vp->v_type == VSOCK)
297                 return (EOPNOTSUPP);
298         if (vp->v_type != VDIR && fmode & O_DIRECTORY)
299                 return (ENOTDIR);
300         accmode = 0;
301         if (fmode & (FWRITE | O_TRUNC)) {
302                 if (vp->v_type == VDIR)
303                         return (EISDIR);
304                 accmode |= VWRITE;
305         }
306         if (fmode & FREAD)
307                 accmode |= VREAD;
308         if (fmode & FEXEC)
309                 accmode |= VEXEC;
310         if ((fmode & O_APPEND) && (fmode & FWRITE))
311                 accmode |= VAPPEND;
312 #ifdef MAC
313         error = mac_vnode_check_open(cred, vp, accmode);
314         if (error)
315                 return (error);
316 #endif
317         if ((fmode & O_CREAT) == 0) {
318                 if (accmode & VWRITE) {
319                         error = vn_writechk(vp);
320                         if (error)
321                                 return (error);
322                 }
323                 if (accmode) {
324                         error = VOP_ACCESS(vp, accmode, cred, td);
325                         if (error)
326                                 return (error);
327                 }
328         }
329         if (vp->v_type == VFIFO && VOP_ISLOCKED(vp) != LK_EXCLUSIVE)
330                 vn_lock(vp, LK_UPGRADE | LK_RETRY);
331         if ((error = VOP_OPEN(vp, fmode, cred, td, fp)) != 0)
332                 return (error);
333
334         if (fmode & (O_EXLOCK | O_SHLOCK)) {
335                 KASSERT(fp != NULL, ("open with flock requires fp"));
336                 lock_flags = VOP_ISLOCKED(vp);
337                 VOP_UNLOCK(vp, 0);
338                 lf.l_whence = SEEK_SET;
339                 lf.l_start = 0;
340                 lf.l_len = 0;
341                 if (fmode & O_EXLOCK)
342                         lf.l_type = F_WRLCK;
343                 else
344                         lf.l_type = F_RDLCK;
345                 type = F_FLOCK;
346                 if ((fmode & FNONBLOCK) == 0)
347                         type |= F_WAIT;
348                 error = VOP_ADVLOCK(vp, (caddr_t)fp, F_SETLK, &lf, type);
349                 have_flock = (error == 0);
350                 vn_lock(vp, lock_flags | LK_RETRY);
351                 if (error == 0 && vp->v_iflag & VI_DOOMED)
352                         error = ENOENT;
353                 /*
354                  * Another thread might have used this vnode as an
355                  * executable while the vnode lock was dropped.
356                  * Ensure the vnode is still able to be opened for
357                  * writing after the lock has been obtained.
358                  */
359                 if (error == 0 && accmode & VWRITE)
360                         error = vn_writechk(vp);
361                 if (error) {
362                         VOP_UNLOCK(vp, 0);
363                         if (have_flock) {
364                                 lf.l_whence = SEEK_SET;
365                                 lf.l_start = 0;
366                                 lf.l_len = 0;
367                                 lf.l_type = F_UNLCK;
368                                 (void) VOP_ADVLOCK(vp, fp, F_UNLCK, &lf,
369                                     F_FLOCK);
370                         }
371                         vn_start_write(vp, &mp, V_WAIT);
372                         vn_lock(vp, lock_flags | LK_RETRY);
373                         (void)VOP_CLOSE(vp, fmode, cred, td);
374                         vn_finished_write(mp);
375                         /* Prevent second close from fdrop()->vn_close(). */
376                         if (fp != NULL)
377                                 fp->f_ops= &badfileops;
378                         return (error);
379                 }
380                 fp->f_flag |= FHASLOCK;
381         }
382         if (fmode & FWRITE) {
383                 VOP_ADD_WRITECOUNT(vp, 1);
384                 CTR3(KTR_VFS, "%s: vp %p v_writecount increased to %d",
385                     __func__, vp, vp->v_writecount);
386         }
387         ASSERT_VOP_LOCKED(vp, "vn_open_vnode");
388         return (0);
389 }
390
391 /*
392  * Check for write permissions on the specified vnode.
393  * Prototype text segments cannot be written.
394  */
395 int
396 vn_writechk(vp)
397         register struct vnode *vp;
398 {
399
400         ASSERT_VOP_LOCKED(vp, "vn_writechk");
401         /*
402          * If there's shared text associated with
403          * the vnode, try to free it up once.  If
404          * we fail, we can't allow writing.
405          */
406         if (VOP_IS_TEXT(vp))
407                 return (ETXTBSY);
408
409         return (0);
410 }
411
412 /*
413  * Vnode close call
414  */
415 int
416 vn_close(vp, flags, file_cred, td)
417         register struct vnode *vp;
418         int flags;
419         struct ucred *file_cred;
420         struct thread *td;
421 {
422         struct mount *mp;
423         int error, lock_flags;
424
425         if (vp->v_type != VFIFO && (flags & FWRITE) == 0 &&
426             MNT_EXTENDED_SHARED(vp->v_mount))
427                 lock_flags = LK_SHARED;
428         else
429                 lock_flags = LK_EXCLUSIVE;
430
431         vn_start_write(vp, &mp, V_WAIT);
432         vn_lock(vp, lock_flags | LK_RETRY);
433         if (flags & FWRITE) {
434                 VNASSERT(vp->v_writecount > 0, vp, 
435                     ("vn_close: negative writecount"));
436                 VOP_ADD_WRITECOUNT(vp, -1);
437                 CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d",
438                     __func__, vp, vp->v_writecount);
439         }
440         error = VOP_CLOSE(vp, flags, file_cred, td);
441         vput(vp);
442         vn_finished_write(mp);
443         return (error);
444 }
445
446 /*
447  * Heuristic to detect sequential operation.
448  */
449 static int
450 sequential_heuristic(struct uio *uio, struct file *fp)
451 {
452
453         ASSERT_VOP_LOCKED(fp->f_vnode, __func__);
454         if (fp->f_flag & FRDAHEAD)
455                 return (fp->f_seqcount << IO_SEQSHIFT);
456
457         /*
458          * Offset 0 is handled specially.  open() sets f_seqcount to 1 so
459          * that the first I/O is normally considered to be slightly
460          * sequential.  Seeking to offset 0 doesn't change sequentiality
461          * unless previous seeks have reduced f_seqcount to 0, in which
462          * case offset 0 is not special.
463          */
464         if ((uio->uio_offset == 0 && fp->f_seqcount > 0) ||
465             uio->uio_offset == fp->f_nextoff) {
466                 /*
467                  * f_seqcount is in units of fixed-size blocks so that it
468                  * depends mainly on the amount of sequential I/O and not
469                  * much on the number of sequential I/O's.  The fixed size
470                  * of 16384 is hard-coded here since it is (not quite) just
471                  * a magic size that works well here.  This size is more
472                  * closely related to the best I/O size for real disks than
473                  * to any block size used by software.
474                  */
475                 fp->f_seqcount += howmany(uio->uio_resid, 16384);
476                 if (fp->f_seqcount > IO_SEQMAX)
477                         fp->f_seqcount = IO_SEQMAX;
478                 return (fp->f_seqcount << IO_SEQSHIFT);
479         }
480
481         /* Not sequential.  Quickly draw-down sequentiality. */
482         if (fp->f_seqcount > 1)
483                 fp->f_seqcount = 1;
484         else
485                 fp->f_seqcount = 0;
486         return (0);
487 }
488
489 /*
490  * Package up an I/O request on a vnode into a uio and do it.
491  */
492 int
493 vn_rdwr(enum uio_rw rw, struct vnode *vp, void *base, int len, off_t offset,
494     enum uio_seg segflg, int ioflg, struct ucred *active_cred,
495     struct ucred *file_cred, ssize_t *aresid, struct thread *td)
496 {
497         struct uio auio;
498         struct iovec aiov;
499         struct mount *mp;
500         struct ucred *cred;
501         void *rl_cookie;
502         struct vn_io_fault_args args;
503         int error, lock_flags;
504
505         auio.uio_iov = &aiov;
506         auio.uio_iovcnt = 1;
507         aiov.iov_base = base;
508         aiov.iov_len = len;
509         auio.uio_resid = len;
510         auio.uio_offset = offset;
511         auio.uio_segflg = segflg;
512         auio.uio_rw = rw;
513         auio.uio_td = td;
514         error = 0;
515
516         if ((ioflg & IO_NODELOCKED) == 0) {
517                 if ((ioflg & IO_RANGELOCKED) == 0) {
518                         if (rw == UIO_READ) {
519                                 rl_cookie = vn_rangelock_rlock(vp, offset,
520                                     offset + len);
521                         } else {
522                                 rl_cookie = vn_rangelock_wlock(vp, offset,
523                                     offset + len);
524                         }
525                 } else
526                         rl_cookie = NULL;
527                 mp = NULL;
528                 if (rw == UIO_WRITE) { 
529                         if (vp->v_type != VCHR &&
530                             (error = vn_start_write(vp, &mp, V_WAIT | PCATCH))
531                             != 0)
532                                 goto out;
533                         if (MNT_SHARED_WRITES(mp) ||
534                             ((mp == NULL) && MNT_SHARED_WRITES(vp->v_mount)))
535                                 lock_flags = LK_SHARED;
536                         else
537                                 lock_flags = LK_EXCLUSIVE;
538                 } else
539                         lock_flags = LK_SHARED;
540                 vn_lock(vp, lock_flags | LK_RETRY);
541         } else
542                 rl_cookie = NULL;
543
544         ASSERT_VOP_LOCKED(vp, "IO_NODELOCKED with no vp lock held");
545 #ifdef MAC
546         if ((ioflg & IO_NOMACCHECK) == 0) {
547                 if (rw == UIO_READ)
548                         error = mac_vnode_check_read(active_cred, file_cred,
549                             vp);
550                 else
551                         error = mac_vnode_check_write(active_cred, file_cred,
552                             vp);
553         }
554 #endif
555         if (error == 0) {
556                 if (file_cred != NULL)
557                         cred = file_cred;
558                 else
559                         cred = active_cred;
560                 if (do_vn_io_fault(vp, &auio)) {
561                         args.kind = VN_IO_FAULT_VOP;
562                         args.cred = cred;
563                         args.flags = ioflg;
564                         args.args.vop_args.vp = vp;
565                         error = vn_io_fault1(vp, &auio, &args, td);
566                 } else if (rw == UIO_READ) {
567                         error = VOP_READ(vp, &auio, ioflg, cred);
568                 } else /* if (rw == UIO_WRITE) */ {
569                         error = VOP_WRITE(vp, &auio, ioflg, cred);
570                 }
571         }
572         if (aresid)
573                 *aresid = auio.uio_resid;
574         else
575                 if (auio.uio_resid && error == 0)
576                         error = EIO;
577         if ((ioflg & IO_NODELOCKED) == 0) {
578                 VOP_UNLOCK(vp, 0);
579                 if (mp != NULL)
580                         vn_finished_write(mp);
581         }
582  out:
583         if (rl_cookie != NULL)
584                 vn_rangelock_unlock(vp, rl_cookie);
585         return (error);
586 }
587
588 /*
589  * Package up an I/O request on a vnode into a uio and do it.  The I/O
590  * request is split up into smaller chunks and we try to avoid saturating
591  * the buffer cache while potentially holding a vnode locked, so we 
592  * check bwillwrite() before calling vn_rdwr().  We also call kern_yield()
593  * to give other processes a chance to lock the vnode (either other processes
594  * core'ing the same binary, or unrelated processes scanning the directory).
595  */
596 int
597 vn_rdwr_inchunks(rw, vp, base, len, offset, segflg, ioflg, active_cred,
598     file_cred, aresid, td)
599         enum uio_rw rw;
600         struct vnode *vp;
601         void *base;
602         size_t len;
603         off_t offset;
604         enum uio_seg segflg;
605         int ioflg;
606         struct ucred *active_cred;
607         struct ucred *file_cred;
608         size_t *aresid;
609         struct thread *td;
610 {
611         int error = 0;
612         ssize_t iaresid;
613
614         do {
615                 int chunk;
616
617                 /*
618                  * Force `offset' to a multiple of MAXBSIZE except possibly
619                  * for the first chunk, so that filesystems only need to
620                  * write full blocks except possibly for the first and last
621                  * chunks.
622                  */
623                 chunk = MAXBSIZE - (uoff_t)offset % MAXBSIZE;
624
625                 if (chunk > len)
626                         chunk = len;
627                 if (rw != UIO_READ && vp->v_type == VREG)
628                         bwillwrite();
629                 iaresid = 0;
630                 error = vn_rdwr(rw, vp, base, chunk, offset, segflg,
631                     ioflg, active_cred, file_cred, &iaresid, td);
632                 len -= chunk;   /* aresid calc already includes length */
633                 if (error)
634                         break;
635                 offset += chunk;
636                 base = (char *)base + chunk;
637                 kern_yield(PRI_USER);
638         } while (len);
639         if (aresid)
640                 *aresid = len + iaresid;
641         return (error);
642 }
643
644 off_t
645 foffset_lock(struct file *fp, int flags)
646 {
647         struct mtx *mtxp;
648         off_t res;
649
650         KASSERT((flags & FOF_OFFSET) == 0, ("FOF_OFFSET passed"));
651
652 #if OFF_MAX <= LONG_MAX
653         /*
654          * Caller only wants the current f_offset value.  Assume that
655          * the long and shorter integer types reads are atomic.
656          */
657         if ((flags & FOF_NOLOCK) != 0)
658                 return (fp->f_offset);
659 #endif
660
661         /*
662          * According to McKusick the vn lock was protecting f_offset here.
663          * It is now protected by the FOFFSET_LOCKED flag.
664          */
665         mtxp = mtx_pool_find(mtxpool_sleep, fp);
666         mtx_lock(mtxp);
667         if ((flags & FOF_NOLOCK) == 0) {
668                 while (fp->f_vnread_flags & FOFFSET_LOCKED) {
669                         fp->f_vnread_flags |= FOFFSET_LOCK_WAITING;
670                         msleep(&fp->f_vnread_flags, mtxp, PUSER -1,
671                             "vofflock", 0);
672                 }
673                 fp->f_vnread_flags |= FOFFSET_LOCKED;
674         }
675         res = fp->f_offset;
676         mtx_unlock(mtxp);
677         return (res);
678 }
679
680 void
681 foffset_unlock(struct file *fp, off_t val, int flags)
682 {
683         struct mtx *mtxp;
684
685         KASSERT((flags & FOF_OFFSET) == 0, ("FOF_OFFSET passed"));
686
687 #if OFF_MAX <= LONG_MAX
688         if ((flags & FOF_NOLOCK) != 0) {
689                 if ((flags & FOF_NOUPDATE) == 0)
690                         fp->f_offset = val;
691                 if ((flags & FOF_NEXTOFF) != 0)
692                         fp->f_nextoff = val;
693                 return;
694         }
695 #endif
696
697         mtxp = mtx_pool_find(mtxpool_sleep, fp);
698         mtx_lock(mtxp);
699         if ((flags & FOF_NOUPDATE) == 0)
700                 fp->f_offset = val;
701         if ((flags & FOF_NEXTOFF) != 0)
702                 fp->f_nextoff = val;
703         if ((flags & FOF_NOLOCK) == 0) {
704                 KASSERT((fp->f_vnread_flags & FOFFSET_LOCKED) != 0,
705                     ("Lost FOFFSET_LOCKED"));
706                 if (fp->f_vnread_flags & FOFFSET_LOCK_WAITING)
707                         wakeup(&fp->f_vnread_flags);
708                 fp->f_vnread_flags = 0;
709         }
710         mtx_unlock(mtxp);
711 }
712
713 void
714 foffset_lock_uio(struct file *fp, struct uio *uio, int flags)
715 {
716
717         if ((flags & FOF_OFFSET) == 0)
718                 uio->uio_offset = foffset_lock(fp, flags);
719 }
720
721 void
722 foffset_unlock_uio(struct file *fp, struct uio *uio, int flags)
723 {
724
725         if ((flags & FOF_OFFSET) == 0)
726                 foffset_unlock(fp, uio->uio_offset, flags);
727 }
728
729 static int
730 get_advice(struct file *fp, struct uio *uio)
731 {
732         struct mtx *mtxp;
733         int ret;
734
735         ret = POSIX_FADV_NORMAL;
736         if (fp->f_advice == NULL)
737                 return (ret);
738
739         mtxp = mtx_pool_find(mtxpool_sleep, fp);
740         mtx_lock(mtxp);
741         if (uio->uio_offset >= fp->f_advice->fa_start &&
742             uio->uio_offset + uio->uio_resid <= fp->f_advice->fa_end)
743                 ret = fp->f_advice->fa_advice;
744         mtx_unlock(mtxp);
745         return (ret);
746 }
747
748 /*
749  * File table vnode read routine.
750  */
751 static int
752 vn_read(fp, uio, active_cred, flags, td)
753         struct file *fp;
754         struct uio *uio;
755         struct ucred *active_cred;
756         int flags;
757         struct thread *td;
758 {
759         struct vnode *vp;
760         struct mtx *mtxp;
761         int error, ioflag;
762         int advice;
763         off_t offset, start, end;
764
765         KASSERT(uio->uio_td == td, ("uio_td %p is not td %p",
766             uio->uio_td, td));
767         KASSERT(flags & FOF_OFFSET, ("No FOF_OFFSET"));
768         vp = fp->f_vnode;
769         ioflag = 0;
770         if (fp->f_flag & FNONBLOCK)
771                 ioflag |= IO_NDELAY;
772         if (fp->f_flag & O_DIRECT)
773                 ioflag |= IO_DIRECT;
774         advice = get_advice(fp, uio);
775         vn_lock(vp, LK_SHARED | LK_RETRY);
776
777         switch (advice) {
778         case POSIX_FADV_NORMAL:
779         case POSIX_FADV_SEQUENTIAL:
780         case POSIX_FADV_NOREUSE:
781                 ioflag |= sequential_heuristic(uio, fp);
782                 break;
783         case POSIX_FADV_RANDOM:
784                 /* Disable read-ahead for random I/O. */
785                 break;
786         }
787         offset = uio->uio_offset;
788
789 #ifdef MAC
790         error = mac_vnode_check_read(active_cred, fp->f_cred, vp);
791         if (error == 0)
792 #endif
793                 error = VOP_READ(vp, uio, ioflag, fp->f_cred);
794         fp->f_nextoff = uio->uio_offset;
795         VOP_UNLOCK(vp, 0);
796         if (error == 0 && advice == POSIX_FADV_NOREUSE &&
797             offset != uio->uio_offset) {
798                 /*
799                  * Use POSIX_FADV_DONTNEED to flush clean pages and
800                  * buffers for the backing file after a
801                  * POSIX_FADV_NOREUSE read(2).  To optimize the common
802                  * case of using POSIX_FADV_NOREUSE with sequential
803                  * access, track the previous implicit DONTNEED
804                  * request and grow this request to include the
805                  * current read(2) in addition to the previous
806                  * DONTNEED.  With purely sequential access this will
807                  * cause the DONTNEED requests to continously grow to
808                  * cover all of the previously read regions of the
809                  * file.  This allows filesystem blocks that are
810                  * accessed by multiple calls to read(2) to be flushed
811                  * once the last read(2) finishes.
812                  */
813                 start = offset;
814                 end = uio->uio_offset - 1;
815                 mtxp = mtx_pool_find(mtxpool_sleep, fp);
816                 mtx_lock(mtxp);
817                 if (fp->f_advice != NULL &&
818                     fp->f_advice->fa_advice == POSIX_FADV_NOREUSE) {
819                         if (start != 0 && fp->f_advice->fa_prevend + 1 == start)
820                                 start = fp->f_advice->fa_prevstart;
821                         else if (fp->f_advice->fa_prevstart != 0 &&
822                             fp->f_advice->fa_prevstart == end + 1)
823                                 end = fp->f_advice->fa_prevend;
824                         fp->f_advice->fa_prevstart = start;
825                         fp->f_advice->fa_prevend = end;
826                 }
827                 mtx_unlock(mtxp);
828                 error = VOP_ADVISE(vp, start, end, POSIX_FADV_DONTNEED);
829         }
830         return (error);
831 }
832
833 /*
834  * File table vnode write routine.
835  */
836 static int
837 vn_write(fp, uio, active_cred, flags, td)
838         struct file *fp;
839         struct uio *uio;
840         struct ucred *active_cred;
841         int flags;
842         struct thread *td;
843 {
844         struct vnode *vp;
845         struct mount *mp;
846         struct mtx *mtxp;
847         int error, ioflag, lock_flags;
848         int advice;
849         off_t offset, start, end;
850
851         KASSERT(uio->uio_td == td, ("uio_td %p is not td %p",
852             uio->uio_td, td));
853         KASSERT(flags & FOF_OFFSET, ("No FOF_OFFSET"));
854         vp = fp->f_vnode;
855         if (vp->v_type == VREG)
856                 bwillwrite();
857         ioflag = IO_UNIT;
858         if (vp->v_type == VREG && (fp->f_flag & O_APPEND))
859                 ioflag |= IO_APPEND;
860         if (fp->f_flag & FNONBLOCK)
861                 ioflag |= IO_NDELAY;
862         if (fp->f_flag & O_DIRECT)
863                 ioflag |= IO_DIRECT;
864         if ((fp->f_flag & O_FSYNC) ||
865             (vp->v_mount && (vp->v_mount->mnt_flag & MNT_SYNCHRONOUS)))
866                 ioflag |= IO_SYNC;
867         mp = NULL;
868         if (vp->v_type != VCHR &&
869             (error = vn_start_write(vp, &mp, V_WAIT | PCATCH)) != 0)
870                 goto unlock;
871
872         advice = get_advice(fp, uio);
873
874         if (MNT_SHARED_WRITES(mp) ||
875             (mp == NULL && MNT_SHARED_WRITES(vp->v_mount))) {
876                 lock_flags = LK_SHARED;
877         } else {
878                 lock_flags = LK_EXCLUSIVE;
879         }
880
881         vn_lock(vp, lock_flags | LK_RETRY);
882         switch (advice) {
883         case POSIX_FADV_NORMAL:
884         case POSIX_FADV_SEQUENTIAL:
885         case POSIX_FADV_NOREUSE:
886                 ioflag |= sequential_heuristic(uio, fp);
887                 break;
888         case POSIX_FADV_RANDOM:
889                 /* XXX: Is this correct? */
890                 break;
891         }
892         offset = uio->uio_offset;
893
894 #ifdef MAC
895         error = mac_vnode_check_write(active_cred, fp->f_cred, vp);
896         if (error == 0)
897 #endif
898                 error = VOP_WRITE(vp, uio, ioflag, fp->f_cred);
899         fp->f_nextoff = uio->uio_offset;
900         VOP_UNLOCK(vp, 0);
901         if (vp->v_type != VCHR)
902                 vn_finished_write(mp);
903         if (error == 0 && advice == POSIX_FADV_NOREUSE &&
904             offset != uio->uio_offset) {
905                 /*
906                  * Use POSIX_FADV_DONTNEED to flush clean pages and
907                  * buffers for the backing file after a
908                  * POSIX_FADV_NOREUSE write(2).  To optimize the
909                  * common case of using POSIX_FADV_NOREUSE with
910                  * sequential access, track the previous implicit
911                  * DONTNEED request and grow this request to include
912                  * the current write(2) in addition to the previous
913                  * DONTNEED.  With purely sequential access this will
914                  * cause the DONTNEED requests to continously grow to
915                  * cover all of the previously written regions of the
916                  * file.
917                  *
918                  * Note that the blocks just written are almost
919                  * certainly still dirty, so this only works when
920                  * VOP_ADVISE() calls from subsequent writes push out
921                  * the data written by this write(2) once the backing
922                  * buffers are clean.  However, as compared to forcing
923                  * IO_DIRECT, this gives much saner behavior.  Write
924                  * clustering is still allowed, and clean pages are
925                  * merely moved to the cache page queue rather than
926                  * outright thrown away.  This means a subsequent
927                  * read(2) can still avoid hitting the disk if the
928                  * pages have not been reclaimed.
929                  *
930                  * This does make POSIX_FADV_NOREUSE largely useless
931                  * with non-sequential access.  However, sequential
932                  * access is the more common use case and the flag is
933                  * merely advisory.
934                  */
935                 start = offset;
936                 end = uio->uio_offset - 1;
937                 mtxp = mtx_pool_find(mtxpool_sleep, fp);
938                 mtx_lock(mtxp);
939                 if (fp->f_advice != NULL &&
940                     fp->f_advice->fa_advice == POSIX_FADV_NOREUSE) {
941                         if (start != 0 && fp->f_advice->fa_prevend + 1 == start)
942                                 start = fp->f_advice->fa_prevstart;
943                         else if (fp->f_advice->fa_prevstart != 0 &&
944                             fp->f_advice->fa_prevstart == end + 1)
945                                 end = fp->f_advice->fa_prevend;
946                         fp->f_advice->fa_prevstart = start;
947                         fp->f_advice->fa_prevend = end;
948                 }
949                 mtx_unlock(mtxp);
950                 error = VOP_ADVISE(vp, start, end, POSIX_FADV_DONTNEED);
951         }
952         
953 unlock:
954         return (error);
955 }
956
957 /*
958  * The vn_io_fault() is a wrapper around vn_read() and vn_write() to
959  * prevent the following deadlock:
960  *
961  * Assume that the thread A reads from the vnode vp1 into userspace
962  * buffer buf1 backed by the pages of vnode vp2.  If a page in buf1 is
963  * currently not resident, then system ends up with the call chain
964  *   vn_read() -> VOP_READ(vp1) -> uiomove() -> [Page Fault] ->
965  *     vm_fault(buf1) -> vnode_pager_getpages(vp2) -> VOP_GETPAGES(vp2)
966  * which establishes lock order vp1->vn_lock, then vp2->vn_lock.
967  * If, at the same time, thread B reads from vnode vp2 into buffer buf2
968  * backed by the pages of vnode vp1, and some page in buf2 is not
969  * resident, we get a reversed order vp2->vn_lock, then vp1->vn_lock.
970  *
971  * To prevent the lock order reversal and deadlock, vn_io_fault() does
972  * not allow page faults to happen during VOP_READ() or VOP_WRITE().
973  * Instead, it first tries to do the whole range i/o with pagefaults
974  * disabled. If all pages in the i/o buffer are resident and mapped,
975  * VOP will succeed (ignoring the genuine filesystem errors).
976  * Otherwise, we get back EFAULT, and vn_io_fault() falls back to do
977  * i/o in chunks, with all pages in the chunk prefaulted and held
978  * using vm_fault_quick_hold_pages().
979  *
980  * Filesystems using this deadlock avoidance scheme should use the
981  * array of the held pages from uio, saved in the curthread->td_ma,
982  * instead of doing uiomove().  A helper function
983  * vn_io_fault_uiomove() converts uiomove request into
984  * uiomove_fromphys() over td_ma array.
985  *
986  * Since vnode locks do not cover the whole i/o anymore, rangelocks
987  * make the current i/o request atomic with respect to other i/os and
988  * truncations.
989  */
990
991 /*
992  * Decode vn_io_fault_args and perform the corresponding i/o.
993  */
994 static int
995 vn_io_fault_doio(struct vn_io_fault_args *args, struct uio *uio,
996     struct thread *td)
997 {
998
999         switch (args->kind) {
1000         case VN_IO_FAULT_FOP:
1001                 return ((args->args.fop_args.doio)(args->args.fop_args.fp,
1002                     uio, args->cred, args->flags, td));
1003         case VN_IO_FAULT_VOP:
1004                 if (uio->uio_rw == UIO_READ) {
1005                         return (VOP_READ(args->args.vop_args.vp, uio,
1006                             args->flags, args->cred));
1007                 } else if (uio->uio_rw == UIO_WRITE) {
1008                         return (VOP_WRITE(args->args.vop_args.vp, uio,
1009                             args->flags, args->cred));
1010                 }
1011                 break;
1012         }
1013         panic("vn_io_fault_doio: unknown kind of io %d %d", args->kind,
1014             uio->uio_rw);
1015 }
1016
1017 static int
1018 vn_io_fault_touch(char *base, const struct uio *uio)
1019 {
1020         int r;
1021
1022         r = fubyte(base);
1023         if (r == -1 || (uio->uio_rw == UIO_READ && subyte(base, r) == -1))
1024                 return (EFAULT);
1025         return (0);
1026 }
1027
1028 static int
1029 vn_io_fault_prefault_user(const struct uio *uio)
1030 {
1031         char *base;
1032         const struct iovec *iov;
1033         size_t len;
1034         ssize_t resid;
1035         int error, i;
1036
1037         KASSERT(uio->uio_segflg == UIO_USERSPACE,
1038             ("vn_io_fault_prefault userspace"));
1039
1040         error = i = 0;
1041         iov = uio->uio_iov;
1042         resid = uio->uio_resid;
1043         base = iov->iov_base;
1044         len = iov->iov_len;
1045         while (resid > 0) {
1046                 error = vn_io_fault_touch(base, uio);
1047                 if (error != 0)
1048                         break;
1049                 if (len < PAGE_SIZE) {
1050                         if (len != 0) {
1051                                 error = vn_io_fault_touch(base + len - 1, uio);
1052                                 if (error != 0)
1053                                         break;
1054                                 resid -= len;
1055                         }
1056                         if (++i >= uio->uio_iovcnt)
1057                                 break;
1058                         iov = uio->uio_iov + i;
1059                         base = iov->iov_base;
1060                         len = iov->iov_len;
1061                 } else {
1062                         len -= PAGE_SIZE;
1063                         base += PAGE_SIZE;
1064                         resid -= PAGE_SIZE;
1065                 }
1066         }
1067         return (error);
1068 }
1069
1070 /*
1071  * Common code for vn_io_fault(), agnostic to the kind of i/o request.
1072  * Uses vn_io_fault_doio() to make the call to an actual i/o function.
1073  * Used from vn_rdwr() and vn_io_fault(), which encode the i/o request
1074  * into args and call vn_io_fault1() to handle faults during the user
1075  * mode buffer accesses.
1076  */
1077 static int
1078 vn_io_fault1(struct vnode *vp, struct uio *uio, struct vn_io_fault_args *args,
1079     struct thread *td)
1080 {
1081         vm_page_t ma[io_hold_cnt + 2];
1082         struct uio *uio_clone, short_uio;
1083         struct iovec short_iovec[1];
1084         vm_page_t *prev_td_ma;
1085         vm_prot_t prot;
1086         vm_offset_t addr, end;
1087         size_t len, resid;
1088         ssize_t adv;
1089         int error, cnt, save, saveheld, prev_td_ma_cnt;
1090
1091         if (vn_io_fault_prefault) {
1092                 error = vn_io_fault_prefault_user(uio);
1093                 if (error != 0)
1094                         return (error); /* Or ignore ? */
1095         }
1096
1097         prot = uio->uio_rw == UIO_READ ? VM_PROT_WRITE : VM_PROT_READ;
1098
1099         /*
1100          * The UFS follows IO_UNIT directive and replays back both
1101          * uio_offset and uio_resid if an error is encountered during the
1102          * operation.  But, since the iovec may be already advanced,
1103          * uio is still in an inconsistent state.
1104          *
1105          * Cache a copy of the original uio, which is advanced to the redo
1106          * point using UIO_NOCOPY below.
1107          */
1108         uio_clone = cloneuio(uio);
1109         resid = uio->uio_resid;
1110
1111         short_uio.uio_segflg = UIO_USERSPACE;
1112         short_uio.uio_rw = uio->uio_rw;
1113         short_uio.uio_td = uio->uio_td;
1114
1115         save = vm_fault_disable_pagefaults();
1116         error = vn_io_fault_doio(args, uio, td);
1117         if (error != EFAULT)
1118                 goto out;
1119
1120         atomic_add_long(&vn_io_faults_cnt, 1);
1121         uio_clone->uio_segflg = UIO_NOCOPY;
1122         uiomove(NULL, resid - uio->uio_resid, uio_clone);
1123         uio_clone->uio_segflg = uio->uio_segflg;
1124
1125         saveheld = curthread_pflags_set(TDP_UIOHELD);
1126         prev_td_ma = td->td_ma;
1127         prev_td_ma_cnt = td->td_ma_cnt;
1128
1129         while (uio_clone->uio_resid != 0) {
1130                 len = uio_clone->uio_iov->iov_len;
1131                 if (len == 0) {
1132                         KASSERT(uio_clone->uio_iovcnt >= 1,
1133                             ("iovcnt underflow"));
1134                         uio_clone->uio_iov++;
1135                         uio_clone->uio_iovcnt--;
1136                         continue;
1137                 }
1138                 if (len > io_hold_cnt * PAGE_SIZE)
1139                         len = io_hold_cnt * PAGE_SIZE;
1140                 addr = (uintptr_t)uio_clone->uio_iov->iov_base;
1141                 end = round_page(addr + len);
1142                 if (end < addr) {
1143                         error = EFAULT;
1144                         break;
1145                 }
1146                 cnt = atop(end - trunc_page(addr));
1147                 /*
1148                  * A perfectly misaligned address and length could cause
1149                  * both the start and the end of the chunk to use partial
1150                  * page.  +2 accounts for such a situation.
1151                  */
1152                 cnt = vm_fault_quick_hold_pages(&td->td_proc->p_vmspace->vm_map,
1153                     addr, len, prot, ma, io_hold_cnt + 2);
1154                 if (cnt == -1) {
1155                         error = EFAULT;
1156                         break;
1157                 }
1158                 short_uio.uio_iov = &short_iovec[0];
1159                 short_iovec[0].iov_base = (void *)addr;
1160                 short_uio.uio_iovcnt = 1;
1161                 short_uio.uio_resid = short_iovec[0].iov_len = len;
1162                 short_uio.uio_offset = uio_clone->uio_offset;
1163                 td->td_ma = ma;
1164                 td->td_ma_cnt = cnt;
1165
1166                 error = vn_io_fault_doio(args, &short_uio, td);
1167                 vm_page_unhold_pages(ma, cnt);
1168                 adv = len - short_uio.uio_resid;
1169
1170                 uio_clone->uio_iov->iov_base =
1171                     (char *)uio_clone->uio_iov->iov_base + adv;
1172                 uio_clone->uio_iov->iov_len -= adv;
1173                 uio_clone->uio_resid -= adv;
1174                 uio_clone->uio_offset += adv;
1175
1176                 uio->uio_resid -= adv;
1177                 uio->uio_offset += adv;
1178
1179                 if (error != 0 || adv == 0)
1180                         break;
1181         }
1182         td->td_ma = prev_td_ma;
1183         td->td_ma_cnt = prev_td_ma_cnt;
1184         curthread_pflags_restore(saveheld);
1185 out:
1186         vm_fault_enable_pagefaults(save);
1187         free(uio_clone, M_IOV);
1188         return (error);
1189 }
1190
1191 static int
1192 vn_io_fault(struct file *fp, struct uio *uio, struct ucred *active_cred,
1193     int flags, struct thread *td)
1194 {
1195         fo_rdwr_t *doio;
1196         struct vnode *vp;
1197         void *rl_cookie;
1198         struct vn_io_fault_args args;
1199         int error;
1200
1201         doio = uio->uio_rw == UIO_READ ? vn_read : vn_write;
1202         vp = fp->f_vnode;
1203         foffset_lock_uio(fp, uio, flags);
1204         if (do_vn_io_fault(vp, uio)) {
1205                 args.kind = VN_IO_FAULT_FOP;
1206                 args.args.fop_args.fp = fp;
1207                 args.args.fop_args.doio = doio;
1208                 args.cred = active_cred;
1209                 args.flags = flags | FOF_OFFSET;
1210                 if (uio->uio_rw == UIO_READ) {
1211                         rl_cookie = vn_rangelock_rlock(vp, uio->uio_offset,
1212                             uio->uio_offset + uio->uio_resid);
1213                 } else if ((fp->f_flag & O_APPEND) != 0 ||
1214                     (flags & FOF_OFFSET) == 0) {
1215                         /* For appenders, punt and lock the whole range. */
1216                         rl_cookie = vn_rangelock_wlock(vp, 0, OFF_MAX);
1217                 } else {
1218                         rl_cookie = vn_rangelock_wlock(vp, uio->uio_offset,
1219                             uio->uio_offset + uio->uio_resid);
1220                 }
1221                 error = vn_io_fault1(vp, uio, &args, td);
1222                 vn_rangelock_unlock(vp, rl_cookie);
1223         } else {
1224                 error = doio(fp, uio, active_cred, flags | FOF_OFFSET, td);
1225         }
1226         foffset_unlock_uio(fp, uio, flags);
1227         return (error);
1228 }
1229
1230 /*
1231  * Helper function to perform the requested uiomove operation using
1232  * the held pages for io->uio_iov[0].iov_base buffer instead of
1233  * copyin/copyout.  Access to the pages with uiomove_fromphys()
1234  * instead of iov_base prevents page faults that could occur due to
1235  * pmap_collect() invalidating the mapping created by
1236  * vm_fault_quick_hold_pages(), or pageout daemon, page laundry or
1237  * object cleanup revoking the write access from page mappings.
1238  *
1239  * Filesystems specified MNTK_NO_IOPF shall use vn_io_fault_uiomove()
1240  * instead of plain uiomove().
1241  */
1242 int
1243 vn_io_fault_uiomove(char *data, int xfersize, struct uio *uio)
1244 {
1245         struct uio transp_uio;
1246         struct iovec transp_iov[1];
1247         struct thread *td;
1248         size_t adv;
1249         int error, pgadv;
1250
1251         td = curthread;
1252         if ((td->td_pflags & TDP_UIOHELD) == 0 ||
1253             uio->uio_segflg != UIO_USERSPACE)
1254                 return (uiomove(data, xfersize, uio));
1255
1256         KASSERT(uio->uio_iovcnt == 1, ("uio_iovcnt %d", uio->uio_iovcnt));
1257         transp_iov[0].iov_base = data;
1258         transp_uio.uio_iov = &transp_iov[0];
1259         transp_uio.uio_iovcnt = 1;
1260         if (xfersize > uio->uio_resid)
1261                 xfersize = uio->uio_resid;
1262         transp_uio.uio_resid = transp_iov[0].iov_len = xfersize;
1263         transp_uio.uio_offset = 0;
1264         transp_uio.uio_segflg = UIO_SYSSPACE;
1265         /*
1266          * Since transp_iov points to data, and td_ma page array
1267          * corresponds to original uio->uio_iov, we need to invert the
1268          * direction of the i/o operation as passed to
1269          * uiomove_fromphys().
1270          */
1271         switch (uio->uio_rw) {
1272         case UIO_WRITE:
1273                 transp_uio.uio_rw = UIO_READ;
1274                 break;
1275         case UIO_READ:
1276                 transp_uio.uio_rw = UIO_WRITE;
1277                 break;
1278         }
1279         transp_uio.uio_td = uio->uio_td;
1280         error = uiomove_fromphys(td->td_ma,
1281             ((vm_offset_t)uio->uio_iov->iov_base) & PAGE_MASK,
1282             xfersize, &transp_uio);
1283         adv = xfersize - transp_uio.uio_resid;
1284         pgadv =
1285             (((vm_offset_t)uio->uio_iov->iov_base + adv) >> PAGE_SHIFT) -
1286             (((vm_offset_t)uio->uio_iov->iov_base) >> PAGE_SHIFT);
1287         td->td_ma += pgadv;
1288         KASSERT(td->td_ma_cnt >= pgadv, ("consumed pages %d %d", td->td_ma_cnt,
1289             pgadv));
1290         td->td_ma_cnt -= pgadv;
1291         uio->uio_iov->iov_base = (char *)uio->uio_iov->iov_base + adv;
1292         uio->uio_iov->iov_len -= adv;
1293         uio->uio_resid -= adv;
1294         uio->uio_offset += adv;
1295         return (error);
1296 }
1297
1298 int
1299 vn_io_fault_pgmove(vm_page_t ma[], vm_offset_t offset, int xfersize,
1300     struct uio *uio)
1301 {
1302         struct thread *td;
1303         vm_offset_t iov_base;
1304         int cnt, pgadv;
1305
1306         td = curthread;
1307         if ((td->td_pflags & TDP_UIOHELD) == 0 ||
1308             uio->uio_segflg != UIO_USERSPACE)
1309                 return (uiomove_fromphys(ma, offset, xfersize, uio));
1310
1311         KASSERT(uio->uio_iovcnt == 1, ("uio_iovcnt %d", uio->uio_iovcnt));
1312         cnt = xfersize > uio->uio_resid ? uio->uio_resid : xfersize;
1313         iov_base = (vm_offset_t)uio->uio_iov->iov_base;
1314         switch (uio->uio_rw) {
1315         case UIO_WRITE:
1316                 pmap_copy_pages(td->td_ma, iov_base & PAGE_MASK, ma,
1317                     offset, cnt);
1318                 break;
1319         case UIO_READ:
1320                 pmap_copy_pages(ma, offset, td->td_ma, iov_base & PAGE_MASK,
1321                     cnt);
1322                 break;
1323         }
1324         pgadv = ((iov_base + cnt) >> PAGE_SHIFT) - (iov_base >> PAGE_SHIFT);
1325         td->td_ma += pgadv;
1326         KASSERT(td->td_ma_cnt >= pgadv, ("consumed pages %d %d", td->td_ma_cnt,
1327             pgadv));
1328         td->td_ma_cnt -= pgadv;
1329         uio->uio_iov->iov_base = (char *)(iov_base + cnt);
1330         uio->uio_iov->iov_len -= cnt;
1331         uio->uio_resid -= cnt;
1332         uio->uio_offset += cnt;
1333         return (0);
1334 }
1335
1336
1337 /*
1338  * File table truncate routine.
1339  */
1340 static int
1341 vn_truncate(struct file *fp, off_t length, struct ucred *active_cred,
1342     struct thread *td)
1343 {
1344         struct vattr vattr;
1345         struct mount *mp;
1346         struct vnode *vp;
1347         void *rl_cookie;
1348         int error;
1349
1350         vp = fp->f_vnode;
1351
1352         /*
1353          * Lock the whole range for truncation.  Otherwise split i/o
1354          * might happen partly before and partly after the truncation.
1355          */
1356         rl_cookie = vn_rangelock_wlock(vp, 0, OFF_MAX);
1357         error = vn_start_write(vp, &mp, V_WAIT | PCATCH);
1358         if (error)
1359                 goto out1;
1360         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1361         if (vp->v_type == VDIR) {
1362                 error = EISDIR;
1363                 goto out;
1364         }
1365 #ifdef MAC
1366         error = mac_vnode_check_write(active_cred, fp->f_cred, vp);
1367         if (error)
1368                 goto out;
1369 #endif
1370         error = vn_writechk(vp);
1371         if (error == 0) {
1372                 VATTR_NULL(&vattr);
1373                 vattr.va_size = length;
1374                 error = VOP_SETATTR(vp, &vattr, fp->f_cred);
1375         }
1376 out:
1377         VOP_UNLOCK(vp, 0);
1378         vn_finished_write(mp);
1379 out1:
1380         vn_rangelock_unlock(vp, rl_cookie);
1381         return (error);
1382 }
1383
1384 /*
1385  * File table vnode stat routine.
1386  */
1387 static int
1388 vn_statfile(fp, sb, active_cred, td)
1389         struct file *fp;
1390         struct stat *sb;
1391         struct ucred *active_cred;
1392         struct thread *td;
1393 {
1394         struct vnode *vp = fp->f_vnode;
1395         int error;
1396
1397         vn_lock(vp, LK_SHARED | LK_RETRY);
1398         error = vn_stat(vp, sb, active_cred, fp->f_cred, td);
1399         VOP_UNLOCK(vp, 0);
1400
1401         return (error);
1402 }
1403
1404 /*
1405  * Stat a vnode; implementation for the stat syscall
1406  */
1407 int
1408 vn_stat(vp, sb, active_cred, file_cred, td)
1409         struct vnode *vp;
1410         register struct stat *sb;
1411         struct ucred *active_cred;
1412         struct ucred *file_cred;
1413         struct thread *td;
1414 {
1415         struct vattr vattr;
1416         register struct vattr *vap;
1417         int error;
1418         u_short mode;
1419
1420 #ifdef MAC
1421         error = mac_vnode_check_stat(active_cred, file_cred, vp);
1422         if (error)
1423                 return (error);
1424 #endif
1425
1426         vap = &vattr;
1427
1428         /*
1429          * Initialize defaults for new and unusual fields, so that file
1430          * systems which don't support these fields don't need to know
1431          * about them.
1432          */
1433         vap->va_birthtime.tv_sec = -1;
1434         vap->va_birthtime.tv_nsec = 0;
1435         vap->va_fsid = VNOVAL;
1436         vap->va_rdev = NODEV;
1437
1438         error = VOP_GETATTR(vp, vap, active_cred);
1439         if (error)
1440                 return (error);
1441
1442         /*
1443          * Zero the spare stat fields
1444          */
1445         bzero(sb, sizeof *sb);
1446
1447         /*
1448          * Copy from vattr table
1449          */
1450         if (vap->va_fsid != VNOVAL)
1451                 sb->st_dev = vap->va_fsid;
1452         else
1453                 sb->st_dev = vp->v_mount->mnt_stat.f_fsid.val[0];
1454         sb->st_ino = vap->va_fileid;
1455         mode = vap->va_mode;
1456         switch (vap->va_type) {
1457         case VREG:
1458                 mode |= S_IFREG;
1459                 break;
1460         case VDIR:
1461                 mode |= S_IFDIR;
1462                 break;
1463         case VBLK:
1464                 mode |= S_IFBLK;
1465                 break;
1466         case VCHR:
1467                 mode |= S_IFCHR;
1468                 break;
1469         case VLNK:
1470                 mode |= S_IFLNK;
1471                 break;
1472         case VSOCK:
1473                 mode |= S_IFSOCK;
1474                 break;
1475         case VFIFO:
1476                 mode |= S_IFIFO;
1477                 break;
1478         default:
1479                 return (EBADF);
1480         };
1481         sb->st_mode = mode;
1482         sb->st_nlink = vap->va_nlink;
1483         sb->st_uid = vap->va_uid;
1484         sb->st_gid = vap->va_gid;
1485         sb->st_rdev = vap->va_rdev;
1486         if (vap->va_size > OFF_MAX)
1487                 return (EOVERFLOW);
1488         sb->st_size = vap->va_size;
1489         sb->st_atim = vap->va_atime;
1490         sb->st_mtim = vap->va_mtime;
1491         sb->st_ctim = vap->va_ctime;
1492         sb->st_birthtim = vap->va_birthtime;
1493
1494         /*
1495          * According to www.opengroup.org, the meaning of st_blksize is 
1496          *   "a filesystem-specific preferred I/O block size for this 
1497          *    object.  In some filesystem types, this may vary from file
1498          *    to file"
1499          * Use miminum/default of PAGE_SIZE (e.g. for VCHR).
1500          */
1501
1502         sb->st_blksize = max(PAGE_SIZE, vap->va_blocksize);
1503         
1504         sb->st_flags = vap->va_flags;
1505         if (priv_check(td, PRIV_VFS_GENERATION))
1506                 sb->st_gen = 0;
1507         else
1508                 sb->st_gen = vap->va_gen;
1509
1510         sb->st_blocks = vap->va_bytes / S_BLKSIZE;
1511         return (0);
1512 }
1513
1514 /*
1515  * File table vnode ioctl routine.
1516  */
1517 static int
1518 vn_ioctl(fp, com, data, active_cred, td)
1519         struct file *fp;
1520         u_long com;
1521         void *data;
1522         struct ucred *active_cred;
1523         struct thread *td;
1524 {
1525         struct vattr vattr;
1526         struct vnode *vp;
1527         int error;
1528
1529         vp = fp->f_vnode;
1530         switch (vp->v_type) {
1531         case VDIR:
1532         case VREG:
1533                 switch (com) {
1534                 case FIONREAD:
1535                         vn_lock(vp, LK_SHARED | LK_RETRY);
1536                         error = VOP_GETATTR(vp, &vattr, active_cred);
1537                         VOP_UNLOCK(vp, 0);
1538                         if (error == 0)
1539                                 *(int *)data = vattr.va_size - fp->f_offset;
1540                         return (error);
1541                 case FIONBIO:
1542                 case FIOASYNC:
1543                         return (0);
1544                 default:
1545                         return (VOP_IOCTL(vp, com, data, fp->f_flag,
1546                             active_cred, td));
1547                 }
1548         default:
1549                 return (ENOTTY);
1550         }
1551 }
1552
1553 /*
1554  * File table vnode poll routine.
1555  */
1556 static int
1557 vn_poll(fp, events, active_cred, td)
1558         struct file *fp;
1559         int events;
1560         struct ucred *active_cred;
1561         struct thread *td;
1562 {
1563         struct vnode *vp;
1564         int error;
1565
1566         vp = fp->f_vnode;
1567 #ifdef MAC
1568         vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1569         error = mac_vnode_check_poll(active_cred, fp->f_cred, vp);
1570         VOP_UNLOCK(vp, 0);
1571         if (!error)
1572 #endif
1573
1574         error = VOP_POLL(vp, events, fp->f_cred, td);
1575         return (error);
1576 }
1577
1578 /*
1579  * Acquire the requested lock and then check for validity.  LK_RETRY
1580  * permits vn_lock to return doomed vnodes.
1581  */
1582 int
1583 _vn_lock(struct vnode *vp, int flags, char *file, int line)
1584 {
1585         int error;
1586
1587         VNASSERT((flags & LK_TYPE_MASK) != 0, vp,
1588             ("vn_lock called with no locktype."));
1589         do {
1590 #ifdef DEBUG_VFS_LOCKS
1591                 KASSERT(vp->v_holdcnt != 0,
1592                     ("vn_lock %p: zero hold count", vp));
1593 #endif
1594                 error = VOP_LOCK1(vp, flags, file, line);
1595                 flags &= ~LK_INTERLOCK; /* Interlock is always dropped. */
1596                 KASSERT((flags & LK_RETRY) == 0 || error == 0,
1597                     ("LK_RETRY set with incompatible flags (0x%x) or an error occured (%d)",
1598                     flags, error));
1599                 /*
1600                  * Callers specify LK_RETRY if they wish to get dead vnodes.
1601                  * If RETRY is not set, we return ENOENT instead.
1602                  */
1603                 if (error == 0 && vp->v_iflag & VI_DOOMED &&
1604                     (flags & LK_RETRY) == 0) {
1605                         VOP_UNLOCK(vp, 0);
1606                         error = ENOENT;
1607                         break;
1608                 }
1609         } while (flags & LK_RETRY && error != 0);
1610         return (error);
1611 }
1612
1613 /*
1614  * File table vnode close routine.
1615  */
1616 static int
1617 vn_closefile(fp, td)
1618         struct file *fp;
1619         struct thread *td;
1620 {
1621         struct vnode *vp;
1622         struct flock lf;
1623         int error;
1624
1625         vp = fp->f_vnode;
1626         fp->f_ops = &badfileops;
1627
1628         if (fp->f_type == DTYPE_VNODE && fp->f_flag & FHASLOCK)
1629                 vref(vp);
1630
1631         error = vn_close(vp, fp->f_flag, fp->f_cred, td);
1632
1633         if (fp->f_type == DTYPE_VNODE && fp->f_flag & FHASLOCK) {
1634                 lf.l_whence = SEEK_SET;
1635                 lf.l_start = 0;
1636                 lf.l_len = 0;
1637                 lf.l_type = F_UNLCK;
1638                 (void) VOP_ADVLOCK(vp, fp, F_UNLCK, &lf, F_FLOCK);
1639                 vrele(vp);
1640         }
1641         return (error);
1642 }
1643
1644 /*
1645  * Preparing to start a filesystem write operation. If the operation is
1646  * permitted, then we bump the count of operations in progress and
1647  * proceed. If a suspend request is in progress, we wait until the
1648  * suspension is over, and then proceed.
1649  */
1650 static int
1651 vn_start_write_locked(struct mount *mp, int flags)
1652 {
1653         int error, mflags;
1654
1655         mtx_assert(MNT_MTX(mp), MA_OWNED);
1656         error = 0;
1657
1658         /*
1659          * Check on status of suspension.
1660          */
1661         if ((curthread->td_pflags & TDP_IGNSUSP) == 0 ||
1662             mp->mnt_susp_owner != curthread) {
1663                 mflags = ((mp->mnt_vfc->vfc_flags & VFCF_SBDRY) != 0 ?
1664                     (flags & PCATCH) : 0) | (PUSER - 1);
1665                 while ((mp->mnt_kern_flag & MNTK_SUSPEND) != 0) {
1666                         if (flags & V_NOWAIT) {
1667                                 error = EWOULDBLOCK;
1668                                 goto unlock;
1669                         }
1670                         error = msleep(&mp->mnt_flag, MNT_MTX(mp), mflags,
1671                             "suspfs", 0);
1672                         if (error)
1673                                 goto unlock;
1674                 }
1675         }
1676         if (flags & V_XSLEEP)
1677                 goto unlock;
1678         mp->mnt_writeopcount++;
1679 unlock:
1680         if (error != 0 || (flags & V_XSLEEP) != 0)
1681                 MNT_REL(mp);
1682         MNT_IUNLOCK(mp);
1683         return (error);
1684 }
1685
1686 int
1687 vn_start_write(struct vnode *vp, struct mount **mpp, int flags)
1688 {
1689         struct mount *mp;
1690         int error;
1691
1692         KASSERT((flags & V_MNTREF) == 0 || (*mpp != NULL && vp == NULL),
1693             ("V_MNTREF requires mp"));
1694
1695         error = 0;
1696         /*
1697          * If a vnode is provided, get and return the mount point that
1698          * to which it will write.
1699          */
1700         if (vp != NULL) {
1701                 if ((error = VOP_GETWRITEMOUNT(vp, mpp)) != 0) {
1702                         *mpp = NULL;
1703                         if (error != EOPNOTSUPP)
1704                                 return (error);
1705                         return (0);
1706                 }
1707         }
1708         if ((mp = *mpp) == NULL)
1709                 return (0);
1710
1711         /*
1712          * VOP_GETWRITEMOUNT() returns with the mp refcount held through
1713          * a vfs_ref().
1714          * As long as a vnode is not provided we need to acquire a
1715          * refcount for the provided mountpoint too, in order to
1716          * emulate a vfs_ref().
1717          */
1718         MNT_ILOCK(mp);
1719         if (vp == NULL && (flags & V_MNTREF) == 0)
1720                 MNT_REF(mp);
1721
1722         return (vn_start_write_locked(mp, flags));
1723 }
1724
1725 /*
1726  * Secondary suspension. Used by operations such as vop_inactive
1727  * routines that are needed by the higher level functions. These
1728  * are allowed to proceed until all the higher level functions have
1729  * completed (indicated by mnt_writeopcount dropping to zero). At that
1730  * time, these operations are halted until the suspension is over.
1731  */
1732 int
1733 vn_start_secondary_write(struct vnode *vp, struct mount **mpp, int flags)
1734 {
1735         struct mount *mp;
1736         int error;
1737
1738         KASSERT((flags & V_MNTREF) == 0 || (*mpp != NULL && vp == NULL),
1739             ("V_MNTREF requires mp"));
1740
1741  retry:
1742         if (vp != NULL) {
1743                 if ((error = VOP_GETWRITEMOUNT(vp, mpp)) != 0) {
1744                         *mpp = NULL;
1745                         if (error != EOPNOTSUPP)
1746                                 return (error);
1747                         return (0);
1748                 }
1749         }
1750         /*
1751          * If we are not suspended or have not yet reached suspended
1752          * mode, then let the operation proceed.
1753          */
1754         if ((mp = *mpp) == NULL)
1755                 return (0);
1756
1757         /*
1758          * VOP_GETWRITEMOUNT() returns with the mp refcount held through
1759          * a vfs_ref().
1760          * As long as a vnode is not provided we need to acquire a
1761          * refcount for the provided mountpoint too, in order to
1762          * emulate a vfs_ref().
1763          */
1764         MNT_ILOCK(mp);
1765         if (vp == NULL && (flags & V_MNTREF) == 0)
1766                 MNT_REF(mp);
1767         if ((mp->mnt_kern_flag & (MNTK_SUSPENDED | MNTK_SUSPEND2)) == 0) {
1768                 mp->mnt_secondary_writes++;
1769                 mp->mnt_secondary_accwrites++;
1770                 MNT_IUNLOCK(mp);
1771                 return (0);
1772         }
1773         if (flags & V_NOWAIT) {
1774                 MNT_REL(mp);
1775                 MNT_IUNLOCK(mp);
1776                 return (EWOULDBLOCK);
1777         }
1778         /*
1779          * Wait for the suspension to finish.
1780          */
1781         error = msleep(&mp->mnt_flag, MNT_MTX(mp), (PUSER - 1) | PDROP |
1782             ((mp->mnt_vfc->vfc_flags & VFCF_SBDRY) != 0 ? (flags & PCATCH) : 0),
1783             "suspfs", 0);
1784         vfs_rel(mp);
1785         if (error == 0)
1786                 goto retry;
1787         return (error);
1788 }
1789
1790 /*
1791  * Filesystem write operation has completed. If we are suspending and this
1792  * operation is the last one, notify the suspender that the suspension is
1793  * now in effect.
1794  */
1795 void
1796 vn_finished_write(mp)
1797         struct mount *mp;
1798 {
1799         if (mp == NULL)
1800                 return;
1801         MNT_ILOCK(mp);
1802         MNT_REL(mp);
1803         mp->mnt_writeopcount--;
1804         if (mp->mnt_writeopcount < 0)
1805                 panic("vn_finished_write: neg cnt");
1806         if ((mp->mnt_kern_flag & MNTK_SUSPEND) != 0 &&
1807             mp->mnt_writeopcount <= 0)
1808                 wakeup(&mp->mnt_writeopcount);
1809         MNT_IUNLOCK(mp);
1810 }
1811
1812
1813 /*
1814  * Filesystem secondary write operation has completed. If we are
1815  * suspending and this operation is the last one, notify the suspender
1816  * that the suspension is now in effect.
1817  */
1818 void
1819 vn_finished_secondary_write(mp)
1820         struct mount *mp;
1821 {
1822         if (mp == NULL)
1823                 return;
1824         MNT_ILOCK(mp);
1825         MNT_REL(mp);
1826         mp->mnt_secondary_writes--;
1827         if (mp->mnt_secondary_writes < 0)
1828                 panic("vn_finished_secondary_write: neg cnt");
1829         if ((mp->mnt_kern_flag & MNTK_SUSPEND) != 0 &&
1830             mp->mnt_secondary_writes <= 0)
1831                 wakeup(&mp->mnt_secondary_writes);
1832         MNT_IUNLOCK(mp);
1833 }
1834
1835
1836
1837 /*
1838  * Request a filesystem to suspend write operations.
1839  */
1840 int
1841 vfs_write_suspend(struct mount *mp, int flags)
1842 {
1843         int error;
1844
1845         MNT_ILOCK(mp);
1846         if (mp->mnt_susp_owner == curthread) {
1847                 MNT_IUNLOCK(mp);
1848                 return (EALREADY);
1849         }
1850         while (mp->mnt_kern_flag & MNTK_SUSPEND)
1851                 msleep(&mp->mnt_flag, MNT_MTX(mp), PUSER - 1, "wsuspfs", 0);
1852
1853         /*
1854          * Unmount holds a write reference on the mount point.  If we
1855          * own busy reference and drain for writers, we deadlock with
1856          * the reference draining in the unmount path.  Callers of
1857          * vfs_write_suspend() must specify VS_SKIP_UNMOUNT if
1858          * vfs_busy() reference is owned and caller is not in the
1859          * unmount context.
1860          */
1861         if ((flags & VS_SKIP_UNMOUNT) != 0 &&
1862             (mp->mnt_kern_flag & MNTK_UNMOUNT) != 0) {
1863                 MNT_IUNLOCK(mp);
1864                 return (EBUSY);
1865         }
1866
1867         mp->mnt_kern_flag |= MNTK_SUSPEND;
1868         mp->mnt_susp_owner = curthread;
1869         if (mp->mnt_writeopcount > 0)
1870                 (void) msleep(&mp->mnt_writeopcount, 
1871                     MNT_MTX(mp), (PUSER - 1)|PDROP, "suspwt", 0);
1872         else
1873                 MNT_IUNLOCK(mp);
1874         if ((error = VFS_SYNC(mp, MNT_SUSPEND)) != 0)
1875                 vfs_write_resume(mp, 0);
1876         return (error);
1877 }
1878
1879 /*
1880  * Request a filesystem to resume write operations.
1881  */
1882 void
1883 vfs_write_resume(struct mount *mp, int flags)
1884 {
1885
1886         MNT_ILOCK(mp);
1887         if ((mp->mnt_kern_flag & MNTK_SUSPEND) != 0) {
1888                 KASSERT(mp->mnt_susp_owner == curthread, ("mnt_susp_owner"));
1889                 mp->mnt_kern_flag &= ~(MNTK_SUSPEND | MNTK_SUSPEND2 |
1890                                        MNTK_SUSPENDED);
1891                 mp->mnt_susp_owner = NULL;
1892                 wakeup(&mp->mnt_writeopcount);
1893                 wakeup(&mp->mnt_flag);
1894                 curthread->td_pflags &= ~TDP_IGNSUSP;
1895                 if ((flags & VR_START_WRITE) != 0) {
1896                         MNT_REF(mp);
1897                         mp->mnt_writeopcount++;
1898                 }
1899                 MNT_IUNLOCK(mp);
1900                 if ((flags & VR_NO_SUSPCLR) == 0)
1901                         VFS_SUSP_CLEAN(mp);
1902         } else if ((flags & VR_START_WRITE) != 0) {
1903                 MNT_REF(mp);
1904                 vn_start_write_locked(mp, 0);
1905         } else {
1906                 MNT_IUNLOCK(mp);
1907         }
1908 }
1909
1910 /*
1911  * Helper loop around vfs_write_suspend() for filesystem unmount VFS
1912  * methods.
1913  */
1914 int
1915 vfs_write_suspend_umnt(struct mount *mp)
1916 {
1917         int error;
1918
1919         KASSERT((curthread->td_pflags & TDP_IGNSUSP) == 0,
1920             ("vfs_write_suspend_umnt: recursed"));
1921
1922         /* dounmount() already called vn_start_write(). */
1923         for (;;) {
1924                 vn_finished_write(mp);
1925                 error = vfs_write_suspend(mp, 0);
1926                 if (error != 0) {
1927                         vn_start_write(NULL, &mp, V_WAIT);
1928                         return (error);
1929                 }
1930                 MNT_ILOCK(mp);
1931                 if ((mp->mnt_kern_flag & MNTK_SUSPENDED) != 0)
1932                         break;
1933                 MNT_IUNLOCK(mp);
1934                 vn_start_write(NULL, &mp, V_WAIT);
1935         }
1936         mp->mnt_kern_flag &= ~(MNTK_SUSPENDED | MNTK_SUSPEND2);
1937         wakeup(&mp->mnt_flag);
1938         MNT_IUNLOCK(mp);
1939         curthread->td_pflags |= TDP_IGNSUSP;
1940         return (0);
1941 }
1942
1943 /*
1944  * Implement kqueues for files by translating it to vnode operation.
1945  */
1946 static int
1947 vn_kqfilter(struct file *fp, struct knote *kn)
1948 {
1949
1950         return (VOP_KQFILTER(fp->f_vnode, kn));
1951 }
1952
1953 /*
1954  * Simplified in-kernel wrapper calls for extended attribute access.
1955  * Both calls pass in a NULL credential, authorizing as "kernel" access.
1956  * Set IO_NODELOCKED in ioflg if the vnode is already locked.
1957  */
1958 int
1959 vn_extattr_get(struct vnode *vp, int ioflg, int attrnamespace,
1960     const char *attrname, int *buflen, char *buf, struct thread *td)
1961 {
1962         struct uio      auio;
1963         struct iovec    iov;
1964         int     error;
1965
1966         iov.iov_len = *buflen;
1967         iov.iov_base = buf;
1968
1969         auio.uio_iov = &iov;
1970         auio.uio_iovcnt = 1;
1971         auio.uio_rw = UIO_READ;
1972         auio.uio_segflg = UIO_SYSSPACE;
1973         auio.uio_td = td;
1974         auio.uio_offset = 0;
1975         auio.uio_resid = *buflen;
1976
1977         if ((ioflg & IO_NODELOCKED) == 0)
1978                 vn_lock(vp, LK_SHARED | LK_RETRY);
1979
1980         ASSERT_VOP_LOCKED(vp, "IO_NODELOCKED with no vp lock held");
1981
1982         /* authorize attribute retrieval as kernel */
1983         error = VOP_GETEXTATTR(vp, attrnamespace, attrname, &auio, NULL, NULL,
1984             td);
1985
1986         if ((ioflg & IO_NODELOCKED) == 0)
1987                 VOP_UNLOCK(vp, 0);
1988
1989         if (error == 0) {
1990                 *buflen = *buflen - auio.uio_resid;
1991         }
1992
1993         return (error);
1994 }
1995
1996 /*
1997  * XXX failure mode if partially written?
1998  */
1999 int
2000 vn_extattr_set(struct vnode *vp, int ioflg, int attrnamespace,
2001     const char *attrname, int buflen, char *buf, struct thread *td)
2002 {
2003         struct uio      auio;
2004         struct iovec    iov;
2005         struct mount    *mp;
2006         int     error;
2007
2008         iov.iov_len = buflen;
2009         iov.iov_base = buf;
2010
2011         auio.uio_iov = &iov;
2012         auio.uio_iovcnt = 1;
2013         auio.uio_rw = UIO_WRITE;
2014         auio.uio_segflg = UIO_SYSSPACE;
2015         auio.uio_td = td;
2016         auio.uio_offset = 0;
2017         auio.uio_resid = buflen;
2018
2019         if ((ioflg & IO_NODELOCKED) == 0) {
2020                 if ((error = vn_start_write(vp, &mp, V_WAIT)) != 0)
2021                         return (error);
2022                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
2023         }
2024
2025         ASSERT_VOP_LOCKED(vp, "IO_NODELOCKED with no vp lock held");
2026
2027         /* authorize attribute setting as kernel */
2028         error = VOP_SETEXTATTR(vp, attrnamespace, attrname, &auio, NULL, td);
2029
2030         if ((ioflg & IO_NODELOCKED) == 0) {
2031                 vn_finished_write(mp);
2032                 VOP_UNLOCK(vp, 0);
2033         }
2034
2035         return (error);
2036 }
2037
2038 int
2039 vn_extattr_rm(struct vnode *vp, int ioflg, int attrnamespace,
2040     const char *attrname, struct thread *td)
2041 {
2042         struct mount    *mp;
2043         int     error;
2044
2045         if ((ioflg & IO_NODELOCKED) == 0) {
2046                 if ((error = vn_start_write(vp, &mp, V_WAIT)) != 0)
2047                         return (error);
2048                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
2049         }
2050
2051         ASSERT_VOP_LOCKED(vp, "IO_NODELOCKED with no vp lock held");
2052
2053         /* authorize attribute removal as kernel */
2054         error = VOP_DELETEEXTATTR(vp, attrnamespace, attrname, NULL, td);
2055         if (error == EOPNOTSUPP)
2056                 error = VOP_SETEXTATTR(vp, attrnamespace, attrname, NULL,
2057                     NULL, td);
2058
2059         if ((ioflg & IO_NODELOCKED) == 0) {
2060                 vn_finished_write(mp);
2061                 VOP_UNLOCK(vp, 0);
2062         }
2063
2064         return (error);
2065 }
2066
2067 static int
2068 vn_get_ino_alloc_vget(struct mount *mp, void *arg, int lkflags,
2069     struct vnode **rvp)
2070 {
2071
2072         return (VFS_VGET(mp, *(ino_t *)arg, lkflags, rvp));
2073 }
2074
2075 int
2076 vn_vget_ino(struct vnode *vp, ino_t ino, int lkflags, struct vnode **rvp)
2077 {
2078
2079         return (vn_vget_ino_gen(vp, vn_get_ino_alloc_vget, &ino,
2080             lkflags, rvp));
2081 }
2082
2083 int
2084 vn_vget_ino_gen(struct vnode *vp, vn_get_ino_t alloc, void *alloc_arg,
2085     int lkflags, struct vnode **rvp)
2086 {
2087         struct mount *mp;
2088         int ltype, error;
2089
2090         ASSERT_VOP_LOCKED(vp, "vn_vget_ino_get");
2091         mp = vp->v_mount;
2092         ltype = VOP_ISLOCKED(vp);
2093         KASSERT(ltype == LK_EXCLUSIVE || ltype == LK_SHARED,
2094             ("vn_vget_ino: vp not locked"));
2095         error = vfs_busy(mp, MBF_NOWAIT);
2096         if (error != 0) {
2097                 vfs_ref(mp);
2098                 VOP_UNLOCK(vp, 0);
2099                 error = vfs_busy(mp, 0);
2100                 vn_lock(vp, ltype | LK_RETRY);
2101                 vfs_rel(mp);
2102                 if (error != 0)
2103                         return (ENOENT);
2104                 if (vp->v_iflag & VI_DOOMED) {
2105                         vfs_unbusy(mp);
2106                         return (ENOENT);
2107                 }
2108         }
2109         VOP_UNLOCK(vp, 0);
2110         error = alloc(mp, alloc_arg, lkflags, rvp);
2111         vfs_unbusy(mp);
2112         if (*rvp != vp)
2113                 vn_lock(vp, ltype | LK_RETRY);
2114         if (vp->v_iflag & VI_DOOMED) {
2115                 if (error == 0) {
2116                         if (*rvp == vp)
2117                                 vunref(vp);
2118                         else
2119                                 vput(*rvp);
2120                 }
2121                 error = ENOENT;
2122         }
2123         return (error);
2124 }
2125
2126 int
2127 vn_rlimit_fsize(const struct vnode *vp, const struct uio *uio,
2128     const struct thread *td)
2129 {
2130
2131         if (vp->v_type != VREG || td == NULL)
2132                 return (0);
2133         PROC_LOCK(td->td_proc);
2134         if ((uoff_t)uio->uio_offset + uio->uio_resid >
2135             lim_cur(td->td_proc, RLIMIT_FSIZE)) {
2136                 kern_psignal(td->td_proc, SIGXFSZ);
2137                 PROC_UNLOCK(td->td_proc);
2138                 return (EFBIG);
2139         }
2140         PROC_UNLOCK(td->td_proc);
2141         return (0);
2142 }
2143
2144 int
2145 vn_chmod(struct file *fp, mode_t mode, struct ucred *active_cred,
2146     struct thread *td)
2147 {
2148         struct vnode *vp;
2149
2150         vp = fp->f_vnode;
2151 #ifdef AUDIT
2152         vn_lock(vp, LK_SHARED | LK_RETRY);
2153         AUDIT_ARG_VNODE1(vp);
2154         VOP_UNLOCK(vp, 0);
2155 #endif
2156         return (setfmode(td, active_cred, vp, mode));
2157 }
2158
2159 int
2160 vn_chown(struct file *fp, uid_t uid, gid_t gid, struct ucred *active_cred,
2161     struct thread *td)
2162 {
2163         struct vnode *vp;
2164
2165         vp = fp->f_vnode;
2166 #ifdef AUDIT
2167         vn_lock(vp, LK_SHARED | LK_RETRY);
2168         AUDIT_ARG_VNODE1(vp);
2169         VOP_UNLOCK(vp, 0);
2170 #endif
2171         return (setfown(td, active_cred, vp, uid, gid));
2172 }
2173
2174 void
2175 vn_pages_remove(struct vnode *vp, vm_pindex_t start, vm_pindex_t end)
2176 {
2177         vm_object_t object;
2178
2179         if ((object = vp->v_object) == NULL)
2180                 return;
2181         VM_OBJECT_WLOCK(object);
2182         vm_object_page_remove(object, start, end, 0);
2183         VM_OBJECT_WUNLOCK(object);
2184 }
2185
2186 int
2187 vn_bmap_seekhole(struct vnode *vp, u_long cmd, off_t *off, struct ucred *cred)
2188 {
2189         struct vattr va;
2190         daddr_t bn, bnp;
2191         uint64_t bsize;
2192         off_t noff;
2193         int error;
2194
2195         KASSERT(cmd == FIOSEEKHOLE || cmd == FIOSEEKDATA,
2196             ("Wrong command %lu", cmd));
2197
2198         if (vn_lock(vp, LK_SHARED) != 0)
2199                 return (EBADF);
2200         if (vp->v_type != VREG) {
2201                 error = ENOTTY;
2202                 goto unlock;
2203         }
2204         error = VOP_GETATTR(vp, &va, cred);
2205         if (error != 0)
2206                 goto unlock;
2207         noff = *off;
2208         if (noff >= va.va_size) {
2209                 error = ENXIO;
2210                 goto unlock;
2211         }
2212         bsize = vp->v_mount->mnt_stat.f_iosize;
2213         for (bn = noff / bsize; noff < va.va_size; bn++, noff += bsize) {
2214                 error = VOP_BMAP(vp, bn, NULL, &bnp, NULL, NULL);
2215                 if (error == EOPNOTSUPP) {
2216                         error = ENOTTY;
2217                         goto unlock;
2218                 }
2219                 if ((bnp == -1 && cmd == FIOSEEKHOLE) ||
2220                     (bnp != -1 && cmd == FIOSEEKDATA)) {
2221                         noff = bn * bsize;
2222                         if (noff < *off)
2223                                 noff = *off;
2224                         goto unlock;
2225                 }
2226         }
2227         if (noff > va.va_size)
2228                 noff = va.va_size;
2229         /* noff == va.va_size. There is an implicit hole at the end of file. */
2230         if (cmd == FIOSEEKDATA)
2231                 error = ENXIO;
2232 unlock:
2233         VOP_UNLOCK(vp, 0);
2234         if (error == 0)
2235                 *off = noff;
2236         return (error);
2237 }
2238
2239 int
2240 vn_seek(struct file *fp, off_t offset, int whence, struct thread *td)
2241 {
2242         struct ucred *cred;
2243         struct vnode *vp;
2244         struct vattr vattr;
2245         off_t foffset, size;
2246         int error, noneg;
2247
2248         cred = td->td_ucred;
2249         vp = fp->f_vnode;
2250         foffset = foffset_lock(fp, 0);
2251         noneg = (vp->v_type != VCHR);
2252         error = 0;
2253         switch (whence) {
2254         case L_INCR:
2255                 if (noneg &&
2256                     (foffset < 0 ||
2257                     (offset > 0 && foffset > OFF_MAX - offset))) {
2258                         error = EOVERFLOW;
2259                         break;
2260                 }
2261                 offset += foffset;
2262                 break;
2263         case L_XTND:
2264                 vn_lock(vp, LK_SHARED | LK_RETRY);
2265                 error = VOP_GETATTR(vp, &vattr, cred);
2266                 VOP_UNLOCK(vp, 0);
2267                 if (error)
2268                         break;
2269
2270                 /*
2271                  * If the file references a disk device, then fetch
2272                  * the media size and use that to determine the ending
2273                  * offset.
2274                  */
2275                 if (vattr.va_size == 0 && vp->v_type == VCHR &&
2276                     fo_ioctl(fp, DIOCGMEDIASIZE, &size, cred, td) == 0)
2277                         vattr.va_size = size;
2278                 if (noneg &&
2279                     (vattr.va_size > OFF_MAX ||
2280                     (offset > 0 && vattr.va_size > OFF_MAX - offset))) {
2281                         error = EOVERFLOW;
2282                         break;
2283                 }
2284                 offset += vattr.va_size;
2285                 break;
2286         case L_SET:
2287                 break;
2288         case SEEK_DATA:
2289                 error = fo_ioctl(fp, FIOSEEKDATA, &offset, cred, td);
2290                 break;
2291         case SEEK_HOLE:
2292                 error = fo_ioctl(fp, FIOSEEKHOLE, &offset, cred, td);
2293                 break;
2294         default:
2295                 error = EINVAL;
2296         }
2297         if (error == 0 && noneg && offset < 0)
2298                 error = EINVAL;
2299         if (error != 0)
2300                 goto drop;
2301         VFS_KNOTE_UNLOCKED(vp, 0);
2302         *(off_t *)(td->td_retval) = offset;
2303 drop:
2304         foffset_unlock(fp, offset, error != 0 ? FOF_NOUPDATE : 0);
2305         return (error);
2306 }
2307
2308 int
2309 vn_utimes_perm(struct vnode *vp, struct vattr *vap, struct ucred *cred,
2310     struct thread *td)
2311 {
2312         int error;
2313
2314         /*
2315          * Grant permission if the caller is the owner of the file, or
2316          * the super-user, or has ACL_WRITE_ATTRIBUTES permission on
2317          * on the file.  If the time pointer is null, then write
2318          * permission on the file is also sufficient.
2319          *
2320          * From NFSv4.1, draft 21, 6.2.1.3.1, Discussion of Mask Attributes:
2321          * A user having ACL_WRITE_DATA or ACL_WRITE_ATTRIBUTES
2322          * will be allowed to set the times [..] to the current
2323          * server time.
2324          */
2325         error = VOP_ACCESSX(vp, VWRITE_ATTRIBUTES, cred, td);
2326         if (error != 0 && (vap->va_vaflags & VA_UTIMES_NULL) != 0)
2327                 error = VOP_ACCESS(vp, VWRITE, cred, td);
2328         return (error);
2329 }