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