]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - module/zfs/zfs_vnops.c
OpenZFS 8585 - improve batching done in zil_commit()
[FreeBSD/FreeBSD.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 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
25  * Copyright (c) 2015 by Chunwei Chen. All rights reserved.
26  * Copyright 2017 Nexenta Systems, Inc.
27  */
28
29 /* Portions Copyright 2007 Jeremy Teo */
30 /* Portions Copyright 2010 Robert Milkowski */
31
32
33 #include <sys/types.h>
34 #include <sys/param.h>
35 #include <sys/time.h>
36 #include <sys/systm.h>
37 #include <sys/sysmacros.h>
38 #include <sys/resource.h>
39 #include <sys/vfs.h>
40 #include <sys/vfs_opreg.h>
41 #include <sys/file.h>
42 #include <sys/stat.h>
43 #include <sys/kmem.h>
44 #include <sys/taskq.h>
45 #include <sys/uio.h>
46 #include <sys/vmsystm.h>
47 #include <sys/atomic.h>
48 #include <vm/pvn.h>
49 #include <sys/pathname.h>
50 #include <sys/cmn_err.h>
51 #include <sys/errno.h>
52 #include <sys/unistd.h>
53 #include <sys/zfs_dir.h>
54 #include <sys/zfs_acl.h>
55 #include <sys/zfs_ioctl.h>
56 #include <sys/fs/zfs.h>
57 #include <sys/dmu.h>
58 #include <sys/dmu_objset.h>
59 #include <sys/spa.h>
60 #include <sys/txg.h>
61 #include <sys/dbuf.h>
62 #include <sys/zap.h>
63 #include <sys/sa.h>
64 #include <sys/dirent.h>
65 #include <sys/policy.h>
66 #include <sys/sunddi.h>
67 #include <sys/sid.h>
68 #include <sys/mode.h>
69 #include "fs/fs_subr.h"
70 #include <sys/zfs_ctldir.h>
71 #include <sys/zfs_fuid.h>
72 #include <sys/zfs_sa.h>
73 #include <sys/zfs_vnops.h>
74 #include <sys/dnlc.h>
75 #include <sys/zfs_rlock.h>
76 #include <sys/extdirent.h>
77 #include <sys/kidmap.h>
78 #include <sys/cred.h>
79 #include <sys/attr.h>
80 #include <sys/zpl.h>
81 #include <sys/zil.h>
82
83 /*
84  * Programming rules.
85  *
86  * Each vnode op performs some logical unit of work.  To do this, the ZPL must
87  * properly lock its in-core state, create a DMU transaction, do the work,
88  * record this work in the intent log (ZIL), commit the DMU transaction,
89  * and wait for the intent log to commit if it is a synchronous operation.
90  * Moreover, the vnode ops must work in both normal and log replay context.
91  * The ordering of events is important to avoid deadlocks and references
92  * to freed memory.  The example below illustrates the following Big Rules:
93  *
94  *  (1) A check must be made in each zfs thread for a mounted file system.
95  *      This is done avoiding races using ZFS_ENTER(zfsvfs).
96  *      A ZFS_EXIT(zfsvfs) is needed before all returns.  Any znodes
97  *      must be checked with ZFS_VERIFY_ZP(zp).  Both of these macros
98  *      can return EIO from the calling function.
99  *
100  *  (2) iput() should always be the last thing except for zil_commit()
101  *      (if necessary) and ZFS_EXIT(). This is for 3 reasons:
102  *      First, if it's the last reference, the vnode/znode
103  *      can be freed, so the zp may point to freed memory.  Second, the last
104  *      reference will call zfs_zinactive(), which may induce a lot of work --
105  *      pushing cached pages (which acquires range locks) and syncing out
106  *      cached atime changes.  Third, zfs_zinactive() may require a new tx,
107  *      which could deadlock the system if you were already holding one.
108  *      If you must call iput() within a tx then use zfs_iput_async().
109  *
110  *  (3) All range locks must be grabbed before calling dmu_tx_assign(),
111  *      as they can span dmu_tx_assign() calls.
112  *
113  *  (4) If ZPL locks are held, pass TXG_NOWAIT as the second argument to
114  *      dmu_tx_assign().  This is critical because we don't want to block
115  *      while holding locks.
116  *
117  *      If no ZPL locks are held (aside from ZFS_ENTER()), use TXG_WAIT.  This
118  *      reduces lock contention and CPU usage when we must wait (note that if
119  *      throughput is constrained by the storage, nearly every transaction
120  *      must wait).
121  *
122  *      Note, in particular, that if a lock is sometimes acquired before
123  *      the tx assigns, and sometimes after (e.g. z_lock), then failing
124  *      to use a non-blocking assign can deadlock the system.  The scenario:
125  *
126  *      Thread A has grabbed a lock before calling dmu_tx_assign().
127  *      Thread B is in an already-assigned tx, and blocks for this lock.
128  *      Thread A calls dmu_tx_assign(TXG_WAIT) and blocks in txg_wait_open()
129  *      forever, because the previous txg can't quiesce until B's tx commits.
130  *
131  *      If dmu_tx_assign() returns ERESTART and zfsvfs->z_assign is TXG_NOWAIT,
132  *      then drop all locks, call dmu_tx_wait(), and try again.  On subsequent
133  *      calls to dmu_tx_assign(), pass TXG_WAITED rather than TXG_NOWAIT,
134  *      to indicate that this operation has already called dmu_tx_wait().
135  *      This will ensure that we don't retry forever, waiting a short bit
136  *      each time.
137  *
138  *  (5) If the operation succeeded, generate the intent log entry for it
139  *      before dropping locks.  This ensures that the ordering of events
140  *      in the intent log matches the order in which they actually occurred.
141  *      During ZIL replay the zfs_log_* functions will update the sequence
142  *      number to indicate the zil transaction has replayed.
143  *
144  *  (6) At the end of each vnode op, the DMU tx must always commit,
145  *      regardless of whether there were any errors.
146  *
147  *  (7) After dropping all locks, invoke zil_commit(zilog, foid)
148  *      to ensure that synchronous semantics are provided when necessary.
149  *
150  * In general, this is how things should be ordered in each vnode op:
151  *
152  *      ZFS_ENTER(zfsvfs);              // exit if unmounted
153  * top:
154  *      zfs_dirent_lock(&dl, ...)       // lock directory entry (may igrab())
155  *      rw_enter(...);                  // grab any other locks you need
156  *      tx = dmu_tx_create(...);        // get DMU tx
157  *      dmu_tx_hold_*();                // hold each object you might modify
158  *      error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
159  *      if (error) {
160  *              rw_exit(...);           // drop locks
161  *              zfs_dirent_unlock(dl);  // unlock directory entry
162  *              iput(...);              // release held vnodes
163  *              if (error == ERESTART) {
164  *                      waited = B_TRUE;
165  *                      dmu_tx_wait(tx);
166  *                      dmu_tx_abort(tx);
167  *                      goto top;
168  *              }
169  *              dmu_tx_abort(tx);       // abort DMU tx
170  *              ZFS_EXIT(zfsvfs);       // finished in zfs
171  *              return (error);         // really out of space
172  *      }
173  *      error = do_real_work();         // do whatever this VOP does
174  *      if (error == 0)
175  *              zfs_log_*(...);         // on success, make ZIL entry
176  *      dmu_tx_commit(tx);              // commit DMU tx -- error or not
177  *      rw_exit(...);                   // drop locks
178  *      zfs_dirent_unlock(dl);          // unlock directory entry
179  *      iput(...);                      // release held vnodes
180  *      zil_commit(zilog, foid);        // synchronous when necessary
181  *      ZFS_EXIT(zfsvfs);               // finished in zfs
182  *      return (error);                 // done, report error
183  */
184
185 /*
186  * Virus scanning is unsupported.  It would be possible to add a hook
187  * here to performance the required virus scan.  This could be done
188  * entirely in the kernel or potentially as an update to invoke a
189  * scanning utility.
190  */
191 static int
192 zfs_vscan(struct inode *ip, cred_t *cr, int async)
193 {
194         return (0);
195 }
196
197 /* ARGSUSED */
198 int
199 zfs_open(struct inode *ip, int mode, int flag, cred_t *cr)
200 {
201         znode_t *zp = ITOZ(ip);
202         zfsvfs_t *zfsvfs = ITOZSB(ip);
203
204         ZFS_ENTER(zfsvfs);
205         ZFS_VERIFY_ZP(zp);
206
207         /* Honor ZFS_APPENDONLY file attribute */
208         if ((mode & FMODE_WRITE) && (zp->z_pflags & ZFS_APPENDONLY) &&
209             ((flag & O_APPEND) == 0)) {
210                 ZFS_EXIT(zfsvfs);
211                 return (SET_ERROR(EPERM));
212         }
213
214         /* Virus scan eligible files on open */
215         if (!zfs_has_ctldir(zp) && zfsvfs->z_vscan && S_ISREG(ip->i_mode) &&
216             !(zp->z_pflags & ZFS_AV_QUARANTINED) && zp->z_size > 0) {
217                 if (zfs_vscan(ip, cr, 0) != 0) {
218                         ZFS_EXIT(zfsvfs);
219                         return (SET_ERROR(EACCES));
220                 }
221         }
222
223         /* Keep a count of the synchronous opens in the znode */
224         if (flag & O_SYNC)
225                 atomic_inc_32(&zp->z_sync_cnt);
226
227         ZFS_EXIT(zfsvfs);
228         return (0);
229 }
230
231 /* ARGSUSED */
232 int
233 zfs_close(struct inode *ip, int flag, cred_t *cr)
234 {
235         znode_t *zp = ITOZ(ip);
236         zfsvfs_t *zfsvfs = ITOZSB(ip);
237
238         ZFS_ENTER(zfsvfs);
239         ZFS_VERIFY_ZP(zp);
240
241         /* Decrement the synchronous opens in the znode */
242         if (flag & O_SYNC)
243                 atomic_dec_32(&zp->z_sync_cnt);
244
245         if (!zfs_has_ctldir(zp) && zfsvfs->z_vscan && S_ISREG(ip->i_mode) &&
246             !(zp->z_pflags & ZFS_AV_QUARANTINED) && zp->z_size > 0)
247                 VERIFY(zfs_vscan(ip, cr, 1) == 0);
248
249         ZFS_EXIT(zfsvfs);
250         return (0);
251 }
252
253 #if defined(SEEK_HOLE) && defined(SEEK_DATA)
254 /*
255  * Lseek support for finding holes (cmd == SEEK_HOLE) and
256  * data (cmd == SEEK_DATA). "off" is an in/out parameter.
257  */
258 static int
259 zfs_holey_common(struct inode *ip, int cmd, loff_t *off)
260 {
261         znode_t *zp = ITOZ(ip);
262         uint64_t noff = (uint64_t)*off; /* new offset */
263         uint64_t file_sz;
264         int error;
265         boolean_t hole;
266
267         file_sz = zp->z_size;
268         if (noff >= file_sz)  {
269                 return (SET_ERROR(ENXIO));
270         }
271
272         if (cmd == SEEK_HOLE)
273                 hole = B_TRUE;
274         else
275                 hole = B_FALSE;
276
277         error = dmu_offset_next(ZTOZSB(zp)->z_os, zp->z_id, hole, &noff);
278
279         if (error == ESRCH)
280                 return (SET_ERROR(ENXIO));
281
282         /* file was dirty, so fall back to using generic logic */
283         if (error == EBUSY) {
284                 if (hole)
285                         *off = file_sz;
286
287                 return (0);
288         }
289
290         /*
291          * We could find a hole that begins after the logical end-of-file,
292          * because dmu_offset_next() only works on whole blocks.  If the
293          * EOF falls mid-block, then indicate that the "virtual hole"
294          * at the end of the file begins at the logical EOF, rather than
295          * at the end of the last block.
296          */
297         if (noff > file_sz) {
298                 ASSERT(hole);
299                 noff = file_sz;
300         }
301
302         if (noff < *off)
303                 return (error);
304         *off = noff;
305         return (error);
306 }
307
308 int
309 zfs_holey(struct inode *ip, int cmd, loff_t *off)
310 {
311         znode_t *zp = ITOZ(ip);
312         zfsvfs_t *zfsvfs = ITOZSB(ip);
313         int error;
314
315         ZFS_ENTER(zfsvfs);
316         ZFS_VERIFY_ZP(zp);
317
318         error = zfs_holey_common(ip, cmd, off);
319
320         ZFS_EXIT(zfsvfs);
321         return (error);
322 }
323 #endif /* SEEK_HOLE && SEEK_DATA */
324
325 #if defined(_KERNEL)
326 /*
327  * When a file is memory mapped, we must keep the IO data synchronized
328  * between the DMU cache and the memory mapped pages.  What this means:
329  *
330  * On Write:    If we find a memory mapped page, we write to *both*
331  *              the page and the dmu buffer.
332  */
333 static void
334 update_pages(struct inode *ip, int64_t start, int len,
335     objset_t *os, uint64_t oid)
336 {
337         struct address_space *mp = ip->i_mapping;
338         struct page *pp;
339         uint64_t nbytes;
340         int64_t off;
341         void *pb;
342
343         off = start & (PAGE_SIZE-1);
344         for (start &= PAGE_MASK; len > 0; start += PAGE_SIZE) {
345                 nbytes = MIN(PAGE_SIZE - off, len);
346
347                 pp = find_lock_page(mp, start >> PAGE_SHIFT);
348                 if (pp) {
349                         if (mapping_writably_mapped(mp))
350                                 flush_dcache_page(pp);
351
352                         pb = kmap(pp);
353                         (void) dmu_read(os, oid, start+off, nbytes, pb+off,
354                             DMU_READ_PREFETCH);
355                         kunmap(pp);
356
357                         if (mapping_writably_mapped(mp))
358                                 flush_dcache_page(pp);
359
360                         mark_page_accessed(pp);
361                         SetPageUptodate(pp);
362                         ClearPageError(pp);
363                         unlock_page(pp);
364                         put_page(pp);
365                 }
366
367                 len -= nbytes;
368                 off = 0;
369         }
370 }
371
372 /*
373  * When a file is memory mapped, we must keep the IO data synchronized
374  * between the DMU cache and the memory mapped pages.  What this means:
375  *
376  * On Read:     We "read" preferentially from memory mapped pages,
377  *              else we default from the dmu buffer.
378  *
379  * NOTE: We will always "break up" the IO into PAGESIZE uiomoves when
380  *       the file is memory mapped.
381  */
382 static int
383 mappedread(struct inode *ip, int nbytes, uio_t *uio)
384 {
385         struct address_space *mp = ip->i_mapping;
386         struct page *pp;
387         znode_t *zp = ITOZ(ip);
388         int64_t start, off;
389         uint64_t bytes;
390         int len = nbytes;
391         int error = 0;
392         void *pb;
393
394         start = uio->uio_loffset;
395         off = start & (PAGE_SIZE-1);
396         for (start &= PAGE_MASK; len > 0; start += PAGE_SIZE) {
397                 bytes = MIN(PAGE_SIZE - off, len);
398
399                 pp = find_lock_page(mp, start >> PAGE_SHIFT);
400                 if (pp) {
401                         ASSERT(PageUptodate(pp));
402
403                         pb = kmap(pp);
404                         error = uiomove(pb + off, bytes, UIO_READ, uio);
405                         kunmap(pp);
406
407                         if (mapping_writably_mapped(mp))
408                                 flush_dcache_page(pp);
409
410                         mark_page_accessed(pp);
411                         unlock_page(pp);
412                         put_page(pp);
413                 } else {
414                         error = dmu_read_uio_dbuf(sa_get_db(zp->z_sa_hdl),
415                             uio, bytes);
416                 }
417
418                 len -= bytes;
419                 off = 0;
420                 if (error)
421                         break;
422         }
423         return (error);
424 }
425 #endif /* _KERNEL */
426
427 unsigned long zfs_read_chunk_size = 1024 * 1024; /* Tunable */
428 unsigned long zfs_delete_blocks = DMU_MAX_DELETEBLKCNT;
429
430 /*
431  * Read bytes from specified file into supplied buffer.
432  *
433  *      IN:     ip      - inode of file to be read from.
434  *              uio     - structure supplying read location, range info,
435  *                        and return buffer.
436  *              ioflag  - FSYNC flags; used to provide FRSYNC semantics.
437  *                        O_DIRECT flag; used to bypass page cache.
438  *              cr      - credentials of caller.
439  *
440  *      OUT:    uio     - updated offset and range, buffer filled.
441  *
442  *      RETURN: 0 on success, error code on failure.
443  *
444  * Side Effects:
445  *      inode - atime updated if byte count > 0
446  */
447 /* ARGSUSED */
448 int
449 zfs_read(struct inode *ip, uio_t *uio, int ioflag, cred_t *cr)
450 {
451         znode_t         *zp = ITOZ(ip);
452         zfsvfs_t        *zfsvfs = ITOZSB(ip);
453         ssize_t         n, nbytes;
454         int             error = 0;
455         rl_t            *rl;
456 #ifdef HAVE_UIO_ZEROCOPY
457         xuio_t          *xuio = NULL;
458 #endif /* HAVE_UIO_ZEROCOPY */
459
460         ZFS_ENTER(zfsvfs);
461         ZFS_VERIFY_ZP(zp);
462
463         if (zp->z_pflags & ZFS_AV_QUARANTINED) {
464                 ZFS_EXIT(zfsvfs);
465                 return (SET_ERROR(EACCES));
466         }
467
468         /*
469          * Validate file offset
470          */
471         if (uio->uio_loffset < (offset_t)0) {
472                 ZFS_EXIT(zfsvfs);
473                 return (SET_ERROR(EINVAL));
474         }
475
476         /*
477          * Fasttrack empty reads
478          */
479         if (uio->uio_resid == 0) {
480                 ZFS_EXIT(zfsvfs);
481                 return (0);
482         }
483
484         /*
485          * If we're in FRSYNC mode, sync out this znode before reading it.
486          * Only do this for non-snapshots.
487          */
488         if (zfsvfs->z_log &&
489             (ioflag & FRSYNC || zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS))
490                 zil_commit(zfsvfs->z_log, zp->z_id);
491
492         /*
493          * Lock the range against changes.
494          */
495         rl = zfs_range_lock(&zp->z_range_lock, uio->uio_loffset, uio->uio_resid,
496             RL_READER);
497
498         /*
499          * If we are reading past end-of-file we can skip
500          * to the end; but we might still need to set atime.
501          */
502         if (uio->uio_loffset >= zp->z_size) {
503                 error = 0;
504                 goto out;
505         }
506
507         ASSERT(uio->uio_loffset < zp->z_size);
508         n = MIN(uio->uio_resid, zp->z_size - uio->uio_loffset);
509
510 #ifdef HAVE_UIO_ZEROCOPY
511         if ((uio->uio_extflg == UIO_XUIO) &&
512             (((xuio_t *)uio)->xu_type == UIOTYPE_ZEROCOPY)) {
513                 int nblk;
514                 int blksz = zp->z_blksz;
515                 uint64_t offset = uio->uio_loffset;
516
517                 xuio = (xuio_t *)uio;
518                 if ((ISP2(blksz))) {
519                         nblk = (P2ROUNDUP(offset + n, blksz) - P2ALIGN(offset,
520                             blksz)) / blksz;
521                 } else {
522                         ASSERT(offset + n <= blksz);
523                         nblk = 1;
524                 }
525                 (void) dmu_xuio_init(xuio, nblk);
526
527                 if (vn_has_cached_data(ip)) {
528                         /*
529                          * For simplicity, we always allocate a full buffer
530                          * even if we only expect to read a portion of a block.
531                          */
532                         while (--nblk >= 0) {
533                                 (void) dmu_xuio_add(xuio,
534                                     dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
535                                     blksz), 0, blksz);
536                         }
537                 }
538         }
539 #endif /* HAVE_UIO_ZEROCOPY */
540
541         while (n > 0) {
542                 nbytes = MIN(n, zfs_read_chunk_size -
543                     P2PHASE(uio->uio_loffset, zfs_read_chunk_size));
544
545                 if (zp->z_is_mapped && !(ioflag & O_DIRECT)) {
546                         error = mappedread(ip, nbytes, uio);
547                 } else {
548                         error = dmu_read_uio_dbuf(sa_get_db(zp->z_sa_hdl),
549                             uio, nbytes);
550                 }
551
552                 if (error) {
553                         /* convert checksum errors into IO errors */
554                         if (error == ECKSUM)
555                                 error = SET_ERROR(EIO);
556                         break;
557                 }
558
559                 n -= nbytes;
560         }
561 out:
562         zfs_range_unlock(rl);
563
564         ZFS_EXIT(zfsvfs);
565         return (error);
566 }
567
568 /*
569  * Write the bytes to a file.
570  *
571  *      IN:     ip      - inode of file to be written to.
572  *              uio     - structure supplying write location, range info,
573  *                        and data buffer.
574  *              ioflag  - FAPPEND flag set if in append mode.
575  *                        O_DIRECT flag; used to bypass page cache.
576  *              cr      - credentials of caller.
577  *
578  *      OUT:    uio     - updated offset and range.
579  *
580  *      RETURN: 0 if success
581  *              error code if failure
582  *
583  * Timestamps:
584  *      ip - ctime|mtime updated if byte count > 0
585  */
586
587 /* ARGSUSED */
588 int
589 zfs_write(struct inode *ip, uio_t *uio, int ioflag, cred_t *cr)
590 {
591         znode_t         *zp = ITOZ(ip);
592         rlim64_t        limit = uio->uio_limit;
593         ssize_t         start_resid = uio->uio_resid;
594         ssize_t         tx_bytes;
595         uint64_t        end_size;
596         dmu_tx_t        *tx;
597         zfsvfs_t        *zfsvfs = ZTOZSB(zp);
598         zilog_t         *zilog;
599         offset_t        woff;
600         ssize_t         n, nbytes;
601         rl_t            *rl;
602         int             max_blksz = zfsvfs->z_max_blksz;
603         int             error = 0;
604         arc_buf_t       *abuf;
605         const iovec_t   *aiov = NULL;
606         xuio_t          *xuio = NULL;
607         int             write_eof;
608         int             count = 0;
609         sa_bulk_attr_t  bulk[4];
610         uint64_t        mtime[2], ctime[2];
611         uint32_t        uid;
612 #ifdef HAVE_UIO_ZEROCOPY
613         int             i_iov = 0;
614         const iovec_t   *iovp = uio->uio_iov;
615         ASSERTV(int     iovcnt = uio->uio_iovcnt);
616 #endif
617
618         /*
619          * Fasttrack empty write
620          */
621         n = start_resid;
622         if (n == 0)
623                 return (0);
624
625         if (limit == RLIM64_INFINITY || limit > MAXOFFSET_T)
626                 limit = MAXOFFSET_T;
627
628         ZFS_ENTER(zfsvfs);
629         ZFS_VERIFY_ZP(zp);
630
631         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
632         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL, &ctime, 16);
633         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zfsvfs), NULL,
634             &zp->z_size, 8);
635         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
636             &zp->z_pflags, 8);
637
638         /*
639          * Callers might not be able to detect properly that we are read-only,
640          * so check it explicitly here.
641          */
642         if (zfs_is_readonly(zfsvfs)) {
643                 ZFS_EXIT(zfsvfs);
644                 return (SET_ERROR(EROFS));
645         }
646
647         /*
648          * If immutable or not appending then return EPERM
649          */
650         if ((zp->z_pflags & (ZFS_IMMUTABLE | ZFS_READONLY)) ||
651             ((zp->z_pflags & ZFS_APPENDONLY) && !(ioflag & FAPPEND) &&
652             (uio->uio_loffset < zp->z_size))) {
653                 ZFS_EXIT(zfsvfs);
654                 return (SET_ERROR(EPERM));
655         }
656
657         zilog = zfsvfs->z_log;
658
659         /*
660          * Validate file offset
661          */
662         woff = ioflag & FAPPEND ? zp->z_size : uio->uio_loffset;
663         if (woff < 0) {
664                 ZFS_EXIT(zfsvfs);
665                 return (SET_ERROR(EINVAL));
666         }
667
668         /*
669          * Pre-fault the pages to ensure slow (eg NFS) pages
670          * don't hold up txg.
671          * Skip this if uio contains loaned arc_buf.
672          */
673 #ifdef HAVE_UIO_ZEROCOPY
674         if ((uio->uio_extflg == UIO_XUIO) &&
675             (((xuio_t *)uio)->xu_type == UIOTYPE_ZEROCOPY))
676                 xuio = (xuio_t *)uio;
677         else
678 #endif
679                 uio_prefaultpages(MIN(n, max_blksz), uio);
680
681         /*
682          * If in append mode, set the io offset pointer to eof.
683          */
684         if (ioflag & FAPPEND) {
685                 /*
686                  * Obtain an appending range lock to guarantee file append
687                  * semantics.  We reset the write offset once we have the lock.
688                  */
689                 rl = zfs_range_lock(&zp->z_range_lock, 0, n, RL_APPEND);
690                 woff = rl->r_off;
691                 if (rl->r_len == UINT64_MAX) {
692                         /*
693                          * We overlocked the file because this write will cause
694                          * the file block size to increase.
695                          * Note that zp_size cannot change with this lock held.
696                          */
697                         woff = zp->z_size;
698                 }
699                 uio->uio_loffset = woff;
700         } else {
701                 /*
702                  * Note that if the file block size will change as a result of
703                  * this write, then this range lock will lock the entire file
704                  * so that we can re-write the block safely.
705                  */
706                 rl = zfs_range_lock(&zp->z_range_lock, woff, n, RL_WRITER);
707         }
708
709         if (woff >= limit) {
710                 zfs_range_unlock(rl);
711                 ZFS_EXIT(zfsvfs);
712                 return (SET_ERROR(EFBIG));
713         }
714
715         if ((woff + n) > limit || woff > (limit - n))
716                 n = limit - woff;
717
718         /* Will this write extend the file length? */
719         write_eof = (woff + n > zp->z_size);
720
721         end_size = MAX(zp->z_size, woff + n);
722
723         /*
724          * Write the file in reasonable size chunks.  Each chunk is written
725          * in a separate transaction; this keeps the intent log records small
726          * and allows us to do more fine-grained space accounting.
727          */
728         while (n > 0) {
729                 abuf = NULL;
730                 woff = uio->uio_loffset;
731                 if (zfs_owner_overquota(zfsvfs, zp, B_FALSE) ||
732                     zfs_owner_overquota(zfsvfs, zp, B_TRUE)) {
733                         if (abuf != NULL)
734                                 dmu_return_arcbuf(abuf);
735                         error = SET_ERROR(EDQUOT);
736                         break;
737                 }
738
739                 if (xuio && abuf == NULL) {
740 #ifdef HAVE_UIO_ZEROCOPY
741                         ASSERT(i_iov < iovcnt);
742                         ASSERT3U(uio->uio_segflg, !=, UIO_BVEC);
743                         aiov = &iovp[i_iov];
744                         abuf = dmu_xuio_arcbuf(xuio, i_iov);
745                         dmu_xuio_clear(xuio, i_iov);
746                         ASSERT((aiov->iov_base == abuf->b_data) ||
747                             ((char *)aiov->iov_base - (char *)abuf->b_data +
748                             aiov->iov_len == arc_buf_size(abuf)));
749                         i_iov++;
750 #endif
751                 } else if (abuf == NULL && n >= max_blksz &&
752                     woff >= zp->z_size &&
753                     P2PHASE(woff, max_blksz) == 0 &&
754                     zp->z_blksz == max_blksz) {
755                         /*
756                          * This write covers a full block.  "Borrow" a buffer
757                          * from the dmu so that we can fill it before we enter
758                          * a transaction.  This avoids the possibility of
759                          * holding up the transaction if the data copy hangs
760                          * up on a pagefault (e.g., from an NFS server mapping).
761                          */
762                         size_t cbytes;
763
764                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
765                             max_blksz);
766                         ASSERT(abuf != NULL);
767                         ASSERT(arc_buf_size(abuf) == max_blksz);
768                         if ((error = uiocopy(abuf->b_data, max_blksz,
769                             UIO_WRITE, uio, &cbytes))) {
770                                 dmu_return_arcbuf(abuf);
771                                 break;
772                         }
773                         ASSERT(cbytes == max_blksz);
774                 }
775
776                 /*
777                  * Start a transaction.
778                  */
779                 tx = dmu_tx_create(zfsvfs->z_os);
780                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
781                 dmu_tx_hold_write(tx, zp->z_id, woff, MIN(n, max_blksz));
782                 zfs_sa_upgrade_txholds(tx, zp);
783                 error = dmu_tx_assign(tx, TXG_WAIT);
784                 if (error) {
785                         dmu_tx_abort(tx);
786                         if (abuf != NULL)
787                                 dmu_return_arcbuf(abuf);
788                         break;
789                 }
790
791                 /*
792                  * If zfs_range_lock() over-locked we grow the blocksize
793                  * and then reduce the lock range.  This will only happen
794                  * on the first iteration since zfs_range_reduce() will
795                  * shrink down r_len to the appropriate size.
796                  */
797                 if (rl->r_len == UINT64_MAX) {
798                         uint64_t new_blksz;
799
800                         if (zp->z_blksz > max_blksz) {
801                                 /*
802                                  * File's blocksize is already larger than the
803                                  * "recordsize" property.  Only let it grow to
804                                  * the next power of 2.
805                                  */
806                                 ASSERT(!ISP2(zp->z_blksz));
807                                 new_blksz = MIN(end_size,
808                                     1 << highbit64(zp->z_blksz));
809                         } else {
810                                 new_blksz = MIN(end_size, max_blksz);
811                         }
812                         zfs_grow_blocksize(zp, new_blksz, tx);
813                         zfs_range_reduce(rl, woff, n);
814                 }
815
816                 /*
817                  * XXX - should we really limit each write to z_max_blksz?
818                  * Perhaps we should use SPA_MAXBLOCKSIZE chunks?
819                  */
820                 nbytes = MIN(n, max_blksz - P2PHASE(woff, max_blksz));
821
822                 if (abuf == NULL) {
823                         tx_bytes = uio->uio_resid;
824                         error = dmu_write_uio_dbuf(sa_get_db(zp->z_sa_hdl),
825                             uio, nbytes, tx);
826                         tx_bytes -= uio->uio_resid;
827                 } else {
828                         tx_bytes = nbytes;
829                         ASSERT(xuio == NULL || tx_bytes == aiov->iov_len);
830                         /*
831                          * If this is not a full block write, but we are
832                          * extending the file past EOF and this data starts
833                          * block-aligned, use assign_arcbuf().  Otherwise,
834                          * write via dmu_write().
835                          */
836                         if (tx_bytes < max_blksz && (!write_eof ||
837                             aiov->iov_base != abuf->b_data)) {
838                                 ASSERT(xuio);
839                                 dmu_write(zfsvfs->z_os, zp->z_id, woff,
840                                     /* cppcheck-suppress nullPointer */
841                                     aiov->iov_len, aiov->iov_base, tx);
842                                 dmu_return_arcbuf(abuf);
843                                 xuio_stat_wbuf_copied();
844                         } else {
845                                 ASSERT(xuio || tx_bytes == max_blksz);
846                                 dmu_assign_arcbuf_by_dbuf(
847                                     sa_get_db(zp->z_sa_hdl), woff, abuf, tx);
848                         }
849                         ASSERT(tx_bytes <= uio->uio_resid);
850                         uioskip(uio, tx_bytes);
851                 }
852                 if (tx_bytes && zp->z_is_mapped && !(ioflag & O_DIRECT)) {
853                         update_pages(ip, woff,
854                             tx_bytes, zfsvfs->z_os, zp->z_id);
855                 }
856
857                 /*
858                  * If we made no progress, we're done.  If we made even
859                  * partial progress, update the znode and ZIL accordingly.
860                  */
861                 if (tx_bytes == 0) {
862                         (void) sa_update(zp->z_sa_hdl, SA_ZPL_SIZE(zfsvfs),
863                             (void *)&zp->z_size, sizeof (uint64_t), tx);
864                         dmu_tx_commit(tx);
865                         ASSERT(error != 0);
866                         break;
867                 }
868
869                 /*
870                  * Clear Set-UID/Set-GID bits on successful write if not
871                  * privileged and at least one of the execute bits is set.
872                  *
873                  * It would be nice to to this after all writes have
874                  * been done, but that would still expose the ISUID/ISGID
875                  * to another app after the partial write is committed.
876                  *
877                  * Note: we don't call zfs_fuid_map_id() here because
878                  * user 0 is not an ephemeral uid.
879                  */
880                 mutex_enter(&zp->z_acl_lock);
881                 uid = KUID_TO_SUID(ip->i_uid);
882                 if ((zp->z_mode & (S_IXUSR | (S_IXUSR >> 3) |
883                     (S_IXUSR >> 6))) != 0 &&
884                     (zp->z_mode & (S_ISUID | S_ISGID)) != 0 &&
885                     secpolicy_vnode_setid_retain(cr,
886                     ((zp->z_mode & S_ISUID) != 0 && uid == 0)) != 0) {
887                         uint64_t newmode;
888                         zp->z_mode &= ~(S_ISUID | S_ISGID);
889                         ip->i_mode = newmode = zp->z_mode;
890                         (void) sa_update(zp->z_sa_hdl, SA_ZPL_MODE(zfsvfs),
891                             (void *)&newmode, sizeof (uint64_t), tx);
892                 }
893                 mutex_exit(&zp->z_acl_lock);
894
895                 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctime);
896
897                 /*
898                  * Update the file size (zp_size) if it has changed;
899                  * account for possible concurrent updates.
900                  */
901                 while ((end_size = zp->z_size) < uio->uio_loffset) {
902                         (void) atomic_cas_64(&zp->z_size, end_size,
903                             uio->uio_loffset);
904                         ASSERT(error == 0);
905                 }
906                 /*
907                  * If we are replaying and eof is non zero then force
908                  * the file size to the specified eof. Note, there's no
909                  * concurrency during replay.
910                  */
911                 if (zfsvfs->z_replay && zfsvfs->z_replay_eof != 0)
912                         zp->z_size = zfsvfs->z_replay_eof;
913
914                 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
915
916                 zfs_log_write(zilog, tx, TX_WRITE, zp, woff, tx_bytes, ioflag,
917                     NULL, NULL);
918                 dmu_tx_commit(tx);
919
920                 if (error != 0)
921                         break;
922                 ASSERT(tx_bytes == nbytes);
923                 n -= nbytes;
924
925                 if (!xuio && n > 0)
926                         uio_prefaultpages(MIN(n, max_blksz), uio);
927         }
928
929         zfs_inode_update(zp);
930         zfs_range_unlock(rl);
931
932         /*
933          * If we're in replay mode, or we made no progress, return error.
934          * Otherwise, it's at least a partial write, so it's successful.
935          */
936         if (zfsvfs->z_replay || uio->uio_resid == start_resid) {
937                 ZFS_EXIT(zfsvfs);
938                 return (error);
939         }
940
941         if (ioflag & (FSYNC | FDSYNC) ||
942             zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
943                 zil_commit(zilog, zp->z_id);
944
945         ZFS_EXIT(zfsvfs);
946         return (0);
947 }
948
949 /*
950  * Drop a reference on the passed inode asynchronously. This ensures
951  * that the caller will never drop the last reference on an inode in
952  * the current context. Doing so while holding open a tx could result
953  * in a deadlock if iput_final() re-enters the filesystem code.
954  */
955 void
956 zfs_iput_async(struct inode *ip)
957 {
958         objset_t *os = ITOZSB(ip)->z_os;
959
960         ASSERT(atomic_read(&ip->i_count) > 0);
961         ASSERT(os != NULL);
962
963         if (atomic_read(&ip->i_count) == 1)
964                 VERIFY(taskq_dispatch(dsl_pool_iput_taskq(dmu_objset_pool(os)),
965                     (task_func_t *)iput, ip, TQ_SLEEP) != TASKQID_INVALID);
966         else
967                 iput(ip);
968 }
969
970 void
971 zfs_get_done(zgd_t *zgd, int error)
972 {
973         znode_t *zp = zgd->zgd_private;
974
975         if (zgd->zgd_db)
976                 dmu_buf_rele(zgd->zgd_db, zgd);
977
978         zfs_range_unlock(zgd->zgd_rl);
979
980         /*
981          * Release the vnode asynchronously as we currently have the
982          * txg stopped from syncing.
983          */
984         zfs_iput_async(ZTOI(zp));
985
986         if (error == 0 && zgd->zgd_bp)
987                 zil_lwb_add_block(zgd->zgd_lwb, zgd->zgd_bp);
988
989         kmem_free(zgd, sizeof (zgd_t));
990 }
991
992 #ifdef DEBUG
993 static int zil_fault_io = 0;
994 #endif
995
996 /*
997  * Get data to generate a TX_WRITE intent log record.
998  */
999 int
1000 zfs_get_data(void *arg, lr_write_t *lr, char *buf, struct lwb *lwb, zio_t *zio)
1001 {
1002         zfsvfs_t *zfsvfs = arg;
1003         objset_t *os = zfsvfs->z_os;
1004         znode_t *zp;
1005         uint64_t object = lr->lr_foid;
1006         uint64_t offset = lr->lr_offset;
1007         uint64_t size = lr->lr_length;
1008         dmu_buf_t *db;
1009         zgd_t *zgd;
1010         int error = 0;
1011
1012         ASSERT3P(lwb, !=, NULL);
1013         ASSERT3P(zio, !=, NULL);
1014         ASSERT3U(size, !=, 0);
1015
1016         /*
1017          * Nothing to do if the file has been removed
1018          */
1019         if (zfs_zget(zfsvfs, object, &zp) != 0)
1020                 return (SET_ERROR(ENOENT));
1021         if (zp->z_unlinked) {
1022                 /*
1023                  * Release the vnode asynchronously as we currently have the
1024                  * txg stopped from syncing.
1025                  */
1026                 zfs_iput_async(ZTOI(zp));
1027                 return (SET_ERROR(ENOENT));
1028         }
1029
1030         zgd = (zgd_t *)kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
1031         zgd->zgd_lwb = lwb;
1032         zgd->zgd_private = zp;
1033
1034         /*
1035          * Write records come in two flavors: immediate and indirect.
1036          * For small writes it's cheaper to store the data with the
1037          * log record (immediate); for large writes it's cheaper to
1038          * sync the data and get a pointer to it (indirect) so that
1039          * we don't have to write the data twice.
1040          */
1041         if (buf != NULL) { /* immediate write */
1042                 zgd->zgd_rl = zfs_range_lock(&zp->z_range_lock, offset, size,
1043                     RL_READER);
1044                 /* test for truncation needs to be done while range locked */
1045                 if (offset >= zp->z_size) {
1046                         error = SET_ERROR(ENOENT);
1047                 } else {
1048                         error = dmu_read(os, object, offset, size, buf,
1049                             DMU_READ_NO_PREFETCH);
1050                 }
1051                 ASSERT(error == 0 || error == ENOENT);
1052         } else { /* indirect write */
1053                 /*
1054                  * Have to lock the whole block to ensure when it's
1055                  * written out and its checksum is being calculated
1056                  * that no one can change the data. We need to re-check
1057                  * blocksize after we get the lock in case it's changed!
1058                  */
1059                 for (;;) {
1060                         uint64_t blkoff;
1061                         size = zp->z_blksz;
1062                         blkoff = ISP2(size) ? P2PHASE(offset, size) : offset;
1063                         offset -= blkoff;
1064                         zgd->zgd_rl = zfs_range_lock(&zp->z_range_lock, offset,
1065                             size, RL_READER);
1066                         if (zp->z_blksz == size)
1067                                 break;
1068                         offset += blkoff;
1069                         zfs_range_unlock(zgd->zgd_rl);
1070                 }
1071                 /* test for truncation needs to be done while range locked */
1072                 if (lr->lr_offset >= zp->z_size)
1073                         error = SET_ERROR(ENOENT);
1074 #ifdef DEBUG
1075                 if (zil_fault_io) {
1076                         error = SET_ERROR(EIO);
1077                         zil_fault_io = 0;
1078                 }
1079 #endif
1080                 if (error == 0)
1081                         error = dmu_buf_hold(os, object, offset, zgd, &db,
1082                             DMU_READ_NO_PREFETCH);
1083
1084                 if (error == 0) {
1085                         blkptr_t *bp = &lr->lr_blkptr;
1086
1087                         zgd->zgd_db = db;
1088                         zgd->zgd_bp = bp;
1089
1090                         ASSERT(db->db_offset == offset);
1091                         ASSERT(db->db_size == size);
1092
1093                         error = dmu_sync(zio, lr->lr_common.lrc_txg,
1094                             zfs_get_done, zgd);
1095                         ASSERT(error || lr->lr_length <= size);
1096
1097                         /*
1098                          * On success, we need to wait for the write I/O
1099                          * initiated by dmu_sync() to complete before we can
1100                          * release this dbuf.  We will finish everything up
1101                          * in the zfs_get_done() callback.
1102                          */
1103                         if (error == 0)
1104                                 return (0);
1105
1106                         if (error == EALREADY) {
1107                                 lr->lr_common.lrc_txtype = TX_WRITE2;
1108                                 error = 0;
1109                         }
1110                 }
1111         }
1112
1113         zfs_get_done(zgd, error);
1114
1115         return (error);
1116 }
1117
1118 /*ARGSUSED*/
1119 int
1120 zfs_access(struct inode *ip, int mode, int flag, cred_t *cr)
1121 {
1122         znode_t *zp = ITOZ(ip);
1123         zfsvfs_t *zfsvfs = ITOZSB(ip);
1124         int error;
1125
1126         ZFS_ENTER(zfsvfs);
1127         ZFS_VERIFY_ZP(zp);
1128
1129         if (flag & V_ACE_MASK)
1130                 error = zfs_zaccess(zp, mode, flag, B_FALSE, cr);
1131         else
1132                 error = zfs_zaccess_rwx(zp, mode, flag, cr);
1133
1134         ZFS_EXIT(zfsvfs);
1135         return (error);
1136 }
1137
1138 /*
1139  * Lookup an entry in a directory, or an extended attribute directory.
1140  * If it exists, return a held inode reference for it.
1141  *
1142  *      IN:     dip     - inode of directory to search.
1143  *              nm      - name of entry to lookup.
1144  *              flags   - LOOKUP_XATTR set if looking for an attribute.
1145  *              cr      - credentials of caller.
1146  *              direntflags - directory lookup flags
1147  *              realpnp - returned pathname.
1148  *
1149  *      OUT:    ipp     - inode of located entry, NULL if not found.
1150  *
1151  *      RETURN: 0 on success, error code on failure.
1152  *
1153  * Timestamps:
1154  *      NA
1155  */
1156 /* ARGSUSED */
1157 int
1158 zfs_lookup(struct inode *dip, char *nm, struct inode **ipp, int flags,
1159     cred_t *cr, int *direntflags, pathname_t *realpnp)
1160 {
1161         znode_t *zdp = ITOZ(dip);
1162         zfsvfs_t *zfsvfs = ITOZSB(dip);
1163         int error = 0;
1164
1165         /*
1166          * Fast path lookup, however we must skip DNLC lookup
1167          * for case folding or normalizing lookups because the
1168          * DNLC code only stores the passed in name.  This means
1169          * creating 'a' and removing 'A' on a case insensitive
1170          * file system would work, but DNLC still thinks 'a'
1171          * exists and won't let you create it again on the next
1172          * pass through fast path.
1173          */
1174         if (!(flags & (LOOKUP_XATTR | FIGNORECASE))) {
1175
1176                 if (!S_ISDIR(dip->i_mode)) {
1177                         return (SET_ERROR(ENOTDIR));
1178                 } else if (zdp->z_sa_hdl == NULL) {
1179                         return (SET_ERROR(EIO));
1180                 }
1181
1182                 if (nm[0] == 0 || (nm[0] == '.' && nm[1] == '\0')) {
1183                         error = zfs_fastaccesschk_execute(zdp, cr);
1184                         if (!error) {
1185                                 *ipp = dip;
1186                                 igrab(*ipp);
1187                                 return (0);
1188                         }
1189                         return (error);
1190 #ifdef HAVE_DNLC
1191                 } else if (!zdp->z_zfsvfs->z_norm &&
1192                     (zdp->z_zfsvfs->z_case == ZFS_CASE_SENSITIVE)) {
1193
1194                         vnode_t *tvp = dnlc_lookup(dvp, nm);
1195
1196                         if (tvp) {
1197                                 error = zfs_fastaccesschk_execute(zdp, cr);
1198                                 if (error) {
1199                                         iput(tvp);
1200                                         return (error);
1201                                 }
1202                                 if (tvp == DNLC_NO_VNODE) {
1203                                         iput(tvp);
1204                                         return (SET_ERROR(ENOENT));
1205                                 } else {
1206                                         *vpp = tvp;
1207                                         return (specvp_check(vpp, cr));
1208                                 }
1209                         }
1210 #endif /* HAVE_DNLC */
1211                 }
1212         }
1213
1214         ZFS_ENTER(zfsvfs);
1215         ZFS_VERIFY_ZP(zdp);
1216
1217         *ipp = NULL;
1218
1219         if (flags & LOOKUP_XATTR) {
1220                 /*
1221                  * We don't allow recursive attributes..
1222                  * Maybe someday we will.
1223                  */
1224                 if (zdp->z_pflags & ZFS_XATTR) {
1225                         ZFS_EXIT(zfsvfs);
1226                         return (SET_ERROR(EINVAL));
1227                 }
1228
1229                 if ((error = zfs_get_xattrdir(zdp, ipp, cr, flags))) {
1230                         ZFS_EXIT(zfsvfs);
1231                         return (error);
1232                 }
1233
1234                 /*
1235                  * Do we have permission to get into attribute directory?
1236                  */
1237
1238                 if ((error = zfs_zaccess(ITOZ(*ipp), ACE_EXECUTE, 0,
1239                     B_FALSE, cr))) {
1240                         iput(*ipp);
1241                         *ipp = NULL;
1242                 }
1243
1244                 ZFS_EXIT(zfsvfs);
1245                 return (error);
1246         }
1247
1248         if (!S_ISDIR(dip->i_mode)) {
1249                 ZFS_EXIT(zfsvfs);
1250                 return (SET_ERROR(ENOTDIR));
1251         }
1252
1253         /*
1254          * Check accessibility of directory.
1255          */
1256
1257         if ((error = zfs_zaccess(zdp, ACE_EXECUTE, 0, B_FALSE, cr))) {
1258                 ZFS_EXIT(zfsvfs);
1259                 return (error);
1260         }
1261
1262         if (zfsvfs->z_utf8 && u8_validate(nm, strlen(nm),
1263             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1264                 ZFS_EXIT(zfsvfs);
1265                 return (SET_ERROR(EILSEQ));
1266         }
1267
1268         error = zfs_dirlook(zdp, nm, ipp, flags, direntflags, realpnp);
1269         if ((error == 0) && (*ipp))
1270                 zfs_inode_update(ITOZ(*ipp));
1271
1272         ZFS_EXIT(zfsvfs);
1273         return (error);
1274 }
1275
1276 /*
1277  * Attempt to create a new entry in a directory.  If the entry
1278  * already exists, truncate the file if permissible, else return
1279  * an error.  Return the ip of the created or trunc'd file.
1280  *
1281  *      IN:     dip     - inode of directory to put new file entry in.
1282  *              name    - name of new file entry.
1283  *              vap     - attributes of new file.
1284  *              excl    - flag indicating exclusive or non-exclusive mode.
1285  *              mode    - mode to open file with.
1286  *              cr      - credentials of caller.
1287  *              flag    - large file flag [UNUSED].
1288  *              vsecp   - ACL to be set
1289  *
1290  *      OUT:    ipp     - inode of created or trunc'd entry.
1291  *
1292  *      RETURN: 0 on success, error code on failure.
1293  *
1294  * Timestamps:
1295  *      dip - ctime|mtime updated if new entry created
1296  *       ip - ctime|mtime always, atime if new
1297  */
1298
1299 /* ARGSUSED */
1300 int
1301 zfs_create(struct inode *dip, char *name, vattr_t *vap, int excl,
1302     int mode, struct inode **ipp, cred_t *cr, int flag, vsecattr_t *vsecp)
1303 {
1304         znode_t         *zp, *dzp = ITOZ(dip);
1305         zfsvfs_t        *zfsvfs = ITOZSB(dip);
1306         zilog_t         *zilog;
1307         objset_t        *os;
1308         zfs_dirlock_t   *dl;
1309         dmu_tx_t        *tx;
1310         int             error;
1311         uid_t           uid;
1312         gid_t           gid;
1313         zfs_acl_ids_t   acl_ids;
1314         boolean_t       fuid_dirtied;
1315         boolean_t       have_acl = B_FALSE;
1316         boolean_t       waited = B_FALSE;
1317
1318         /*
1319          * If we have an ephemeral id, ACL, or XVATTR then
1320          * make sure file system is at proper version
1321          */
1322
1323         gid = crgetgid(cr);
1324         uid = crgetuid(cr);
1325
1326         if (zfsvfs->z_use_fuids == B_FALSE &&
1327             (vsecp || IS_EPHEMERAL(uid) || IS_EPHEMERAL(gid)))
1328                 return (SET_ERROR(EINVAL));
1329
1330         if (name == NULL)
1331                 return (SET_ERROR(EINVAL));
1332
1333         ZFS_ENTER(zfsvfs);
1334         ZFS_VERIFY_ZP(dzp);
1335         os = zfsvfs->z_os;
1336         zilog = zfsvfs->z_log;
1337
1338         if (zfsvfs->z_utf8 && u8_validate(name, strlen(name),
1339             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1340                 ZFS_EXIT(zfsvfs);
1341                 return (SET_ERROR(EILSEQ));
1342         }
1343
1344         if (vap->va_mask & ATTR_XVATTR) {
1345                 if ((error = secpolicy_xvattr((xvattr_t *)vap,
1346                     crgetuid(cr), cr, vap->va_mode)) != 0) {
1347                         ZFS_EXIT(zfsvfs);
1348                         return (error);
1349                 }
1350         }
1351
1352 top:
1353         *ipp = NULL;
1354         if (*name == '\0') {
1355                 /*
1356                  * Null component name refers to the directory itself.
1357                  */
1358                 igrab(dip);
1359                 zp = dzp;
1360                 dl = NULL;
1361                 error = 0;
1362         } else {
1363                 /* possible igrab(zp) */
1364                 int zflg = 0;
1365
1366                 if (flag & FIGNORECASE)
1367                         zflg |= ZCILOOK;
1368
1369                 error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
1370                     NULL, NULL);
1371                 if (error) {
1372                         if (have_acl)
1373                                 zfs_acl_ids_free(&acl_ids);
1374                         if (strcmp(name, "..") == 0)
1375                                 error = SET_ERROR(EISDIR);
1376                         ZFS_EXIT(zfsvfs);
1377                         return (error);
1378                 }
1379         }
1380
1381         if (zp == NULL) {
1382                 uint64_t txtype;
1383
1384                 /*
1385                  * Create a new file object and update the directory
1386                  * to reference it.
1387                  */
1388                 if ((error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr))) {
1389                         if (have_acl)
1390                                 zfs_acl_ids_free(&acl_ids);
1391                         goto out;
1392                 }
1393
1394                 /*
1395                  * We only support the creation of regular files in
1396                  * extended attribute directories.
1397                  */
1398
1399                 if ((dzp->z_pflags & ZFS_XATTR) && !S_ISREG(vap->va_mode)) {
1400                         if (have_acl)
1401                                 zfs_acl_ids_free(&acl_ids);
1402                         error = SET_ERROR(EINVAL);
1403                         goto out;
1404                 }
1405
1406                 if (!have_acl && (error = zfs_acl_ids_create(dzp, 0, vap,
1407                     cr, vsecp, &acl_ids)) != 0)
1408                         goto out;
1409                 have_acl = B_TRUE;
1410
1411                 if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
1412                         zfs_acl_ids_free(&acl_ids);
1413                         error = SET_ERROR(EDQUOT);
1414                         goto out;
1415                 }
1416
1417                 tx = dmu_tx_create(os);
1418
1419                 dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
1420                     ZFS_SA_BASE_ATTR_SIZE);
1421
1422                 fuid_dirtied = zfsvfs->z_fuid_dirty;
1423                 if (fuid_dirtied)
1424                         zfs_fuid_txhold(zfsvfs, tx);
1425                 dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
1426                 dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
1427                 if (!zfsvfs->z_use_sa &&
1428                     acl_ids.z_aclp->z_acl_bytes > ZFS_ACE_SPACE) {
1429                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
1430                             0, acl_ids.z_aclp->z_acl_bytes);
1431                 }
1432                 error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
1433                 if (error) {
1434                         zfs_dirent_unlock(dl);
1435                         if (error == ERESTART) {
1436                                 waited = B_TRUE;
1437                                 dmu_tx_wait(tx);
1438                                 dmu_tx_abort(tx);
1439                                 goto top;
1440                         }
1441                         zfs_acl_ids_free(&acl_ids);
1442                         dmu_tx_abort(tx);
1443                         ZFS_EXIT(zfsvfs);
1444                         return (error);
1445                 }
1446                 zfs_mknode(dzp, vap, tx, cr, 0, &zp, &acl_ids);
1447
1448                 if (fuid_dirtied)
1449                         zfs_fuid_sync(zfsvfs, tx);
1450
1451                 (void) zfs_link_create(dl, zp, tx, ZNEW);
1452                 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap);
1453                 if (flag & FIGNORECASE)
1454                         txtype |= TX_CI;
1455                 zfs_log_create(zilog, tx, txtype, dzp, zp, name,
1456                     vsecp, acl_ids.z_fuidp, vap);
1457                 zfs_acl_ids_free(&acl_ids);
1458                 dmu_tx_commit(tx);
1459         } else {
1460                 int aflags = (flag & FAPPEND) ? V_APPEND : 0;
1461
1462                 if (have_acl)
1463                         zfs_acl_ids_free(&acl_ids);
1464                 have_acl = B_FALSE;
1465
1466                 /*
1467                  * A directory entry already exists for this name.
1468                  */
1469                 /*
1470                  * Can't truncate an existing file if in exclusive mode.
1471                  */
1472                 if (excl) {
1473                         error = SET_ERROR(EEXIST);
1474                         goto out;
1475                 }
1476                 /*
1477                  * Can't open a directory for writing.
1478                  */
1479                 if (S_ISDIR(ZTOI(zp)->i_mode)) {
1480                         error = SET_ERROR(EISDIR);
1481                         goto out;
1482                 }
1483                 /*
1484                  * Verify requested access to file.
1485                  */
1486                 if (mode && (error = zfs_zaccess_rwx(zp, mode, aflags, cr))) {
1487                         goto out;
1488                 }
1489
1490                 mutex_enter(&dzp->z_lock);
1491                 dzp->z_seq++;
1492                 mutex_exit(&dzp->z_lock);
1493
1494                 /*
1495                  * Truncate regular files if requested.
1496                  */
1497                 if (S_ISREG(ZTOI(zp)->i_mode) &&
1498                     (vap->va_mask & ATTR_SIZE) && (vap->va_size == 0)) {
1499                         /* we can't hold any locks when calling zfs_freesp() */
1500                         if (dl) {
1501                                 zfs_dirent_unlock(dl);
1502                                 dl = NULL;
1503                         }
1504                         error = zfs_freesp(zp, 0, 0, mode, TRUE);
1505                 }
1506         }
1507 out:
1508
1509         if (dl)
1510                 zfs_dirent_unlock(dl);
1511
1512         if (error) {
1513                 if (zp)
1514                         iput(ZTOI(zp));
1515         } else {
1516                 zfs_inode_update(dzp);
1517                 zfs_inode_update(zp);
1518                 *ipp = ZTOI(zp);
1519         }
1520
1521         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
1522                 zil_commit(zilog, 0);
1523
1524         ZFS_EXIT(zfsvfs);
1525         return (error);
1526 }
1527
1528 /* ARGSUSED */
1529 int
1530 zfs_tmpfile(struct inode *dip, vattr_t *vap, int excl,
1531     int mode, struct inode **ipp, cred_t *cr, int flag, vsecattr_t *vsecp)
1532 {
1533         znode_t         *zp = NULL, *dzp = ITOZ(dip);
1534         zfsvfs_t        *zfsvfs = ITOZSB(dip);
1535         objset_t        *os;
1536         dmu_tx_t        *tx;
1537         int             error;
1538         uid_t           uid;
1539         gid_t           gid;
1540         zfs_acl_ids_t   acl_ids;
1541         boolean_t       fuid_dirtied;
1542         boolean_t       have_acl = B_FALSE;
1543         boolean_t       waited = B_FALSE;
1544
1545         /*
1546          * If we have an ephemeral id, ACL, or XVATTR then
1547          * make sure file system is at proper version
1548          */
1549
1550         gid = crgetgid(cr);
1551         uid = crgetuid(cr);
1552
1553         if (zfsvfs->z_use_fuids == B_FALSE &&
1554             (vsecp || IS_EPHEMERAL(uid) || IS_EPHEMERAL(gid)))
1555                 return (SET_ERROR(EINVAL));
1556
1557         ZFS_ENTER(zfsvfs);
1558         ZFS_VERIFY_ZP(dzp);
1559         os = zfsvfs->z_os;
1560
1561         if (vap->va_mask & ATTR_XVATTR) {
1562                 if ((error = secpolicy_xvattr((xvattr_t *)vap,
1563                     crgetuid(cr), cr, vap->va_mode)) != 0) {
1564                         ZFS_EXIT(zfsvfs);
1565                         return (error);
1566                 }
1567         }
1568
1569 top:
1570         *ipp = NULL;
1571
1572         /*
1573          * Create a new file object and update the directory
1574          * to reference it.
1575          */
1576         if ((error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr))) {
1577                 if (have_acl)
1578                         zfs_acl_ids_free(&acl_ids);
1579                 goto out;
1580         }
1581
1582         if (!have_acl && (error = zfs_acl_ids_create(dzp, 0, vap,
1583             cr, vsecp, &acl_ids)) != 0)
1584                 goto out;
1585         have_acl = B_TRUE;
1586
1587         if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
1588                 zfs_acl_ids_free(&acl_ids);
1589                 error = SET_ERROR(EDQUOT);
1590                 goto out;
1591         }
1592
1593         tx = dmu_tx_create(os);
1594
1595         dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
1596             ZFS_SA_BASE_ATTR_SIZE);
1597         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
1598
1599         fuid_dirtied = zfsvfs->z_fuid_dirty;
1600         if (fuid_dirtied)
1601                 zfs_fuid_txhold(zfsvfs, tx);
1602         if (!zfsvfs->z_use_sa &&
1603             acl_ids.z_aclp->z_acl_bytes > ZFS_ACE_SPACE) {
1604                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
1605                     0, acl_ids.z_aclp->z_acl_bytes);
1606         }
1607         error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
1608         if (error) {
1609                 if (error == ERESTART) {
1610                         waited = B_TRUE;
1611                         dmu_tx_wait(tx);
1612                         dmu_tx_abort(tx);
1613                         goto top;
1614                 }
1615                 zfs_acl_ids_free(&acl_ids);
1616                 dmu_tx_abort(tx);
1617                 ZFS_EXIT(zfsvfs);
1618                 return (error);
1619         }
1620         zfs_mknode(dzp, vap, tx, cr, IS_TMPFILE, &zp, &acl_ids);
1621
1622         if (fuid_dirtied)
1623                 zfs_fuid_sync(zfsvfs, tx);
1624
1625         /* Add to unlinked set */
1626         zp->z_unlinked = 1;
1627         zfs_unlinked_add(zp, tx);
1628         zfs_acl_ids_free(&acl_ids);
1629         dmu_tx_commit(tx);
1630 out:
1631
1632         if (error) {
1633                 if (zp)
1634                         iput(ZTOI(zp));
1635         } else {
1636                 zfs_inode_update(dzp);
1637                 zfs_inode_update(zp);
1638                 *ipp = ZTOI(zp);
1639         }
1640
1641         ZFS_EXIT(zfsvfs);
1642         return (error);
1643 }
1644
1645 /*
1646  * Remove an entry from a directory.
1647  *
1648  *      IN:     dip     - inode of directory to remove entry from.
1649  *              name    - name of entry to remove.
1650  *              cr      - credentials of caller.
1651  *
1652  *      RETURN: 0 if success
1653  *              error code if failure
1654  *
1655  * Timestamps:
1656  *      dip - ctime|mtime
1657  *       ip - ctime (if nlink > 0)
1658  */
1659
1660 uint64_t null_xattr = 0;
1661
1662 /*ARGSUSED*/
1663 int
1664 zfs_remove(struct inode *dip, char *name, cred_t *cr, int flags)
1665 {
1666         znode_t         *zp, *dzp = ITOZ(dip);
1667         znode_t         *xzp;
1668         struct inode    *ip;
1669         zfsvfs_t        *zfsvfs = ITOZSB(dip);
1670         zilog_t         *zilog;
1671         uint64_t        acl_obj, xattr_obj;
1672         uint64_t        xattr_obj_unlinked = 0;
1673         uint64_t        obj = 0;
1674         uint64_t        links;
1675         zfs_dirlock_t   *dl;
1676         dmu_tx_t        *tx;
1677         boolean_t       may_delete_now, delete_now = FALSE;
1678         boolean_t       unlinked, toobig = FALSE;
1679         uint64_t        txtype;
1680         pathname_t      *realnmp = NULL;
1681         pathname_t      realnm;
1682         int             error;
1683         int             zflg = ZEXISTS;
1684         boolean_t       waited = B_FALSE;
1685
1686         if (name == NULL)
1687                 return (SET_ERROR(EINVAL));
1688
1689         ZFS_ENTER(zfsvfs);
1690         ZFS_VERIFY_ZP(dzp);
1691         zilog = zfsvfs->z_log;
1692
1693         if (flags & FIGNORECASE) {
1694                 zflg |= ZCILOOK;
1695                 pn_alloc(&realnm);
1696                 realnmp = &realnm;
1697         }
1698
1699 top:
1700         xattr_obj = 0;
1701         xzp = NULL;
1702         /*
1703          * Attempt to lock directory; fail if entry doesn't exist.
1704          */
1705         if ((error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
1706             NULL, realnmp))) {
1707                 if (realnmp)
1708                         pn_free(realnmp);
1709                 ZFS_EXIT(zfsvfs);
1710                 return (error);
1711         }
1712
1713         ip = ZTOI(zp);
1714
1715         if ((error = zfs_zaccess_delete(dzp, zp, cr))) {
1716                 goto out;
1717         }
1718
1719         /*
1720          * Need to use rmdir for removing directories.
1721          */
1722         if (S_ISDIR(ip->i_mode)) {
1723                 error = SET_ERROR(EPERM);
1724                 goto out;
1725         }
1726
1727 #ifdef HAVE_DNLC
1728         if (realnmp)
1729                 dnlc_remove(dvp, realnmp->pn_buf);
1730         else
1731                 dnlc_remove(dvp, name);
1732 #endif /* HAVE_DNLC */
1733
1734         mutex_enter(&zp->z_lock);
1735         may_delete_now = atomic_read(&ip->i_count) == 1 && !(zp->z_is_mapped);
1736         mutex_exit(&zp->z_lock);
1737
1738         /*
1739          * We may delete the znode now, or we may put it in the unlinked set;
1740          * it depends on whether we're the last link, and on whether there are
1741          * other holds on the inode.  So we dmu_tx_hold() the right things to
1742          * allow for either case.
1743          */
1744         obj = zp->z_id;
1745         tx = dmu_tx_create(zfsvfs->z_os);
1746         dmu_tx_hold_zap(tx, dzp->z_id, FALSE, name);
1747         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1748         zfs_sa_upgrade_txholds(tx, zp);
1749         zfs_sa_upgrade_txholds(tx, dzp);
1750         if (may_delete_now) {
1751                 toobig = zp->z_size > zp->z_blksz * zfs_delete_blocks;
1752                 /* if the file is too big, only hold_free a token amount */
1753                 dmu_tx_hold_free(tx, zp->z_id, 0,
1754                     (toobig ? DMU_MAX_ACCESS : DMU_OBJECT_END));
1755         }
1756
1757         /* are there any extended attributes? */
1758         error = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs),
1759             &xattr_obj, sizeof (xattr_obj));
1760         if (error == 0 && xattr_obj) {
1761                 error = zfs_zget(zfsvfs, xattr_obj, &xzp);
1762                 ASSERT0(error);
1763                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
1764                 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
1765         }
1766
1767         mutex_enter(&zp->z_lock);
1768         if ((acl_obj = zfs_external_acl(zp)) != 0 && may_delete_now)
1769                 dmu_tx_hold_free(tx, acl_obj, 0, DMU_OBJECT_END);
1770         mutex_exit(&zp->z_lock);
1771
1772         /* charge as an update -- would be nice not to charge at all */
1773         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
1774
1775         /*
1776          * Mark this transaction as typically resulting in a net free of space
1777          */
1778         dmu_tx_mark_netfree(tx);
1779
1780         error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
1781         if (error) {
1782                 zfs_dirent_unlock(dl);
1783                 if (error == ERESTART) {
1784                         waited = B_TRUE;
1785                         dmu_tx_wait(tx);
1786                         dmu_tx_abort(tx);
1787                         iput(ip);
1788                         if (xzp)
1789                                 iput(ZTOI(xzp));
1790                         goto top;
1791                 }
1792                 if (realnmp)
1793                         pn_free(realnmp);
1794                 dmu_tx_abort(tx);
1795                 iput(ip);
1796                 if (xzp)
1797                         iput(ZTOI(xzp));
1798                 ZFS_EXIT(zfsvfs);
1799                 return (error);
1800         }
1801
1802         /*
1803          * Remove the directory entry.
1804          */
1805         error = zfs_link_destroy(dl, zp, tx, zflg, &unlinked);
1806
1807         if (error) {
1808                 dmu_tx_commit(tx);
1809                 goto out;
1810         }
1811
1812         if (unlinked) {
1813                 /*
1814                  * Hold z_lock so that we can make sure that the ACL obj
1815                  * hasn't changed.  Could have been deleted due to
1816                  * zfs_sa_upgrade().
1817                  */
1818                 mutex_enter(&zp->z_lock);
1819                 (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs),
1820                     &xattr_obj_unlinked, sizeof (xattr_obj_unlinked));
1821                 delete_now = may_delete_now && !toobig &&
1822                     atomic_read(&ip->i_count) == 1 && !(zp->z_is_mapped) &&
1823                     xattr_obj == xattr_obj_unlinked && zfs_external_acl(zp) ==
1824                     acl_obj;
1825         }
1826
1827         if (delete_now) {
1828                 if (xattr_obj_unlinked) {
1829                         ASSERT3U(ZTOI(xzp)->i_nlink, ==, 2);
1830                         mutex_enter(&xzp->z_lock);
1831                         xzp->z_unlinked = 1;
1832                         clear_nlink(ZTOI(xzp));
1833                         links = 0;
1834                         error = sa_update(xzp->z_sa_hdl, SA_ZPL_LINKS(zfsvfs),
1835                             &links, sizeof (links), tx);
1836                         ASSERT3U(error,  ==,  0);
1837                         mutex_exit(&xzp->z_lock);
1838                         zfs_unlinked_add(xzp, tx);
1839
1840                         if (zp->z_is_sa)
1841                                 error = sa_remove(zp->z_sa_hdl,
1842                                     SA_ZPL_XATTR(zfsvfs), tx);
1843                         else
1844                                 error = sa_update(zp->z_sa_hdl,
1845                                     SA_ZPL_XATTR(zfsvfs), &null_xattr,
1846                                     sizeof (uint64_t), tx);
1847                         ASSERT0(error);
1848                 }
1849                 /*
1850                  * Add to the unlinked set because a new reference could be
1851                  * taken concurrently resulting in a deferred destruction.
1852                  */
1853                 zfs_unlinked_add(zp, tx);
1854                 mutex_exit(&zp->z_lock);
1855         } else if (unlinked) {
1856                 mutex_exit(&zp->z_lock);
1857                 zfs_unlinked_add(zp, tx);
1858         }
1859
1860         txtype = TX_REMOVE;
1861         if (flags & FIGNORECASE)
1862                 txtype |= TX_CI;
1863         zfs_log_remove(zilog, tx, txtype, dzp, name, obj);
1864
1865         dmu_tx_commit(tx);
1866 out:
1867         if (realnmp)
1868                 pn_free(realnmp);
1869
1870         zfs_dirent_unlock(dl);
1871         zfs_inode_update(dzp);
1872         zfs_inode_update(zp);
1873
1874         if (delete_now)
1875                 iput(ip);
1876         else
1877                 zfs_iput_async(ip);
1878
1879         if (xzp) {
1880                 zfs_inode_update(xzp);
1881                 zfs_iput_async(ZTOI(xzp));
1882         }
1883
1884         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
1885                 zil_commit(zilog, 0);
1886
1887         ZFS_EXIT(zfsvfs);
1888         return (error);
1889 }
1890
1891 /*
1892  * Create a new directory and insert it into dip using the name
1893  * provided.  Return a pointer to the inserted directory.
1894  *
1895  *      IN:     dip     - inode of directory to add subdir to.
1896  *              dirname - name of new directory.
1897  *              vap     - attributes of new directory.
1898  *              cr      - credentials of caller.
1899  *              vsecp   - ACL to be set
1900  *
1901  *      OUT:    ipp     - inode of created directory.
1902  *
1903  *      RETURN: 0 if success
1904  *              error code if failure
1905  *
1906  * Timestamps:
1907  *      dip - ctime|mtime updated
1908  *      ipp - ctime|mtime|atime updated
1909  */
1910 /*ARGSUSED*/
1911 int
1912 zfs_mkdir(struct inode *dip, char *dirname, vattr_t *vap, struct inode **ipp,
1913     cred_t *cr, int flags, vsecattr_t *vsecp)
1914 {
1915         znode_t         *zp, *dzp = ITOZ(dip);
1916         zfsvfs_t        *zfsvfs = ITOZSB(dip);
1917         zilog_t         *zilog;
1918         zfs_dirlock_t   *dl;
1919         uint64_t        txtype;
1920         dmu_tx_t        *tx;
1921         int             error;
1922         int             zf = ZNEW;
1923         uid_t           uid;
1924         gid_t           gid = crgetgid(cr);
1925         zfs_acl_ids_t   acl_ids;
1926         boolean_t       fuid_dirtied;
1927         boolean_t       waited = B_FALSE;
1928
1929         ASSERT(S_ISDIR(vap->va_mode));
1930
1931         /*
1932          * If we have an ephemeral id, ACL, or XVATTR then
1933          * make sure file system is at proper version
1934          */
1935
1936         uid = crgetuid(cr);
1937         if (zfsvfs->z_use_fuids == B_FALSE &&
1938             (vsecp || IS_EPHEMERAL(uid) || IS_EPHEMERAL(gid)))
1939                 return (SET_ERROR(EINVAL));
1940
1941         if (dirname == NULL)
1942                 return (SET_ERROR(EINVAL));
1943
1944         ZFS_ENTER(zfsvfs);
1945         ZFS_VERIFY_ZP(dzp);
1946         zilog = zfsvfs->z_log;
1947
1948         if (dzp->z_pflags & ZFS_XATTR) {
1949                 ZFS_EXIT(zfsvfs);
1950                 return (SET_ERROR(EINVAL));
1951         }
1952
1953         if (zfsvfs->z_utf8 && u8_validate(dirname,
1954             strlen(dirname), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
1955                 ZFS_EXIT(zfsvfs);
1956                 return (SET_ERROR(EILSEQ));
1957         }
1958         if (flags & FIGNORECASE)
1959                 zf |= ZCILOOK;
1960
1961         if (vap->va_mask & ATTR_XVATTR) {
1962                 if ((error = secpolicy_xvattr((xvattr_t *)vap,
1963                     crgetuid(cr), cr, vap->va_mode)) != 0) {
1964                         ZFS_EXIT(zfsvfs);
1965                         return (error);
1966                 }
1967         }
1968
1969         if ((error = zfs_acl_ids_create(dzp, 0, vap, cr,
1970             vsecp, &acl_ids)) != 0) {
1971                 ZFS_EXIT(zfsvfs);
1972                 return (error);
1973         }
1974         /*
1975          * First make sure the new directory doesn't exist.
1976          *
1977          * Existence is checked first to make sure we don't return
1978          * EACCES instead of EEXIST which can cause some applications
1979          * to fail.
1980          */
1981 top:
1982         *ipp = NULL;
1983
1984         if ((error = zfs_dirent_lock(&dl, dzp, dirname, &zp, zf,
1985             NULL, NULL))) {
1986                 zfs_acl_ids_free(&acl_ids);
1987                 ZFS_EXIT(zfsvfs);
1988                 return (error);
1989         }
1990
1991         if ((error = zfs_zaccess(dzp, ACE_ADD_SUBDIRECTORY, 0, B_FALSE, cr))) {
1992                 zfs_acl_ids_free(&acl_ids);
1993                 zfs_dirent_unlock(dl);
1994                 ZFS_EXIT(zfsvfs);
1995                 return (error);
1996         }
1997
1998         if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
1999                 zfs_acl_ids_free(&acl_ids);
2000                 zfs_dirent_unlock(dl);
2001                 ZFS_EXIT(zfsvfs);
2002                 return (SET_ERROR(EDQUOT));
2003         }
2004
2005         /*
2006          * Add a new entry to the directory.
2007          */
2008         tx = dmu_tx_create(zfsvfs->z_os);
2009         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, dirname);
2010         dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
2011         fuid_dirtied = zfsvfs->z_fuid_dirty;
2012         if (fuid_dirtied)
2013                 zfs_fuid_txhold(zfsvfs, tx);
2014         if (!zfsvfs->z_use_sa && acl_ids.z_aclp->z_acl_bytes > ZFS_ACE_SPACE) {
2015                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
2016                     acl_ids.z_aclp->z_acl_bytes);
2017         }
2018
2019         dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
2020             ZFS_SA_BASE_ATTR_SIZE);
2021
2022         error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
2023         if (error) {
2024                 zfs_dirent_unlock(dl);
2025                 if (error == ERESTART) {
2026                         waited = B_TRUE;
2027                         dmu_tx_wait(tx);
2028                         dmu_tx_abort(tx);
2029                         goto top;
2030                 }
2031                 zfs_acl_ids_free(&acl_ids);
2032                 dmu_tx_abort(tx);
2033                 ZFS_EXIT(zfsvfs);
2034                 return (error);
2035         }
2036
2037         /*
2038          * Create new node.
2039          */
2040         zfs_mknode(dzp, vap, tx, cr, 0, &zp, &acl_ids);
2041
2042         if (fuid_dirtied)
2043                 zfs_fuid_sync(zfsvfs, tx);
2044
2045         /*
2046          * Now put new name in parent dir.
2047          */
2048         (void) zfs_link_create(dl, zp, tx, ZNEW);
2049
2050         *ipp = ZTOI(zp);
2051
2052         txtype = zfs_log_create_txtype(Z_DIR, vsecp, vap);
2053         if (flags & FIGNORECASE)
2054                 txtype |= TX_CI;
2055         zfs_log_create(zilog, tx, txtype, dzp, zp, dirname, vsecp,
2056             acl_ids.z_fuidp, vap);
2057
2058         zfs_acl_ids_free(&acl_ids);
2059
2060         dmu_tx_commit(tx);
2061
2062         zfs_dirent_unlock(dl);
2063
2064         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
2065                 zil_commit(zilog, 0);
2066
2067         zfs_inode_update(dzp);
2068         zfs_inode_update(zp);
2069         ZFS_EXIT(zfsvfs);
2070         return (0);
2071 }
2072
2073 /*
2074  * Remove a directory subdir entry.  If the current working
2075  * directory is the same as the subdir to be removed, the
2076  * remove will fail.
2077  *
2078  *      IN:     dip     - inode of directory to remove from.
2079  *              name    - name of directory to be removed.
2080  *              cwd     - inode of current working directory.
2081  *              cr      - credentials of caller.
2082  *              flags   - case flags
2083  *
2084  *      RETURN: 0 on success, error code on failure.
2085  *
2086  * Timestamps:
2087  *      dip - ctime|mtime updated
2088  */
2089 /*ARGSUSED*/
2090 int
2091 zfs_rmdir(struct inode *dip, char *name, struct inode *cwd, cred_t *cr,
2092     int flags)
2093 {
2094         znode_t         *dzp = ITOZ(dip);
2095         znode_t         *zp;
2096         struct inode    *ip;
2097         zfsvfs_t        *zfsvfs = ITOZSB(dip);
2098         zilog_t         *zilog;
2099         zfs_dirlock_t   *dl;
2100         dmu_tx_t        *tx;
2101         int             error;
2102         int             zflg = ZEXISTS;
2103         boolean_t       waited = B_FALSE;
2104
2105         if (name == NULL)
2106                 return (SET_ERROR(EINVAL));
2107
2108         ZFS_ENTER(zfsvfs);
2109         ZFS_VERIFY_ZP(dzp);
2110         zilog = zfsvfs->z_log;
2111
2112         if (flags & FIGNORECASE)
2113                 zflg |= ZCILOOK;
2114 top:
2115         zp = NULL;
2116
2117         /*
2118          * Attempt to lock directory; fail if entry doesn't exist.
2119          */
2120         if ((error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg,
2121             NULL, NULL))) {
2122                 ZFS_EXIT(zfsvfs);
2123                 return (error);
2124         }
2125
2126         ip = ZTOI(zp);
2127
2128         if ((error = zfs_zaccess_delete(dzp, zp, cr))) {
2129                 goto out;
2130         }
2131
2132         if (!S_ISDIR(ip->i_mode)) {
2133                 error = SET_ERROR(ENOTDIR);
2134                 goto out;
2135         }
2136
2137         if (ip == cwd) {
2138                 error = SET_ERROR(EINVAL);
2139                 goto out;
2140         }
2141
2142         /*
2143          * Grab a lock on the directory to make sure that no one is
2144          * trying to add (or lookup) entries while we are removing it.
2145          */
2146         rw_enter(&zp->z_name_lock, RW_WRITER);
2147
2148         /*
2149          * Grab a lock on the parent pointer to make sure we play well
2150          * with the treewalk and directory rename code.
2151          */
2152         rw_enter(&zp->z_parent_lock, RW_WRITER);
2153
2154         tx = dmu_tx_create(zfsvfs->z_os);
2155         dmu_tx_hold_zap(tx, dzp->z_id, FALSE, name);
2156         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
2157         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
2158         zfs_sa_upgrade_txholds(tx, zp);
2159         zfs_sa_upgrade_txholds(tx, dzp);
2160         dmu_tx_mark_netfree(tx);
2161         error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
2162         if (error) {
2163                 rw_exit(&zp->z_parent_lock);
2164                 rw_exit(&zp->z_name_lock);
2165                 zfs_dirent_unlock(dl);
2166                 if (error == ERESTART) {
2167                         waited = B_TRUE;
2168                         dmu_tx_wait(tx);
2169                         dmu_tx_abort(tx);
2170                         iput(ip);
2171                         goto top;
2172                 }
2173                 dmu_tx_abort(tx);
2174                 iput(ip);
2175                 ZFS_EXIT(zfsvfs);
2176                 return (error);
2177         }
2178
2179         error = zfs_link_destroy(dl, zp, tx, zflg, NULL);
2180
2181         if (error == 0) {
2182                 uint64_t txtype = TX_RMDIR;
2183                 if (flags & FIGNORECASE)
2184                         txtype |= TX_CI;
2185                 zfs_log_remove(zilog, tx, txtype, dzp, name, ZFS_NO_OBJECT);
2186         }
2187
2188         dmu_tx_commit(tx);
2189
2190         rw_exit(&zp->z_parent_lock);
2191         rw_exit(&zp->z_name_lock);
2192 out:
2193         zfs_dirent_unlock(dl);
2194
2195         zfs_inode_update(dzp);
2196         zfs_inode_update(zp);
2197         iput(ip);
2198
2199         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
2200                 zil_commit(zilog, 0);
2201
2202         ZFS_EXIT(zfsvfs);
2203         return (error);
2204 }
2205
2206 /*
2207  * Read as many directory entries as will fit into the provided
2208  * dirent buffer from the given directory cursor position.
2209  *
2210  *      IN:     ip      - inode of directory to read.
2211  *              dirent  - buffer for directory entries.
2212  *
2213  *      OUT:    dirent  - filler buffer of directory entries.
2214  *
2215  *      RETURN: 0 if success
2216  *              error code if failure
2217  *
2218  * Timestamps:
2219  *      ip - atime updated
2220  *
2221  * Note that the low 4 bits of the cookie returned by zap is always zero.
2222  * This allows us to use the low range for "special" directory entries:
2223  * We use 0 for '.', and 1 for '..'.  If this is the root of the filesystem,
2224  * we use the offset 2 for the '.zfs' directory.
2225  */
2226 /* ARGSUSED */
2227 int
2228 zfs_readdir(struct inode *ip, struct dir_context *ctx, cred_t *cr)
2229 {
2230         znode_t         *zp = ITOZ(ip);
2231         zfsvfs_t        *zfsvfs = ITOZSB(ip);
2232         objset_t        *os;
2233         zap_cursor_t    zc;
2234         zap_attribute_t zap;
2235         int             error;
2236         uint8_t         prefetch;
2237         uint8_t         type;
2238         int             done = 0;
2239         uint64_t        parent;
2240         uint64_t        offset; /* must be unsigned; checks for < 1 */
2241
2242         ZFS_ENTER(zfsvfs);
2243         ZFS_VERIFY_ZP(zp);
2244
2245         if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_PARENT(zfsvfs),
2246             &parent, sizeof (parent))) != 0)
2247                 goto out;
2248
2249         /*
2250          * Quit if directory has been removed (posix)
2251          */
2252         if (zp->z_unlinked)
2253                 goto out;
2254
2255         error = 0;
2256         os = zfsvfs->z_os;
2257         offset = ctx->pos;
2258         prefetch = zp->z_zn_prefetch;
2259
2260         /*
2261          * Initialize the iterator cursor.
2262          */
2263         if (offset <= 3) {
2264                 /*
2265                  * Start iteration from the beginning of the directory.
2266                  */
2267                 zap_cursor_init(&zc, os, zp->z_id);
2268         } else {
2269                 /*
2270                  * The offset is a serialized cursor.
2271                  */
2272                 zap_cursor_init_serialized(&zc, os, zp->z_id, offset);
2273         }
2274
2275         /*
2276          * Transform to file-system independent format
2277          */
2278         while (!done) {
2279                 uint64_t objnum;
2280                 /*
2281                  * Special case `.', `..', and `.zfs'.
2282                  */
2283                 if (offset == 0) {
2284                         (void) strcpy(zap.za_name, ".");
2285                         zap.za_normalization_conflict = 0;
2286                         objnum = zp->z_id;
2287                         type = DT_DIR;
2288                 } else if (offset == 1) {
2289                         (void) strcpy(zap.za_name, "..");
2290                         zap.za_normalization_conflict = 0;
2291                         objnum = parent;
2292                         type = DT_DIR;
2293                 } else if (offset == 2 && zfs_show_ctldir(zp)) {
2294                         (void) strcpy(zap.za_name, ZFS_CTLDIR_NAME);
2295                         zap.za_normalization_conflict = 0;
2296                         objnum = ZFSCTL_INO_ROOT;
2297                         type = DT_DIR;
2298                 } else {
2299                         /*
2300                          * Grab next entry.
2301                          */
2302                         if ((error = zap_cursor_retrieve(&zc, &zap))) {
2303                                 if (error == ENOENT)
2304                                         break;
2305                                 else
2306                                         goto update;
2307                         }
2308
2309                         /*
2310                          * Allow multiple entries provided the first entry is
2311                          * the object id.  Non-zpl consumers may safely make
2312                          * use of the additional space.
2313                          *
2314                          * XXX: This should be a feature flag for compatibility
2315                          */
2316                         if (zap.za_integer_length != 8 ||
2317                             zap.za_num_integers == 0) {
2318                                 cmn_err(CE_WARN, "zap_readdir: bad directory "
2319                                     "entry, obj = %lld, offset = %lld, "
2320                                     "length = %d, num = %lld\n",
2321                                     (u_longlong_t)zp->z_id,
2322                                     (u_longlong_t)offset,
2323                                     zap.za_integer_length,
2324                                     (u_longlong_t)zap.za_num_integers);
2325                                 error = SET_ERROR(ENXIO);
2326                                 goto update;
2327                         }
2328
2329                         objnum = ZFS_DIRENT_OBJ(zap.za_first_integer);
2330                         type = ZFS_DIRENT_TYPE(zap.za_first_integer);
2331                 }
2332
2333                 done = !dir_emit(ctx, zap.za_name, strlen(zap.za_name),
2334                     objnum, type);
2335                 if (done)
2336                         break;
2337
2338                 /* Prefetch znode */
2339                 if (prefetch) {
2340                         dmu_prefetch(os, objnum, 0, 0, 0,
2341                             ZIO_PRIORITY_SYNC_READ);
2342                 }
2343
2344                 /*
2345                  * Move to the next entry, fill in the previous offset.
2346                  */
2347                 if (offset > 2 || (offset == 2 && !zfs_show_ctldir(zp))) {
2348                         zap_cursor_advance(&zc);
2349                         offset = zap_cursor_serialize(&zc);
2350                 } else {
2351                         offset += 1;
2352                 }
2353                 ctx->pos = offset;
2354         }
2355         zp->z_zn_prefetch = B_FALSE; /* a lookup will re-enable pre-fetching */
2356
2357 update:
2358         zap_cursor_fini(&zc);
2359         if (error == ENOENT)
2360                 error = 0;
2361 out:
2362         ZFS_EXIT(zfsvfs);
2363
2364         return (error);
2365 }
2366
2367 ulong_t zfs_fsync_sync_cnt = 4;
2368
2369 int
2370 zfs_fsync(struct inode *ip, int syncflag, cred_t *cr)
2371 {
2372         znode_t *zp = ITOZ(ip);
2373         zfsvfs_t *zfsvfs = ITOZSB(ip);
2374
2375         (void) tsd_set(zfs_fsyncer_key, (void *)zfs_fsync_sync_cnt);
2376
2377         if (zfsvfs->z_os->os_sync != ZFS_SYNC_DISABLED) {
2378                 ZFS_ENTER(zfsvfs);
2379                 ZFS_VERIFY_ZP(zp);
2380                 zil_commit(zfsvfs->z_log, zp->z_id);
2381                 ZFS_EXIT(zfsvfs);
2382         }
2383         tsd_set(zfs_fsyncer_key, NULL);
2384
2385         return (0);
2386 }
2387
2388
2389 /*
2390  * Get the requested file attributes and place them in the provided
2391  * vattr structure.
2392  *
2393  *      IN:     ip      - inode of file.
2394  *              vap     - va_mask identifies requested attributes.
2395  *                        If ATTR_XVATTR set, then optional attrs are requested
2396  *              flags   - ATTR_NOACLCHECK (CIFS server context)
2397  *              cr      - credentials of caller.
2398  *
2399  *      OUT:    vap     - attribute values.
2400  *
2401  *      RETURN: 0 (always succeeds)
2402  */
2403 /* ARGSUSED */
2404 int
2405 zfs_getattr(struct inode *ip, vattr_t *vap, int flags, cred_t *cr)
2406 {
2407         znode_t *zp = ITOZ(ip);
2408         zfsvfs_t *zfsvfs = ITOZSB(ip);
2409         int     error = 0;
2410         uint64_t links;
2411         uint64_t atime[2], mtime[2], ctime[2];
2412         xvattr_t *xvap = (xvattr_t *)vap;       /* vap may be an xvattr_t * */
2413         xoptattr_t *xoap = NULL;
2414         boolean_t skipaclchk = (flags & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
2415         sa_bulk_attr_t bulk[3];
2416         int count = 0;
2417
2418         ZFS_ENTER(zfsvfs);
2419         ZFS_VERIFY_ZP(zp);
2420
2421         zfs_fuid_map_ids(zp, cr, &vap->va_uid, &vap->va_gid);
2422
2423         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ATIME(zfsvfs), NULL, &atime, 16);
2424         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
2425         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL, &ctime, 16);
2426
2427         if ((error = sa_bulk_lookup(zp->z_sa_hdl, bulk, count)) != 0) {
2428                 ZFS_EXIT(zfsvfs);
2429                 return (error);
2430         }
2431
2432         /*
2433          * If ACL is trivial don't bother looking for ACE_READ_ATTRIBUTES.
2434          * Also, if we are the owner don't bother, since owner should
2435          * always be allowed to read basic attributes of file.
2436          */
2437         if (!(zp->z_pflags & ZFS_ACL_TRIVIAL) &&
2438             (vap->va_uid != crgetuid(cr))) {
2439                 if ((error = zfs_zaccess(zp, ACE_READ_ATTRIBUTES, 0,
2440                     skipaclchk, cr))) {
2441                         ZFS_EXIT(zfsvfs);
2442                         return (error);
2443                 }
2444         }
2445
2446         /*
2447          * Return all attributes.  It's cheaper to provide the answer
2448          * than to determine whether we were asked the question.
2449          */
2450
2451         mutex_enter(&zp->z_lock);
2452         vap->va_type = vn_mode_to_vtype(zp->z_mode);
2453         vap->va_mode = zp->z_mode;
2454         vap->va_fsid = ZTOI(zp)->i_sb->s_dev;
2455         vap->va_nodeid = zp->z_id;
2456         if ((zp->z_id == zfsvfs->z_root) && zfs_show_ctldir(zp))
2457                 links = ZTOI(zp)->i_nlink + 1;
2458         else
2459                 links = ZTOI(zp)->i_nlink;
2460         vap->va_nlink = MIN(links, ZFS_LINK_MAX);
2461         vap->va_size = i_size_read(ip);
2462         vap->va_rdev = ip->i_rdev;
2463         vap->va_seq = ip->i_generation;
2464
2465         /*
2466          * Add in any requested optional attributes and the create time.
2467          * Also set the corresponding bits in the returned attribute bitmap.
2468          */
2469         if ((xoap = xva_getxoptattr(xvap)) != NULL && zfsvfs->z_use_fuids) {
2470                 if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE)) {
2471                         xoap->xoa_archive =
2472                             ((zp->z_pflags & ZFS_ARCHIVE) != 0);
2473                         XVA_SET_RTN(xvap, XAT_ARCHIVE);
2474                 }
2475
2476                 if (XVA_ISSET_REQ(xvap, XAT_READONLY)) {
2477                         xoap->xoa_readonly =
2478                             ((zp->z_pflags & ZFS_READONLY) != 0);
2479                         XVA_SET_RTN(xvap, XAT_READONLY);
2480                 }
2481
2482                 if (XVA_ISSET_REQ(xvap, XAT_SYSTEM)) {
2483                         xoap->xoa_system =
2484                             ((zp->z_pflags & ZFS_SYSTEM) != 0);
2485                         XVA_SET_RTN(xvap, XAT_SYSTEM);
2486                 }
2487
2488                 if (XVA_ISSET_REQ(xvap, XAT_HIDDEN)) {
2489                         xoap->xoa_hidden =
2490                             ((zp->z_pflags & ZFS_HIDDEN) != 0);
2491                         XVA_SET_RTN(xvap, XAT_HIDDEN);
2492                 }
2493
2494                 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
2495                         xoap->xoa_nounlink =
2496                             ((zp->z_pflags & ZFS_NOUNLINK) != 0);
2497                         XVA_SET_RTN(xvap, XAT_NOUNLINK);
2498                 }
2499
2500                 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
2501                         xoap->xoa_immutable =
2502                             ((zp->z_pflags & ZFS_IMMUTABLE) != 0);
2503                         XVA_SET_RTN(xvap, XAT_IMMUTABLE);
2504                 }
2505
2506                 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
2507                         xoap->xoa_appendonly =
2508                             ((zp->z_pflags & ZFS_APPENDONLY) != 0);
2509                         XVA_SET_RTN(xvap, XAT_APPENDONLY);
2510                 }
2511
2512                 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
2513                         xoap->xoa_nodump =
2514                             ((zp->z_pflags & ZFS_NODUMP) != 0);
2515                         XVA_SET_RTN(xvap, XAT_NODUMP);
2516                 }
2517
2518                 if (XVA_ISSET_REQ(xvap, XAT_OPAQUE)) {
2519                         xoap->xoa_opaque =
2520                             ((zp->z_pflags & ZFS_OPAQUE) != 0);
2521                         XVA_SET_RTN(xvap, XAT_OPAQUE);
2522                 }
2523
2524                 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
2525                         xoap->xoa_av_quarantined =
2526                             ((zp->z_pflags & ZFS_AV_QUARANTINED) != 0);
2527                         XVA_SET_RTN(xvap, XAT_AV_QUARANTINED);
2528                 }
2529
2530                 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
2531                         xoap->xoa_av_modified =
2532                             ((zp->z_pflags & ZFS_AV_MODIFIED) != 0);
2533                         XVA_SET_RTN(xvap, XAT_AV_MODIFIED);
2534                 }
2535
2536                 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP) &&
2537                     S_ISREG(ip->i_mode)) {
2538                         zfs_sa_get_scanstamp(zp, xvap);
2539                 }
2540
2541                 if (XVA_ISSET_REQ(xvap, XAT_CREATETIME)) {
2542                         uint64_t times[2];
2543
2544                         (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_CRTIME(zfsvfs),
2545                             times, sizeof (times));
2546                         ZFS_TIME_DECODE(&xoap->xoa_createtime, times);
2547                         XVA_SET_RTN(xvap, XAT_CREATETIME);
2548                 }
2549
2550                 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
2551                         xoap->xoa_reparse = ((zp->z_pflags & ZFS_REPARSE) != 0);
2552                         XVA_SET_RTN(xvap, XAT_REPARSE);
2553                 }
2554                 if (XVA_ISSET_REQ(xvap, XAT_GEN)) {
2555                         xoap->xoa_generation = ip->i_generation;
2556                         XVA_SET_RTN(xvap, XAT_GEN);
2557                 }
2558
2559                 if (XVA_ISSET_REQ(xvap, XAT_OFFLINE)) {
2560                         xoap->xoa_offline =
2561                             ((zp->z_pflags & ZFS_OFFLINE) != 0);
2562                         XVA_SET_RTN(xvap, XAT_OFFLINE);
2563                 }
2564
2565                 if (XVA_ISSET_REQ(xvap, XAT_SPARSE)) {
2566                         xoap->xoa_sparse =
2567                             ((zp->z_pflags & ZFS_SPARSE) != 0);
2568                         XVA_SET_RTN(xvap, XAT_SPARSE);
2569                 }
2570         }
2571
2572         ZFS_TIME_DECODE(&vap->va_atime, atime);
2573         ZFS_TIME_DECODE(&vap->va_mtime, mtime);
2574         ZFS_TIME_DECODE(&vap->va_ctime, ctime);
2575
2576         mutex_exit(&zp->z_lock);
2577
2578         sa_object_size(zp->z_sa_hdl, &vap->va_blksize, &vap->va_nblocks);
2579
2580         if (zp->z_blksz == 0) {
2581                 /*
2582                  * Block size hasn't been set; suggest maximal I/O transfers.
2583                  */
2584                 vap->va_blksize = zfsvfs->z_max_blksz;
2585         }
2586
2587         ZFS_EXIT(zfsvfs);
2588         return (0);
2589 }
2590
2591 /*
2592  * Get the basic file attributes and place them in the provided kstat
2593  * structure.  The inode is assumed to be the authoritative source
2594  * for most of the attributes.  However, the znode currently has the
2595  * authoritative atime, blksize, and block count.
2596  *
2597  *      IN:     ip      - inode of file.
2598  *
2599  *      OUT:    sp      - kstat values.
2600  *
2601  *      RETURN: 0 (always succeeds)
2602  */
2603 /* ARGSUSED */
2604 int
2605 zfs_getattr_fast(struct inode *ip, struct kstat *sp)
2606 {
2607         znode_t *zp = ITOZ(ip);
2608         zfsvfs_t *zfsvfs = ITOZSB(ip);
2609         uint32_t blksize;
2610         u_longlong_t nblocks;
2611
2612         ZFS_ENTER(zfsvfs);
2613         ZFS_VERIFY_ZP(zp);
2614
2615         mutex_enter(&zp->z_lock);
2616
2617         generic_fillattr(ip, sp);
2618
2619         sa_object_size(zp->z_sa_hdl, &blksize, &nblocks);
2620         sp->blksize = blksize;
2621         sp->blocks = nblocks;
2622
2623         if (unlikely(zp->z_blksz == 0)) {
2624                 /*
2625                  * Block size hasn't been set; suggest maximal I/O transfers.
2626                  */
2627                 sp->blksize = zfsvfs->z_max_blksz;
2628         }
2629
2630         mutex_exit(&zp->z_lock);
2631
2632         /*
2633          * Required to prevent NFS client from detecting different inode
2634          * numbers of snapshot root dentry before and after snapshot mount.
2635          */
2636         if (zfsvfs->z_issnap) {
2637                 if (ip->i_sb->s_root->d_inode == ip)
2638                         sp->ino = ZFSCTL_INO_SNAPDIRS -
2639                             dmu_objset_id(zfsvfs->z_os);
2640         }
2641
2642         ZFS_EXIT(zfsvfs);
2643
2644         return (0);
2645 }
2646
2647 /*
2648  * Set the file attributes to the values contained in the
2649  * vattr structure.
2650  *
2651  *      IN:     ip      - inode of file to be modified.
2652  *              vap     - new attribute values.
2653  *                        If ATTR_XVATTR set, then optional attrs are being set
2654  *              flags   - ATTR_UTIME set if non-default time values provided.
2655  *                      - ATTR_NOACLCHECK (CIFS context only).
2656  *              cr      - credentials of caller.
2657  *
2658  *      RETURN: 0 if success
2659  *              error code if failure
2660  *
2661  * Timestamps:
2662  *      ip - ctime updated, mtime updated if size changed.
2663  */
2664 /* ARGSUSED */
2665 int
2666 zfs_setattr(struct inode *ip, vattr_t *vap, int flags, cred_t *cr)
2667 {
2668         znode_t         *zp = ITOZ(ip);
2669         zfsvfs_t        *zfsvfs = ITOZSB(ip);
2670         zilog_t         *zilog;
2671         dmu_tx_t        *tx;
2672         vattr_t         oldva;
2673         xvattr_t        *tmpxvattr;
2674         uint_t          mask = vap->va_mask;
2675         uint_t          saved_mask = 0;
2676         int             trim_mask = 0;
2677         uint64_t        new_mode;
2678         uint64_t        new_kuid = 0, new_kgid = 0, new_uid, new_gid;
2679         uint64_t        xattr_obj;
2680         uint64_t        mtime[2], ctime[2], atime[2];
2681         znode_t         *attrzp;
2682         int             need_policy = FALSE;
2683         int             err, err2;
2684         zfs_fuid_info_t *fuidp = NULL;
2685         xvattr_t *xvap = (xvattr_t *)vap;       /* vap may be an xvattr_t * */
2686         xoptattr_t      *xoap;
2687         zfs_acl_t       *aclp;
2688         boolean_t skipaclchk = (flags & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
2689         boolean_t       fuid_dirtied = B_FALSE;
2690         sa_bulk_attr_t  *bulk, *xattr_bulk;
2691         int             count = 0, xattr_count = 0;
2692
2693         if (mask == 0)
2694                 return (0);
2695
2696         ZFS_ENTER(zfsvfs);
2697         ZFS_VERIFY_ZP(zp);
2698
2699         zilog = zfsvfs->z_log;
2700
2701         /*
2702          * Make sure that if we have ephemeral uid/gid or xvattr specified
2703          * that file system is at proper version level
2704          */
2705
2706         if (zfsvfs->z_use_fuids == B_FALSE &&
2707             (((mask & ATTR_UID) && IS_EPHEMERAL(vap->va_uid)) ||
2708             ((mask & ATTR_GID) && IS_EPHEMERAL(vap->va_gid)) ||
2709             (mask & ATTR_XVATTR))) {
2710                 ZFS_EXIT(zfsvfs);
2711                 return (SET_ERROR(EINVAL));
2712         }
2713
2714         if (mask & ATTR_SIZE && S_ISDIR(ip->i_mode)) {
2715                 ZFS_EXIT(zfsvfs);
2716                 return (SET_ERROR(EISDIR));
2717         }
2718
2719         if (mask & ATTR_SIZE && !S_ISREG(ip->i_mode) && !S_ISFIFO(ip->i_mode)) {
2720                 ZFS_EXIT(zfsvfs);
2721                 return (SET_ERROR(EINVAL));
2722         }
2723
2724         /*
2725          * If this is an xvattr_t, then get a pointer to the structure of
2726          * optional attributes.  If this is NULL, then we have a vattr_t.
2727          */
2728         xoap = xva_getxoptattr(xvap);
2729
2730         tmpxvattr = kmem_alloc(sizeof (xvattr_t), KM_SLEEP);
2731         xva_init(tmpxvattr);
2732
2733         bulk = kmem_alloc(sizeof (sa_bulk_attr_t) * 7, KM_SLEEP);
2734         xattr_bulk = kmem_alloc(sizeof (sa_bulk_attr_t) * 7, KM_SLEEP);
2735
2736         /*
2737          * Immutable files can only alter immutable bit and atime
2738          */
2739         if ((zp->z_pflags & ZFS_IMMUTABLE) &&
2740             ((mask & (ATTR_SIZE|ATTR_UID|ATTR_GID|ATTR_MTIME|ATTR_MODE)) ||
2741             ((mask & ATTR_XVATTR) && XVA_ISSET_REQ(xvap, XAT_CREATETIME)))) {
2742                 err = SET_ERROR(EPERM);
2743                 goto out3;
2744         }
2745
2746         if ((mask & ATTR_SIZE) && (zp->z_pflags & ZFS_READONLY)) {
2747                 err = SET_ERROR(EPERM);
2748                 goto out3;
2749         }
2750
2751         /*
2752          * Verify timestamps doesn't overflow 32 bits.
2753          * ZFS can handle large timestamps, but 32bit syscalls can't
2754          * handle times greater than 2039.  This check should be removed
2755          * once large timestamps are fully supported.
2756          */
2757         if (mask & (ATTR_ATIME | ATTR_MTIME)) {
2758                 if (((mask & ATTR_ATIME) &&
2759                     TIMESPEC_OVERFLOW(&vap->va_atime)) ||
2760                     ((mask & ATTR_MTIME) &&
2761                     TIMESPEC_OVERFLOW(&vap->va_mtime))) {
2762                         err = SET_ERROR(EOVERFLOW);
2763                         goto out3;
2764                 }
2765         }
2766
2767 top:
2768         attrzp = NULL;
2769         aclp = NULL;
2770
2771         /* Can this be moved to before the top label? */
2772         if (zfs_is_readonly(zfsvfs)) {
2773                 err = SET_ERROR(EROFS);
2774                 goto out3;
2775         }
2776
2777         /*
2778          * First validate permissions
2779          */
2780
2781         if (mask & ATTR_SIZE) {
2782                 err = zfs_zaccess(zp, ACE_WRITE_DATA, 0, skipaclchk, cr);
2783                 if (err)
2784                         goto out3;
2785
2786                 /*
2787                  * XXX - Note, we are not providing any open
2788                  * mode flags here (like FNDELAY), so we may
2789                  * block if there are locks present... this
2790                  * should be addressed in openat().
2791                  */
2792                 /* XXX - would it be OK to generate a log record here? */
2793                 err = zfs_freesp(zp, vap->va_size, 0, 0, FALSE);
2794                 if (err)
2795                         goto out3;
2796         }
2797
2798         if (mask & (ATTR_ATIME|ATTR_MTIME) ||
2799             ((mask & ATTR_XVATTR) && (XVA_ISSET_REQ(xvap, XAT_HIDDEN) ||
2800             XVA_ISSET_REQ(xvap, XAT_READONLY) ||
2801             XVA_ISSET_REQ(xvap, XAT_ARCHIVE) ||
2802             XVA_ISSET_REQ(xvap, XAT_OFFLINE) ||
2803             XVA_ISSET_REQ(xvap, XAT_SPARSE) ||
2804             XVA_ISSET_REQ(xvap, XAT_CREATETIME) ||
2805             XVA_ISSET_REQ(xvap, XAT_SYSTEM)))) {
2806                 need_policy = zfs_zaccess(zp, ACE_WRITE_ATTRIBUTES, 0,
2807                     skipaclchk, cr);
2808         }
2809
2810         if (mask & (ATTR_UID|ATTR_GID)) {
2811                 int     idmask = (mask & (ATTR_UID|ATTR_GID));
2812                 int     take_owner;
2813                 int     take_group;
2814
2815                 /*
2816                  * NOTE: even if a new mode is being set,
2817                  * we may clear S_ISUID/S_ISGID bits.
2818                  */
2819
2820                 if (!(mask & ATTR_MODE))
2821                         vap->va_mode = zp->z_mode;
2822
2823                 /*
2824                  * Take ownership or chgrp to group we are a member of
2825                  */
2826
2827                 take_owner = (mask & ATTR_UID) && (vap->va_uid == crgetuid(cr));
2828                 take_group = (mask & ATTR_GID) &&
2829                     zfs_groupmember(zfsvfs, vap->va_gid, cr);
2830
2831                 /*
2832                  * If both ATTR_UID and ATTR_GID are set then take_owner and
2833                  * take_group must both be set in order to allow taking
2834                  * ownership.
2835                  *
2836                  * Otherwise, send the check through secpolicy_vnode_setattr()
2837                  *
2838                  */
2839
2840                 if (((idmask == (ATTR_UID|ATTR_GID)) &&
2841                     take_owner && take_group) ||
2842                     ((idmask == ATTR_UID) && take_owner) ||
2843                     ((idmask == ATTR_GID) && take_group)) {
2844                         if (zfs_zaccess(zp, ACE_WRITE_OWNER, 0,
2845                             skipaclchk, cr) == 0) {
2846                                 /*
2847                                  * Remove setuid/setgid for non-privileged users
2848                                  */
2849                                 (void) secpolicy_setid_clear(vap, cr);
2850                                 trim_mask = (mask & (ATTR_UID|ATTR_GID));
2851                         } else {
2852                                 need_policy =  TRUE;
2853                         }
2854                 } else {
2855                         need_policy =  TRUE;
2856                 }
2857         }
2858
2859         mutex_enter(&zp->z_lock);
2860         oldva.va_mode = zp->z_mode;
2861         zfs_fuid_map_ids(zp, cr, &oldva.va_uid, &oldva.va_gid);
2862         if (mask & ATTR_XVATTR) {
2863                 /*
2864                  * Update xvattr mask to include only those attributes
2865                  * that are actually changing.
2866                  *
2867                  * the bits will be restored prior to actually setting
2868                  * the attributes so the caller thinks they were set.
2869                  */
2870                 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
2871                         if (xoap->xoa_appendonly !=
2872                             ((zp->z_pflags & ZFS_APPENDONLY) != 0)) {
2873                                 need_policy = TRUE;
2874                         } else {
2875                                 XVA_CLR_REQ(xvap, XAT_APPENDONLY);
2876                                 XVA_SET_REQ(tmpxvattr, XAT_APPENDONLY);
2877                         }
2878                 }
2879
2880                 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
2881                         if (xoap->xoa_nounlink !=
2882                             ((zp->z_pflags & ZFS_NOUNLINK) != 0)) {
2883                                 need_policy = TRUE;
2884                         } else {
2885                                 XVA_CLR_REQ(xvap, XAT_NOUNLINK);
2886                                 XVA_SET_REQ(tmpxvattr, XAT_NOUNLINK);
2887                         }
2888                 }
2889
2890                 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
2891                         if (xoap->xoa_immutable !=
2892                             ((zp->z_pflags & ZFS_IMMUTABLE) != 0)) {
2893                                 need_policy = TRUE;
2894                         } else {
2895                                 XVA_CLR_REQ(xvap, XAT_IMMUTABLE);
2896                                 XVA_SET_REQ(tmpxvattr, XAT_IMMUTABLE);
2897                         }
2898                 }
2899
2900                 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
2901                         if (xoap->xoa_nodump !=
2902                             ((zp->z_pflags & ZFS_NODUMP) != 0)) {
2903                                 need_policy = TRUE;
2904                         } else {
2905                                 XVA_CLR_REQ(xvap, XAT_NODUMP);
2906                                 XVA_SET_REQ(tmpxvattr, XAT_NODUMP);
2907                         }
2908                 }
2909
2910                 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
2911                         if (xoap->xoa_av_modified !=
2912                             ((zp->z_pflags & ZFS_AV_MODIFIED) != 0)) {
2913                                 need_policy = TRUE;
2914                         } else {
2915                                 XVA_CLR_REQ(xvap, XAT_AV_MODIFIED);
2916                                 XVA_SET_REQ(tmpxvattr, XAT_AV_MODIFIED);
2917                         }
2918                 }
2919
2920                 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
2921                         if ((!S_ISREG(ip->i_mode) &&
2922                             xoap->xoa_av_quarantined) ||
2923                             xoap->xoa_av_quarantined !=
2924                             ((zp->z_pflags & ZFS_AV_QUARANTINED) != 0)) {
2925                                 need_policy = TRUE;
2926                         } else {
2927                                 XVA_CLR_REQ(xvap, XAT_AV_QUARANTINED);
2928                                 XVA_SET_REQ(tmpxvattr, XAT_AV_QUARANTINED);
2929                         }
2930                 }
2931
2932                 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
2933                         mutex_exit(&zp->z_lock);
2934                         err = SET_ERROR(EPERM);
2935                         goto out3;
2936                 }
2937
2938                 if (need_policy == FALSE &&
2939                     (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP) ||
2940                     XVA_ISSET_REQ(xvap, XAT_OPAQUE))) {
2941                         need_policy = TRUE;
2942                 }
2943         }
2944
2945         mutex_exit(&zp->z_lock);
2946
2947         if (mask & ATTR_MODE) {
2948                 if (zfs_zaccess(zp, ACE_WRITE_ACL, 0, skipaclchk, cr) == 0) {
2949                         err = secpolicy_setid_setsticky_clear(ip, vap,
2950                             &oldva, cr);
2951                         if (err)
2952                                 goto out3;
2953
2954                         trim_mask |= ATTR_MODE;
2955                 } else {
2956                         need_policy = TRUE;
2957                 }
2958         }
2959
2960         if (need_policy) {
2961                 /*
2962                  * If trim_mask is set then take ownership
2963                  * has been granted or write_acl is present and user
2964                  * has the ability to modify mode.  In that case remove
2965                  * UID|GID and or MODE from mask so that
2966                  * secpolicy_vnode_setattr() doesn't revoke it.
2967                  */
2968
2969                 if (trim_mask) {
2970                         saved_mask = vap->va_mask;
2971                         vap->va_mask &= ~trim_mask;
2972                 }
2973                 err = secpolicy_vnode_setattr(cr, ip, vap, &oldva, flags,
2974                     (int (*)(void *, int, cred_t *))zfs_zaccess_unix, zp);
2975                 if (err)
2976                         goto out3;
2977
2978                 if (trim_mask)
2979                         vap->va_mask |= saved_mask;
2980         }
2981
2982         /*
2983          * secpolicy_vnode_setattr, or take ownership may have
2984          * changed va_mask
2985          */
2986         mask = vap->va_mask;
2987
2988         if ((mask & (ATTR_UID | ATTR_GID))) {
2989                 err = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs),
2990                     &xattr_obj, sizeof (xattr_obj));
2991
2992                 if (err == 0 && xattr_obj) {
2993                         err = zfs_zget(ZTOZSB(zp), xattr_obj, &attrzp);
2994                         if (err)
2995                                 goto out2;
2996                 }
2997                 if (mask & ATTR_UID) {
2998                         new_kuid = zfs_fuid_create(zfsvfs,
2999                             (uint64_t)vap->va_uid, cr, ZFS_OWNER, &fuidp);
3000                         if (new_kuid != KUID_TO_SUID(ZTOI(zp)->i_uid) &&
3001                             zfs_fuid_overquota(zfsvfs, B_FALSE, new_kuid)) {
3002                                 if (attrzp)
3003                                         iput(ZTOI(attrzp));
3004                                 err = SET_ERROR(EDQUOT);
3005                                 goto out2;
3006                         }
3007                 }
3008
3009                 if (mask & ATTR_GID) {
3010                         new_kgid = zfs_fuid_create(zfsvfs,
3011                             (uint64_t)vap->va_gid, cr, ZFS_GROUP, &fuidp);
3012                         if (new_kgid != KGID_TO_SGID(ZTOI(zp)->i_gid) &&
3013                             zfs_fuid_overquota(zfsvfs, B_TRUE, new_kgid)) {
3014                                 if (attrzp)
3015                                         iput(ZTOI(attrzp));
3016                                 err = SET_ERROR(EDQUOT);
3017                                 goto out2;
3018                         }
3019                 }
3020         }
3021         tx = dmu_tx_create(zfsvfs->z_os);
3022
3023         if (mask & ATTR_MODE) {
3024                 uint64_t pmode = zp->z_mode;
3025                 uint64_t acl_obj;
3026                 new_mode = (pmode & S_IFMT) | (vap->va_mode & ~S_IFMT);
3027
3028                 zfs_acl_chmod_setattr(zp, &aclp, new_mode);
3029
3030                 mutex_enter(&zp->z_lock);
3031                 if (!zp->z_is_sa && ((acl_obj = zfs_external_acl(zp)) != 0)) {
3032                         /*
3033                          * Are we upgrading ACL from old V0 format
3034                          * to V1 format?
3035                          */
3036                         if (zfsvfs->z_version >= ZPL_VERSION_FUID &&
3037                             zfs_znode_acl_version(zp) ==
3038                             ZFS_ACL_VERSION_INITIAL) {
3039                                 dmu_tx_hold_free(tx, acl_obj, 0,
3040                                     DMU_OBJECT_END);
3041                                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
3042                                     0, aclp->z_acl_bytes);
3043                         } else {
3044                                 dmu_tx_hold_write(tx, acl_obj, 0,
3045                                     aclp->z_acl_bytes);
3046                         }
3047                 } else if (!zp->z_is_sa && aclp->z_acl_bytes > ZFS_ACE_SPACE) {
3048                         dmu_tx_hold_write(tx, DMU_NEW_OBJECT,
3049                             0, aclp->z_acl_bytes);
3050                 }
3051                 mutex_exit(&zp->z_lock);
3052                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
3053         } else {
3054                 if ((mask & ATTR_XVATTR) &&
3055                     XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
3056                         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
3057                 else
3058                         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
3059         }
3060
3061         if (attrzp) {
3062                 dmu_tx_hold_sa(tx, attrzp->z_sa_hdl, B_FALSE);
3063         }
3064
3065         fuid_dirtied = zfsvfs->z_fuid_dirty;
3066         if (fuid_dirtied)
3067                 zfs_fuid_txhold(zfsvfs, tx);
3068
3069         zfs_sa_upgrade_txholds(tx, zp);
3070
3071         err = dmu_tx_assign(tx, TXG_WAIT);
3072         if (err)
3073                 goto out;
3074
3075         count = 0;
3076         /*
3077          * Set each attribute requested.
3078          * We group settings according to the locks they need to acquire.
3079          *
3080          * Note: you cannot set ctime directly, although it will be
3081          * updated as a side-effect of calling this function.
3082          */
3083
3084
3085         if (mask & (ATTR_UID|ATTR_GID|ATTR_MODE))
3086                 mutex_enter(&zp->z_acl_lock);
3087         mutex_enter(&zp->z_lock);
3088
3089         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
3090             &zp->z_pflags, sizeof (zp->z_pflags));
3091
3092         if (attrzp) {
3093                 if (mask & (ATTR_UID|ATTR_GID|ATTR_MODE))
3094                         mutex_enter(&attrzp->z_acl_lock);
3095                 mutex_enter(&attrzp->z_lock);
3096                 SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3097                     SA_ZPL_FLAGS(zfsvfs), NULL, &attrzp->z_pflags,
3098                     sizeof (attrzp->z_pflags));
3099         }
3100
3101         if (mask & (ATTR_UID|ATTR_GID)) {
3102
3103                 if (mask & ATTR_UID) {
3104                         ZTOI(zp)->i_uid = SUID_TO_KUID(new_kuid);
3105                         new_uid = zfs_uid_read(ZTOI(zp));
3106                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_UID(zfsvfs), NULL,
3107                             &new_uid, sizeof (new_uid));
3108                         if (attrzp) {
3109                                 SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3110                                     SA_ZPL_UID(zfsvfs), NULL, &new_uid,
3111                                     sizeof (new_uid));
3112                                 ZTOI(attrzp)->i_uid = SUID_TO_KUID(new_uid);
3113                         }
3114                 }
3115
3116                 if (mask & ATTR_GID) {
3117                         ZTOI(zp)->i_gid = SGID_TO_KGID(new_kgid);
3118                         new_gid = zfs_gid_read(ZTOI(zp));
3119                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GID(zfsvfs),
3120                             NULL, &new_gid, sizeof (new_gid));
3121                         if (attrzp) {
3122                                 SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3123                                     SA_ZPL_GID(zfsvfs), NULL, &new_gid,
3124                                     sizeof (new_gid));
3125                                 ZTOI(attrzp)->i_gid = SGID_TO_KGID(new_kgid);
3126                         }
3127                 }
3128                 if (!(mask & ATTR_MODE)) {
3129                         SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zfsvfs),
3130                             NULL, &new_mode, sizeof (new_mode));
3131                         new_mode = zp->z_mode;
3132                 }
3133                 err = zfs_acl_chown_setattr(zp);
3134                 ASSERT(err == 0);
3135                 if (attrzp) {
3136                         err = zfs_acl_chown_setattr(attrzp);
3137                         ASSERT(err == 0);
3138                 }
3139         }
3140
3141         if (mask & ATTR_MODE) {
3142                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zfsvfs), NULL,
3143                     &new_mode, sizeof (new_mode));
3144                 zp->z_mode = ZTOI(zp)->i_mode = new_mode;
3145                 ASSERT3P(aclp, !=, NULL);
3146                 err = zfs_aclset_common(zp, aclp, cr, tx);
3147                 ASSERT0(err);
3148                 if (zp->z_acl_cached)
3149                         zfs_acl_free(zp->z_acl_cached);
3150                 zp->z_acl_cached = aclp;
3151                 aclp = NULL;
3152         }
3153
3154         if ((mask & ATTR_ATIME) || zp->z_atime_dirty) {
3155                 zp->z_atime_dirty = 0;
3156                 ZFS_TIME_ENCODE(&ip->i_atime, atime);
3157                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ATIME(zfsvfs), NULL,
3158                     &atime, sizeof (atime));
3159         }
3160
3161         if (mask & (ATTR_MTIME | ATTR_SIZE)) {
3162                 ZFS_TIME_ENCODE(&vap->va_mtime, mtime);
3163                 ZTOI(zp)->i_mtime = timespec_trunc(vap->va_mtime,
3164                     ZTOI(zp)->i_sb->s_time_gran);
3165
3166                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL,
3167                     mtime, sizeof (mtime));
3168         }
3169
3170         if (mask & (ATTR_CTIME | ATTR_SIZE)) {
3171                 ZFS_TIME_ENCODE(&vap->va_ctime, ctime);
3172                 ZTOI(zp)->i_ctime = timespec_trunc(vap->va_ctime,
3173                     ZTOI(zp)->i_sb->s_time_gran);
3174                 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
3175                     ctime, sizeof (ctime));
3176         }
3177
3178         if (attrzp && mask) {
3179                 SA_ADD_BULK_ATTR(xattr_bulk, xattr_count,
3180                     SA_ZPL_CTIME(zfsvfs), NULL, &ctime,
3181                     sizeof (ctime));
3182         }
3183
3184         /*
3185          * Do this after setting timestamps to prevent timestamp
3186          * update from toggling bit
3187          */
3188
3189         if (xoap && (mask & ATTR_XVATTR)) {
3190
3191                 /*
3192                  * restore trimmed off masks
3193                  * so that return masks can be set for caller.
3194                  */
3195
3196                 if (XVA_ISSET_REQ(tmpxvattr, XAT_APPENDONLY)) {
3197                         XVA_SET_REQ(xvap, XAT_APPENDONLY);
3198                 }
3199                 if (XVA_ISSET_REQ(tmpxvattr, XAT_NOUNLINK)) {
3200                         XVA_SET_REQ(xvap, XAT_NOUNLINK);
3201                 }
3202                 if (XVA_ISSET_REQ(tmpxvattr, XAT_IMMUTABLE)) {
3203                         XVA_SET_REQ(xvap, XAT_IMMUTABLE);
3204                 }
3205                 if (XVA_ISSET_REQ(tmpxvattr, XAT_NODUMP)) {
3206                         XVA_SET_REQ(xvap, XAT_NODUMP);
3207                 }
3208                 if (XVA_ISSET_REQ(tmpxvattr, XAT_AV_MODIFIED)) {
3209                         XVA_SET_REQ(xvap, XAT_AV_MODIFIED);
3210                 }
3211                 if (XVA_ISSET_REQ(tmpxvattr, XAT_AV_QUARANTINED)) {
3212                         XVA_SET_REQ(xvap, XAT_AV_QUARANTINED);
3213                 }
3214
3215                 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
3216                         ASSERT(S_ISREG(ip->i_mode));
3217
3218                 zfs_xvattr_set(zp, xvap, tx);
3219         }
3220
3221         if (fuid_dirtied)
3222                 zfs_fuid_sync(zfsvfs, tx);
3223
3224         if (mask != 0)
3225                 zfs_log_setattr(zilog, tx, TX_SETATTR, zp, vap, mask, fuidp);
3226
3227         mutex_exit(&zp->z_lock);
3228         if (mask & (ATTR_UID|ATTR_GID|ATTR_MODE))
3229                 mutex_exit(&zp->z_acl_lock);
3230
3231         if (attrzp) {
3232                 if (mask & (ATTR_UID|ATTR_GID|ATTR_MODE))
3233                         mutex_exit(&attrzp->z_acl_lock);
3234                 mutex_exit(&attrzp->z_lock);
3235         }
3236 out:
3237         if (err == 0 && attrzp) {
3238                 err2 = sa_bulk_update(attrzp->z_sa_hdl, xattr_bulk,
3239                     xattr_count, tx);
3240                 ASSERT(err2 == 0);
3241         }
3242
3243         if (aclp)
3244                 zfs_acl_free(aclp);
3245
3246         if (fuidp) {
3247                 zfs_fuid_info_free(fuidp);
3248                 fuidp = NULL;
3249         }
3250
3251         if (err) {
3252                 dmu_tx_abort(tx);
3253                 if (attrzp)
3254                         iput(ZTOI(attrzp));
3255                 if (err == ERESTART)
3256                         goto top;
3257         } else {
3258                 err2 = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
3259                 dmu_tx_commit(tx);
3260                 if (attrzp)
3261                         iput(ZTOI(attrzp));
3262                 zfs_inode_update(zp);
3263         }
3264
3265 out2:
3266         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
3267                 zil_commit(zilog, 0);
3268
3269 out3:
3270         kmem_free(xattr_bulk, sizeof (sa_bulk_attr_t) * 7);
3271         kmem_free(bulk, sizeof (sa_bulk_attr_t) * 7);
3272         kmem_free(tmpxvattr, sizeof (xvattr_t));
3273         ZFS_EXIT(zfsvfs);
3274         return (err);
3275 }
3276
3277 typedef struct zfs_zlock {
3278         krwlock_t       *zl_rwlock;     /* lock we acquired */
3279         znode_t         *zl_znode;      /* znode we held */
3280         struct zfs_zlock *zl_next;      /* next in list */
3281 } zfs_zlock_t;
3282
3283 /*
3284  * Drop locks and release vnodes that were held by zfs_rename_lock().
3285  */
3286 static void
3287 zfs_rename_unlock(zfs_zlock_t **zlpp)
3288 {
3289         zfs_zlock_t *zl;
3290
3291         while ((zl = *zlpp) != NULL) {
3292                 if (zl->zl_znode != NULL)
3293                         zfs_iput_async(ZTOI(zl->zl_znode));
3294                 rw_exit(zl->zl_rwlock);
3295                 *zlpp = zl->zl_next;
3296                 kmem_free(zl, sizeof (*zl));
3297         }
3298 }
3299
3300 /*
3301  * Search back through the directory tree, using the ".." entries.
3302  * Lock each directory in the chain to prevent concurrent renames.
3303  * Fail any attempt to move a directory into one of its own descendants.
3304  * XXX - z_parent_lock can overlap with map or grow locks
3305  */
3306 static int
3307 zfs_rename_lock(znode_t *szp, znode_t *tdzp, znode_t *sdzp, zfs_zlock_t **zlpp)
3308 {
3309         zfs_zlock_t     *zl;
3310         znode_t         *zp = tdzp;
3311         uint64_t        rootid = ZTOZSB(zp)->z_root;
3312         uint64_t        oidp = zp->z_id;
3313         krwlock_t       *rwlp = &szp->z_parent_lock;
3314         krw_t           rw = RW_WRITER;
3315
3316         /*
3317          * First pass write-locks szp and compares to zp->z_id.
3318          * Later passes read-lock zp and compare to zp->z_parent.
3319          */
3320         do {
3321                 if (!rw_tryenter(rwlp, rw)) {
3322                         /*
3323                          * Another thread is renaming in this path.
3324                          * Note that if we are a WRITER, we don't have any
3325                          * parent_locks held yet.
3326                          */
3327                         if (rw == RW_READER && zp->z_id > szp->z_id) {
3328                                 /*
3329                                  * Drop our locks and restart
3330                                  */
3331                                 zfs_rename_unlock(&zl);
3332                                 *zlpp = NULL;
3333                                 zp = tdzp;
3334                                 oidp = zp->z_id;
3335                                 rwlp = &szp->z_parent_lock;
3336                                 rw = RW_WRITER;
3337                                 continue;
3338                         } else {
3339                                 /*
3340                                  * Wait for other thread to drop its locks
3341                                  */
3342                                 rw_enter(rwlp, rw);
3343                         }
3344                 }
3345
3346                 zl = kmem_alloc(sizeof (*zl), KM_SLEEP);
3347                 zl->zl_rwlock = rwlp;
3348                 zl->zl_znode = NULL;
3349                 zl->zl_next = *zlpp;
3350                 *zlpp = zl;
3351
3352                 if (oidp == szp->z_id)          /* We're a descendant of szp */
3353                         return (SET_ERROR(EINVAL));
3354
3355                 if (oidp == rootid)             /* We've hit the top */
3356                         return (0);
3357
3358                 if (rw == RW_READER) {          /* i.e. not the first pass */
3359                         int error = zfs_zget(ZTOZSB(zp), oidp, &zp);
3360                         if (error)
3361                                 return (error);
3362                         zl->zl_znode = zp;
3363                 }
3364                 (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_PARENT(ZTOZSB(zp)),
3365                     &oidp, sizeof (oidp));
3366                 rwlp = &zp->z_parent_lock;
3367                 rw = RW_READER;
3368
3369         } while (zp->z_id != sdzp->z_id);
3370
3371         return (0);
3372 }
3373
3374 /*
3375  * Move an entry from the provided source directory to the target
3376  * directory.  Change the entry name as indicated.
3377  *
3378  *      IN:     sdip    - Source directory containing the "old entry".
3379  *              snm     - Old entry name.
3380  *              tdip    - Target directory to contain the "new entry".
3381  *              tnm     - New entry name.
3382  *              cr      - credentials of caller.
3383  *              flags   - case flags
3384  *
3385  *      RETURN: 0 on success, error code on failure.
3386  *
3387  * Timestamps:
3388  *      sdip,tdip - ctime|mtime updated
3389  */
3390 /*ARGSUSED*/
3391 int
3392 zfs_rename(struct inode *sdip, char *snm, struct inode *tdip, char *tnm,
3393     cred_t *cr, int flags)
3394 {
3395         znode_t         *tdzp, *szp, *tzp;
3396         znode_t         *sdzp = ITOZ(sdip);
3397         zfsvfs_t        *zfsvfs = ITOZSB(sdip);
3398         zilog_t         *zilog;
3399         zfs_dirlock_t   *sdl, *tdl;
3400         dmu_tx_t        *tx;
3401         zfs_zlock_t     *zl;
3402         int             cmp, serr, terr;
3403         int             error = 0;
3404         int             zflg = 0;
3405         boolean_t       waited = B_FALSE;
3406
3407         if (snm == NULL || tnm == NULL)
3408                 return (SET_ERROR(EINVAL));
3409
3410         ZFS_ENTER(zfsvfs);
3411         ZFS_VERIFY_ZP(sdzp);
3412         zilog = zfsvfs->z_log;
3413
3414         tdzp = ITOZ(tdip);
3415         ZFS_VERIFY_ZP(tdzp);
3416
3417         /*
3418          * We check i_sb because snapshots and the ctldir must have different
3419          * super blocks.
3420          */
3421         if (tdip->i_sb != sdip->i_sb || zfsctl_is_node(tdip)) {
3422                 ZFS_EXIT(zfsvfs);
3423                 return (SET_ERROR(EXDEV));
3424         }
3425
3426         if (zfsvfs->z_utf8 && u8_validate(tnm,
3427             strlen(tnm), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
3428                 ZFS_EXIT(zfsvfs);
3429                 return (SET_ERROR(EILSEQ));
3430         }
3431
3432         if (flags & FIGNORECASE)
3433                 zflg |= ZCILOOK;
3434
3435 top:
3436         szp = NULL;
3437         tzp = NULL;
3438         zl = NULL;
3439
3440         /*
3441          * This is to prevent the creation of links into attribute space
3442          * by renaming a linked file into/outof an attribute directory.
3443          * See the comment in zfs_link() for why this is considered bad.
3444          */
3445         if ((tdzp->z_pflags & ZFS_XATTR) != (sdzp->z_pflags & ZFS_XATTR)) {
3446                 ZFS_EXIT(zfsvfs);
3447                 return (SET_ERROR(EINVAL));
3448         }
3449
3450         /*
3451          * Lock source and target directory entries.  To prevent deadlock,
3452          * a lock ordering must be defined.  We lock the directory with
3453          * the smallest object id first, or if it's a tie, the one with
3454          * the lexically first name.
3455          */
3456         if (sdzp->z_id < tdzp->z_id) {
3457                 cmp = -1;
3458         } else if (sdzp->z_id > tdzp->z_id) {
3459                 cmp = 1;
3460         } else {
3461                 /*
3462                  * First compare the two name arguments without
3463                  * considering any case folding.
3464                  */
3465                 int nofold = (zfsvfs->z_norm & ~U8_TEXTPREP_TOUPPER);
3466
3467                 cmp = u8_strcmp(snm, tnm, 0, nofold, U8_UNICODE_LATEST, &error);
3468                 ASSERT(error == 0 || !zfsvfs->z_utf8);
3469                 if (cmp == 0) {
3470                         /*
3471                          * POSIX: "If the old argument and the new argument
3472                          * both refer to links to the same existing file,
3473                          * the rename() function shall return successfully
3474                          * and perform no other action."
3475                          */
3476                         ZFS_EXIT(zfsvfs);
3477                         return (0);
3478                 }
3479                 /*
3480                  * If the file system is case-folding, then we may
3481                  * have some more checking to do.  A case-folding file
3482                  * system is either supporting mixed case sensitivity
3483                  * access or is completely case-insensitive.  Note
3484                  * that the file system is always case preserving.
3485                  *
3486                  * In mixed sensitivity mode case sensitive behavior
3487                  * is the default.  FIGNORECASE must be used to
3488                  * explicitly request case insensitive behavior.
3489                  *
3490                  * If the source and target names provided differ only
3491                  * by case (e.g., a request to rename 'tim' to 'Tim'),
3492                  * we will treat this as a special case in the
3493                  * case-insensitive mode: as long as the source name
3494                  * is an exact match, we will allow this to proceed as
3495                  * a name-change request.
3496                  */
3497                 if ((zfsvfs->z_case == ZFS_CASE_INSENSITIVE ||
3498                     (zfsvfs->z_case == ZFS_CASE_MIXED &&
3499                     flags & FIGNORECASE)) &&
3500                     u8_strcmp(snm, tnm, 0, zfsvfs->z_norm, U8_UNICODE_LATEST,
3501                     &error) == 0) {
3502                         /*
3503                          * case preserving rename request, require exact
3504                          * name matches
3505                          */
3506                         zflg |= ZCIEXACT;
3507                         zflg &= ~ZCILOOK;
3508                 }
3509         }
3510
3511         /*
3512          * If the source and destination directories are the same, we should
3513          * grab the z_name_lock of that directory only once.
3514          */
3515         if (sdzp == tdzp) {
3516                 zflg |= ZHAVELOCK;
3517                 rw_enter(&sdzp->z_name_lock, RW_READER);
3518         }
3519
3520         if (cmp < 0) {
3521                 serr = zfs_dirent_lock(&sdl, sdzp, snm, &szp,
3522                     ZEXISTS | zflg, NULL, NULL);
3523                 terr = zfs_dirent_lock(&tdl,
3524                     tdzp, tnm, &tzp, ZRENAMING | zflg, NULL, NULL);
3525         } else {
3526                 terr = zfs_dirent_lock(&tdl,
3527                     tdzp, tnm, &tzp, zflg, NULL, NULL);
3528                 serr = zfs_dirent_lock(&sdl,
3529                     sdzp, snm, &szp, ZEXISTS | ZRENAMING | zflg,
3530                     NULL, NULL);
3531         }
3532
3533         if (serr) {
3534                 /*
3535                  * Source entry invalid or not there.
3536                  */
3537                 if (!terr) {
3538                         zfs_dirent_unlock(tdl);
3539                         if (tzp)
3540                                 iput(ZTOI(tzp));
3541                 }
3542
3543                 if (sdzp == tdzp)
3544                         rw_exit(&sdzp->z_name_lock);
3545
3546                 if (strcmp(snm, "..") == 0)
3547                         serr = EINVAL;
3548                 ZFS_EXIT(zfsvfs);
3549                 return (serr);
3550         }
3551         if (terr) {
3552                 zfs_dirent_unlock(sdl);
3553                 iput(ZTOI(szp));
3554
3555                 if (sdzp == tdzp)
3556                         rw_exit(&sdzp->z_name_lock);
3557
3558                 if (strcmp(tnm, "..") == 0)
3559                         terr = EINVAL;
3560                 ZFS_EXIT(zfsvfs);
3561                 return (terr);
3562         }
3563
3564         /*
3565          * Must have write access at the source to remove the old entry
3566          * and write access at the target to create the new entry.
3567          * Note that if target and source are the same, this can be
3568          * done in a single check.
3569          */
3570
3571         if ((error = zfs_zaccess_rename(sdzp, szp, tdzp, tzp, cr)))
3572                 goto out;
3573
3574         if (S_ISDIR(ZTOI(szp)->i_mode)) {
3575                 /*
3576                  * Check to make sure rename is valid.
3577                  * Can't do a move like this: /usr/a/b to /usr/a/b/c/d
3578                  */
3579                 if ((error = zfs_rename_lock(szp, tdzp, sdzp, &zl)))
3580                         goto out;
3581         }
3582
3583         /*
3584          * Does target exist?
3585          */
3586         if (tzp) {
3587                 /*
3588                  * Source and target must be the same type.
3589                  */
3590                 if (S_ISDIR(ZTOI(szp)->i_mode)) {
3591                         if (!S_ISDIR(ZTOI(tzp)->i_mode)) {
3592                                 error = SET_ERROR(ENOTDIR);
3593                                 goto out;
3594                         }
3595                 } else {
3596                         if (S_ISDIR(ZTOI(tzp)->i_mode)) {
3597                                 error = SET_ERROR(EISDIR);
3598                                 goto out;
3599                         }
3600                 }
3601                 /*
3602                  * POSIX dictates that when the source and target
3603                  * entries refer to the same file object, rename
3604                  * must do nothing and exit without error.
3605                  */
3606                 if (szp->z_id == tzp->z_id) {
3607                         error = 0;
3608                         goto out;
3609                 }
3610         }
3611
3612         tx = dmu_tx_create(zfsvfs->z_os);
3613         dmu_tx_hold_sa(tx, szp->z_sa_hdl, B_FALSE);
3614         dmu_tx_hold_sa(tx, sdzp->z_sa_hdl, B_FALSE);
3615         dmu_tx_hold_zap(tx, sdzp->z_id, FALSE, snm);
3616         dmu_tx_hold_zap(tx, tdzp->z_id, TRUE, tnm);
3617         if (sdzp != tdzp) {
3618                 dmu_tx_hold_sa(tx, tdzp->z_sa_hdl, B_FALSE);
3619                 zfs_sa_upgrade_txholds(tx, tdzp);
3620         }
3621         if (tzp) {
3622                 dmu_tx_hold_sa(tx, tzp->z_sa_hdl, B_FALSE);
3623                 zfs_sa_upgrade_txholds(tx, tzp);
3624         }
3625
3626         zfs_sa_upgrade_txholds(tx, szp);
3627         dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
3628         error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
3629         if (error) {
3630                 if (zl != NULL)
3631                         zfs_rename_unlock(&zl);
3632                 zfs_dirent_unlock(sdl);
3633                 zfs_dirent_unlock(tdl);
3634
3635                 if (sdzp == tdzp)
3636                         rw_exit(&sdzp->z_name_lock);
3637
3638                 if (error == ERESTART) {
3639                         waited = B_TRUE;
3640                         dmu_tx_wait(tx);
3641                         dmu_tx_abort(tx);
3642                         iput(ZTOI(szp));
3643                         if (tzp)
3644                                 iput(ZTOI(tzp));
3645                         goto top;
3646                 }
3647                 dmu_tx_abort(tx);
3648                 iput(ZTOI(szp));
3649                 if (tzp)
3650                         iput(ZTOI(tzp));
3651                 ZFS_EXIT(zfsvfs);
3652                 return (error);
3653         }
3654
3655         if (tzp)        /* Attempt to remove the existing target */
3656                 error = zfs_link_destroy(tdl, tzp, tx, zflg, NULL);
3657
3658         if (error == 0) {
3659                 error = zfs_link_create(tdl, szp, tx, ZRENAMING);
3660                 if (error == 0) {
3661                         szp->z_pflags |= ZFS_AV_MODIFIED;
3662
3663                         error = sa_update(szp->z_sa_hdl, SA_ZPL_FLAGS(zfsvfs),
3664                             (void *)&szp->z_pflags, sizeof (uint64_t), tx);
3665                         ASSERT0(error);
3666
3667                         error = zfs_link_destroy(sdl, szp, tx, ZRENAMING, NULL);
3668                         if (error == 0) {
3669                                 zfs_log_rename(zilog, tx, TX_RENAME |
3670                                     (flags & FIGNORECASE ? TX_CI : 0), sdzp,
3671                                     sdl->dl_name, tdzp, tdl->dl_name, szp);
3672                         } else {
3673                                 /*
3674                                  * At this point, we have successfully created
3675                                  * the target name, but have failed to remove
3676                                  * the source name.  Since the create was done
3677                                  * with the ZRENAMING flag, there are
3678                                  * complications; for one, the link count is
3679                                  * wrong.  The easiest way to deal with this
3680                                  * is to remove the newly created target, and
3681                                  * return the original error.  This must
3682                                  * succeed; fortunately, it is very unlikely to
3683                                  * fail, since we just created it.
3684                                  */
3685                                 VERIFY3U(zfs_link_destroy(tdl, szp, tx,
3686                                     ZRENAMING, NULL), ==, 0);
3687                         }
3688                 }
3689         }
3690
3691         dmu_tx_commit(tx);
3692 out:
3693         if (zl != NULL)
3694                 zfs_rename_unlock(&zl);
3695
3696         zfs_dirent_unlock(sdl);
3697         zfs_dirent_unlock(tdl);
3698
3699         zfs_inode_update(sdzp);
3700         if (sdzp == tdzp)
3701                 rw_exit(&sdzp->z_name_lock);
3702
3703         if (sdzp != tdzp)
3704                 zfs_inode_update(tdzp);
3705
3706         zfs_inode_update(szp);
3707         iput(ZTOI(szp));
3708         if (tzp) {
3709                 zfs_inode_update(tzp);
3710                 iput(ZTOI(tzp));
3711         }
3712
3713         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
3714                 zil_commit(zilog, 0);
3715
3716         ZFS_EXIT(zfsvfs);
3717         return (error);
3718 }
3719
3720 /*
3721  * Insert the indicated symbolic reference entry into the directory.
3722  *
3723  *      IN:     dip     - Directory to contain new symbolic link.
3724  *              link    - Name for new symlink entry.
3725  *              vap     - Attributes of new entry.
3726  *              target  - Target path of new symlink.
3727  *
3728  *              cr      - credentials of caller.
3729  *              flags   - case flags
3730  *
3731  *      RETURN: 0 on success, error code on failure.
3732  *
3733  * Timestamps:
3734  *      dip - ctime|mtime updated
3735  */
3736 /*ARGSUSED*/
3737 int
3738 zfs_symlink(struct inode *dip, char *name, vattr_t *vap, char *link,
3739     struct inode **ipp, cred_t *cr, int flags)
3740 {
3741         znode_t         *zp, *dzp = ITOZ(dip);
3742         zfs_dirlock_t   *dl;
3743         dmu_tx_t        *tx;
3744         zfsvfs_t        *zfsvfs = ITOZSB(dip);
3745         zilog_t         *zilog;
3746         uint64_t        len = strlen(link);
3747         int             error;
3748         int             zflg = ZNEW;
3749         zfs_acl_ids_t   acl_ids;
3750         boolean_t       fuid_dirtied;
3751         uint64_t        txtype = TX_SYMLINK;
3752         boolean_t       waited = B_FALSE;
3753
3754         ASSERT(S_ISLNK(vap->va_mode));
3755
3756         if (name == NULL)
3757                 return (SET_ERROR(EINVAL));
3758
3759         ZFS_ENTER(zfsvfs);
3760         ZFS_VERIFY_ZP(dzp);
3761         zilog = zfsvfs->z_log;
3762
3763         if (zfsvfs->z_utf8 && u8_validate(name, strlen(name),
3764             NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
3765                 ZFS_EXIT(zfsvfs);
3766                 return (SET_ERROR(EILSEQ));
3767         }
3768         if (flags & FIGNORECASE)
3769                 zflg |= ZCILOOK;
3770
3771         if (len > MAXPATHLEN) {
3772                 ZFS_EXIT(zfsvfs);
3773                 return (SET_ERROR(ENAMETOOLONG));
3774         }
3775
3776         if ((error = zfs_acl_ids_create(dzp, 0,
3777             vap, cr, NULL, &acl_ids)) != 0) {
3778                 ZFS_EXIT(zfsvfs);
3779                 return (error);
3780         }
3781 top:
3782         *ipp = NULL;
3783
3784         /*
3785          * Attempt to lock directory; fail if entry already exists.
3786          */
3787         error = zfs_dirent_lock(&dl, dzp, name, &zp, zflg, NULL, NULL);
3788         if (error) {
3789                 zfs_acl_ids_free(&acl_ids);
3790                 ZFS_EXIT(zfsvfs);
3791                 return (error);
3792         }
3793
3794         if ((error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr))) {
3795                 zfs_acl_ids_free(&acl_ids);
3796                 zfs_dirent_unlock(dl);
3797                 ZFS_EXIT(zfsvfs);
3798                 return (error);
3799         }
3800
3801         if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
3802                 zfs_acl_ids_free(&acl_ids);
3803                 zfs_dirent_unlock(dl);
3804                 ZFS_EXIT(zfsvfs);
3805                 return (SET_ERROR(EDQUOT));
3806         }
3807         tx = dmu_tx_create(zfsvfs->z_os);
3808         fuid_dirtied = zfsvfs->z_fuid_dirty;
3809         dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, MAX(1, len));
3810         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
3811         dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
3812             ZFS_SA_BASE_ATTR_SIZE + len);
3813         dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
3814         if (!zfsvfs->z_use_sa && acl_ids.z_aclp->z_acl_bytes > ZFS_ACE_SPACE) {
3815                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0,
3816                     acl_ids.z_aclp->z_acl_bytes);
3817         }
3818         if (fuid_dirtied)
3819                 zfs_fuid_txhold(zfsvfs, tx);
3820         error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
3821         if (error) {
3822                 zfs_dirent_unlock(dl);
3823                 if (error == ERESTART) {
3824                         waited = B_TRUE;
3825                         dmu_tx_wait(tx);
3826                         dmu_tx_abort(tx);
3827                         goto top;
3828                 }
3829                 zfs_acl_ids_free(&acl_ids);
3830                 dmu_tx_abort(tx);
3831                 ZFS_EXIT(zfsvfs);
3832                 return (error);
3833         }
3834
3835         /*
3836          * Create a new object for the symlink.
3837          * for version 4 ZPL datsets the symlink will be an SA attribute
3838          */
3839         zfs_mknode(dzp, vap, tx, cr, 0, &zp, &acl_ids);
3840
3841         if (fuid_dirtied)
3842                 zfs_fuid_sync(zfsvfs, tx);
3843
3844         mutex_enter(&zp->z_lock);
3845         if (zp->z_is_sa)
3846                 error = sa_update(zp->z_sa_hdl, SA_ZPL_SYMLINK(zfsvfs),
3847                     link, len, tx);
3848         else
3849                 zfs_sa_symlink(zp, link, len, tx);
3850         mutex_exit(&zp->z_lock);
3851
3852         zp->z_size = len;
3853         (void) sa_update(zp->z_sa_hdl, SA_ZPL_SIZE(zfsvfs),
3854             &zp->z_size, sizeof (zp->z_size), tx);
3855         /*
3856          * Insert the new object into the directory.
3857          */
3858         (void) zfs_link_create(dl, zp, tx, ZNEW);
3859
3860         if (flags & FIGNORECASE)
3861                 txtype |= TX_CI;
3862         zfs_log_symlink(zilog, tx, txtype, dzp, zp, name, link);
3863
3864         zfs_inode_update(dzp);
3865         zfs_inode_update(zp);
3866
3867         zfs_acl_ids_free(&acl_ids);
3868
3869         dmu_tx_commit(tx);
3870
3871         zfs_dirent_unlock(dl);
3872
3873         *ipp = ZTOI(zp);
3874
3875         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
3876                 zil_commit(zilog, 0);
3877
3878         ZFS_EXIT(zfsvfs);
3879         return (error);
3880 }
3881
3882 /*
3883  * Return, in the buffer contained in the provided uio structure,
3884  * the symbolic path referred to by ip.
3885  *
3886  *      IN:     ip      - inode of symbolic link
3887  *              uio     - structure to contain the link path.
3888  *              cr      - credentials of caller.
3889  *
3890  *      RETURN: 0 if success
3891  *              error code if failure
3892  *
3893  * Timestamps:
3894  *      ip - atime updated
3895  */
3896 /* ARGSUSED */
3897 int
3898 zfs_readlink(struct inode *ip, uio_t *uio, cred_t *cr)
3899 {
3900         znode_t         *zp = ITOZ(ip);
3901         zfsvfs_t        *zfsvfs = ITOZSB(ip);
3902         int             error;
3903
3904         ZFS_ENTER(zfsvfs);
3905         ZFS_VERIFY_ZP(zp);
3906
3907         mutex_enter(&zp->z_lock);
3908         if (zp->z_is_sa)
3909                 error = sa_lookup_uio(zp->z_sa_hdl,
3910                     SA_ZPL_SYMLINK(zfsvfs), uio);
3911         else
3912                 error = zfs_sa_readlink(zp, uio);
3913         mutex_exit(&zp->z_lock);
3914
3915         ZFS_EXIT(zfsvfs);
3916         return (error);
3917 }
3918
3919 /*
3920  * Insert a new entry into directory tdip referencing sip.
3921  *
3922  *      IN:     tdip    - Directory to contain new entry.
3923  *              sip     - inode of new entry.
3924  *              name    - name of new entry.
3925  *              cr      - credentials of caller.
3926  *
3927  *      RETURN: 0 if success
3928  *              error code if failure
3929  *
3930  * Timestamps:
3931  *      tdip - ctime|mtime updated
3932  *       sip - ctime updated
3933  */
3934 /* ARGSUSED */
3935 int
3936 zfs_link(struct inode *tdip, struct inode *sip, char *name, cred_t *cr,
3937     int flags)
3938 {
3939         znode_t         *dzp = ITOZ(tdip);
3940         znode_t         *tzp, *szp;
3941         zfsvfs_t        *zfsvfs = ITOZSB(tdip);
3942         zilog_t         *zilog;
3943         zfs_dirlock_t   *dl;
3944         dmu_tx_t        *tx;
3945         int             error;
3946         int             zf = ZNEW;
3947         uint64_t        parent;
3948         uid_t           owner;
3949         boolean_t       waited = B_FALSE;
3950         boolean_t       is_tmpfile = 0;
3951         uint64_t        txg;
3952 #ifdef HAVE_TMPFILE
3953         is_tmpfile = (sip->i_nlink == 0 && (sip->i_state & I_LINKABLE));
3954 #endif
3955         ASSERT(S_ISDIR(tdip->i_mode));
3956
3957         if (name == NULL)
3958                 return (SET_ERROR(EINVAL));
3959
3960         ZFS_ENTER(zfsvfs);
3961         ZFS_VERIFY_ZP(dzp);
3962         zilog = zfsvfs->z_log;
3963
3964         /*
3965          * POSIX dictates that we return EPERM here.
3966          * Better choices include ENOTSUP or EISDIR.
3967          */
3968         if (S_ISDIR(sip->i_mode)) {
3969                 ZFS_EXIT(zfsvfs);
3970                 return (SET_ERROR(EPERM));
3971         }
3972
3973         szp = ITOZ(sip);
3974         ZFS_VERIFY_ZP(szp);
3975
3976         /*
3977          * We check i_sb because snapshots and the ctldir must have different
3978          * super blocks.
3979          */
3980         if (sip->i_sb != tdip->i_sb || zfsctl_is_node(sip)) {
3981                 ZFS_EXIT(zfsvfs);
3982                 return (SET_ERROR(EXDEV));
3983         }
3984
3985         /* Prevent links to .zfs/shares files */
3986
3987         if ((error = sa_lookup(szp->z_sa_hdl, SA_ZPL_PARENT(zfsvfs),
3988             &parent, sizeof (uint64_t))) != 0) {
3989                 ZFS_EXIT(zfsvfs);
3990                 return (error);
3991         }
3992         if (parent == zfsvfs->z_shares_dir) {
3993                 ZFS_EXIT(zfsvfs);
3994                 return (SET_ERROR(EPERM));
3995         }
3996
3997         if (zfsvfs->z_utf8 && u8_validate(name,
3998             strlen(name), NULL, U8_VALIDATE_ENTIRE, &error) < 0) {
3999                 ZFS_EXIT(zfsvfs);
4000                 return (SET_ERROR(EILSEQ));
4001         }
4002         if (flags & FIGNORECASE)
4003                 zf |= ZCILOOK;
4004
4005         /*
4006          * We do not support links between attributes and non-attributes
4007          * because of the potential security risk of creating links
4008          * into "normal" file space in order to circumvent restrictions
4009          * imposed in attribute space.
4010          */
4011         if ((szp->z_pflags & ZFS_XATTR) != (dzp->z_pflags & ZFS_XATTR)) {
4012                 ZFS_EXIT(zfsvfs);
4013                 return (SET_ERROR(EINVAL));
4014         }
4015
4016         owner = zfs_fuid_map_id(zfsvfs, KUID_TO_SUID(sip->i_uid),
4017             cr, ZFS_OWNER);
4018         if (owner != crgetuid(cr) && secpolicy_basic_link(cr) != 0) {
4019                 ZFS_EXIT(zfsvfs);
4020                 return (SET_ERROR(EPERM));
4021         }
4022
4023         if ((error = zfs_zaccess(dzp, ACE_ADD_FILE, 0, B_FALSE, cr))) {
4024                 ZFS_EXIT(zfsvfs);
4025                 return (error);
4026         }
4027
4028 top:
4029         /*
4030          * Attempt to lock directory; fail if entry already exists.
4031          */
4032         error = zfs_dirent_lock(&dl, dzp, name, &tzp, zf, NULL, NULL);
4033         if (error) {
4034                 ZFS_EXIT(zfsvfs);
4035                 return (error);
4036         }
4037
4038         tx = dmu_tx_create(zfsvfs->z_os);
4039         dmu_tx_hold_sa(tx, szp->z_sa_hdl, B_FALSE);
4040         dmu_tx_hold_zap(tx, dzp->z_id, TRUE, name);
4041         if (is_tmpfile)
4042                 dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
4043
4044         zfs_sa_upgrade_txholds(tx, szp);
4045         zfs_sa_upgrade_txholds(tx, dzp);
4046         error = dmu_tx_assign(tx, waited ? TXG_WAITED : TXG_NOWAIT);
4047         if (error) {
4048                 zfs_dirent_unlock(dl);
4049                 if (error == ERESTART) {
4050                         waited = B_TRUE;
4051                         dmu_tx_wait(tx);
4052                         dmu_tx_abort(tx);
4053                         goto top;
4054                 }
4055                 dmu_tx_abort(tx);
4056                 ZFS_EXIT(zfsvfs);
4057                 return (error);
4058         }
4059         /* unmark z_unlinked so zfs_link_create will not reject */
4060         if (is_tmpfile)
4061                 szp->z_unlinked = 0;
4062         error = zfs_link_create(dl, szp, tx, 0);
4063
4064         if (error == 0) {
4065                 uint64_t txtype = TX_LINK;
4066                 /*
4067                  * tmpfile is created to be in z_unlinkedobj, so remove it.
4068                  * Also, we don't log in ZIL, be cause all previous file
4069                  * operation on the tmpfile are ignored by ZIL. Instead we
4070                  * always wait for txg to sync to make sure all previous
4071                  * operation are sync safe.
4072                  */
4073                 if (is_tmpfile) {
4074                         VERIFY(zap_remove_int(zfsvfs->z_os,
4075                             zfsvfs->z_unlinkedobj, szp->z_id, tx) == 0);
4076                 } else {
4077                         if (flags & FIGNORECASE)
4078                                 txtype |= TX_CI;
4079                         zfs_log_link(zilog, tx, txtype, dzp, szp, name);
4080                 }
4081         } else if (is_tmpfile) {
4082                 /* restore z_unlinked since when linking failed */
4083                 szp->z_unlinked = 1;
4084         }
4085         txg = dmu_tx_get_txg(tx);
4086         dmu_tx_commit(tx);
4087
4088         zfs_dirent_unlock(dl);
4089
4090         if (!is_tmpfile && zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
4091                 zil_commit(zilog, 0);
4092
4093         if (is_tmpfile)
4094                 txg_wait_synced(dmu_objset_pool(zfsvfs->z_os), txg);
4095
4096         zfs_inode_update(dzp);
4097         zfs_inode_update(szp);
4098         ZFS_EXIT(zfsvfs);
4099         return (error);
4100 }
4101
4102 static void
4103 zfs_putpage_commit_cb(void *arg)
4104 {
4105         struct page *pp = arg;
4106
4107         ClearPageError(pp);
4108         end_page_writeback(pp);
4109 }
4110
4111 /*
4112  * Push a page out to disk, once the page is on stable storage the
4113  * registered commit callback will be run as notification of completion.
4114  *
4115  *      IN:     ip      - page mapped for inode.
4116  *              pp      - page to push (page is locked)
4117  *              wbc     - writeback control data
4118  *
4119  *      RETURN: 0 if success
4120  *              error code if failure
4121  *
4122  * Timestamps:
4123  *      ip - ctime|mtime updated
4124  */
4125 /* ARGSUSED */
4126 int
4127 zfs_putpage(struct inode *ip, struct page *pp, struct writeback_control *wbc)
4128 {
4129         znode_t         *zp = ITOZ(ip);
4130         zfsvfs_t        *zfsvfs = ITOZSB(ip);
4131         loff_t          offset;
4132         loff_t          pgoff;
4133         unsigned int    pglen;
4134         rl_t            *rl;
4135         dmu_tx_t        *tx;
4136         caddr_t         va;
4137         int             err = 0;
4138         uint64_t        mtime[2], ctime[2];
4139         sa_bulk_attr_t  bulk[3];
4140         int             cnt = 0;
4141         struct address_space *mapping;
4142
4143         ZFS_ENTER(zfsvfs);
4144         ZFS_VERIFY_ZP(zp);
4145
4146         ASSERT(PageLocked(pp));
4147
4148         pgoff = page_offset(pp);        /* Page byte-offset in file */
4149         offset = i_size_read(ip);       /* File length in bytes */
4150         pglen = MIN(PAGE_SIZE,          /* Page length in bytes */
4151             P2ROUNDUP(offset, PAGE_SIZE)-pgoff);
4152
4153         /* Page is beyond end of file */
4154         if (pgoff >= offset) {
4155                 unlock_page(pp);
4156                 ZFS_EXIT(zfsvfs);
4157                 return (0);
4158         }
4159
4160         /* Truncate page length to end of file */
4161         if (pgoff + pglen > offset)
4162                 pglen = offset - pgoff;
4163
4164 #if 0
4165         /*
4166          * FIXME: Allow mmap writes past its quota.  The correct fix
4167          * is to register a page_mkwrite() handler to count the page
4168          * against its quota when it is about to be dirtied.
4169          */
4170         if (zfs_owner_overquota(zfsvfs, zp, B_FALSE) ||
4171             zfs_owner_overquota(zfsvfs, zp, B_TRUE)) {
4172                 err = EDQUOT;
4173         }
4174 #endif
4175
4176         /*
4177          * The ordering here is critical and must adhere to the following
4178          * rules in order to avoid deadlocking in either zfs_read() or
4179          * zfs_free_range() due to a lock inversion.
4180          *
4181          * 1) The page must be unlocked prior to acquiring the range lock.
4182          *    This is critical because zfs_read() calls find_lock_page()
4183          *    which may block on the page lock while holding the range lock.
4184          *
4185          * 2) Before setting or clearing write back on a page the range lock
4186          *    must be held in order to prevent a lock inversion with the
4187          *    zfs_free_range() function.
4188          *
4189          * This presents a problem because upon entering this function the
4190          * page lock is already held.  To safely acquire the range lock the
4191          * page lock must be dropped.  This creates a window where another
4192          * process could truncate, invalidate, dirty, or write out the page.
4193          *
4194          * Therefore, after successfully reacquiring the range and page locks
4195          * the current page state is checked.  In the common case everything
4196          * will be as is expected and it can be written out.  However, if
4197          * the page state has changed it must be handled accordingly.
4198          */
4199         mapping = pp->mapping;
4200         redirty_page_for_writepage(wbc, pp);
4201         unlock_page(pp);
4202
4203         rl = zfs_range_lock(&zp->z_range_lock, pgoff, pglen, RL_WRITER);
4204         lock_page(pp);
4205
4206         /* Page mapping changed or it was no longer dirty, we're done */
4207         if (unlikely((mapping != pp->mapping) || !PageDirty(pp))) {
4208                 unlock_page(pp);
4209                 zfs_range_unlock(rl);
4210                 ZFS_EXIT(zfsvfs);
4211                 return (0);
4212         }
4213
4214         /* Another process started write block if required */
4215         if (PageWriteback(pp)) {
4216                 unlock_page(pp);
4217                 zfs_range_unlock(rl);
4218
4219                 if (wbc->sync_mode != WB_SYNC_NONE)
4220                         wait_on_page_writeback(pp);
4221
4222                 ZFS_EXIT(zfsvfs);
4223                 return (0);
4224         }
4225
4226         /* Clear the dirty flag the required locks are held */
4227         if (!clear_page_dirty_for_io(pp)) {
4228                 unlock_page(pp);
4229                 zfs_range_unlock(rl);
4230                 ZFS_EXIT(zfsvfs);
4231                 return (0);
4232         }
4233
4234         /*
4235          * Counterpart for redirty_page_for_writepage() above.  This page
4236          * was in fact not skipped and should not be counted as if it were.
4237          */
4238         wbc->pages_skipped--;
4239         set_page_writeback(pp);
4240         unlock_page(pp);
4241
4242         tx = dmu_tx_create(zfsvfs->z_os);
4243         dmu_tx_hold_write(tx, zp->z_id, pgoff, pglen);
4244         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
4245         zfs_sa_upgrade_txholds(tx, zp);
4246
4247         err = dmu_tx_assign(tx, TXG_NOWAIT);
4248         if (err != 0) {
4249                 if (err == ERESTART)
4250                         dmu_tx_wait(tx);
4251
4252                 dmu_tx_abort(tx);
4253                 __set_page_dirty_nobuffers(pp);
4254                 ClearPageError(pp);
4255                 end_page_writeback(pp);
4256                 zfs_range_unlock(rl);
4257                 ZFS_EXIT(zfsvfs);
4258                 return (err);
4259         }
4260
4261         va = kmap(pp);
4262         ASSERT3U(pglen, <=, PAGE_SIZE);
4263         dmu_write(zfsvfs->z_os, zp->z_id, pgoff, pglen, va, tx);
4264         kunmap(pp);
4265
4266         SA_ADD_BULK_ATTR(bulk, cnt, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
4267         SA_ADD_BULK_ATTR(bulk, cnt, SA_ZPL_CTIME(zfsvfs), NULL, &ctime, 16);
4268         SA_ADD_BULK_ATTR(bulk, cnt, SA_ZPL_FLAGS(zfsvfs), NULL,
4269             &zp->z_pflags, 8);
4270
4271         /* Preserve the mtime and ctime provided by the inode */
4272         ZFS_TIME_ENCODE(&ip->i_mtime, mtime);
4273         ZFS_TIME_ENCODE(&ip->i_ctime, ctime);
4274         zp->z_atime_dirty = 0;
4275         zp->z_seq++;
4276
4277         err = sa_bulk_update(zp->z_sa_hdl, bulk, cnt, tx);
4278
4279         zfs_log_write(zfsvfs->z_log, tx, TX_WRITE, zp, pgoff, pglen, 0,
4280             zfs_putpage_commit_cb, pp);
4281         dmu_tx_commit(tx);
4282
4283         zfs_range_unlock(rl);
4284
4285         if (wbc->sync_mode != WB_SYNC_NONE) {
4286                 /*
4287                  * Note that this is rarely called under writepages(), because
4288                  * writepages() normally handles the entire commit for
4289                  * performance reasons.
4290                  */
4291                 zil_commit(zfsvfs->z_log, zp->z_id);
4292         }
4293
4294         ZFS_EXIT(zfsvfs);
4295         return (err);
4296 }
4297
4298 /*
4299  * Update the system attributes when the inode has been dirtied.  For the
4300  * moment we only update the mode, atime, mtime, and ctime.
4301  */
4302 int
4303 zfs_dirty_inode(struct inode *ip, int flags)
4304 {
4305         znode_t         *zp = ITOZ(ip);
4306         zfsvfs_t        *zfsvfs = ITOZSB(ip);
4307         dmu_tx_t        *tx;
4308         uint64_t        mode, atime[2], mtime[2], ctime[2];
4309         sa_bulk_attr_t  bulk[4];
4310         int             error = 0;
4311         int             cnt = 0;
4312
4313         if (zfs_is_readonly(zfsvfs) || dmu_objset_is_snapshot(zfsvfs->z_os))
4314                 return (0);
4315
4316         ZFS_ENTER(zfsvfs);
4317         ZFS_VERIFY_ZP(zp);
4318
4319 #ifdef I_DIRTY_TIME
4320         /*
4321          * This is the lazytime semantic indroduced in Linux 4.0
4322          * This flag will only be called from update_time when lazytime is set.
4323          * (Note, I_DIRTY_SYNC will also set if not lazytime)
4324          * Fortunately mtime and ctime are managed within ZFS itself, so we
4325          * only need to dirty atime.
4326          */
4327         if (flags == I_DIRTY_TIME) {
4328                 zp->z_atime_dirty = 1;
4329                 goto out;
4330         }
4331 #endif
4332
4333         tx = dmu_tx_create(zfsvfs->z_os);
4334
4335         dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
4336         zfs_sa_upgrade_txholds(tx, zp);
4337
4338         error = dmu_tx_assign(tx, TXG_WAIT);
4339         if (error) {
4340                 dmu_tx_abort(tx);
4341                 goto out;
4342         }
4343
4344         mutex_enter(&zp->z_lock);
4345         zp->z_atime_dirty = 0;
4346
4347         SA_ADD_BULK_ATTR(bulk, cnt, SA_ZPL_MODE(zfsvfs), NULL, &mode, 8);
4348         SA_ADD_BULK_ATTR(bulk, cnt, SA_ZPL_ATIME(zfsvfs), NULL, &atime, 16);
4349         SA_ADD_BULK_ATTR(bulk, cnt, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
4350         SA_ADD_BULK_ATTR(bulk, cnt, SA_ZPL_CTIME(zfsvfs), NULL, &ctime, 16);
4351
4352         /* Preserve the mode, mtime and ctime provided by the inode */
4353         ZFS_TIME_ENCODE(&ip->i_atime, atime);
4354         ZFS_TIME_ENCODE(&ip->i_mtime, mtime);
4355         ZFS_TIME_ENCODE(&ip->i_ctime, ctime);
4356         mode = ip->i_mode;
4357
4358         zp->z_mode = mode;
4359
4360         error = sa_bulk_update(zp->z_sa_hdl, bulk, cnt, tx);
4361         mutex_exit(&zp->z_lock);
4362
4363         dmu_tx_commit(tx);
4364 out:
4365         ZFS_EXIT(zfsvfs);
4366         return (error);
4367 }
4368
4369 /*ARGSUSED*/
4370 void
4371 zfs_inactive(struct inode *ip)
4372 {
4373         znode_t *zp = ITOZ(ip);
4374         zfsvfs_t *zfsvfs = ITOZSB(ip);
4375         uint64_t atime[2];
4376         int error;
4377         int need_unlock = 0;
4378
4379         /* Only read lock if we haven't already write locked, e.g. rollback */
4380         if (!RW_WRITE_HELD(&zfsvfs->z_teardown_inactive_lock)) {
4381                 need_unlock = 1;
4382                 rw_enter(&zfsvfs->z_teardown_inactive_lock, RW_READER);
4383         }
4384         if (zp->z_sa_hdl == NULL) {
4385                 if (need_unlock)
4386                         rw_exit(&zfsvfs->z_teardown_inactive_lock);
4387                 return;
4388         }
4389
4390         if (zp->z_atime_dirty && zp->z_unlinked == 0) {
4391                 dmu_tx_t *tx = dmu_tx_create(zfsvfs->z_os);
4392
4393                 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
4394                 zfs_sa_upgrade_txholds(tx, zp);
4395                 error = dmu_tx_assign(tx, TXG_WAIT);
4396                 if (error) {
4397                         dmu_tx_abort(tx);
4398                 } else {
4399                         ZFS_TIME_ENCODE(&ip->i_atime, atime);
4400                         mutex_enter(&zp->z_lock);
4401                         (void) sa_update(zp->z_sa_hdl, SA_ZPL_ATIME(zfsvfs),
4402                             (void *)&atime, sizeof (atime), tx);
4403                         zp->z_atime_dirty = 0;
4404                         mutex_exit(&zp->z_lock);
4405                         dmu_tx_commit(tx);
4406                 }
4407         }
4408
4409         zfs_zinactive(zp);
4410         if (need_unlock)
4411                 rw_exit(&zfsvfs->z_teardown_inactive_lock);
4412 }
4413
4414 /*
4415  * Bounds-check the seek operation.
4416  *
4417  *      IN:     ip      - inode seeking within
4418  *              ooff    - old file offset
4419  *              noffp   - pointer to new file offset
4420  *              ct      - caller context
4421  *
4422  *      RETURN: 0 if success
4423  *              EINVAL if new offset invalid
4424  */
4425 /* ARGSUSED */
4426 int
4427 zfs_seek(struct inode *ip, offset_t ooff, offset_t *noffp)
4428 {
4429         if (S_ISDIR(ip->i_mode))
4430                 return (0);
4431         return ((*noffp < 0 || *noffp > MAXOFFSET_T) ? EINVAL : 0);
4432 }
4433
4434 /*
4435  * Fill pages with data from the disk.
4436  */
4437 static int
4438 zfs_fillpage(struct inode *ip, struct page *pl[], int nr_pages)
4439 {
4440         znode_t *zp = ITOZ(ip);
4441         zfsvfs_t *zfsvfs = ITOZSB(ip);
4442         objset_t *os;
4443         struct page *cur_pp;
4444         u_offset_t io_off, total;
4445         size_t io_len;
4446         loff_t i_size;
4447         unsigned page_idx;
4448         int err;
4449
4450         os = zfsvfs->z_os;
4451         io_len = nr_pages << PAGE_SHIFT;
4452         i_size = i_size_read(ip);
4453         io_off = page_offset(pl[0]);
4454
4455         if (io_off + io_len > i_size)
4456                 io_len = i_size - io_off;
4457
4458         /*
4459          * Iterate over list of pages and read each page individually.
4460          */
4461         page_idx = 0;
4462         for (total = io_off + io_len; io_off < total; io_off += PAGESIZE) {
4463                 caddr_t va;
4464
4465                 cur_pp = pl[page_idx++];
4466                 va = kmap(cur_pp);
4467                 err = dmu_read(os, zp->z_id, io_off, PAGESIZE, va,
4468                     DMU_READ_PREFETCH);
4469                 kunmap(cur_pp);
4470                 if (err) {
4471                         /* convert checksum errors into IO errors */
4472                         if (err == ECKSUM)
4473                                 err = SET_ERROR(EIO);
4474                         return (err);
4475                 }
4476         }
4477
4478         return (0);
4479 }
4480
4481 /*
4482  * Uses zfs_fillpage to read data from the file and fill the pages.
4483  *
4484  *      IN:     ip       - inode of file to get data from.
4485  *              pl       - list of pages to read
4486  *              nr_pages - number of pages to read
4487  *
4488  *      RETURN: 0 on success, error code on failure.
4489  *
4490  * Timestamps:
4491  *      vp - atime updated
4492  */
4493 /* ARGSUSED */
4494 int
4495 zfs_getpage(struct inode *ip, struct page *pl[], int nr_pages)
4496 {
4497         znode_t  *zp  = ITOZ(ip);
4498         zfsvfs_t *zfsvfs = ITOZSB(ip);
4499         int      err;
4500
4501         if (pl == NULL)
4502                 return (0);
4503
4504         ZFS_ENTER(zfsvfs);
4505         ZFS_VERIFY_ZP(zp);
4506
4507         err = zfs_fillpage(ip, pl, nr_pages);
4508
4509         ZFS_EXIT(zfsvfs);
4510         return (err);
4511 }
4512
4513 /*
4514  * Check ZFS specific permissions to memory map a section of a file.
4515  *
4516  *      IN:     ip      - inode of the file to mmap
4517  *              off     - file offset
4518  *              addrp   - start address in memory region
4519  *              len     - length of memory region
4520  *              vm_flags- address flags
4521  *
4522  *      RETURN: 0 if success
4523  *              error code if failure
4524  */
4525 /*ARGSUSED*/
4526 int
4527 zfs_map(struct inode *ip, offset_t off, caddr_t *addrp, size_t len,
4528     unsigned long vm_flags)
4529 {
4530         znode_t  *zp = ITOZ(ip);
4531         zfsvfs_t *zfsvfs = ITOZSB(ip);
4532
4533         ZFS_ENTER(zfsvfs);
4534         ZFS_VERIFY_ZP(zp);
4535
4536         if ((vm_flags & VM_WRITE) && (zp->z_pflags &
4537             (ZFS_IMMUTABLE | ZFS_READONLY | ZFS_APPENDONLY))) {
4538                 ZFS_EXIT(zfsvfs);
4539                 return (SET_ERROR(EPERM));
4540         }
4541
4542         if ((vm_flags & (VM_READ | VM_EXEC)) &&
4543             (zp->z_pflags & ZFS_AV_QUARANTINED)) {
4544                 ZFS_EXIT(zfsvfs);
4545                 return (SET_ERROR(EACCES));
4546         }
4547
4548         if (off < 0 || len > MAXOFFSET_T - off) {
4549                 ZFS_EXIT(zfsvfs);
4550                 return (SET_ERROR(ENXIO));
4551         }
4552
4553         ZFS_EXIT(zfsvfs);
4554         return (0);
4555 }
4556
4557 /*
4558  * convoff - converts the given data (start, whence) to the
4559  * given whence.
4560  */
4561 int
4562 convoff(struct inode *ip, flock64_t *lckdat, int  whence, offset_t offset)
4563 {
4564         vattr_t vap;
4565         int error;
4566
4567         if ((lckdat->l_whence == 2) || (whence == 2)) {
4568                 if ((error = zfs_getattr(ip, &vap, 0, CRED())))
4569                         return (error);
4570         }
4571
4572         switch (lckdat->l_whence) {
4573         case 1:
4574                 lckdat->l_start += offset;
4575                 break;
4576         case 2:
4577                 lckdat->l_start += vap.va_size;
4578                 /* FALLTHRU */
4579         case 0:
4580                 break;
4581         default:
4582                 return (SET_ERROR(EINVAL));
4583         }
4584
4585         if (lckdat->l_start < 0)
4586                 return (SET_ERROR(EINVAL));
4587
4588         switch (whence) {
4589         case 1:
4590                 lckdat->l_start -= offset;
4591                 break;
4592         case 2:
4593                 lckdat->l_start -= vap.va_size;
4594                 /* FALLTHRU */
4595         case 0:
4596                 break;
4597         default:
4598                 return (SET_ERROR(EINVAL));
4599         }
4600
4601         lckdat->l_whence = (short)whence;
4602         return (0);
4603 }
4604
4605 /*
4606  * Free or allocate space in a file.  Currently, this function only
4607  * supports the `F_FREESP' command.  However, this command is somewhat
4608  * misnamed, as its functionality includes the ability to allocate as
4609  * well as free space.
4610  *
4611  *      IN:     ip      - inode of file to free data in.
4612  *              cmd     - action to take (only F_FREESP supported).
4613  *              bfp     - section of file to free/alloc.
4614  *              flag    - current file open mode flags.
4615  *              offset  - current file offset.
4616  *              cr      - credentials of caller [UNUSED].
4617  *
4618  *      RETURN: 0 on success, error code on failure.
4619  *
4620  * Timestamps:
4621  *      ip - ctime|mtime updated
4622  */
4623 /* ARGSUSED */
4624 int
4625 zfs_space(struct inode *ip, int cmd, flock64_t *bfp, int flag,
4626     offset_t offset, cred_t *cr)
4627 {
4628         znode_t         *zp = ITOZ(ip);
4629         zfsvfs_t        *zfsvfs = ITOZSB(ip);
4630         uint64_t        off, len;
4631         int             error;
4632
4633         ZFS_ENTER(zfsvfs);
4634         ZFS_VERIFY_ZP(zp);
4635
4636         if (cmd != F_FREESP) {
4637                 ZFS_EXIT(zfsvfs);
4638                 return (SET_ERROR(EINVAL));
4639         }
4640
4641         /*
4642          * Callers might not be able to detect properly that we are read-only,
4643          * so check it explicitly here.
4644          */
4645         if (zfs_is_readonly(zfsvfs)) {
4646                 ZFS_EXIT(zfsvfs);
4647                 return (SET_ERROR(EROFS));
4648         }
4649
4650         if ((error = convoff(ip, bfp, 0, offset))) {
4651                 ZFS_EXIT(zfsvfs);
4652                 return (error);
4653         }
4654
4655         if (bfp->l_len < 0) {
4656                 ZFS_EXIT(zfsvfs);
4657                 return (SET_ERROR(EINVAL));
4658         }
4659
4660         /*
4661          * Permissions aren't checked on Solaris because on this OS
4662          * zfs_space() can only be called with an opened file handle.
4663          * On Linux we can get here through truncate_range() which
4664          * operates directly on inodes, so we need to check access rights.
4665          */
4666         if ((error = zfs_zaccess(zp, ACE_WRITE_DATA, 0, B_FALSE, cr))) {
4667                 ZFS_EXIT(zfsvfs);
4668                 return (error);
4669         }
4670
4671         off = bfp->l_start;
4672         len = bfp->l_len; /* 0 means from off to end of file */
4673
4674         error = zfs_freesp(zp, off, len, flag, TRUE);
4675
4676         ZFS_EXIT(zfsvfs);
4677         return (error);
4678 }
4679
4680 /*ARGSUSED*/
4681 int
4682 zfs_fid(struct inode *ip, fid_t *fidp)
4683 {
4684         znode_t         *zp = ITOZ(ip);
4685         zfsvfs_t        *zfsvfs = ITOZSB(ip);
4686         uint32_t        gen;
4687         uint64_t        gen64;
4688         uint64_t        object = zp->z_id;
4689         zfid_short_t    *zfid;
4690         int             size, i, error;
4691
4692         ZFS_ENTER(zfsvfs);
4693         ZFS_VERIFY_ZP(zp);
4694
4695         if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_GEN(zfsvfs),
4696             &gen64, sizeof (uint64_t))) != 0) {
4697                 ZFS_EXIT(zfsvfs);
4698                 return (error);
4699         }
4700
4701         gen = (uint32_t)gen64;
4702
4703         size = SHORT_FID_LEN;
4704
4705         zfid = (zfid_short_t *)fidp;
4706
4707         zfid->zf_len = size;
4708
4709         for (i = 0; i < sizeof (zfid->zf_object); i++)
4710                 zfid->zf_object[i] = (uint8_t)(object >> (8 * i));
4711
4712         /* Must have a non-zero generation number to distinguish from .zfs */
4713         if (gen == 0)
4714                 gen = 1;
4715         for (i = 0; i < sizeof (zfid->zf_gen); i++)
4716                 zfid->zf_gen[i] = (uint8_t)(gen >> (8 * i));
4717
4718         ZFS_EXIT(zfsvfs);
4719         return (0);
4720 }
4721
4722 /*ARGSUSED*/
4723 int
4724 zfs_getsecattr(struct inode *ip, vsecattr_t *vsecp, int flag, cred_t *cr)
4725 {
4726         znode_t *zp = ITOZ(ip);
4727         zfsvfs_t *zfsvfs = ITOZSB(ip);
4728         int error;
4729         boolean_t skipaclchk = (flag & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
4730
4731         ZFS_ENTER(zfsvfs);
4732         ZFS_VERIFY_ZP(zp);
4733         error = zfs_getacl(zp, vsecp, skipaclchk, cr);
4734         ZFS_EXIT(zfsvfs);
4735
4736         return (error);
4737 }
4738
4739 /*ARGSUSED*/
4740 int
4741 zfs_setsecattr(struct inode *ip, vsecattr_t *vsecp, int flag, cred_t *cr)
4742 {
4743         znode_t *zp = ITOZ(ip);
4744         zfsvfs_t *zfsvfs = ITOZSB(ip);
4745         int error;
4746         boolean_t skipaclchk = (flag & ATTR_NOACLCHECK) ? B_TRUE : B_FALSE;
4747         zilog_t *zilog = zfsvfs->z_log;
4748
4749         ZFS_ENTER(zfsvfs);
4750         ZFS_VERIFY_ZP(zp);
4751
4752         error = zfs_setacl(zp, vsecp, skipaclchk, cr);
4753
4754         if (zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
4755                 zil_commit(zilog, 0);
4756
4757         ZFS_EXIT(zfsvfs);
4758         return (error);
4759 }
4760
4761 #ifdef HAVE_UIO_ZEROCOPY
4762 /*
4763  * Tunable, both must be a power of 2.
4764  *
4765  * zcr_blksz_min: the smallest read we may consider to loan out an arcbuf
4766  * zcr_blksz_max: if set to less than the file block size, allow loaning out of
4767  *              an arcbuf for a partial block read
4768  */
4769 int zcr_blksz_min = (1 << 10);  /* 1K */
4770 int zcr_blksz_max = (1 << 17);  /* 128K */
4771
4772 /*ARGSUSED*/
4773 static int
4774 zfs_reqzcbuf(struct inode *ip, enum uio_rw ioflag, xuio_t *xuio, cred_t *cr)
4775 {
4776         znode_t *zp = ITOZ(ip);
4777         zfsvfs_t *zfsvfs = ITOZSB(ip);
4778         int max_blksz = zfsvfs->z_max_blksz;
4779         uio_t *uio = &xuio->xu_uio;
4780         ssize_t size = uio->uio_resid;
4781         offset_t offset = uio->uio_loffset;
4782         int blksz;
4783         int fullblk, i;
4784         arc_buf_t *abuf;
4785         ssize_t maxsize;
4786         int preamble, postamble;
4787
4788         if (xuio->xu_type != UIOTYPE_ZEROCOPY)
4789                 return (SET_ERROR(EINVAL));
4790
4791         ZFS_ENTER(zfsvfs);
4792         ZFS_VERIFY_ZP(zp);
4793         switch (ioflag) {
4794         case UIO_WRITE:
4795                 /*
4796                  * Loan out an arc_buf for write if write size is bigger than
4797                  * max_blksz, and the file's block size is also max_blksz.
4798                  */
4799                 blksz = max_blksz;
4800                 if (size < blksz || zp->z_blksz != blksz) {
4801                         ZFS_EXIT(zfsvfs);
4802                         return (SET_ERROR(EINVAL));
4803                 }
4804                 /*
4805                  * Caller requests buffers for write before knowing where the
4806                  * write offset might be (e.g. NFS TCP write).
4807                  */
4808                 if (offset == -1) {
4809                         preamble = 0;
4810                 } else {
4811                         preamble = P2PHASE(offset, blksz);
4812                         if (preamble) {
4813                                 preamble = blksz - preamble;
4814                                 size -= preamble;
4815                         }
4816                 }
4817
4818                 postamble = P2PHASE(size, blksz);
4819                 size -= postamble;
4820
4821                 fullblk = size / blksz;
4822                 (void) dmu_xuio_init(xuio,
4823                     (preamble != 0) + fullblk + (postamble != 0));
4824
4825                 /*
4826                  * Have to fix iov base/len for partial buffers.  They
4827                  * currently represent full arc_buf's.
4828                  */
4829                 if (preamble) {
4830                         /* data begins in the middle of the arc_buf */
4831                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
4832                             blksz);
4833                         ASSERT(abuf);
4834                         (void) dmu_xuio_add(xuio, abuf,
4835                             blksz - preamble, preamble);
4836                 }
4837
4838                 for (i = 0; i < fullblk; i++) {
4839                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
4840                             blksz);
4841                         ASSERT(abuf);
4842                         (void) dmu_xuio_add(xuio, abuf, 0, blksz);
4843                 }
4844
4845                 if (postamble) {
4846                         /* data ends in the middle of the arc_buf */
4847                         abuf = dmu_request_arcbuf(sa_get_db(zp->z_sa_hdl),
4848                             blksz);
4849                         ASSERT(abuf);
4850                         (void) dmu_xuio_add(xuio, abuf, 0, postamble);
4851                 }
4852                 break;
4853         case UIO_READ:
4854                 /*
4855                  * Loan out an arc_buf for read if the read size is larger than
4856                  * the current file block size.  Block alignment is not
4857                  * considered.  Partial arc_buf will be loaned out for read.
4858                  */
4859                 blksz = zp->z_blksz;
4860                 if (blksz < zcr_blksz_min)
4861                         blksz = zcr_blksz_min;
4862                 if (blksz > zcr_blksz_max)
4863                         blksz = zcr_blksz_max;
4864                 /* avoid potential complexity of dealing with it */
4865                 if (blksz > max_blksz) {
4866                         ZFS_EXIT(zfsvfs);
4867                         return (SET_ERROR(EINVAL));
4868                 }
4869
4870                 maxsize = zp->z_size - uio->uio_loffset;
4871                 if (size > maxsize)
4872                         size = maxsize;
4873
4874                 if (size < blksz) {
4875                         ZFS_EXIT(zfsvfs);
4876                         return (SET_ERROR(EINVAL));
4877                 }
4878                 break;
4879         default:
4880                 ZFS_EXIT(zfsvfs);
4881                 return (SET_ERROR(EINVAL));
4882         }
4883
4884         uio->uio_extflg = UIO_XUIO;
4885         XUIO_XUZC_RW(xuio) = ioflag;
4886         ZFS_EXIT(zfsvfs);
4887         return (0);
4888 }
4889
4890 /*ARGSUSED*/
4891 static int
4892 zfs_retzcbuf(struct inode *ip, xuio_t *xuio, cred_t *cr)
4893 {
4894         int i;
4895         arc_buf_t *abuf;
4896         int ioflag = XUIO_XUZC_RW(xuio);
4897
4898         ASSERT(xuio->xu_type == UIOTYPE_ZEROCOPY);
4899
4900         i = dmu_xuio_cnt(xuio);
4901         while (i-- > 0) {
4902                 abuf = dmu_xuio_arcbuf(xuio, i);
4903                 /*
4904                  * if abuf == NULL, it must be a write buffer
4905                  * that has been returned in zfs_write().
4906                  */
4907                 if (abuf)
4908                         dmu_return_arcbuf(abuf);
4909                 ASSERT(abuf || ioflag == UIO_WRITE);
4910         }
4911
4912         dmu_xuio_fini(xuio);
4913         return (0);
4914 }
4915 #endif /* HAVE_UIO_ZEROCOPY */
4916
4917 #if defined(_KERNEL) && defined(HAVE_SPL)
4918 EXPORT_SYMBOL(zfs_open);
4919 EXPORT_SYMBOL(zfs_close);
4920 EXPORT_SYMBOL(zfs_read);
4921 EXPORT_SYMBOL(zfs_write);
4922 EXPORT_SYMBOL(zfs_access);
4923 EXPORT_SYMBOL(zfs_lookup);
4924 EXPORT_SYMBOL(zfs_create);
4925 EXPORT_SYMBOL(zfs_tmpfile);
4926 EXPORT_SYMBOL(zfs_remove);
4927 EXPORT_SYMBOL(zfs_mkdir);
4928 EXPORT_SYMBOL(zfs_rmdir);
4929 EXPORT_SYMBOL(zfs_readdir);
4930 EXPORT_SYMBOL(zfs_fsync);
4931 EXPORT_SYMBOL(zfs_getattr);
4932 EXPORT_SYMBOL(zfs_getattr_fast);
4933 EXPORT_SYMBOL(zfs_setattr);
4934 EXPORT_SYMBOL(zfs_rename);
4935 EXPORT_SYMBOL(zfs_symlink);
4936 EXPORT_SYMBOL(zfs_readlink);
4937 EXPORT_SYMBOL(zfs_link);
4938 EXPORT_SYMBOL(zfs_inactive);
4939 EXPORT_SYMBOL(zfs_space);
4940 EXPORT_SYMBOL(zfs_fid);
4941 EXPORT_SYMBOL(zfs_getsecattr);
4942 EXPORT_SYMBOL(zfs_setsecattr);
4943 EXPORT_SYMBOL(zfs_getpage);
4944 EXPORT_SYMBOL(zfs_putpage);
4945 EXPORT_SYMBOL(zfs_dirty_inode);
4946 EXPORT_SYMBOL(zfs_map);
4947
4948 /* CSTYLED */
4949 module_param(zfs_delete_blocks, ulong, 0644);
4950 MODULE_PARM_DESC(zfs_delete_blocks, "Delete files larger than N blocks async");
4951 module_param(zfs_read_chunk_size, long, 0644);
4952 MODULE_PARM_DESC(zfs_read_chunk_size, "Bytes to read per chunk");
4953 #endif