zfs_dir.c revision 219089
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 */
24
25#include <sys/types.h>
26#include <sys/param.h>
27#include <sys/time.h>
28#include <sys/systm.h>
29#include <sys/sysmacros.h>
30#include <sys/resource.h>
31#include <sys/vfs.h>
32#include <sys/vnode.h>
33#include <sys/file.h>
34#include <sys/kmem.h>
35#include <sys/uio.h>
36#include <sys/cmn_err.h>
37#include <sys/errno.h>
38#include <sys/stat.h>
39#include <sys/unistd.h>
40#include <sys/sunddi.h>
41#include <sys/random.h>
42#include <sys/policy.h>
43#include <sys/kcondvar.h>
44#include <sys/callb.h>
45#include <sys/smp.h>
46#include <sys/zfs_dir.h>
47#include <sys/zfs_acl.h>
48#include <sys/fs/zfs.h>
49#include <sys/zap.h>
50#include <sys/dmu.h>
51#include <sys/atomic.h>
52#include <sys/zfs_ctldir.h>
53#include <sys/zfs_fuid.h>
54#include <sys/sa.h>
55#include <sys/zfs_sa.h>
56#include <sys/dnlc.h>
57#include <sys/extdirent.h>
58
59/*
60 * zfs_match_find() is used by zfs_dirent_lock() to peform zap lookups
61 * of names after deciding which is the appropriate lookup interface.
62 */
63static int
64zfs_match_find(zfsvfs_t *zfsvfs, znode_t *dzp, char *name, boolean_t exact,
65    boolean_t update, int *deflags, pathname_t *rpnp, uint64_t *zoid)
66{
67	int error;
68
69	if (zfsvfs->z_norm) {
70		matchtype_t mt = MT_FIRST;
71		boolean_t conflict = B_FALSE;
72		size_t bufsz = 0;
73		char *buf = NULL;
74
75		if (rpnp) {
76			buf = rpnp->pn_buf;
77			bufsz = rpnp->pn_bufsize;
78		}
79		if (exact)
80			mt = MT_EXACT;
81		/*
82		 * In the non-mixed case we only expect there would ever
83		 * be one match, but we need to use the normalizing lookup.
84		 */
85		error = zap_lookup_norm(zfsvfs->z_os, dzp->z_id, name, 8, 1,
86		    zoid, mt, buf, bufsz, &conflict);
87		if (!error && deflags)
88			*deflags = conflict ? ED_CASE_CONFLICT : 0;
89	} else {
90		error = zap_lookup(zfsvfs->z_os, dzp->z_id, name, 8, 1, zoid);
91	}
92	*zoid = ZFS_DIRENT_OBJ(*zoid);
93
94	if (error == ENOENT && update)
95		dnlc_update(ZTOV(dzp), name, DNLC_NO_VNODE);
96
97	return (error);
98}
99
100/*
101 * Lock a directory entry.  A dirlock on <dzp, name> protects that name
102 * in dzp's directory zap object.  As long as you hold a dirlock, you can
103 * assume two things: (1) dzp cannot be reaped, and (2) no other thread
104 * can change the zap entry for (i.e. link or unlink) this name.
105 *
106 * Input arguments:
107 *	dzp	- znode for directory
108 *	name	- name of entry to lock
109 *	flag	- ZNEW: if the entry already exists, fail with EEXIST.
110 *		  ZEXISTS: if the entry does not exist, fail with ENOENT.
111 *		  ZSHARED: allow concurrent access with other ZSHARED callers.
112 *		  ZXATTR: we want dzp's xattr directory
113 *		  ZCILOOK: On a mixed sensitivity file system,
114 *			   this lookup should be case-insensitive.
115 *		  ZCIEXACT: On a purely case-insensitive file system,
116 *			    this lookup should be case-sensitive.
117 *		  ZRENAMING: we are locking for renaming, force narrow locks
118 *		  ZHAVELOCK: Don't grab the z_name_lock for this call. The
119 *			     current thread already holds it.
120 *
121 * Output arguments:
122 *	zpp	- pointer to the znode for the entry (NULL if there isn't one)
123 *	dlpp	- pointer to the dirlock for this entry (NULL on error)
124 *      direntflags - (case-insensitive lookup only)
125 *		flags if multiple case-sensitive matches exist in directory
126 *      realpnp     - (case-insensitive lookup only)
127 *		actual name matched within the directory
128 *
129 * Return value: 0 on success or errno on failure.
130 *
131 * NOTE: Always checks for, and rejects, '.' and '..'.
132 * NOTE: For case-insensitive file systems we take wide locks (see below),
133 *	 but return znode pointers to a single match.
134 */
135int
136zfs_dirent_lock(zfs_dirlock_t **dlpp, znode_t *dzp, char *name, znode_t **zpp,
137    int flag, int *direntflags, pathname_t *realpnp)
138{
139	zfsvfs_t	*zfsvfs = dzp->z_zfsvfs;
140	zfs_dirlock_t	*dl;
141	boolean_t	update;
142	boolean_t	exact;
143	uint64_t	zoid;
144	vnode_t		*vp = NULL;
145	int		error = 0;
146	int		cmpflags;
147
148	*zpp = NULL;
149	*dlpp = NULL;
150
151	/*
152	 * Verify that we are not trying to lock '.', '..', or '.zfs'
153	 */
154	if (name[0] == '.' &&
155	    (name[1] == '\0' || (name[1] == '.' && name[2] == '\0')) ||
156	    zfs_has_ctldir(dzp) && strcmp(name, ZFS_CTLDIR_NAME) == 0)
157		return (EEXIST);
158
159	/*
160	 * Case sensitivity and normalization preferences are set when
161	 * the file system is created.  These are stored in the
162	 * zfsvfs->z_case and zfsvfs->z_norm fields.  These choices
163	 * affect what vnodes can be cached in the DNLC, how we
164	 * perform zap lookups, and the "width" of our dirlocks.
165	 *
166	 * A normal dirlock locks a single name.  Note that with
167	 * normalization a name can be composed multiple ways, but
168	 * when normalized, these names all compare equal.  A wide
169	 * dirlock locks multiple names.  We need these when the file
170	 * system is supporting mixed-mode access.  It is sometimes
171	 * necessary to lock all case permutations of file name at
172	 * once so that simultaneous case-insensitive/case-sensitive
173	 * behaves as rationally as possible.
174	 */
175
176	/*
177	 * Decide if exact matches should be requested when performing
178	 * a zap lookup on file systems supporting case-insensitive
179	 * access.
180	 */
181	exact =
182	    ((zfsvfs->z_case == ZFS_CASE_INSENSITIVE) && (flag & ZCIEXACT)) ||
183	    ((zfsvfs->z_case == ZFS_CASE_MIXED) && !(flag & ZCILOOK));
184
185	/*
186	 * Only look in or update the DNLC if we are looking for the
187	 * name on a file system that does not require normalization
188	 * or case folding.  We can also look there if we happen to be
189	 * on a non-normalizing, mixed sensitivity file system IF we
190	 * are looking for the exact name.
191	 *
192	 * Maybe can add TO-UPPERed version of name to dnlc in ci-only
193	 * case for performance improvement?
194	 */
195	update = !zfsvfs->z_norm ||
196	    ((zfsvfs->z_case == ZFS_CASE_MIXED) &&
197	    !(zfsvfs->z_norm & ~U8_TEXTPREP_TOUPPER) && !(flag & ZCILOOK));
198
199	/*
200	 * ZRENAMING indicates we are in a situation where we should
201	 * take narrow locks regardless of the file system's
202	 * preferences for normalizing and case folding.  This will
203	 * prevent us deadlocking trying to grab the same wide lock
204	 * twice if the two names happen to be case-insensitive
205	 * matches.
206	 */
207	if (flag & ZRENAMING)
208		cmpflags = 0;
209	else
210		cmpflags = zfsvfs->z_norm;
211
212	/*
213	 * Wait until there are no locks on this name.
214	 *
215	 * Don't grab the the lock if it is already held. However, cannot
216	 * have both ZSHARED and ZHAVELOCK together.
217	 */
218	ASSERT(!(flag & ZSHARED) || !(flag & ZHAVELOCK));
219	if (!(flag & ZHAVELOCK))
220		rw_enter(&dzp->z_name_lock, RW_READER);
221
222	mutex_enter(&dzp->z_lock);
223	for (;;) {
224		if (dzp->z_unlinked) {
225			mutex_exit(&dzp->z_lock);
226			if (!(flag & ZHAVELOCK))
227				rw_exit(&dzp->z_name_lock);
228			return (ENOENT);
229		}
230		for (dl = dzp->z_dirlocks; dl != NULL; dl = dl->dl_next) {
231			if ((u8_strcmp(name, dl->dl_name, 0, cmpflags,
232			    U8_UNICODE_LATEST, &error) == 0) || error != 0)
233				break;
234		}
235		if (error != 0) {
236			mutex_exit(&dzp->z_lock);
237			if (!(flag & ZHAVELOCK))
238				rw_exit(&dzp->z_name_lock);
239			return (ENOENT);
240		}
241		if (dl == NULL)	{
242			/*
243			 * Allocate a new dirlock and add it to the list.
244			 */
245			dl = kmem_alloc(sizeof (zfs_dirlock_t), KM_SLEEP);
246			cv_init(&dl->dl_cv, NULL, CV_DEFAULT, NULL);
247			dl->dl_name = name;
248			dl->dl_sharecnt = 0;
249			dl->dl_namelock = 0;
250			dl->dl_namesize = 0;
251			dl->dl_dzp = dzp;
252			dl->dl_next = dzp->z_dirlocks;
253			dzp->z_dirlocks = dl;
254			break;
255		}
256		if ((flag & ZSHARED) && dl->dl_sharecnt != 0)
257			break;
258		cv_wait(&dl->dl_cv, &dzp->z_lock);
259	}
260
261	/*
262	 * If the z_name_lock was NOT held for this dirlock record it.
263	 */
264	if (flag & ZHAVELOCK)
265		dl->dl_namelock = 1;
266
267	if ((flag & ZSHARED) && ++dl->dl_sharecnt > 1 && dl->dl_namesize == 0) {
268		/*
269		 * We're the second shared reference to dl.  Make a copy of
270		 * dl_name in case the first thread goes away before we do.
271		 * Note that we initialize the new name before storing its
272		 * pointer into dl_name, because the first thread may load
273		 * dl->dl_name at any time.  He'll either see the old value,
274		 * which is his, or the new shared copy; either is OK.
275		 */
276		dl->dl_namesize = strlen(dl->dl_name) + 1;
277		name = kmem_alloc(dl->dl_namesize, KM_SLEEP);
278		bcopy(dl->dl_name, name, dl->dl_namesize);
279		dl->dl_name = name;
280	}
281
282	mutex_exit(&dzp->z_lock);
283
284	/*
285	 * We have a dirlock on the name.  (Note that it is the dirlock,
286	 * not the dzp's z_lock, that protects the name in the zap object.)
287	 * See if there's an object by this name; if so, put a hold on it.
288	 */
289	if (flag & ZXATTR) {
290		error = sa_lookup(dzp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs), &zoid,
291		    sizeof (zoid));
292		if (error == 0)
293			error = (zoid == 0 ? ENOENT : 0);
294	} else {
295		if (update)
296			vp = dnlc_lookup(ZTOV(dzp), name);
297		if (vp == DNLC_NO_VNODE) {
298			VN_RELE(vp);
299			error = ENOENT;
300		} else if (vp) {
301			if (flag & ZNEW) {
302				zfs_dirent_unlock(dl);
303				VN_RELE(vp);
304				return (EEXIST);
305			}
306			*dlpp = dl;
307			*zpp = VTOZ(vp);
308			return (0);
309		} else {
310			error = zfs_match_find(zfsvfs, dzp, name, exact,
311			    update, direntflags, realpnp, &zoid);
312		}
313	}
314	if (error) {
315		if (error != ENOENT || (flag & ZEXISTS)) {
316			zfs_dirent_unlock(dl);
317			return (error);
318		}
319	} else {
320		if (flag & ZNEW) {
321			zfs_dirent_unlock(dl);
322			return (EEXIST);
323		}
324		error = zfs_zget(zfsvfs, zoid, zpp);
325		if (error) {
326			zfs_dirent_unlock(dl);
327			return (error);
328		}
329		if (!(flag & ZXATTR) && update)
330			dnlc_update(ZTOV(dzp), name, ZTOV(*zpp));
331	}
332
333	*dlpp = dl;
334
335	return (0);
336}
337
338/*
339 * Unlock this directory entry and wake anyone who was waiting for it.
340 */
341void
342zfs_dirent_unlock(zfs_dirlock_t *dl)
343{
344	znode_t *dzp = dl->dl_dzp;
345	zfs_dirlock_t **prev_dl, *cur_dl;
346
347	mutex_enter(&dzp->z_lock);
348
349	if (!dl->dl_namelock)
350		rw_exit(&dzp->z_name_lock);
351
352	if (dl->dl_sharecnt > 1) {
353		dl->dl_sharecnt--;
354		mutex_exit(&dzp->z_lock);
355		return;
356	}
357	prev_dl = &dzp->z_dirlocks;
358	while ((cur_dl = *prev_dl) != dl)
359		prev_dl = &cur_dl->dl_next;
360	*prev_dl = dl->dl_next;
361	cv_broadcast(&dl->dl_cv);
362	mutex_exit(&dzp->z_lock);
363
364	if (dl->dl_namesize != 0)
365		kmem_free(dl->dl_name, dl->dl_namesize);
366	cv_destroy(&dl->dl_cv);
367	kmem_free(dl, sizeof (*dl));
368}
369
370/*
371 * Look up an entry in a directory.
372 *
373 * NOTE: '.' and '..' are handled as special cases because
374 *	no directory entries are actually stored for them.  If this is
375 *	the root of a filesystem, then '.zfs' is also treated as a
376 *	special pseudo-directory.
377 */
378int
379zfs_dirlook(znode_t *dzp, char *name, vnode_t **vpp, int flags,
380    int *deflg, pathname_t *rpnp)
381{
382	zfs_dirlock_t *dl;
383	znode_t *zp;
384	int error = 0;
385	uint64_t parent;
386
387	if (name[0] == 0 || (name[0] == '.' && name[1] == 0)) {
388		*vpp = ZTOV(dzp);
389		VN_HOLD(*vpp);
390	} else if (name[0] == '.' && name[1] == '.' && name[2] == 0) {
391		zfsvfs_t *zfsvfs = dzp->z_zfsvfs;
392
393		/*
394		 * If we are a snapshot mounted under .zfs, return
395		 * the vp for the snapshot directory.
396		 */
397		if ((error = sa_lookup(dzp->z_sa_hdl,
398		    SA_ZPL_PARENT(zfsvfs), &parent, sizeof (parent))) != 0)
399			return (error);
400		if (parent == dzp->z_id && zfsvfs->z_parent != zfsvfs) {
401			error = zfsctl_root_lookup(zfsvfs->z_parent->z_ctldir,
402			    "snapshot", vpp, NULL, 0, NULL, kcred,
403			    NULL, NULL, NULL);
404			return (error);
405		}
406		rw_enter(&dzp->z_parent_lock, RW_READER);
407		error = zfs_zget(zfsvfs, parent, &zp);
408		if (error == 0)
409			*vpp = ZTOV(zp);
410		rw_exit(&dzp->z_parent_lock);
411	} else if (zfs_has_ctldir(dzp) && strcmp(name, ZFS_CTLDIR_NAME) == 0) {
412		*vpp = zfsctl_root(dzp);
413	} else {
414		int zf;
415
416		zf = ZEXISTS | ZSHARED;
417		if (flags & FIGNORECASE)
418			zf |= ZCILOOK;
419
420		error = zfs_dirent_lock(&dl, dzp, name, &zp, zf, deflg, rpnp);
421		if (error == 0) {
422			*vpp = ZTOV(zp);
423			zfs_dirent_unlock(dl);
424			dzp->z_zn_prefetch = B_TRUE; /* enable prefetching */
425		}
426		rpnp = NULL;
427	}
428
429	if ((flags & FIGNORECASE) && rpnp && !error)
430		(void) strlcpy(rpnp->pn_buf, name, rpnp->pn_bufsize);
431
432	return (error);
433}
434
435/*
436 * unlinked Set (formerly known as the "delete queue") Error Handling
437 *
438 * When dealing with the unlinked set, we dmu_tx_hold_zap(), but we
439 * don't specify the name of the entry that we will be manipulating.  We
440 * also fib and say that we won't be adding any new entries to the
441 * unlinked set, even though we might (this is to lower the minimum file
442 * size that can be deleted in a full filesystem).  So on the small
443 * chance that the nlink list is using a fat zap (ie. has more than
444 * 2000 entries), we *may* not pre-read a block that's needed.
445 * Therefore it is remotely possible for some of the assertions
446 * regarding the unlinked set below to fail due to i/o error.  On a
447 * nondebug system, this will result in the space being leaked.
448 */
449void
450zfs_unlinked_add(znode_t *zp, dmu_tx_t *tx)
451{
452	zfsvfs_t *zfsvfs = zp->z_zfsvfs;
453
454	ASSERT(zp->z_unlinked);
455	ASSERT(zp->z_links == 0);
456
457	VERIFY3U(0, ==,
458	    zap_add_int(zfsvfs->z_os, zfsvfs->z_unlinkedobj, zp->z_id, tx));
459}
460
461/*
462 * Clean up any znodes that had no links when we either crashed or
463 * (force) umounted the file system.
464 */
465void
466zfs_unlinked_drain(zfsvfs_t *zfsvfs)
467{
468	zap_cursor_t	zc;
469	zap_attribute_t zap;
470	dmu_object_info_t doi;
471	znode_t		*zp;
472	int		error;
473
474	/*
475	 * Interate over the contents of the unlinked set.
476	 */
477	for (zap_cursor_init(&zc, zfsvfs->z_os, zfsvfs->z_unlinkedobj);
478	    zap_cursor_retrieve(&zc, &zap) == 0;
479	    zap_cursor_advance(&zc)) {
480
481		/*
482		 * See what kind of object we have in list
483		 */
484
485		error = dmu_object_info(zfsvfs->z_os,
486		    zap.za_first_integer, &doi);
487		if (error != 0)
488			continue;
489
490		ASSERT((doi.doi_type == DMU_OT_PLAIN_FILE_CONTENTS) ||
491		    (doi.doi_type == DMU_OT_DIRECTORY_CONTENTS));
492		/*
493		 * We need to re-mark these list entries for deletion,
494		 * so we pull them back into core and set zp->z_unlinked.
495		 */
496		error = zfs_zget(zfsvfs, zap.za_first_integer, &zp);
497
498		/*
499		 * We may pick up znodes that are already marked for deletion.
500		 * This could happen during the purge of an extended attribute
501		 * directory.  All we need to do is skip over them, since they
502		 * are already in the system marked z_unlinked.
503		 */
504		if (error != 0)
505			continue;
506
507		zp->z_unlinked = B_TRUE;
508		VN_RELE(ZTOV(zp));
509	}
510	zap_cursor_fini(&zc);
511}
512
513/*
514 * Delete the entire contents of a directory.  Return a count
515 * of the number of entries that could not be deleted. If we encounter
516 * an error, return a count of at least one so that the directory stays
517 * in the unlinked set.
518 *
519 * NOTE: this function assumes that the directory is inactive,
520 *	so there is no need to lock its entries before deletion.
521 *	Also, it assumes the directory contents is *only* regular
522 *	files.
523 */
524static int
525zfs_purgedir(znode_t *dzp)
526{
527	zap_cursor_t	zc;
528	zap_attribute_t	zap;
529	znode_t		*xzp;
530	dmu_tx_t	*tx;
531	zfsvfs_t	*zfsvfs = dzp->z_zfsvfs;
532	zfs_dirlock_t	dl;
533	int skipped = 0;
534	int error;
535
536	for (zap_cursor_init(&zc, zfsvfs->z_os, dzp->z_id);
537	    (error = zap_cursor_retrieve(&zc, &zap)) == 0;
538	    zap_cursor_advance(&zc)) {
539		error = zfs_zget(zfsvfs,
540		    ZFS_DIRENT_OBJ(zap.za_first_integer), &xzp);
541		if (error) {
542			skipped += 1;
543			continue;
544		}
545
546		ASSERT((ZTOV(xzp)->v_type == VREG) ||
547		    (ZTOV(xzp)->v_type == VLNK));
548
549		tx = dmu_tx_create(zfsvfs->z_os);
550		dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
551		dmu_tx_hold_zap(tx, dzp->z_id, FALSE, zap.za_name);
552		dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
553		dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
554		/* Is this really needed ? */
555		zfs_sa_upgrade_txholds(tx, xzp);
556		error = dmu_tx_assign(tx, TXG_WAIT);
557		if (error) {
558			dmu_tx_abort(tx);
559			VN_RELE(ZTOV(xzp));
560			skipped += 1;
561			continue;
562		}
563		bzero(&dl, sizeof (dl));
564		dl.dl_dzp = dzp;
565		dl.dl_name = zap.za_name;
566
567		error = zfs_link_destroy(&dl, xzp, tx, 0, NULL);
568		if (error)
569			skipped += 1;
570		dmu_tx_commit(tx);
571
572		VN_RELE(ZTOV(xzp));
573	}
574	zap_cursor_fini(&zc);
575	if (error != ENOENT)
576		skipped += 1;
577	return (skipped);
578}
579
580void
581zfs_rmnode(znode_t *zp)
582{
583	zfsvfs_t	*zfsvfs = zp->z_zfsvfs;
584	objset_t	*os = zfsvfs->z_os;
585	znode_t		*xzp = NULL;
586	dmu_tx_t	*tx;
587	uint64_t	acl_obj;
588	uint64_t	xattr_obj;
589	int		error;
590
591	ASSERT(zp->z_links == 0);
592
593	/*
594	 * If this is an attribute directory, purge its contents.
595	 */
596	if (ZTOV(zp) != NULL && ZTOV(zp)->v_type == VDIR &&
597	    (zp->z_pflags & ZFS_XATTR)) {
598		if (zfs_purgedir(zp) != 0) {
599			/*
600			 * Not enough space to delete some xattrs.
601			 * Leave it in the unlinked set.
602			 */
603			zfs_znode_dmu_fini(zp);
604			zfs_znode_free(zp);
605			return;
606		}
607	}
608
609	/*
610	 * Free up all the data in the file.
611	 */
612	error = dmu_free_long_range(os, zp->z_id, 0, DMU_OBJECT_END);
613	if (error) {
614		/*
615		 * Not enough space.  Leave the file in the unlinked set.
616		 */
617		zfs_znode_dmu_fini(zp);
618		zfs_znode_free(zp);
619		return;
620	}
621
622	/*
623	 * If the file has extended attributes, we're going to unlink
624	 * the xattr dir.
625	 */
626	error = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs),
627	    &xattr_obj, sizeof (xattr_obj));
628	if (error == 0 && xattr_obj) {
629		error = zfs_zget(zfsvfs, xattr_obj, &xzp);
630		ASSERT(error == 0);
631	}
632
633	acl_obj = zfs_external_acl(zp);
634
635	/*
636	 * Set up the final transaction.
637	 */
638	tx = dmu_tx_create(os);
639	dmu_tx_hold_free(tx, zp->z_id, 0, DMU_OBJECT_END);
640	dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, FALSE, NULL);
641	if (xzp) {
642		dmu_tx_hold_zap(tx, zfsvfs->z_unlinkedobj, TRUE, NULL);
643		dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
644	}
645	if (acl_obj)
646		dmu_tx_hold_free(tx, acl_obj, 0, DMU_OBJECT_END);
647
648	zfs_sa_upgrade_txholds(tx, zp);
649	error = dmu_tx_assign(tx, TXG_WAIT);
650	if (error) {
651		/*
652		 * Not enough space to delete the file.  Leave it in the
653		 * unlinked set, leaking it until the fs is remounted (at
654		 * which point we'll call zfs_unlinked_drain() to process it).
655		 */
656		dmu_tx_abort(tx);
657		zfs_znode_dmu_fini(zp);
658		zfs_znode_free(zp);
659		goto out;
660	}
661
662	if (xzp) {
663		ASSERT(error == 0);
664		mutex_enter(&xzp->z_lock);
665		xzp->z_unlinked = B_TRUE;	/* mark xzp for deletion */
666		xzp->z_links = 0;	/* no more links to it */
667		VERIFY(0 == sa_update(xzp->z_sa_hdl, SA_ZPL_LINKS(zfsvfs),
668		    &xzp->z_links, sizeof (xzp->z_links), tx));
669		mutex_exit(&xzp->z_lock);
670		zfs_unlinked_add(xzp, tx);
671	}
672
673	/* Remove this znode from the unlinked set */
674	VERIFY3U(0, ==,
675	    zap_remove_int(zfsvfs->z_os, zfsvfs->z_unlinkedobj, zp->z_id, tx));
676
677	zfs_znode_delete(zp, tx);
678
679	dmu_tx_commit(tx);
680out:
681	if (xzp)
682		VN_RELE(ZTOV(xzp));
683}
684
685static uint64_t
686zfs_dirent(znode_t *zp, uint64_t mode)
687{
688	uint64_t de = zp->z_id;
689
690	if (zp->z_zfsvfs->z_version >= ZPL_VERSION_DIRENT_TYPE)
691		de |= IFTODT(mode) << 60;
692	return (de);
693}
694
695/*
696 * Link zp into dl.  Can only fail if zp has been unlinked.
697 */
698int
699zfs_link_create(zfs_dirlock_t *dl, znode_t *zp, dmu_tx_t *tx, int flag)
700{
701	znode_t *dzp = dl->dl_dzp;
702	zfsvfs_t *zfsvfs = zp->z_zfsvfs;
703	vnode_t *vp = ZTOV(zp);
704	uint64_t value;
705	int zp_is_dir = (vp->v_type == VDIR);
706	sa_bulk_attr_t bulk[5];
707	uint64_t mtime[2], ctime[2];
708	int count = 0;
709	int error;
710
711	mutex_enter(&zp->z_lock);
712
713	if (!(flag & ZRENAMING)) {
714		if (zp->z_unlinked) {	/* no new links to unlinked zp */
715			ASSERT(!(flag & (ZNEW | ZEXISTS)));
716			mutex_exit(&zp->z_lock);
717			return (ENOENT);
718		}
719		zp->z_links++;
720		SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zfsvfs), NULL,
721		    &zp->z_links, sizeof (zp->z_links));
722
723	}
724	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_PARENT(zfsvfs), NULL,
725	    &dzp->z_id, sizeof (dzp->z_id));
726	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
727	    &zp->z_pflags, sizeof (zp->z_pflags));
728
729	if (!(flag & ZNEW)) {
730		SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
731		    ctime, sizeof (ctime));
732		zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime,
733		    ctime, B_TRUE);
734	}
735	error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
736	ASSERT(error == 0);
737
738	mutex_exit(&zp->z_lock);
739
740	mutex_enter(&dzp->z_lock);
741	dzp->z_size++;
742	dzp->z_links += zp_is_dir;
743	count = 0;
744	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zfsvfs), NULL,
745	    &dzp->z_size, sizeof (dzp->z_size));
746	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zfsvfs), NULL,
747	    &dzp->z_links, sizeof (dzp->z_links));
748	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL,
749	    mtime, sizeof (mtime));
750	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
751	    ctime, sizeof (ctime));
752	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
753	    &dzp->z_pflags, sizeof (dzp->z_pflags));
754	zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime, B_TRUE);
755	error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
756	ASSERT(error == 0);
757	mutex_exit(&dzp->z_lock);
758
759	value = zfs_dirent(zp, zp->z_mode);
760	error = zap_add(zp->z_zfsvfs->z_os, dzp->z_id, dl->dl_name,
761	    8, 1, &value, tx);
762	ASSERT(error == 0);
763
764	dnlc_update(ZTOV(dzp), dl->dl_name, vp);
765
766	return (0);
767}
768
769static int
770zfs_dropname(zfs_dirlock_t *dl, znode_t *zp, znode_t *dzp, dmu_tx_t *tx,
771    int flag)
772{
773	int error;
774
775	if (zp->z_zfsvfs->z_norm) {
776		if (((zp->z_zfsvfs->z_case == ZFS_CASE_INSENSITIVE) &&
777		    (flag & ZCIEXACT)) ||
778		    ((zp->z_zfsvfs->z_case == ZFS_CASE_MIXED) &&
779		    !(flag & ZCILOOK)))
780			error = zap_remove_norm(zp->z_zfsvfs->z_os,
781			    dzp->z_id, dl->dl_name, MT_EXACT, tx);
782		else
783			error = zap_remove_norm(zp->z_zfsvfs->z_os,
784			    dzp->z_id, dl->dl_name, MT_FIRST, tx);
785	} else {
786		error = zap_remove(zp->z_zfsvfs->z_os,
787		    dzp->z_id, dl->dl_name, tx);
788	}
789
790	return (error);
791}
792
793/*
794 * Unlink zp from dl, and mark zp for deletion if this was the last link.
795 * Can fail if zp is a mount point (EBUSY) or a non-empty directory (EEXIST).
796 * If 'unlinkedp' is NULL, we put unlinked znodes on the unlinked list.
797 * If it's non-NULL, we use it to indicate whether the znode needs deletion,
798 * and it's the caller's job to do it.
799 */
800int
801zfs_link_destroy(zfs_dirlock_t *dl, znode_t *zp, dmu_tx_t *tx, int flag,
802	boolean_t *unlinkedp)
803{
804	znode_t *dzp = dl->dl_dzp;
805	zfsvfs_t *zfsvfs = dzp->z_zfsvfs;
806	vnode_t *vp = ZTOV(zp);
807	int zp_is_dir = (vp->v_type == VDIR);
808	boolean_t unlinked = B_FALSE;
809	sa_bulk_attr_t bulk[5];
810	uint64_t mtime[2], ctime[2];
811	int count = 0;
812	int error;
813
814	dnlc_remove(ZTOV(dzp), dl->dl_name);
815
816	if (!(flag & ZRENAMING)) {
817		if (vn_vfswlock(vp))		/* prevent new mounts on zp */
818			return (EBUSY);
819
820		if (vn_ismntpt(vp)) {		/* don't remove mount point */
821			vn_vfsunlock(vp);
822			return (EBUSY);
823		}
824
825		mutex_enter(&zp->z_lock);
826
827		if (zp_is_dir && !zfs_dirempty(zp)) {
828			mutex_exit(&zp->z_lock);
829			vn_vfsunlock(vp);
830			return (ENOTEMPTY);
831		}
832
833		/*
834		 * If we get here, we are going to try to remove the object.
835		 * First try removing the name from the directory; if that
836		 * fails, return the error.
837		 */
838		error = zfs_dropname(dl, zp, dzp, tx, flag);
839		if (error != 0) {
840			mutex_exit(&zp->z_lock);
841			vn_vfsunlock(vp);
842			return (error);
843		}
844
845		if (zp->z_links <= zp_is_dir) {
846			zfs_panic_recover("zfs: link count on vnode %p is %u, "
847			    "should be at least %u", zp->z_vnode,
848			    (int)zp->z_links,
849			    zp_is_dir + 1);
850			zp->z_links = zp_is_dir + 1;
851		}
852		if (--zp->z_links == zp_is_dir) {
853			zp->z_unlinked = B_TRUE;
854			zp->z_links = 0;
855			unlinked = B_TRUE;
856		} else {
857			SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs),
858			    NULL, &ctime, sizeof (ctime));
859			SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs),
860			    NULL, &zp->z_pflags, sizeof (zp->z_pflags));
861			zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime, ctime,
862			    B_TRUE);
863		}
864		SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zfsvfs),
865		    NULL, &zp->z_links, sizeof (zp->z_links));
866		error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
867		count = 0;
868		ASSERT(error == 0);
869		mutex_exit(&zp->z_lock);
870		vn_vfsunlock(vp);
871	} else {
872		error = zfs_dropname(dl, zp, dzp, tx, flag);
873		if (error != 0)
874			return (error);
875	}
876
877	mutex_enter(&dzp->z_lock);
878	dzp->z_size--;		/* one dirent removed */
879	dzp->z_links -= zp_is_dir;	/* ".." link from zp */
880	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zfsvfs),
881	    NULL, &dzp->z_links, sizeof (dzp->z_links));
882	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zfsvfs),
883	    NULL, &dzp->z_size, sizeof (dzp->z_size));
884	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs),
885	    NULL, ctime, sizeof (ctime));
886	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs),
887	    NULL, mtime, sizeof (mtime));
888	SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs),
889	    NULL, &dzp->z_pflags, sizeof (dzp->z_pflags));
890	zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime, B_TRUE);
891	error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
892	ASSERT(error == 0);
893	mutex_exit(&dzp->z_lock);
894
895	if (unlinkedp != NULL)
896		*unlinkedp = unlinked;
897	else if (unlinked)
898		zfs_unlinked_add(zp, tx);
899
900	return (0);
901}
902
903/*
904 * Indicate whether the directory is empty.  Works with or without z_lock
905 * held, but can only be consider a hint in the latter case.  Returns true
906 * if only "." and ".." remain and there's no work in progress.
907 */
908boolean_t
909zfs_dirempty(znode_t *dzp)
910{
911	return (dzp->z_size == 2 && dzp->z_dirlocks == 0);
912}
913
914int
915zfs_make_xattrdir(znode_t *zp, vattr_t *vap, vnode_t **xvpp, cred_t *cr)
916{
917	zfsvfs_t *zfsvfs = zp->z_zfsvfs;
918	znode_t *xzp;
919	dmu_tx_t *tx;
920	int error;
921	zfs_acl_ids_t acl_ids;
922	boolean_t fuid_dirtied;
923	uint64_t parent;
924
925	*xvpp = NULL;
926
927	/*
928	 * In FreeBSD, access checking for creating an EA is being done
929	 * in zfs_setextattr(),
930	 */
931#ifndef __FreeBSD__
932	if (error = zfs_zaccess(zp, ACE_WRITE_NAMED_ATTRS, 0, B_FALSE, cr))
933		return (error);
934#endif
935
936	if ((error = zfs_acl_ids_create(zp, IS_XATTR, vap, cr, NULL,
937	    &acl_ids)) != 0)
938		return (error);
939	if (zfs_acl_ids_overquota(zfsvfs, &acl_ids)) {
940		zfs_acl_ids_free(&acl_ids);
941		return (EDQUOT);
942	}
943
944top:
945	tx = dmu_tx_create(zfsvfs->z_os);
946	dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
947	    ZFS_SA_BASE_ATTR_SIZE);
948	dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
949	dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
950	fuid_dirtied = zfsvfs->z_fuid_dirty;
951	if (fuid_dirtied)
952		zfs_fuid_txhold(zfsvfs, tx);
953	error = dmu_tx_assign(tx, TXG_NOWAIT);
954	if (error) {
955		if (error == ERESTART) {
956			dmu_tx_wait(tx);
957			dmu_tx_abort(tx);
958			goto top;
959		}
960		zfs_acl_ids_free(&acl_ids);
961		dmu_tx_abort(tx);
962		return (error);
963	}
964	zfs_mknode(zp, vap, tx, cr, IS_XATTR, &xzp, &acl_ids);
965
966	if (fuid_dirtied)
967		zfs_fuid_sync(zfsvfs, tx);
968
969#ifdef DEBUG
970	error = sa_lookup(xzp->z_sa_hdl, SA_ZPL_PARENT(zfsvfs),
971	    &parent, sizeof (parent));
972	ASSERT(error == 0 && parent == zp->z_id);
973#endif
974
975	VERIFY(0 == sa_update(zp->z_sa_hdl, SA_ZPL_XATTR(zfsvfs), &xzp->z_id,
976	    sizeof (xzp->z_id), tx));
977
978	(void) zfs_log_create(zfsvfs->z_log, tx, TX_MKXATTR, zp,
979	    xzp, "", NULL, acl_ids.z_fuidp, vap);
980
981	zfs_acl_ids_free(&acl_ids);
982	dmu_tx_commit(tx);
983
984	*xvpp = ZTOV(xzp);
985
986	return (0);
987}
988
989/*
990 * Return a znode for the extended attribute directory for zp.
991 * ** If the directory does not already exist, it is created **
992 *
993 *	IN:	zp	- znode to obtain attribute directory from
994 *		cr	- credentials of caller
995 *		flags	- flags from the VOP_LOOKUP call
996 *
997 *	OUT:	xzpp	- pointer to extended attribute znode
998 *
999 *	RETURN:	0 on success
1000 *		error number on failure
1001 */
1002int
1003zfs_get_xattrdir(znode_t *zp, vnode_t **xvpp, cred_t *cr, int flags)
1004{
1005	zfsvfs_t	*zfsvfs = zp->z_zfsvfs;
1006	znode_t		*xzp;
1007	zfs_dirlock_t	*dl;
1008	vattr_t		va;
1009	int		error;
1010top:
1011	error = zfs_dirent_lock(&dl, zp, "", &xzp, ZXATTR, NULL, NULL);
1012	if (error)
1013		return (error);
1014
1015	if (xzp != NULL) {
1016		*xvpp = ZTOV(xzp);
1017		zfs_dirent_unlock(dl);
1018		return (0);
1019	}
1020
1021
1022	if (!(flags & CREATE_XATTR_DIR)) {
1023		zfs_dirent_unlock(dl);
1024#ifdef __FreeBSD__
1025		return (ENOATTR);
1026#else
1027		return (ENOENT);
1028#endif
1029	}
1030
1031	if (zfsvfs->z_vfs->vfs_flag & VFS_RDONLY) {
1032		zfs_dirent_unlock(dl);
1033		return (EROFS);
1034	}
1035
1036	/*
1037	 * The ability to 'create' files in an attribute
1038	 * directory comes from the write_xattr permission on the base file.
1039	 *
1040	 * The ability to 'search' an attribute directory requires
1041	 * read_xattr permission on the base file.
1042	 *
1043	 * Once in a directory the ability to read/write attributes
1044	 * is controlled by the permissions on the attribute file.
1045	 */
1046	va.va_mask = AT_TYPE | AT_MODE | AT_UID | AT_GID;
1047	va.va_type = VDIR;
1048	va.va_mode = S_IFDIR | S_ISVTX | 0777;
1049	zfs_fuid_map_ids(zp, cr, &va.va_uid, &va.va_gid);
1050
1051	error = zfs_make_xattrdir(zp, &va, xvpp, cr);
1052	zfs_dirent_unlock(dl);
1053
1054	if (error == ERESTART) {
1055		/* NB: we already did dmu_tx_wait() if necessary */
1056		goto top;
1057	}
1058	if (error == 0)
1059		VOP_UNLOCK(*xvpp, 0);
1060
1061	return (error);
1062}
1063
1064/*
1065 * Decide whether it is okay to remove within a sticky directory.
1066 *
1067 * In sticky directories, write access is not sufficient;
1068 * you can remove entries from a directory only if:
1069 *
1070 *	you own the directory,
1071 *	you own the entry,
1072 *	the entry is a plain file and you have write access,
1073 *	or you are privileged (checked in secpolicy...).
1074 *
1075 * The function returns 0 if remove access is granted.
1076 */
1077int
1078zfs_sticky_remove_access(znode_t *zdp, znode_t *zp, cred_t *cr)
1079{
1080	uid_t  		uid;
1081	uid_t		downer;
1082	uid_t		fowner;
1083	zfsvfs_t	*zfsvfs = zdp->z_zfsvfs;
1084
1085	if (zdp->z_zfsvfs->z_replay)
1086		return (0);
1087
1088	if ((zdp->z_mode & S_ISVTX) == 0)
1089		return (0);
1090
1091	downer = zfs_fuid_map_id(zfsvfs, zdp->z_uid, cr, ZFS_OWNER);
1092	fowner = zfs_fuid_map_id(zfsvfs, zp->z_uid, cr, ZFS_OWNER);
1093
1094	if ((uid = crgetuid(cr)) == downer || uid == fowner ||
1095	    (ZTOV(zp)->v_type == VREG &&
1096	    zfs_zaccess(zp, ACE_WRITE_DATA, 0, B_FALSE, cr) == 0))
1097		return (0);
1098	else
1099		return (secpolicy_vnode_remove(ZTOV(zp), cr));
1100}
1101