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