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