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.
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.
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]
23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (c) 2012, 2017 by Delphix. All rights reserved.
25 * Copyright (c) 2014 Integros [integros.com]
26 * Copyright 2015 Joyent, Inc.
27 * Copyright 2017 Nexenta Systems, Inc.
30 /* Portions Copyright 2007 Jeremy Teo */
31 /* Portions Copyright 2010 Robert Milkowski */
33 #include <sys/types.h>
34 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/sysmacros.h>
38 #include <sys/resource.h>
40 #include <sys/vfs_opreg.h>
41 #include <sys/vnode.h>
45 #include <sys/taskq.h>
47 #include <sys/vmsystm.h>
48 #include <sys/atomic.h>
50 #include <vm/seg_vn.h>
54 #include <vm/seg_kpm.h>
56 #include <sys/pathname.h>
57 #include <sys/cmn_err.h>
58 #include <sys/errno.h>
59 #include <sys/unistd.h>
60 #include <sys/zfs_dir.h>
61 #include <sys/zfs_acl.h>
62 #include <sys/zfs_ioctl.h>
63 #include <sys/fs/zfs.h>
65 #include <sys/dmu_objset.h>
71 #include <sys/dirent.h>
72 #include <sys/policy.h>
73 #include <sys/sunddi.h>
74 #include <sys/filio.h>
76 #include "fs/fs_subr.h"
77 #include <sys/zfs_ctldir.h>
78 #include <sys/zfs_fuid.h>
79 #include <sys/zfs_sa.h>
81 #include <sys/zfs_rlock.h>
82 #include <sys/extdirent.h>
83 #include <sys/kidmap.h>
91 * Each vnode op performs some logical unit of work. To do this, the ZPL must
92 * properly lock its in-core state, create a DMU transaction, do the work,
93 * record this work in the intent log (ZIL), commit the DMU transaction,
94 * and wait for the intent log to commit if it is a synchronous operation.
95 * Moreover, the vnode ops must work in both normal and log replay context.
96 * The ordering of events is important to avoid deadlocks and references
97 * to freed memory. The example below illustrates the following Big Rules:
99 * (1) A check must be made in each zfs thread for a mounted file system.
100 * This is done avoiding races using ZFS_ENTER(zfsvfs).
101 * A ZFS_EXIT(zfsvfs) is needed before all returns. Any znodes
102 * must be checked with ZFS_VERIFY_ZP(zp). Both of these macros
103 * can return EIO from the calling function.
105 * (2) VN_RELE() should always be the last thing except for zil_commit()
106 * (if necessary) and ZFS_EXIT(). This is for 3 reasons:
107 * First, if it's the last reference, the vnode/znode
108 * can be freed, so the zp may point to freed memory. Second, the last
109 * reference will call zfs_zinactive(), which may induce a lot of work --
110 * pushing cached pages (which acquires range locks) and syncing out
111 * cached atime changes. Third, zfs_zinactive() may require a new tx,
112 * which could deadlock the system if you were already holding one.
113 * If you must call VN_RELE() within a tx then use VN_RELE_ASYNC().
115 * (3) All range locks must be grabbed before calling dmu_tx_assign(),
116 * as they can span dmu_tx_assign() calls.
118 * (4) If ZPL locks are held, pass TXG_NOWAIT as the second argument to
119 * dmu_tx_assign(). This is critical because we don't want to block
120 * while holding locks.
122 * If no ZPL locks are held (aside from ZFS_ENTER()), use TXG_WAIT. This
123 * reduces lock contention and CPU usage when we must wait (note that if
124 * throughput is constrained by the storage, nearly every transaction
127 * Note, in particular, that if a lock is sometimes acquired before
128 * the tx assigns, and sometimes after (e.g. z_lock), then failing
129 * to use a non-blocking assign can deadlock the system. The scenario:
131 * Thread A has grabbed a lock before calling dmu_tx_assign().
132 * Thread B is in an already-assigned tx, and blocks for this lock.
133 * Thread A calls dmu_tx_assign(TXG_WAIT) and blocks in txg_wait_open()
134 * forever, because the previous txg can't quiesce until B's tx commits.
136 * If dmu_tx_assign() returns ERESTART and zfsvfs->z_assign is TXG_NOWAIT,
137 * then drop all locks, call dmu_tx_wait(), and try again. On subsequent
138 * calls to dmu_tx_assign(), pass TXG_NOTHROTTLE in addition to TXG_NOWAIT,
139 * to indicate that this operation has already called dmu_tx_wait().
140 * This will ensure that we don't retry forever, waiting a short bit
143 * (5) If the operation succeeded, generate the intent log entry for it
144 * before dropping locks. This ensures that the ordering of events
145 * in the intent log matches the order in which they actually occurred.
146 * During ZIL replay the zfs_log_* functions will update the sequence
147 * number to indicate the zil transaction has replayed.
149 * (6) At the end of each vnode op, the DMU tx must always commit,
150 * regardless of whether there were any errors.
152 * (7) After dropping all locks, invoke zil_commit(zilog, foid)
153 * to ensure that synchronous semantics are provided when necessary.
155 * In general, this is how things should be ordered in each vnode op:
157 * ZFS_ENTER(zfsvfs); // exit if unmounted
159 * zfs_dirent_lock(&dl, ...) // lock directory entry (may VN_HOLD())
160 * rw_enter(...); // grab any other locks you need
161 * tx = dmu_tx_create(...); // get DMU tx
162 * dmu_tx_hold_*(); // hold each object you might modify
163 * error = dmu_tx_assign(tx, (waited ? TXG_NOTHROTTLE : 0) | TXG_NOWAIT);
165 * rw_exit(...); // drop locks
166 * zfs_dirent_unlock(dl); // unlock directory entry
167 * VN_RELE(...); // release held vnodes
168 * if (error == ERESTART) {
174 * dmu_tx_abort(tx); // abort DMU tx
175 * ZFS_EXIT(zfsvfs); // finished in zfs
176 * return (error); // really out of space
178 * error = do_real_work(); // do whatever this VOP does
180 * zfs_log_*(...); // on success, make ZIL entry
181 * dmu_tx_commit(tx); // commit DMU tx -- error or not
182 * rw_exit(...); // drop locks
183 * zfs_dirent_unlock(dl); // unlock directory entry
184 * VN_RELE(...); // release held vnodes
185 * zil_commit(zilog, foid); // synchronous when necessary
186 * ZFS_EXIT(zfsvfs); // finished in zfs
187 * return (error); // done, report error
192 zfs_open(vnode_t
**vpp
, int flag
, cred_t
*cr
, caller_context_t
*ct
)
194 znode_t
*zp
= VTOZ(*vpp
);
195 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
200 if ((flag
& FWRITE
) && (zp
->z_pflags
& ZFS_APPENDONLY
) &&
201 ((flag
& FAPPEND
) == 0)) {
203 return (SET_ERROR(EPERM
));
206 if (!zfs_has_ctldir(zp
) && zp
->z_zfsvfs
->z_vscan
&&
207 ZTOV(zp
)->v_type
== VREG
&&
208 !(zp
->z_pflags
& ZFS_AV_QUARANTINED
) && zp
->z_size
> 0) {
209 if (fs_vscan(*vpp
, cr
, 0) != 0) {
211 return (SET_ERROR(EACCES
));
215 /* Keep a count of the synchronous opens in the znode */
216 if (flag
& (FSYNC
| FDSYNC
))
217 atomic_inc_32(&zp
->z_sync_cnt
);
225 zfs_close(vnode_t
*vp
, int flag
, int count
, offset_t offset
, cred_t
*cr
,
226 caller_context_t
*ct
)
228 znode_t
*zp
= VTOZ(vp
);
229 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
232 * Clean up any locks held by this process on the vp.
234 cleanlocks(vp
, ddi_get_pid(), 0);
235 cleanshares(vp
, ddi_get_pid());
240 /* Decrement the synchronous opens in the znode */
241 if ((flag
& (FSYNC
| FDSYNC
)) && (count
== 1))
242 atomic_dec_32(&zp
->z_sync_cnt
);
244 if (!zfs_has_ctldir(zp
) && zp
->z_zfsvfs
->z_vscan
&&
245 ZTOV(zp
)->v_type
== VREG
&&
246 !(zp
->z_pflags
& ZFS_AV_QUARANTINED
) && zp
->z_size
> 0)
247 VERIFY(fs_vscan(vp
, cr
, 1) == 0);
254 * Lseek support for finding holes (cmd == _FIO_SEEK_HOLE) and
255 * data (cmd == _FIO_SEEK_DATA). "off" is an in/out parameter.
258 zfs_holey(vnode_t
*vp
, int cmd
, offset_t
*off
)
260 znode_t
*zp
= VTOZ(vp
);
261 uint64_t noff
= (uint64_t)*off
; /* new offset */
266 file_sz
= zp
->z_size
;
267 if (noff
>= file_sz
) {
268 return (SET_ERROR(ENXIO
));
271 if (cmd
== _FIO_SEEK_HOLE
)
276 error
= dmu_offset_next(zp
->z_zfsvfs
->z_os
, zp
->z_id
, hole
, &noff
);
279 return (SET_ERROR(ENXIO
));
282 * We could find a hole that begins after the logical end-of-file,
283 * because dmu_offset_next() only works on whole blocks. If the
284 * EOF falls mid-block, then indicate that the "virtual hole"
285 * at the end of the file begins at the logical EOF, rather than
286 * at the end of the last block.
288 if (noff
> file_sz
) {
301 zfs_ioctl(vnode_t
*vp
, int com
, intptr_t data
, int flag
, cred_t
*cred
,
302 int *rvalp
, caller_context_t
*ct
)
306 dmu_object_info_t doi
;
314 return (zfs_sync(vp
->v_vfsp
, 0, cred
));
317 * The following two ioctls are used by bfu. Faking out,
318 * necessary to avoid bfu errors.
330 if (ddi_copyin((void *)data
, &off
, sizeof (off
), flag
))
331 return (SET_ERROR(EFAULT
));
334 zfsvfs
= zp
->z_zfsvfs
;
338 /* offset parameter is in/out */
339 error
= zfs_holey(vp
, com
, &off
);
343 if (ddi_copyout(&off
, (void *)data
, sizeof (off
), flag
))
344 return (SET_ERROR(EFAULT
));
347 case _FIO_COUNT_FILLED
:
350 * _FIO_COUNT_FILLED adds a new ioctl command which
351 * exposes the number of filled blocks in a
355 zfsvfs
= zp
->z_zfsvfs
;
360 * Wait for all dirty blocks for this object
361 * to get synced out to disk, and the DMU info
364 error
= dmu_object_wait_synced(zfsvfs
->z_os
, zp
->z_id
);
371 * Retrieve fill count from DMU object.
373 error
= dmu_object_info(zfsvfs
->z_os
, zp
->z_id
, &doi
);
379 ndata
= doi
.doi_fill_count
;
382 if (ddi_copyout(&ndata
, (void *)data
, sizeof (ndata
), flag
))
383 return (SET_ERROR(EFAULT
));
387 return (SET_ERROR(ENOTTY
));
391 * Utility functions to map and unmap a single physical page. These
392 * are used to manage the mappable copies of ZFS file data, and therefore
393 * do not update ref/mod bits.
396 zfs_map_page(page_t
*pp
, enum seg_rw rw
)
399 return (hat_kpm_mapin(pp
, 0));
400 ASSERT(rw
== S_READ
|| rw
== S_WRITE
);
401 return (ppmapin(pp
, PROT_READ
| ((rw
== S_WRITE
) ? PROT_WRITE
: 0),
406 zfs_unmap_page(page_t
*pp
, caddr_t addr
)
409 hat_kpm_mapout(pp
, 0, addr
);
416 * When a file is memory mapped, we must keep the IO data synchronized
417 * between the DMU cache and the memory mapped pages. What this means:
419 * On Write: If we find a memory mapped page, we write to *both*
420 * the page and the dmu buffer.
423 update_pages(vnode_t
*vp
, int64_t start
, int len
, objset_t
*os
, uint64_t oid
)
427 off
= start
& PAGEOFFSET
;
428 for (start
&= PAGEMASK
; len
> 0; start
+= PAGESIZE
) {
430 uint64_t nbytes
= MIN(PAGESIZE
- off
, len
);
432 if (pp
= page_lookup(vp
, start
, SE_SHARED
)) {
435 va
= zfs_map_page(pp
, S_WRITE
);
436 (void) dmu_read(os
, oid
, start
+off
, nbytes
, va
+off
,
438 zfs_unmap_page(pp
, va
);
447 * When a file is memory mapped, we must keep the IO data synchronized
448 * between the DMU cache and the memory mapped pages. What this means:
450 * On Read: We "read" preferentially from memory mapped pages,
451 * else we default from the dmu buffer.
453 * NOTE: We will always "break up" the IO into PAGESIZE uiomoves when
454 * the file is memory mapped.
457 mappedread(vnode_t
*vp
, int nbytes
, uio_t
*uio
)
459 znode_t
*zp
= VTOZ(vp
);
464 start
= uio
->uio_loffset
;
465 off
= start
& PAGEOFFSET
;
466 for (start
&= PAGEMASK
; len
> 0; start
+= PAGESIZE
) {
468 uint64_t bytes
= MIN(PAGESIZE
- off
, len
);
470 if (pp
= page_lookup(vp
, start
, SE_SHARED
)) {
473 va
= zfs_map_page(pp
, S_READ
);
474 error
= uiomove(va
+ off
, bytes
, UIO_READ
, uio
);
475 zfs_unmap_page(pp
, va
);
478 error
= dmu_read_uio_dbuf(sa_get_db(zp
->z_sa_hdl
),
489 offset_t zfs_read_chunk_size
= 1024 * 1024; /* Tunable */
492 * Read bytes from specified file into supplied buffer.
494 * IN: vp - vnode of file to be read from.
495 * uio - structure supplying read location, range info,
497 * ioflag - SYNC flags; used to provide FRSYNC semantics.
498 * cr - credentials of caller.
499 * ct - caller context
501 * OUT: uio - updated offset and range, buffer filled.
503 * RETURN: 0 on success, error code on failure.
506 * vp - atime updated if byte count > 0
510 zfs_read(vnode_t
*vp
, uio_t
*uio
, int ioflag
, cred_t
*cr
, caller_context_t
*ct
)
512 znode_t
*zp
= VTOZ(vp
);
513 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
522 if (zp
->z_pflags
& ZFS_AV_QUARANTINED
) {
524 return (SET_ERROR(EACCES
));
528 * Validate file offset
530 if (uio
->uio_loffset
< (offset_t
)0) {
532 return (SET_ERROR(EINVAL
));
536 * Fasttrack empty reads
538 if (uio
->uio_resid
== 0) {
544 * Check for mandatory locks
546 if (MANDMODE(zp
->z_mode
)) {
547 if (error
= chklock(vp
, FREAD
,
548 uio
->uio_loffset
, uio
->uio_resid
, uio
->uio_fmode
, ct
)) {
555 * If we're in FRSYNC mode, sync out this znode before reading it.
557 if (ioflag
& FRSYNC
|| zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
558 zil_commit(zfsvfs
->z_log
, zp
->z_id
);
561 * Lock the range against changes.
563 rl
= zfs_range_lock(zp
, uio
->uio_loffset
, uio
->uio_resid
, RL_READER
);
566 * If we are reading past end-of-file we can skip
567 * to the end; but we might still need to set atime.
569 if (uio
->uio_loffset
>= zp
->z_size
) {
574 ASSERT(uio
->uio_loffset
< zp
->z_size
);
575 n
= MIN(uio
->uio_resid
, zp
->z_size
- uio
->uio_loffset
);
577 if ((uio
->uio_extflg
== UIO_XUIO
) &&
578 (((xuio_t
*)uio
)->xu_type
== UIOTYPE_ZEROCOPY
)) {
580 int blksz
= zp
->z_blksz
;
581 uint64_t offset
= uio
->uio_loffset
;
583 xuio
= (xuio_t
*)uio
;
585 nblk
= (P2ROUNDUP(offset
+ n
, blksz
) - P2ALIGN(offset
,
588 ASSERT(offset
+ n
<= blksz
);
591 (void) dmu_xuio_init(xuio
, nblk
);
593 if (vn_has_cached_data(vp
)) {
595 * For simplicity, we always allocate a full buffer
596 * even if we only expect to read a portion of a block.
598 while (--nblk
>= 0) {
599 (void) dmu_xuio_add(xuio
,
600 dmu_request_arcbuf(sa_get_db(zp
->z_sa_hdl
),
607 nbytes
= MIN(n
, zfs_read_chunk_size
-
608 P2PHASE(uio
->uio_loffset
, zfs_read_chunk_size
));
610 if (vn_has_cached_data(vp
)) {
611 error
= mappedread(vp
, nbytes
, uio
);
613 error
= dmu_read_uio_dbuf(sa_get_db(zp
->z_sa_hdl
),
617 /* convert checksum errors into IO errors */
619 error
= SET_ERROR(EIO
);
626 zfs_range_unlock(rl
);
628 ZFS_ACCESSTIME_STAMP(zfsvfs
, zp
);
634 * Write the bytes to a file.
636 * IN: vp - vnode of file to be written to.
637 * uio - structure supplying write location, range info,
639 * ioflag - FAPPEND, FSYNC, and/or FDSYNC. FAPPEND is
640 * set if in append mode.
641 * cr - credentials of caller.
642 * ct - caller context (NFS/CIFS fem monitor only)
644 * OUT: uio - updated offset and range.
646 * RETURN: 0 on success, error code on failure.
649 * vp - ctime|mtime updated if byte count > 0
654 zfs_write(vnode_t
*vp
, uio_t
*uio
, int ioflag
, cred_t
*cr
, caller_context_t
*ct
)
656 znode_t
*zp
= VTOZ(vp
);
657 rlim64_t limit
= uio
->uio_llimit
;
658 ssize_t start_resid
= uio
->uio_resid
;
662 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
667 int max_blksz
= zfsvfs
->z_max_blksz
;
670 iovec_t
*aiov
= NULL
;
673 int iovcnt
= uio
->uio_iovcnt
;
674 iovec_t
*iovp
= uio
->uio_iov
;
677 sa_bulk_attr_t bulk
[4];
678 uint64_t mtime
[2], ctime
[2];
681 * Fasttrack empty write
687 if (limit
== RLIM64_INFINITY
|| limit
> MAXOFFSET_T
)
693 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_MTIME(zfsvfs
), NULL
, &mtime
, 16);
694 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_CTIME(zfsvfs
), NULL
, &ctime
, 16);
695 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_SIZE(zfsvfs
), NULL
,
697 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_FLAGS(zfsvfs
), NULL
,
701 * In a case vp->v_vfsp != zp->z_zfsvfs->z_vfs (e.g. snapshots) our
702 * callers might not be able to detect properly that we are read-only,
703 * so check it explicitly here.
705 if (zfsvfs
->z_vfs
->vfs_flag
& VFS_RDONLY
) {
707 return (SET_ERROR(EROFS
));
711 * If immutable or not appending then return EPERM.
712 * Intentionally allow ZFS_READONLY through here.
713 * See zfs_zaccess_common()
715 if ((zp
->z_pflags
& ZFS_IMMUTABLE
) ||
716 ((zp
->z_pflags
& ZFS_APPENDONLY
) && !(ioflag
& FAPPEND
) &&
717 (uio
->uio_loffset
< zp
->z_size
))) {
719 return (SET_ERROR(EPERM
));
722 zilog
= zfsvfs
->z_log
;
725 * Validate file offset
727 woff
= ioflag
& FAPPEND
? zp
->z_size
: uio
->uio_loffset
;
730 return (SET_ERROR(EINVAL
));
734 * Check for mandatory locks before calling zfs_range_lock()
735 * in order to prevent a deadlock with locks set via fcntl().
737 if (MANDMODE((mode_t
)zp
->z_mode
) &&
738 (error
= chklock(vp
, FWRITE
, woff
, n
, uio
->uio_fmode
, ct
)) != 0) {
744 * Pre-fault the pages to ensure slow (eg NFS) pages
746 * Skip this if uio contains loaned arc_buf.
748 if ((uio
->uio_extflg
== UIO_XUIO
) &&
749 (((xuio_t
*)uio
)->xu_type
== UIOTYPE_ZEROCOPY
))
750 xuio
= (xuio_t
*)uio
;
752 uio_prefaultpages(MIN(n
, max_blksz
), uio
);
755 * If in append mode, set the io offset pointer to eof.
757 if (ioflag
& FAPPEND
) {
759 * Obtain an appending range lock to guarantee file append
760 * semantics. We reset the write offset once we have the lock.
762 rl
= zfs_range_lock(zp
, 0, n
, RL_APPEND
);
764 if (rl
->r_len
== UINT64_MAX
) {
766 * We overlocked the file because this write will cause
767 * the file block size to increase.
768 * Note that zp_size cannot change with this lock held.
772 uio
->uio_loffset
= woff
;
775 * Note that if the file block size will change as a result of
776 * this write, then this range lock will lock the entire file
777 * so that we can re-write the block safely.
779 rl
= zfs_range_lock(zp
, woff
, n
, RL_WRITER
);
783 zfs_range_unlock(rl
);
785 return (SET_ERROR(EFBIG
));
788 if ((woff
+ n
) > limit
|| woff
> (limit
- n
))
791 /* Will this write extend the file length? */
792 write_eof
= (woff
+ n
> zp
->z_size
);
794 end_size
= MAX(zp
->z_size
, woff
+ n
);
797 * Write the file in reasonable size chunks. Each chunk is written
798 * in a separate transaction; this keeps the intent log records small
799 * and allows us to do more fine-grained space accounting.
803 woff
= uio
->uio_loffset
;
804 if (zfs_owner_overquota(zfsvfs
, zp
, B_FALSE
) ||
805 zfs_owner_overquota(zfsvfs
, zp
, B_TRUE
)) {
807 dmu_return_arcbuf(abuf
);
808 error
= SET_ERROR(EDQUOT
);
812 if (xuio
&& abuf
== NULL
) {
813 ASSERT(i_iov
< iovcnt
);
815 abuf
= dmu_xuio_arcbuf(xuio
, i_iov
);
816 dmu_xuio_clear(xuio
, i_iov
);
817 DTRACE_PROBE3(zfs_cp_write
, int, i_iov
,
818 iovec_t
*, aiov
, arc_buf_t
*, abuf
);
819 ASSERT((aiov
->iov_base
== abuf
->b_data
) ||
820 ((char *)aiov
->iov_base
- (char *)abuf
->b_data
+
821 aiov
->iov_len
== arc_buf_size(abuf
)));
823 } else if (abuf
== NULL
&& n
>= max_blksz
&&
824 woff
>= zp
->z_size
&&
825 P2PHASE(woff
, max_blksz
) == 0 &&
826 zp
->z_blksz
== max_blksz
) {
828 * This write covers a full block. "Borrow" a buffer
829 * from the dmu so that we can fill it before we enter
830 * a transaction. This avoids the possibility of
831 * holding up the transaction if the data copy hangs
832 * up on a pagefault (e.g., from an NFS server mapping).
836 abuf
= dmu_request_arcbuf(sa_get_db(zp
->z_sa_hdl
),
838 ASSERT(abuf
!= NULL
);
839 ASSERT(arc_buf_size(abuf
) == max_blksz
);
840 if (error
= uiocopy(abuf
->b_data
, max_blksz
,
841 UIO_WRITE
, uio
, &cbytes
)) {
842 dmu_return_arcbuf(abuf
);
845 ASSERT(cbytes
== max_blksz
);
849 * Start a transaction.
851 tx
= dmu_tx_create(zfsvfs
->z_os
);
852 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_FALSE
);
853 dmu_tx_hold_write(tx
, zp
->z_id
, woff
, MIN(n
, max_blksz
));
854 zfs_sa_upgrade_txholds(tx
, zp
);
855 error
= dmu_tx_assign(tx
, TXG_WAIT
);
859 dmu_return_arcbuf(abuf
);
864 * If zfs_range_lock() over-locked we grow the blocksize
865 * and then reduce the lock range. This will only happen
866 * on the first iteration since zfs_range_reduce() will
867 * shrink down r_len to the appropriate size.
869 if (rl
->r_len
== UINT64_MAX
) {
872 if (zp
->z_blksz
> max_blksz
) {
874 * File's blocksize is already larger than the
875 * "recordsize" property. Only let it grow to
876 * the next power of 2.
878 ASSERT(!ISP2(zp
->z_blksz
));
879 new_blksz
= MIN(end_size
,
880 1 << highbit64(zp
->z_blksz
));
882 new_blksz
= MIN(end_size
, max_blksz
);
884 zfs_grow_blocksize(zp
, new_blksz
, tx
);
885 zfs_range_reduce(rl
, woff
, n
);
889 * XXX - should we really limit each write to z_max_blksz?
890 * Perhaps we should use SPA_MAXBLOCKSIZE chunks?
892 nbytes
= MIN(n
, max_blksz
- P2PHASE(woff
, max_blksz
));
895 tx_bytes
= uio
->uio_resid
;
896 error
= dmu_write_uio_dbuf(sa_get_db(zp
->z_sa_hdl
),
898 tx_bytes
-= uio
->uio_resid
;
901 ASSERT(xuio
== NULL
|| tx_bytes
== aiov
->iov_len
);
903 * If this is not a full block write, but we are
904 * extending the file past EOF and this data starts
905 * block-aligned, use assign_arcbuf(). Otherwise,
906 * write via dmu_write().
908 if (tx_bytes
< max_blksz
&& (!write_eof
||
909 aiov
->iov_base
!= abuf
->b_data
)) {
911 dmu_write(zfsvfs
->z_os
, zp
->z_id
, woff
,
912 aiov
->iov_len
, aiov
->iov_base
, tx
);
913 dmu_return_arcbuf(abuf
);
914 xuio_stat_wbuf_copied();
916 ASSERT(xuio
|| tx_bytes
== max_blksz
);
917 dmu_assign_arcbuf(sa_get_db(zp
->z_sa_hdl
),
920 ASSERT(tx_bytes
<= uio
->uio_resid
);
921 uioskip(uio
, tx_bytes
);
923 if (tx_bytes
&& vn_has_cached_data(vp
)) {
924 update_pages(vp
, woff
,
925 tx_bytes
, zfsvfs
->z_os
, zp
->z_id
);
929 * If we made no progress, we're done. If we made even
930 * partial progress, update the znode and ZIL accordingly.
933 (void) sa_update(zp
->z_sa_hdl
, SA_ZPL_SIZE(zfsvfs
),
934 (void *)&zp
->z_size
, sizeof (uint64_t), tx
);
941 * Clear Set-UID/Set-GID bits on successful write if not
942 * privileged and at least one of the excute bits is set.
944 * It would be nice to to this after all writes have
945 * been done, but that would still expose the ISUID/ISGID
946 * to another app after the partial write is committed.
948 * Note: we don't call zfs_fuid_map_id() here because
949 * user 0 is not an ephemeral uid.
951 mutex_enter(&zp
->z_acl_lock
);
952 if ((zp
->z_mode
& (S_IXUSR
| (S_IXUSR
>> 3) |
953 (S_IXUSR
>> 6))) != 0 &&
954 (zp
->z_mode
& (S_ISUID
| S_ISGID
)) != 0 &&
955 secpolicy_vnode_setid_retain(cr
,
956 (zp
->z_mode
& S_ISUID
) != 0 && zp
->z_uid
== 0) != 0) {
958 zp
->z_mode
&= ~(S_ISUID
| S_ISGID
);
959 newmode
= zp
->z_mode
;
960 (void) sa_update(zp
->z_sa_hdl
, SA_ZPL_MODE(zfsvfs
),
961 (void *)&newmode
, sizeof (uint64_t), tx
);
963 mutex_exit(&zp
->z_acl_lock
);
965 zfs_tstamp_update_setup(zp
, CONTENT_MODIFIED
, mtime
, ctime
,
969 * Update the file size (zp_size) if it has changed;
970 * account for possible concurrent updates.
972 while ((end_size
= zp
->z_size
) < uio
->uio_loffset
) {
973 (void) atomic_cas_64(&zp
->z_size
, end_size
,
978 * If we are replaying and eof is non zero then force
979 * the file size to the specified eof. Note, there's no
980 * concurrency during replay.
982 if (zfsvfs
->z_replay
&& zfsvfs
->z_replay_eof
!= 0)
983 zp
->z_size
= zfsvfs
->z_replay_eof
;
985 error
= sa_bulk_update(zp
->z_sa_hdl
, bulk
, count
, tx
);
987 zfs_log_write(zilog
, tx
, TX_WRITE
, zp
, woff
, tx_bytes
, ioflag
);
992 ASSERT(tx_bytes
== nbytes
);
996 uio_prefaultpages(MIN(n
, max_blksz
), uio
);
999 zfs_range_unlock(rl
);
1002 * If we're in replay mode, or we made no progress, return error.
1003 * Otherwise, it's at least a partial write, so it's successful.
1005 if (zfsvfs
->z_replay
|| uio
->uio_resid
== start_resid
) {
1010 if (ioflag
& (FSYNC
| FDSYNC
) ||
1011 zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
1012 zil_commit(zilog
, zp
->z_id
);
1019 zfs_get_done(zgd_t
*zgd
, int error
)
1021 znode_t
*zp
= zgd
->zgd_private
;
1022 objset_t
*os
= zp
->z_zfsvfs
->z_os
;
1025 dmu_buf_rele(zgd
->zgd_db
, zgd
);
1027 zfs_range_unlock(zgd
->zgd_rl
);
1030 * Release the vnode asynchronously as we currently have the
1031 * txg stopped from syncing.
1033 VN_RELE_ASYNC(ZTOV(zp
), dsl_pool_vnrele_taskq(dmu_objset_pool(os
)));
1035 if (error
== 0 && zgd
->zgd_bp
)
1036 zil_lwb_add_block(zgd
->zgd_lwb
, zgd
->zgd_bp
);
1038 kmem_free(zgd
, sizeof (zgd_t
));
1042 static int zil_fault_io
= 0;
1046 * Get data to generate a TX_WRITE intent log record.
1049 zfs_get_data(void *arg
, lr_write_t
*lr
, char *buf
, struct lwb
*lwb
, zio_t
*zio
)
1051 zfsvfs_t
*zfsvfs
= arg
;
1052 objset_t
*os
= zfsvfs
->z_os
;
1054 uint64_t object
= lr
->lr_foid
;
1055 uint64_t offset
= lr
->lr_offset
;
1056 uint64_t size
= lr
->lr_length
;
1061 ASSERT3P(lwb
, !=, NULL
);
1062 ASSERT3P(zio
, !=, NULL
);
1063 ASSERT3U(size
, !=, 0);
1066 * Nothing to do if the file has been removed
1068 if (zfs_zget(zfsvfs
, object
, &zp
) != 0)
1069 return (SET_ERROR(ENOENT
));
1070 if (zp
->z_unlinked
) {
1072 * Release the vnode asynchronously as we currently have the
1073 * txg stopped from syncing.
1075 VN_RELE_ASYNC(ZTOV(zp
),
1076 dsl_pool_vnrele_taskq(dmu_objset_pool(os
)));
1077 return (SET_ERROR(ENOENT
));
1080 zgd
= (zgd_t
*)kmem_zalloc(sizeof (zgd_t
), KM_SLEEP
);
1082 zgd
->zgd_private
= zp
;
1085 * Write records come in two flavors: immediate and indirect.
1086 * For small writes it's cheaper to store the data with the
1087 * log record (immediate); for large writes it's cheaper to
1088 * sync the data and get a pointer to it (indirect) so that
1089 * we don't have to write the data twice.
1091 if (buf
!= NULL
) { /* immediate write */
1092 zgd
->zgd_rl
= zfs_range_lock(zp
, offset
, size
, RL_READER
);
1093 /* test for truncation needs to be done while range locked */
1094 if (offset
>= zp
->z_size
) {
1095 error
= SET_ERROR(ENOENT
);
1097 error
= dmu_read(os
, object
, offset
, size
, buf
,
1098 DMU_READ_NO_PREFETCH
);
1100 ASSERT(error
== 0 || error
== ENOENT
);
1101 } else { /* indirect write */
1103 * Have to lock the whole block to ensure when it's
1104 * written out and its checksum is being calculated
1105 * that no one can change the data. We need to re-check
1106 * blocksize after we get the lock in case it's changed!
1111 blkoff
= ISP2(size
) ? P2PHASE(offset
, size
) : offset
;
1113 zgd
->zgd_rl
= zfs_range_lock(zp
, offset
, size
,
1115 if (zp
->z_blksz
== size
)
1118 zfs_range_unlock(zgd
->zgd_rl
);
1120 /* test for truncation needs to be done while range locked */
1121 if (lr
->lr_offset
>= zp
->z_size
)
1122 error
= SET_ERROR(ENOENT
);
1125 error
= SET_ERROR(EIO
);
1130 error
= dmu_buf_hold(os
, object
, offset
, zgd
, &db
,
1131 DMU_READ_NO_PREFETCH
);
1134 blkptr_t
*bp
= &lr
->lr_blkptr
;
1139 ASSERT(db
->db_offset
== offset
);
1140 ASSERT(db
->db_size
== size
);
1142 error
= dmu_sync(zio
, lr
->lr_common
.lrc_txg
,
1144 ASSERT(error
|| lr
->lr_length
<= size
);
1147 * On success, we need to wait for the write I/O
1148 * initiated by dmu_sync() to complete before we can
1149 * release this dbuf. We will finish everything up
1150 * in the zfs_get_done() callback.
1155 if (error
== EALREADY
) {
1156 lr
->lr_common
.lrc_txtype
= TX_WRITE2
;
1158 * TX_WRITE2 relies on the data previously
1159 * written by the TX_WRITE that caused
1160 * EALREADY. We zero out the BP because
1161 * it is the old, currently-on-disk BP,
1162 * so there's no need to zio_flush() its
1163 * vdevs (flushing would needlesly hurt
1164 * performance, and doesn't work on
1174 zfs_get_done(zgd
, error
);
1181 zfs_access(vnode_t
*vp
, int mode
, int flag
, cred_t
*cr
,
1182 caller_context_t
*ct
)
1184 znode_t
*zp
= VTOZ(vp
);
1185 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
1191 if (flag
& V_ACE_MASK
)
1192 error
= zfs_zaccess(zp
, mode
, flag
, B_FALSE
, cr
);
1194 error
= zfs_zaccess_rwx(zp
, mode
, flag
, cr
);
1201 * If vnode is for a device return a specfs vnode instead.
1204 specvp_check(vnode_t
**vpp
, cred_t
*cr
)
1208 if (IS_DEVVP(*vpp
)) {
1211 svp
= specvp(*vpp
, (*vpp
)->v_rdev
, (*vpp
)->v_type
, cr
);
1214 error
= SET_ERROR(ENOSYS
);
1222 * Lookup an entry in a directory, or an extended attribute directory.
1223 * If it exists, return a held vnode reference for it.
1225 * IN: dvp - vnode of directory to search.
1226 * nm - name of entry to lookup.
1227 * pnp - full pathname to lookup [UNUSED].
1228 * flags - LOOKUP_XATTR set if looking for an attribute.
1229 * rdir - root directory vnode [UNUSED].
1230 * cr - credentials of caller.
1231 * ct - caller context
1232 * direntflags - directory lookup flags
1233 * realpnp - returned pathname.
1235 * OUT: vpp - vnode of located entry, NULL if not found.
1237 * RETURN: 0 on success, error code on failure.
1244 zfs_lookup(vnode_t
*dvp
, char *nm
, vnode_t
**vpp
, struct pathname
*pnp
,
1245 int flags
, vnode_t
*rdir
, cred_t
*cr
, caller_context_t
*ct
,
1246 int *direntflags
, pathname_t
*realpnp
)
1248 znode_t
*zdp
= VTOZ(dvp
);
1249 zfsvfs_t
*zfsvfs
= zdp
->z_zfsvfs
;
1253 * Fast path lookup, however we must skip DNLC lookup
1254 * for case folding or normalizing lookups because the
1255 * DNLC code only stores the passed in name. This means
1256 * creating 'a' and removing 'A' on a case insensitive
1257 * file system would work, but DNLC still thinks 'a'
1258 * exists and won't let you create it again on the next
1259 * pass through fast path.
1261 if (!(flags
& (LOOKUP_XATTR
| FIGNORECASE
))) {
1263 if (dvp
->v_type
!= VDIR
) {
1264 return (SET_ERROR(ENOTDIR
));
1265 } else if (zdp
->z_sa_hdl
== NULL
) {
1266 return (SET_ERROR(EIO
));
1269 if (nm
[0] == 0 || (nm
[0] == '.' && nm
[1] == '\0')) {
1270 error
= zfs_fastaccesschk_execute(zdp
, cr
);
1277 } else if (!zdp
->z_zfsvfs
->z_norm
&&
1278 (zdp
->z_zfsvfs
->z_case
== ZFS_CASE_SENSITIVE
)) {
1280 vnode_t
*tvp
= dnlc_lookup(dvp
, nm
);
1283 error
= zfs_fastaccesschk_execute(zdp
, cr
);
1288 if (tvp
== DNLC_NO_VNODE
) {
1290 return (SET_ERROR(ENOENT
));
1293 return (specvp_check(vpp
, cr
));
1299 DTRACE_PROBE2(zfs__fastpath__lookup__miss
, vnode_t
*, dvp
, char *, nm
);
1306 if (flags
& LOOKUP_XATTR
) {
1308 * If the xattr property is off, refuse the lookup request.
1310 if (!(zfsvfs
->z_vfs
->vfs_flag
& VFS_XATTR
)) {
1312 return (SET_ERROR(EINVAL
));
1316 * We don't allow recursive attributes..
1317 * Maybe someday we will.
1319 if (zdp
->z_pflags
& ZFS_XATTR
) {
1321 return (SET_ERROR(EINVAL
));
1324 if (error
= zfs_get_xattrdir(VTOZ(dvp
), vpp
, cr
, flags
)) {
1330 * Do we have permission to get into attribute directory?
1333 if (error
= zfs_zaccess(VTOZ(*vpp
), ACE_EXECUTE
, 0,
1343 if (dvp
->v_type
!= VDIR
) {
1345 return (SET_ERROR(ENOTDIR
));
1349 * Check accessibility of directory.
1352 if (error
= zfs_zaccess(zdp
, ACE_EXECUTE
, 0, B_FALSE
, cr
)) {
1357 if (zfsvfs
->z_utf8
&& u8_validate(nm
, strlen(nm
),
1358 NULL
, U8_VALIDATE_ENTIRE
, &error
) < 0) {
1360 return (SET_ERROR(EILSEQ
));
1363 error
= zfs_dirlook(zdp
, nm
, vpp
, flags
, direntflags
, realpnp
);
1365 error
= specvp_check(vpp
, cr
);
1372 * Attempt to create a new entry in a directory. If the entry
1373 * already exists, truncate the file if permissible, else return
1374 * an error. Return the vp of the created or trunc'd file.
1376 * IN: dvp - vnode of directory to put new file entry in.
1377 * name - name of new file entry.
1378 * vap - attributes of new file.
1379 * excl - flag indicating exclusive or non-exclusive mode.
1380 * mode - mode to open file with.
1381 * cr - credentials of caller.
1382 * flag - large file flag [UNUSED].
1383 * ct - caller context
1384 * vsecp - ACL to be set
1386 * OUT: vpp - vnode of created or trunc'd entry.
1388 * RETURN: 0 on success, error code on failure.
1391 * dvp - ctime|mtime updated if new entry created
1392 * vp - ctime|mtime always, atime if new
1397 zfs_create(vnode_t
*dvp
, char *name
, vattr_t
*vap
, vcexcl_t excl
,
1398 int mode
, vnode_t
**vpp
, cred_t
*cr
, int flag
, caller_context_t
*ct
,
1401 znode_t
*zp
, *dzp
= VTOZ(dvp
);
1402 zfsvfs_t
*zfsvfs
= dzp
->z_zfsvfs
;
1410 gid_t gid
= crgetgid(cr
);
1411 zfs_acl_ids_t acl_ids
;
1412 boolean_t fuid_dirtied
;
1413 boolean_t have_acl
= B_FALSE
;
1414 boolean_t waited
= B_FALSE
;
1417 * If we have an ephemeral id, ACL, or XVATTR then
1418 * make sure file system is at proper version
1421 ksid
= crgetsid(cr
, KSID_OWNER
);
1423 uid
= ksid_getid(ksid
);
1427 if (zfsvfs
->z_use_fuids
== B_FALSE
&&
1428 (vsecp
|| (vap
->va_mask
& AT_XVATTR
) ||
1429 IS_EPHEMERAL(uid
) || IS_EPHEMERAL(gid
)))
1430 return (SET_ERROR(EINVAL
));
1435 zilog
= zfsvfs
->z_log
;
1437 if (zfsvfs
->z_utf8
&& u8_validate(name
, strlen(name
),
1438 NULL
, U8_VALIDATE_ENTIRE
, &error
) < 0) {
1440 return (SET_ERROR(EILSEQ
));
1443 if (vap
->va_mask
& AT_XVATTR
) {
1444 if ((error
= secpolicy_xvattr((xvattr_t
*)vap
,
1445 crgetuid(cr
), cr
, vap
->va_type
)) != 0) {
1453 if ((vap
->va_mode
& VSVTX
) && secpolicy_vnode_stky_modify(cr
))
1454 vap
->va_mode
&= ~VSVTX
;
1456 if (*name
== '\0') {
1458 * Null component name refers to the directory itself.
1465 /* possible VN_HOLD(zp) */
1468 if (flag
& FIGNORECASE
)
1471 error
= zfs_dirent_lock(&dl
, dzp
, name
, &zp
, zflg
,
1475 zfs_acl_ids_free(&acl_ids
);
1476 if (strcmp(name
, "..") == 0)
1477 error
= SET_ERROR(EISDIR
);
1487 * Create a new file object and update the directory
1490 if (error
= zfs_zaccess(dzp
, ACE_ADD_FILE
, 0, B_FALSE
, cr
)) {
1492 zfs_acl_ids_free(&acl_ids
);
1497 * We only support the creation of regular files in
1498 * extended attribute directories.
1501 if ((dzp
->z_pflags
& ZFS_XATTR
) &&
1502 (vap
->va_type
!= VREG
)) {
1504 zfs_acl_ids_free(&acl_ids
);
1505 error
= SET_ERROR(EINVAL
);
1509 if (!have_acl
&& (error
= zfs_acl_ids_create(dzp
, 0, vap
,
1510 cr
, vsecp
, &acl_ids
)) != 0)
1514 if (zfs_acl_ids_overquota(zfsvfs
, &acl_ids
)) {
1515 zfs_acl_ids_free(&acl_ids
);
1516 error
= SET_ERROR(EDQUOT
);
1520 tx
= dmu_tx_create(os
);
1522 dmu_tx_hold_sa_create(tx
, acl_ids
.z_aclp
->z_acl_bytes
+
1523 ZFS_SA_BASE_ATTR_SIZE
);
1525 fuid_dirtied
= zfsvfs
->z_fuid_dirty
;
1527 zfs_fuid_txhold(zfsvfs
, tx
);
1528 dmu_tx_hold_zap(tx
, dzp
->z_id
, TRUE
, name
);
1529 dmu_tx_hold_sa(tx
, dzp
->z_sa_hdl
, B_FALSE
);
1530 if (!zfsvfs
->z_use_sa
&&
1531 acl_ids
.z_aclp
->z_acl_bytes
> ZFS_ACE_SPACE
) {
1532 dmu_tx_hold_write(tx
, DMU_NEW_OBJECT
,
1533 0, acl_ids
.z_aclp
->z_acl_bytes
);
1535 error
= dmu_tx_assign(tx
,
1536 (waited
? TXG_NOTHROTTLE
: 0) | TXG_NOWAIT
);
1538 zfs_dirent_unlock(dl
);
1539 if (error
== ERESTART
) {
1545 zfs_acl_ids_free(&acl_ids
);
1550 zfs_mknode(dzp
, vap
, tx
, cr
, 0, &zp
, &acl_ids
);
1553 zfs_fuid_sync(zfsvfs
, tx
);
1555 (void) zfs_link_create(dl
, zp
, tx
, ZNEW
);
1556 txtype
= zfs_log_create_txtype(Z_FILE
, vsecp
, vap
);
1557 if (flag
& FIGNORECASE
)
1559 zfs_log_create(zilog
, tx
, txtype
, dzp
, zp
, name
,
1560 vsecp
, acl_ids
.z_fuidp
, vap
);
1561 zfs_acl_ids_free(&acl_ids
);
1564 int aflags
= (flag
& FAPPEND
) ? V_APPEND
: 0;
1567 zfs_acl_ids_free(&acl_ids
);
1571 * A directory entry already exists for this name.
1574 * Can't truncate an existing file if in exclusive mode.
1577 error
= SET_ERROR(EEXIST
);
1581 * Can't open a directory for writing.
1583 if ((ZTOV(zp
)->v_type
== VDIR
) && (mode
& S_IWRITE
)) {
1584 error
= SET_ERROR(EISDIR
);
1588 * Verify requested access to file.
1590 if (mode
&& (error
= zfs_zaccess_rwx(zp
, mode
, aflags
, cr
))) {
1594 mutex_enter(&dzp
->z_lock
);
1596 mutex_exit(&dzp
->z_lock
);
1599 * Truncate regular files if requested.
1601 if ((ZTOV(zp
)->v_type
== VREG
) &&
1602 (vap
->va_mask
& AT_SIZE
) && (vap
->va_size
== 0)) {
1603 /* we can't hold any locks when calling zfs_freesp() */
1604 zfs_dirent_unlock(dl
);
1606 error
= zfs_freesp(zp
, 0, 0, mode
, TRUE
);
1608 vnevent_create(ZTOV(zp
), ct
);
1615 zfs_dirent_unlock(dl
);
1622 error
= specvp_check(vpp
, cr
);
1625 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
1626 zil_commit(zilog
, 0);
1633 * Remove an entry from a directory.
1635 * IN: dvp - vnode of directory to remove entry from.
1636 * name - name of entry to remove.
1637 * cr - credentials of caller.
1638 * ct - caller context
1639 * flags - case flags
1641 * RETURN: 0 on success, error code on failure.
1645 * vp - ctime (if nlink > 0)
1648 uint64_t null_xattr
= 0;
1652 zfs_remove(vnode_t
*dvp
, char *name
, cred_t
*cr
, caller_context_t
*ct
,
1655 znode_t
*zp
, *dzp
= VTOZ(dvp
);
1658 zfsvfs_t
*zfsvfs
= dzp
->z_zfsvfs
;
1660 uint64_t acl_obj
, xattr_obj
;
1661 uint64_t xattr_obj_unlinked
= 0;
1665 boolean_t may_delete_now
, delete_now
= FALSE
;
1666 boolean_t unlinked
, toobig
= FALSE
;
1668 pathname_t
*realnmp
= NULL
;
1672 boolean_t waited
= B_FALSE
;
1676 zilog
= zfsvfs
->z_log
;
1678 if (flags
& FIGNORECASE
) {
1688 * Attempt to lock directory; fail if entry doesn't exist.
1690 if (error
= zfs_dirent_lock(&dl
, dzp
, name
, &zp
, zflg
,
1700 if (error
= zfs_zaccess_delete(dzp
, zp
, cr
)) {
1705 * Need to use rmdir for removing directories.
1707 if (vp
->v_type
== VDIR
) {
1708 error
= SET_ERROR(EPERM
);
1712 vnevent_remove(vp
, dvp
, name
, ct
);
1715 dnlc_remove(dvp
, realnmp
->pn_buf
);
1717 dnlc_remove(dvp
, name
);
1719 mutex_enter(&vp
->v_lock
);
1720 may_delete_now
= vp
->v_count
== 1 && !vn_has_cached_data(vp
);
1721 mutex_exit(&vp
->v_lock
);
1724 * We may delete the znode now, or we may put it in the unlinked set;
1725 * it depends on whether we're the last link, and on whether there are
1726 * other holds on the vnode. So we dmu_tx_hold() the right things to
1727 * allow for either case.
1730 tx
= dmu_tx_create(zfsvfs
->z_os
);
1731 dmu_tx_hold_zap(tx
, dzp
->z_id
, FALSE
, name
);
1732 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_FALSE
);
1733 zfs_sa_upgrade_txholds(tx
, zp
);
1734 zfs_sa_upgrade_txholds(tx
, dzp
);
1735 if (may_delete_now
) {
1737 zp
->z_size
> zp
->z_blksz
* DMU_MAX_DELETEBLKCNT
;
1738 /* if the file is too big, only hold_free a token amount */
1739 dmu_tx_hold_free(tx
, zp
->z_id
, 0,
1740 (toobig
? DMU_MAX_ACCESS
: DMU_OBJECT_END
));
1743 /* are there any extended attributes? */
1744 error
= sa_lookup(zp
->z_sa_hdl
, SA_ZPL_XATTR(zfsvfs
),
1745 &xattr_obj
, sizeof (xattr_obj
));
1746 if (error
== 0 && xattr_obj
) {
1747 error
= zfs_zget(zfsvfs
, xattr_obj
, &xzp
);
1749 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_TRUE
);
1750 dmu_tx_hold_sa(tx
, xzp
->z_sa_hdl
, B_FALSE
);
1753 mutex_enter(&zp
->z_lock
);
1754 if ((acl_obj
= zfs_external_acl(zp
)) != 0 && may_delete_now
)
1755 dmu_tx_hold_free(tx
, acl_obj
, 0, DMU_OBJECT_END
);
1756 mutex_exit(&zp
->z_lock
);
1758 /* charge as an update -- would be nice not to charge at all */
1759 dmu_tx_hold_zap(tx
, zfsvfs
->z_unlinkedobj
, FALSE
, NULL
);
1762 * Mark this transaction as typically resulting in a net free of space
1764 dmu_tx_mark_netfree(tx
);
1766 error
= dmu_tx_assign(tx
, (waited
? TXG_NOTHROTTLE
: 0) | TXG_NOWAIT
);
1768 zfs_dirent_unlock(dl
);
1772 if (error
== ERESTART
) {
1786 * Remove the directory entry.
1788 error
= zfs_link_destroy(dl
, zp
, tx
, zflg
, &unlinked
);
1797 * Hold z_lock so that we can make sure that the ACL obj
1798 * hasn't changed. Could have been deleted due to
1801 mutex_enter(&zp
->z_lock
);
1802 mutex_enter(&vp
->v_lock
);
1803 (void) sa_lookup(zp
->z_sa_hdl
, SA_ZPL_XATTR(zfsvfs
),
1804 &xattr_obj_unlinked
, sizeof (xattr_obj_unlinked
));
1805 delete_now
= may_delete_now
&& !toobig
&&
1806 vp
->v_count
== 1 && !vn_has_cached_data(vp
) &&
1807 xattr_obj
== xattr_obj_unlinked
&& zfs_external_acl(zp
) ==
1809 mutex_exit(&vp
->v_lock
);
1813 if (xattr_obj_unlinked
) {
1814 ASSERT3U(xzp
->z_links
, ==, 2);
1815 mutex_enter(&xzp
->z_lock
);
1816 xzp
->z_unlinked
= 1;
1818 error
= sa_update(xzp
->z_sa_hdl
, SA_ZPL_LINKS(zfsvfs
),
1819 &xzp
->z_links
, sizeof (xzp
->z_links
), tx
);
1820 ASSERT3U(error
, ==, 0);
1821 mutex_exit(&xzp
->z_lock
);
1822 zfs_unlinked_add(xzp
, tx
);
1825 error
= sa_remove(zp
->z_sa_hdl
,
1826 SA_ZPL_XATTR(zfsvfs
), tx
);
1828 error
= sa_update(zp
->z_sa_hdl
,
1829 SA_ZPL_XATTR(zfsvfs
), &null_xattr
,
1830 sizeof (uint64_t), tx
);
1833 mutex_enter(&vp
->v_lock
);
1835 ASSERT0(vp
->v_count
);
1836 mutex_exit(&vp
->v_lock
);
1837 mutex_exit(&zp
->z_lock
);
1838 zfs_znode_delete(zp
, tx
);
1839 } else if (unlinked
) {
1840 mutex_exit(&zp
->z_lock
);
1841 zfs_unlinked_add(zp
, tx
);
1845 if (flags
& FIGNORECASE
)
1847 zfs_log_remove(zilog
, tx
, txtype
, dzp
, name
, obj
);
1854 zfs_dirent_unlock(dl
);
1861 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
1862 zil_commit(zilog
, 0);
1869 * Create a new directory and insert it into dvp using the name
1870 * provided. Return a pointer to the inserted directory.
1872 * IN: dvp - vnode of directory to add subdir to.
1873 * dirname - name of new directory.
1874 * vap - attributes of new directory.
1875 * cr - credentials of caller.
1876 * ct - caller context
1877 * flags - case flags
1878 * vsecp - ACL to be set
1880 * OUT: vpp - vnode of created directory.
1882 * RETURN: 0 on success, error code on failure.
1885 * dvp - ctime|mtime updated
1886 * vp - ctime|mtime|atime updated
1890 zfs_mkdir(vnode_t
*dvp
, char *dirname
, vattr_t
*vap
, vnode_t
**vpp
, cred_t
*cr
,
1891 caller_context_t
*ct
, int flags
, vsecattr_t
*vsecp
)
1893 znode_t
*zp
, *dzp
= VTOZ(dvp
);
1894 zfsvfs_t
*zfsvfs
= dzp
->z_zfsvfs
;
1903 gid_t gid
= crgetgid(cr
);
1904 zfs_acl_ids_t acl_ids
;
1905 boolean_t fuid_dirtied
;
1906 boolean_t waited
= B_FALSE
;
1908 ASSERT(vap
->va_type
== VDIR
);
1911 * If we have an ephemeral id, ACL, or XVATTR then
1912 * make sure file system is at proper version
1915 ksid
= crgetsid(cr
, KSID_OWNER
);
1917 uid
= ksid_getid(ksid
);
1920 if (zfsvfs
->z_use_fuids
== B_FALSE
&&
1921 (vsecp
|| (vap
->va_mask
& AT_XVATTR
) ||
1922 IS_EPHEMERAL(uid
) || IS_EPHEMERAL(gid
)))
1923 return (SET_ERROR(EINVAL
));
1927 zilog
= zfsvfs
->z_log
;
1929 if (dzp
->z_pflags
& ZFS_XATTR
) {
1931 return (SET_ERROR(EINVAL
));
1934 if (zfsvfs
->z_utf8
&& u8_validate(dirname
,
1935 strlen(dirname
), NULL
, U8_VALIDATE_ENTIRE
, &error
) < 0) {
1937 return (SET_ERROR(EILSEQ
));
1939 if (flags
& FIGNORECASE
)
1942 if (vap
->va_mask
& AT_XVATTR
) {
1943 if ((error
= secpolicy_xvattr((xvattr_t
*)vap
,
1944 crgetuid(cr
), cr
, vap
->va_type
)) != 0) {
1950 if ((error
= zfs_acl_ids_create(dzp
, 0, vap
, cr
,
1951 vsecp
, &acl_ids
)) != 0) {
1956 * First make sure the new directory doesn't exist.
1958 * Existence is checked first to make sure we don't return
1959 * EACCES instead of EEXIST which can cause some applications
1965 if (error
= zfs_dirent_lock(&dl
, dzp
, dirname
, &zp
, zf
,
1967 zfs_acl_ids_free(&acl_ids
);
1972 if (error
= zfs_zaccess(dzp
, ACE_ADD_SUBDIRECTORY
, 0, B_FALSE
, cr
)) {
1973 zfs_acl_ids_free(&acl_ids
);
1974 zfs_dirent_unlock(dl
);
1979 if (zfs_acl_ids_overquota(zfsvfs
, &acl_ids
)) {
1980 zfs_acl_ids_free(&acl_ids
);
1981 zfs_dirent_unlock(dl
);
1983 return (SET_ERROR(EDQUOT
));
1987 * Add a new entry to the directory.
1989 tx
= dmu_tx_create(zfsvfs
->z_os
);
1990 dmu_tx_hold_zap(tx
, dzp
->z_id
, TRUE
, dirname
);
1991 dmu_tx_hold_zap(tx
, DMU_NEW_OBJECT
, FALSE
, NULL
);
1992 fuid_dirtied
= zfsvfs
->z_fuid_dirty
;
1994 zfs_fuid_txhold(zfsvfs
, tx
);
1995 if (!zfsvfs
->z_use_sa
&& acl_ids
.z_aclp
->z_acl_bytes
> ZFS_ACE_SPACE
) {
1996 dmu_tx_hold_write(tx
, DMU_NEW_OBJECT
, 0,
1997 acl_ids
.z_aclp
->z_acl_bytes
);
2000 dmu_tx_hold_sa_create(tx
, acl_ids
.z_aclp
->z_acl_bytes
+
2001 ZFS_SA_BASE_ATTR_SIZE
);
2003 error
= dmu_tx_assign(tx
, (waited
? TXG_NOTHROTTLE
: 0) | TXG_NOWAIT
);
2005 zfs_dirent_unlock(dl
);
2006 if (error
== ERESTART
) {
2012 zfs_acl_ids_free(&acl_ids
);
2021 zfs_mknode(dzp
, vap
, tx
, cr
, 0, &zp
, &acl_ids
);
2024 zfs_fuid_sync(zfsvfs
, tx
);
2027 * Now put new name in parent dir.
2029 (void) zfs_link_create(dl
, zp
, tx
, ZNEW
);
2033 txtype
= zfs_log_create_txtype(Z_DIR
, vsecp
, vap
);
2034 if (flags
& FIGNORECASE
)
2036 zfs_log_create(zilog
, tx
, txtype
, dzp
, zp
, dirname
, vsecp
,
2037 acl_ids
.z_fuidp
, vap
);
2039 zfs_acl_ids_free(&acl_ids
);
2043 zfs_dirent_unlock(dl
);
2045 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
2046 zil_commit(zilog
, 0);
2053 * Remove a directory subdir entry. If the current working
2054 * directory is the same as the subdir to be removed, the
2057 * IN: dvp - vnode of directory to remove from.
2058 * name - name of directory to be removed.
2059 * cwd - vnode of current working directory.
2060 * cr - credentials of caller.
2061 * ct - caller context
2062 * flags - case flags
2064 * RETURN: 0 on success, error code on failure.
2067 * dvp - ctime|mtime updated
2071 zfs_rmdir(vnode_t
*dvp
, char *name
, vnode_t
*cwd
, cred_t
*cr
,
2072 caller_context_t
*ct
, int flags
)
2074 znode_t
*dzp
= VTOZ(dvp
);
2077 zfsvfs_t
*zfsvfs
= dzp
->z_zfsvfs
;
2083 boolean_t waited
= B_FALSE
;
2087 zilog
= zfsvfs
->z_log
;
2089 if (flags
& FIGNORECASE
)
2095 * Attempt to lock directory; fail if entry doesn't exist.
2097 if (error
= zfs_dirent_lock(&dl
, dzp
, name
, &zp
, zflg
,
2105 if (error
= zfs_zaccess_delete(dzp
, zp
, cr
)) {
2109 if (vp
->v_type
!= VDIR
) {
2110 error
= SET_ERROR(ENOTDIR
);
2115 error
= SET_ERROR(EINVAL
);
2119 vnevent_rmdir(vp
, dvp
, name
, ct
);
2122 * Grab a lock on the directory to make sure that noone is
2123 * trying to add (or lookup) entries while we are removing it.
2125 rw_enter(&zp
->z_name_lock
, RW_WRITER
);
2128 * Grab a lock on the parent pointer to make sure we play well
2129 * with the treewalk and directory rename code.
2131 rw_enter(&zp
->z_parent_lock
, RW_WRITER
);
2133 tx
= dmu_tx_create(zfsvfs
->z_os
);
2134 dmu_tx_hold_zap(tx
, dzp
->z_id
, FALSE
, name
);
2135 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_FALSE
);
2136 dmu_tx_hold_zap(tx
, zfsvfs
->z_unlinkedobj
, FALSE
, NULL
);
2137 zfs_sa_upgrade_txholds(tx
, zp
);
2138 zfs_sa_upgrade_txholds(tx
, dzp
);
2139 dmu_tx_mark_netfree(tx
);
2140 error
= dmu_tx_assign(tx
, (waited
? TXG_NOTHROTTLE
: 0) | TXG_NOWAIT
);
2142 rw_exit(&zp
->z_parent_lock
);
2143 rw_exit(&zp
->z_name_lock
);
2144 zfs_dirent_unlock(dl
);
2146 if (error
== ERESTART
) {
2157 error
= zfs_link_destroy(dl
, zp
, tx
, zflg
, NULL
);
2160 uint64_t txtype
= TX_RMDIR
;
2161 if (flags
& FIGNORECASE
)
2163 zfs_log_remove(zilog
, tx
, txtype
, dzp
, name
, ZFS_NO_OBJECT
);
2168 rw_exit(&zp
->z_parent_lock
);
2169 rw_exit(&zp
->z_name_lock
);
2171 zfs_dirent_unlock(dl
);
2175 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
2176 zil_commit(zilog
, 0);
2183 * Read as many directory entries as will fit into the provided
2184 * buffer from the given directory cursor position (specified in
2185 * the uio structure).
2187 * IN: vp - vnode of directory to read.
2188 * uio - structure supplying read location, range info,
2189 * and return buffer.
2190 * cr - credentials of caller.
2191 * ct - caller context
2192 * flags - case flags
2194 * OUT: uio - updated offset and range, buffer filled.
2195 * eofp - set to true if end-of-file detected.
2197 * RETURN: 0 on success, error code on failure.
2200 * vp - atime updated
2202 * Note that the low 4 bits of the cookie returned by zap is always zero.
2203 * This allows us to use the low range for "special" directory entries:
2204 * We use 0 for '.', and 1 for '..'. If this is the root of the filesystem,
2205 * we use the offset 2 for the '.zfs' directory.
2209 zfs_readdir(vnode_t
*vp
, uio_t
*uio
, cred_t
*cr
, int *eofp
,
2210 caller_context_t
*ct
, int flags
)
2212 znode_t
*zp
= VTOZ(vp
);
2216 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
2221 zap_attribute_t zap
;
2222 uint_t bytes_wanted
;
2223 uint64_t offset
; /* must be unsigned; checks for < 1 */
2229 boolean_t check_sysattrs
;
2234 if ((error
= sa_lookup(zp
->z_sa_hdl
, SA_ZPL_PARENT(zfsvfs
),
2235 &parent
, sizeof (parent
))) != 0) {
2241 * If we are not given an eof variable,
2248 * Check for valid iov_len.
2250 if (uio
->uio_iov
->iov_len
<= 0) {
2252 return (SET_ERROR(EINVAL
));
2256 * Quit if directory has been removed (posix)
2258 if ((*eofp
= zp
->z_unlinked
) != 0) {
2265 offset
= uio
->uio_loffset
;
2266 prefetch
= zp
->z_zn_prefetch
;
2269 * Initialize the iterator cursor.
2273 * Start iteration from the beginning of the directory.
2275 zap_cursor_init(&zc
, os
, zp
->z_id
);
2278 * The offset is a serialized cursor.
2280 zap_cursor_init_serialized(&zc
, os
, zp
->z_id
, offset
);
2284 * Get space to change directory entries into fs independent format.
2286 iovp
= uio
->uio_iov
;
2287 bytes_wanted
= iovp
->iov_len
;
2288 if (uio
->uio_segflg
!= UIO_SYSSPACE
|| uio
->uio_iovcnt
!= 1) {
2289 bufsize
= bytes_wanted
;
2290 outbuf
= kmem_alloc(bufsize
, KM_SLEEP
);
2291 odp
= (struct dirent64
*)outbuf
;
2293 bufsize
= bytes_wanted
;
2295 odp
= (struct dirent64
*)iovp
->iov_base
;
2297 eodp
= (struct edirent
*)odp
;
2300 * If this VFS supports the system attribute view interface; and
2301 * we're looking at an extended attribute directory; and we care
2302 * about normalization conflicts on this vfs; then we must check
2303 * for normalization conflicts with the sysattr name space.
2305 check_sysattrs
= vfs_has_feature(vp
->v_vfsp
, VFSFT_SYSATTR_VIEWS
) &&
2306 (vp
->v_flag
& V_XATTRDIR
) && zfsvfs
->z_norm
&&
2307 (flags
& V_RDDIR_ENTFLAGS
);
2310 * Transform to file-system independent format
2313 while (outcount
< bytes_wanted
) {
2316 off64_t
*next
= NULL
;
2319 * Special case `.', `..', and `.zfs'.
2322 (void) strcpy(zap
.za_name
, ".");
2323 zap
.za_normalization_conflict
= 0;
2325 } else if (offset
== 1) {
2326 (void) strcpy(zap
.za_name
, "..");
2327 zap
.za_normalization_conflict
= 0;
2329 } else if (offset
== 2 && zfs_show_ctldir(zp
)) {
2330 (void) strcpy(zap
.za_name
, ZFS_CTLDIR_NAME
);
2331 zap
.za_normalization_conflict
= 0;
2332 objnum
= ZFSCTL_INO_ROOT
;
2337 if (error
= zap_cursor_retrieve(&zc
, &zap
)) {
2338 if ((*eofp
= (error
== ENOENT
)) != 0)
2344 if (zap
.za_integer_length
!= 8 ||
2345 zap
.za_num_integers
!= 1) {
2346 cmn_err(CE_WARN
, "zap_readdir: bad directory "
2347 "entry, obj = %lld, offset = %lld\n",
2348 (u_longlong_t
)zp
->z_id
,
2349 (u_longlong_t
)offset
);
2350 error
= SET_ERROR(ENXIO
);
2354 objnum
= ZFS_DIRENT_OBJ(zap
.za_first_integer
);
2356 * MacOS X can extract the object type here such as:
2357 * uint8_t type = ZFS_DIRENT_TYPE(zap.za_first_integer);
2360 if (check_sysattrs
&& !zap
.za_normalization_conflict
) {
2361 zap
.za_normalization_conflict
=
2362 xattr_sysattr_casechk(zap
.za_name
);
2366 if (flags
& V_RDDIR_ACCFILTER
) {
2368 * If we have no access at all, don't include
2369 * this entry in the returned information
2372 if (zfs_zget(zp
->z_zfsvfs
, objnum
, &ezp
) != 0)
2374 if (!zfs_has_access(ezp
, cr
)) {
2381 if (flags
& V_RDDIR_ENTFLAGS
)
2382 reclen
= EDIRENT_RECLEN(strlen(zap
.za_name
));
2384 reclen
= DIRENT64_RECLEN(strlen(zap
.za_name
));
2387 * Will this entry fit in the buffer?
2389 if (outcount
+ reclen
> bufsize
) {
2391 * Did we manage to fit anything in the buffer?
2394 error
= SET_ERROR(EINVAL
);
2399 if (flags
& V_RDDIR_ENTFLAGS
) {
2401 * Add extended flag entry:
2403 eodp
->ed_ino
= objnum
;
2404 eodp
->ed_reclen
= reclen
;
2405 /* NOTE: ed_off is the offset for the *next* entry */
2406 next
= &(eodp
->ed_off
);
2407 eodp
->ed_eflags
= zap
.za_normalization_conflict
?
2408 ED_CASE_CONFLICT
: 0;
2409 (void) strncpy(eodp
->ed_name
, zap
.za_name
,
2410 EDIRENT_NAMELEN(reclen
));
2411 eodp
= (edirent_t
*)((intptr_t)eodp
+ reclen
);
2416 odp
->d_ino
= objnum
;
2417 odp
->d_reclen
= reclen
;
2418 /* NOTE: d_off is the offset for the *next* entry */
2419 next
= &(odp
->d_off
);
2420 (void) strncpy(odp
->d_name
, zap
.za_name
,
2421 DIRENT64_NAMELEN(reclen
));
2422 odp
= (dirent64_t
*)((intptr_t)odp
+ reclen
);
2426 ASSERT(outcount
<= bufsize
);
2428 /* Prefetch znode */
2430 dmu_prefetch(os
, objnum
, 0, 0, 0,
2431 ZIO_PRIORITY_SYNC_READ
);
2435 * Move to the next entry, fill in the previous offset.
2437 if (offset
> 2 || (offset
== 2 && !zfs_show_ctldir(zp
))) {
2438 zap_cursor_advance(&zc
);
2439 offset
= zap_cursor_serialize(&zc
);
2446 zp
->z_zn_prefetch
= B_FALSE
; /* a lookup will re-enable pre-fetching */
2448 if (uio
->uio_segflg
== UIO_SYSSPACE
&& uio
->uio_iovcnt
== 1) {
2449 iovp
->iov_base
+= outcount
;
2450 iovp
->iov_len
-= outcount
;
2451 uio
->uio_resid
-= outcount
;
2452 } else if (error
= uiomove(outbuf
, (long)outcount
, UIO_READ
, uio
)) {
2454 * Reset the pointer.
2456 offset
= uio
->uio_loffset
;
2460 zap_cursor_fini(&zc
);
2461 if (uio
->uio_segflg
!= UIO_SYSSPACE
|| uio
->uio_iovcnt
!= 1)
2462 kmem_free(outbuf
, bufsize
);
2464 if (error
== ENOENT
)
2467 ZFS_ACCESSTIME_STAMP(zfsvfs
, zp
);
2469 uio
->uio_loffset
= offset
;
2474 ulong_t zfs_fsync_sync_cnt
= 4;
2477 zfs_fsync(vnode_t
*vp
, int syncflag
, cred_t
*cr
, caller_context_t
*ct
)
2479 znode_t
*zp
= VTOZ(vp
);
2480 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
2483 * Regardless of whether this is required for standards conformance,
2484 * this is the logical behavior when fsync() is called on a file with
2485 * dirty pages. We use B_ASYNC since the ZIL transactions are already
2486 * going to be pushed out as part of the zil_commit().
2488 if (vn_has_cached_data(vp
) && !(syncflag
& FNODSYNC
) &&
2489 (vp
->v_type
== VREG
) && !(IS_SWAPVP(vp
)))
2490 (void) VOP_PUTPAGE(vp
, (offset_t
)0, (size_t)0, B_ASYNC
, cr
, ct
);
2492 (void) tsd_set(zfs_fsyncer_key
, (void *)zfs_fsync_sync_cnt
);
2494 if (zfsvfs
->z_os
->os_sync
!= ZFS_SYNC_DISABLED
) {
2497 zil_commit(zfsvfs
->z_log
, zp
->z_id
);
2505 * Get the requested file attributes and place them in the provided
2508 * IN: vp - vnode of file.
2509 * vap - va_mask identifies requested attributes.
2510 * If AT_XVATTR set, then optional attrs are requested
2511 * flags - ATTR_NOACLCHECK (CIFS server context)
2512 * cr - credentials of caller.
2513 * ct - caller context
2515 * OUT: vap - attribute values.
2517 * RETURN: 0 (always succeeds).
2521 zfs_getattr(vnode_t
*vp
, vattr_t
*vap
, int flags
, cred_t
*cr
,
2522 caller_context_t
*ct
)
2524 znode_t
*zp
= VTOZ(vp
);
2525 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
2528 uint64_t mtime
[2], ctime
[2];
2529 xvattr_t
*xvap
= (xvattr_t
*)vap
; /* vap may be an xvattr_t * */
2530 xoptattr_t
*xoap
= NULL
;
2531 boolean_t skipaclchk
= (flags
& ATTR_NOACLCHECK
) ? B_TRUE
: B_FALSE
;
2532 sa_bulk_attr_t bulk
[2];
2538 zfs_fuid_map_ids(zp
, cr
, &vap
->va_uid
, &vap
->va_gid
);
2540 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_MTIME(zfsvfs
), NULL
, &mtime
, 16);
2541 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_CTIME(zfsvfs
), NULL
, &ctime
, 16);
2543 if ((error
= sa_bulk_lookup(zp
->z_sa_hdl
, bulk
, count
)) != 0) {
2549 * If ACL is trivial don't bother looking for ACE_READ_ATTRIBUTES.
2550 * Also, if we are the owner don't bother, since owner should
2551 * always be allowed to read basic attributes of file.
2553 if (!(zp
->z_pflags
& ZFS_ACL_TRIVIAL
) &&
2554 (vap
->va_uid
!= crgetuid(cr
))) {
2555 if (error
= zfs_zaccess(zp
, ACE_READ_ATTRIBUTES
, 0,
2563 * Return all attributes. It's cheaper to provide the answer
2564 * than to determine whether we were asked the question.
2567 mutex_enter(&zp
->z_lock
);
2568 vap
->va_type
= vp
->v_type
;
2569 vap
->va_mode
= zp
->z_mode
& MODEMASK
;
2570 vap
->va_fsid
= zp
->z_zfsvfs
->z_vfs
->vfs_dev
;
2571 vap
->va_nodeid
= zp
->z_id
;
2572 if ((vp
->v_flag
& VROOT
) && zfs_show_ctldir(zp
))
2573 links
= zp
->z_links
+ 1;
2575 links
= zp
->z_links
;
2576 vap
->va_nlink
= MIN(links
, UINT32_MAX
); /* nlink_t limit! */
2577 vap
->va_size
= zp
->z_size
;
2578 vap
->va_rdev
= vp
->v_rdev
;
2579 vap
->va_seq
= zp
->z_seq
;
2582 * Add in any requested optional attributes and the create time.
2583 * Also set the corresponding bits in the returned attribute bitmap.
2585 if ((xoap
= xva_getxoptattr(xvap
)) != NULL
&& zfsvfs
->z_use_fuids
) {
2586 if (XVA_ISSET_REQ(xvap
, XAT_ARCHIVE
)) {
2588 ((zp
->z_pflags
& ZFS_ARCHIVE
) != 0);
2589 XVA_SET_RTN(xvap
, XAT_ARCHIVE
);
2592 if (XVA_ISSET_REQ(xvap
, XAT_READONLY
)) {
2593 xoap
->xoa_readonly
=
2594 ((zp
->z_pflags
& ZFS_READONLY
) != 0);
2595 XVA_SET_RTN(xvap
, XAT_READONLY
);
2598 if (XVA_ISSET_REQ(xvap
, XAT_SYSTEM
)) {
2600 ((zp
->z_pflags
& ZFS_SYSTEM
) != 0);
2601 XVA_SET_RTN(xvap
, XAT_SYSTEM
);
2604 if (XVA_ISSET_REQ(xvap
, XAT_HIDDEN
)) {
2606 ((zp
->z_pflags
& ZFS_HIDDEN
) != 0);
2607 XVA_SET_RTN(xvap
, XAT_HIDDEN
);
2610 if (XVA_ISSET_REQ(xvap
, XAT_NOUNLINK
)) {
2611 xoap
->xoa_nounlink
=
2612 ((zp
->z_pflags
& ZFS_NOUNLINK
) != 0);
2613 XVA_SET_RTN(xvap
, XAT_NOUNLINK
);
2616 if (XVA_ISSET_REQ(xvap
, XAT_IMMUTABLE
)) {
2617 xoap
->xoa_immutable
=
2618 ((zp
->z_pflags
& ZFS_IMMUTABLE
) != 0);
2619 XVA_SET_RTN(xvap
, XAT_IMMUTABLE
);
2622 if (XVA_ISSET_REQ(xvap
, XAT_APPENDONLY
)) {
2623 xoap
->xoa_appendonly
=
2624 ((zp
->z_pflags
& ZFS_APPENDONLY
) != 0);
2625 XVA_SET_RTN(xvap
, XAT_APPENDONLY
);
2628 if (XVA_ISSET_REQ(xvap
, XAT_NODUMP
)) {
2630 ((zp
->z_pflags
& ZFS_NODUMP
) != 0);
2631 XVA_SET_RTN(xvap
, XAT_NODUMP
);
2634 if (XVA_ISSET_REQ(xvap
, XAT_OPAQUE
)) {
2636 ((zp
->z_pflags
& ZFS_OPAQUE
) != 0);
2637 XVA_SET_RTN(xvap
, XAT_OPAQUE
);
2640 if (XVA_ISSET_REQ(xvap
, XAT_AV_QUARANTINED
)) {
2641 xoap
->xoa_av_quarantined
=
2642 ((zp
->z_pflags
& ZFS_AV_QUARANTINED
) != 0);
2643 XVA_SET_RTN(xvap
, XAT_AV_QUARANTINED
);
2646 if (XVA_ISSET_REQ(xvap
, XAT_AV_MODIFIED
)) {
2647 xoap
->xoa_av_modified
=
2648 ((zp
->z_pflags
& ZFS_AV_MODIFIED
) != 0);
2649 XVA_SET_RTN(xvap
, XAT_AV_MODIFIED
);
2652 if (XVA_ISSET_REQ(xvap
, XAT_AV_SCANSTAMP
) &&
2653 vp
->v_type
== VREG
) {
2654 zfs_sa_get_scanstamp(zp
, xvap
);
2657 if (XVA_ISSET_REQ(xvap
, XAT_CREATETIME
)) {
2660 (void) sa_lookup(zp
->z_sa_hdl
, SA_ZPL_CRTIME(zfsvfs
),
2661 times
, sizeof (times
));
2662 ZFS_TIME_DECODE(&xoap
->xoa_createtime
, times
);
2663 XVA_SET_RTN(xvap
, XAT_CREATETIME
);
2666 if (XVA_ISSET_REQ(xvap
, XAT_REPARSE
)) {
2667 xoap
->xoa_reparse
= ((zp
->z_pflags
& ZFS_REPARSE
) != 0);
2668 XVA_SET_RTN(xvap
, XAT_REPARSE
);
2670 if (XVA_ISSET_REQ(xvap
, XAT_GEN
)) {
2671 xoap
->xoa_generation
= zp
->z_gen
;
2672 XVA_SET_RTN(xvap
, XAT_GEN
);
2675 if (XVA_ISSET_REQ(xvap
, XAT_OFFLINE
)) {
2677 ((zp
->z_pflags
& ZFS_OFFLINE
) != 0);
2678 XVA_SET_RTN(xvap
, XAT_OFFLINE
);
2681 if (XVA_ISSET_REQ(xvap
, XAT_SPARSE
)) {
2683 ((zp
->z_pflags
& ZFS_SPARSE
) != 0);
2684 XVA_SET_RTN(xvap
, XAT_SPARSE
);
2688 ZFS_TIME_DECODE(&vap
->va_atime
, zp
->z_atime
);
2689 ZFS_TIME_DECODE(&vap
->va_mtime
, mtime
);
2690 ZFS_TIME_DECODE(&vap
->va_ctime
, ctime
);
2692 mutex_exit(&zp
->z_lock
);
2694 sa_object_size(zp
->z_sa_hdl
, &vap
->va_blksize
, &vap
->va_nblocks
);
2696 if (zp
->z_blksz
== 0) {
2698 * Block size hasn't been set; suggest maximal I/O transfers.
2700 vap
->va_blksize
= zfsvfs
->z_max_blksz
;
2708 * Set the file attributes to the values contained in the
2711 * IN: vp - vnode of file to be modified.
2712 * vap - new attribute values.
2713 * If AT_XVATTR set, then optional attrs are being set
2714 * flags - ATTR_UTIME set if non-default time values provided.
2715 * - ATTR_NOACLCHECK (CIFS context only).
2716 * cr - credentials of caller.
2717 * ct - caller context
2719 * RETURN: 0 on success, error code on failure.
2722 * vp - ctime updated, mtime updated if size changed.
2726 zfs_setattr(vnode_t
*vp
, vattr_t
*vap
, int flags
, cred_t
*cr
,
2727 caller_context_t
*ct
)
2729 znode_t
*zp
= VTOZ(vp
);
2730 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
2735 uint_t mask
= vap
->va_mask
;
2736 uint_t saved_mask
= 0;
2739 uint64_t new_uid
, new_gid
;
2741 uint64_t mtime
[2], ctime
[2];
2743 int need_policy
= FALSE
;
2745 zfs_fuid_info_t
*fuidp
= NULL
;
2746 xvattr_t
*xvap
= (xvattr_t
*)vap
; /* vap may be an xvattr_t * */
2749 boolean_t skipaclchk
= (flags
& ATTR_NOACLCHECK
) ? B_TRUE
: B_FALSE
;
2750 boolean_t fuid_dirtied
= B_FALSE
;
2751 sa_bulk_attr_t bulk
[7], xattr_bulk
[7];
2752 int count
= 0, xattr_count
= 0;
2757 if (mask
& AT_NOSET
)
2758 return (SET_ERROR(EINVAL
));
2763 zilog
= zfsvfs
->z_log
;
2766 * Make sure that if we have ephemeral uid/gid or xvattr specified
2767 * that file system is at proper version level
2770 if (zfsvfs
->z_use_fuids
== B_FALSE
&&
2771 (((mask
& AT_UID
) && IS_EPHEMERAL(vap
->va_uid
)) ||
2772 ((mask
& AT_GID
) && IS_EPHEMERAL(vap
->va_gid
)) ||
2773 (mask
& AT_XVATTR
))) {
2775 return (SET_ERROR(EINVAL
));
2778 if (mask
& AT_SIZE
&& vp
->v_type
== VDIR
) {
2780 return (SET_ERROR(EISDIR
));
2783 if (mask
& AT_SIZE
&& vp
->v_type
!= VREG
&& vp
->v_type
!= VFIFO
) {
2785 return (SET_ERROR(EINVAL
));
2789 * If this is an xvattr_t, then get a pointer to the structure of
2790 * optional attributes. If this is NULL, then we have a vattr_t.
2792 xoap
= xva_getxoptattr(xvap
);
2794 xva_init(&tmpxvattr
);
2797 * Immutable files can only alter immutable bit and atime
2799 if ((zp
->z_pflags
& ZFS_IMMUTABLE
) &&
2800 ((mask
& (AT_SIZE
|AT_UID
|AT_GID
|AT_MTIME
|AT_MODE
)) ||
2801 ((mask
& AT_XVATTR
) && XVA_ISSET_REQ(xvap
, XAT_CREATETIME
)))) {
2803 return (SET_ERROR(EPERM
));
2807 * Note: ZFS_READONLY is handled in zfs_zaccess_common.
2811 * Verify timestamps doesn't overflow 32 bits.
2812 * ZFS can handle large timestamps, but 32bit syscalls can't
2813 * handle times greater than 2039. This check should be removed
2814 * once large timestamps are fully supported.
2816 if (mask
& (AT_ATIME
| AT_MTIME
)) {
2817 if (((mask
& AT_ATIME
) && TIMESPEC_OVERFLOW(&vap
->va_atime
)) ||
2818 ((mask
& AT_MTIME
) && TIMESPEC_OVERFLOW(&vap
->va_mtime
))) {
2820 return (SET_ERROR(EOVERFLOW
));
2828 /* Can this be moved to before the top label? */
2829 if (zfsvfs
->z_vfs
->vfs_flag
& VFS_RDONLY
) {
2831 return (SET_ERROR(EROFS
));
2835 * First validate permissions
2838 if (mask
& AT_SIZE
) {
2839 err
= zfs_zaccess(zp
, ACE_WRITE_DATA
, 0, skipaclchk
, cr
);
2845 * XXX - Note, we are not providing any open
2846 * mode flags here (like FNDELAY), so we may
2847 * block if there are locks present... this
2848 * should be addressed in openat().
2850 /* XXX - would it be OK to generate a log record here? */
2851 err
= zfs_freesp(zp
, vap
->va_size
, 0, 0, FALSE
);
2857 if (vap
->va_size
== 0)
2858 vnevent_truncate(ZTOV(zp
), ct
);
2861 if (mask
& (AT_ATIME
|AT_MTIME
) ||
2862 ((mask
& AT_XVATTR
) && (XVA_ISSET_REQ(xvap
, XAT_HIDDEN
) ||
2863 XVA_ISSET_REQ(xvap
, XAT_READONLY
) ||
2864 XVA_ISSET_REQ(xvap
, XAT_ARCHIVE
) ||
2865 XVA_ISSET_REQ(xvap
, XAT_OFFLINE
) ||
2866 XVA_ISSET_REQ(xvap
, XAT_SPARSE
) ||
2867 XVA_ISSET_REQ(xvap
, XAT_CREATETIME
) ||
2868 XVA_ISSET_REQ(xvap
, XAT_SYSTEM
)))) {
2869 need_policy
= zfs_zaccess(zp
, ACE_WRITE_ATTRIBUTES
, 0,
2873 if (mask
& (AT_UID
|AT_GID
)) {
2874 int idmask
= (mask
& (AT_UID
|AT_GID
));
2879 * NOTE: even if a new mode is being set,
2880 * we may clear S_ISUID/S_ISGID bits.
2883 if (!(mask
& AT_MODE
))
2884 vap
->va_mode
= zp
->z_mode
;
2887 * Take ownership or chgrp to group we are a member of
2890 take_owner
= (mask
& AT_UID
) && (vap
->va_uid
== crgetuid(cr
));
2891 take_group
= (mask
& AT_GID
) &&
2892 zfs_groupmember(zfsvfs
, vap
->va_gid
, cr
);
2895 * If both AT_UID and AT_GID are set then take_owner and
2896 * take_group must both be set in order to allow taking
2899 * Otherwise, send the check through secpolicy_vnode_setattr()
2903 if (((idmask
== (AT_UID
|AT_GID
)) && take_owner
&& take_group
) ||
2904 ((idmask
== AT_UID
) && take_owner
) ||
2905 ((idmask
== AT_GID
) && take_group
)) {
2906 if (zfs_zaccess(zp
, ACE_WRITE_OWNER
, 0,
2907 skipaclchk
, cr
) == 0) {
2909 * Remove setuid/setgid for non-privileged users
2911 secpolicy_setid_clear(vap
, cr
);
2912 trim_mask
= (mask
& (AT_UID
|AT_GID
));
2921 mutex_enter(&zp
->z_lock
);
2922 oldva
.va_mode
= zp
->z_mode
;
2923 zfs_fuid_map_ids(zp
, cr
, &oldva
.va_uid
, &oldva
.va_gid
);
2924 if (mask
& AT_XVATTR
) {
2926 * Update xvattr mask to include only those attributes
2927 * that are actually changing.
2929 * the bits will be restored prior to actually setting
2930 * the attributes so the caller thinks they were set.
2932 if (XVA_ISSET_REQ(xvap
, XAT_APPENDONLY
)) {
2933 if (xoap
->xoa_appendonly
!=
2934 ((zp
->z_pflags
& ZFS_APPENDONLY
) != 0)) {
2937 XVA_CLR_REQ(xvap
, XAT_APPENDONLY
);
2938 XVA_SET_REQ(&tmpxvattr
, XAT_APPENDONLY
);
2942 if (XVA_ISSET_REQ(xvap
, XAT_NOUNLINK
)) {
2943 if (xoap
->xoa_nounlink
!=
2944 ((zp
->z_pflags
& ZFS_NOUNLINK
) != 0)) {
2947 XVA_CLR_REQ(xvap
, XAT_NOUNLINK
);
2948 XVA_SET_REQ(&tmpxvattr
, XAT_NOUNLINK
);
2952 if (XVA_ISSET_REQ(xvap
, XAT_IMMUTABLE
)) {
2953 if (xoap
->xoa_immutable
!=
2954 ((zp
->z_pflags
& ZFS_IMMUTABLE
) != 0)) {
2957 XVA_CLR_REQ(xvap
, XAT_IMMUTABLE
);
2958 XVA_SET_REQ(&tmpxvattr
, XAT_IMMUTABLE
);
2962 if (XVA_ISSET_REQ(xvap
, XAT_NODUMP
)) {
2963 if (xoap
->xoa_nodump
!=
2964 ((zp
->z_pflags
& ZFS_NODUMP
) != 0)) {
2967 XVA_CLR_REQ(xvap
, XAT_NODUMP
);
2968 XVA_SET_REQ(&tmpxvattr
, XAT_NODUMP
);
2972 if (XVA_ISSET_REQ(xvap
, XAT_AV_MODIFIED
)) {
2973 if (xoap
->xoa_av_modified
!=
2974 ((zp
->z_pflags
& ZFS_AV_MODIFIED
) != 0)) {
2977 XVA_CLR_REQ(xvap
, XAT_AV_MODIFIED
);
2978 XVA_SET_REQ(&tmpxvattr
, XAT_AV_MODIFIED
);
2982 if (XVA_ISSET_REQ(xvap
, XAT_AV_QUARANTINED
)) {
2983 if ((vp
->v_type
!= VREG
&&
2984 xoap
->xoa_av_quarantined
) ||
2985 xoap
->xoa_av_quarantined
!=
2986 ((zp
->z_pflags
& ZFS_AV_QUARANTINED
) != 0)) {
2989 XVA_CLR_REQ(xvap
, XAT_AV_QUARANTINED
);
2990 XVA_SET_REQ(&tmpxvattr
, XAT_AV_QUARANTINED
);
2994 if (XVA_ISSET_REQ(xvap
, XAT_REPARSE
)) {
2995 mutex_exit(&zp
->z_lock
);
2997 return (SET_ERROR(EPERM
));
3000 if (need_policy
== FALSE
&&
3001 (XVA_ISSET_REQ(xvap
, XAT_AV_SCANSTAMP
) ||
3002 XVA_ISSET_REQ(xvap
, XAT_OPAQUE
))) {
3007 mutex_exit(&zp
->z_lock
);
3009 if (mask
& AT_MODE
) {
3010 if (zfs_zaccess(zp
, ACE_WRITE_ACL
, 0, skipaclchk
, cr
) == 0) {
3011 err
= secpolicy_setid_setsticky_clear(vp
, vap
,
3017 trim_mask
|= AT_MODE
;
3025 * If trim_mask is set then take ownership
3026 * has been granted or write_acl is present and user
3027 * has the ability to modify mode. In that case remove
3028 * UID|GID and or MODE from mask so that
3029 * secpolicy_vnode_setattr() doesn't revoke it.
3033 saved_mask
= vap
->va_mask
;
3034 vap
->va_mask
&= ~trim_mask
;
3036 err
= secpolicy_vnode_setattr(cr
, vp
, vap
, &oldva
, flags
,
3037 (int (*)(void *, int, cred_t
*))zfs_zaccess_unix
, zp
);
3044 vap
->va_mask
|= saved_mask
;
3048 * secpolicy_vnode_setattr, or take ownership may have
3051 mask
= vap
->va_mask
;
3053 if ((mask
& (AT_UID
| AT_GID
))) {
3054 err
= sa_lookup(zp
->z_sa_hdl
, SA_ZPL_XATTR(zfsvfs
),
3055 &xattr_obj
, sizeof (xattr_obj
));
3057 if (err
== 0 && xattr_obj
) {
3058 err
= zfs_zget(zp
->z_zfsvfs
, xattr_obj
, &attrzp
);
3062 if (mask
& AT_UID
) {
3063 new_uid
= zfs_fuid_create(zfsvfs
,
3064 (uint64_t)vap
->va_uid
, cr
, ZFS_OWNER
, &fuidp
);
3065 if (new_uid
!= zp
->z_uid
&&
3066 zfs_fuid_overquota(zfsvfs
, B_FALSE
, new_uid
)) {
3068 VN_RELE(ZTOV(attrzp
));
3069 err
= SET_ERROR(EDQUOT
);
3074 if (mask
& AT_GID
) {
3075 new_gid
= zfs_fuid_create(zfsvfs
, (uint64_t)vap
->va_gid
,
3076 cr
, ZFS_GROUP
, &fuidp
);
3077 if (new_gid
!= zp
->z_gid
&&
3078 zfs_fuid_overquota(zfsvfs
, B_TRUE
, new_gid
)) {
3080 VN_RELE(ZTOV(attrzp
));
3081 err
= SET_ERROR(EDQUOT
);
3086 tx
= dmu_tx_create(zfsvfs
->z_os
);
3088 if (mask
& AT_MODE
) {
3089 uint64_t pmode
= zp
->z_mode
;
3091 new_mode
= (pmode
& S_IFMT
) | (vap
->va_mode
& ~S_IFMT
);
3093 if (zp
->z_zfsvfs
->z_acl_mode
== ZFS_ACL_RESTRICTED
&&
3094 !(zp
->z_pflags
& ZFS_ACL_TRIVIAL
)) {
3095 err
= SET_ERROR(EPERM
);
3099 if (err
= zfs_acl_chmod_setattr(zp
, &aclp
, new_mode
))
3102 mutex_enter(&zp
->z_lock
);
3103 if (!zp
->z_is_sa
&& ((acl_obj
= zfs_external_acl(zp
)) != 0)) {
3105 * Are we upgrading ACL from old V0 format
3108 if (zfsvfs
->z_version
>= ZPL_VERSION_FUID
&&
3109 zfs_znode_acl_version(zp
) ==
3110 ZFS_ACL_VERSION_INITIAL
) {
3111 dmu_tx_hold_free(tx
, acl_obj
, 0,
3113 dmu_tx_hold_write(tx
, DMU_NEW_OBJECT
,
3114 0, aclp
->z_acl_bytes
);
3116 dmu_tx_hold_write(tx
, acl_obj
, 0,
3119 } else if (!zp
->z_is_sa
&& aclp
->z_acl_bytes
> ZFS_ACE_SPACE
) {
3120 dmu_tx_hold_write(tx
, DMU_NEW_OBJECT
,
3121 0, aclp
->z_acl_bytes
);
3123 mutex_exit(&zp
->z_lock
);
3124 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_TRUE
);
3126 if ((mask
& AT_XVATTR
) &&
3127 XVA_ISSET_REQ(xvap
, XAT_AV_SCANSTAMP
))
3128 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_TRUE
);
3130 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_FALSE
);
3134 dmu_tx_hold_sa(tx
, attrzp
->z_sa_hdl
, B_FALSE
);
3137 fuid_dirtied
= zfsvfs
->z_fuid_dirty
;
3139 zfs_fuid_txhold(zfsvfs
, tx
);
3141 zfs_sa_upgrade_txholds(tx
, zp
);
3143 err
= dmu_tx_assign(tx
, TXG_WAIT
);
3149 * Set each attribute requested.
3150 * We group settings according to the locks they need to acquire.
3152 * Note: you cannot set ctime directly, although it will be
3153 * updated as a side-effect of calling this function.
3157 if (mask
& (AT_UID
|AT_GID
|AT_MODE
))
3158 mutex_enter(&zp
->z_acl_lock
);
3159 mutex_enter(&zp
->z_lock
);
3161 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_FLAGS(zfsvfs
), NULL
,
3162 &zp
->z_pflags
, sizeof (zp
->z_pflags
));
3165 if (mask
& (AT_UID
|AT_GID
|AT_MODE
))
3166 mutex_enter(&attrzp
->z_acl_lock
);
3167 mutex_enter(&attrzp
->z_lock
);
3168 SA_ADD_BULK_ATTR(xattr_bulk
, xattr_count
,
3169 SA_ZPL_FLAGS(zfsvfs
), NULL
, &attrzp
->z_pflags
,
3170 sizeof (attrzp
->z_pflags
));
3173 if (mask
& (AT_UID
|AT_GID
)) {
3175 if (mask
& AT_UID
) {
3176 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_UID(zfsvfs
), NULL
,
3177 &new_uid
, sizeof (new_uid
));
3178 zp
->z_uid
= new_uid
;
3180 SA_ADD_BULK_ATTR(xattr_bulk
, xattr_count
,
3181 SA_ZPL_UID(zfsvfs
), NULL
, &new_uid
,
3183 attrzp
->z_uid
= new_uid
;
3187 if (mask
& AT_GID
) {
3188 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_GID(zfsvfs
),
3189 NULL
, &new_gid
, sizeof (new_gid
));
3190 zp
->z_gid
= new_gid
;
3192 SA_ADD_BULK_ATTR(xattr_bulk
, xattr_count
,
3193 SA_ZPL_GID(zfsvfs
), NULL
, &new_gid
,
3195 attrzp
->z_gid
= new_gid
;
3198 if (!(mask
& AT_MODE
)) {
3199 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_MODE(zfsvfs
),
3200 NULL
, &new_mode
, sizeof (new_mode
));
3201 new_mode
= zp
->z_mode
;
3203 err
= zfs_acl_chown_setattr(zp
);
3206 err
= zfs_acl_chown_setattr(attrzp
);
3211 if (mask
& AT_MODE
) {
3212 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_MODE(zfsvfs
), NULL
,
3213 &new_mode
, sizeof (new_mode
));
3214 zp
->z_mode
= new_mode
;
3215 ASSERT3U((uintptr_t)aclp
, !=, NULL
);
3216 err
= zfs_aclset_common(zp
, aclp
, cr
, tx
);
3218 if (zp
->z_acl_cached
)
3219 zfs_acl_free(zp
->z_acl_cached
);
3220 zp
->z_acl_cached
= aclp
;
3225 if (mask
& AT_ATIME
) {
3226 ZFS_TIME_ENCODE(&vap
->va_atime
, zp
->z_atime
);
3227 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_ATIME(zfsvfs
), NULL
,
3228 &zp
->z_atime
, sizeof (zp
->z_atime
));
3231 if (mask
& AT_MTIME
) {
3232 ZFS_TIME_ENCODE(&vap
->va_mtime
, mtime
);
3233 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_MTIME(zfsvfs
), NULL
,
3234 mtime
, sizeof (mtime
));
3237 /* XXX - shouldn't this be done *before* the ATIME/MTIME checks? */
3238 if (mask
& AT_SIZE
&& !(mask
& AT_MTIME
)) {
3239 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_MTIME(zfsvfs
),
3240 NULL
, mtime
, sizeof (mtime
));
3241 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_CTIME(zfsvfs
), NULL
,
3242 &ctime
, sizeof (ctime
));
3243 zfs_tstamp_update_setup(zp
, CONTENT_MODIFIED
, mtime
, ctime
,
3245 } else if (mask
!= 0) {
3246 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_CTIME(zfsvfs
), NULL
,
3247 &ctime
, sizeof (ctime
));
3248 zfs_tstamp_update_setup(zp
, STATE_CHANGED
, mtime
, ctime
,
3251 SA_ADD_BULK_ATTR(xattr_bulk
, xattr_count
,
3252 SA_ZPL_CTIME(zfsvfs
), NULL
,
3253 &ctime
, sizeof (ctime
));
3254 zfs_tstamp_update_setup(attrzp
, STATE_CHANGED
,
3255 mtime
, ctime
, B_TRUE
);
3259 * Do this after setting timestamps to prevent timestamp
3260 * update from toggling bit
3263 if (xoap
&& (mask
& AT_XVATTR
)) {
3266 * restore trimmed off masks
3267 * so that return masks can be set for caller.
3270 if (XVA_ISSET_REQ(&tmpxvattr
, XAT_APPENDONLY
)) {
3271 XVA_SET_REQ(xvap
, XAT_APPENDONLY
);
3273 if (XVA_ISSET_REQ(&tmpxvattr
, XAT_NOUNLINK
)) {
3274 XVA_SET_REQ(xvap
, XAT_NOUNLINK
);
3276 if (XVA_ISSET_REQ(&tmpxvattr
, XAT_IMMUTABLE
)) {
3277 XVA_SET_REQ(xvap
, XAT_IMMUTABLE
);
3279 if (XVA_ISSET_REQ(&tmpxvattr
, XAT_NODUMP
)) {
3280 XVA_SET_REQ(xvap
, XAT_NODUMP
);
3282 if (XVA_ISSET_REQ(&tmpxvattr
, XAT_AV_MODIFIED
)) {
3283 XVA_SET_REQ(xvap
, XAT_AV_MODIFIED
);
3285 if (XVA_ISSET_REQ(&tmpxvattr
, XAT_AV_QUARANTINED
)) {
3286 XVA_SET_REQ(xvap
, XAT_AV_QUARANTINED
);
3289 if (XVA_ISSET_REQ(xvap
, XAT_AV_SCANSTAMP
))
3290 ASSERT(vp
->v_type
== VREG
);
3292 zfs_xvattr_set(zp
, xvap
, tx
);
3296 zfs_fuid_sync(zfsvfs
, tx
);
3299 zfs_log_setattr(zilog
, tx
, TX_SETATTR
, zp
, vap
, mask
, fuidp
);
3301 mutex_exit(&zp
->z_lock
);
3302 if (mask
& (AT_UID
|AT_GID
|AT_MODE
))
3303 mutex_exit(&zp
->z_acl_lock
);
3306 if (mask
& (AT_UID
|AT_GID
|AT_MODE
))
3307 mutex_exit(&attrzp
->z_acl_lock
);
3308 mutex_exit(&attrzp
->z_lock
);
3311 if (err
== 0 && attrzp
) {
3312 err2
= sa_bulk_update(attrzp
->z_sa_hdl
, xattr_bulk
,
3318 VN_RELE(ZTOV(attrzp
));
3324 zfs_fuid_info_free(fuidp
);
3330 if (err
== ERESTART
)
3333 err2
= sa_bulk_update(zp
->z_sa_hdl
, bulk
, count
, tx
);
3338 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
3339 zil_commit(zilog
, 0);
3345 typedef struct zfs_zlock
{
3346 krwlock_t
*zl_rwlock
; /* lock we acquired */
3347 znode_t
*zl_znode
; /* znode we held */
3348 struct zfs_zlock
*zl_next
; /* next in list */
3352 * Drop locks and release vnodes that were held by zfs_rename_lock().
3355 zfs_rename_unlock(zfs_zlock_t
**zlpp
)
3359 while ((zl
= *zlpp
) != NULL
) {
3360 if (zl
->zl_znode
!= NULL
)
3361 VN_RELE(ZTOV(zl
->zl_znode
));
3362 rw_exit(zl
->zl_rwlock
);
3363 *zlpp
= zl
->zl_next
;
3364 kmem_free(zl
, sizeof (*zl
));
3369 * Search back through the directory tree, using the ".." entries.
3370 * Lock each directory in the chain to prevent concurrent renames.
3371 * Fail any attempt to move a directory into one of its own descendants.
3372 * XXX - z_parent_lock can overlap with map or grow locks
3375 zfs_rename_lock(znode_t
*szp
, znode_t
*tdzp
, znode_t
*sdzp
, zfs_zlock_t
**zlpp
)
3379 uint64_t rootid
= zp
->z_zfsvfs
->z_root
;
3380 uint64_t oidp
= zp
->z_id
;
3381 krwlock_t
*rwlp
= &szp
->z_parent_lock
;
3382 krw_t rw
= RW_WRITER
;
3385 * First pass write-locks szp and compares to zp->z_id.
3386 * Later passes read-lock zp and compare to zp->z_parent.
3389 if (!rw_tryenter(rwlp
, rw
)) {
3391 * Another thread is renaming in this path.
3392 * Note that if we are a WRITER, we don't have any
3393 * parent_locks held yet.
3395 if (rw
== RW_READER
&& zp
->z_id
> szp
->z_id
) {
3397 * Drop our locks and restart
3399 zfs_rename_unlock(&zl
);
3403 rwlp
= &szp
->z_parent_lock
;
3408 * Wait for other thread to drop its locks
3414 zl
= kmem_alloc(sizeof (*zl
), KM_SLEEP
);
3415 zl
->zl_rwlock
= rwlp
;
3416 zl
->zl_znode
= NULL
;
3417 zl
->zl_next
= *zlpp
;
3420 if (oidp
== szp
->z_id
) /* We're a descendant of szp */
3421 return (SET_ERROR(EINVAL
));
3423 if (oidp
== rootid
) /* We've hit the top */
3426 if (rw
== RW_READER
) { /* i.e. not the first pass */
3427 int error
= zfs_zget(zp
->z_zfsvfs
, oidp
, &zp
);
3432 (void) sa_lookup(zp
->z_sa_hdl
, SA_ZPL_PARENT(zp
->z_zfsvfs
),
3433 &oidp
, sizeof (oidp
));
3434 rwlp
= &zp
->z_parent_lock
;
3437 } while (zp
->z_id
!= sdzp
->z_id
);
3443 * Move an entry from the provided source directory to the target
3444 * directory. Change the entry name as indicated.
3446 * IN: sdvp - Source directory containing the "old entry".
3447 * snm - Old entry name.
3448 * tdvp - Target directory to contain the "new entry".
3449 * tnm - New entry name.
3450 * cr - credentials of caller.
3451 * ct - caller context
3452 * flags - case flags
3454 * RETURN: 0 on success, error code on failure.
3457 * sdvp,tdvp - ctime|mtime updated
3461 zfs_rename(vnode_t
*sdvp
, char *snm
, vnode_t
*tdvp
, char *tnm
, cred_t
*cr
,
3462 caller_context_t
*ct
, int flags
)
3464 znode_t
*tdzp
, *szp
, *tzp
;
3465 znode_t
*sdzp
= VTOZ(sdvp
);
3466 zfsvfs_t
*zfsvfs
= sdzp
->z_zfsvfs
;
3469 zfs_dirlock_t
*sdl
, *tdl
;
3472 int cmp
, serr
, terr
;
3473 int error
= 0, rm_err
= 0;
3475 boolean_t waited
= B_FALSE
;
3478 ZFS_VERIFY_ZP(sdzp
);
3479 zilog
= zfsvfs
->z_log
;
3482 * Make sure we have the real vp for the target directory.
3484 if (VOP_REALVP(tdvp
, &realvp
, ct
) == 0)
3488 ZFS_VERIFY_ZP(tdzp
);
3491 * We check z_zfsvfs rather than v_vfsp here, because snapshots and the
3492 * ctldir appear to have the same v_vfsp.
3494 if (tdzp
->z_zfsvfs
!= zfsvfs
|| zfsctl_is_node(tdvp
)) {
3496 return (SET_ERROR(EXDEV
));
3499 if (zfsvfs
->z_utf8
&& u8_validate(tnm
,
3500 strlen(tnm
), NULL
, U8_VALIDATE_ENTIRE
, &error
) < 0) {
3502 return (SET_ERROR(EILSEQ
));
3505 if (flags
& FIGNORECASE
)
3514 * This is to prevent the creation of links into attribute space
3515 * by renaming a linked file into/outof an attribute directory.
3516 * See the comment in zfs_link() for why this is considered bad.
3518 if ((tdzp
->z_pflags
& ZFS_XATTR
) != (sdzp
->z_pflags
& ZFS_XATTR
)) {
3520 return (SET_ERROR(EINVAL
));
3524 * Lock source and target directory entries. To prevent deadlock,
3525 * a lock ordering must be defined. We lock the directory with
3526 * the smallest object id first, or if it's a tie, the one with
3527 * the lexically first name.
3529 if (sdzp
->z_id
< tdzp
->z_id
) {
3531 } else if (sdzp
->z_id
> tdzp
->z_id
) {
3535 * First compare the two name arguments without
3536 * considering any case folding.
3538 int nofold
= (zfsvfs
->z_norm
& ~U8_TEXTPREP_TOUPPER
);
3540 cmp
= u8_strcmp(snm
, tnm
, 0, nofold
, U8_UNICODE_LATEST
, &error
);
3541 ASSERT(error
== 0 || !zfsvfs
->z_utf8
);
3544 * POSIX: "If the old argument and the new argument
3545 * both refer to links to the same existing file,
3546 * the rename() function shall return successfully
3547 * and perform no other action."
3553 * If the file system is case-folding, then we may
3554 * have some more checking to do. A case-folding file
3555 * system is either supporting mixed case sensitivity
3556 * access or is completely case-insensitive. Note
3557 * that the file system is always case preserving.
3559 * In mixed sensitivity mode case sensitive behavior
3560 * is the default. FIGNORECASE must be used to
3561 * explicitly request case insensitive behavior.
3563 * If the source and target names provided differ only
3564 * by case (e.g., a request to rename 'tim' to 'Tim'),
3565 * we will treat this as a special case in the
3566 * case-insensitive mode: as long as the source name
3567 * is an exact match, we will allow this to proceed as
3568 * a name-change request.
3570 if ((zfsvfs
->z_case
== ZFS_CASE_INSENSITIVE
||
3571 (zfsvfs
->z_case
== ZFS_CASE_MIXED
&&
3572 flags
& FIGNORECASE
)) &&
3573 u8_strcmp(snm
, tnm
, 0, zfsvfs
->z_norm
, U8_UNICODE_LATEST
,
3576 * case preserving rename request, require exact
3585 * If the source and destination directories are the same, we should
3586 * grab the z_name_lock of that directory only once.
3590 rw_enter(&sdzp
->z_name_lock
, RW_READER
);
3594 serr
= zfs_dirent_lock(&sdl
, sdzp
, snm
, &szp
,
3595 ZEXISTS
| zflg
, NULL
, NULL
);
3596 terr
= zfs_dirent_lock(&tdl
,
3597 tdzp
, tnm
, &tzp
, ZRENAMING
| zflg
, NULL
, NULL
);
3599 terr
= zfs_dirent_lock(&tdl
,
3600 tdzp
, tnm
, &tzp
, zflg
, NULL
, NULL
);
3601 serr
= zfs_dirent_lock(&sdl
,
3602 sdzp
, snm
, &szp
, ZEXISTS
| ZRENAMING
| zflg
,
3608 * Source entry invalid or not there.
3611 zfs_dirent_unlock(tdl
);
3617 rw_exit(&sdzp
->z_name_lock
);
3619 if (strcmp(snm
, "..") == 0)
3620 serr
= SET_ERROR(EINVAL
);
3625 zfs_dirent_unlock(sdl
);
3629 rw_exit(&sdzp
->z_name_lock
);
3631 if (strcmp(tnm
, "..") == 0)
3632 terr
= SET_ERROR(EINVAL
);
3638 * Must have write access at the source to remove the old entry
3639 * and write access at the target to create the new entry.
3640 * Note that if target and source are the same, this can be
3641 * done in a single check.
3644 if (error
= zfs_zaccess_rename(sdzp
, szp
, tdzp
, tzp
, cr
))
3647 if (ZTOV(szp
)->v_type
== VDIR
) {
3649 * Check to make sure rename is valid.
3650 * Can't do a move like this: /usr/a/b to /usr/a/b/c/d
3652 if (error
= zfs_rename_lock(szp
, tdzp
, sdzp
, &zl
))
3657 * Does target exist?
3661 * Source and target must be the same type.
3663 if (ZTOV(szp
)->v_type
== VDIR
) {
3664 if (ZTOV(tzp
)->v_type
!= VDIR
) {
3665 error
= SET_ERROR(ENOTDIR
);
3669 if (ZTOV(tzp
)->v_type
== VDIR
) {
3670 error
= SET_ERROR(EISDIR
);
3675 * POSIX dictates that when the source and target
3676 * entries refer to the same file object, rename
3677 * must do nothing and exit without error.
3679 if (szp
->z_id
== tzp
->z_id
) {
3685 vnevent_pre_rename_src(ZTOV(szp
), sdvp
, snm
, ct
);
3687 vnevent_pre_rename_dest(ZTOV(tzp
), tdvp
, tnm
, ct
);
3690 * notify the target directory if it is not the same
3691 * as source directory.
3694 vnevent_pre_rename_dest_dir(tdvp
, ZTOV(szp
), tnm
, ct
);
3697 tx
= dmu_tx_create(zfsvfs
->z_os
);
3698 dmu_tx_hold_sa(tx
, szp
->z_sa_hdl
, B_FALSE
);
3699 dmu_tx_hold_sa(tx
, sdzp
->z_sa_hdl
, B_FALSE
);
3700 dmu_tx_hold_zap(tx
, sdzp
->z_id
, FALSE
, snm
);
3701 dmu_tx_hold_zap(tx
, tdzp
->z_id
, TRUE
, tnm
);
3703 dmu_tx_hold_sa(tx
, tdzp
->z_sa_hdl
, B_FALSE
);
3704 zfs_sa_upgrade_txholds(tx
, tdzp
);
3707 dmu_tx_hold_sa(tx
, tzp
->z_sa_hdl
, B_FALSE
);
3708 zfs_sa_upgrade_txholds(tx
, tzp
);
3711 zfs_sa_upgrade_txholds(tx
, szp
);
3712 dmu_tx_hold_zap(tx
, zfsvfs
->z_unlinkedobj
, FALSE
, NULL
);
3713 error
= dmu_tx_assign(tx
, (waited
? TXG_NOTHROTTLE
: 0) | TXG_NOWAIT
);
3716 zfs_rename_unlock(&zl
);
3717 zfs_dirent_unlock(sdl
);
3718 zfs_dirent_unlock(tdl
);
3721 rw_exit(&sdzp
->z_name_lock
);
3726 if (error
== ERESTART
) {
3737 if (tzp
) /* Attempt to remove the existing target */
3738 error
= rm_err
= zfs_link_destroy(tdl
, tzp
, tx
, zflg
, NULL
);
3741 error
= zfs_link_create(tdl
, szp
, tx
, ZRENAMING
);
3743 szp
->z_pflags
|= ZFS_AV_MODIFIED
;
3745 error
= sa_update(szp
->z_sa_hdl
, SA_ZPL_FLAGS(zfsvfs
),
3746 (void *)&szp
->z_pflags
, sizeof (uint64_t), tx
);
3749 error
= zfs_link_destroy(sdl
, szp
, tx
, ZRENAMING
, NULL
);
3751 zfs_log_rename(zilog
, tx
, TX_RENAME
|
3752 (flags
& FIGNORECASE
? TX_CI
: 0), sdzp
,
3753 sdl
->dl_name
, tdzp
, tdl
->dl_name
, szp
);
3756 * Update path information for the target vnode
3758 vn_renamepath(tdvp
, ZTOV(szp
), tnm
,
3762 * At this point, we have successfully created
3763 * the target name, but have failed to remove
3764 * the source name. Since the create was done
3765 * with the ZRENAMING flag, there are
3766 * complications; for one, the link count is
3767 * wrong. The easiest way to deal with this
3768 * is to remove the newly created target, and
3769 * return the original error. This must
3770 * succeed; fortunately, it is very unlikely to
3771 * fail, since we just created it.
3773 VERIFY3U(zfs_link_destroy(tdl
, szp
, tx
,
3774 ZRENAMING
, NULL
), ==, 0);
3781 if (tzp
&& rm_err
== 0)
3782 vnevent_rename_dest(ZTOV(tzp
), tdvp
, tnm
, ct
);
3785 vnevent_rename_src(ZTOV(szp
), sdvp
, snm
, ct
);
3786 /* notify the target dir if it is not the same as source dir */
3788 vnevent_rename_dest_dir(tdvp
, ct
);
3792 zfs_rename_unlock(&zl
);
3794 zfs_dirent_unlock(sdl
);
3795 zfs_dirent_unlock(tdl
);
3798 rw_exit(&sdzp
->z_name_lock
);
3805 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
3806 zil_commit(zilog
, 0);
3813 * Insert the indicated symbolic reference entry into the directory.
3815 * IN: dvp - Directory to contain new symbolic link.
3816 * link - Name for new symlink entry.
3817 * vap - Attributes of new entry.
3818 * cr - credentials of caller.
3819 * ct - caller context
3820 * flags - case flags
3822 * RETURN: 0 on success, error code on failure.
3825 * dvp - ctime|mtime updated
3829 zfs_symlink(vnode_t
*dvp
, char *name
, vattr_t
*vap
, char *link
, cred_t
*cr
,
3830 caller_context_t
*ct
, int flags
)
3832 znode_t
*zp
, *dzp
= VTOZ(dvp
);
3835 zfsvfs_t
*zfsvfs
= dzp
->z_zfsvfs
;
3837 uint64_t len
= strlen(link
);
3840 zfs_acl_ids_t acl_ids
;
3841 boolean_t fuid_dirtied
;
3842 uint64_t txtype
= TX_SYMLINK
;
3843 boolean_t waited
= B_FALSE
;
3845 ASSERT(vap
->va_type
== VLNK
);
3849 zilog
= zfsvfs
->z_log
;
3851 if (zfsvfs
->z_utf8
&& u8_validate(name
, strlen(name
),
3852 NULL
, U8_VALIDATE_ENTIRE
, &error
) < 0) {
3854 return (SET_ERROR(EILSEQ
));
3856 if (flags
& FIGNORECASE
)
3859 if (len
> MAXPATHLEN
) {
3861 return (SET_ERROR(ENAMETOOLONG
));
3864 if ((error
= zfs_acl_ids_create(dzp
, 0,
3865 vap
, cr
, NULL
, &acl_ids
)) != 0) {
3871 * Attempt to lock directory; fail if entry already exists.
3873 error
= zfs_dirent_lock(&dl
, dzp
, name
, &zp
, zflg
, NULL
, NULL
);
3875 zfs_acl_ids_free(&acl_ids
);
3880 if (error
= zfs_zaccess(dzp
, ACE_ADD_FILE
, 0, B_FALSE
, cr
)) {
3881 zfs_acl_ids_free(&acl_ids
);
3882 zfs_dirent_unlock(dl
);
3887 if (zfs_acl_ids_overquota(zfsvfs
, &acl_ids
)) {
3888 zfs_acl_ids_free(&acl_ids
);
3889 zfs_dirent_unlock(dl
);
3891 return (SET_ERROR(EDQUOT
));
3893 tx
= dmu_tx_create(zfsvfs
->z_os
);
3894 fuid_dirtied
= zfsvfs
->z_fuid_dirty
;
3895 dmu_tx_hold_write(tx
, DMU_NEW_OBJECT
, 0, MAX(1, len
));
3896 dmu_tx_hold_zap(tx
, dzp
->z_id
, TRUE
, name
);
3897 dmu_tx_hold_sa_create(tx
, acl_ids
.z_aclp
->z_acl_bytes
+
3898 ZFS_SA_BASE_ATTR_SIZE
+ len
);
3899 dmu_tx_hold_sa(tx
, dzp
->z_sa_hdl
, B_FALSE
);
3900 if (!zfsvfs
->z_use_sa
&& acl_ids
.z_aclp
->z_acl_bytes
> ZFS_ACE_SPACE
) {
3901 dmu_tx_hold_write(tx
, DMU_NEW_OBJECT
, 0,
3902 acl_ids
.z_aclp
->z_acl_bytes
);
3905 zfs_fuid_txhold(zfsvfs
, tx
);
3906 error
= dmu_tx_assign(tx
, (waited
? TXG_NOTHROTTLE
: 0) | TXG_NOWAIT
);
3908 zfs_dirent_unlock(dl
);
3909 if (error
== ERESTART
) {
3915 zfs_acl_ids_free(&acl_ids
);
3922 * Create a new object for the symlink.
3923 * for version 4 ZPL datsets the symlink will be an SA attribute
3925 zfs_mknode(dzp
, vap
, tx
, cr
, 0, &zp
, &acl_ids
);
3928 zfs_fuid_sync(zfsvfs
, tx
);
3930 mutex_enter(&zp
->z_lock
);
3932 error
= sa_update(zp
->z_sa_hdl
, SA_ZPL_SYMLINK(zfsvfs
),
3935 zfs_sa_symlink(zp
, link
, len
, tx
);
3936 mutex_exit(&zp
->z_lock
);
3939 (void) sa_update(zp
->z_sa_hdl
, SA_ZPL_SIZE(zfsvfs
),
3940 &zp
->z_size
, sizeof (zp
->z_size
), tx
);
3942 * Insert the new object into the directory.
3944 (void) zfs_link_create(dl
, zp
, tx
, ZNEW
);
3946 if (flags
& FIGNORECASE
)
3948 zfs_log_symlink(zilog
, tx
, txtype
, dzp
, zp
, name
, link
);
3950 zfs_acl_ids_free(&acl_ids
);
3954 zfs_dirent_unlock(dl
);
3958 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
3959 zil_commit(zilog
, 0);
3966 * Return, in the buffer contained in the provided uio structure,
3967 * the symbolic path referred to by vp.
3969 * IN: vp - vnode of symbolic link.
3970 * uio - structure to contain the link path.
3971 * cr - credentials of caller.
3972 * ct - caller context
3974 * OUT: uio - structure containing the link path.
3976 * RETURN: 0 on success, error code on failure.
3979 * vp - atime updated
3983 zfs_readlink(vnode_t
*vp
, uio_t
*uio
, cred_t
*cr
, caller_context_t
*ct
)
3985 znode_t
*zp
= VTOZ(vp
);
3986 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
3992 mutex_enter(&zp
->z_lock
);
3994 error
= sa_lookup_uio(zp
->z_sa_hdl
,
3995 SA_ZPL_SYMLINK(zfsvfs
), uio
);
3997 error
= zfs_sa_readlink(zp
, uio
);
3998 mutex_exit(&zp
->z_lock
);
4000 ZFS_ACCESSTIME_STAMP(zfsvfs
, zp
);
4007 * Insert a new entry into directory tdvp referencing svp.
4009 * IN: tdvp - Directory to contain new entry.
4010 * svp - vnode of new entry.
4011 * name - name of new entry.
4012 * cr - credentials of caller.
4013 * ct - caller context
4015 * RETURN: 0 on success, error code on failure.
4018 * tdvp - ctime|mtime updated
4019 * svp - ctime updated
4023 zfs_link(vnode_t
*tdvp
, vnode_t
*svp
, char *name
, cred_t
*cr
,
4024 caller_context_t
*ct
, int flags
)
4026 znode_t
*dzp
= VTOZ(tdvp
);
4028 zfsvfs_t
*zfsvfs
= dzp
->z_zfsvfs
;
4037 boolean_t waited
= B_FALSE
;
4039 ASSERT(tdvp
->v_type
== VDIR
);
4043 zilog
= zfsvfs
->z_log
;
4045 if (VOP_REALVP(svp
, &realvp
, ct
) == 0)
4049 * POSIX dictates that we return EPERM here.
4050 * Better choices include ENOTSUP or EISDIR.
4052 if (svp
->v_type
== VDIR
) {
4054 return (SET_ERROR(EPERM
));
4061 * We check z_zfsvfs rather than v_vfsp here, because snapshots and the
4062 * ctldir appear to have the same v_vfsp.
4064 if (szp
->z_zfsvfs
!= zfsvfs
|| zfsctl_is_node(svp
)) {
4066 return (SET_ERROR(EXDEV
));
4069 /* Prevent links to .zfs/shares files */
4071 if ((error
= sa_lookup(szp
->z_sa_hdl
, SA_ZPL_PARENT(zfsvfs
),
4072 &parent
, sizeof (uint64_t))) != 0) {
4076 if (parent
== zfsvfs
->z_shares_dir
) {
4078 return (SET_ERROR(EPERM
));
4081 if (zfsvfs
->z_utf8
&& u8_validate(name
,
4082 strlen(name
), NULL
, U8_VALIDATE_ENTIRE
, &error
) < 0) {
4084 return (SET_ERROR(EILSEQ
));
4086 if (flags
& FIGNORECASE
)
4090 * We do not support links between attributes and non-attributes
4091 * because of the potential security risk of creating links
4092 * into "normal" file space in order to circumvent restrictions
4093 * imposed in attribute space.
4095 if ((szp
->z_pflags
& ZFS_XATTR
) != (dzp
->z_pflags
& ZFS_XATTR
)) {
4097 return (SET_ERROR(EINVAL
));
4101 owner
= zfs_fuid_map_id(zfsvfs
, szp
->z_uid
, cr
, ZFS_OWNER
);
4102 if (owner
!= crgetuid(cr
) && secpolicy_basic_link(cr
) != 0) {
4104 return (SET_ERROR(EPERM
));
4107 if (error
= zfs_zaccess(dzp
, ACE_ADD_FILE
, 0, B_FALSE
, cr
)) {
4114 * Attempt to lock directory; fail if entry already exists.
4116 error
= zfs_dirent_lock(&dl
, dzp
, name
, &tzp
, zf
, NULL
, NULL
);
4122 tx
= dmu_tx_create(zfsvfs
->z_os
);
4123 dmu_tx_hold_sa(tx
, szp
->z_sa_hdl
, B_FALSE
);
4124 dmu_tx_hold_zap(tx
, dzp
->z_id
, TRUE
, name
);
4125 zfs_sa_upgrade_txholds(tx
, szp
);
4126 zfs_sa_upgrade_txholds(tx
, dzp
);
4127 error
= dmu_tx_assign(tx
, (waited
? TXG_NOTHROTTLE
: 0) | TXG_NOWAIT
);
4129 zfs_dirent_unlock(dl
);
4130 if (error
== ERESTART
) {
4141 error
= zfs_link_create(dl
, szp
, tx
, 0);
4144 uint64_t txtype
= TX_LINK
;
4145 if (flags
& FIGNORECASE
)
4147 zfs_log_link(zilog
, tx
, txtype
, dzp
, szp
, name
);
4152 zfs_dirent_unlock(dl
);
4155 vnevent_link(svp
, ct
);
4158 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
4159 zil_commit(zilog
, 0);
4166 * zfs_null_putapage() is used when the file system has been force
4167 * unmounted. It just drops the pages.
4171 zfs_null_putapage(vnode_t
*vp
, page_t
*pp
, u_offset_t
*offp
,
4172 size_t *lenp
, int flags
, cred_t
*cr
)
4174 pvn_write_done(pp
, B_INVAL
|B_FORCE
|B_ERROR
);
4179 * Push a page out to disk, klustering if possible.
4181 * IN: vp - file to push page to.
4182 * pp - page to push.
4183 * flags - additional flags.
4184 * cr - credentials of caller.
4186 * OUT: offp - start of range pushed.
4187 * lenp - len of range pushed.
4189 * RETURN: 0 on success, error code on failure.
4191 * NOTE: callers must have locked the page to be pushed. On
4192 * exit, the page (and all other pages in the kluster) must be
4197 zfs_putapage(vnode_t
*vp
, page_t
*pp
, u_offset_t
*offp
,
4198 size_t *lenp
, int flags
, cred_t
*cr
)
4200 znode_t
*zp
= VTOZ(vp
);
4201 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4203 u_offset_t off
, koff
;
4210 * If our blocksize is bigger than the page size, try to kluster
4211 * multiple pages so that we write a full block (thus avoiding
4212 * a read-modify-write).
4214 if (off
< zp
->z_size
&& zp
->z_blksz
> PAGESIZE
) {
4215 klen
= P2ROUNDUP((ulong_t
)zp
->z_blksz
, PAGESIZE
);
4216 koff
= ISP2(klen
) ? P2ALIGN(off
, (u_offset_t
)klen
) : 0;
4217 ASSERT(koff
<= zp
->z_size
);
4218 if (koff
+ klen
> zp
->z_size
)
4219 klen
= P2ROUNDUP(zp
->z_size
- koff
, (uint64_t)PAGESIZE
);
4220 pp
= pvn_write_kluster(vp
, pp
, &off
, &len
, koff
, klen
, flags
);
4222 ASSERT3U(btop(len
), ==, btopr(len
));
4225 * Can't push pages past end-of-file.
4227 if (off
>= zp
->z_size
) {
4228 /* ignore all pages */
4231 } else if (off
+ len
> zp
->z_size
) {
4232 int npages
= btopr(zp
->z_size
- off
);
4235 page_list_break(&pp
, &trunc
, npages
);
4236 /* ignore pages past end of file */
4238 pvn_write_done(trunc
, flags
);
4239 len
= zp
->z_size
- off
;
4242 if (zfs_owner_overquota(zfsvfs
, zp
, B_FALSE
) ||
4243 zfs_owner_overquota(zfsvfs
, zp
, B_TRUE
)) {
4244 err
= SET_ERROR(EDQUOT
);
4247 tx
= dmu_tx_create(zfsvfs
->z_os
);
4248 dmu_tx_hold_write(tx
, zp
->z_id
, off
, len
);
4250 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_FALSE
);
4251 zfs_sa_upgrade_txholds(tx
, zp
);
4252 err
= dmu_tx_assign(tx
, TXG_WAIT
);
4258 if (zp
->z_blksz
<= PAGESIZE
) {
4259 caddr_t va
= zfs_map_page(pp
, S_READ
);
4260 ASSERT3U(len
, <=, PAGESIZE
);
4261 dmu_write(zfsvfs
->z_os
, zp
->z_id
, off
, len
, va
, tx
);
4262 zfs_unmap_page(pp
, va
);
4264 err
= dmu_write_pages(zfsvfs
->z_os
, zp
->z_id
, off
, len
, pp
, tx
);
4268 uint64_t mtime
[2], ctime
[2];
4269 sa_bulk_attr_t bulk
[3];
4272 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_MTIME(zfsvfs
), NULL
,
4274 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_CTIME(zfsvfs
), NULL
,
4276 SA_ADD_BULK_ATTR(bulk
, count
, SA_ZPL_FLAGS(zfsvfs
), NULL
,
4278 zfs_tstamp_update_setup(zp
, CONTENT_MODIFIED
, mtime
, ctime
,
4280 err
= sa_bulk_update(zp
->z_sa_hdl
, bulk
, count
, tx
);
4282 zfs_log_write(zfsvfs
->z_log
, tx
, TX_WRITE
, zp
, off
, len
, 0);
4287 pvn_write_done(pp
, (err
? B_ERROR
: 0) | flags
);
4297 * Copy the portion of the file indicated from pages into the file.
4298 * The pages are stored in a page list attached to the files vnode.
4300 * IN: vp - vnode of file to push page data to.
4301 * off - position in file to put data.
4302 * len - amount of data to write.
4303 * flags - flags to control the operation.
4304 * cr - credentials of caller.
4305 * ct - caller context.
4307 * RETURN: 0 on success, error code on failure.
4310 * vp - ctime|mtime updated
4314 zfs_putpage(vnode_t
*vp
, offset_t off
, size_t len
, int flags
, cred_t
*cr
,
4315 caller_context_t
*ct
)
4317 znode_t
*zp
= VTOZ(vp
);
4318 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4330 * There's nothing to do if no data is cached.
4332 if (!vn_has_cached_data(vp
)) {
4338 * Align this request to the file block size in case we kluster.
4339 * XXX - this can result in pretty aggresive locking, which can
4340 * impact simultanious read/write access. One option might be
4341 * to break up long requests (len == 0) into block-by-block
4342 * operations to get narrower locking.
4344 blksz
= zp
->z_blksz
;
4346 io_off
= P2ALIGN_TYPED(off
, blksz
, u_offset_t
);
4349 if (len
> 0 && ISP2(blksz
))
4350 io_len
= P2ROUNDUP_TYPED(len
+ (off
- io_off
), blksz
, size_t);
4356 * Search the entire vp list for pages >= io_off.
4358 rl
= zfs_range_lock(zp
, io_off
, UINT64_MAX
, RL_WRITER
);
4359 error
= pvn_vplist_dirty(vp
, io_off
, zfs_putapage
, flags
, cr
);
4362 rl
= zfs_range_lock(zp
, io_off
, io_len
, RL_WRITER
);
4364 if (off
> zp
->z_size
) {
4365 /* past end of file */
4366 zfs_range_unlock(rl
);
4371 len
= MIN(io_len
, P2ROUNDUP(zp
->z_size
, PAGESIZE
) - io_off
);
4373 for (off
= io_off
; io_off
< off
+ len
; io_off
+= io_len
) {
4374 if ((flags
& B_INVAL
) || ((flags
& B_ASYNC
) == 0)) {
4375 pp
= page_lookup(vp
, io_off
,
4376 (flags
& (B_INVAL
| B_FREE
)) ? SE_EXCL
: SE_SHARED
);
4378 pp
= page_lookup_nowait(vp
, io_off
,
4379 (flags
& B_FREE
) ? SE_EXCL
: SE_SHARED
);
4382 if (pp
!= NULL
&& pvn_getdirty(pp
, flags
)) {
4386 * Found a dirty page to push
4388 err
= zfs_putapage(vp
, pp
, &io_off
, &io_len
, flags
, cr
);
4396 zfs_range_unlock(rl
);
4397 if ((flags
& B_ASYNC
) == 0 || zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
4398 zil_commit(zfsvfs
->z_log
, zp
->z_id
);
4405 zfs_inactive(vnode_t
*vp
, cred_t
*cr
, caller_context_t
*ct
)
4407 znode_t
*zp
= VTOZ(vp
);
4408 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4411 rw_enter(&zfsvfs
->z_teardown_inactive_lock
, RW_READER
);
4412 if (zp
->z_sa_hdl
== NULL
) {
4414 * The fs has been unmounted, or we did a
4415 * suspend/resume and this file no longer exists.
4417 if (vn_has_cached_data(vp
)) {
4418 (void) pvn_vplist_dirty(vp
, 0, zfs_null_putapage
,
4422 mutex_enter(&zp
->z_lock
);
4423 mutex_enter(&vp
->v_lock
);
4424 ASSERT(vp
->v_count
== 1);
4426 mutex_exit(&vp
->v_lock
);
4427 mutex_exit(&zp
->z_lock
);
4428 rw_exit(&zfsvfs
->z_teardown_inactive_lock
);
4434 * Attempt to push any data in the page cache. If this fails
4435 * we will get kicked out later in zfs_zinactive().
4437 if (vn_has_cached_data(vp
)) {
4438 (void) pvn_vplist_dirty(vp
, 0, zfs_putapage
, B_INVAL
|B_ASYNC
,
4442 if (zp
->z_atime_dirty
&& zp
->z_unlinked
== 0) {
4443 dmu_tx_t
*tx
= dmu_tx_create(zfsvfs
->z_os
);
4445 dmu_tx_hold_sa(tx
, zp
->z_sa_hdl
, B_FALSE
);
4446 zfs_sa_upgrade_txholds(tx
, zp
);
4447 error
= dmu_tx_assign(tx
, TXG_WAIT
);
4451 mutex_enter(&zp
->z_lock
);
4452 (void) sa_update(zp
->z_sa_hdl
, SA_ZPL_ATIME(zfsvfs
),
4453 (void *)&zp
->z_atime
, sizeof (zp
->z_atime
), tx
);
4454 zp
->z_atime_dirty
= 0;
4455 mutex_exit(&zp
->z_lock
);
4461 rw_exit(&zfsvfs
->z_teardown_inactive_lock
);
4465 * Bounds-check the seek operation.
4467 * IN: vp - vnode seeking within
4468 * ooff - old file offset
4469 * noffp - pointer to new file offset
4470 * ct - caller context
4472 * RETURN: 0 on success, EINVAL if new offset invalid.
4476 zfs_seek(vnode_t
*vp
, offset_t ooff
, offset_t
*noffp
,
4477 caller_context_t
*ct
)
4479 if (vp
->v_type
== VDIR
)
4481 return ((*noffp
< 0 || *noffp
> MAXOFFSET_T
) ? EINVAL
: 0);
4485 * Pre-filter the generic locking function to trap attempts to place
4486 * a mandatory lock on a memory mapped file.
4489 zfs_frlock(vnode_t
*vp
, int cmd
, flock64_t
*bfp
, int flag
, offset_t offset
,
4490 flk_callback_t
*flk_cbp
, cred_t
*cr
, caller_context_t
*ct
)
4492 znode_t
*zp
= VTOZ(vp
);
4493 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4499 * We are following the UFS semantics with respect to mapcnt
4500 * here: If we see that the file is mapped already, then we will
4501 * return an error, but we don't worry about races between this
4502 * function and zfs_map().
4504 if (zp
->z_mapcnt
> 0 && MANDMODE(zp
->z_mode
)) {
4506 return (SET_ERROR(EAGAIN
));
4509 return (fs_frlock(vp
, cmd
, bfp
, flag
, offset
, flk_cbp
, cr
, ct
));
4513 * If we can't find a page in the cache, we will create a new page
4514 * and fill it with file data. For efficiency, we may try to fill
4515 * multiple pages at once (klustering) to fill up the supplied page
4516 * list. Note that the pages to be filled are held with an exclusive
4517 * lock to prevent access by other threads while they are being filled.
4520 zfs_fillpage(vnode_t
*vp
, u_offset_t off
, struct seg
*seg
,
4521 caddr_t addr
, page_t
*pl
[], size_t plsz
, enum seg_rw rw
)
4523 znode_t
*zp
= VTOZ(vp
);
4524 page_t
*pp
, *cur_pp
;
4525 objset_t
*os
= zp
->z_zfsvfs
->z_os
;
4526 u_offset_t io_off
, total
;
4530 if (plsz
== PAGESIZE
|| zp
->z_blksz
<= PAGESIZE
) {
4532 * We only have a single page, don't bother klustering
4536 pp
= page_create_va(vp
, io_off
, io_len
,
4537 PG_EXCL
| PG_WAIT
, seg
, addr
);
4540 * Try to find enough pages to fill the page list
4542 pp
= pvn_read_kluster(vp
, off
, seg
, addr
, &io_off
,
4543 &io_len
, off
, plsz
, 0);
4547 * The page already exists, nothing to do here.
4554 * Fill the pages in the kluster.
4557 for (total
= io_off
+ io_len
; io_off
< total
; io_off
+= PAGESIZE
) {
4560 ASSERT3U(io_off
, ==, cur_pp
->p_offset
);
4561 va
= zfs_map_page(cur_pp
, S_WRITE
);
4562 err
= dmu_read(os
, zp
->z_id
, io_off
, PAGESIZE
, va
,
4564 zfs_unmap_page(cur_pp
, va
);
4566 /* On error, toss the entire kluster */
4567 pvn_read_done(pp
, B_ERROR
);
4568 /* convert checksum errors into IO errors */
4570 err
= SET_ERROR(EIO
);
4573 cur_pp
= cur_pp
->p_next
;
4577 * Fill in the page list array from the kluster starting
4578 * from the desired offset `off'.
4579 * NOTE: the page list will always be null terminated.
4581 pvn_plist_init(pp
, pl
, plsz
, off
, io_len
, rw
);
4582 ASSERT(pl
== NULL
|| (*pl
)->p_offset
== off
);
4588 * Return pointers to the pages for the file region [off, off + len]
4589 * in the pl array. If plsz is greater than len, this function may
4590 * also return page pointers from after the specified region
4591 * (i.e. the region [off, off + plsz]). These additional pages are
4592 * only returned if they are already in the cache, or were created as
4593 * part of a klustered read.
4595 * IN: vp - vnode of file to get data from.
4596 * off - position in file to get data from.
4597 * len - amount of data to retrieve.
4598 * plsz - length of provided page list.
4599 * seg - segment to obtain pages for.
4600 * addr - virtual address of fault.
4601 * rw - mode of created pages.
4602 * cr - credentials of caller.
4603 * ct - caller context.
4605 * OUT: protp - protection mode of created pages.
4606 * pl - list of pages created.
4608 * RETURN: 0 on success, error code on failure.
4611 * vp - atime updated
4615 zfs_getpage(vnode_t
*vp
, offset_t off
, size_t len
, uint_t
*protp
,
4616 page_t
*pl
[], size_t plsz
, struct seg
*seg
, caddr_t addr
,
4617 enum seg_rw rw
, cred_t
*cr
, caller_context_t
*ct
)
4619 znode_t
*zp
= VTOZ(vp
);
4620 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4624 /* we do our own caching, faultahead is unnecessary */
4627 else if (len
> plsz
)
4630 len
= P2ROUNDUP(len
, PAGESIZE
);
4631 ASSERT(plsz
>= len
);
4640 * Loop through the requested range [off, off + len) looking
4641 * for pages. If we don't find a page, we will need to create
4642 * a new page and fill it with data from the file.
4645 if (*pl
= page_lookup(vp
, off
, SE_SHARED
))
4647 else if (err
= zfs_fillpage(vp
, off
, seg
, addr
, pl
, plsz
, rw
))
4650 ASSERT3U((*pl
)->p_offset
, ==, off
);
4654 ASSERT3U(len
, >=, PAGESIZE
);
4657 ASSERT3U(plsz
, >=, PAGESIZE
);
4664 * Fill out the page array with any pages already in the cache.
4667 (*pl
++ = page_lookup_nowait(vp
, off
, SE_SHARED
))) {
4674 * Release any pages we have previously locked.
4679 ZFS_ACCESSTIME_STAMP(zfsvfs
, zp
);
4689 * Request a memory map for a section of a file. This code interacts
4690 * with common code and the VM system as follows:
4692 * - common code calls mmap(), which ends up in smmap_common()
4693 * - this calls VOP_MAP(), which takes you into (say) zfs
4694 * - zfs_map() calls as_map(), passing segvn_create() as the callback
4695 * - segvn_create() creates the new segment and calls VOP_ADDMAP()
4696 * - zfs_addmap() updates z_mapcnt
4700 zfs_map(vnode_t
*vp
, offset_t off
, struct as
*as
, caddr_t
*addrp
,
4701 size_t len
, uchar_t prot
, uchar_t maxprot
, uint_t flags
, cred_t
*cr
,
4702 caller_context_t
*ct
)
4704 znode_t
*zp
= VTOZ(vp
);
4705 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4706 segvn_crargs_t vn_a
;
4713 * Note: ZFS_READONLY is handled in zfs_zaccess_common.
4716 if ((prot
& PROT_WRITE
) && (zp
->z_pflags
&
4717 (ZFS_IMMUTABLE
| ZFS_APPENDONLY
))) {
4719 return (SET_ERROR(EPERM
));
4722 if ((prot
& (PROT_READ
| PROT_EXEC
)) &&
4723 (zp
->z_pflags
& ZFS_AV_QUARANTINED
)) {
4725 return (SET_ERROR(EACCES
));
4728 if (vp
->v_flag
& VNOMAP
) {
4730 return (SET_ERROR(ENOSYS
));
4733 if (off
< 0 || len
> MAXOFFSET_T
- off
) {
4735 return (SET_ERROR(ENXIO
));
4738 if (vp
->v_type
!= VREG
) {
4740 return (SET_ERROR(ENODEV
));
4744 * If file is locked, disallow mapping.
4746 if (MANDMODE(zp
->z_mode
) && vn_has_flocks(vp
)) {
4748 return (SET_ERROR(EAGAIN
));
4752 error
= choose_addr(as
, addrp
, len
, off
, ADDR_VACALIGN
, flags
);
4760 vn_a
.offset
= (u_offset_t
)off
;
4761 vn_a
.type
= flags
& MAP_TYPE
;
4763 vn_a
.maxprot
= maxprot
;
4766 vn_a
.flags
= flags
& ~MAP_TYPE
;
4768 vn_a
.lgrp_mem_policy_flags
= 0;
4770 error
= as_map(as
, *addrp
, len
, segvn_create
, &vn_a
);
4779 zfs_addmap(vnode_t
*vp
, offset_t off
, struct as
*as
, caddr_t addr
,
4780 size_t len
, uchar_t prot
, uchar_t maxprot
, uint_t flags
, cred_t
*cr
,
4781 caller_context_t
*ct
)
4783 uint64_t pages
= btopr(len
);
4785 atomic_add_64(&VTOZ(vp
)->z_mapcnt
, pages
);
4790 * The reason we push dirty pages as part of zfs_delmap() is so that we get a
4791 * more accurate mtime for the associated file. Since we don't have a way of
4792 * detecting when the data was actually modified, we have to resort to
4793 * heuristics. If an explicit msync() is done, then we mark the mtime when the
4794 * last page is pushed. The problem occurs when the msync() call is omitted,
4795 * which by far the most common case:
4803 * putpage() via fsflush
4805 * If we wait until fsflush to come along, we can have a modification time that
4806 * is some arbitrary point in the future. In order to prevent this in the
4807 * common case, we flush pages whenever a (MAP_SHARED, PROT_WRITE) mapping is
4812 zfs_delmap(vnode_t
*vp
, offset_t off
, struct as
*as
, caddr_t addr
,
4813 size_t len
, uint_t prot
, uint_t maxprot
, uint_t flags
, cred_t
*cr
,
4814 caller_context_t
*ct
)
4816 uint64_t pages
= btopr(len
);
4818 ASSERT3U(VTOZ(vp
)->z_mapcnt
, >=, pages
);
4819 atomic_add_64(&VTOZ(vp
)->z_mapcnt
, -pages
);
4821 if ((flags
& MAP_SHARED
) && (prot
& PROT_WRITE
) &&
4822 vn_has_cached_data(vp
))
4823 (void) VOP_PUTPAGE(vp
, off
, len
, B_ASYNC
, cr
, ct
);
4829 * Free or allocate space in a file. Currently, this function only
4830 * supports the `F_FREESP' command. However, this command is somewhat
4831 * misnamed, as its functionality includes the ability to allocate as
4832 * well as free space.
4834 * IN: vp - vnode of file to free data in.
4835 * cmd - action to take (only F_FREESP supported).
4836 * bfp - section of file to free/alloc.
4837 * flag - current file open mode flags.
4838 * offset - current file offset.
4839 * cr - credentials of caller [UNUSED].
4840 * ct - caller context.
4842 * RETURN: 0 on success, error code on failure.
4845 * vp - ctime|mtime updated
4849 zfs_space(vnode_t
*vp
, int cmd
, flock64_t
*bfp
, int flag
,
4850 offset_t offset
, cred_t
*cr
, caller_context_t
*ct
)
4852 znode_t
*zp
= VTOZ(vp
);
4853 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4860 if (cmd
!= F_FREESP
) {
4862 return (SET_ERROR(EINVAL
));
4866 * In a case vp->v_vfsp != zp->z_zfsvfs->z_vfs (e.g. snapshots) our
4867 * callers might not be able to detect properly that we are read-only,
4868 * so check it explicitly here.
4870 if (zfsvfs
->z_vfs
->vfs_flag
& VFS_RDONLY
) {
4872 return (SET_ERROR(EROFS
));
4875 if (error
= convoff(vp
, bfp
, 0, offset
)) {
4880 if (bfp
->l_len
< 0) {
4882 return (SET_ERROR(EINVAL
));
4886 len
= bfp
->l_len
; /* 0 means from off to end of file */
4888 error
= zfs_freesp(zp
, off
, len
, flag
, TRUE
);
4890 if (error
== 0 && off
== 0 && len
== 0)
4891 vnevent_truncate(ZTOV(zp
), ct
);
4899 zfs_fid(vnode_t
*vp
, fid_t
*fidp
, caller_context_t
*ct
)
4901 znode_t
*zp
= VTOZ(vp
);
4902 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
4905 uint64_t object
= zp
->z_id
;
4912 if ((error
= sa_lookup(zp
->z_sa_hdl
, SA_ZPL_GEN(zfsvfs
),
4913 &gen64
, sizeof (uint64_t))) != 0) {
4918 gen
= (uint32_t)gen64
;
4920 size
= (zfsvfs
->z_parent
!= zfsvfs
) ? LONG_FID_LEN
: SHORT_FID_LEN
;
4921 if (fidp
->fid_len
< size
) {
4922 fidp
->fid_len
= size
;
4924 return (SET_ERROR(ENOSPC
));
4927 zfid
= (zfid_short_t
*)fidp
;
4929 zfid
->zf_len
= size
;
4931 for (i
= 0; i
< sizeof (zfid
->zf_object
); i
++)
4932 zfid
->zf_object
[i
] = (uint8_t)(object
>> (8 * i
));
4934 /* Must have a non-zero generation number to distinguish from .zfs */
4937 for (i
= 0; i
< sizeof (zfid
->zf_gen
); i
++)
4938 zfid
->zf_gen
[i
] = (uint8_t)(gen
>> (8 * i
));
4940 if (size
== LONG_FID_LEN
) {
4941 uint64_t objsetid
= dmu_objset_id(zfsvfs
->z_os
);
4944 zlfid
= (zfid_long_t
*)fidp
;
4946 for (i
= 0; i
< sizeof (zlfid
->zf_setid
); i
++)
4947 zlfid
->zf_setid
[i
] = (uint8_t)(objsetid
>> (8 * i
));
4949 /* XXX - this should be the generation number for the objset */
4950 for (i
= 0; i
< sizeof (zlfid
->zf_setgen
); i
++)
4951 zlfid
->zf_setgen
[i
] = 0;
4959 zfs_pathconf(vnode_t
*vp
, int cmd
, ulong_t
*valp
, cred_t
*cr
,
4960 caller_context_t
*ct
)
4972 case _PC_FILESIZEBITS
:
4976 case _PC_XATTR_EXISTS
:
4978 zfsvfs
= zp
->z_zfsvfs
;
4982 error
= zfs_dirent_lock(&dl
, zp
, "", &xzp
,
4983 ZXATTR
| ZEXISTS
| ZSHARED
, NULL
, NULL
);
4985 zfs_dirent_unlock(dl
);
4986 if (!zfs_dirempty(xzp
))
4989 } else if (error
== ENOENT
) {
4991 * If there aren't extended attributes, it's the
4992 * same as having zero of them.
4999 case _PC_SATTR_ENABLED
:
5000 case _PC_SATTR_EXISTS
:
5001 *valp
= vfs_has_feature(vp
->v_vfsp
, VFSFT_SYSATTR_VIEWS
) &&
5002 (vp
->v_type
== VREG
|| vp
->v_type
== VDIR
);
5005 case _PC_ACCESS_FILTERING
:
5006 *valp
= vfs_has_feature(vp
->v_vfsp
, VFSFT_ACCESS_FILTER
) &&
5010 case _PC_ACL_ENABLED
:
5011 *valp
= _ACL_ACE_ENABLED
;
5014 case _PC_MIN_HOLE_SIZE
:
5015 *valp
= (ulong_t
)SPA_MINBLOCKSIZE
;
5018 case _PC_TIMESTAMP_RESOLUTION
:
5019 /* nanosecond timestamp resolution */
5024 return (fs_pathconf(vp
, cmd
, valp
, cr
, ct
));
5030 zfs_getsecattr(vnode_t
*vp
, vsecattr_t
*vsecp
, int flag
, cred_t
*cr
,
5031 caller_context_t
*ct
)
5033 znode_t
*zp
= VTOZ(vp
);
5034 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
5036 boolean_t skipaclchk
= (flag
& ATTR_NOACLCHECK
) ? B_TRUE
: B_FALSE
;
5040 error
= zfs_getacl(zp
, vsecp
, skipaclchk
, cr
);
5048 zfs_setsecattr(vnode_t
*vp
, vsecattr_t
*vsecp
, int flag
, cred_t
*cr
,
5049 caller_context_t
*ct
)
5051 znode_t
*zp
= VTOZ(vp
);
5052 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
5054 boolean_t skipaclchk
= (flag
& ATTR_NOACLCHECK
) ? B_TRUE
: B_FALSE
;
5055 zilog_t
*zilog
= zfsvfs
->z_log
;
5060 error
= zfs_setacl(zp
, vsecp
, skipaclchk
, cr
);
5062 if (zfsvfs
->z_os
->os_sync
== ZFS_SYNC_ALWAYS
)
5063 zil_commit(zilog
, 0);
5070 * The smallest read we may consider to loan out an arcbuf.
5071 * This must be a power of 2.
5073 int zcr_blksz_min
= (1 << 10); /* 1K */
5075 * If set to less than the file block size, allow loaning out of an
5076 * arcbuf for a partial block read. This must be a power of 2.
5078 int zcr_blksz_max
= (1 << 17); /* 128K */
5082 zfs_reqzcbuf(vnode_t
*vp
, enum uio_rw ioflag
, xuio_t
*xuio
, cred_t
*cr
,
5083 caller_context_t
*ct
)
5085 znode_t
*zp
= VTOZ(vp
);
5086 zfsvfs_t
*zfsvfs
= zp
->z_zfsvfs
;
5087 int max_blksz
= zfsvfs
->z_max_blksz
;
5088 uio_t
*uio
= &xuio
->xu_uio
;
5089 ssize_t size
= uio
->uio_resid
;
5090 offset_t offset
= uio
->uio_loffset
;
5095 int preamble
, postamble
;
5097 if (xuio
->xu_type
!= UIOTYPE_ZEROCOPY
)
5098 return (SET_ERROR(EINVAL
));
5105 * Loan out an arc_buf for write if write size is bigger than
5106 * max_blksz, and the file's block size is also max_blksz.
5109 if (size
< blksz
|| zp
->z_blksz
!= blksz
) {
5111 return (SET_ERROR(EINVAL
));
5114 * Caller requests buffers for write before knowing where the
5115 * write offset might be (e.g. NFS TCP write).
5120 preamble
= P2PHASE(offset
, blksz
);
5122 preamble
= blksz
- preamble
;
5127 postamble
= P2PHASE(size
, blksz
);
5130 fullblk
= size
/ blksz
;
5131 (void) dmu_xuio_init(xuio
,
5132 (preamble
!= 0) + fullblk
+ (postamble
!= 0));
5133 DTRACE_PROBE3(zfs_reqzcbuf_align
, int, preamble
,
5134 int, postamble
, int,
5135 (preamble
!= 0) + fullblk
+ (postamble
!= 0));
5138 * Have to fix iov base/len for partial buffers. They
5139 * currently represent full arc_buf's.
5142 /* data begins in the middle of the arc_buf */
5143 abuf
= dmu_request_arcbuf(sa_get_db(zp
->z_sa_hdl
),
5146 (void) dmu_xuio_add(xuio
, abuf
,
5147 blksz
- preamble
, preamble
);
5150 for (i
= 0; i
< fullblk
; i
++) {
5151 abuf
= dmu_request_arcbuf(sa_get_db(zp
->z_sa_hdl
),
5154 (void) dmu_xuio_add(xuio
, abuf
, 0, blksz
);
5158 /* data ends in the middle of the arc_buf */
5159 abuf
= dmu_request_arcbuf(sa_get_db(zp
->z_sa_hdl
),
5162 (void) dmu_xuio_add(xuio
, abuf
, 0, postamble
);
5167 * Loan out an arc_buf for read if the read size is larger than
5168 * the current file block size. Block alignment is not
5169 * considered. Partial arc_buf will be loaned out for read.
5171 blksz
= zp
->z_blksz
;
5172 if (blksz
< zcr_blksz_min
)
5173 blksz
= zcr_blksz_min
;
5174 if (blksz
> zcr_blksz_max
)
5175 blksz
= zcr_blksz_max
;
5176 /* avoid potential complexity of dealing with it */
5177 if (blksz
> max_blksz
) {
5179 return (SET_ERROR(EINVAL
));
5182 maxsize
= zp
->z_size
- uio
->uio_loffset
;
5186 if (size
< blksz
|| vn_has_cached_data(vp
)) {
5188 return (SET_ERROR(EINVAL
));
5193 return (SET_ERROR(EINVAL
));
5196 uio
->uio_extflg
= UIO_XUIO
;
5197 XUIO_XUZC_RW(xuio
) = ioflag
;
5204 zfs_retzcbuf(vnode_t
*vp
, xuio_t
*xuio
, cred_t
*cr
, caller_context_t
*ct
)
5208 int ioflag
= XUIO_XUZC_RW(xuio
);
5210 ASSERT(xuio
->xu_type
== UIOTYPE_ZEROCOPY
);
5212 i
= dmu_xuio_cnt(xuio
);
5214 abuf
= dmu_xuio_arcbuf(xuio
, i
);
5216 * if abuf == NULL, it must be a write buffer
5217 * that has been returned in zfs_write().
5220 dmu_return_arcbuf(abuf
);
5221 ASSERT(abuf
|| ioflag
== UIO_WRITE
);
5224 dmu_xuio_fini(xuio
);
5229 * Predeclare these here so that the compiler assumes that
5230 * this is an "old style" function declaration that does
5231 * not include arguments => we won't get type mismatch errors
5232 * in the initializations that follow.
5234 static int zfs_inval();
5235 static int zfs_isdir();
5240 return (SET_ERROR(EINVAL
));
5246 return (SET_ERROR(EISDIR
));
5249 * Directory vnode operations template
5251 vnodeops_t
*zfs_dvnodeops
;
5252 const fs_operation_def_t zfs_dvnodeops_template
[] = {
5253 VOPNAME_OPEN
, { .vop_open
= zfs_open
},
5254 VOPNAME_CLOSE
, { .vop_close
= zfs_close
},
5255 VOPNAME_READ
, { .error
= zfs_isdir
},
5256 VOPNAME_WRITE
, { .error
= zfs_isdir
},
5257 VOPNAME_IOCTL
, { .vop_ioctl
= zfs_ioctl
},
5258 VOPNAME_GETATTR
, { .vop_getattr
= zfs_getattr
},
5259 VOPNAME_SETATTR
, { .vop_setattr
= zfs_setattr
},
5260 VOPNAME_ACCESS
, { .vop_access
= zfs_access
},
5261 VOPNAME_LOOKUP
, { .vop_lookup
= zfs_lookup
},
5262 VOPNAME_CREATE
, { .vop_create
= zfs_create
},
5263 VOPNAME_REMOVE
, { .vop_remove
= zfs_remove
},
5264 VOPNAME_LINK
, { .vop_link
= zfs_link
},
5265 VOPNAME_RENAME
, { .vop_rename
= zfs_rename
},
5266 VOPNAME_MKDIR
, { .vop_mkdir
= zfs_mkdir
},
5267 VOPNAME_RMDIR
, { .vop_rmdir
= zfs_rmdir
},
5268 VOPNAME_READDIR
, { .vop_readdir
= zfs_readdir
},
5269 VOPNAME_SYMLINK
, { .vop_symlink
= zfs_symlink
},
5270 VOPNAME_FSYNC
, { .vop_fsync
= zfs_fsync
},
5271 VOPNAME_INACTIVE
, { .vop_inactive
= zfs_inactive
},
5272 VOPNAME_FID
, { .vop_fid
= zfs_fid
},
5273 VOPNAME_SEEK
, { .vop_seek
= zfs_seek
},
5274 VOPNAME_PATHCONF
, { .vop_pathconf
= zfs_pathconf
},
5275 VOPNAME_GETSECATTR
, { .vop_getsecattr
= zfs_getsecattr
},
5276 VOPNAME_SETSECATTR
, { .vop_setsecattr
= zfs_setsecattr
},
5277 VOPNAME_VNEVENT
, { .vop_vnevent
= fs_vnevent_support
},
5282 * Regular file vnode operations template
5284 vnodeops_t
*zfs_fvnodeops
;
5285 const fs_operation_def_t zfs_fvnodeops_template
[] = {
5286 VOPNAME_OPEN
, { .vop_open
= zfs_open
},
5287 VOPNAME_CLOSE
, { .vop_close
= zfs_close
},
5288 VOPNAME_READ
, { .vop_read
= zfs_read
},
5289 VOPNAME_WRITE
, { .vop_write
= zfs_write
},
5290 VOPNAME_IOCTL
, { .vop_ioctl
= zfs_ioctl
},
5291 VOPNAME_GETATTR
, { .vop_getattr
= zfs_getattr
},
5292 VOPNAME_SETATTR
, { .vop_setattr
= zfs_setattr
},
5293 VOPNAME_ACCESS
, { .vop_access
= zfs_access
},
5294 VOPNAME_LOOKUP
, { .vop_lookup
= zfs_lookup
},
5295 VOPNAME_RENAME
, { .vop_rename
= zfs_rename
},
5296 VOPNAME_FSYNC
, { .vop_fsync
= zfs_fsync
},
5297 VOPNAME_INACTIVE
, { .vop_inactive
= zfs_inactive
},
5298 VOPNAME_FID
, { .vop_fid
= zfs_fid
},
5299 VOPNAME_SEEK
, { .vop_seek
= zfs_seek
},
5300 VOPNAME_FRLOCK
, { .vop_frlock
= zfs_frlock
},
5301 VOPNAME_SPACE
, { .vop_space
= zfs_space
},
5302 VOPNAME_GETPAGE
, { .vop_getpage
= zfs_getpage
},
5303 VOPNAME_PUTPAGE
, { .vop_putpage
= zfs_putpage
},
5304 VOPNAME_MAP
, { .vop_map
= zfs_map
},
5305 VOPNAME_ADDMAP
, { .vop_addmap
= zfs_addmap
},
5306 VOPNAME_DELMAP
, { .vop_delmap
= zfs_delmap
},
5307 VOPNAME_PATHCONF
, { .vop_pathconf
= zfs_pathconf
},
5308 VOPNAME_GETSECATTR
, { .vop_getsecattr
= zfs_getsecattr
},
5309 VOPNAME_SETSECATTR
, { .vop_setsecattr
= zfs_setsecattr
},
5310 VOPNAME_VNEVENT
, { .vop_vnevent
= fs_vnevent_support
},
5311 VOPNAME_REQZCBUF
, { .vop_reqzcbuf
= zfs_reqzcbuf
},
5312 VOPNAME_RETZCBUF
, { .vop_retzcbuf
= zfs_retzcbuf
},
5317 * Symbolic link vnode operations template
5319 vnodeops_t
*zfs_symvnodeops
;
5320 const fs_operation_def_t zfs_symvnodeops_template
[] = {
5321 VOPNAME_GETATTR
, { .vop_getattr
= zfs_getattr
},
5322 VOPNAME_SETATTR
, { .vop_setattr
= zfs_setattr
},
5323 VOPNAME_ACCESS
, { .vop_access
= zfs_access
},
5324 VOPNAME_RENAME
, { .vop_rename
= zfs_rename
},
5325 VOPNAME_READLINK
, { .vop_readlink
= zfs_readlink
},
5326 VOPNAME_INACTIVE
, { .vop_inactive
= zfs_inactive
},
5327 VOPNAME_FID
, { .vop_fid
= zfs_fid
},
5328 VOPNAME_PATHCONF
, { .vop_pathconf
= zfs_pathconf
},
5329 VOPNAME_VNEVENT
, { .vop_vnevent
= fs_vnevent_support
},
5334 * special share hidden files vnode operations template
5336 vnodeops_t
*zfs_sharevnodeops
;
5337 const fs_operation_def_t zfs_sharevnodeops_template
[] = {
5338 VOPNAME_GETATTR
, { .vop_getattr
= zfs_getattr
},
5339 VOPNAME_ACCESS
, { .vop_access
= zfs_access
},
5340 VOPNAME_INACTIVE
, { .vop_inactive
= zfs_inactive
},
5341 VOPNAME_FID
, { .vop_fid
= zfs_fid
},
5342 VOPNAME_PATHCONF
, { .vop_pathconf
= zfs_pathconf
},
5343 VOPNAME_GETSECATTR
, { .vop_getsecattr
= zfs_getsecattr
},
5344 VOPNAME_SETSECATTR
, { .vop_setsecattr
= zfs_setsecattr
},
5345 VOPNAME_VNEVENT
, { .vop_vnevent
= fs_vnevent_support
},
5350 * Extended attribute directory vnode operations template
5352 * This template is identical to the directory vnodes
5353 * operation template except for restricted operations:
5357 * Note that there are other restrictions embedded in:
5358 * zfs_create() - restrict type to VREG
5359 * zfs_link() - no links into/out of attribute space
5360 * zfs_rename() - no moves into/out of attribute space
5362 vnodeops_t
*zfs_xdvnodeops
;
5363 const fs_operation_def_t zfs_xdvnodeops_template
[] = {
5364 VOPNAME_OPEN
, { .vop_open
= zfs_open
},
5365 VOPNAME_CLOSE
, { .vop_close
= zfs_close
},
5366 VOPNAME_IOCTL
, { .vop_ioctl
= zfs_ioctl
},
5367 VOPNAME_GETATTR
, { .vop_getattr
= zfs_getattr
},
5368 VOPNAME_SETATTR
, { .vop_setattr
= zfs_setattr
},
5369 VOPNAME_ACCESS
, { .vop_access
= zfs_access
},
5370 VOPNAME_LOOKUP
, { .vop_lookup
= zfs_lookup
},
5371 VOPNAME_CREATE
, { .vop_create
= zfs_create
},
5372 VOPNAME_REMOVE
, { .vop_remove
= zfs_remove
},
5373 VOPNAME_LINK
, { .vop_link
= zfs_link
},
5374 VOPNAME_RENAME
, { .vop_rename
= zfs_rename
},
5375 VOPNAME_MKDIR
, { .error
= zfs_inval
},
5376 VOPNAME_RMDIR
, { .vop_rmdir
= zfs_rmdir
},
5377 VOPNAME_READDIR
, { .vop_readdir
= zfs_readdir
},
5378 VOPNAME_SYMLINK
, { .error
= zfs_inval
},
5379 VOPNAME_FSYNC
, { .vop_fsync
= zfs_fsync
},
5380 VOPNAME_INACTIVE
, { .vop_inactive
= zfs_inactive
},
5381 VOPNAME_FID
, { .vop_fid
= zfs_fid
},
5382 VOPNAME_SEEK
, { .vop_seek
= zfs_seek
},
5383 VOPNAME_PATHCONF
, { .vop_pathconf
= zfs_pathconf
},
5384 VOPNAME_GETSECATTR
, { .vop_getsecattr
= zfs_getsecattr
},
5385 VOPNAME_SETSECATTR
, { .vop_setsecattr
= zfs_setsecattr
},
5386 VOPNAME_VNEVENT
, { .vop_vnevent
= fs_vnevent_support
},
5391 * Error vnode operations template
5393 vnodeops_t
*zfs_evnodeops
;
5394 const fs_operation_def_t zfs_evnodeops_template
[] = {
5395 VOPNAME_INACTIVE
, { .vop_inactive
= zfs_inactive
},
5396 VOPNAME_PATHCONF
, { .vop_pathconf
= zfs_pathconf
},