]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/zfs_dir.c
Add zfs_iput_async() interface
[mirror_zfs.git] / module / zfs / zfs_dir.c
1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2013 by Delphix. All rights reserved.
24 */
25
26
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>
49 #include <sys/zfs_vnops.h>
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>
55 #include <sys/zfs_ctldir.h>
56 #include <sys/zfs_fuid.h>
57 #include <sys/sa.h>
58 #include <sys/zfs_sa.h>
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 */
66 static int
67 zfs_match_find(zfs_sb_t *zsb, znode_t *dzp, char *name, boolean_t exact,
68 boolean_t update, int *deflags, pathname_t *rpnp, uint64_t *zoid)
69 {
70 boolean_t conflict = B_FALSE;
71 int error;
72
73 if (zsb->z_norm) {
74 matchtype_t mt = MT_FIRST;
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 */
88 error = zap_lookup_norm(zsb->z_os, dzp->z_id, name, 8, 1,
89 zoid, mt, buf, bufsz, &conflict);
90 } else {
91 error = zap_lookup(zsb->z_os, dzp->z_id, name, 8, 1, zoid);
92 }
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
107 *zoid = ZFS_DIRENT_OBJ(*zoid);
108
109 #ifdef HAVE_DNLC
110 if (error == ENOENT && update)
111 dnlc_update(ZTOI(dzp), name, DNLC_NO_VNODE);
112 #endif /* HAVE_DNLC */
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
135 * ZHAVELOCK: Don't grab the z_name_lock for this call. The
136 * current thread already holds it.
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 */
152 int
153 zfs_dirent_lock(zfs_dirlock_t **dlpp, znode_t *dzp, char *name, znode_t **zpp,
154 int flag, int *direntflags, pathname_t *realpnp)
155 {
156 zfs_sb_t *zsb = ZTOZSB(dzp);
157 zfs_dirlock_t *dl;
158 boolean_t update;
159 boolean_t exact;
160 uint64_t zoid;
161 #ifdef HAVE_DNLC
162 vnode_t *vp = NULL;
163 #endif /* HAVE_DNLC */
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 */
173 if ((name[0] == '.' &&
174 (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) ||
175 (zfs_has_ctldir(dzp) && strcmp(name, ZFS_CTLDIR_NAME) == 0))
176 return (SET_ERROR(EEXIST));
177
178 /*
179 * Case sensitivity and normalization preferences are set when
180 * the file system is created. These are stored in the
181 * zsb->z_case and zsb->z_norm fields. These choices
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 =
201 ((zsb->z_case == ZFS_CASE_INSENSITIVE) && (flag & ZCIEXACT)) ||
202 ((zsb->z_case == ZFS_CASE_MIXED) && !(flag & ZCILOOK));
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 */
214 update = !zsb->z_norm ||
215 ((zsb->z_case == ZFS_CASE_MIXED) &&
216 !(zsb->z_norm & ~U8_TEXTPREP_TOUPPER) && !(flag & ZCILOOK));
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
229 cmpflags = zsb->z_norm;
230
231 /*
232 * Wait until there are no locks on this name.
233 *
234 * Don't grab the the lock if it is already held. However, cannot
235 * have both ZSHARED and ZHAVELOCK together.
236 */
237 ASSERT(!(flag & ZSHARED) || !(flag & ZHAVELOCK));
238 if (!(flag & ZHAVELOCK))
239 rw_enter(&dzp->z_name_lock, RW_READER);
240
241 mutex_enter(&dzp->z_lock);
242 for (;;) {
243 if (dzp->z_unlinked) {
244 mutex_exit(&dzp->z_lock);
245 if (!(flag & ZHAVELOCK))
246 rw_exit(&dzp->z_name_lock);
247 return (SET_ERROR(ENOENT));
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);
256 if (!(flag & ZHAVELOCK))
257 rw_exit(&dzp->z_name_lock);
258 return (SET_ERROR(ENOENT));
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;
268 dl->dl_namelock = 0;
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
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
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) {
309 error = sa_lookup(dzp->z_sa_hdl, SA_ZPL_XATTR(zsb), &zoid,
310 sizeof (zoid));
311 if (error == 0)
312 error = (zoid == 0 ? SET_ERROR(ENOENT) : 0);
313 } else {
314 #ifdef HAVE_DNLC
315 if (update)
316 vp = dnlc_lookup(ZTOI(dzp), name);
317 if (vp == DNLC_NO_VNODE) {
318 iput(vp);
319 error = SET_ERROR(ENOENT);
320 } else if (vp) {
321 if (flag & ZNEW) {
322 zfs_dirent_unlock(dl);
323 iput(vp);
324 return (SET_ERROR(EEXIST));
325 }
326 *dlpp = dl;
327 *zpp = VTOZ(vp);
328 return (0);
329 } else {
330 error = zfs_match_find(zsb, dzp, name, exact,
331 update, direntflags, realpnp, &zoid);
332 }
333 #else
334 error = zfs_match_find(zsb, dzp, name, exact,
335 update, direntflags, realpnp, &zoid);
336 #endif /* HAVE_DNLC */
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);
346 return (SET_ERROR(EEXIST));
347 }
348 error = zfs_zget(zsb, zoid, zpp);
349 if (error) {
350 zfs_dirent_unlock(dl);
351 return (error);
352 }
353 #ifdef HAVE_DNLC
354 if (!(flag & ZXATTR) && update)
355 dnlc_update(ZTOI(dzp), name, ZTOI(*zpp));
356 #endif /* HAVE_DNLC */
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 */
367 void
368 zfs_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);
374
375 if (!dl->dl_namelock)
376 rw_exit(&dzp->z_name_lock);
377
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 */
404 int
405 zfs_dirlook(znode_t *dzp, char *name, struct inode **ipp, int flags,
406 int *deflg, pathname_t *rpnp)
407 {
408 zfs_dirlock_t *dl;
409 znode_t *zp;
410 int error = 0;
411 uint64_t parent;
412
413 if (name[0] == 0 || (name[0] == '.' && name[1] == 0)) {
414 *ipp = ZTOI(dzp);
415 igrab(*ipp);
416 } else if (name[0] == '.' && name[1] == '.' && name[2] == 0) {
417 zfs_sb_t *zsb = ZTOZSB(dzp);
418
419 /*
420 * If we are a snapshot mounted under .zfs, return
421 * the inode pointer for the snapshot directory.
422 */
423 if ((error = sa_lookup(dzp->z_sa_hdl,
424 SA_ZPL_PARENT(zsb), &parent, sizeof (parent))) != 0)
425 return (error);
426
427 if (parent == dzp->z_id && zsb->z_parent != zsb) {
428 error = zfsctl_root_lookup(zsb->z_parent->z_ctldir,
429 "snapshot", ipp, 0, kcred, NULL, NULL);
430 return (error);
431 }
432 rw_enter(&dzp->z_parent_lock, RW_READER);
433 error = zfs_zget(zsb, parent, &zp);
434 if (error == 0)
435 *ipp = ZTOI(zp);
436 rw_exit(&dzp->z_parent_lock);
437 } else if (zfs_has_ctldir(dzp) && strcmp(name, ZFS_CTLDIR_NAME) == 0) {
438 *ipp = zfsctl_root(dzp);
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) {
448 *ipp = ZTOI(zp);
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
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 */
475 void
476 zfs_unlinked_add(znode_t *zp, dmu_tx_t *tx)
477 {
478 zfs_sb_t *zsb = ZTOZSB(zp);
479
480 ASSERT(zp->z_unlinked);
481 ASSERT(zp->z_links == 0);
482
483 VERIFY3U(0, ==,
484 zap_add_int(zsb->z_os, zsb->z_unlinkedobj, zp->z_id, tx));
485 }
486
487 /*
488 * Delete the entire contents of a directory. Return a count
489 * of the number of entries that could not be deleted. If we encounter
490 * an error, return a count of at least one so that the directory stays
491 * in the unlinked set.
492 *
493 * NOTE: this function assumes that the directory is inactive,
494 * so there is no need to lock its entries before deletion.
495 * Also, it assumes the directory contents is *only* regular
496 * files.
497 */
498 static int
499 zfs_purgedir(znode_t *dzp)
500 {
501 zap_cursor_t zc;
502 zap_attribute_t zap;
503 znode_t *xzp;
504 dmu_tx_t *tx;
505 zfs_sb_t *zsb = ZTOZSB(dzp);
506 zfs_dirlock_t dl;
507 int skipped = 0;
508 int error;
509
510 for (zap_cursor_init(&zc, zsb->z_os, dzp->z_id);
511 (error = zap_cursor_retrieve(&zc, &zap)) == 0;
512 zap_cursor_advance(&zc)) {
513 error = zfs_zget(zsb,
514 ZFS_DIRENT_OBJ(zap.za_first_integer), &xzp);
515 if (error) {
516 skipped += 1;
517 continue;
518 }
519
520 ASSERT(S_ISREG(ZTOI(xzp)->i_mode)||S_ISLNK(ZTOI(xzp)->i_mode));
521
522 tx = dmu_tx_create(zsb->z_os);
523 dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
524 dmu_tx_hold_zap(tx, dzp->z_id, FALSE, zap.za_name);
525 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
526 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, FALSE, NULL);
527 /* Is this really needed ? */
528 zfs_sa_upgrade_txholds(tx, xzp);
529 error = dmu_tx_assign(tx, TXG_WAIT);
530 if (error) {
531 dmu_tx_abort(tx);
532 zfs_iput_async(ZTOI(xzp));
533 skipped += 1;
534 continue;
535 }
536 bzero(&dl, sizeof (dl));
537 dl.dl_dzp = dzp;
538 dl.dl_name = zap.za_name;
539
540 error = zfs_link_destroy(&dl, xzp, tx, 0, NULL);
541 if (error)
542 skipped += 1;
543 dmu_tx_commit(tx);
544
545 zfs_iput_async(ZTOI(xzp));
546 }
547 zap_cursor_fini(&zc);
548 if (error != ENOENT)
549 skipped += 1;
550 return (skipped);
551 }
552
553 /*
554 * Clean up any znodes that had no links when we either crashed or
555 * (force) umounted the file system.
556 */
557 void
558 zfs_unlinked_drain(zfs_sb_t *zsb)
559 {
560 zap_cursor_t zc;
561 zap_attribute_t zap;
562 dmu_object_info_t doi;
563 znode_t *zp;
564 int error;
565
566 /*
567 * Iterate over the contents of the unlinked set.
568 */
569 for (zap_cursor_init(&zc, zsb->z_os, zsb->z_unlinkedobj);
570 zap_cursor_retrieve(&zc, &zap) == 0;
571 zap_cursor_advance(&zc)) {
572
573 /*
574 * See what kind of object we have in list
575 */
576
577 error = dmu_object_info(zsb->z_os, zap.za_first_integer, &doi);
578 if (error != 0)
579 continue;
580
581 ASSERT((doi.doi_type == DMU_OT_PLAIN_FILE_CONTENTS) ||
582 (doi.doi_type == DMU_OT_DIRECTORY_CONTENTS));
583 /*
584 * We need to re-mark these list entries for deletion,
585 * so we pull them back into core and set zp->z_unlinked.
586 */
587 error = zfs_zget(zsb, zap.za_first_integer, &zp);
588
589 /*
590 * We may pick up znodes that are already marked for deletion.
591 * This could happen during the purge of an extended attribute
592 * directory. All we need to do is skip over them, since they
593 * are already in the system marked z_unlinked.
594 */
595 if (error != 0)
596 continue;
597
598 zp->z_unlinked = B_TRUE;
599
600 /*
601 * If this is an attribute directory, purge its contents.
602 */
603 if (S_ISDIR(ZTOI(zp)->i_mode) && (zp->z_pflags & ZFS_XATTR)) {
604 /*
605 * We don't need to check the return value of
606 * zfs_purgedir here, because zfs_rmnode will just
607 * return this xattr directory to the unlinked set
608 * until all of its xattrs are gone.
609 */
610 (void) zfs_purgedir(zp);
611 }
612
613 iput(ZTOI(zp));
614 }
615 zap_cursor_fini(&zc);
616 }
617
618 void
619 zfs_rmnode(znode_t *zp)
620 {
621 zfs_sb_t *zsb = ZTOZSB(zp);
622 objset_t *os = zsb->z_os;
623 znode_t *xzp = NULL;
624 dmu_tx_t *tx;
625 uint64_t acl_obj;
626 uint64_t xattr_obj;
627 uint64_t count;
628 int error;
629
630 ASSERT(zp->z_links == 0);
631 ASSERT(atomic_read(&ZTOI(zp)->i_count) == 0);
632
633 /*
634 * If this is an attribute directory, purge its contents.
635 */
636 if (S_ISDIR(ZTOI(zp)->i_mode) && (zp->z_pflags & ZFS_XATTR)) {
637 error = zap_count(os, zp->z_id, &count);
638 if (error) {
639 zfs_znode_dmu_fini(zp);
640 return;
641 }
642
643 if (count > 0) {
644 taskq_t *taskq;
645
646 /*
647 * There are still directory entries in this xattr
648 * directory. Let zfs_unlinked_drain() deal with
649 * them to avoid deadlocking this process in the
650 * zfs_purgedir()->zfs_zget()->ilookup() callpath
651 * on the xattr inode's I_FREEING bit.
652 */
653 taskq = dsl_pool_iput_taskq(dmu_objset_pool(os));
654 taskq_dispatch(taskq, (task_func_t *)
655 zfs_unlinked_drain, zsb, TQ_SLEEP);
656
657 zfs_znode_dmu_fini(zp);
658 return;
659 }
660 }
661
662 /*
663 * Free up all the data in the file.
664 */
665 error = dmu_free_long_range(os, zp->z_id, 0, DMU_OBJECT_END);
666 if (error) {
667 /*
668 * Not enough space. Leave the file in the unlinked set.
669 */
670 zfs_znode_dmu_fini(zp);
671 return;
672 }
673
674 /*
675 * If the file has extended attributes, we're going to unlink
676 * the xattr dir.
677 */
678 error = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zsb),
679 &xattr_obj, sizeof (xattr_obj));
680 if (error == 0 && xattr_obj) {
681 error = zfs_zget(zsb, xattr_obj, &xzp);
682 ASSERT(error == 0);
683 }
684
685 acl_obj = zfs_external_acl(zp);
686
687 /*
688 * Set up the final transaction.
689 */
690 tx = dmu_tx_create(os);
691 dmu_tx_hold_free(tx, zp->z_id, 0, DMU_OBJECT_END);
692 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, FALSE, NULL);
693 if (xzp) {
694 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, TRUE, NULL);
695 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
696 }
697 if (acl_obj)
698 dmu_tx_hold_free(tx, acl_obj, 0, DMU_OBJECT_END);
699
700 zfs_sa_upgrade_txholds(tx, zp);
701 error = dmu_tx_assign(tx, TXG_WAIT);
702 if (error) {
703 /*
704 * Not enough space to delete the file. Leave it in the
705 * unlinked set, leaking it until the fs is remounted (at
706 * which point we'll call zfs_unlinked_drain() to process it).
707 */
708 dmu_tx_abort(tx);
709 zfs_znode_dmu_fini(zp);
710 goto out;
711 }
712
713 if (xzp) {
714 ASSERT(error == 0);
715 mutex_enter(&xzp->z_lock);
716 xzp->z_unlinked = B_TRUE; /* mark xzp for deletion */
717 xzp->z_links = 0; /* no more links to it */
718 VERIFY(0 == sa_update(xzp->z_sa_hdl, SA_ZPL_LINKS(zsb),
719 &xzp->z_links, sizeof (xzp->z_links), tx));
720 mutex_exit(&xzp->z_lock);
721 zfs_unlinked_add(xzp, tx);
722 }
723
724 /* Remove this znode from the unlinked set */
725 VERIFY3U(0, ==,
726 zap_remove_int(zsb->z_os, zsb->z_unlinkedobj, zp->z_id, tx));
727
728 zfs_znode_delete(zp, tx);
729
730 dmu_tx_commit(tx);
731 out:
732 if (xzp)
733 zfs_iput_async(ZTOI(xzp));
734 }
735
736 static uint64_t
737 zfs_dirent(znode_t *zp, uint64_t mode)
738 {
739 uint64_t de = zp->z_id;
740
741 if (ZTOZSB(zp)->z_version >= ZPL_VERSION_DIRENT_TYPE)
742 de |= IFTODT(mode) << 60;
743 return (de);
744 }
745
746 /*
747 * Link zp into dl. Can only fail if zp has been unlinked.
748 */
749 int
750 zfs_link_create(zfs_dirlock_t *dl, znode_t *zp, dmu_tx_t *tx, int flag)
751 {
752 znode_t *dzp = dl->dl_dzp;
753 zfs_sb_t *zsb = ZTOZSB(zp);
754 uint64_t value;
755 int zp_is_dir = S_ISDIR(ZTOI(zp)->i_mode);
756 sa_bulk_attr_t bulk[5];
757 uint64_t mtime[2], ctime[2];
758 int count = 0;
759 int error;
760
761 mutex_enter(&zp->z_lock);
762
763 if (!(flag & ZRENAMING)) {
764 if (zp->z_unlinked) { /* no new links to unlinked zp */
765 ASSERT(!(flag & (ZNEW | ZEXISTS)));
766 mutex_exit(&zp->z_lock);
767 return (SET_ERROR(ENOENT));
768 }
769 zp->z_links++;
770 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb), NULL,
771 &zp->z_links, sizeof (zp->z_links));
772
773 }
774 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_PARENT(zsb), NULL,
775 &dzp->z_id, sizeof (dzp->z_id));
776 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
777 &zp->z_pflags, sizeof (zp->z_pflags));
778
779 if (!(flag & ZNEW)) {
780 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb), NULL,
781 ctime, sizeof (ctime));
782 zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime,
783 ctime, B_TRUE);
784 }
785 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
786 ASSERT(error == 0);
787
788 mutex_exit(&zp->z_lock);
789
790 mutex_enter(&dzp->z_lock);
791 dzp->z_size++;
792 dzp->z_links += zp_is_dir;
793 count = 0;
794 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb), NULL,
795 &dzp->z_size, sizeof (dzp->z_size));
796 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb), NULL,
797 &dzp->z_links, sizeof (dzp->z_links));
798 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zsb), NULL,
799 mtime, sizeof (mtime));
800 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb), NULL,
801 ctime, sizeof (ctime));
802 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
803 &dzp->z_pflags, sizeof (dzp->z_pflags));
804 zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime, B_TRUE);
805 error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
806 ASSERT(error == 0);
807 mutex_exit(&dzp->z_lock);
808
809 value = zfs_dirent(zp, zp->z_mode);
810 error = zap_add(ZTOZSB(zp)->z_os, dzp->z_id, dl->dl_name,
811 8, 1, &value, tx);
812 ASSERT(error == 0);
813
814 return (0);
815 }
816
817 static int
818 zfs_dropname(zfs_dirlock_t *dl, znode_t *zp, znode_t *dzp, dmu_tx_t *tx,
819 int flag)
820 {
821 int error;
822
823 if (ZTOZSB(zp)->z_norm) {
824 if (((ZTOZSB(zp)->z_case == ZFS_CASE_INSENSITIVE) &&
825 (flag & ZCIEXACT)) ||
826 ((ZTOZSB(zp)->z_case == ZFS_CASE_MIXED) &&
827 !(flag & ZCILOOK)))
828 error = zap_remove_norm(ZTOZSB(zp)->z_os,
829 dzp->z_id, dl->dl_name, MT_EXACT, tx);
830 else
831 error = zap_remove_norm(ZTOZSB(zp)->z_os,
832 dzp->z_id, dl->dl_name, MT_FIRST, tx);
833 } else {
834 error = zap_remove(ZTOZSB(zp)->z_os,
835 dzp->z_id, dl->dl_name, tx);
836 }
837
838 return (error);
839 }
840
841 /*
842 * Unlink zp from dl, and mark zp for deletion if this was the last link. Can
843 * fail if zp is a mount point (EBUSY) or a non-empty directory (ENOTEMPTY).
844 * If 'unlinkedp' is NULL, we put unlinked znodes on the unlinked list.
845 * If it's non-NULL, we use it to indicate whether the znode needs deletion,
846 * and it's the caller's job to do it.
847 */
848 int
849 zfs_link_destroy(zfs_dirlock_t *dl, znode_t *zp, dmu_tx_t *tx, int flag,
850 boolean_t *unlinkedp)
851 {
852 znode_t *dzp = dl->dl_dzp;
853 zfs_sb_t *zsb = ZTOZSB(dzp);
854 int zp_is_dir = S_ISDIR(ZTOI(zp)->i_mode);
855 boolean_t unlinked = B_FALSE;
856 sa_bulk_attr_t bulk[5];
857 uint64_t mtime[2], ctime[2];
858 int count = 0;
859 int error;
860
861 #ifdef HAVE_DNLC
862 dnlc_remove(ZTOI(dzp), dl->dl_name);
863 #endif /* HAVE_DNLC */
864
865 if (!(flag & ZRENAMING)) {
866 mutex_enter(&zp->z_lock);
867
868 if (zp_is_dir && !zfs_dirempty(zp)) {
869 mutex_exit(&zp->z_lock);
870 return (SET_ERROR(ENOTEMPTY));
871 }
872
873 /*
874 * If we get here, we are going to try to remove the object.
875 * First try removing the name from the directory; if that
876 * fails, return the error.
877 */
878 error = zfs_dropname(dl, zp, dzp, tx, flag);
879 if (error != 0) {
880 mutex_exit(&zp->z_lock);
881 return (error);
882 }
883
884 if (zp->z_links <= zp_is_dir) {
885 zfs_panic_recover("zfs: link count on %lu is %u, "
886 "should be at least %u", zp->z_id,
887 (int)zp->z_links, zp_is_dir + 1);
888 zp->z_links = zp_is_dir + 1;
889 }
890 if (--zp->z_links == zp_is_dir) {
891 zp->z_unlinked = B_TRUE;
892 zp->z_links = 0;
893 unlinked = B_TRUE;
894 } else {
895 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb),
896 NULL, &ctime, sizeof (ctime));
897 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
898 NULL, &zp->z_pflags, sizeof (zp->z_pflags));
899 zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime, ctime,
900 B_TRUE);
901 }
902 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb),
903 NULL, &zp->z_links, sizeof (zp->z_links));
904 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
905 count = 0;
906 ASSERT(error == 0);
907 mutex_exit(&zp->z_lock);
908 } else {
909 error = zfs_dropname(dl, zp, dzp, tx, flag);
910 if (error != 0)
911 return (error);
912 }
913
914 mutex_enter(&dzp->z_lock);
915 dzp->z_size--; /* one dirent removed */
916 dzp->z_links -= zp_is_dir; /* ".." link from zp */
917 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb),
918 NULL, &dzp->z_links, sizeof (dzp->z_links));
919 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb),
920 NULL, &dzp->z_size, sizeof (dzp->z_size));
921 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb),
922 NULL, ctime, sizeof (ctime));
923 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zsb),
924 NULL, mtime, sizeof (mtime));
925 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
926 NULL, &dzp->z_pflags, sizeof (dzp->z_pflags));
927 zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime, B_TRUE);
928 error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
929 ASSERT(error == 0);
930 mutex_exit(&dzp->z_lock);
931
932 if (unlinkedp != NULL)
933 *unlinkedp = unlinked;
934 else if (unlinked)
935 zfs_unlinked_add(zp, tx);
936
937 return (0);
938 }
939
940 /*
941 * Indicate whether the directory is empty. Works with or without z_lock
942 * held, but can only be consider a hint in the latter case. Returns true
943 * if only "." and ".." remain and there's no work in progress.
944 */
945 boolean_t
946 zfs_dirempty(znode_t *dzp)
947 {
948 return (dzp->z_size == 2 && dzp->z_dirlocks == 0);
949 }
950
951 int
952 zfs_make_xattrdir(znode_t *zp, vattr_t *vap, struct inode **xipp, cred_t *cr)
953 {
954 zfs_sb_t *zsb = ZTOZSB(zp);
955 znode_t *xzp;
956 dmu_tx_t *tx;
957 int error;
958 zfs_acl_ids_t acl_ids;
959 boolean_t fuid_dirtied;
960 #ifdef DEBUG
961 uint64_t parent;
962 #endif
963
964 *xipp = NULL;
965
966 if ((error = zfs_zaccess(zp, ACE_WRITE_NAMED_ATTRS, 0, B_FALSE, cr)))
967 return (error);
968
969 if ((error = zfs_acl_ids_create(zp, IS_XATTR, vap, cr, NULL,
970 &acl_ids)) != 0)
971 return (error);
972 if (zfs_acl_ids_overquota(zsb, &acl_ids)) {
973 zfs_acl_ids_free(&acl_ids);
974 return (SET_ERROR(EDQUOT));
975 }
976
977 tx = dmu_tx_create(zsb->z_os);
978 dmu_tx_hold_sa_create(tx, acl_ids.z_aclp->z_acl_bytes +
979 ZFS_SA_BASE_ATTR_SIZE);
980 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_TRUE);
981 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
982 fuid_dirtied = zsb->z_fuid_dirty;
983 if (fuid_dirtied)
984 zfs_fuid_txhold(zsb, tx);
985 error = dmu_tx_assign(tx, TXG_WAIT);
986 if (error) {
987 zfs_acl_ids_free(&acl_ids);
988 dmu_tx_abort(tx);
989 return (error);
990 }
991 zfs_mknode(zp, vap, tx, cr, IS_XATTR, &xzp, &acl_ids);
992
993 if (fuid_dirtied)
994 zfs_fuid_sync(zsb, tx);
995
996 #ifdef DEBUG
997 error = sa_lookup(xzp->z_sa_hdl, SA_ZPL_PARENT(zsb),
998 &parent, sizeof (parent));
999 ASSERT(error == 0 && parent == zp->z_id);
1000 #endif
1001
1002 VERIFY(0 == sa_update(zp->z_sa_hdl, SA_ZPL_XATTR(zsb), &xzp->z_id,
1003 sizeof (xzp->z_id), tx));
1004
1005 (void) zfs_log_create(zsb->z_log, tx, TX_MKXATTR, zp,
1006 xzp, "", NULL, acl_ids.z_fuidp, vap);
1007
1008 zfs_acl_ids_free(&acl_ids);
1009 dmu_tx_commit(tx);
1010
1011 *xipp = ZTOI(xzp);
1012
1013 return (0);
1014 }
1015
1016 /*
1017 * Return a znode for the extended attribute directory for zp.
1018 * ** If the directory does not already exist, it is created **
1019 *
1020 * IN: zp - znode to obtain attribute directory from
1021 * cr - credentials of caller
1022 * flags - flags from the VOP_LOOKUP call
1023 *
1024 * OUT: xipp - pointer to extended attribute znode
1025 *
1026 * RETURN: 0 on success
1027 * error number on failure
1028 */
1029 int
1030 zfs_get_xattrdir(znode_t *zp, struct inode **xipp, cred_t *cr, int flags)
1031 {
1032 zfs_sb_t *zsb = ZTOZSB(zp);
1033 znode_t *xzp;
1034 zfs_dirlock_t *dl;
1035 vattr_t va;
1036 int error;
1037 top:
1038 error = zfs_dirent_lock(&dl, zp, "", &xzp, ZXATTR, NULL, NULL);
1039 if (error)
1040 return (error);
1041
1042 if (xzp != NULL) {
1043 *xipp = ZTOI(xzp);
1044 zfs_dirent_unlock(dl);
1045 return (0);
1046 }
1047
1048 if (!(flags & CREATE_XATTR_DIR)) {
1049 zfs_dirent_unlock(dl);
1050 return (SET_ERROR(ENOENT));
1051 }
1052
1053 if (zfs_is_readonly(zsb)) {
1054 zfs_dirent_unlock(dl);
1055 return (SET_ERROR(EROFS));
1056 }
1057
1058 /*
1059 * The ability to 'create' files in an attribute
1060 * directory comes from the write_xattr permission on the base file.
1061 *
1062 * The ability to 'search' an attribute directory requires
1063 * read_xattr permission on the base file.
1064 *
1065 * Once in a directory the ability to read/write attributes
1066 * is controlled by the permissions on the attribute file.
1067 */
1068 va.va_mask = ATTR_MODE | ATTR_UID | ATTR_GID;
1069 va.va_mode = S_IFDIR | S_ISVTX | 0777;
1070 zfs_fuid_map_ids(zp, cr, &va.va_uid, &va.va_gid);
1071
1072 va.va_dentry = NULL;
1073 error = zfs_make_xattrdir(zp, &va, xipp, cr);
1074 zfs_dirent_unlock(dl);
1075
1076 if (error == ERESTART) {
1077 /* NB: we already did dmu_tx_wait() if necessary */
1078 goto top;
1079 }
1080
1081 return (error);
1082 }
1083
1084 /*
1085 * Decide whether it is okay to remove within a sticky directory.
1086 *
1087 * In sticky directories, write access is not sufficient;
1088 * you can remove entries from a directory only if:
1089 *
1090 * you own the directory,
1091 * you own the entry,
1092 * the entry is a plain file and you have write access,
1093 * or you are privileged (checked in secpolicy...).
1094 *
1095 * The function returns 0 if remove access is granted.
1096 */
1097 int
1098 zfs_sticky_remove_access(znode_t *zdp, znode_t *zp, cred_t *cr)
1099 {
1100 uid_t uid;
1101 uid_t downer;
1102 uid_t fowner;
1103 zfs_sb_t *zsb = ZTOZSB(zdp);
1104
1105 if (zsb->z_replay)
1106 return (0);
1107
1108 if ((zdp->z_mode & S_ISVTX) == 0)
1109 return (0);
1110
1111 downer = zfs_fuid_map_id(zsb, zdp->z_uid, cr, ZFS_OWNER);
1112 fowner = zfs_fuid_map_id(zsb, zp->z_uid, cr, ZFS_OWNER);
1113
1114 if ((uid = crgetuid(cr)) == downer || uid == fowner ||
1115 (S_ISDIR(ZTOI(zp)->i_mode) &&
1116 zfs_zaccess(zp, ACE_WRITE_DATA, 0, B_FALSE, cr) == 0))
1117 return (0);
1118 else
1119 return (secpolicy_vnode_remove(cr));
1120 }