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