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