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