Move the world out of /zfs/ and seperate out module build tree
[zfs.git] / module / zfs / zfs_vnops.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25
26 /* Portions Copyright 2007 Jeremy Teo */
27
28 #include <sys/types.h>
29 #include <sys/param.h>
30 #include <sys/time.h>
31 #include <sys/systm.h>
32 #include <sys/sysmacros.h>
33 #include <sys/resource.h>
34 #include <sys/vfs.h>
35 #include <sys/vfs_opreg.h>
36 #include <sys/vnode.h>
37 #include <sys/file.h>
38 #include <sys/stat.h>
39 #include <sys/kmem.h>
40 #include <sys/taskq.h>
41 #include <sys/uio.h>
42 #include <sys/vmsystm.h>
43 #include <sys/atomic.h>
44 #include <sys/vm.h>
45 #include <vm/seg_vn.h>
46 #include <vm/pvn.h>
47 #include <vm/as.h>
48 #include <vm/kpm.h>
49 #include <vm/seg_kpm.h>
50 #include <sys/mman.h>
51 #include <sys/pathname.h>
52 #include <sys/cmn_err.h>
53 #include <sys/errno.h>
54 #include <sys/unistd.h>
55 #include <sys/zfs_dir.h>
56 #include <sys/zfs_acl.h>
57 #include <sys/zfs_ioctl.h>
58 #include <sys/fs/zfs.h>
59 #include <sys/dmu.h>
60 #include <sys/spa.h>
61 #include <sys/txg.h>
62 #include <sys/dbuf.h>
63 #include <sys/zap.h>
64 #include <sys/dirent.h>
65 #include <sys/policy.h>
66 #include <sys/sunddi.h>
67 #include <sys/filio.h>
68 #include <sys/sid.h>
69 #include "fs/fs_subr.h"
70 #include <sys/zfs_ctldir.h>
71 #include <sys/zfs_fuid.h>
72 #include <sys/dnlc.h>
73 #include <sys/zfs_rlock.h>
74 #include <sys/extdirent.h>
75 #include <sys/kidmap.h>
76 #include <sys/cred_impl.h>
77 #include <sys/attr.h>
78
79 /*
80  * Programming rules.
81  *
82  * Each vnode op performs some logical unit of work.  To do this, the ZPL must
83  * properly lock its in-core state, create a DMU transaction, do the work,
84  * record this work in the intent log (ZIL), commit the DMU transaction,
85  * and wait for the intent log to commit if it is a synchronous operation.
86  * Moreover, the vnode ops must work in both normal and log replay context.
87  * The ordering of events is important to avoid deadlocks and references
88  * to freed memory.  The example below illustrates the following Big Rules:
89  *
90  *  (1) A check must be made in each zfs thread for a mounted file system.
91  *      This is done avoiding races using ZFS_ENTER(zfsvfs).
92  *      A ZFS_EXIT(zfsvfs) is needed before all returns.  Any znodes
93  *      must be checked with ZFS_VERIFY_ZP(zp).  Both of these macros
94  *      can return EIO from the calling function.
95  *
96  *  (2) VN_RELE() should always be the last thing except for zil_commit()
97  *      (if necessary) and ZFS_EXIT(). This is for 3 reasons:
98  *      First, if it's the last reference, the vnode/znode
99  *      can be freed, so the zp may point to freed memory.  Second, the last
100  *      reference will call zfs_zinactive(), which may induce a lot of work --
101  *      pushing cached pages (which acquires range locks) and syncing out
102  *      cached atime changes.  Third, zfs_zinactive() may require a new tx,
103  *      which could deadlock the system if you were already holding one.
104  *
105  *  (3) All range locks must be grabbed before calling dmu_tx_assign(),
106  *      as they can span dmu_tx_assign() calls.
107  *
108  *  (4) Always pass zfsvfs->z_assign as the second argument to dmu_tx_assign().
109  *      In normal operation, this will be TXG_NOWAIT.  During ZIL replay,
110  *      it will be a specific txg.  Either way, dmu_tx_assign() never blocks.
111  *      This is critical because we don't want to block while holding locks.
112  *      Note, in particular, that if a lock is sometimes acquired before
113  *      the tx assigns, and sometimes after (e.g. z_lock), then failing to
114  *      use a non-blocking assign can deadlock the system.  The scenario:
115  *
116  *      Thread A has grabbed a lock before calling dmu_tx_assign().
117  *      Thread B is in an already-assigned tx, and blocks for this lock.
118  *      Thread A calls dmu_tx_assign(TXG_WAIT) and blocks in txg_wait_open()
119  *      forever, because the previous txg can't quiesce until B's tx commits.
120  *
121  *      If dmu_tx_assign() returns ERESTART and zfsvfs->z_assign is TXG_NOWAIT,
122  *      then drop all locks, call dmu_tx_wait(), and try again.
123  *
124  *  (5) If the operation succeeded, generate the intent log entry for it
125  *      before dropping locks.  This ensures that the ordering of events
126  *      in the intent log matches the order in which they actually occurred.
127  *
128  *  (6) At the end of each vnode op, the DMU tx must always commit,
129  *      regardless of whether there were any errors.
130  *
131  *  (7) After dropping all locks, invoke zil_commit(zilog, seq, foid)
132  *      to ensure that synchronous semantics are provided when necessary.
133  *
134  * In general, this is how things should be ordered in each vnode op:
135  *
136  *      ZFS_ENTER(zfsvfs);              // exit if unmounted
137  * top:
138  *      zfs_dirent_lock(&dl, ...)       // lock directory entry (may VN_HOLD())
139  *      rw_enter(...);                  // grab any other locks you need
140  *      tx = dmu_tx_create(...);        // get DMU tx
141  *      dmu_tx_hold_*();                // hold each object you might modify
142  *      error = dmu_tx_assign(tx, zfsvfs->z_assign);    // try to assign
143  *      if (error) {
144  *              rw_exit(...);           // drop locks
145  *              zfs_dirent_unlock(dl);  // unlock directory entry
146  *              VN_RELE(...);           // release held vnodes
147  *              if (error == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
148  *                      dmu_tx_wait(tx);
149  *                      dmu_tx_abort(tx);
150  *                      goto top;
151  *              }
152  *              dmu_tx_abort(tx);       // abort DMU tx
153  *              ZFS_EXIT(zfsvfs);       // finished in zfs
154  *              return (error);         // really out of space
155  *      }
156  *      error = do_real_work();         // do whatever this VOP does
157  *      if (error == 0)
158  *              zfs_log_*(...);         // on success, make ZIL entry
159  *      dmu_tx_commit(tx);              // commit DMU tx -- error or not
160  *      rw_exit(...);                   // drop locks
161  *      zfs_dirent_unlock(dl);          // unlock directory entry
162  *      VN_RELE(...);                   // release held vnodes
163  *      zil_commit(zilog, seq, foid);   // synchronous when necessary
164  *      ZFS_EXIT(zfsvfs);               // finished in zfs
165  *      return (error);                 // done, report error
166  */
167
168 /* ARGSUSED */
169 static int
170 zfs_open(vnode_t **vpp, int flag, cred_t *cr, caller_context_t *ct)
171 {
172         znode_t *zp = VTOZ(*vpp);
173         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
174
175         ZFS_ENTER(zfsvfs);
176         ZFS_VERIFY_ZP(zp);
177
178         if ((flag & FWRITE) && (zp->z_phys->zp_flags & ZFS_APPENDONLY) &&
179             ((flag & FAPPEND) == 0)) {
180                 ZFS_EXIT(zfsvfs);
181                 return (EPERM);
182         }
183
184         if (!zfs_has_ctldir(zp) && zp->z_zfsvfs->z_vscan &&
185             ZTOV(zp)->v_type == VREG &&
186             !(zp->z_phys->zp_flags & ZFS_AV_QUARANTINED) &&
187             zp->z_phys->zp_size > 0) {
188                 if (fs_vscan(*vpp, cr, 0) != 0) {
189                         ZFS_EXIT(zfsvfs);
190                         return (EACCES);
191                 }
192         }
193
194         /* Keep a count of the synchronous opens in the znode */
195         if (flag & (FSYNC | FDSYNC))
196                 atomic_inc_32(&zp->z_sync_cnt);
197
198         ZFS_EXIT(zfsvfs);
199         return (0);
200 }
201
202 /* ARGSUSED */
203 static int
204 zfs_close(vnode_t *vp, int flag, int count, offset_t offset, cred_t *cr,
205     caller_context_t *ct)
206 {
207         znode_t *zp = VTOZ(vp);
208         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
209
210         ZFS_ENTER(zfsvfs);
211         ZFS_VERIFY_ZP(zp);
212
213         /* Decrement the synchronous opens in the znode */
214         if ((flag & (FSYNC | FDSYNC)) && (count == 1))
215                 atomic_dec_32(&zp->z_sync_cnt);
216
217         /*
218          * Clean up any locks held by this process on the vp.
219          */
220         cleanlocks(vp, ddi_get_pid(), 0);
221         cleanshares(vp, ddi_get_pid());
222
223         if (!zfs_has_ctldir(zp) && zp->z_zfsvfs->z_vscan &&
224             ZTOV(zp)->v_type == VREG &&
225             !(zp->z_phys->zp_flags & ZFS_AV_QUARANTINED) &&
226             zp->z_phys->zp_size > 0)
227                 VERIFY(fs_vscan(vp, cr, 1) == 0);
228
229         ZFS_EXIT(zfsvfs);
230         return (0);
231 }
232
233 /*
234  * Lseek support for finding holes (cmd == _FIO_SEEK_HOLE) and
235  * data (cmd == _FIO_SEEK_DATA). "off" is an in/out parameter.
236  */
237 static int
238 zfs_holey(vnode_t *vp, int cmd, offset_t *off)
239 {
240         znode_t *zp = VTOZ(vp);
241         uint64_t noff = (uint64_t)*off; /* new offset */
242         uint64_t file_sz;
243         int error;
244         boolean_t hole;
245
246         file_sz = zp->z_phys->zp_size;
247         if (noff >= file_sz)  {
248                 return (ENXIO);
249         }
250
251         if (cmd == _FIO_SEEK_HOLE)
252                 hole = B_TRUE;
253         else
254                 hole = B_FALSE;
255
256         error = dmu_offset_next(zp->z_zfsvfs->z_os, zp->z_id, hole, &noff);
257
258         /* end of file? */
259         if ((error == ESRCH) || (noff > file_sz)) {
260                 /*
261                  * Handle the virtual hole at the end of file.
262                  */
263                 if (hole) {
264                         *off = file_sz;
265                         return (0);
266                 }
267                 return (ENXIO);
268         }
269
270         if (noff < *off)
271                 return (error);
272         *off = noff;
273         return (error);
274 }
275
276 /* ARGSUSED */
277 static int
278 zfs_ioctl(vnode_t *vp, int com, intptr_t data, int flag, cred_t *cred,
279     int *rvalp, caller_context_t *ct)
280 {
281         offset_t off;
282         int error;
283         zfsvfs_t *zfsvfs;
284         znode_t *zp;
285
286         switch (com) {
287         case _FIOFFS:
288                 return (zfs_sync(vp->v_vfsp, 0, cred));
289
290                 /*
291                  * The following two ioctls are used by bfu.  Faking out,
292                  * necessary to avoid bfu errors.
293                  */
294         case _FIOGDIO:
295         case _FIOSDIO:
296                 return (0);
297
298         case _FIO_SEEK_DATA:
299         case _FIO_SEEK_HOLE:
300                 if (ddi_copyin((void *)data, &off, sizeof (off), flag))
301                         return (EFAULT);
302
303                 zp = VTOZ(vp);
304                 zfsvfs = zp->z_zfsvfs;
305                 ZFS_ENTER(zfsvfs);
306                 ZFS_VERIFY_ZP(zp);
307
308                 /* offset parameter is in/out */
309                 error = zfs_holey(vp, com, &off);
310                 ZFS_EXIT(zfsvfs);
311                 if (error)
312                         return (error);
313                 if (ddi_copyout(&off, (void *)data, sizeof (off), flag))
314                         return (EFAULT);
315                 return (0);
316         }
317         return (ENOTTY);
318 }
319
320 /*
321  * Utility functions to map and unmap a single physical page.  These
322  * are used to manage the mappable copies of ZFS file data, and therefore
323  * do not update ref/mod bits.
324  */
325 caddr_t
326 zfs_map_page(page_t *pp, enum seg_rw rw)
327 {
328         if (kpm_enable)
329                 return (hat_kpm_mapin(pp, 0));
330         ASSERT(rw == S_READ || rw == S_WRITE);
331         return (ppmapin(pp, PROT_READ | ((rw == S_WRITE) ? PROT_WRITE : 0),
332             (caddr_t)-1));
333 }
334
335 void
336 zfs_unmap_page(page_t *pp, caddr_t addr)
337 {
338         if (kpm_enable) {
339                 hat_kpm_mapout(pp, 0, addr);
340         } else {
341                 ppmapout(addr);
342         }
343 }
344
345 /*
346  * When a file is memory mapped, we must keep the IO data synchronized
347  * between the DMU cache and the memory mapped pages.  What this means:
348  *
349  * On Write:    If we find a memory mapped page, we write to *both*
350  *              the page and the dmu buffer.
351  *
352  * NOTE: We will always "break up" the IO into PAGESIZE uiomoves when
353  *      the file is memory mapped.
354  */
355 static int
356 mappedwrite(vnode_t *vp, int nbytes, uio_t *uio, dmu_tx_t *tx)
357 {
358         znode_t *zp = VTOZ(vp);
359         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
360         int64_t start, off;
361         int len = nbytes;
362         int error = 0;
363
364         start = uio->uio_loffset;
365         off = start & PAGEOFFSET;
366         for (start &= PAGEMASK; len > 0; start += PAGESIZE) {
367                 page_t *pp;
368                 uint64_t bytes = MIN(PAGESIZE - off, len);
369                 uint64_t woff = uio->uio_loffset;
370
371                 /*
372                  * We don't want a new page to "appear" in the middle of
373                  * the file update (because it may not get the write
374                  * update data), so we grab a lock to block
375                  * zfs_getpage().
376                  */
377                 rw_enter(&zp->z_map_lock, RW_WRITER);
378                 if (pp = page_lookup(vp, start, SE_SHARED)) {
379                         caddr_t va;
380
381                         rw_exit(&zp->z_map_lock);
382                         va = zfs_map_page(pp, S_WRITE);
383                         error = uiomove(va+off, bytes, UIO_WRITE, uio);
384                         if (error == 0) {
385                                 dmu_write(zfsvfs->z_os, zp->z_id,
386                                     woff, bytes, va+off, tx);
387                         }
388                         zfs_unmap_page(pp, va);
389                         page_unlock(pp);
390                 } else {
391                         error = dmu_write_uio(zfsvfs->z_os, zp->z_id,
392                             uio, bytes, tx);
393                         rw_exit(&zp->z_map_lock);
394                 }
395                 len -= bytes;
396                 off = 0;
397                 if (error)
398                         break;
399         }
400         return (error);
401 }
402
403 /*
404  * When a file is memory mapped, we must keep the IO data synchronized
405  * between the DMU cache and the memory mapped pages.  What this means:
406  *
407  * On Read:     We "read" preferentially from memory mapped pages,
408  *              else we default from the dmu buffer.
409  *
410  * NOTE: We will always "break up" the IO into PAGESIZE uiomoves when
411  *      the file is memory mapped.
412  */
413 static int
414 mappedread(vnode_t *vp, int nbytes, uio_t *uio)
415 {
416         znode_t *zp = VTOZ(vp);
417         objset_t *os = zp->z_zfsvfs->z_os;
418         int64_t start, off;
419         int len = nbytes;
420         int error = 0;
421
422         start = uio->uio_loffset;
423         off = start & PAGEOFFSET;
424         for (start &= PAGEMASK; len > 0; start += PAGESIZE) {
425                 page_t *pp;
426                 uint64_t bytes = MIN(PAGESIZE - off, len);
427
428                 if (pp = page_lookup(vp, start, SE_SHARED)) {
429                         caddr_t va;
430
431                         va = zfs_map_page(pp, S_READ);
432                         error = uiomove(va + off, bytes, UIO_READ, uio);
433                         zfs_unmap_page(pp, va);
434                         page_unlock(pp);
435                 } else {
436                         error = dmu_read_uio(os, zp->z_id, uio, bytes);
437                 }
438                 len -= bytes;
439                 off = 0;
440                 if (error)
441                         break;
442         }
443         return (error);
444 }
445
446 offset_t zfs_read_chunk_size = 1024 * 1024; /* Tunable */
447
448 /*
449  * Read bytes from specified file into supplied buffer.
450  *
451  *      IN:     vp      - vnode of file to be read from.
452  *              uio     - structure supplying read location, range info,
453  *                        and return buffer.
454  *              ioflag  - SYNC flags; used to provide FRSYNC semantics.
455  *              cr      - credentials of caller.
456  *              ct      - caller context
457  *
458  *      OUT:    uio     - updated offset and range, buffer filled.
459  *
460  *      RETURN: 0 if success
461  *              error code if failure
462  *
463  * Side Effects:
464  *      vp - atime updated if byte count > 0
465  */
466 /* ARGSUSED */
467 static int
468 zfs_read(vnode_t *vp, uio_t *uio, int ioflag, cred_t *cr, caller_context_t *ct)
469 {
470         znode_t         *zp = VTOZ(vp);
471         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
472         objset_t        *os;
473         ssize_t         n, nbytes;
474         int             error;
475         rl_t            *rl;
476
477         ZFS_ENTER(zfsvfs);
478         ZFS_VERIFY_ZP(zp);
479         os = zfsvfs->z_os;
480
481         if (zp->z_phys->zp_flags & ZFS_AV_QUARANTINED) {
482                 ZFS_EXIT(zfsvfs);
483                 return (EACCES);
484         }
485
486         /*
487          * Validate file offset
488          */
489         if (uio->uio_loffset < (offset_t)0) {
490                 ZFS_EXIT(zfsvfs);
491                 return (EINVAL);
492         }
493
494         /*
495          * Fasttrack empty reads
496          */
497         if (uio->uio_resid == 0) {
498                 ZFS_EXIT(zfsvfs);
499                 return (0);
500         }
501
502         /*
503          * Check for mandatory locks
504          */
505         if (MANDMODE((mode_t)zp->z_phys->zp_mode)) {
506                 if (error = chklock(vp, FREAD,
507                     uio->uio_loffset, uio->uio_resid, uio->uio_fmode, ct)) {
508                         ZFS_EXIT(zfsvfs);
509                         return (error);
510                 }
511         }
512
513         /*
514          * If we're in FRSYNC mode, sync out this znode before reading it.
515          */
516         if (ioflag & FRSYNC)
517                 zil_commit(zfsvfs->z_log, zp->z_last_itx, zp->z_id);
518
519         /*
520          * Lock the range against changes.
521          */
522         rl = zfs_range_lock(zp, uio->uio_loffset, uio->uio_resid, RL_READER);
523
524         /*
525          * If we are reading past end-of-file we can skip
526          * to the end; but we might still need to set atime.
527          */
528         if (uio->uio_loffset >= zp->z_phys->zp_size) {
529                 error = 0;
530                 goto out;
531         }
532
533         ASSERT(uio->uio_loffset < zp->z_phys->zp_size);
534         n = MIN(uio->uio_resid, zp->z_phys->zp_size - uio->uio_loffset);
535
536         while (n > 0) {
537                 nbytes = MIN(n, zfs_read_chunk_size -
538                     P2PHASE(uio->uio_loffset, zfs_read_chunk_size));
539
540                 if (vn_has_cached_data(vp))
541                         error = mappedread(vp, nbytes, uio);
542                 else
543                         error = dmu_read_uio(os, zp->z_id, uio, nbytes);
544                 if (error) {
545                         /* convert checksum errors into IO errors */
546                         if (error == ECKSUM)
547                                 error = EIO;
548                         break;
549                 }
550
551                 n -= nbytes;
552         }
553
554 out:
555         zfs_range_unlock(rl);
556
557         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
558         ZFS_EXIT(zfsvfs);
559         return (error);
560 }
561
562 /*
563  * Write the bytes to a file.
564  *
565  *      IN:     vp      - vnode of file to be written to.
566  *              uio     - structure supplying write location, range info,
567  *                        and data buffer.
568  *              ioflag  - FAPPEND flag set if in append mode.
569  *              cr      - credentials of caller.
570  *              ct      - caller context (NFS/CIFS fem monitor only)
571  *
572  *      OUT:    uio     - updated offset and range.
573  *
574  *      RETURN: 0 if success
575  *              error code if failure
576  *
577  * Timestamps:
578  *      vp - ctime|mtime updated if byte count > 0
579  */
580 /* ARGSUSED */
581 static int
582 zfs_write(vnode_t *vp, uio_t *uio, int ioflag, cred_t *cr, caller_context_t *ct)
583 {
584         znode_t         *zp = VTOZ(vp);
585         rlim64_t        limit = uio->uio_llimit;
586         ssize_t         start_resid = uio->uio_resid;
587         ssize_t         tx_bytes;
588         uint64_t        end_size;
589         dmu_tx_t        *tx;
590         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
591         zilog_t         *zilog;
592         offset_t        woff;
593         ssize_t         n, nbytes;
594         rl_t            *rl;
595         int             max_blksz = zfsvfs->z_max_blksz;
596         uint64_t        pflags;
597         int             error;
598
599         /*
600          * Fasttrack empty write
601          */
602         n = start_resid;
603         if (n == 0)
604                 return (0);
605
606         if (limit == RLIM64_INFINITY || limit > MAXOFFSET_T)
607                 limit = MAXOFFSET_T;
608
609         ZFS_ENTER(zfsvfs);
610         ZFS_VERIFY_ZP(zp);
611
612         /*
613          * If immutable or not appending then return EPERM
614          */
615         pflags = zp->z_phys->zp_flags;
616         if ((pflags & (ZFS_IMMUTABLE | ZFS_READONLY)) ||
617             ((pflags & ZFS_APPENDONLY) && !(ioflag & FAPPEND) &&
618             (uio->uio_loffset < zp->z_phys->zp_size))) {
619                 ZFS_EXIT(zfsvfs);
620                 return (EPERM);
621         }
622
623         zilog = zfsvfs->z_log;
624
625         /*
626          * Pre-fault the pages to ensure slow (eg NFS) pages
627          * don't hold up txg.
628          */
629         uio_prefaultpages(n, uio);
630
631         /*
632          * If in append mode, set the io offset pointer to eof.
633          */
634         if (ioflag & FAPPEND) {
635                 /*
636                  * Range lock for a file append:
637                  * The value for the start of range will be determined by
638                  * zfs_range_lock() (to guarantee append semantics).
639                  * If this write will cause the block size to increase,
640                  * zfs_range_lock() will lock the entire file, so we must
641                  * later reduce the range after we grow the block size.
642                  */
643                 rl = zfs_range_lock(zp, 0, n, RL_APPEND);
644                 if (rl->r_len == UINT64_MAX) {
645                         /* overlocked, zp_size can't change */
646                         woff = uio->uio_loffset = zp->z_phys->zp_size;
647                 } else {
648                         woff = uio->uio_loffset = rl->r_off;
649                 }
650         } else {
651                 woff = uio->uio_loffset;
652                 /*
653                  * Validate file offset
654                  */
655                 if (woff < 0) {
656                         ZFS_EXIT(zfsvfs);
657                         return (EINVAL);
658                 }
659
660                 /*
661                  * If we need to grow the block size then zfs_range_lock()
662                  * will lock a wider range than we request here.
663                  * Later after growing the block size we reduce the range.
664                  */
665                 rl = zfs_range_lock(zp, woff, n, RL_WRITER);
666         }
667
668         if (woff >= limit) {
669                 zfs_range_unlock(rl);
670                 ZFS_EXIT(zfsvfs);
671                 return (EFBIG);
672         }
673
674         if ((woff + n) > limit || woff > (limit - n))
675                 n = limit - woff;
676
677         /*
678          * Check for mandatory locks
679          */
680         if (MANDMODE((mode_t)zp->z_phys->zp_mode) &&
681             (error = chklock(vp, FWRITE, woff, n, uio->uio_fmode, ct)) != 0) {
682                 zfs_range_unlock(rl);
683                 ZFS_EXIT(zfsvfs);
684                 return (error);
685         }
686         end_size = MAX(zp->z_phys->zp_size, woff + n);
687
688         /*
689          * Write the file in reasonable size chunks.  Each chunk is written
690          * in a separate transaction; this keeps the intent log records small
691          * and allows us to do more fine-grained space accounting.
692          */
693         while (n > 0) {
694                 /*
695                  * Start a transaction.
696                  */
697                 woff = uio->uio_loffset;
698                 tx = dmu_tx_create(zfsvfs->z_os);
699                 dmu_tx_hold_bonus(tx, zp->z_id);
700                 dmu_tx_hold_write(tx, zp->z_id, woff, MIN(n, max_blksz));
701                 error = dmu_tx_assign(tx, zfsvfs->z_assign);
702                 if (error) {
703                         if (error == ERESTART &&
704                             zfsvfs->z_assign == TXG_NOWAIT) {
705                                 dmu_tx_wait(tx);
706                                 dmu_tx_abort(tx);
707                                 continue;
708                         }
709                         dmu_tx_abort(tx);
710                         break;
711                 }
712
713                 /*
714                  * If zfs_range_lock() over-locked we grow the blocksize
715                  * and then reduce the lock range.  This will only happen
716                  * on the first iteration since zfs_range_reduce() will
717                  * shrink down r_len to the appropriate size.
718                  */
719                 if (rl->r_len == UINT64_MAX) {
720                         uint64_t new_blksz;
721
722                         if (zp->z_blksz > max_blksz) {
723                                 ASSERT(!ISP2(zp->z_blksz));
724                                 new_blksz = MIN(end_size, SPA_MAXBLOCKSIZE);
725                         } else {
726                                 new_blksz = MIN(end_size, max_blksz);
727                         }
728                         zfs_grow_blocksize(zp, new_blksz, tx);
729                         zfs_range_reduce(rl, woff, n);
730                 }
731
732                 /*
733                  * XXX - should we really limit each write to z_max_blksz?
734                  * Perhaps we should use SPA_MAXBLOCKSIZE chunks?
735                  */
736                 nbytes = MIN(n, max_blksz - P2PHASE(woff, max_blksz));
737                 rw_enter(&zp->z_map_lock, RW_READER);
738
739                 tx_bytes = uio->uio_resid;
740                 if (vn_has_cached_data(vp)) {
741                         rw_exit(&zp->z_map_lock);
742                         error = mappedwrite(vp, nbytes, uio, tx);
743                 } else {
744                         error = dmu_write_uio(zfsvfs->z_os, zp->z_id,
745                             uio, nbytes, tx);
746                         rw_exit(&zp->z_map_lock);
747                 }
748                 tx_bytes -= uio->uio_resid;
749
750                 /*
751                  * If we made no progress, we're done.  If we made even
752                  * partial progress, update the znode and ZIL accordingly.
753                  */
754                 if (tx_bytes == 0) {
755                         dmu_tx_commit(tx);
756                         ASSERT(error != 0);
757                         break;
758                 }
759
760                 /*
761                  * Clear Set-UID/Set-GID bits on successful write if not
762                  * privileged and at least one of the excute bits is set.
763                  *
764                  * It would be nice to to this after all writes have
765                  * been done, but that would still expose the ISUID/ISGID
766                  * to another app after the partial write is committed.
767                  *
768                  * Note: we don't call zfs_fuid_map_id() here because
769                  * user 0 is not an ephemeral uid.
770                  */
771                 mutex_enter(&zp->z_acl_lock);
772                 if ((zp->z_phys->zp_mode & (S_IXUSR | (S_IXUSR >> 3) |
773                     (S_IXUSR >> 6))) != 0 &&
774                     (zp->z_phys->zp_mode & (S_ISUID | S_ISGID)) != 0 &&
775                     secpolicy_vnode_setid_retain(cr,
776                     (zp->z_phys->zp_mode & S_ISUID) != 0 &&
777                     zp->z_phys->zp_uid == 0) != 0) {
778                         zp->z_phys->zp_mode &= ~(S_ISUID | S_ISGID);
779                 }
780                 mutex_exit(&zp->z_acl_lock);
781
782                 /*
783                  * Update time stamp.  NOTE: This marks the bonus buffer as
784                  * dirty, so we don't have to do it again for zp_size.
785                  */
786                 zfs_time_stamper(zp, CONTENT_MODIFIED, tx);
787
788                 /*
789                  * Update the file size (zp_size) if it has changed;
790                  * account for possible concurrent updates.
791                  */
792                 while ((end_size = zp->z_phys->zp_size) < uio->uio_loffset)
793                         (void) atomic_cas_64(&zp->z_phys->zp_size, end_size,
794                             uio->uio_loffset);
795                 zfs_log_write(zilog, tx, TX_WRITE, zp, woff, tx_bytes, ioflag);
796                 dmu_tx_commit(tx);
797
798                 if (error != 0)
799                         break;
800                 ASSERT(tx_bytes == nbytes);
801                 n -= nbytes;
802         }
803
804         zfs_range_unlock(rl);
805
806         /*
807          * If we're in replay mode, or we made no progress, return error.
808          * Otherwise, it's at least a partial write, so it's successful.
809          */
810         if (zfsvfs->z_assign >= TXG_INITIAL || uio->uio_resid == start_resid) {
811                 ZFS_EXIT(zfsvfs);
812                 return (error);
813         }
814
815         if (ioflag & (FSYNC | FDSYNC))
816                 zil_commit(zilog, zp->z_last_itx, zp->z_id);
817
818         ZFS_EXIT(zfsvfs);
819         return (0);
820 }
821
822 void
823 zfs_get_done(dmu_buf_t *db, void *vzgd)
824 {
825         zgd_t *zgd = (zgd_t *)vzgd;
826         rl_t *rl = zgd->zgd_rl;
827         vnode_t *vp = ZTOV(rl->r_zp);
828
829         dmu_buf_rele(db, vzgd);
830         zfs_range_unlock(rl);
831         VN_RELE(vp);
832         zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
833         kmem_free(zgd, sizeof (zgd_t));
834 }
835
836 /*
837  * Get data to generate a TX_WRITE intent log record.
838  */
839 int
840 zfs_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
841 {
842         zfsvfs_t *zfsvfs = arg;
843         objset_t *os = zfsvfs->z_os;
844         znode_t *zp;
845         uint64_t off = lr->lr_offset;
846         dmu_buf_t *db;
847         rl_t *rl;
848         zgd_t *zgd;
849         int dlen = lr->lr_length;               /* length of user data */
850         int error = 0;
851
852         ASSERT(zio);
853         ASSERT(dlen != 0);
854
855         /*
856          * Nothing to do if the file has been removed
857          */
858         if (zfs_zget(zfsvfs, lr->lr_foid, &zp) != 0)
859                 return (ENOENT);
860         if (zp->z_unlinked) {
861                 VN_RELE(ZTOV(zp));
862                 return (ENOENT);
863         }
864
865         /*
866          * Write records come in two flavors: immediate and indirect.
867          * For small writes it's cheaper to store the data with the
868          * log record (immediate); for large writes it's cheaper to
869          * sync the data and get a pointer to it (indirect) so that
870          * we don't have to write the data twice.
871          */
872         if (buf != NULL) { /* immediate write */
873                 rl = zfs_range_lock(zp, off, dlen, RL_READER);
874                 /* test for truncation needs to be done while range locked */
875                 if (off >= zp->z_phys->zp_size) {
876                         error = ENOENT;
877                         goto out;
878                 }
879                 VERIFY(0 == dmu_read(os, lr->lr_foid, off, dlen, buf));
880         } else { /* indirect write */
881                 uint64_t boff; /* block starting offset */
882
883                 /*
884                  * Have to lock the whole block to ensure when it's
885                  * written out and it's checksum is being calculated
886                  * that no one can change the data. We need to re-check
887                  * blocksize after we get the lock in case it's changed!
888                  */
889                 for (;;) {
890                         if (ISP2(zp->z_blksz)) {
891                                 boff = P2ALIGN_TYPED(off, zp->z_blksz,
892                                     uint64_t);
893                         } else {
894                                 boff = 0;
895                         }
896                         dlen = zp->z_blksz;
897                         rl = zfs_range_lock(zp, boff, dlen, RL_READER);
898                         if (zp->z_blksz == dlen)
899                                 break;
900                         zfs_range_unlock(rl);
901                 }
902                 /* test for truncation needs to be done while range locked */
903                 if (off >= zp->z_phys->zp_size) {
904                         error = ENOENT;
905                         goto out;
906                 }
907                 zgd = (zgd_t *)kmem_alloc(sizeof (zgd_t), KM_SLEEP);
908                 zgd->zgd_rl = rl;
909                 zgd->zgd_zilog = zfsvfs->z_log;
910                 zgd->zgd_bp = &lr->lr_blkptr;
911                 VERIFY(0 == dmu_buf_hold(os, lr->lr_foid, boff, zgd, &db));
912                 ASSERT(boff == db->db_offset);
913                 lr->lr_blkoff = off - boff;
914                 error = dmu_sync(zio, db, &lr->lr_blkptr,
915                     lr->lr_common.lrc_txg, zfs_get_done, zgd);
916                 ASSERT((error && error != EINPROGRESS) ||
917                     lr->lr_length <= zp->z_blksz);
918                 if (error == 0)
919                         zil_add_block(zfsvfs->z_log, &lr->lr_blkptr);
920                 /*
921                  * If we get EINPROGRESS, then we need to wait for a
922                  * write IO initiated by dmu_sync() to complete before
923                  * we can release this dbuf.  We will finish everything
924                  * up in the zfs_get_done() callback.
925                  */
926                 if (error == EINPROGRESS)
927                         return (0);
928                 dmu_buf_rele(db, zgd);
929                 kmem_free(zgd, sizeof (zgd_t));
930         }
931 out:
932         zfs_range_unlock(rl);
933         VN_RELE(ZTOV(zp));
934         return (error);
935 }
936
937 /*ARGSUSED*/
938 static int
939 zfs_access(vnode_t *vp, int mode, int flag, cred_t *cr,
940     caller_context_t *ct)
941 {
942         znode_t *zp = VTOZ(vp);
943         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
944         int error;
945
946         ZFS_ENTER(zfsvfs);
947         ZFS_VERIFY_ZP(zp);
948
949         if (flag & V_ACE_MASK)
950                 error = zfs_zaccess(zp, mode, flag, B_FALSE, cr);
951         else
952                 error = zfs_zaccess_rwx(zp, mode, flag, cr);
953
954         ZFS_EXIT(zfsvfs);
955         return (error);
956 }
957
958 /*
959  * Lookup an entry in a directory, or an extended attribute directory.
960  * If it exists, return a held vnode reference for it.
961  *
962  *      IN:     dvp     - vnode of directory to search.
963  *              nm      - name of entry to lookup.
964  *              pnp     - full pathname to lookup [UNUSED].
965  *              flags   - LOOKUP_XATTR set if looking for an attribute.
966  *              rdir    - root directory vnode [UNUSED].
967  *              cr      - credentials of caller.
968  *              ct      - caller context
969  *              direntflags - directory lookup flags
970  *              realpnp - returned pathname.
971  *
972  *      OUT:    vpp     - vnode of located entry, NULL if not found.
973  *
974  *      RETURN: 0 if success
975  *              error code if failure
976  *
977  * Timestamps:
978  *      NA
979  */
980 /* ARGSUSED */
981 static int
982 zfs_lookup(vnode_t *dvp, char *nm, vnode_t **vpp, struct pathname *pnp,
983     int flags, vnode_t *rdir, cred_t *cr,  caller_context_t *ct,
984     int *direntflags, pathname_t *realpnp)
985 {
986         znode_t *zdp = VTOZ(dvp);
987         zfsvfs_t *zfsvfs = zdp->z_zfsvfs;
988         int     error;
989
990         ZFS_ENTER(zfsvfs);
991         ZFS_VERIFY_ZP(zdp);
992
993         *vpp = NULL;
994
995         if (flags & LOOKUP_XATTR) {
996                 /*
997                  * If the xattr property is off, refuse the lookup request.
998                  */
999                 if (!(zfsvfs->z_vfs->vfs_flag & VFS_XATTR)) {
1000                         ZFS_EXIT(zfsvfs);
1001                         return (EINVAL);
1002                 }
1003
1004                 /*
1005                  * We don't allow recursive attributes..
1006                  * Maybe someday we will.
1007                  */
1008                 if (zdp->z_phys->zp_flags & ZFS_XATTR) {
1009                         ZFS_EXIT(zfsvfs);
1010                         return (EINVAL);
1011                 }
1012
1013                 if (error = zfs_get_xattrdir(VTOZ(dvp), vpp, cr, flags)) {
1014                         ZFS_EXIT(zfsvfs);
1015                         return (error);
1016                 }
1017
1018                 /*
1019                  * Do we have permission to get into attribute directory?
1020                  */
1021
1022                 if (error = zfs_zaccess(VTOZ(*vpp), ACE_EXECUTE, 0,
1023                     B_FALSE, cr)) {
1024                         VN_RELE(*vpp);
1025                         *vpp = NULL;
1026                 }
1027
1028                 ZFS_EXIT(zfsvfs);
1029                 return (error);
1030         }
1031
1032         if (dvp->v_type != VDIR) {
1033                 ZFS_EXIT(zfsvfs);
1034                 return (ENOTDIR);
1035         }
1036
1037         /*
1038          * Check accessibility of directory.
1039          */
1040
1041         if (error = zfs_zaccess(zdp, ACE_EXECUTE, 0, B_FALSE, cr)) {
1042                 ZFS_EXIT(zfsvfs);
1043                 return (error);
1044         }
1045
1046         if (zfsvfs->z_utf8 && u8_validate(nm, strlen(nm),
1047             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1048                 ZFS_EXIT(zfsvfs);
1049                 return (EILSEQ);
1050         }
1051
1052         error = zfs_dirlook(zdp, nm, vpp, flags, direntflags, realpnp);
1053         if (error == 0) {
1054                 /*
1055                  * Convert device special files
1056                  */
1057                 if (IS_DEVVP(*vpp)) {
1058                         vnode_t *svp;
1059
1060                         svp = specvp(*vpp, (*vpp)->v_rdev, (*vpp)->v_type, cr);
1061                         VN_RELE(*vpp);
1062                         if (svp == NULL)
1063                                 error = ENOSYS;
1064                         else
1065                                 *vpp = svp;
1066                 }
1067         }
1068
1069         ZFS_EXIT(zfsvfs);
1070         return (error);
1071 }
1072
1073 /*
1074  * Attempt to create a new entry in a directory.  If the entry
1075  * already exists, truncate the file if permissible, else return
1076  * an error.  Return the vp of the created or trunc'd file.
1077  *
1078  *      IN:     dvp     - vnode of directory to put new file entry in.
1079  *              name    - name of new file entry.
1080  *              vap     - attributes of new file.
1081  *              excl    - flag indicating exclusive or non-exclusive mode.
1082  *              mode    - mode to open file with.
1083  *              cr      - credentials of caller.
1084  *              flag    - large file flag [UNUSED].
1085  *              ct      - caller context
1086  *              vsecp   - ACL to be set
1087  *
1088  *      OUT:    vpp     - vnode of created or trunc'd entry.
1089  *
1090  *      RETURN: 0 if success
1091  *              error code if failure
1092  *
1093  * Timestamps:
1094  *      dvp - ctime|mtime updated if new entry created
1095  *       vp - ctime|mtime always, atime if new
1096  */
1097
1098 /* ARGSUSED */
1099 static int
1100 zfs_create(vnode_t *dvp, char *name, vattr_t *vap, vcexcl_t excl,
1101     int mode, vnode_t **vpp, cred_t *cr, int flag, caller_context_t *ct,
1102     vsecattr_t *vsecp)
1103 {
1104         znode_t         *zp, *dzp = VTOZ(dvp);
1105         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
1106         zilog_t         *zilog;
1107         objset_t        *os;
1108         zfs_dirlock_t   *dl;
1109         dmu_tx_t        *tx;
1110         int             error;
1111         zfs_acl_t       *aclp = NULL;
1112         zfs_fuid_info_t *fuidp = NULL;
1113         ksid_t          *ksid;
1114         uid_t           uid;
1115         gid_t           gid = crgetgid(cr);
1116
1117         /*
1118          * If we have an ephemeral id, ACL, or XVATTR then
1119          * make sure file system is at proper version
1120          */
1121
1122         ksid = crgetsid(cr, KSID_OWNER);
1123         if (ksid)
1124                 uid = ksid_getid(ksid);
1125         else
1126                 uid = crgetuid(cr);
1127
1128         if (zfsvfs->z_use_fuids == B_FALSE &&
1129             (vsecp || (vap->va_mask & AT_XVATTR) ||
1130             IS_EPHEMERAL(uid) || IS_EPHEMERAL(gid)))
1131                 return (EINVAL);
1132
1133         ZFS_ENTER(zfsvfs);
1134         ZFS_VERIFY_ZP(dzp);
1135         os = zfsvfs->z_os;
1136         zilog = zfsvfs->z_log;
1137
1138         if (zfsvfs->z_utf8 && u8_validate(name, strlen(name),
1139             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1140                 ZFS_EXIT(zfsvfs);
1141                 return (EILSEQ);
1142         }
1143
1144         if (vap->va_mask & AT_XVATTR) {
1145                 if ((error = secpolicy_xvattr((xvattr_t *)vap,
1146                     crgetuid(cr), cr, vap->va_type)) != 0) {
1147                         ZFS_EXIT(zfsvfs);
1148                         return (error);
1149                 }
1150         }
1151 top:
1152         *vpp = NULL;
1153
1154         if ((vap->va_mode & VSVTX) && secpolicy_vnode_stky_modify(cr))
1155                 vap->va_mode &= ~VSVTX;
1156
1157         if (*name == '\0') {
1158                 /*
1159                  * Null component name refers to the directory itself.
1160                  */
1161                 VN_HOLD(dvp);
1162                 zp = dzp;
1163                 dl = NULL;
1164                 error = 0;
1165         } else {
1166                 /* possible VN_HOLD(zp) */
1167                 int zflg = 0;
1168
1169                 if (flag & FIGNORECASE)
1170                         zflg |= ZCILOOK;
1171
1172                 error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
1173                     NULL, NULL);
1174                 if (error) {
1175                         if (strcmp(name, "..") == 0)
1176                                 error = EISDIR;
1177                         ZFS_EXIT(zfsvfs);
1178                         if (aclp)
1179                                 zfs_acl_free(aclp);
1180                         return (error);
1181                 }
1182         }
1183         if (vsecp && aclp == NULL) {
1184                 error = zfs_vsec_2_aclp(zfsvfs, vap->va_type, vsecp, &aclp);
1185                 if (error) {
1186                         ZFS_EXIT(zfsvfs);
1187                         if (dl)
1188                                 zfs_dirent_unlock(dl);
1189                         return (error);
1190                 }
1191         }
1192
1193         if (zp == NULL) {
1194                 uint64_t txtype;
1195
1196                 /*
1197                  * Create a new file object and update the directory
1198                  * to reference it.
1199                  */
1200                 if (error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr)) {
1201                         goto out;
1202                 }
1203
1204                 /*
1205                  * We only support the creation of regular files in
1206                  * extended attribute directories.
1207                  */
1208                 if ((dzp->z_phys->zp_flags & ZFS_XATTR) &&
1209                     (vap->va_type != VREG)) {
1210                         error = EINVAL;
1211                         goto out;
1212                 }
1213
1214                 tx = dmu_tx_create(os);
1215                 dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1216                 if ((aclp && aclp->z_has_fuids) || IS_EPHEMERAL(uid) ||
1217                     IS_EPHEMERAL(gid)) {
1218                         if (zfsvfs->z_fuid_obj == 0) {
1219                                 dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1220                                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
1221                                     FUID_SIZE_ESTIMATE(zfsvfs));
1222                                 dmu_tx_hold_zap(tx, MASTER_NODE_OBJ,
1223                                     FALSE, NULL);
1224                         } else {
1225                                 dmu_tx_hold_bonus(tx, zfsvfs->z_fuid_obj);
1226                                 dmu_tx_hold_write(tx, zfsvfs->z_fuid_obj, 0,
1227                                     FUID_SIZE_ESTIMATE(zfsvfs));
1228                         }
1229                 }
1230                 dmu_tx_hold_bonus(tx, dzp->z_id);
1231                 dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
1232                 if ((dzp->z_phys->zp_flags & ZFS_INHERIT_ACE) || aclp) {
1233                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
1234                             0, SPA_MAXBLOCKSIZE);
1235                 }
1236                 error = dmu_tx_assign(tx, zfsvfs->z_assign);
1237                 if (error) {
1238                         zfs_dirent_unlock(dl);
1239                         if (error == ERESTART &&
1240                             zfsvfs->z_assign == TXG_NOWAIT) {
1241                                 dmu_tx_wait(tx);
1242                                 dmu_tx_abort(tx);
1243                                 goto top;
1244                         }
1245                         dmu_tx_abort(tx);
1246                         ZFS_EXIT(zfsvfs);
1247                         if (aclp)
1248                                 zfs_acl_free(aclp);
1249                         return (error);
1250                 }
1251                 zfs_mknode(dzp, vap, tx, cr, 0, &zp, 0, aclp, &fuidp);
1252                 (void) zfs_link_create(dl, zp, tx, ZNEW);
1253                 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap);
1254                 if (flag & FIGNORECASE)
1255                         txtype |= TX_CI;
1256                 zfs_log_create(zilog, tx, txtype, dzp, zp, name,
1257                     vsecp, fuidp, vap);
1258                 if (fuidp)
1259                         zfs_fuid_info_free(fuidp);
1260                 dmu_tx_commit(tx);
1261         } else {
1262                 int aflags = (flag & FAPPEND) ? V_APPEND : 0;
1263
1264                 /*
1265                  * A directory entry already exists for this name.
1266                  */
1267                 /*
1268                  * Can't truncate an existing file if in exclusive mode.
1269                  */
1270                 if (excl == EXCL) {
1271                         error = EEXIST;
1272                         goto out;
1273                 }
1274                 /*
1275                  * Can't open a directory for writing.
1276                  */
1277                 if ((ZTOV(zp)->v_type == VDIR) && (mode & S_IWRITE)) {
1278                         error = EISDIR;
1279                         goto out;
1280                 }
1281                 /*
1282                  * Verify requested access to file.
1283                  */
1284                 if (mode && (error = zfs_zaccess_rwx(zp, mode, aflags, cr))) {
1285                         goto out;
1286                 }
1287
1288                 mutex_enter(&dzp->z_lock);
1289                 dzp->z_seq++;
1290                 mutex_exit(&dzp->z_lock);
1291
1292                 /*
1293                  * Truncate regular files if requested.
1294                  */
1295                 if ((ZTOV(zp)->v_type == VREG) &&
1296                     (vap->va_mask & AT_SIZE) && (vap->va_size == 0)) {
1297                         /* we can't hold any locks when calling zfs_freesp() */
1298                         zfs_dirent_unlock(dl);
1299                         dl = NULL;
1300                         error = zfs_freesp(zp, 0, 0, mode, TRUE);
1301                         if (error == 0) {
1302                                 vnevent_create(ZTOV(zp), ct);
1303                         }
1304                 }
1305         }
1306 out:
1307
1308         if (dl)
1309                 zfs_dirent_unlock(dl);
1310
1311         if (error) {
1312                 if (zp)
1313                         VN_RELE(ZTOV(zp));
1314         } else {
1315                 *vpp = ZTOV(zp);
1316                 /*
1317                  * If vnode is for a device return a specfs vnode instead.
1318                  */
1319                 if (IS_DEVVP(*vpp)) {
1320                         struct vnode *svp;
1321
1322                         svp = specvp(*vpp, (*vpp)->v_rdev, (*vpp)->v_type, cr);
1323                         VN_RELE(*vpp);
1324                         if (svp == NULL) {
1325                                 error = ENOSYS;
1326                         }
1327                         *vpp = svp;
1328                 }
1329         }
1330         if (aclp)
1331                 zfs_acl_free(aclp);
1332
1333         ZFS_EXIT(zfsvfs);
1334         return (error);
1335 }
1336
1337 /*
1338  * Remove an entry from a directory.
1339  *
1340  *      IN:     dvp     - vnode of directory to remove entry from.
1341  *              name    - name of entry to remove.
1342  *              cr      - credentials of caller.
1343  *              ct      - caller context
1344  *              flags   - case flags
1345  *
1346  *      RETURN: 0 if success
1347  *              error code if failure
1348  *
1349  * Timestamps:
1350  *      dvp - ctime|mtime
1351  *       vp - ctime (if nlink > 0)
1352  */
1353 /*ARGSUSED*/
1354 static int
1355 zfs_remove(vnode_t *dvp, char *name, cred_t *cr, caller_context_t *ct,
1356     int flags)
1357 {
1358         znode_t         *zp, *dzp = VTOZ(dvp);
1359         znode_t         *xzp = NULL;
1360         vnode_t         *vp;
1361         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
1362         zilog_t         *zilog;
1363         uint64_t        acl_obj, xattr_obj;
1364         zfs_dirlock_t   *dl;
1365         dmu_tx_t        *tx;
1366         boolean_t       may_delete_now, delete_now = FALSE;
1367         boolean_t       unlinked, toobig = FALSE;
1368         uint64_t        txtype;
1369         pathname_t      *realnmp = NULL;
1370         pathname_t      realnm;
1371         int             error;
1372         int             zflg = ZEXISTS;
1373
1374         ZFS_ENTER(zfsvfs);
1375         ZFS_VERIFY_ZP(dzp);
1376         zilog = zfsvfs->z_log;
1377
1378         if (flags & FIGNORECASE) {
1379                 zflg |= ZCILOOK;
1380                 pn_alloc(&realnm);
1381                 realnmp = &realnm;
1382         }
1383
1384 top:
1385         /*
1386          * Attempt to lock directory; fail if entry doesn't exist.
1387          */
1388         if (error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
1389             NULL, realnmp)) {
1390                 if (realnmp)
1391                         pn_free(realnmp);
1392                 ZFS_EXIT(zfsvfs);
1393                 return (error);
1394         }
1395
1396         vp = ZTOV(zp);
1397
1398         if (error = zfs_zaccess_delete(dzp, zp, cr)) {
1399                 goto out;
1400         }
1401
1402         /*
1403          * Need to use rmdir for removing directories.
1404          */
1405         if (vp->v_type == VDIR) {
1406                 error = EPERM;
1407                 goto out;
1408         }
1409
1410         vnevent_remove(vp, dvp, name, ct);
1411
1412         if (realnmp)
1413                 dnlc_remove(dvp, realnmp->pn_buf);
1414         else
1415                 dnlc_remove(dvp, name);
1416
1417         mutex_enter(&vp->v_lock);
1418         may_delete_now = vp->v_count == 1 && !vn_has_cached_data(vp);
1419         mutex_exit(&vp->v_lock);
1420
1421         /*
1422          * We may delete the znode now, or we may put it in the unlinked set;
1423          * it depends on whether we're the last link, and on whether there are
1424          * other holds on the vnode.  So we dmu_tx_hold() the right things to
1425          * allow for either case.
1426          */
1427         tx = dmu_tx_create(zfsvfs->z_os);
1428         dmu_tx_hold_zap(tx, dzp->z_id, FALSE, name);
1429         dmu_tx_hold_bonus(tx, zp->z_id);
1430         if (may_delete_now) {
1431                 toobig =
1432                     zp->z_phys->zp_size > zp->z_blksz * DMU_MAX_DELETEBLKCNT;
1433                 /* if the file is too big, only hold_free a token amount */
1434                 dmu_tx_hold_free(tx, zp->z_id, 0,
1435                     (toobig ? DMU_MAX_ACCESS : DMU_OBJECT_END));
1436         }
1437
1438         /* are there any extended attributes? */
1439         if ((xattr_obj = zp->z_phys->zp_xattr) != 0) {
1440                 /* XXX - do we need this if we are deleting? */
1441                 dmu_tx_hold_bonus(tx, xattr_obj);
1442         }
1443
1444         /* are there any additional acls */
1445         if ((acl_obj = zp->z_phys->zp_acl.z_acl_extern_obj) != 0 &&
1446             may_delete_now)
1447                 dmu_tx_hold_free(tx, acl_obj, 0, DMU_OBJECT_END);
1448
1449         /* charge as an update -- would be nice not to charge at all */
1450         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
1451
1452         error = dmu_tx_assign(tx, zfsvfs->z_assign);
1453         if (error) {
1454                 zfs_dirent_unlock(dl);
1455                 VN_RELE(vp);
1456                 if (error == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
1457                         dmu_tx_wait(tx);
1458                         dmu_tx_abort(tx);
1459                         goto top;
1460                 }
1461                 if (realnmp)
1462                         pn_free(realnmp);
1463                 dmu_tx_abort(tx);
1464                 ZFS_EXIT(zfsvfs);
1465                 return (error);
1466         }
1467
1468         /*
1469          * Remove the directory entry.
1470          */
1471         error = zfs_link_destroy(dl, zp, tx, zflg, &unlinked);
1472
1473         if (error) {
1474                 dmu_tx_commit(tx);
1475                 goto out;
1476         }
1477
1478         if (unlinked) {
1479                 mutex_enter(&vp->v_lock);
1480                 delete_now = may_delete_now && !toobig &&
1481                     vp->v_count == 1 && !vn_has_cached_data(vp) &&
1482                     zp->z_phys->zp_xattr == xattr_obj &&
1483                     zp->z_phys->zp_acl.z_acl_extern_obj == acl_obj;
1484                 mutex_exit(&vp->v_lock);
1485         }
1486
1487         if (delete_now) {
1488                 if (zp->z_phys->zp_xattr) {
1489                         error = zfs_zget(zfsvfs, zp->z_phys->zp_xattr, &xzp);
1490                         ASSERT3U(error, ==, 0);
1491                         ASSERT3U(xzp->z_phys->zp_links, ==, 2);
1492                         dmu_buf_will_dirty(xzp->z_dbuf, tx);
1493                         mutex_enter(&xzp->z_lock);
1494                         xzp->z_unlinked = 1;
1495                         xzp->z_phys->zp_links = 0;
1496                         mutex_exit(&xzp->z_lock);
1497                         zfs_unlinked_add(xzp, tx);
1498                         zp->z_phys->zp_xattr = 0; /* probably unnecessary */
1499                 }
1500                 mutex_enter(&zp->z_lock);
1501                 mutex_enter(&vp->v_lock);
1502                 vp->v_count--;
1503                 ASSERT3U(vp->v_count, ==, 0);
1504                 mutex_exit(&vp->v_lock);
1505                 mutex_exit(&zp->z_lock);
1506                 zfs_znode_delete(zp, tx);
1507         } else if (unlinked) {
1508                 zfs_unlinked_add(zp, tx);
1509         }
1510
1511         txtype = TX_REMOVE;
1512         if (flags & FIGNORECASE)
1513                 txtype |= TX_CI;
1514         zfs_log_remove(zilog, tx, txtype, dzp, name);
1515
1516         dmu_tx_commit(tx);
1517 out:
1518         if (realnmp)
1519                 pn_free(realnmp);
1520
1521         zfs_dirent_unlock(dl);
1522
1523         if (!delete_now) {
1524                 VN_RELE(vp);
1525         } else if (xzp) {
1526                 /* this rele is delayed to prevent nesting transactions */
1527                 VN_RELE(ZTOV(xzp));
1528         }
1529
1530         ZFS_EXIT(zfsvfs);
1531         return (error);
1532 }
1533
1534 /*
1535  * Create a new directory and insert it into dvp using the name
1536  * provided.  Return a pointer to the inserted directory.
1537  *
1538  *      IN:     dvp     - vnode of directory to add subdir to.
1539  *              dirname - name of new directory.
1540  *              vap     - attributes of new directory.
1541  *              cr      - credentials of caller.
1542  *              ct      - caller context
1543  *              vsecp   - ACL to be set
1544  *
1545  *      OUT:    vpp     - vnode of created directory.
1546  *
1547  *      RETURN: 0 if success
1548  *              error code if failure
1549  *
1550  * Timestamps:
1551  *      dvp - ctime|mtime updated
1552  *       vp - ctime|mtime|atime updated
1553  */
1554 /*ARGSUSED*/
1555 static int
1556 zfs_mkdir(vnode_t *dvp, char *dirname, vattr_t *vap, vnode_t **vpp, cred_t *cr,
1557     caller_context_t *ct, int flags, vsecattr_t *vsecp)
1558 {
1559         znode_t         *zp, *dzp = VTOZ(dvp);
1560         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
1561         zilog_t         *zilog;
1562         zfs_dirlock_t   *dl;
1563         uint64_t        txtype;
1564         dmu_tx_t        *tx;
1565         int             error;
1566         zfs_acl_t       *aclp = NULL;
1567         zfs_fuid_info_t *fuidp = NULL;
1568         int             zf = ZNEW;
1569         ksid_t          *ksid;
1570         uid_t           uid;
1571         gid_t           gid = crgetgid(cr);
1572
1573         ASSERT(vap->va_type == VDIR);
1574
1575         /*
1576          * If we have an ephemeral id, ACL, or XVATTR then
1577          * make sure file system is at proper version
1578          */
1579
1580         ksid = crgetsid(cr, KSID_OWNER);
1581         if (ksid)
1582                 uid = ksid_getid(ksid);
1583         else
1584                 uid = crgetuid(cr);
1585         if (zfsvfs->z_use_fuids == B_FALSE &&
1586             (vsecp || (vap->va_mask & AT_XVATTR) ||
1587             IS_EPHEMERAL(uid) || IS_EPHEMERAL(gid)))
1588                 return (EINVAL);
1589
1590         ZFS_ENTER(zfsvfs);
1591         ZFS_VERIFY_ZP(dzp);
1592         zilog = zfsvfs->z_log;
1593
1594         if (dzp->z_phys->zp_flags & ZFS_XATTR) {
1595                 ZFS_EXIT(zfsvfs);
1596                 return (EINVAL);
1597         }
1598
1599         if (zfsvfs->z_utf8 && u8_validate(dirname,
1600             strlen(dirname), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1601                 ZFS_EXIT(zfsvfs);
1602                 return (EILSEQ);
1603         }
1604         if (flags & FIGNORECASE)
1605                 zf |= ZCILOOK;
1606
1607         if (vap->va_mask & AT_XVATTR)
1608                 if ((error = secpolicy_xvattr((xvattr_t *)vap,
1609                     crgetuid(cr), cr, vap->va_type)) != 0) {
1610                         ZFS_EXIT(zfsvfs);
1611                         return (error);
1612                 }
1613
1614         /*
1615          * First make sure the new directory doesn't exist.
1616          */
1617 top:
1618         *vpp = NULL;
1619
1620         if (error = zfs_dirent_lock(&dl, dzp, dirname, &zp, zf,
1621             NULL, NULL)) {
1622                 ZFS_EXIT(zfsvfs);
1623                 return (error);
1624         }
1625
1626         if (error = zfs_zaccess(dzp, ACE_ADD_SUBDIRECTORY, 0, B_FALSE, cr)) {
1627                 zfs_dirent_unlock(dl);
1628                 ZFS_EXIT(zfsvfs);
1629                 return (error);
1630         }
1631
1632         if (vsecp && aclp == NULL) {
1633                 error = zfs_vsec_2_aclp(zfsvfs, vap->va_type, vsecp, &aclp);
1634                 if (error) {
1635                         zfs_dirent_unlock(dl);
1636                         ZFS_EXIT(zfsvfs);
1637                         return (error);
1638                 }
1639         }
1640         /*
1641          * Add a new entry to the directory.
1642          */
1643         tx = dmu_tx_create(zfsvfs->z_os);
1644         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, dirname);
1645         dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
1646         if ((aclp && aclp->z_has_fuids) || IS_EPHEMERAL(uid) ||
1647             IS_EPHEMERAL(gid)) {
1648                 if (zfsvfs->z_fuid_obj == 0) {
1649                         dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
1650                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
1651                             FUID_SIZE_ESTIMATE(zfsvfs));
1652                         dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, FALSE, NULL);
1653                 } else {
1654                         dmu_tx_hold_bonus(tx, zfsvfs->z_fuid_obj);
1655                         dmu_tx_hold_write(tx, zfsvfs->z_fuid_obj, 0,
1656                             FUID_SIZE_ESTIMATE(zfsvfs));
1657                 }
1658         }
1659         if ((dzp->z_phys->zp_flags & ZFS_INHERIT_ACE) || aclp)
1660                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
1661                     0, SPA_MAXBLOCKSIZE);
1662         error = dmu_tx_assign(tx, zfsvfs->z_assign);
1663         if (error) {
1664                 zfs_dirent_unlock(dl);
1665                 if (error == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
1666                         dmu_tx_wait(tx);
1667                         dmu_tx_abort(tx);
1668                         goto top;
1669                 }
1670                 dmu_tx_abort(tx);
1671                 ZFS_EXIT(zfsvfs);
1672                 if (aclp)
1673                         zfs_acl_free(aclp);
1674                 return (error);
1675         }
1676
1677         /*
1678          * Create new node.
1679          */
1680         zfs_mknode(dzp, vap, tx, cr, 0, &zp, 0, aclp, &fuidp);
1681
1682         if (aclp)
1683                 zfs_acl_free(aclp);
1684
1685         /*
1686          * Now put new name in parent dir.
1687          */
1688         (void) zfs_link_create(dl, zp, tx, ZNEW);
1689
1690         *vpp = ZTOV(zp);
1691
1692         txtype = zfs_log_create_txtype(Z_DIR, vsecp, vap);
1693         if (flags & FIGNORECASE)
1694                 txtype |= TX_CI;
1695         zfs_log_create(zilog, tx, txtype, dzp, zp, dirname, vsecp, fuidp, vap);
1696
1697         if (fuidp)
1698                 zfs_fuid_info_free(fuidp);
1699         dmu_tx_commit(tx);
1700
1701         zfs_dirent_unlock(dl);
1702
1703         ZFS_EXIT(zfsvfs);
1704         return (0);
1705 }
1706
1707 /*
1708  * Remove a directory subdir entry.  If the current working
1709  * directory is the same as the subdir to be removed, the
1710  * remove will fail.
1711  *
1712  *      IN:     dvp     - vnode of directory to remove from.
1713  *              name    - name of directory to be removed.
1714  *              cwd     - vnode of current working directory.
1715  *              cr      - credentials of caller.
1716  *              ct      - caller context
1717  *              flags   - case flags
1718  *
1719  *      RETURN: 0 if success
1720  *              error code if failure
1721  *
1722  * Timestamps:
1723  *      dvp - ctime|mtime updated
1724  */
1725 /*ARGSUSED*/
1726 static int
1727 zfs_rmdir(vnode_t *dvp, char *name, vnode_t *cwd, cred_t *cr,
1728     caller_context_t *ct, int flags)
1729 {
1730         znode_t         *dzp = VTOZ(dvp);
1731         znode_t         *zp;
1732         vnode_t         *vp;
1733         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
1734         zilog_t         *zilog;
1735         zfs_dirlock_t   *dl;
1736         dmu_tx_t        *tx;
1737         int             error;
1738         int             zflg = ZEXISTS;
1739
1740         ZFS_ENTER(zfsvfs);
1741         ZFS_VERIFY_ZP(dzp);
1742         zilog = zfsvfs->z_log;
1743
1744         if (flags & FIGNORECASE)
1745                 zflg |= ZCILOOK;
1746 top:
1747         zp = NULL;
1748
1749         /*
1750          * Attempt to lock directory; fail if entry doesn't exist.
1751          */
1752         if (error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
1753             NULL, NULL)) {
1754                 ZFS_EXIT(zfsvfs);
1755                 return (error);
1756         }
1757
1758         vp = ZTOV(zp);
1759
1760         if (error = zfs_zaccess_delete(dzp, zp, cr)) {
1761                 goto out;
1762         }
1763
1764         if (vp->v_type != VDIR) {
1765                 error = ENOTDIR;
1766                 goto out;
1767         }
1768
1769         if (vp == cwd) {
1770                 error = EINVAL;
1771                 goto out;
1772         }
1773
1774         vnevent_rmdir(vp, dvp, name, ct);
1775
1776         /*
1777          * Grab a lock on the directory to make sure that noone is
1778          * trying to add (or lookup) entries while we are removing it.
1779          */
1780         rw_enter(&zp->z_name_lock, RW_WRITER);
1781
1782         /*
1783          * Grab a lock on the parent pointer to make sure we play well
1784          * with the treewalk and directory rename code.
1785          */
1786         rw_enter(&zp->z_parent_lock, RW_WRITER);
1787
1788         tx = dmu_tx_create(zfsvfs->z_os);
1789         dmu_tx_hold_zap(tx, dzp->z_id, FALSE, name);
1790         dmu_tx_hold_bonus(tx, zp->z_id);
1791         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
1792         error = dmu_tx_assign(tx, zfsvfs->z_assign);
1793         if (error) {
1794                 rw_exit(&zp->z_parent_lock);
1795                 rw_exit(&zp->z_name_lock);
1796                 zfs_dirent_unlock(dl);
1797                 VN_RELE(vp);
1798                 if (error == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
1799                         dmu_tx_wait(tx);
1800                         dmu_tx_abort(tx);
1801                         goto top;
1802                 }
1803                 dmu_tx_abort(tx);
1804                 ZFS_EXIT(zfsvfs);
1805                 return (error);
1806         }
1807
1808         error = zfs_link_destroy(dl, zp, tx, zflg, NULL);
1809
1810         if (error == 0) {
1811                 uint64_t txtype = TX_RMDIR;
1812                 if (flags & FIGNORECASE)
1813                         txtype |= TX_CI;
1814                 zfs_log_remove(zilog, tx, txtype, dzp, name);
1815         }
1816
1817         dmu_tx_commit(tx);
1818
1819         rw_exit(&zp->z_parent_lock);
1820         rw_exit(&zp->z_name_lock);
1821 out:
1822         zfs_dirent_unlock(dl);
1823
1824         VN_RELE(vp);
1825
1826         ZFS_EXIT(zfsvfs);
1827         return (error);
1828 }
1829
1830 /*
1831  * Read as many directory entries as will fit into the provided
1832  * buffer from the given directory cursor position (specified in
1833  * the uio structure.
1834  *
1835  *      IN:     vp      - vnode of directory to read.
1836  *              uio     - structure supplying read location, range info,
1837  *                        and return buffer.
1838  *              cr      - credentials of caller.
1839  *              ct      - caller context
1840  *              flags   - case flags
1841  *
1842  *      OUT:    uio     - updated offset and range, buffer filled.
1843  *              eofp    - set to true if end-of-file detected.
1844  *
1845  *      RETURN: 0 if success
1846  *              error code if failure
1847  *
1848  * Timestamps:
1849  *      vp - atime updated
1850  *
1851  * Note that the low 4 bits of the cookie returned by zap is always zero.
1852  * This allows us to use the low range for "special" directory entries:
1853  * We use 0 for '.', and 1 for '..'.  If this is the root of the filesystem,
1854  * we use the offset 2 for the '.zfs' directory.
1855  */
1856 /* ARGSUSED */
1857 static int
1858 zfs_readdir(vnode_t *vp, uio_t *uio, cred_t *cr, int *eofp,
1859     caller_context_t *ct, int flags)
1860 {
1861         znode_t         *zp = VTOZ(vp);
1862         iovec_t         *iovp;
1863         edirent_t       *eodp;
1864         dirent64_t      *odp;
1865         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
1866         objset_t        *os;
1867         caddr_t         outbuf;
1868         size_t          bufsize;
1869         zap_cursor_t    zc;
1870         zap_attribute_t zap;
1871         uint_t          bytes_wanted;
1872         uint64_t        offset; /* must be unsigned; checks for < 1 */
1873         int             local_eof;
1874         int             outcount;
1875         int             error;
1876         uint8_t         prefetch;
1877         boolean_t       check_sysattrs;
1878
1879         ZFS_ENTER(zfsvfs);
1880         ZFS_VERIFY_ZP(zp);
1881
1882         /*
1883          * If we are not given an eof variable,
1884          * use a local one.
1885          */
1886         if (eofp == NULL)
1887                 eofp = &local_eof;
1888
1889         /*
1890          * Check for valid iov_len.
1891          */
1892         if (uio->uio_iov->iov_len <= 0) {
1893                 ZFS_EXIT(zfsvfs);
1894                 return (EINVAL);
1895         }
1896
1897         /*
1898          * Quit if directory has been removed (posix)
1899          */
1900         if ((*eofp = zp->z_unlinked) != 0) {
1901                 ZFS_EXIT(zfsvfs);
1902                 return (0);
1903         }
1904
1905         error = 0;
1906         os = zfsvfs->z_os;
1907         offset = uio->uio_loffset;
1908         prefetch = zp->z_zn_prefetch;
1909
1910         /*
1911          * Initialize the iterator cursor.
1912          */
1913         if (offset <= 3) {
1914                 /*
1915                  * Start iteration from the beginning of the directory.
1916                  */
1917                 zap_cursor_init(&zc, os, zp->z_id);
1918         } else {
1919                 /*
1920                  * The offset is a serialized cursor.
1921                  */
1922                 zap_cursor_init_serialized(&zc, os, zp->z_id, offset);
1923         }
1924
1925         /*
1926          * Get space to change directory entries into fs independent format.
1927          */
1928         iovp = uio->uio_iov;
1929         bytes_wanted = iovp->iov_len;
1930         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1) {
1931                 bufsize = bytes_wanted;
1932                 outbuf = kmem_alloc(bufsize, KM_SLEEP);
1933                 odp = (struct dirent64 *)outbuf;
1934         } else {
1935                 bufsize = bytes_wanted;
1936                 odp = (struct dirent64 *)iovp->iov_base;
1937         }
1938         eodp = (struct edirent *)odp;
1939
1940         /*
1941          * If this VFS supports the system attribute view interface; and
1942          * we're looking at an extended attribute directory; and we care
1943          * about normalization conflicts on this vfs; then we must check
1944          * for normalization conflicts with the sysattr name space.
1945          */
1946         check_sysattrs = vfs_has_feature(vp->v_vfsp, VFSFT_SYSATTR_VIEWS) &&
1947             (vp->v_flag & V_XATTRDIR) && zfsvfs->z_norm &&
1948             (flags & V_RDDIR_ENTFLAGS);
1949
1950         /*
1951          * Transform to file-system independent format
1952          */
1953         outcount = 0;
1954         while (outcount < bytes_wanted) {
1955                 ino64_t objnum;
1956                 ushort_t reclen;
1957                 off64_t *next;
1958
1959                 /*
1960                  * Special case `.', `..', and `.zfs'.
1961                  */
1962                 if (offset == 0) {
1963                         (void) strcpy(zap.za_name, ".");
1964                         zap.za_normalization_conflict = 0;
1965                         objnum = zp->z_id;
1966                 } else if (offset == 1) {
1967                         (void) strcpy(zap.za_name, "..");
1968                         zap.za_normalization_conflict = 0;
1969                         objnum = zp->z_phys->zp_parent;
1970                 } else if (offset == 2 && zfs_show_ctldir(zp)) {
1971                         (void) strcpy(zap.za_name, ZFS_CTLDIR_NAME);
1972                         zap.za_normalization_conflict = 0;
1973                         objnum = ZFSCTL_INO_ROOT;
1974                 } else {
1975                         /*
1976                          * Grab next entry.
1977                          */
1978                         if (error = zap_cursor_retrieve(&zc, &zap)) {
1979                                 if ((*eofp = (error == ENOENT)) != 0)
1980                                         break;
1981                                 else
1982                                         goto update;
1983                         }
1984
1985                         if (zap.za_integer_length != 8 ||
1986                             zap.za_num_integers != 1) {
1987                                 cmn_err(CE_WARN, "zap_readdir: bad directory "
1988                                     "entry, obj = %lld, offset = %lld\n",
1989                                     (u_longlong_t)zp->z_id,
1990                                     (u_longlong_t)offset);
1991                                 error = ENXIO;
1992                                 goto update;
1993                         }
1994
1995                         objnum = ZFS_DIRENT_OBJ(zap.za_first_integer);
1996                         /*
1997                          * MacOS X can extract the object type here such as:
1998                          * uint8_t type = ZFS_DIRENT_TYPE(zap.za_first_integer);
1999                          */
2000
2001                         if (check_sysattrs && !zap.za_normalization_conflict) {
2002                                 zap.za_normalization_conflict =
2003                                     xattr_sysattr_casechk(zap.za_name);
2004                         }
2005                 }
2006
2007                 if (flags & V_RDDIR_ENTFLAGS)
2008                         reclen = EDIRENT_RECLEN(strlen(zap.za_name));
2009                 else
2010                         reclen = DIRENT64_RECLEN(strlen(zap.za_name));
2011
2012                 /*
2013                  * Will this entry fit in the buffer?
2014                  */
2015                 if (outcount + reclen > bufsize) {
2016                         /*
2017                          * Did we manage to fit anything in the buffer?
2018                          */
2019                         if (!outcount) {
2020                                 error = EINVAL;
2021                                 goto update;
2022                         }
2023                         break;
2024                 }
2025                 if (flags & V_RDDIR_ENTFLAGS) {
2026                         /*
2027                          * Add extended flag entry:
2028                          */
2029                         eodp->ed_ino = objnum;
2030                         eodp->ed_reclen = reclen;
2031                         /* NOTE: ed_off is the offset for the *next* entry */
2032                         next = &(eodp->ed_off);
2033                         eodp->ed_eflags = zap.za_normalization_conflict ?
2034                             ED_CASE_CONFLICT : 0;
2035                         (void) strncpy(eodp->ed_name, zap.za_name,
2036                             EDIRENT_NAMELEN(reclen));
2037                         eodp = (edirent_t *)((intptr_t)eodp + reclen);
2038                 } else {
2039                         /*
2040                          * Add normal entry:
2041                          */
2042                         odp->d_ino = objnum;
2043                         odp->d_reclen = reclen;
2044                         /* NOTE: d_off is the offset for the *next* entry */
2045                         next = &(odp->d_off);
2046                         (void) strncpy(odp->d_name, zap.za_name,
2047                             DIRENT64_NAMELEN(reclen));
2048                         odp = (dirent64_t *)((intptr_t)odp + reclen);
2049                 }
2050                 outcount += reclen;
2051
2052                 ASSERT(outcount <= bufsize);
2053
2054                 /* Prefetch znode */
2055                 if (prefetch)
2056                         dmu_prefetch(os, objnum, 0, 0);
2057
2058                 /*
2059                  * Move to the next entry, fill in the previous offset.
2060                  */
2061                 if (offset > 2 || (offset == 2 && !zfs_show_ctldir(zp))) {
2062                         zap_cursor_advance(&zc);
2063                         offset = zap_cursor_serialize(&zc);
2064                 } else {
2065                         offset += 1;
2066                 }
2067                 *next = offset;
2068         }
2069         zp->z_zn_prefetch = B_FALSE; /* a lookup will re-enable pre-fetching */
2070
2071         if (uio->uio_segflg == UIO_SYSSPACE && uio->uio_iovcnt == 1) {
2072                 iovp->iov_base += outcount;
2073                 iovp->iov_len -= outcount;
2074                 uio->uio_resid -= outcount;
2075         } else if (error = uiomove(outbuf, (long)outcount, UIO_READ, uio)) {
2076                 /*
2077                  * Reset the pointer.
2078                  */
2079                 offset = uio->uio_loffset;
2080         }
2081
2082 update:
2083         zap_cursor_fini(&zc);
2084         if (uio->uio_segflg != UIO_SYSSPACE || uio->uio_iovcnt != 1)
2085                 kmem_free(outbuf, bufsize);
2086
2087         if (error == ENOENT)
2088                 error = 0;
2089
2090         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
2091
2092         uio->uio_loffset = offset;
2093         ZFS_EXIT(zfsvfs);
2094         return (error);
2095 }
2096
2097 ulong_t zfs_fsync_sync_cnt = 4;
2098
2099 static int
2100 zfs_fsync(vnode_t *vp, int syncflag, cred_t *cr, caller_context_t *ct)
2101 {
2102         znode_t *zp = VTOZ(vp);
2103         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
2104
2105         /*
2106          * Regardless of whether this is required for standards conformance,
2107          * this is the logical behavior when fsync() is called on a file with
2108          * dirty pages.  We use B_ASYNC since the ZIL transactions are already
2109          * going to be pushed out as part of the zil_commit().
2110          */
2111         if (vn_has_cached_data(vp) && !(syncflag & FNODSYNC) &&
2112             (vp->v_type == VREG) && !(IS_SWAPVP(vp)))
2113                 (void) VOP_PUTPAGE(vp, (offset_t)0, (size_t)0, B_ASYNC, cr, ct);
2114
2115         (void) tsd_set(zfs_fsyncer_key, (void *)zfs_fsync_sync_cnt);
2116
2117         ZFS_ENTER(zfsvfs);
2118         ZFS_VERIFY_ZP(zp);
2119         zil_commit(zfsvfs->z_log, zp->z_last_itx, zp->z_id);
2120         ZFS_EXIT(zfsvfs);
2121         return (0);
2122 }
2123
2124
2125 /*
2126  * Get the requested file attributes and place them in the provided
2127  * vattr structure.
2128  *
2129  *      IN:     vp      - vnode of file.
2130  *              vap     - va_mask identifies requested attributes.
2131  *                        If AT_XVATTR set, then optional attrs are requested
2132  *              flags   - ATTR_NOACLCHECK (CIFS server context)
2133  *              cr      - credentials of caller.
2134  *              ct      - caller context
2135  *
2136  *      OUT:    vap     - attribute values.
2137  *
2138  *      RETURN: 0 (always succeeds)
2139  */
2140 /* ARGSUSED */
2141 static int
2142 zfs_getattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr,
2143     caller_context_t *ct)
2144 {
2145         znode_t *zp = VTOZ(vp);
2146         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
2147         znode_phys_t *pzp;
2148         int     error = 0;
2149         uint64_t links;
2150         xvattr_t *xvap = (xvattr_t *)vap;       /* vap may be an xvattr_t * */
2151         xoptattr_t *xoap = NULL;
2152         boolean_t skipaclchk = (flags & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
2153
2154         ZFS_ENTER(zfsvfs);
2155         ZFS_VERIFY_ZP(zp);
2156         pzp = zp->z_phys;
2157
2158         mutex_enter(&zp->z_lock);
2159
2160         /*
2161          * If ACL is trivial don't bother looking for ACE_READ_ATTRIBUTES.
2162          * Also, if we are the owner don't bother, since owner should
2163          * always be allowed to read basic attributes of file.
2164          */
2165         if (!(pzp->zp_flags & ZFS_ACL_TRIVIAL) &&
2166             (pzp->zp_uid != crgetuid(cr))) {
2167                 if (error = zfs_zaccess(zp, ACE_READ_ATTRIBUTES, 0,
2168                     skipaclchk, cr)) {
2169                         mutex_exit(&zp->z_lock);
2170                         ZFS_EXIT(zfsvfs);
2171                         return (error);
2172                 }
2173         }
2174
2175         /*
2176          * Return all attributes.  It's cheaper to provide the answer
2177          * than to determine whether we were asked the question.
2178          */
2179
2180         vap->va_type = vp->v_type;
2181         vap->va_mode = pzp->zp_mode & MODEMASK;
2182         zfs_fuid_map_ids(zp, cr, &vap->va_uid, &vap->va_gid);
2183         vap->va_fsid = zp->z_zfsvfs->z_vfs->vfs_dev;
2184         vap->va_nodeid = zp->z_id;
2185         if ((vp->v_flag & VROOT) && zfs_show_ctldir(zp))
2186                 links = pzp->zp_links + 1;
2187         else
2188                 links = pzp->zp_links;
2189         vap->va_nlink = MIN(links, UINT32_MAX); /* nlink_t limit! */
2190         vap->va_size = pzp->zp_size;
2191         vap->va_rdev = vp->v_rdev;
2192         vap->va_seq = zp->z_seq;
2193
2194         /*
2195          * Add in any requested optional attributes and the create time.
2196          * Also set the corresponding bits in the returned attribute bitmap.
2197          */
2198         if ((xoap = xva_getxoptattr(xvap)) != NULL && zfsvfs->z_use_fuids) {
2199                 if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE)) {
2200                         xoap->xoa_archive =
2201                             ((pzp->zp_flags & ZFS_ARCHIVE) != 0);
2202                         XVA_SET_RTN(xvap, XAT_ARCHIVE);
2203                 }
2204
2205                 if (XVA_ISSET_REQ(xvap, XAT_READONLY)) {
2206                         xoap->xoa_readonly =
2207                             ((pzp->zp_flags & ZFS_READONLY) != 0);
2208                         XVA_SET_RTN(xvap, XAT_READONLY);
2209                 }
2210
2211                 if (XVA_ISSET_REQ(xvap, XAT_SYSTEM)) {
2212                         xoap->xoa_system =
2213                             ((pzp->zp_flags & ZFS_SYSTEM) != 0);
2214                         XVA_SET_RTN(xvap, XAT_SYSTEM);
2215                 }
2216
2217                 if (XVA_ISSET_REQ(xvap, XAT_HIDDEN)) {
2218                         xoap->xoa_hidden =
2219                             ((pzp->zp_flags & ZFS_HIDDEN) != 0);
2220                         XVA_SET_RTN(xvap, XAT_HIDDEN);
2221                 }
2222
2223                 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
2224                         xoap->xoa_nounlink =
2225                             ((pzp->zp_flags & ZFS_NOUNLINK) != 0);
2226                         XVA_SET_RTN(xvap, XAT_NOUNLINK);
2227                 }
2228
2229                 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
2230                         xoap->xoa_immutable =
2231                             ((pzp->zp_flags & ZFS_IMMUTABLE) != 0);
2232                         XVA_SET_RTN(xvap, XAT_IMMUTABLE);
2233                 }
2234
2235                 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
2236                         xoap->xoa_appendonly =
2237                             ((pzp->zp_flags & ZFS_APPENDONLY) != 0);
2238                         XVA_SET_RTN(xvap, XAT_APPENDONLY);
2239                 }
2240
2241                 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
2242                         xoap->xoa_nodump =
2243                             ((pzp->zp_flags & ZFS_NODUMP) != 0);
2244                         XVA_SET_RTN(xvap, XAT_NODUMP);
2245                 }
2246
2247                 if (XVA_ISSET_REQ(xvap, XAT_OPAQUE)) {
2248                         xoap->xoa_opaque =
2249                             ((pzp->zp_flags & ZFS_OPAQUE) != 0);
2250                         XVA_SET_RTN(xvap, XAT_OPAQUE);
2251                 }
2252
2253                 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
2254                         xoap->xoa_av_quarantined =
2255                             ((pzp->zp_flags & ZFS_AV_QUARANTINED) != 0);
2256                         XVA_SET_RTN(xvap, XAT_AV_QUARANTINED);
2257                 }
2258
2259                 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
2260                         xoap->xoa_av_modified =
2261                             ((pzp->zp_flags & ZFS_AV_MODIFIED) != 0);
2262                         XVA_SET_RTN(xvap, XAT_AV_MODIFIED);
2263                 }
2264
2265                 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP) &&
2266                     vp->v_type == VREG &&
2267                     (pzp->zp_flags & ZFS_BONUS_SCANSTAMP)) {
2268                         size_t len;
2269                         dmu_object_info_t doi;
2270
2271                         /*
2272                          * Only VREG files have anti-virus scanstamps, so we
2273                          * won't conflict with symlinks in the bonus buffer.
2274                          */
2275                         dmu_object_info_from_db(zp->z_dbuf, &doi);
2276                         len = sizeof (xoap->xoa_av_scanstamp) +
2277                             sizeof (znode_phys_t);
2278                         if (len <= doi.doi_bonus_size) {
2279                                 /*
2280                                  * pzp points to the start of the
2281                                  * znode_phys_t. pzp + 1 points to the
2282                                  * first byte after the znode_phys_t.
2283                                  */
2284                                 (void) memcpy(xoap->xoa_av_scanstamp,
2285                                     pzp + 1,
2286                                     sizeof (xoap->xoa_av_scanstamp));
2287                                 XVA_SET_RTN(xvap, XAT_AV_SCANSTAMP);
2288                         }
2289                 }
2290
2291                 if (XVA_ISSET_REQ(xvap, XAT_CREATETIME)) {
2292                         ZFS_TIME_DECODE(&xoap->xoa_createtime, pzp->zp_crtime);
2293                         XVA_SET_RTN(xvap, XAT_CREATETIME);
2294                 }
2295         }
2296
2297         ZFS_TIME_DECODE(&vap->va_atime, pzp->zp_atime);
2298         ZFS_TIME_DECODE(&vap->va_mtime, pzp->zp_mtime);
2299         ZFS_TIME_DECODE(&vap->va_ctime, pzp->zp_ctime);
2300
2301         mutex_exit(&zp->z_lock);
2302
2303         dmu_object_size_from_db(zp->z_dbuf, &vap->va_blksize, &vap->va_nblocks);
2304
2305         if (zp->z_blksz == 0) {
2306                 /*
2307                  * Block size hasn't been set; suggest maximal I/O transfers.
2308                  */
2309                 vap->va_blksize = zfsvfs->z_max_blksz;
2310         }
2311
2312         ZFS_EXIT(zfsvfs);
2313         return (0);
2314 }
2315
2316 /*
2317  * Set the file attributes to the values contained in the
2318  * vattr structure.
2319  *
2320  *      IN:     vp      - vnode of file to be modified.
2321  *              vap     - new attribute values.
2322  *                        If AT_XVATTR set, then optional attrs are being set
2323  *              flags   - ATTR_UTIME set if non-default time values provided.
2324  *                      - ATTR_NOACLCHECK (CIFS context only).
2325  *              cr      - credentials of caller.
2326  *              ct      - caller context
2327  *
2328  *      RETURN: 0 if success
2329  *              error code if failure
2330  *
2331  * Timestamps:
2332  *      vp - ctime updated, mtime updated if size changed.
2333  */
2334 /* ARGSUSED */
2335 static int
2336 zfs_setattr(vnode_t *vp, vattr_t *vap, int flags, cred_t *cr,
2337         caller_context_t *ct)
2338 {
2339         znode_t         *zp = VTOZ(vp);
2340         znode_phys_t    *pzp;
2341         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
2342         zilog_t         *zilog;
2343         dmu_tx_t        *tx;
2344         vattr_t         oldva;
2345         uint_t          mask = vap->va_mask;
2346         uint_t          saved_mask;
2347         int             trim_mask = 0;
2348         uint64_t        new_mode;
2349         znode_t         *attrzp;
2350         int             need_policy = FALSE;
2351         int             err;
2352         zfs_fuid_info_t *fuidp = NULL;
2353         xvattr_t *xvap = (xvattr_t *)vap;       /* vap may be an xvattr_t * */
2354         xoptattr_t      *xoap;
2355         zfs_acl_t       *aclp = NULL;
2356         boolean_t skipaclchk = (flags & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
2357
2358         if (mask == 0)
2359                 return (0);
2360
2361         if (mask & AT_NOSET)
2362                 return (EINVAL);
2363
2364         ZFS_ENTER(zfsvfs);
2365         ZFS_VERIFY_ZP(zp);
2366
2367         pzp = zp->z_phys;
2368         zilog = zfsvfs->z_log;
2369
2370         /*
2371          * Make sure that if we have ephemeral uid/gid or xvattr specified
2372          * that file system is at proper version level
2373          */
2374
2375         if (zfsvfs->z_use_fuids == B_FALSE &&
2376             (((mask & AT_UID) && IS_EPHEMERAL(vap->va_uid)) ||
2377             ((mask & AT_GID) && IS_EPHEMERAL(vap->va_gid)) ||
2378             (mask & AT_XVATTR))) {
2379                 ZFS_EXIT(zfsvfs);
2380                 return (EINVAL);
2381         }
2382
2383         if (mask & AT_SIZE && vp->v_type == VDIR) {
2384                 ZFS_EXIT(zfsvfs);
2385                 return (EISDIR);
2386         }
2387
2388         if (mask & AT_SIZE && vp->v_type != VREG && vp->v_type != VFIFO) {
2389                 ZFS_EXIT(zfsvfs);
2390                 return (EINVAL);
2391         }
2392
2393         /*
2394          * If this is an xvattr_t, then get a pointer to the structure of
2395          * optional attributes.  If this is NULL, then we have a vattr_t.
2396          */
2397         xoap = xva_getxoptattr(xvap);
2398
2399         /*
2400          * Immutable files can only alter immutable bit and atime
2401          */
2402         if ((pzp->zp_flags & ZFS_IMMUTABLE) &&
2403             ((mask & (AT_SIZE|AT_UID|AT_GID|AT_MTIME|AT_MODE)) ||
2404             ((mask & AT_XVATTR) && XVA_ISSET_REQ(xvap, XAT_CREATETIME)))) {
2405                 ZFS_EXIT(zfsvfs);
2406                 return (EPERM);
2407         }
2408
2409         if ((mask & AT_SIZE) && (pzp->zp_flags & ZFS_READONLY)) {
2410                 ZFS_EXIT(zfsvfs);
2411                 return (EPERM);
2412         }
2413
2414         /*
2415          * Verify timestamps doesn't overflow 32 bits.
2416          * ZFS can handle large timestamps, but 32bit syscalls can't
2417          * handle times greater than 2039.  This check should be removed
2418          * once large timestamps are fully supported.
2419          */
2420         if (mask & (AT_ATIME | AT_MTIME)) {
2421                 if (((mask & AT_ATIME) && TIMESPEC_OVERFLOW(&vap->va_atime)) ||
2422                     ((mask & AT_MTIME) && TIMESPEC_OVERFLOW(&vap->va_mtime))) {
2423                         ZFS_EXIT(zfsvfs);
2424                         return (EOVERFLOW);
2425                 }
2426         }
2427
2428 top:
2429         attrzp = NULL;
2430
2431         if (zfsvfs->z_vfs->vfs_flag & VFS_RDONLY) {
2432                 ZFS_EXIT(zfsvfs);
2433                 return (EROFS);
2434         }
2435
2436         /*
2437          * First validate permissions
2438          */
2439
2440         if (mask & AT_SIZE) {
2441                 err = zfs_zaccess(zp, ACE_WRITE_DATA, 0, skipaclchk, cr);
2442                 if (err) {
2443                         ZFS_EXIT(zfsvfs);
2444                         return (err);
2445                 }
2446                 /*
2447                  * XXX - Note, we are not providing any open
2448                  * mode flags here (like FNDELAY), so we may
2449                  * block if there are locks present... this
2450                  * should be addressed in openat().
2451                  */
2452                 /* XXX - would it be OK to generate a log record here? */
2453                 err = zfs_freesp(zp, vap->va_size, 0, 0, FALSE);
2454                 if (err) {
2455                         ZFS_EXIT(zfsvfs);
2456                         return (err);
2457                 }
2458         }
2459
2460         if (mask & (AT_ATIME|AT_MTIME) ||
2461             ((mask & AT_XVATTR) && (XVA_ISSET_REQ(xvap, XAT_HIDDEN) ||
2462             XVA_ISSET_REQ(xvap, XAT_READONLY) ||
2463             XVA_ISSET_REQ(xvap, XAT_ARCHIVE) ||
2464             XVA_ISSET_REQ(xvap, XAT_CREATETIME) ||
2465             XVA_ISSET_REQ(xvap, XAT_SYSTEM))))
2466                 need_policy = zfs_zaccess(zp, ACE_WRITE_ATTRIBUTES, 0,
2467                     skipaclchk, cr);
2468
2469         if (mask & (AT_UID|AT_GID)) {
2470                 int     idmask = (mask & (AT_UID|AT_GID));
2471                 int     take_owner;
2472                 int     take_group;
2473
2474                 /*
2475                  * NOTE: even if a new mode is being set,
2476                  * we may clear S_ISUID/S_ISGID bits.
2477                  */
2478
2479                 if (!(mask & AT_MODE))
2480                         vap->va_mode = pzp->zp_mode;
2481
2482                 /*
2483                  * Take ownership or chgrp to group we are a member of
2484                  */
2485
2486                 take_owner = (mask & AT_UID) && (vap->va_uid == crgetuid(cr));
2487                 take_group = (mask & AT_GID) &&
2488                     zfs_groupmember(zfsvfs, vap->va_gid, cr);
2489
2490                 /*
2491                  * If both AT_UID and AT_GID are set then take_owner and
2492                  * take_group must both be set in order to allow taking
2493                  * ownership.
2494                  *
2495                  * Otherwise, send the check through secpolicy_vnode_setattr()
2496                  *
2497                  */
2498
2499                 if (((idmask == (AT_UID|AT_GID)) && take_owner && take_group) ||
2500                     ((idmask == AT_UID) && take_owner) ||
2501                     ((idmask == AT_GID) && take_group)) {
2502                         if (zfs_zaccess(zp, ACE_WRITE_OWNER, 0,
2503                             skipaclchk, cr) == 0) {
2504                                 /*
2505                                  * Remove setuid/setgid for non-privileged users
2506                                  */
2507                                 secpolicy_setid_clear(vap, cr);
2508                                 trim_mask = (mask & (AT_UID|AT_GID));
2509                         } else {
2510                                 need_policy =  TRUE;
2511                         }
2512                 } else {
2513                         need_policy =  TRUE;
2514                 }
2515         }
2516
2517         mutex_enter(&zp->z_lock);
2518         oldva.va_mode = pzp->zp_mode;
2519         zfs_fuid_map_ids(zp, cr, &oldva.va_uid, &oldva.va_gid);
2520         if (mask & AT_XVATTR) {
2521                 if ((need_policy == FALSE) &&
2522                     (XVA_ISSET_REQ(xvap, XAT_APPENDONLY) &&
2523                     xoap->xoa_appendonly !=
2524                     ((pzp->zp_flags & ZFS_APPENDONLY) != 0)) ||
2525                     (XVA_ISSET_REQ(xvap, XAT_NOUNLINK) &&
2526                     xoap->xoa_nounlink !=
2527                     ((pzp->zp_flags & ZFS_NOUNLINK) != 0)) ||
2528                     (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE) &&
2529                     xoap->xoa_immutable !=
2530                     ((pzp->zp_flags & ZFS_IMMUTABLE) != 0)) ||
2531                     (XVA_ISSET_REQ(xvap, XAT_NODUMP) &&
2532                     xoap->xoa_nodump !=
2533                     ((pzp->zp_flags & ZFS_NODUMP) != 0)) ||
2534                     (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED) &&
2535                     xoap->xoa_av_modified !=
2536                     ((pzp->zp_flags & ZFS_AV_MODIFIED) != 0)) ||
2537                     ((XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED) &&
2538                     ((vp->v_type != VREG && xoap->xoa_av_quarantined) ||
2539                     xoap->xoa_av_quarantined !=
2540                     ((pzp->zp_flags & ZFS_AV_QUARANTINED) != 0)))) ||
2541                     (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP)) ||
2542                     (XVA_ISSET_REQ(xvap, XAT_OPAQUE))) {
2543                         need_policy = TRUE;
2544                 }
2545         }
2546
2547         mutex_exit(&zp->z_lock);
2548
2549         if (mask & AT_MODE) {
2550                 if (zfs_zaccess(zp, ACE_WRITE_ACL, 0, skipaclchk, cr) == 0) {
2551                         err = secpolicy_setid_setsticky_clear(vp, vap,
2552                             &oldva, cr);
2553                         if (err) {
2554                                 ZFS_EXIT(zfsvfs);
2555                                 return (err);
2556                         }
2557                         trim_mask |= AT_MODE;
2558                 } else {
2559                         need_policy = TRUE;
2560                 }
2561         }
2562
2563         if (need_policy) {
2564                 /*
2565                  * If trim_mask is set then take ownership
2566                  * has been granted or write_acl is present and user
2567                  * has the ability to modify mode.  In that case remove
2568                  * UID|GID and or MODE from mask so that
2569                  * secpolicy_vnode_setattr() doesn't revoke it.
2570                  */
2571
2572                 if (trim_mask) {
2573                         saved_mask = vap->va_mask;
2574                         vap->va_mask &= ~trim_mask;
2575                 }
2576                 err = secpolicy_vnode_setattr(cr, vp, vap, &oldva, flags,
2577                     (int (*)(void *, int, cred_t *))zfs_zaccess_unix, zp);
2578                 if (err) {
2579                         ZFS_EXIT(zfsvfs);
2580                         return (err);
2581                 }
2582
2583                 if (trim_mask)
2584                         vap->va_mask |= saved_mask;
2585         }
2586
2587         /*
2588          * secpolicy_vnode_setattr, or take ownership may have
2589          * changed va_mask
2590          */
2591         mask = vap->va_mask;
2592
2593         tx = dmu_tx_create(zfsvfs->z_os);
2594         dmu_tx_hold_bonus(tx, zp->z_id);
2595         if (((mask & AT_UID) && IS_EPHEMERAL(vap->va_uid)) ||
2596             ((mask & AT_GID) && IS_EPHEMERAL(vap->va_gid))) {
2597                 if (zfsvfs->z_fuid_obj == 0) {
2598                         dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
2599                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
2600                             FUID_SIZE_ESTIMATE(zfsvfs));
2601                         dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, FALSE, NULL);
2602                 } else {
2603                         dmu_tx_hold_bonus(tx, zfsvfs->z_fuid_obj);
2604                         dmu_tx_hold_write(tx, zfsvfs->z_fuid_obj, 0,
2605                             FUID_SIZE_ESTIMATE(zfsvfs));
2606                 }
2607         }
2608
2609         if (mask & AT_MODE) {
2610                 uint64_t pmode = pzp->zp_mode;
2611
2612                 new_mode = (pmode & S_IFMT) | (vap->va_mode & ~S_IFMT);
2613
2614                 if (err = zfs_acl_chmod_setattr(zp, &aclp, new_mode)) {
2615                         dmu_tx_abort(tx);
2616                         ZFS_EXIT(zfsvfs);
2617                         return (err);
2618                 }
2619                 if (pzp->zp_acl.z_acl_extern_obj) {
2620                         /* Are we upgrading ACL from old V0 format to new V1 */
2621                         if (zfsvfs->z_version <= ZPL_VERSION_FUID &&
2622                             pzp->zp_acl.z_acl_version ==
2623                             ZFS_ACL_VERSION_INITIAL) {
2624                                 dmu_tx_hold_free(tx,
2625                                     pzp->zp_acl.z_acl_extern_obj, 0,
2626                                     DMU_OBJECT_END);
2627                                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
2628                                     0, aclp->z_acl_bytes);
2629                         } else {
2630                                 dmu_tx_hold_write(tx,
2631                                     pzp->zp_acl.z_acl_extern_obj, 0,
2632                                     aclp->z_acl_bytes);
2633                         }
2634                 } else if (aclp->z_acl_bytes > ZFS_ACE_SPACE) {
2635                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
2636                             0, aclp->z_acl_bytes);
2637                 }
2638         }
2639
2640         if ((mask & (AT_UID | AT_GID)) && pzp->zp_xattr != 0) {
2641                 err = zfs_zget(zp->z_zfsvfs, pzp->zp_xattr, &attrzp);
2642                 if (err) {
2643                         dmu_tx_abort(tx);
2644                         ZFS_EXIT(zfsvfs);
2645                         if (aclp)
2646                                 zfs_acl_free(aclp);
2647                         return (err);
2648                 }
2649                 dmu_tx_hold_bonus(tx, attrzp->z_id);
2650         }
2651
2652         err = dmu_tx_assign(tx, zfsvfs->z_assign);
2653         if (err) {
2654                 if (attrzp)
2655                         VN_RELE(ZTOV(attrzp));
2656
2657                 if (aclp) {
2658                         zfs_acl_free(aclp);
2659                         aclp = NULL;
2660                 }
2661
2662                 if (err == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
2663                         dmu_tx_wait(tx);
2664                         dmu_tx_abort(tx);
2665                         goto top;
2666                 }
2667                 dmu_tx_abort(tx);
2668                 ZFS_EXIT(zfsvfs);
2669                 return (err);
2670         }
2671
2672         dmu_buf_will_dirty(zp->z_dbuf, tx);
2673
2674         /*
2675          * Set each attribute requested.
2676          * We group settings according to the locks they need to acquire.
2677          *
2678          * Note: you cannot set ctime directly, although it will be
2679          * updated as a side-effect of calling this function.
2680          */
2681
2682         mutex_enter(&zp->z_lock);
2683
2684         if (mask & AT_MODE) {
2685                 mutex_enter(&zp->z_acl_lock);
2686                 zp->z_phys->zp_mode = new_mode;
2687                 err = zfs_aclset_common(zp, aclp, cr, &fuidp, tx);
2688                 ASSERT3U(err, ==, 0);
2689                 mutex_exit(&zp->z_acl_lock);
2690         }
2691
2692         if (attrzp)
2693                 mutex_enter(&attrzp->z_lock);
2694
2695         if (mask & AT_UID) {
2696                 pzp->zp_uid = zfs_fuid_create(zfsvfs,
2697                     vap->va_uid, cr, ZFS_OWNER, tx, &fuidp);
2698                 if (attrzp) {
2699                         attrzp->z_phys->zp_uid = zfs_fuid_create(zfsvfs,
2700                             vap->va_uid,  cr, ZFS_OWNER, tx, &fuidp);
2701                 }
2702         }
2703
2704         if (mask & AT_GID) {
2705                 pzp->zp_gid = zfs_fuid_create(zfsvfs, vap->va_gid,
2706                     cr, ZFS_GROUP, tx, &fuidp);
2707                 if (attrzp)
2708                         attrzp->z_phys->zp_gid = zfs_fuid_create(zfsvfs,
2709                             vap->va_gid, cr, ZFS_GROUP, tx, &fuidp);
2710         }
2711
2712         if (aclp)
2713                 zfs_acl_free(aclp);
2714
2715         if (attrzp)
2716                 mutex_exit(&attrzp->z_lock);
2717
2718         if (mask & AT_ATIME)
2719                 ZFS_TIME_ENCODE(&vap->va_atime, pzp->zp_atime);
2720
2721         if (mask & AT_MTIME)
2722                 ZFS_TIME_ENCODE(&vap->va_mtime, pzp->zp_mtime);
2723
2724         /* XXX - shouldn't this be done *before* the ATIME/MTIME checks? */
2725         if (mask & AT_SIZE)
2726                 zfs_time_stamper_locked(zp, CONTENT_MODIFIED, tx);
2727         else if (mask != 0)
2728                 zfs_time_stamper_locked(zp, STATE_CHANGED, tx);
2729         /*
2730          * Do this after setting timestamps to prevent timestamp
2731          * update from toggling bit
2732          */
2733
2734         if (xoap && (mask & AT_XVATTR)) {
2735                 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP)) {
2736                         size_t len;
2737                         dmu_object_info_t doi;
2738
2739                         ASSERT(vp->v_type == VREG);
2740
2741                         /* Grow the bonus buffer if necessary. */
2742                         dmu_object_info_from_db(zp->z_dbuf, &doi);
2743                         len = sizeof (xoap->xoa_av_scanstamp) +
2744                             sizeof (znode_phys_t);
2745                         if (len > doi.doi_bonus_size)
2746                                 VERIFY(dmu_set_bonus(zp->z_dbuf, len, tx) == 0);
2747                 }
2748                 zfs_xvattr_set(zp, xvap);
2749         }
2750
2751         if (mask != 0)
2752                 zfs_log_setattr(zilog, tx, TX_SETATTR, zp, vap, mask, fuidp);
2753
2754         if (fuidp)
2755                 zfs_fuid_info_free(fuidp);
2756         mutex_exit(&zp->z_lock);
2757
2758         if (attrzp)
2759                 VN_RELE(ZTOV(attrzp));
2760
2761         dmu_tx_commit(tx);
2762
2763         ZFS_EXIT(zfsvfs);
2764         return (err);
2765 }
2766
2767 typedef struct zfs_zlock {
2768         krwlock_t       *zl_rwlock;     /* lock we acquired */
2769         znode_t         *zl_znode;      /* znode we held */
2770         struct zfs_zlock *zl_next;      /* next in list */
2771 } zfs_zlock_t;
2772
2773 /*
2774  * Drop locks and release vnodes that were held by zfs_rename_lock().
2775  */
2776 static void
2777 zfs_rename_unlock(zfs_zlock_t **zlpp)
2778 {
2779         zfs_zlock_t *zl;
2780
2781         while ((zl = *zlpp) != NULL) {
2782                 if (zl->zl_znode != NULL)
2783                         VN_RELE(ZTOV(zl->zl_znode));
2784                 rw_exit(zl->zl_rwlock);
2785                 *zlpp = zl->zl_next;
2786                 kmem_free(zl, sizeof (*zl));
2787         }
2788 }
2789
2790 /*
2791  * Search back through the directory tree, using the ".." entries.
2792  * Lock each directory in the chain to prevent concurrent renames.
2793  * Fail any attempt to move a directory into one of its own descendants.
2794  * XXX - z_parent_lock can overlap with map or grow locks
2795  */
2796 static int
2797 zfs_rename_lock(znode_t *szp, znode_t *tdzp, znode_t *sdzp, zfs_zlock_t **zlpp)
2798 {
2799         zfs_zlock_t     *zl;
2800         znode_t         *zp = tdzp;
2801         uint64_t        rootid = zp->z_zfsvfs->z_root;
2802         uint64_t        *oidp = &zp->z_id;
2803         krwlock_t       *rwlp = &szp->z_parent_lock;
2804         krw_t           rw = RW_WRITER;
2805
2806         /*
2807          * First pass write-locks szp and compares to zp->z_id.
2808          * Later passes read-lock zp and compare to zp->z_parent.
2809          */
2810         do {
2811                 if (!rw_tryenter(rwlp, rw)) {
2812                         /*
2813                          * Another thread is renaming in this path.
2814                          * Note that if we are a WRITER, we don't have any
2815                          * parent_locks held yet.
2816                          */
2817                         if (rw == RW_READER && zp->z_id > szp->z_id) {
2818                                 /*
2819                                  * Drop our locks and restart
2820                                  */
2821                                 zfs_rename_unlock(&zl);
2822                                 *zlpp = NULL;
2823                                 zp = tdzp;
2824                                 oidp = &zp->z_id;
2825                                 rwlp = &szp->z_parent_lock;
2826                                 rw = RW_WRITER;
2827                                 continue;
2828                         } else {
2829                                 /*
2830                                  * Wait for other thread to drop its locks
2831                                  */
2832                                 rw_enter(rwlp, rw);
2833                         }
2834                 }
2835
2836                 zl = kmem_alloc(sizeof (*zl), KM_SLEEP);
2837                 zl->zl_rwlock = rwlp;
2838                 zl->zl_znode = NULL;
2839                 zl->zl_next = *zlpp;
2840                 *zlpp = zl;
2841
2842                 if (*oidp == szp->z_id)         /* We're a descendant of szp */
2843                         return (EINVAL);
2844
2845                 if (*oidp == rootid)            /* We've hit the top */
2846                         return (0);
2847
2848                 if (rw == RW_READER) {          /* i.e. not the first pass */
2849                         int error = zfs_zget(zp->z_zfsvfs, *oidp, &zp);
2850                         if (error)
2851                                 return (error);
2852                         zl->zl_znode = zp;
2853                 }
2854                 oidp = &zp->z_phys->zp_parent;
2855                 rwlp = &zp->z_parent_lock;
2856                 rw = RW_READER;
2857
2858         } while (zp->z_id != sdzp->z_id);
2859
2860         return (0);
2861 }
2862
2863 /*
2864  * Move an entry from the provided source directory to the target
2865  * directory.  Change the entry name as indicated.
2866  *
2867  *      IN:     sdvp    - Source directory containing the "old entry".
2868  *              snm     - Old entry name.
2869  *              tdvp    - Target directory to contain the "new entry".
2870  *              tnm     - New entry name.
2871  *              cr      - credentials of caller.
2872  *              ct      - caller context
2873  *              flags   - case flags
2874  *
2875  *      RETURN: 0 if success
2876  *              error code if failure
2877  *
2878  * Timestamps:
2879  *      sdvp,tdvp - ctime|mtime updated
2880  */
2881 /*ARGSUSED*/
2882 static int
2883 zfs_rename(vnode_t *sdvp, char *snm, vnode_t *tdvp, char *tnm, cred_t *cr,
2884     caller_context_t *ct, int flags)
2885 {
2886         znode_t         *tdzp, *szp, *tzp;
2887         znode_t         *sdzp = VTOZ(sdvp);
2888         zfsvfs_t        *zfsvfs = sdzp->z_zfsvfs;
2889         zilog_t         *zilog;
2890         vnode_t         *realvp;
2891         zfs_dirlock_t   *sdl, *tdl;
2892         dmu_tx_t        *tx;
2893         zfs_zlock_t     *zl;
2894         int             cmp, serr, terr;
2895         int             error = 0;
2896         int             zflg = 0;
2897
2898         ZFS_ENTER(zfsvfs);
2899         ZFS_VERIFY_ZP(sdzp);
2900         zilog = zfsvfs->z_log;
2901
2902         /*
2903          * Make sure we have the real vp for the target directory.
2904          */
2905         if (VOP_REALVP(tdvp, &realvp, ct) == 0)
2906                 tdvp = realvp;
2907
2908         if (tdvp->v_vfsp != sdvp->v_vfsp) {
2909                 ZFS_EXIT(zfsvfs);
2910                 return (EXDEV);
2911         }
2912
2913         tdzp = VTOZ(tdvp);
2914         ZFS_VERIFY_ZP(tdzp);
2915         if (zfsvfs->z_utf8 && u8_validate(tnm,
2916             strlen(tnm), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
2917                 ZFS_EXIT(zfsvfs);
2918                 return (EILSEQ);
2919         }
2920
2921         if (flags & FIGNORECASE)
2922                 zflg |= ZCILOOK;
2923
2924 top:
2925         szp = NULL;
2926         tzp = NULL;
2927         zl = NULL;
2928
2929         /*
2930          * This is to prevent the creation of links into attribute space
2931          * by renaming a linked file into/outof an attribute directory.
2932          * See the comment in zfs_link() for why this is considered bad.
2933          */
2934         if ((tdzp->z_phys->zp_flags & ZFS_XATTR) !=
2935             (sdzp->z_phys->zp_flags & ZFS_XATTR)) {
2936                 ZFS_EXIT(zfsvfs);
2937                 return (EINVAL);
2938         }
2939
2940         /*
2941          * Lock source and target directory entries.  To prevent deadlock,
2942          * a lock ordering must be defined.  We lock the directory with
2943          * the smallest object id first, or if it's a tie, the one with
2944          * the lexically first name.
2945          */
2946         if (sdzp->z_id < tdzp->z_id) {
2947                 cmp = -1;
2948         } else if (sdzp->z_id > tdzp->z_id) {
2949                 cmp = 1;
2950         } else {
2951                 /*
2952                  * First compare the two name arguments without
2953                  * considering any case folding.
2954                  */
2955                 int nofold = (zfsvfs->z_norm & ~U8_TEXTPREP_TOUPPER);
2956
2957                 cmp = u8_strcmp(snm, tnm, 0, nofold, U8_UNICODE_LATEST, &error);
2958                 ASSERT(error == 0 || !zfsvfs->z_utf8);
2959                 if (cmp == 0) {
2960                         /*
2961                          * POSIX: "If the old argument and the new argument
2962                          * both refer to links to the same existing file,
2963                          * the rename() function shall return successfully
2964                          * and perform no other action."
2965                          */
2966                         ZFS_EXIT(zfsvfs);
2967                         return (0);
2968                 }
2969                 /*
2970                  * If the file system is case-folding, then we may
2971                  * have some more checking to do.  A case-folding file
2972                  * system is either supporting mixed case sensitivity
2973                  * access or is completely case-insensitive.  Note
2974                  * that the file system is always case preserving.
2975                  *
2976                  * In mixed sensitivity mode case sensitive behavior
2977                  * is the default.  FIGNORECASE must be used to
2978                  * explicitly request case insensitive behavior.
2979                  *
2980                  * If the source and target names provided differ only
2981                  * by case (e.g., a request to rename 'tim' to 'Tim'),
2982                  * we will treat this as a special case in the
2983                  * case-insensitive mode: as long as the source name
2984                  * is an exact match, we will allow this to proceed as
2985                  * a name-change request.
2986                  */
2987                 if ((zfsvfs->z_case == ZFS_CASE_INSENSITIVE ||
2988                     (zfsvfs->z_case == ZFS_CASE_MIXED &&
2989                     flags & FIGNORECASE)) &&
2990                     u8_strcmp(snm, tnm, 0, zfsvfs->z_norm, U8_UNICODE_LATEST,
2991                     &error) == 0) {
2992                         /*
2993                          * case preserving rename request, require exact
2994                          * name matches
2995                          */
2996                         zflg |= ZCIEXACT;
2997                         zflg &= ~ZCILOOK;
2998                 }
2999         }
3000
3001         if (cmp < 0) {
3002                 serr = zfs_dirent_lock(&sdl, sdzp, snm, &szp,
3003                     ZEXISTS | zflg, NULL, NULL);
3004                 terr = zfs_dirent_lock(&tdl,
3005                     tdzp, tnm, &tzp, ZRENAMING | zflg, NULL, NULL);
3006         } else {
3007                 terr = zfs_dirent_lock(&tdl,
3008                     tdzp, tnm, &tzp, zflg, NULL, NULL);
3009                 serr = zfs_dirent_lock(&sdl,
3010                     sdzp, snm, &szp, ZEXISTS | ZRENAMING | zflg,
3011                     NULL, NULL);
3012         }
3013
3014         if (serr) {
3015                 /*
3016                  * Source entry invalid or not there.
3017                  */
3018                 if (!terr) {
3019                         zfs_dirent_unlock(tdl);
3020                         if (tzp)
3021                                 VN_RELE(ZTOV(tzp));
3022                 }
3023                 if (strcmp(snm, "..") == 0)
3024                         serr = EINVAL;
3025                 ZFS_EXIT(zfsvfs);
3026                 return (serr);
3027         }
3028         if (terr) {
3029                 zfs_dirent_unlock(sdl);
3030                 VN_RELE(ZTOV(szp));
3031                 if (strcmp(tnm, "..") == 0)
3032                         terr = EINVAL;
3033                 ZFS_EXIT(zfsvfs);
3034                 return (terr);
3035         }
3036
3037         /*
3038          * Must have write access at the source to remove the old entry
3039          * and write access at the target to create the new entry.
3040          * Note that if target and source are the same, this can be
3041          * done in a single check.
3042          */
3043
3044         if (error = zfs_zaccess_rename(sdzp, szp, tdzp, tzp, cr))
3045                 goto out;
3046
3047         if (ZTOV(szp)->v_type == VDIR) {
3048                 /*
3049                  * Check to make sure rename is valid.
3050                  * Can't do a move like this: /usr/a/b to /usr/a/b/c/d
3051                  */
3052                 if (error = zfs_rename_lock(szp, tdzp, sdzp, &zl))
3053                         goto out;
3054         }
3055
3056         /*
3057          * Does target exist?
3058          */
3059         if (tzp) {
3060                 /*
3061                  * Source and target must be the same type.
3062                  */
3063                 if (ZTOV(szp)->v_type == VDIR) {
3064                         if (ZTOV(tzp)->v_type != VDIR) {
3065                                 error = ENOTDIR;
3066                                 goto out;
3067                         }
3068                 } else {
3069                         if (ZTOV(tzp)->v_type == VDIR) {
3070                                 error = EISDIR;
3071                                 goto out;
3072                         }
3073                 }
3074                 /*
3075                  * POSIX dictates that when the source and target
3076                  * entries refer to the same file object, rename
3077                  * must do nothing and exit without error.
3078                  */
3079                 if (szp->z_id == tzp->z_id) {
3080                         error = 0;
3081                         goto out;
3082                 }
3083         }
3084
3085         vnevent_rename_src(ZTOV(szp), sdvp, snm, ct);
3086         if (tzp)
3087                 vnevent_rename_dest(ZTOV(tzp), tdvp, tnm, ct);
3088
3089         /*
3090          * notify the target directory if it is not the same
3091          * as source directory.
3092          */
3093         if (tdvp != sdvp) {
3094                 vnevent_rename_dest_dir(tdvp, ct);
3095         }
3096
3097         tx = dmu_tx_create(zfsvfs->z_os);
3098         dmu_tx_hold_bonus(tx, szp->z_id);       /* nlink changes */
3099         dmu_tx_hold_bonus(tx, sdzp->z_id);      /* nlink changes */
3100         dmu_tx_hold_zap(tx, sdzp->z_id, FALSE, snm);
3101         dmu_tx_hold_zap(tx, tdzp->z_id, TRUE, tnm);
3102         if (sdzp != tdzp)
3103                 dmu_tx_hold_bonus(tx, tdzp->z_id);      /* nlink changes */
3104         if (tzp)
3105                 dmu_tx_hold_bonus(tx, tzp->z_id);       /* parent changes */
3106         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
3107         error = dmu_tx_assign(tx, zfsvfs->z_assign);
3108         if (error) {
3109                 if (zl != NULL)
3110                         zfs_rename_unlock(&zl);
3111                 zfs_dirent_unlock(sdl);
3112                 zfs_dirent_unlock(tdl);
3113                 VN_RELE(ZTOV(szp));
3114                 if (tzp)
3115                         VN_RELE(ZTOV(tzp));
3116                 if (error == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
3117                         dmu_tx_wait(tx);
3118                         dmu_tx_abort(tx);
3119                         goto top;
3120                 }
3121                 dmu_tx_abort(tx);
3122                 ZFS_EXIT(zfsvfs);
3123                 return (error);
3124         }
3125
3126         if (tzp)        /* Attempt to remove the existing target */
3127                 error = zfs_link_destroy(tdl, tzp, tx, zflg, NULL);
3128
3129         if (error == 0) {
3130                 error = zfs_link_create(tdl, szp, tx, ZRENAMING);
3131                 if (error == 0) {
3132                         szp->z_phys->zp_flags |= ZFS_AV_MODIFIED;
3133
3134                         error = zfs_link_destroy(sdl, szp, tx, ZRENAMING, NULL);
3135                         ASSERT(error == 0);
3136
3137                         zfs_log_rename(zilog, tx,
3138                             TX_RENAME | (flags & FIGNORECASE ? TX_CI : 0),
3139                             sdzp, sdl->dl_name, tdzp, tdl->dl_name, szp);
3140
3141                         /* Update path information for the target vnode */
3142                         vn_renamepath(tdvp, ZTOV(szp), tnm, strlen(tnm));
3143                 }
3144         }
3145
3146         dmu_tx_commit(tx);
3147 out:
3148         if (zl != NULL)
3149                 zfs_rename_unlock(&zl);
3150
3151         zfs_dirent_unlock(sdl);
3152         zfs_dirent_unlock(tdl);
3153
3154         VN_RELE(ZTOV(szp));
3155         if (tzp)
3156                 VN_RELE(ZTOV(tzp));
3157
3158         ZFS_EXIT(zfsvfs);
3159         return (error);
3160 }
3161
3162 /*
3163  * Insert the indicated symbolic reference entry into the directory.
3164  *
3165  *      IN:     dvp     - Directory to contain new symbolic link.
3166  *              link    - Name for new symlink entry.
3167  *              vap     - Attributes of new entry.
3168  *              target  - Target path of new symlink.
3169  *              cr      - credentials of caller.
3170  *              ct      - caller context
3171  *              flags   - case flags
3172  *
3173  *      RETURN: 0 if success
3174  *              error code if failure
3175  *
3176  * Timestamps:
3177  *      dvp - ctime|mtime updated
3178  */
3179 /*ARGSUSED*/
3180 static int
3181 zfs_symlink(vnode_t *dvp, char *name, vattr_t *vap, char *link, cred_t *cr,
3182     caller_context_t *ct, int flags)
3183 {
3184         znode_t         *zp, *dzp = VTOZ(dvp);
3185         zfs_dirlock_t   *dl;
3186         dmu_tx_t        *tx;
3187         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
3188         zilog_t         *zilog;
3189         int             len = strlen(link);
3190         int             error;
3191         int             zflg = ZNEW;
3192         zfs_fuid_info_t *fuidp = NULL;
3193
3194         ASSERT(vap->va_type == VLNK);
3195
3196         ZFS_ENTER(zfsvfs);
3197         ZFS_VERIFY_ZP(dzp);
3198         zilog = zfsvfs->z_log;
3199
3200         if (zfsvfs->z_utf8 && u8_validate(name, strlen(name),
3201             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
3202                 ZFS_EXIT(zfsvfs);
3203                 return (EILSEQ);
3204         }
3205         if (flags & FIGNORECASE)
3206                 zflg |= ZCILOOK;
3207 top:
3208         if (error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr)) {
3209                 ZFS_EXIT(zfsvfs);
3210                 return (error);
3211         }
3212
3213         if (len > MAXPATHLEN) {
3214                 ZFS_EXIT(zfsvfs);
3215                 return (ENAMETOOLONG);
3216         }
3217
3218         /*
3219          * Attempt to lock directory; fail if entry already exists.
3220          */
3221         error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg, NULL, NULL);
3222         if (error) {
3223                 ZFS_EXIT(zfsvfs);
3224                 return (error);
3225         }
3226
3227         tx = dmu_tx_create(zfsvfs->z_os);
3228         dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, MAX(1, len));
3229         dmu_tx_hold_bonus(tx, dzp->z_id);
3230         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
3231         if (dzp->z_phys->zp_flags & ZFS_INHERIT_ACE)
3232                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, SPA_MAXBLOCKSIZE);
3233         if (IS_EPHEMERAL(crgetuid(cr)) || IS_EPHEMERAL(crgetgid(cr))) {
3234                 if (zfsvfs->z_fuid_obj == 0) {
3235                         dmu_tx_hold_bonus(tx, DMU_NEW_OBJECT);
3236                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
3237                             FUID_SIZE_ESTIMATE(zfsvfs));
3238                         dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, FALSE, NULL);
3239                 } else {
3240                         dmu_tx_hold_bonus(tx, zfsvfs->z_fuid_obj);
3241                         dmu_tx_hold_write(tx, zfsvfs->z_fuid_obj, 0,
3242                             FUID_SIZE_ESTIMATE(zfsvfs));
3243                 }
3244         }
3245         error = dmu_tx_assign(tx, zfsvfs->z_assign);
3246         if (error) {
3247                 zfs_dirent_unlock(dl);
3248                 if (error == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
3249                         dmu_tx_wait(tx);
3250                         dmu_tx_abort(tx);
3251                         goto top;
3252                 }
3253                 dmu_tx_abort(tx);
3254                 ZFS_EXIT(zfsvfs);
3255                 return (error);
3256         }
3257
3258         dmu_buf_will_dirty(dzp->z_dbuf, tx);
3259
3260         /*
3261          * Create a new object for the symlink.
3262          * Put the link content into bonus buffer if it will fit;
3263          * otherwise, store it just like any other file data.
3264          */
3265         if (sizeof (znode_phys_t) + len <= dmu_bonus_max()) {
3266                 zfs_mknode(dzp, vap, tx, cr, 0, &zp, len, NULL, &fuidp);
3267                 if (len != 0)
3268                         bcopy(link, zp->z_phys + 1, len);
3269         } else {
3270                 dmu_buf_t *dbp;
3271
3272                 zfs_mknode(dzp, vap, tx, cr, 0, &zp, 0, NULL, &fuidp);
3273                 /*
3274                  * Nothing can access the znode yet so no locking needed
3275                  * for growing the znode's blocksize.
3276                  */
3277                 zfs_grow_blocksize(zp, len, tx);
3278
3279                 VERIFY(0 == dmu_buf_hold(zfsvfs->z_os,
3280                     zp->z_id, 0, FTAG, &dbp));
3281                 dmu_buf_will_dirty(dbp, tx);
3282
3283                 ASSERT3U(len, <=, dbp->db_size);
3284                 bcopy(link, dbp->db_data, len);
3285                 dmu_buf_rele(dbp, FTAG);
3286         }
3287         zp->z_phys->zp_size = len;
3288
3289         /*
3290          * Insert the new object into the directory.
3291          */
3292         (void) zfs_link_create(dl, zp, tx, ZNEW);
3293 out:
3294         if (error == 0) {
3295                 uint64_t txtype = TX_SYMLINK;
3296                 if (flags & FIGNORECASE)
3297                         txtype |= TX_CI;
3298                 zfs_log_symlink(zilog, tx, txtype, dzp, zp, name, link);
3299         }
3300         if (fuidp)
3301                 zfs_fuid_info_free(fuidp);
3302
3303         dmu_tx_commit(tx);
3304
3305         zfs_dirent_unlock(dl);
3306
3307         VN_RELE(ZTOV(zp));
3308
3309         ZFS_EXIT(zfsvfs);
3310         return (error);
3311 }
3312
3313 /*
3314  * Return, in the buffer contained in the provided uio structure,
3315  * the symbolic path referred to by vp.
3316  *
3317  *      IN:     vp      - vnode of symbolic link.
3318  *              uoip    - structure to contain the link path.
3319  *              cr      - credentials of caller.
3320  *              ct      - caller context
3321  *
3322  *      OUT:    uio     - structure to contain the link path.
3323  *
3324  *      RETURN: 0 if success
3325  *              error code if failure
3326  *
3327  * Timestamps:
3328  *      vp - atime updated
3329  */
3330 /* ARGSUSED */
3331 static int
3332 zfs_readlink(vnode_t *vp, uio_t *uio, cred_t *cr, caller_context_t *ct)
3333 {
3334         znode_t         *zp = VTOZ(vp);
3335         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
3336         size_t          bufsz;
3337         int             error;
3338
3339         ZFS_ENTER(zfsvfs);
3340         ZFS_VERIFY_ZP(zp);
3341
3342         bufsz = (size_t)zp->z_phys->zp_size;
3343         if (bufsz + sizeof (znode_phys_t) <= zp->z_dbuf->db_size) {
3344                 error = uiomove(zp->z_phys + 1,
3345                     MIN((size_t)bufsz, uio->uio_resid), UIO_READ, uio);
3346         } else {
3347                 dmu_buf_t *dbp;
3348                 error = dmu_buf_hold(zfsvfs->z_os, zp->z_id, 0, FTAG, &dbp);
3349                 if (error) {
3350                         ZFS_EXIT(zfsvfs);
3351                         return (error);
3352                 }
3353                 error = uiomove(dbp->db_data,
3354                     MIN((size_t)bufsz, uio->uio_resid), UIO_READ, uio);
3355                 dmu_buf_rele(dbp, FTAG);
3356         }
3357
3358         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
3359         ZFS_EXIT(zfsvfs);
3360         return (error);
3361 }
3362
3363 /*
3364  * Insert a new entry into directory tdvp referencing svp.
3365  *
3366  *      IN:     tdvp    - Directory to contain new entry.
3367  *              svp     - vnode of new entry.
3368  *              name    - name of new entry.
3369  *              cr      - credentials of caller.
3370  *              ct      - caller context
3371  *
3372  *      RETURN: 0 if success
3373  *              error code if failure
3374  *
3375  * Timestamps:
3376  *      tdvp - ctime|mtime updated
3377  *       svp - ctime updated
3378  */
3379 /* ARGSUSED */
3380 static int
3381 zfs_link(vnode_t *tdvp, vnode_t *svp, char *name, cred_t *cr,
3382     caller_context_t *ct, int flags)
3383 {
3384         znode_t         *dzp = VTOZ(tdvp);
3385         znode_t         *tzp, *szp;
3386         zfsvfs_t        *zfsvfs = dzp->z_zfsvfs;
3387         zilog_t         *zilog;
3388         zfs_dirlock_t   *dl;
3389         dmu_tx_t        *tx;
3390         vnode_t         *realvp;
3391         int             error;
3392         int             zf = ZNEW;
3393         uid_t           owner;
3394
3395         ASSERT(tdvp->v_type == VDIR);
3396
3397         ZFS_ENTER(zfsvfs);
3398         ZFS_VERIFY_ZP(dzp);
3399         zilog = zfsvfs->z_log;
3400
3401         if (VOP_REALVP(svp, &realvp, ct) == 0)
3402                 svp = realvp;
3403
3404         if (svp->v_vfsp != tdvp->v_vfsp) {
3405                 ZFS_EXIT(zfsvfs);
3406                 return (EXDEV);
3407         }
3408         szp = VTOZ(svp);
3409         ZFS_VERIFY_ZP(szp);
3410
3411         if (zfsvfs->z_utf8 && u8_validate(name,
3412             strlen(name), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
3413                 ZFS_EXIT(zfsvfs);
3414                 return (EILSEQ);
3415         }
3416         if (flags & FIGNORECASE)
3417                 zf |= ZCILOOK;
3418
3419 top:
3420         /*
3421          * We do not support links between attributes and non-attributes
3422          * because of the potential security risk of creating links
3423          * into "normal" file space in order to circumvent restrictions
3424          * imposed in attribute space.
3425          */
3426         if ((szp->z_phys->zp_flags & ZFS_XATTR) !=
3427             (dzp->z_phys->zp_flags & ZFS_XATTR)) {
3428                 ZFS_EXIT(zfsvfs);
3429                 return (EINVAL);
3430         }
3431
3432         /*
3433          * POSIX dictates that we return EPERM here.
3434          * Better choices include ENOTSUP or EISDIR.
3435          */
3436         if (svp->v_type == VDIR) {
3437                 ZFS_EXIT(zfsvfs);
3438                 return (EPERM);
3439         }
3440
3441         owner = zfs_fuid_map_id(zfsvfs, szp->z_phys->zp_uid, cr, ZFS_OWNER);
3442         if (owner != crgetuid(cr) &&
3443             secpolicy_basic_link(cr) != 0) {
3444                 ZFS_EXIT(zfsvfs);
3445                 return (EPERM);
3446         }
3447
3448         if (error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr)) {
3449                 ZFS_EXIT(zfsvfs);
3450                 return (error);
3451         }
3452
3453         /*
3454          * Attempt to lock directory; fail if entry already exists.
3455          */
3456         error = zfs_dirent_lock(&dl, dzp, name, &tzp, zf, NULL, NULL);
3457         if (error) {
3458                 ZFS_EXIT(zfsvfs);
3459                 return (error);
3460         }
3461
3462         tx = dmu_tx_create(zfsvfs->z_os);
3463         dmu_tx_hold_bonus(tx, szp->z_id);
3464         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
3465         error = dmu_tx_assign(tx, zfsvfs->z_assign);
3466         if (error) {
3467                 zfs_dirent_unlock(dl);
3468                 if (error == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
3469                         dmu_tx_wait(tx);
3470                         dmu_tx_abort(tx);
3471                         goto top;
3472                 }
3473                 dmu_tx_abort(tx);
3474                 ZFS_EXIT(zfsvfs);
3475                 return (error);
3476         }
3477
3478         error = zfs_link_create(dl, szp, tx, 0);
3479
3480         if (error == 0) {
3481                 uint64_t txtype = TX_LINK;
3482                 if (flags & FIGNORECASE)
3483                         txtype |= TX_CI;
3484                 zfs_log_link(zilog, tx, txtype, dzp, szp, name);
3485         }
3486
3487         dmu_tx_commit(tx);
3488
3489         zfs_dirent_unlock(dl);
3490
3491         if (error == 0) {
3492                 vnevent_link(svp, ct);
3493         }
3494
3495         ZFS_EXIT(zfsvfs);
3496         return (error);
3497 }
3498
3499 /*
3500  * zfs_null_putapage() is used when the file system has been force
3501  * unmounted. It just drops the pages.
3502  */
3503 /* ARGSUSED */
3504 static int
3505 zfs_null_putapage(vnode_t *vp, page_t *pp, u_offset_t *offp,
3506                 size_t *lenp, int flags, cred_t *cr)
3507 {
3508         pvn_write_done(pp, B_INVAL|B_FORCE|B_ERROR);
3509         return (0);
3510 }
3511
3512 /*
3513  * Push a page out to disk, klustering if possible.
3514  *
3515  *      IN:     vp      - file to push page to.
3516  *              pp      - page to push.
3517  *              flags   - additional flags.
3518  *              cr      - credentials of caller.
3519  *
3520  *      OUT:    offp    - start of range pushed.
3521  *              lenp    - len of range pushed.
3522  *
3523  *      RETURN: 0 if success
3524  *              error code if failure
3525  *
3526  * NOTE: callers must have locked the page to be pushed.  On
3527  * exit, the page (and all other pages in the kluster) must be
3528  * unlocked.
3529  */
3530 /* ARGSUSED */
3531 static int
3532 zfs_putapage(vnode_t *vp, page_t *pp, u_offset_t *offp,
3533                 size_t *lenp, int flags, cred_t *cr)
3534 {
3535         znode_t         *zp = VTOZ(vp);
3536         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
3537         zilog_t         *zilog = zfsvfs->z_log;
3538         dmu_tx_t        *tx;
3539         rl_t            *rl;
3540         u_offset_t      off, koff;
3541         size_t          len, klen;
3542         uint64_t        filesz;
3543         int             err;
3544
3545         filesz = zp->z_phys->zp_size;
3546         off = pp->p_offset;
3547         len = PAGESIZE;
3548         /*
3549          * If our blocksize is bigger than the page size, try to kluster
3550          * muiltiple pages so that we write a full block (thus avoiding
3551          * a read-modify-write).
3552          */
3553         if (off < filesz && zp->z_blksz > PAGESIZE) {
3554                 if (!ISP2(zp->z_blksz)) {
3555                         /* Only one block in the file. */
3556                         klen = P2ROUNDUP((ulong_t)zp->z_blksz, PAGESIZE);
3557                         koff = 0;
3558                 } else {
3559                         klen = zp->z_blksz;
3560                         koff = P2ALIGN(off, (u_offset_t)klen);
3561                 }
3562                 ASSERT(koff <= filesz);
3563                 if (koff + klen > filesz)
3564                         klen = P2ROUNDUP(filesz - koff, (uint64_t)PAGESIZE);
3565                 pp = pvn_write_kluster(vp, pp, &off, &len, koff, klen, flags);
3566         }
3567         ASSERT3U(btop(len), ==, btopr(len));
3568 top:
3569         rl = zfs_range_lock(zp, off, len, RL_WRITER);
3570         /*
3571          * Can't push pages past end-of-file.
3572          */
3573         filesz = zp->z_phys->zp_size;
3574         if (off >= filesz) {
3575                 /* ignore all pages */
3576                 err = 0;
3577                 goto out;
3578         } else if (off + len > filesz) {
3579                 int npages = btopr(filesz - off);
3580                 page_t *trunc;
3581
3582                 page_list_break(&pp, &trunc, npages);
3583                 /* ignore pages past end of file */
3584                 if (trunc)
3585                         pvn_write_done(trunc, flags);
3586                 len = filesz - off;
3587         }
3588
3589         tx = dmu_tx_create(zfsvfs->z_os);
3590         dmu_tx_hold_write(tx, zp->z_id, off, len);
3591         dmu_tx_hold_bonus(tx, zp->z_id);
3592         err = dmu_tx_assign(tx, zfsvfs->z_assign);
3593         if (err != 0) {
3594                 if (err == ERESTART && zfsvfs->z_assign == TXG_NOWAIT) {
3595                         zfs_range_unlock(rl);
3596                         dmu_tx_wait(tx);
3597                         dmu_tx_abort(tx);
3598                         err = 0;
3599                         goto top;
3600                 }
3601                 dmu_tx_abort(tx);
3602                 goto out;
3603         }
3604
3605         if (zp->z_blksz <= PAGESIZE) {
3606                 caddr_t va = zfs_map_page(pp, S_READ);
3607                 ASSERT3U(len, <=, PAGESIZE);
3608                 dmu_write(zfsvfs->z_os, zp->z_id, off, len, va, tx);
3609                 zfs_unmap_page(pp, va);
3610         } else {
3611                 err = dmu_write_pages(zfsvfs->z_os, zp->z_id, off, len, pp, tx);
3612         }
3613
3614         if (err == 0) {
3615                 zfs_time_stamper(zp, CONTENT_MODIFIED, tx);
3616                 zfs_log_write(zilog, tx, TX_WRITE, zp, off, len, 0);
3617                 dmu_tx_commit(tx);
3618         }
3619
3620 out:
3621         zfs_range_unlock(rl);
3622         pvn_write_done(pp, (err ? B_ERROR : 0) | flags);
3623         if (offp)
3624                 *offp = off;
3625         if (lenp)
3626                 *lenp = len;
3627
3628         return (err);
3629 }
3630
3631 /*
3632  * Copy the portion of the file indicated from pages into the file.
3633  * The pages are stored in a page list attached to the files vnode.
3634  *
3635  *      IN:     vp      - vnode of file to push page data to.
3636  *              off     - position in file to put data.
3637  *              len     - amount of data to write.
3638  *              flags   - flags to control the operation.
3639  *              cr      - credentials of caller.
3640  *              ct      - caller context.
3641  *
3642  *      RETURN: 0 if success
3643  *              error code if failure
3644  *
3645  * Timestamps:
3646  *      vp - ctime|mtime updated
3647  */
3648 /*ARGSUSED*/
3649 static int
3650 zfs_putpage(vnode_t *vp, offset_t off, size_t len, int flags, cred_t *cr,
3651     caller_context_t *ct)
3652 {
3653         znode_t         *zp = VTOZ(vp);
3654         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
3655         page_t          *pp;
3656         size_t          io_len;
3657         u_offset_t      io_off;
3658         uint64_t        filesz;
3659         int             error = 0;
3660
3661         ZFS_ENTER(zfsvfs);
3662         ZFS_VERIFY_ZP(zp);
3663
3664         if (len == 0) {
3665                 /*
3666                  * Search the entire vp list for pages >= off.
3667                  */
3668                 error = pvn_vplist_dirty(vp, (u_offset_t)off, zfs_putapage,
3669                     flags, cr);
3670                 goto out;
3671         }
3672
3673         filesz = zp->z_phys->zp_size; /* get consistent copy of zp_size */
3674         if (off > filesz) {
3675                 /* past end of file */
3676                 ZFS_EXIT(zfsvfs);
3677                 return (0);
3678         }
3679
3680         len = MIN(len, filesz - off);
3681
3682         for (io_off = off; io_off < off + len; io_off += io_len) {
3683                 if ((flags & B_INVAL) || ((flags & B_ASYNC) == 0)) {
3684                         pp = page_lookup(vp, io_off,
3685                             (flags & (B_INVAL | B_FREE)) ? SE_EXCL : SE_SHARED);
3686                 } else {
3687                         pp = page_lookup_nowait(vp, io_off,
3688                             (flags & B_FREE) ? SE_EXCL : SE_SHARED);
3689                 }
3690
3691                 if (pp != NULL && pvn_getdirty(pp, flags)) {
3692                         int err;
3693
3694                         /*
3695                          * Found a dirty page to push
3696                          */
3697                         err = zfs_putapage(vp, pp, &io_off, &io_len, flags, cr);
3698                         if (err)
3699                                 error = err;
3700                 } else {
3701                         io_len = PAGESIZE;
3702                 }
3703         }
3704 out:
3705         if ((flags & B_ASYNC) == 0)
3706                 zil_commit(zfsvfs->z_log, UINT64_MAX, zp->z_id);
3707         ZFS_EXIT(zfsvfs);
3708         return (error);
3709 }
3710
3711 /*ARGSUSED*/
3712 void
3713 zfs_inactive(vnode_t *vp, cred_t *cr, caller_context_t *ct)
3714 {
3715         znode_t *zp = VTOZ(vp);
3716         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
3717         int error;
3718
3719         rw_enter(&zfsvfs->z_teardown_inactive_lock, RW_READER);
3720         if (zp->z_dbuf == NULL) {
3721                 /*
3722                  * The fs has been unmounted, or we did a
3723                  * suspend/resume and this file no longer exists.
3724                  */
3725                 if (vn_has_cached_data(vp)) {
3726                         (void) pvn_vplist_dirty(vp, 0, zfs_null_putapage,
3727                             B_INVAL, cr);
3728                 }
3729
3730                 mutex_enter(&zp->z_lock);
3731                 vp->v_count = 0; /* count arrives as 1 */
3732                 mutex_exit(&zp->z_lock);
3733                 rw_exit(&zfsvfs->z_teardown_inactive_lock);
3734                 zfs_znode_free(zp);
3735                 return;
3736         }
3737
3738         /*
3739          * Attempt to push any data in the page cache.  If this fails
3740          * we will get kicked out later in zfs_zinactive().
3741          */
3742         if (vn_has_cached_data(vp)) {
3743                 (void) pvn_vplist_dirty(vp, 0, zfs_putapage, B_INVAL|B_ASYNC,
3744                     cr);
3745         }
3746
3747         if (zp->z_atime_dirty && zp->z_unlinked == 0) {
3748                 dmu_tx_t *tx = dmu_tx_create(zfsvfs->z_os);
3749
3750                 dmu_tx_hold_bonus(tx, zp->z_id);
3751                 error = dmu_tx_assign(tx, TXG_WAIT);
3752                 if (error) {
3753                         dmu_tx_abort(tx);
3754                 } else {
3755                         dmu_buf_will_dirty(zp->z_dbuf, tx);
3756                         mutex_enter(&zp->z_lock);
3757                         zp->z_atime_dirty = 0;
3758                         mutex_exit(&zp->z_lock);
3759                         dmu_tx_commit(tx);
3760                 }
3761         }
3762
3763         zfs_zinactive(zp);
3764         rw_exit(&zfsvfs->z_teardown_inactive_lock);
3765 }
3766
3767 /*
3768  * Bounds-check the seek operation.
3769  *
3770  *      IN:     vp      - vnode seeking within
3771  *              ooff    - old file offset
3772  *              noffp   - pointer to new file offset
3773  *              ct      - caller context
3774  *
3775  *      RETURN: 0 if success
3776  *              EINVAL if new offset invalid
3777  */
3778 /* ARGSUSED */
3779 static int
3780 zfs_seek(vnode_t *vp, offset_t ooff, offset_t *noffp,
3781     caller_context_t *ct)
3782 {
3783         if (vp->v_type == VDIR)
3784                 return (0);
3785         return ((*noffp < 0 || *noffp > MAXOFFSET_T) ? EINVAL : 0);
3786 }
3787
3788 /*
3789  * Pre-filter the generic locking function to trap attempts to place
3790  * a mandatory lock on a memory mapped file.
3791  */
3792 static int
3793 zfs_frlock(vnode_t *vp, int cmd, flock64_t *bfp, int flag, offset_t offset,
3794     flk_callback_t *flk_cbp, cred_t *cr, caller_context_t *ct)
3795 {
3796         znode_t *zp = VTOZ(vp);
3797         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
3798         int error;
3799
3800         ZFS_ENTER(zfsvfs);
3801         ZFS_VERIFY_ZP(zp);
3802
3803         /*
3804          * We are following the UFS semantics with respect to mapcnt
3805          * here: If we see that the file is mapped already, then we will
3806          * return an error, but we don't worry about races between this
3807          * function and zfs_map().
3808          */
3809         if (zp->z_mapcnt > 0 && MANDMODE((mode_t)zp->z_phys->zp_mode)) {
3810                 ZFS_EXIT(zfsvfs);
3811                 return (EAGAIN);
3812         }
3813         error = fs_frlock(vp, cmd, bfp, flag, offset, flk_cbp, cr, ct);
3814         ZFS_EXIT(zfsvfs);
3815         return (error);
3816 }
3817
3818 /*
3819  * If we can't find a page in the cache, we will create a new page
3820  * and fill it with file data.  For efficiency, we may try to fill
3821  * multiple pages at once (klustering).
3822  */
3823 static int
3824 zfs_fillpage(vnode_t *vp, u_offset_t off, struct seg *seg,
3825     caddr_t addr, page_t *pl[], size_t plsz, enum seg_rw rw)
3826 {
3827         znode_t *zp = VTOZ(vp);
3828         page_t *pp, *cur_pp;
3829         objset_t *os = zp->z_zfsvfs->z_os;
3830         caddr_t va;
3831         u_offset_t io_off, total;
3832         uint64_t oid = zp->z_id;
3833         size_t io_len;
3834         uint64_t filesz;
3835         int err;
3836
3837         /*
3838          * If we are only asking for a single page don't bother klustering.
3839          */
3840         filesz = zp->z_phys->zp_size; /* get consistent copy of zp_size */
3841         if (off >= filesz)
3842                 return (EFAULT);
3843         if (plsz == PAGESIZE || zp->z_blksz <= PAGESIZE) {
3844                 io_off = off;
3845                 io_len = PAGESIZE;
3846                 pp = page_create_va(vp, io_off, io_len, PG_WAIT, seg, addr);
3847         } else {
3848                 /*
3849                  * Try to fill a kluster of pages (a blocks worth).
3850                  */
3851                 size_t klen;
3852                 u_offset_t koff;
3853
3854                 if (!ISP2(zp->z_blksz)) {
3855                         /* Only one block in the file. */
3856                         klen = P2ROUNDUP((ulong_t)zp->z_blksz, PAGESIZE);
3857                         koff = 0;
3858                 } else {
3859                         /*
3860                          * It would be ideal to align our offset to the
3861                          * blocksize but doing so has resulted in some
3862                          * strange application crashes. For now, we
3863                          * leave the offset as is and only adjust the
3864                          * length if we are off the end of the file.
3865                          */
3866                         koff = off;
3867                         klen = plsz;
3868                 }
3869                 ASSERT(koff <= filesz);
3870                 if (koff + klen > filesz)
3871                         klen = P2ROUNDUP(filesz, (uint64_t)PAGESIZE) - koff;
3872                 ASSERT3U(off, >=, koff);
3873                 ASSERT3U(off, <, koff + klen);
3874                 pp = pvn_read_kluster(vp, off, seg, addr, &io_off,
3875                     &io_len, koff, klen, 0);
3876         }
3877         if (pp == NULL) {
3878                 /*
3879                  * Some other thread entered the page before us.
3880                  * Return to zfs_getpage to retry the lookup.
3881                  */
3882                 *pl = NULL;
3883                 return (0);
3884         }
3885
3886         /*
3887          * Fill the pages in the kluster.
3888          */
3889         cur_pp = pp;
3890         for (total = io_off + io_len; io_off < total; io_off += PAGESIZE) {
3891                 ASSERT3U(io_off, ==, cur_pp->p_offset);
3892                 va = zfs_map_page(cur_pp, S_WRITE);
3893                 err = dmu_read(os, oid, io_off, PAGESIZE, va);
3894                 zfs_unmap_page(cur_pp, va);
3895                 if (err) {
3896                         /* On error, toss the entire kluster */
3897                         pvn_read_done(pp, B_ERROR);
3898                         /* convert checksum errors into IO errors */
3899                         if (err == ECKSUM)
3900                                 err = EIO;
3901                         return (err);
3902                 }
3903                 cur_pp = cur_pp->p_next;
3904         }
3905 out:
3906         /*
3907          * Fill in the page list array from the kluster.  If
3908          * there are too many pages in the kluster, return
3909          * as many pages as possible starting from the desired
3910          * offset `off'.
3911          * NOTE: the page list will always be null terminated.
3912          */
3913         pvn_plist_init(pp, pl, plsz, off, io_len, rw);
3914
3915         return (0);
3916 }
3917
3918 /*
3919  * Return pointers to the pages for the file region [off, off + len]
3920  * in the pl array.  If plsz is greater than len, this function may
3921  * also return page pointers from before or after the specified
3922  * region (i.e. some region [off', off' + plsz]).  These additional
3923  * pages are only returned if they are already in the cache, or were
3924  * created as part of a klustered read.
3925  *
3926  *      IN:     vp      - vnode of file to get data from.
3927  *              off     - position in file to get data from.
3928  *              len     - amount of data to retrieve.
3929  *              plsz    - length of provided page list.
3930  *              seg     - segment to obtain pages for.
3931  *              addr    - virtual address of fault.
3932  *              rw      - mode of created pages.
3933  *              cr      - credentials of caller.
3934  *              ct      - caller context.
3935  *
3936  *      OUT:    protp   - protection mode of created pages.
3937  *              pl      - list of pages created.
3938  *
3939  *      RETURN: 0 if success
3940  *              error code if failure
3941  *
3942  * Timestamps:
3943  *      vp - atime updated
3944  */
3945 /* ARGSUSED */
3946 static int
3947 zfs_getpage(vnode_t *vp, offset_t off, size_t len, uint_t *protp,
3948         page_t *pl[], size_t plsz, struct seg *seg, caddr_t addr,
3949         enum seg_rw rw, cred_t *cr, caller_context_t *ct)
3950 {
3951         znode_t         *zp = VTOZ(vp);
3952         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
3953         page_t          *pp, **pl0 = pl;
3954         int             need_unlock = 0, err = 0;
3955         offset_t        orig_off;
3956
3957         ZFS_ENTER(zfsvfs);
3958         ZFS_VERIFY_ZP(zp);
3959
3960         if (protp)
3961                 *protp = PROT_ALL;
3962
3963         /* no faultahead (for now) */
3964         if (pl == NULL) {
3965                 ZFS_EXIT(zfsvfs);
3966                 return (0);
3967         }
3968
3969         /* can't fault past EOF */
3970         if (off >= zp->z_phys->zp_size) {
3971                 ZFS_EXIT(zfsvfs);
3972                 return (EFAULT);
3973         }
3974         orig_off = off;
3975
3976         /*
3977          * If we already own the lock, then we must be page faulting
3978          * in the middle of a write to this file (i.e., we are writing
3979          * to this file using data from a mapped region of the file).
3980          */
3981         if (rw_owner(&zp->z_map_lock) != curthread) {
3982                 rw_enter(&zp->z_map_lock, RW_WRITER);
3983                 need_unlock = TRUE;
3984         }
3985
3986         /*
3987          * Loop through the requested range [off, off + len] looking
3988          * for pages.  If we don't find a page, we will need to create
3989          * a new page and fill it with data from the file.
3990          */
3991         while (len > 0) {
3992                 if (plsz < PAGESIZE)
3993                         break;
3994                 if (pp = page_lookup(vp, off, SE_SHARED)) {
3995                         *pl++ = pp;
3996                         off += PAGESIZE;
3997                         addr += PAGESIZE;
3998                         len -= PAGESIZE;
3999                         plsz -= PAGESIZE;
4000                 } else {
4001                         err = zfs_fillpage(vp, off, seg, addr, pl, plsz, rw);
4002                         if (err)
4003                                 goto out;
4004                         /*
4005                          * klustering may have changed our region
4006                          * to be block aligned.
4007                          */
4008                         if (((pp = *pl) != 0) && (off != pp->p_offset)) {
4009                                 int delta = off - pp->p_offset;
4010                                 len += delta;
4011                                 off -= delta;
4012                                 addr -= delta;
4013                         }
4014                         while (*pl) {
4015                                 pl++;
4016                                 off += PAGESIZE;
4017                                 addr += PAGESIZE;
4018                                 plsz -= PAGESIZE;
4019                                 if (len > PAGESIZE)
4020                                         len -= PAGESIZE;
4021                                 else
4022                                         len = 0;
4023                         }
4024                 }
4025         }
4026
4027         /*
4028          * Fill out the page array with any pages already in the cache.
4029          */
4030         while (plsz > 0) {
4031                 pp = page_lookup_nowait(vp, off, SE_SHARED);
4032                 if (pp == NULL)
4033                         break;
4034                 *pl++ = pp;
4035                 off += PAGESIZE;
4036                 plsz -= PAGESIZE;
4037         }
4038
4039         ZFS_ACCESSTIME_STAMP(zfsvfs, zp);
4040 out:
4041         /*
4042          * We can't grab the range lock for the page as reader which would
4043          * stop truncation as this leads to deadlock. So we need to recheck
4044          * the file size.
4045          */
4046         if (orig_off >= zp->z_phys->zp_size)
4047                 err = EFAULT;
4048         if (err) {
4049                 /*
4050                  * Release any pages we have previously locked.
4051                  */
4052                 while (pl > pl0)
4053                         page_unlock(*--pl);
4054         }
4055
4056         *pl = NULL;
4057
4058         if (need_unlock)
4059                 rw_exit(&zp->z_map_lock);
4060
4061         ZFS_EXIT(zfsvfs);
4062         return (err);
4063 }
4064
4065 /*
4066  * Request a memory map for a section of a file.  This code interacts
4067  * with common code and the VM system as follows:
4068  *
4069  *      common code calls mmap(), which ends up in smmap_common()
4070  *
4071  *      this calls VOP_MAP(), which takes you into (say) zfs
4072  *
4073  *      zfs_map() calls as_map(), passing segvn_create() as the callback
4074  *
4075  *      segvn_create() creates the new segment and calls VOP_ADDMAP()
4076  *
4077  *      zfs_addmap() updates z_mapcnt
4078  */
4079 /*ARGSUSED*/
4080 static int
4081 zfs_map(vnode_t *vp, offset_t off, struct as *as, caddr_t *addrp,
4082     size_t len, uchar_t prot, uchar_t maxprot, uint_t flags, cred_t *cr,
4083     caller_context_t *ct)
4084 {
4085         znode_t *zp = VTOZ(vp);
4086         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
4087         segvn_crargs_t  vn_a;
4088         int             error;
4089
4090         ZFS_ENTER(zfsvfs);
4091         ZFS_VERIFY_ZP(zp);
4092
4093         if ((prot & PROT_WRITE) &&
4094             (zp->z_phys->zp_flags & (ZFS_IMMUTABLE | ZFS_READONLY |
4095             ZFS_APPENDONLY))) {
4096                 ZFS_EXIT(zfsvfs);
4097                 return (EPERM);
4098         }
4099
4100         if ((prot & (PROT_READ | PROT_EXEC)) &&
4101             (zp->z_phys->zp_flags & ZFS_AV_QUARANTINED)) {
4102                 ZFS_EXIT(zfsvfs);
4103                 return (EACCES);
4104         }
4105
4106         if (vp->v_flag & VNOMAP) {
4107                 ZFS_EXIT(zfsvfs);
4108                 return (ENOSYS);
4109         }
4110
4111         if (off < 0 || len > MAXOFFSET_T - off) {
4112                 ZFS_EXIT(zfsvfs);
4113                 return (ENXIO);
4114         }
4115
4116         if (vp->v_type != VREG) {
4117                 ZFS_EXIT(zfsvfs);
4118                 return (ENODEV);
4119         }
4120
4121         /*
4122          * If file is locked, disallow mapping.
4123          */
4124         if (MANDMODE((mode_t)zp->z_phys->zp_mode) && vn_has_flocks(vp)) {
4125                 ZFS_EXIT(zfsvfs);
4126                 return (EAGAIN);
4127         }
4128
4129         as_rangelock(as);
4130         error = choose_addr(as, addrp, len, off, ADDR_VACALIGN, flags);
4131         if (error != 0) {
4132                 as_rangeunlock(as);
4133                 ZFS_EXIT(zfsvfs);
4134                 return (error);
4135         }
4136
4137         vn_a.vp = vp;
4138         vn_a.offset = (u_offset_t)off;
4139         vn_a.type = flags & MAP_TYPE;
4140         vn_a.prot = prot;
4141         vn_a.maxprot = maxprot;
4142         vn_a.cred = cr;
4143         vn_a.amp = NULL;
4144         vn_a.flags = flags & ~MAP_TYPE;
4145         vn_a.szc = 0;
4146         vn_a.lgrp_mem_policy_flags = 0;
4147
4148         error = as_map(as, *addrp, len, segvn_create, &vn_a);
4149
4150         as_rangeunlock(as);
4151         ZFS_EXIT(zfsvfs);
4152         return (error);
4153 }
4154
4155 /* ARGSUSED */
4156 static int
4157 zfs_addmap(vnode_t *vp, offset_t off, struct as *as, caddr_t addr,
4158     size_t len, uchar_t prot, uchar_t maxprot, uint_t flags, cred_t *cr,
4159     caller_context_t *ct)
4160 {
4161         uint64_t pages = btopr(len);
4162
4163         atomic_add_64(&VTOZ(vp)->z_mapcnt, pages);
4164         return (0);
4165 }
4166
4167 /*
4168  * The reason we push dirty pages as part of zfs_delmap() is so that we get a
4169  * more accurate mtime for the associated file.  Since we don't have a way of
4170  * detecting when the data was actually modified, we have to resort to
4171  * heuristics.  If an explicit msync() is done, then we mark the mtime when the
4172  * last page is pushed.  The problem occurs when the msync() call is omitted,
4173  * which by far the most common case:
4174  *
4175  *      open()
4176  *      mmap()
4177  *      <modify memory>
4178  *      munmap()
4179  *      close()
4180  *      <time lapse>
4181  *      putpage() via fsflush
4182  *
4183  * If we wait until fsflush to come along, we can have a modification time that
4184  * is some arbitrary point in the future.  In order to prevent this in the
4185  * common case, we flush pages whenever a (MAP_SHARED, PROT_WRITE) mapping is
4186  * torn down.
4187  */
4188 /* ARGSUSED */
4189 static int
4190 zfs_delmap(vnode_t *vp, offset_t off, struct as *as, caddr_t addr,
4191     size_t len, uint_t prot, uint_t maxprot, uint_t flags, cred_t *cr,
4192     caller_context_t *ct)
4193 {
4194         uint64_t pages = btopr(len);
4195
4196         ASSERT3U(VTOZ(vp)->z_mapcnt, >=, pages);
4197         atomic_add_64(&VTOZ(vp)->z_mapcnt, -pages);
4198
4199         if ((flags & MAP_SHARED) && (prot & PROT_WRITE) &&
4200             vn_has_cached_data(vp))
4201                 (void) VOP_PUTPAGE(vp, off, len, B_ASYNC, cr, ct);
4202
4203         return (0);
4204 }
4205
4206 /*
4207  * Free or allocate space in a file.  Currently, this function only
4208  * supports the `F_FREESP' command.  However, this command is somewhat
4209  * misnamed, as its functionality includes the ability to allocate as
4210  * well as free space.
4211  *
4212  *      IN:     vp      - vnode of file to free data in.
4213  *              cmd     - action to take (only F_FREESP supported).
4214  *              bfp     - section of file to free/alloc.
4215  *              flag    - current file open mode flags.
4216  *              offset  - current file offset.
4217  *              cr      - credentials of caller [UNUSED].
4218  *              ct      - caller context.
4219  *
4220  *      RETURN: 0 if success
4221  *              error code if failure
4222  *
4223  * Timestamps:
4224  *      vp - ctime|mtime updated
4225  */
4226 /* ARGSUSED */
4227 static int
4228 zfs_space(vnode_t *vp, int cmd, flock64_t *bfp, int flag,
4229     offset_t offset, cred_t *cr, caller_context_t *ct)
4230 {
4231         znode_t         *zp = VTOZ(vp);
4232         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
4233         uint64_t        off, len;
4234         int             error;
4235
4236         ZFS_ENTER(zfsvfs);
4237         ZFS_VERIFY_ZP(zp);
4238
4239         if (cmd != F_FREESP) {
4240                 ZFS_EXIT(zfsvfs);
4241                 return (EINVAL);
4242         }
4243
4244         if (error = convoff(vp, bfp, 0, offset)) {
4245                 ZFS_EXIT(zfsvfs);
4246                 return (error);
4247         }
4248
4249         if (bfp->l_len < 0) {
4250                 ZFS_EXIT(zfsvfs);
4251                 return (EINVAL);
4252         }
4253
4254         off = bfp->l_start;
4255         len = bfp->l_len; /* 0 means from off to end of file */
4256
4257         error = zfs_freesp(zp, off, len, flag, TRUE);
4258
4259         ZFS_EXIT(zfsvfs);
4260         return (error);
4261 }
4262
4263 /*ARGSUSED*/
4264 static int
4265 zfs_fid(vnode_t *vp, fid_t *fidp, caller_context_t *ct)
4266 {
4267         znode_t         *zp = VTOZ(vp);
4268         zfsvfs_t        *zfsvfs = zp->z_zfsvfs;
4269         uint32_t        gen;
4270         uint64_t        object = zp->z_id;
4271         zfid_short_t    *zfid;
4272         int             size, i;
4273
4274         ZFS_ENTER(zfsvfs);
4275         ZFS_VERIFY_ZP(zp);
4276         gen = (uint32_t)zp->z_gen;
4277
4278         size = (zfsvfs->z_parent != zfsvfs) ? LONG_FID_LEN : SHORT_FID_LEN;
4279         if (fidp->fid_len < size) {
4280                 fidp->fid_len = size;
4281                 ZFS_EXIT(zfsvfs);
4282                 return (ENOSPC);
4283         }
4284
4285         zfid = (zfid_short_t *)fidp;
4286
4287         zfid->zf_len = size;
4288
4289         for (i = 0; i < sizeof (zfid->zf_object); i++)
4290                 zfid->zf_object[i] = (uint8_t)(object >> (8 * i));
4291
4292         /* Must have a non-zero generation number to distinguish from .zfs */
4293         if (gen == 0)
4294                 gen = 1;
4295         for (i = 0; i < sizeof (zfid->zf_gen); i++)
4296                 zfid->zf_gen[i] = (uint8_t)(gen >> (8 * i));
4297
4298         if (size == LONG_FID_LEN) {
4299                 uint64_t        objsetid = dmu_objset_id(zfsvfs->z_os);
4300                 zfid_long_t     *zlfid;
4301
4302                 zlfid = (zfid_long_t *)fidp;
4303
4304                 for (i = 0; i < sizeof (zlfid->zf_setid); i++)
4305                         zlfid->zf_setid[i] = (uint8_t)(objsetid >> (8 * i));
4306
4307                 /* XXX - this should be the generation number for the objset */
4308                 for (i = 0; i < sizeof (zlfid->zf_setgen); i++)
4309                         zlfid->zf_setgen[i] = 0;
4310         }
4311
4312         ZFS_EXIT(zfsvfs);
4313         return (0);
4314 }
4315
4316 static int
4317 zfs_pathconf(vnode_t *vp, int cmd, ulong_t *valp, cred_t *cr,
4318     caller_context_t *ct)
4319 {
4320         znode_t         *zp, *xzp;
4321         zfsvfs_t        *zfsvfs;
4322         zfs_dirlock_t   *dl;
4323         int             error;
4324
4325         switch (cmd) {
4326         case _PC_LINK_MAX:
4327                 *valp = ULONG_MAX;
4328                 return (0);
4329
4330         case _PC_FILESIZEBITS:
4331                 *valp = 64;
4332                 return (0);
4333
4334         case _PC_XATTR_EXISTS:
4335                 zp = VTOZ(vp);
4336                 zfsvfs = zp->z_zfsvfs;
4337                 ZFS_ENTER(zfsvfs);
4338                 ZFS_VERIFY_ZP(zp);
4339                 *valp = 0;
4340                 error = zfs_dirent_lock(&dl, zp, "", &xzp,
4341                     ZXATTR | ZEXISTS | ZSHARED, NULL, NULL);
4342                 if (error == 0) {
4343                         zfs_dirent_unlock(dl);
4344                         if (!zfs_dirempty(xzp))
4345                                 *valp = 1;
4346                         VN_RELE(ZTOV(xzp));
4347                 } else if (error == ENOENT) {
4348                         /*
4349                          * If there aren't extended attributes, it's the
4350                          * same as having zero of them.
4351                          */
4352                         error = 0;
4353                 }
4354                 ZFS_EXIT(zfsvfs);
4355                 return (error);
4356
4357         case _PC_SATTR_ENABLED:
4358         case _PC_SATTR_EXISTS:
4359                 *valp = vfs_has_feature(vp->v_vfsp, VFSFT_SYSATTR_VIEWS) &&
4360                     (vp->v_type == VREG || vp->v_type == VDIR);
4361                 return (0);
4362
4363         case _PC_ACL_ENABLED:
4364                 *valp = _ACL_ACE_ENABLED;
4365                 return (0);
4366
4367         case _PC_MIN_HOLE_SIZE:
4368                 *valp = (ulong_t)SPA_MINBLOCKSIZE;
4369                 return (0);
4370
4371         default:
4372                 return (fs_pathconf(vp, cmd, valp, cr, ct));
4373         }
4374 }
4375
4376 /*ARGSUSED*/
4377 static int
4378 zfs_getsecattr(vnode_t *vp, vsecattr_t *vsecp, int flag, cred_t *cr,
4379     caller_context_t *ct)
4380 {
4381         znode_t *zp = VTOZ(vp);
4382         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
4383         int error;
4384         boolean_t skipaclchk = (flag & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
4385
4386         ZFS_ENTER(zfsvfs);
4387         ZFS_VERIFY_ZP(zp);
4388         error = zfs_getacl(zp, vsecp, skipaclchk, cr);
4389         ZFS_EXIT(zfsvfs);
4390
4391         return (error);
4392 }
4393
4394 /*ARGSUSED*/
4395 static int
4396 zfs_setsecattr(vnode_t *vp, vsecattr_t *vsecp, int flag, cred_t *cr,
4397     caller_context_t *ct)
4398 {
4399         znode_t *zp = VTOZ(vp);
4400         zfsvfs_t *zfsvfs = zp->z_zfsvfs;
4401         int error;
4402         boolean_t skipaclchk = (flag & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
4403
4404         ZFS_ENTER(zfsvfs);
4405         ZFS_VERIFY_ZP(zp);
4406         error = zfs_setacl(zp, vsecp, skipaclchk, cr);
4407         ZFS_EXIT(zfsvfs);
4408         return (error);
4409 }
4410
4411 /*
4412  * Predeclare these here so that the compiler assumes that
4413  * this is an "old style" function declaration that does
4414  * not include arguments => we won't get type mismatch errors
4415  * in the initializations that follow.
4416  */
4417 static int zfs_inval();
4418 static int zfs_isdir();
4419
4420 static int
4421 zfs_inval()
4422 {
4423         return (EINVAL);
4424 }
4425
4426 static int
4427 zfs_isdir()
4428 {
4429         return (EISDIR);
4430 }
4431 /*
4432  * Directory vnode operations template
4433  */
4434 vnodeops_t *zfs_dvnodeops;
4435 const fs_operation_def_t zfs_dvnodeops_template[] = {
4436         VOPNAME_OPEN,           { .vop_open = zfs_open },
4437         VOPNAME_CLOSE,          { .vop_close = zfs_close },
4438         VOPNAME_READ,           { .error = zfs_isdir },
4439         VOPNAME_WRITE,          { .error = zfs_isdir },
4440         VOPNAME_IOCTL,          { .vop_ioctl = zfs_ioctl },
4441         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
4442         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
4443         VOPNAME_ACCESS,         { .vop_access = zfs_access },
4444         VOPNAME_LOOKUP,         { .vop_lookup = zfs_lookup },
4445         VOPNAME_CREATE,         { .vop_create = zfs_create },
4446         VOPNAME_REMOVE,         { .vop_remove = zfs_remove },
4447         VOPNAME_LINK,           { .vop_link = zfs_link },
4448         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
4449         VOPNAME_MKDIR,          { .vop_mkdir = zfs_mkdir },
4450         VOPNAME_RMDIR,          { .vop_rmdir = zfs_rmdir },
4451         VOPNAME_READDIR,        { .vop_readdir = zfs_readdir },
4452         VOPNAME_SYMLINK,        { .vop_symlink = zfs_symlink },
4453         VOPNAME_FSYNC,          { .vop_fsync = zfs_fsync },
4454         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
4455         VOPNAME_FID,            { .vop_fid = zfs_fid },
4456         VOPNAME_SEEK,           { .vop_seek = zfs_seek },
4457         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
4458         VOPNAME_GETSECATTR,     { .vop_getsecattr = zfs_getsecattr },
4459         VOPNAME_SETSECATTR,     { .vop_setsecattr = zfs_setsecattr },
4460         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
4461         NULL,                   NULL
4462 };
4463
4464 /*
4465  * Regular file vnode operations template
4466  */
4467 vnodeops_t *zfs_fvnodeops;
4468 const fs_operation_def_t zfs_fvnodeops_template[] = {
4469         VOPNAME_OPEN,           { .vop_open = zfs_open },
4470         VOPNAME_CLOSE,          { .vop_close = zfs_close },
4471         VOPNAME_READ,           { .vop_read = zfs_read },
4472         VOPNAME_WRITE,          { .vop_write = zfs_write },
4473         VOPNAME_IOCTL,          { .vop_ioctl = zfs_ioctl },
4474         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
4475         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
4476         VOPNAME_ACCESS,         { .vop_access = zfs_access },
4477         VOPNAME_LOOKUP,         { .vop_lookup = zfs_lookup },
4478         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
4479         VOPNAME_FSYNC,          { .vop_fsync = zfs_fsync },
4480         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
4481         VOPNAME_FID,            { .vop_fid = zfs_fid },
4482         VOPNAME_SEEK,           { .vop_seek = zfs_seek },
4483         VOPNAME_FRLOCK,         { .vop_frlock = zfs_frlock },
4484         VOPNAME_SPACE,          { .vop_space = zfs_space },
4485         VOPNAME_GETPAGE,        { .vop_getpage = zfs_getpage },
4486         VOPNAME_PUTPAGE,        { .vop_putpage = zfs_putpage },
4487         VOPNAME_MAP,            { .vop_map = zfs_map },
4488         VOPNAME_ADDMAP,         { .vop_addmap = zfs_addmap },
4489         VOPNAME_DELMAP,         { .vop_delmap = zfs_delmap },
4490         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
4491         VOPNAME_GETSECATTR,     { .vop_getsecattr = zfs_getsecattr },
4492         VOPNAME_SETSECATTR,     { .vop_setsecattr = zfs_setsecattr },
4493         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
4494         NULL,                   NULL
4495 };
4496
4497 /*
4498  * Symbolic link vnode operations template
4499  */
4500 vnodeops_t *zfs_symvnodeops;
4501 const fs_operation_def_t zfs_symvnodeops_template[] = {
4502         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
4503         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
4504         VOPNAME_ACCESS,         { .vop_access = zfs_access },
4505         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
4506         VOPNAME_READLINK,       { .vop_readlink = zfs_readlink },
4507         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
4508         VOPNAME_FID,            { .vop_fid = zfs_fid },
4509         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
4510         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
4511         NULL,                   NULL
4512 };
4513
4514 /*
4515  * Extended attribute directory vnode operations template
4516  *      This template is identical to the directory vnodes
4517  *      operation template except for restricted operations:
4518  *              VOP_MKDIR()
4519  *              VOP_SYMLINK()
4520  * Note that there are other restrictions embedded in:
4521  *      zfs_create()    - restrict type to VREG
4522  *      zfs_link()      - no links into/out of attribute space
4523  *      zfs_rename()    - no moves into/out of attribute space
4524  */
4525 vnodeops_t *zfs_xdvnodeops;
4526 const fs_operation_def_t zfs_xdvnodeops_template[] = {
4527         VOPNAME_OPEN,           { .vop_open = zfs_open },
4528         VOPNAME_CLOSE,          { .vop_close = zfs_close },
4529         VOPNAME_IOCTL,          { .vop_ioctl = zfs_ioctl },
4530         VOPNAME_GETATTR,        { .vop_getattr = zfs_getattr },
4531         VOPNAME_SETATTR,        { .vop_setattr = zfs_setattr },
4532         VOPNAME_ACCESS,         { .vop_access = zfs_access },
4533         VOPNAME_LOOKUP,         { .vop_lookup = zfs_lookup },
4534         VOPNAME_CREATE,         { .vop_create = zfs_create },
4535         VOPNAME_REMOVE,         { .vop_remove = zfs_remove },
4536         VOPNAME_LINK,           { .vop_link = zfs_link },
4537         VOPNAME_RENAME,         { .vop_rename = zfs_rename },
4538         VOPNAME_MKDIR,          { .error = zfs_inval },
4539         VOPNAME_RMDIR,          { .vop_rmdir = zfs_rmdir },
4540         VOPNAME_READDIR,        { .vop_readdir = zfs_readdir },
4541         VOPNAME_SYMLINK,        { .error = zfs_inval },
4542         VOPNAME_FSYNC,          { .vop_fsync = zfs_fsync },
4543         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
4544         VOPNAME_FID,            { .vop_fid = zfs_fid },
4545         VOPNAME_SEEK,           { .vop_seek = zfs_seek },
4546         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
4547         VOPNAME_GETSECATTR,     { .vop_getsecattr = zfs_getsecattr },
4548         VOPNAME_SETSECATTR,     { .vop_setsecattr = zfs_setsecattr },
4549         VOPNAME_VNEVENT,        { .vop_vnevent = fs_vnevent_support },
4550         NULL,                   NULL
4551 };
4552
4553 /*
4554  * Error vnode operations template
4555  */
4556 vnodeops_t *zfs_evnodeops;
4557 const fs_operation_def_t zfs_evnodeops_template[] = {
4558         VOPNAME_INACTIVE,       { .vop_inactive = zfs_inactive },
4559         VOPNAME_PATHCONF,       { .vop_pathconf = zfs_pathconf },
4560         NULL,                   NULL
4561 };