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