1 /* 2 * Copyright (C) 2011 Novell Inc. 3 * Copyright (C) 2016 Red Hat, Inc. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 as published by 7 * the Free Software Foundation. 8 */ 9 10 #include <linux/fs.h> 11 #include <linux/mount.h> 12 #include <linux/slab.h> 13 #include <linux/cred.h> 14 #include <linux/xattr.h> 15 #include <linux/exportfs.h> 16 #include <linux/uuid.h> 17 #include <linux/namei.h> 18 #include <linux/ratelimit.h> 19 #include "overlayfs.h" 20 21 int ovl_want_write(struct dentry *dentry) 22 { 23 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; 24 return mnt_want_write(ofs->upper_mnt); 25 } 26 27 void ovl_drop_write(struct dentry *dentry) 28 { 29 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; 30 mnt_drop_write(ofs->upper_mnt); 31 } 32 33 struct dentry *ovl_workdir(struct dentry *dentry) 34 { 35 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; 36 return ofs->workdir; 37 } 38 39 const struct cred *ovl_override_creds(struct super_block *sb) 40 { 41 struct ovl_fs *ofs = sb->s_fs_info; 42 43 return override_creds(ofs->creator_cred); 44 } 45 46 struct super_block *ovl_same_sb(struct super_block *sb) 47 { 48 struct ovl_fs *ofs = sb->s_fs_info; 49 50 if (!ofs->numlowerfs) 51 return ofs->upper_mnt->mnt_sb; 52 else if (ofs->numlowerfs == 1 && !ofs->upper_mnt) 53 return ofs->lower_fs[0].sb; 54 else 55 return NULL; 56 } 57 58 /* 59 * Check if underlying fs supports file handles and try to determine encoding 60 * type, in order to deduce maximum inode number used by fs. 61 * 62 * Return 0 if file handles are not supported. 63 * Return 1 (FILEID_INO32_GEN) if fs uses the default 32bit inode encoding. 64 * Return -1 if fs uses a non default encoding with unknown inode size. 65 */ 66 int ovl_can_decode_fh(struct super_block *sb) 67 { 68 if (!sb->s_export_op || !sb->s_export_op->fh_to_dentry || 69 uuid_is_null(&sb->s_uuid)) 70 return 0; 71 72 return sb->s_export_op->encode_fh ? -1 : FILEID_INO32_GEN; 73 } 74 75 struct dentry *ovl_indexdir(struct super_block *sb) 76 { 77 struct ovl_fs *ofs = sb->s_fs_info; 78 79 return ofs->indexdir; 80 } 81 82 /* Index all files on copy up. For now only enabled for NFS export */ 83 bool ovl_index_all(struct super_block *sb) 84 { 85 struct ovl_fs *ofs = sb->s_fs_info; 86 87 return ofs->config.nfs_export && ofs->config.index; 88 } 89 90 /* Verify lower origin on lookup. For now only enabled for NFS export */ 91 bool ovl_verify_lower(struct super_block *sb) 92 { 93 struct ovl_fs *ofs = sb->s_fs_info; 94 95 return ofs->config.nfs_export && ofs->config.index; 96 } 97 98 struct ovl_entry *ovl_alloc_entry(unsigned int numlower) 99 { 100 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]); 101 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL); 102 103 if (oe) 104 oe->numlower = numlower; 105 106 return oe; 107 } 108 109 bool ovl_dentry_remote(struct dentry *dentry) 110 { 111 return dentry->d_flags & 112 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE | 113 DCACHE_OP_REAL); 114 } 115 116 bool ovl_dentry_weird(struct dentry *dentry) 117 { 118 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT | 119 DCACHE_MANAGE_TRANSIT | 120 DCACHE_OP_HASH | 121 DCACHE_OP_COMPARE); 122 } 123 124 enum ovl_path_type ovl_path_type(struct dentry *dentry) 125 { 126 struct ovl_entry *oe = dentry->d_fsdata; 127 enum ovl_path_type type = 0; 128 129 if (ovl_dentry_upper(dentry)) { 130 type = __OVL_PATH_UPPER; 131 132 /* 133 * Non-dir dentry can hold lower dentry of its copy up origin. 134 */ 135 if (oe->numlower) { 136 type |= __OVL_PATH_ORIGIN; 137 if (d_is_dir(dentry)) 138 type |= __OVL_PATH_MERGE; 139 } 140 } else { 141 if (oe->numlower > 1) 142 type |= __OVL_PATH_MERGE; 143 } 144 return type; 145 } 146 147 void ovl_path_upper(struct dentry *dentry, struct path *path) 148 { 149 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; 150 151 path->mnt = ofs->upper_mnt; 152 path->dentry = ovl_dentry_upper(dentry); 153 } 154 155 void ovl_path_lower(struct dentry *dentry, struct path *path) 156 { 157 struct ovl_entry *oe = dentry->d_fsdata; 158 159 if (oe->numlower) { 160 path->mnt = oe->lowerstack[0].layer->mnt; 161 path->dentry = oe->lowerstack[0].dentry; 162 } else { 163 *path = (struct path) { }; 164 } 165 } 166 167 enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path) 168 { 169 enum ovl_path_type type = ovl_path_type(dentry); 170 171 if (!OVL_TYPE_UPPER(type)) 172 ovl_path_lower(dentry, path); 173 else 174 ovl_path_upper(dentry, path); 175 176 return type; 177 } 178 179 struct dentry *ovl_dentry_upper(struct dentry *dentry) 180 { 181 return ovl_upperdentry_dereference(OVL_I(d_inode(dentry))); 182 } 183 184 struct dentry *ovl_dentry_lower(struct dentry *dentry) 185 { 186 struct ovl_entry *oe = dentry->d_fsdata; 187 188 return oe->numlower ? oe->lowerstack[0].dentry : NULL; 189 } 190 191 struct ovl_layer *ovl_layer_lower(struct dentry *dentry) 192 { 193 struct ovl_entry *oe = dentry->d_fsdata; 194 195 return oe->numlower ? oe->lowerstack[0].layer : NULL; 196 } 197 198 struct dentry *ovl_dentry_real(struct dentry *dentry) 199 { 200 return ovl_dentry_upper(dentry) ?: ovl_dentry_lower(dentry); 201 } 202 203 struct dentry *ovl_i_dentry_upper(struct inode *inode) 204 { 205 return ovl_upperdentry_dereference(OVL_I(inode)); 206 } 207 208 struct inode *ovl_inode_upper(struct inode *inode) 209 { 210 struct dentry *upperdentry = ovl_i_dentry_upper(inode); 211 212 return upperdentry ? d_inode(upperdentry) : NULL; 213 } 214 215 struct inode *ovl_inode_lower(struct inode *inode) 216 { 217 return OVL_I(inode)->lower; 218 } 219 220 struct inode *ovl_inode_real(struct inode *inode) 221 { 222 return ovl_inode_upper(inode) ?: ovl_inode_lower(inode); 223 } 224 225 226 struct ovl_dir_cache *ovl_dir_cache(struct inode *inode) 227 { 228 return OVL_I(inode)->cache; 229 } 230 231 void ovl_set_dir_cache(struct inode *inode, struct ovl_dir_cache *cache) 232 { 233 OVL_I(inode)->cache = cache; 234 } 235 236 void ovl_dentry_set_flag(unsigned long flag, struct dentry *dentry) 237 { 238 set_bit(flag, &OVL_E(dentry)->flags); 239 } 240 241 void ovl_dentry_clear_flag(unsigned long flag, struct dentry *dentry) 242 { 243 clear_bit(flag, &OVL_E(dentry)->flags); 244 } 245 246 bool ovl_dentry_test_flag(unsigned long flag, struct dentry *dentry) 247 { 248 return test_bit(flag, &OVL_E(dentry)->flags); 249 } 250 251 bool ovl_dentry_is_opaque(struct dentry *dentry) 252 { 253 return ovl_dentry_test_flag(OVL_E_OPAQUE, dentry); 254 } 255 256 bool ovl_dentry_is_whiteout(struct dentry *dentry) 257 { 258 return !dentry->d_inode && ovl_dentry_is_opaque(dentry); 259 } 260 261 void ovl_dentry_set_opaque(struct dentry *dentry) 262 { 263 ovl_dentry_set_flag(OVL_E_OPAQUE, dentry); 264 } 265 266 /* 267 * For hard links and decoded file handles, it's possible for ovl_dentry_upper() 268 * to return positive, while there's no actual upper alias for the inode. 269 * Copy up code needs to know about the existence of the upper alias, so it 270 * can't use ovl_dentry_upper(). 271 */ 272 bool ovl_dentry_has_upper_alias(struct dentry *dentry) 273 { 274 return ovl_dentry_test_flag(OVL_E_UPPER_ALIAS, dentry); 275 } 276 277 void ovl_dentry_set_upper_alias(struct dentry *dentry) 278 { 279 ovl_dentry_set_flag(OVL_E_UPPER_ALIAS, dentry); 280 } 281 282 bool ovl_redirect_dir(struct super_block *sb) 283 { 284 struct ovl_fs *ofs = sb->s_fs_info; 285 286 return ofs->config.redirect_dir && !ofs->noxattr; 287 } 288 289 const char *ovl_dentry_get_redirect(struct dentry *dentry) 290 { 291 return OVL_I(d_inode(dentry))->redirect; 292 } 293 294 void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect) 295 { 296 struct ovl_inode *oi = OVL_I(d_inode(dentry)); 297 298 kfree(oi->redirect); 299 oi->redirect = redirect; 300 } 301 302 void ovl_inode_init(struct inode *inode, struct dentry *upperdentry, 303 struct dentry *lowerdentry) 304 { 305 struct inode *realinode = d_inode(upperdentry ?: lowerdentry); 306 307 if (upperdentry) 308 OVL_I(inode)->__upperdentry = upperdentry; 309 if (lowerdentry) 310 OVL_I(inode)->lower = igrab(d_inode(lowerdentry)); 311 312 ovl_copyattr(realinode, inode); 313 if (!inode->i_ino) 314 inode->i_ino = realinode->i_ino; 315 } 316 317 void ovl_inode_update(struct inode *inode, struct dentry *upperdentry) 318 { 319 struct inode *upperinode = d_inode(upperdentry); 320 321 WARN_ON(OVL_I(inode)->__upperdentry); 322 323 /* 324 * Make sure upperdentry is consistent before making it visible 325 */ 326 smp_wmb(); 327 OVL_I(inode)->__upperdentry = upperdentry; 328 if (inode_unhashed(inode)) { 329 if (!inode->i_ino) 330 inode->i_ino = upperinode->i_ino; 331 inode->i_private = upperinode; 332 __insert_inode_hash(inode, (unsigned long) upperinode); 333 } 334 } 335 336 static void ovl_dentry_version_inc(struct dentry *dentry, bool impurity) 337 { 338 struct inode *inode = d_inode(dentry); 339 340 WARN_ON(!inode_is_locked(inode)); 341 /* 342 * Version is used by readdir code to keep cache consistent. For merge 343 * dirs all changes need to be noted. For non-merge dirs, cache only 344 * contains impure (ones which have been copied up and have origins) 345 * entries, so only need to note changes to impure entries. 346 */ 347 if (OVL_TYPE_MERGE(ovl_path_type(dentry)) || impurity) 348 OVL_I(inode)->version++; 349 } 350 351 void ovl_dir_modified(struct dentry *dentry, bool impurity) 352 { 353 /* Copy mtime/ctime */ 354 ovl_copyattr(d_inode(ovl_dentry_upper(dentry)), d_inode(dentry)); 355 356 ovl_dentry_version_inc(dentry, impurity); 357 } 358 359 u64 ovl_dentry_version_get(struct dentry *dentry) 360 { 361 struct inode *inode = d_inode(dentry); 362 363 WARN_ON(!inode_is_locked(inode)); 364 return OVL_I(inode)->version; 365 } 366 367 bool ovl_is_whiteout(struct dentry *dentry) 368 { 369 struct inode *inode = dentry->d_inode; 370 371 return inode && IS_WHITEOUT(inode); 372 } 373 374 struct file *ovl_path_open(struct path *path, int flags) 375 { 376 return dentry_open(path, flags | O_NOATIME, current_cred()); 377 } 378 379 int ovl_copy_up_start(struct dentry *dentry) 380 { 381 struct ovl_inode *oi = OVL_I(d_inode(dentry)); 382 int err; 383 384 err = mutex_lock_interruptible(&oi->lock); 385 if (!err && ovl_dentry_has_upper_alias(dentry)) { 386 err = 1; /* Already copied up */ 387 mutex_unlock(&oi->lock); 388 } 389 390 return err; 391 } 392 393 void ovl_copy_up_end(struct dentry *dentry) 394 { 395 mutex_unlock(&OVL_I(d_inode(dentry))->lock); 396 } 397 398 bool ovl_check_origin_xattr(struct dentry *dentry) 399 { 400 int res; 401 402 res = vfs_getxattr(dentry, OVL_XATTR_ORIGIN, NULL, 0); 403 404 /* Zero size value means "copied up but origin unknown" */ 405 if (res >= 0) 406 return true; 407 408 return false; 409 } 410 411 bool ovl_check_dir_xattr(struct dentry *dentry, const char *name) 412 { 413 int res; 414 char val; 415 416 if (!d_is_dir(dentry)) 417 return false; 418 419 res = vfs_getxattr(dentry, name, &val, 1); 420 if (res == 1 && val == 'y') 421 return true; 422 423 return false; 424 } 425 426 int ovl_check_setxattr(struct dentry *dentry, struct dentry *upperdentry, 427 const char *name, const void *value, size_t size, 428 int xerr) 429 { 430 int err; 431 struct ovl_fs *ofs = dentry->d_sb->s_fs_info; 432 433 if (ofs->noxattr) 434 return xerr; 435 436 err = ovl_do_setxattr(upperdentry, name, value, size, 0); 437 438 if (err == -EOPNOTSUPP) { 439 pr_warn("overlayfs: cannot set %s xattr on upper\n", name); 440 ofs->noxattr = true; 441 return xerr; 442 } 443 444 return err; 445 } 446 447 int ovl_set_impure(struct dentry *dentry, struct dentry *upperdentry) 448 { 449 int err; 450 451 if (ovl_test_flag(OVL_IMPURE, d_inode(dentry))) 452 return 0; 453 454 /* 455 * Do not fail when upper doesn't support xattrs. 456 * Upper inodes won't have origin nor redirect xattr anyway. 457 */ 458 err = ovl_check_setxattr(dentry, upperdentry, OVL_XATTR_IMPURE, 459 "y", 1, 0); 460 if (!err) 461 ovl_set_flag(OVL_IMPURE, d_inode(dentry)); 462 463 return err; 464 } 465 466 void ovl_set_flag(unsigned long flag, struct inode *inode) 467 { 468 set_bit(flag, &OVL_I(inode)->flags); 469 } 470 471 void ovl_clear_flag(unsigned long flag, struct inode *inode) 472 { 473 clear_bit(flag, &OVL_I(inode)->flags); 474 } 475 476 bool ovl_test_flag(unsigned long flag, struct inode *inode) 477 { 478 return test_bit(flag, &OVL_I(inode)->flags); 479 } 480 481 /** 482 * Caller must hold a reference to inode to prevent it from being freed while 483 * it is marked inuse. 484 */ 485 bool ovl_inuse_trylock(struct dentry *dentry) 486 { 487 struct inode *inode = d_inode(dentry); 488 bool locked = false; 489 490 spin_lock(&inode->i_lock); 491 if (!(inode->i_state & I_OVL_INUSE)) { 492 inode->i_state |= I_OVL_INUSE; 493 locked = true; 494 } 495 spin_unlock(&inode->i_lock); 496 497 return locked; 498 } 499 500 void ovl_inuse_unlock(struct dentry *dentry) 501 { 502 if (dentry) { 503 struct inode *inode = d_inode(dentry); 504 505 spin_lock(&inode->i_lock); 506 WARN_ON(!(inode->i_state & I_OVL_INUSE)); 507 inode->i_state &= ~I_OVL_INUSE; 508 spin_unlock(&inode->i_lock); 509 } 510 } 511 512 /* 513 * Does this overlay dentry need to be indexed on copy up? 514 */ 515 bool ovl_need_index(struct dentry *dentry) 516 { 517 struct dentry *lower = ovl_dentry_lower(dentry); 518 519 if (!lower || !ovl_indexdir(dentry->d_sb)) 520 return false; 521 522 /* Index all files for NFS export and consistency verification */ 523 if (ovl_index_all(dentry->d_sb)) 524 return true; 525 526 /* Index only lower hardlinks on copy up */ 527 if (!d_is_dir(lower) && d_inode(lower)->i_nlink > 1) 528 return true; 529 530 return false; 531 } 532 533 /* Caller must hold OVL_I(inode)->lock */ 534 static void ovl_cleanup_index(struct dentry *dentry) 535 { 536 struct dentry *indexdir = ovl_indexdir(dentry->d_sb); 537 struct inode *dir = indexdir->d_inode; 538 struct dentry *lowerdentry = ovl_dentry_lower(dentry); 539 struct dentry *upperdentry = ovl_dentry_upper(dentry); 540 struct dentry *index = NULL; 541 struct inode *inode; 542 struct qstr name; 543 int err; 544 545 err = ovl_get_index_name(lowerdentry, &name); 546 if (err) 547 goto fail; 548 549 inode = d_inode(upperdentry); 550 if (!S_ISDIR(inode->i_mode) && inode->i_nlink != 1) { 551 pr_warn_ratelimited("overlayfs: cleanup linked index (%pd2, ino=%lu, nlink=%u)\n", 552 upperdentry, inode->i_ino, inode->i_nlink); 553 /* 554 * We either have a bug with persistent union nlink or a lower 555 * hardlink was added while overlay is mounted. Adding a lower 556 * hardlink and then unlinking all overlay hardlinks would drop 557 * overlay nlink to zero before all upper inodes are unlinked. 558 * As a safety measure, when that situation is detected, set 559 * the overlay nlink to the index inode nlink minus one for the 560 * index entry itself. 561 */ 562 set_nlink(d_inode(dentry), inode->i_nlink - 1); 563 ovl_set_nlink_upper(dentry); 564 goto out; 565 } 566 567 inode_lock_nested(dir, I_MUTEX_PARENT); 568 index = lookup_one_len(name.name, indexdir, name.len); 569 err = PTR_ERR(index); 570 if (IS_ERR(index)) { 571 index = NULL; 572 } else if (ovl_index_all(dentry->d_sb)) { 573 /* Whiteout orphan index to block future open by handle */ 574 err = ovl_cleanup_and_whiteout(indexdir, dir, index); 575 } else { 576 /* Cleanup orphan index entries */ 577 err = ovl_cleanup(dir, index); 578 } 579 580 inode_unlock(dir); 581 if (err) 582 goto fail; 583 584 out: 585 dput(index); 586 return; 587 588 fail: 589 pr_err("overlayfs: cleanup index of '%pd2' failed (%i)\n", dentry, err); 590 goto out; 591 } 592 593 /* 594 * Operations that change overlay inode and upper inode nlink need to be 595 * synchronized with copy up for persistent nlink accounting. 596 */ 597 int ovl_nlink_start(struct dentry *dentry, bool *locked) 598 { 599 struct ovl_inode *oi = OVL_I(d_inode(dentry)); 600 const struct cred *old_cred; 601 int err; 602 603 if (!d_inode(dentry)) 604 return 0; 605 606 /* 607 * With inodes index is enabled, we store the union overlay nlink 608 * in an xattr on the index inode. When whiting out an indexed lower, 609 * we need to decrement the overlay persistent nlink, but before the 610 * first copy up, we have no upper index inode to store the xattr. 611 * 612 * As a workaround, before whiteout/rename over an indexed lower, 613 * copy up to create the upper index. Creating the upper index will 614 * initialize the overlay nlink, so it could be dropped if unlink 615 * or rename succeeds. 616 * 617 * TODO: implement metadata only index copy up when called with 618 * ovl_copy_up_flags(dentry, O_PATH). 619 */ 620 if (ovl_need_index(dentry) && !ovl_dentry_has_upper_alias(dentry)) { 621 err = ovl_copy_up(dentry); 622 if (err) 623 return err; 624 } 625 626 err = mutex_lock_interruptible(&oi->lock); 627 if (err) 628 return err; 629 630 if (d_is_dir(dentry) || !ovl_test_flag(OVL_INDEX, d_inode(dentry))) 631 goto out; 632 633 old_cred = ovl_override_creds(dentry->d_sb); 634 /* 635 * The overlay inode nlink should be incremented/decremented IFF the 636 * upper operation succeeds, along with nlink change of upper inode. 637 * Therefore, before link/unlink/rename, we store the union nlink 638 * value relative to the upper inode nlink in an upper inode xattr. 639 */ 640 err = ovl_set_nlink_upper(dentry); 641 revert_creds(old_cred); 642 643 out: 644 if (err) 645 mutex_unlock(&oi->lock); 646 else 647 *locked = true; 648 649 return err; 650 } 651 652 void ovl_nlink_end(struct dentry *dentry, bool locked) 653 { 654 if (locked) { 655 if (ovl_test_flag(OVL_INDEX, d_inode(dentry)) && 656 d_inode(dentry)->i_nlink == 0) { 657 const struct cred *old_cred; 658 659 old_cred = ovl_override_creds(dentry->d_sb); 660 ovl_cleanup_index(dentry); 661 revert_creds(old_cred); 662 } 663 664 mutex_unlock(&OVL_I(d_inode(dentry))->lock); 665 } 666 } 667 668 int ovl_lock_rename_workdir(struct dentry *workdir, struct dentry *upperdir) 669 { 670 /* Workdir should not be the same as upperdir */ 671 if (workdir == upperdir) 672 goto err; 673 674 /* Workdir should not be subdir of upperdir and vice versa */ 675 if (lock_rename(workdir, upperdir) != NULL) 676 goto err_unlock; 677 678 return 0; 679 680 err_unlock: 681 unlock_rename(workdir, upperdir); 682 err: 683 pr_err("overlayfs: failed to lock workdir+upperdir\n"); 684 return -EIO; 685 } 686