]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/zfs_dir.c
Fletcher4: Incremental updates and ctx calculation
[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, 2014 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(ZTOI(zp)->i_nlink == 0);
482
483 VERIFY3U(0, ==,
484 zap_add_int(zsb->z_os, zsb->z_unlinkedobj, zp->z_id, tx));
485 }
486
487 /*
488 * Clean up any znodes that had no links when we either crashed or
489 * (force) umounted the file system.
490 */
491 void
492 zfs_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
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 */
549 static int
550 zfs_purgedir(znode_t *dzp)
551 {
552 zap_cursor_t zc;
553 zap_attribute_t zap;
554 znode_t *xzp;
555 dmu_tx_t *tx;
556 zfs_sb_t *zsb = ZTOZSB(dzp);
557 zfs_dirlock_t dl;
558 int skipped = 0;
559 int error;
560
561 for (zap_cursor_init(&zc, zsb->z_os, dzp->z_id);
562 (error = zap_cursor_retrieve(&zc, &zap)) == 0;
563 zap_cursor_advance(&zc)) {
564 error = zfs_zget(zsb,
565 ZFS_DIRENT_OBJ(zap.za_first_integer), &xzp);
566 if (error) {
567 skipped += 1;
568 continue;
569 }
570
571 ASSERT(S_ISREG(ZTOI(xzp)->i_mode) ||
572 S_ISLNK(ZTOI(xzp)->i_mode));
573
574 tx = dmu_tx_create(zsb->z_os);
575 dmu_tx_hold_sa(tx, dzp->z_sa_hdl, B_FALSE);
576 dmu_tx_hold_zap(tx, dzp->z_id, FALSE, zap.za_name);
577 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
578 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, FALSE, NULL);
579 /* Is this really needed ? */
580 zfs_sa_upgrade_txholds(tx, xzp);
581 dmu_tx_mark_netfree(tx);
582 error = dmu_tx_assign(tx, TXG_WAIT);
583 if (error) {
584 dmu_tx_abort(tx);
585 zfs_iput_async(ZTOI(xzp));
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);
597
598 zfs_iput_async(ZTOI(xzp));
599 }
600 zap_cursor_fini(&zc);
601 if (error != ENOENT)
602 skipped += 1;
603 return (skipped);
604 }
605
606 void
607 zfs_rmnode(znode_t *zp)
608 {
609 zfs_sb_t *zsb = ZTOZSB(zp);
610 objset_t *os = zsb->z_os;
611 znode_t *xzp = NULL;
612 dmu_tx_t *tx;
613 uint64_t acl_obj;
614 uint64_t xattr_obj;
615 uint64_t links;
616 int error;
617
618 ASSERT(ZTOI(zp)->i_nlink == 0);
619 ASSERT(atomic_read(&ZTOI(zp)->i_count) == 0);
620
621 /*
622 * If this is an attribute directory, purge its contents.
623 */
624 if (S_ISDIR(ZTOI(zp)->i_mode) && (zp->z_pflags & ZFS_XATTR)) {
625 if (zfs_purgedir(zp) != 0) {
626 /*
627 * Not enough space to delete some xattrs.
628 * Leave it in the unlinked set.
629 */
630 zfs_znode_dmu_fini(zp);
631
632 return;
633 }
634 }
635
636 /*
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.
642 */
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 }
653 }
654
655 /*
656 * If the file has extended attributes, we're going to unlink
657 * the xattr dir.
658 */
659 error = sa_lookup(zp->z_sa_hdl, SA_ZPL_XATTR(zsb),
660 &xattr_obj, sizeof (xattr_obj));
661 if (error == 0 && xattr_obj) {
662 error = zfs_zget(zsb, xattr_obj, &xzp);
663 ASSERT(error == 0);
664 }
665
666 acl_obj = zfs_external_acl(zp);
667
668 /*
669 * Set up the final transaction.
670 */
671 tx = dmu_tx_create(os);
672 dmu_tx_hold_free(tx, zp->z_id, 0, DMU_OBJECT_END);
673 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, FALSE, NULL);
674 if (xzp) {
675 dmu_tx_hold_zap(tx, zsb->z_unlinkedobj, TRUE, NULL);
676 dmu_tx_hold_sa(tx, xzp->z_sa_hdl, B_FALSE);
677 }
678 if (acl_obj)
679 dmu_tx_hold_free(tx, acl_obj, 0, DMU_OBJECT_END);
680
681 zfs_sa_upgrade_txholds(tx, zp);
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);
691 goto out;
692 }
693
694 if (xzp) {
695 ASSERT(error == 0);
696 mutex_enter(&xzp->z_lock);
697 xzp->z_unlinked = B_TRUE; /* mark xzp for deletion */
698 clear_nlink(ZTOI(xzp)); /* no more links to it */
699 links = 0;
700 VERIFY(0 == sa_update(xzp->z_sa_hdl, SA_ZPL_LINKS(zsb),
701 &links, sizeof (links), tx));
702 mutex_exit(&xzp->z_lock);
703 zfs_unlinked_add(xzp, tx);
704 }
705
706 /* Remove this znode from the unlinked set */
707 VERIFY3U(0, ==,
708 zap_remove_int(zsb->z_os, zsb->z_unlinkedobj, zp->z_id, tx));
709
710 zfs_znode_delete(zp, tx);
711
712 dmu_tx_commit(tx);
713 out:
714 if (xzp)
715 zfs_iput_async(ZTOI(xzp));
716 }
717
718 static uint64_t
719 zfs_dirent(znode_t *zp, uint64_t mode)
720 {
721 uint64_t de = zp->z_id;
722
723 if (ZTOZSB(zp)->z_version >= ZPL_VERSION_DIRENT_TYPE)
724 de |= IFTODT(mode) << 60;
725 return (de);
726 }
727
728 /*
729 * Link zp into dl. Can only fail if zp has been unlinked.
730 */
731 int
732 zfs_link_create(zfs_dirlock_t *dl, znode_t *zp, dmu_tx_t *tx, int flag)
733 {
734 znode_t *dzp = dl->dl_dzp;
735 zfs_sb_t *zsb = ZTOZSB(zp);
736 uint64_t value;
737 int zp_is_dir = S_ISDIR(ZTOI(zp)->i_mode);
738 sa_bulk_attr_t bulk[5];
739 uint64_t mtime[2], ctime[2];
740 uint64_t links;
741 int count = 0;
742 int error;
743
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);
750 return (SET_ERROR(ENOENT));
751 }
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 }
762 }
763 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_PARENT(zsb), NULL,
764 &dzp->z_id, sizeof (dzp->z_id));
765 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
766 &zp->z_pflags, sizeof (zp->z_pflags));
767
768 if (!(flag & ZNEW)) {
769 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb), NULL,
770 ctime, sizeof (ctime));
771 zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime,
772 ctime);
773 }
774 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
775 ASSERT(error == 0);
776
777 mutex_exit(&zp->z_lock);
778
779 mutex_enter(&dzp->z_lock);
780 dzp->z_size++;
781 if (zp_is_dir)
782 inc_nlink(ZTOI(dzp));
783 links = ZTOI(dzp)->i_nlink;
784 count = 0;
785 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb), NULL,
786 &dzp->z_size, sizeof (dzp->z_size));
787 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb), NULL,
788 &links, sizeof (links));
789 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zsb), NULL,
790 mtime, sizeof (mtime));
791 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb), NULL,
792 ctime, sizeof (ctime));
793 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
794 &dzp->z_pflags, sizeof (dzp->z_pflags));
795 zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime);
796 error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
797 ASSERT(error == 0);
798 mutex_exit(&dzp->z_lock);
799
800 value = zfs_dirent(zp, zp->z_mode);
801 error = zap_add(ZTOZSB(zp)->z_os, dzp->z_id, dl->dl_name,
802 8, 1, &value, tx);
803 ASSERT(error == 0);
804
805 return (0);
806 }
807
808 static int
809 zfs_dropname(zfs_dirlock_t *dl, znode_t *zp, znode_t *dzp, dmu_tx_t *tx,
810 int flag)
811 {
812 int error;
813
814 if (ZTOZSB(zp)->z_norm) {
815 if (((ZTOZSB(zp)->z_case == ZFS_CASE_INSENSITIVE) &&
816 (flag & ZCIEXACT)) ||
817 ((ZTOZSB(zp)->z_case == ZFS_CASE_MIXED) &&
818 !(flag & ZCILOOK)))
819 error = zap_remove_norm(ZTOZSB(zp)->z_os,
820 dzp->z_id, dl->dl_name, MT_EXACT, tx);
821 else
822 error = zap_remove_norm(ZTOZSB(zp)->z_os,
823 dzp->z_id, dl->dl_name, MT_FIRST, tx);
824 } else {
825 error = zap_remove(ZTOZSB(zp)->z_os,
826 dzp->z_id, dl->dl_name, tx);
827 }
828
829 return (error);
830 }
831
832 /*
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).
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 */
839 int
840 zfs_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;
844 zfs_sb_t *zsb = ZTOZSB(dzp);
845 int zp_is_dir = S_ISDIR(ZTOI(zp)->i_mode);
846 boolean_t unlinked = B_FALSE;
847 sa_bulk_attr_t bulk[5];
848 uint64_t mtime[2], ctime[2];
849 uint64_t links;
850 int count = 0;
851 int error;
852
853 #ifdef HAVE_DNLC
854 dnlc_remove(ZTOI(dzp), dl->dl_name);
855 #endif /* HAVE_DNLC */
856
857 if (!(flag & ZRENAMING)) {
858 mutex_enter(&zp->z_lock);
859
860 if (zp_is_dir && !zfs_dirempty(zp)) {
861 mutex_exit(&zp->z_lock);
862 return (SET_ERROR(ENOTEMPTY));
863 }
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);
873 return (error);
874 }
875
876 if (ZTOI(zp)->i_nlink <= zp_is_dir) {
877 zfs_panic_recover("zfs: link count on %lu is %u, "
878 "should be at least %u", zp->z_id,
879 (int)ZTOI(zp)->i_nlink, zp_is_dir + 1);
880 set_nlink(ZTOI(zp), zp_is_dir + 1);
881 }
882 drop_nlink(ZTOI(zp));
883 if (ZTOI(zp)->i_nlink == zp_is_dir) {
884 zp->z_unlinked = B_TRUE;
885 clear_nlink(ZTOI(zp));
886 unlinked = B_TRUE;
887 } else {
888 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb),
889 NULL, &ctime, sizeof (ctime));
890 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
891 NULL, &zp->z_pflags, sizeof (zp->z_pflags));
892 zfs_tstamp_update_setup(zp, STATE_CHANGED, mtime,
893 ctime);
894 }
895 links = ZTOI(zp)->i_nlink;
896 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb),
897 NULL, &links, sizeof (links));
898 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
899 count = 0;
900 ASSERT(error == 0);
901 mutex_exit(&zp->z_lock);
902 } else {
903 error = zfs_dropname(dl, zp, dzp, tx, flag);
904 if (error != 0)
905 return (error);
906 }
907
908 mutex_enter(&dzp->z_lock);
909 dzp->z_size--; /* one dirent removed */
910 if (zp_is_dir)
911 drop_nlink(ZTOI(dzp)); /* ".." link from zp */
912 links = ZTOI(dzp)->i_nlink;
913 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb),
914 NULL, &links, sizeof (links));
915 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb),
916 NULL, &dzp->z_size, sizeof (dzp->z_size));
917 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb),
918 NULL, ctime, sizeof (ctime));
919 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zsb),
920 NULL, mtime, sizeof (mtime));
921 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
922 NULL, &dzp->z_pflags, sizeof (dzp->z_pflags));
923 zfs_tstamp_update_setup(dzp, CONTENT_MODIFIED, mtime, ctime);
924 error = sa_bulk_update(dzp->z_sa_hdl, bulk, count, tx);
925 ASSERT(error == 0);
926 mutex_exit(&dzp->z_lock);
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 */
941 boolean_t
942 zfs_dirempty(znode_t *dzp)
943 {
944 return (dzp->z_size == 2 && dzp->z_dirlocks == 0);
945 }
946
947 int
948 zfs_make_xattrdir(znode_t *zp, vattr_t *vap, struct inode **xipp, cred_t *cr)
949 {
950 zfs_sb_t *zsb = ZTOZSB(zp);
951 znode_t *xzp;
952 dmu_tx_t *tx;
953 int error;
954 zfs_acl_ids_t acl_ids;
955 boolean_t fuid_dirtied;
956 #ifdef DEBUG
957 uint64_t parent;
958 #endif
959
960 *xipp = NULL;
961
962 if ((error = zfs_zaccess(zp, ACE_WRITE_NAMED_ATTRS, 0, B_FALSE, cr)))
963 return (error);
964
965 if ((error = zfs_acl_ids_create(zp, IS_XATTR, vap, cr, NULL,
966 &acl_ids)) != 0)
967 return (error);
968 if (zfs_acl_ids_overquota(zsb, &acl_ids)) {
969 zfs_acl_ids_free(&acl_ids);
970 return (SET_ERROR(EDQUOT));
971 }
972
973 tx = dmu_tx_create(zsb->z_os);
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);
977 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
978 fuid_dirtied = zsb->z_fuid_dirty;
979 if (fuid_dirtied)
980 zfs_fuid_txhold(zsb, tx);
981 error = dmu_tx_assign(tx, TXG_WAIT);
982 if (error) {
983 zfs_acl_ids_free(&acl_ids);
984 dmu_tx_abort(tx);
985 return (error);
986 }
987 zfs_mknode(zp, vap, tx, cr, IS_XATTR, &xzp, &acl_ids);
988
989 if (fuid_dirtied)
990 zfs_fuid_sync(zsb, tx);
991
992 #ifdef DEBUG
993 error = sa_lookup(xzp->z_sa_hdl, SA_ZPL_PARENT(zsb),
994 &parent, sizeof (parent));
995 ASSERT(error == 0 && parent == zp->z_id);
996 #endif
997
998 VERIFY(0 == sa_update(zp->z_sa_hdl, SA_ZPL_XATTR(zsb), &xzp->z_id,
999 sizeof (xzp->z_id), tx));
1000
1001 (void) zfs_log_create(zsb->z_log, tx, TX_MKXATTR, zp,
1002 xzp, "", NULL, acl_ids.z_fuidp, vap);
1003
1004 zfs_acl_ids_free(&acl_ids);
1005 dmu_tx_commit(tx);
1006
1007 *xipp = ZTOI(xzp);
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 *
1020 * OUT: xipp - pointer to extended attribute znode
1021 *
1022 * RETURN: 0 on success
1023 * error number on failure
1024 */
1025 int
1026 zfs_get_xattrdir(znode_t *zp, struct inode **xipp, cred_t *cr, int flags)
1027 {
1028 zfs_sb_t *zsb = ZTOZSB(zp);
1029 znode_t *xzp;
1030 zfs_dirlock_t *dl;
1031 vattr_t va;
1032 int error;
1033 top:
1034 error = zfs_dirent_lock(&dl, zp, "", &xzp, ZXATTR, NULL, NULL);
1035 if (error)
1036 return (error);
1037
1038 if (xzp != NULL) {
1039 *xipp = ZTOI(xzp);
1040 zfs_dirent_unlock(dl);
1041 return (0);
1042 }
1043
1044 if (!(flags & CREATE_XATTR_DIR)) {
1045 zfs_dirent_unlock(dl);
1046 return (SET_ERROR(ENOENT));
1047 }
1048
1049 if (zfs_is_readonly(zsb)) {
1050 zfs_dirent_unlock(dl);
1051 return (SET_ERROR(EROFS));
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 */
1064 va.va_mask = ATTR_MODE | ATTR_UID | ATTR_GID;
1065 va.va_mode = S_IFDIR | S_ISVTX | 0777;
1066 zfs_fuid_map_ids(zp, cr, &va.va_uid, &va.va_gid);
1067
1068 va.va_dentry = NULL;
1069 error = zfs_make_xattrdir(zp, &va, xipp, cr);
1070 zfs_dirent_unlock(dl);
1071
1072 if (error == ERESTART) {
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 */
1093 int
1094 zfs_sticky_remove_access(znode_t *zdp, znode_t *zp, cred_t *cr)
1095 {
1096 uid_t uid;
1097 uid_t downer;
1098 uid_t fowner;
1099 zfs_sb_t *zsb = ZTOZSB(zdp);
1100
1101 if (zsb->z_replay)
1102 return (0);
1103
1104 if ((zdp->z_mode & S_ISVTX) == 0)
1105 return (0);
1106
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);
1111
1112 if ((uid = crgetuid(cr)) == downer || uid == fowner ||
1113 (S_ISDIR(ZTOI(zp)->i_mode) &&
1114 zfs_zaccess(zp, ACE_WRITE_DATA, 0, B_FALSE, cr) == 0))
1115 return (0);
1116 else
1117 return (secpolicy_vnode_remove(cr));
1118 }