diff options
Diffstat (limited to 'fs/namespace.c')
| -rw-r--r-- | fs/namespace.c | 200 |
1 files changed, 133 insertions, 67 deletions
diff --git a/fs/namespace.c b/fs/namespace.c index 2e10cb19c5b0..a72eaabfe8f2 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
| @@ -11,6 +11,8 @@ | |||
| 11 | #include <linux/syscalls.h> | 11 | #include <linux/syscalls.h> |
| 12 | #include <linux/slab.h> | 12 | #include <linux/slab.h> |
| 13 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
| 14 | #include <linux/spinlock.h> | ||
| 15 | #include <linux/percpu.h> | ||
| 14 | #include <linux/smp_lock.h> | 16 | #include <linux/smp_lock.h> |
| 15 | #include <linux/init.h> | 17 | #include <linux/init.h> |
| 16 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
| @@ -38,12 +40,10 @@ | |||
| 38 | #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head)) | 40 | #define HASH_SHIFT ilog2(PAGE_SIZE / sizeof(struct list_head)) |
| 39 | #define HASH_SIZE (1UL << HASH_SHIFT) | 41 | #define HASH_SIZE (1UL << HASH_SHIFT) |
| 40 | 42 | ||
| 41 | /* spinlock for vfsmount related operations, inplace of dcache_lock */ | ||
| 42 | __cacheline_aligned_in_smp DEFINE_SPINLOCK(vfsmount_lock); | ||
| 43 | |||
| 44 | static int event; | 43 | static int event; |
| 45 | static DEFINE_IDA(mnt_id_ida); | 44 | static DEFINE_IDA(mnt_id_ida); |
| 46 | static DEFINE_IDA(mnt_group_ida); | 45 | static DEFINE_IDA(mnt_group_ida); |
| 46 | static DEFINE_SPINLOCK(mnt_id_lock); | ||
| 47 | static int mnt_id_start = 0; | 47 | static int mnt_id_start = 0; |
| 48 | static int mnt_group_start = 1; | 48 | static int mnt_group_start = 1; |
| 49 | 49 | ||
| @@ -55,6 +55,16 @@ static struct rw_semaphore namespace_sem; | |||
| 55 | struct kobject *fs_kobj; | 55 | struct kobject *fs_kobj; |
| 56 | EXPORT_SYMBOL_GPL(fs_kobj); | 56 | EXPORT_SYMBOL_GPL(fs_kobj); |
| 57 | 57 | ||
| 58 | /* | ||
| 59 | * vfsmount lock may be taken for read to prevent changes to the | ||
| 60 | * vfsmount hash, ie. during mountpoint lookups or walking back | ||
| 61 | * up the tree. | ||
| 62 | * | ||
| 63 | * It should be taken for write in all cases where the vfsmount | ||
| 64 | * tree or hash is modified or when a vfsmount structure is modified. | ||
| 65 | */ | ||
| 66 | DEFINE_BRLOCK(vfsmount_lock); | ||
| 67 | |||
| 58 | static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry) | 68 | static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry) |
| 59 | { | 69 | { |
| 60 | unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES); | 70 | unsigned long tmp = ((unsigned long)mnt / L1_CACHE_BYTES); |
| @@ -65,18 +75,21 @@ static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry) | |||
| 65 | 75 | ||
| 66 | #define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16) | 76 | #define MNT_WRITER_UNDERFLOW_LIMIT -(1<<16) |
| 67 | 77 | ||
| 68 | /* allocation is serialized by namespace_sem */ | 78 | /* |
| 79 | * allocation is serialized by namespace_sem, but we need the spinlock to | ||
| 80 | * serialize with freeing. | ||
| 81 | */ | ||
| 69 | static int mnt_alloc_id(struct vfsmount *mnt) | 82 | static int mnt_alloc_id(struct vfsmount *mnt) |
| 70 | { | 83 | { |
| 71 | int res; | 84 | int res; |
| 72 | 85 | ||
| 73 | retry: | 86 | retry: |
| 74 | ida_pre_get(&mnt_id_ida, GFP_KERNEL); | 87 | ida_pre_get(&mnt_id_ida, GFP_KERNEL); |
| 75 | spin_lock(&vfsmount_lock); | 88 | spin_lock(&mnt_id_lock); |
| 76 | res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id); | 89 | res = ida_get_new_above(&mnt_id_ida, mnt_id_start, &mnt->mnt_id); |
| 77 | if (!res) | 90 | if (!res) |
| 78 | mnt_id_start = mnt->mnt_id + 1; | 91 | mnt_id_start = mnt->mnt_id + 1; |
| 79 | spin_unlock(&vfsmount_lock); | 92 | spin_unlock(&mnt_id_lock); |
| 80 | if (res == -EAGAIN) | 93 | if (res == -EAGAIN) |
| 81 | goto retry; | 94 | goto retry; |
| 82 | 95 | ||
| @@ -86,11 +99,11 @@ retry: | |||
| 86 | static void mnt_free_id(struct vfsmount *mnt) | 99 | static void mnt_free_id(struct vfsmount *mnt) |
| 87 | { | 100 | { |
| 88 | int id = mnt->mnt_id; | 101 | int id = mnt->mnt_id; |
| 89 | spin_lock(&vfsmount_lock); | 102 | spin_lock(&mnt_id_lock); |
| 90 | ida_remove(&mnt_id_ida, id); | 103 | ida_remove(&mnt_id_ida, id); |
| 91 | if (mnt_id_start > id) | 104 | if (mnt_id_start > id) |
| 92 | mnt_id_start = id; | 105 | mnt_id_start = id; |
| 93 | spin_unlock(&vfsmount_lock); | 106 | spin_unlock(&mnt_id_lock); |
| 94 | } | 107 | } |
| 95 | 108 | ||
| 96 | /* | 109 | /* |
| @@ -348,7 +361,7 @@ static int mnt_make_readonly(struct vfsmount *mnt) | |||
| 348 | { | 361 | { |
| 349 | int ret = 0; | 362 | int ret = 0; |
| 350 | 363 | ||
| 351 | spin_lock(&vfsmount_lock); | 364 | br_write_lock(vfsmount_lock); |
| 352 | mnt->mnt_flags |= MNT_WRITE_HOLD; | 365 | mnt->mnt_flags |= MNT_WRITE_HOLD; |
| 353 | /* | 366 | /* |
| 354 | * After storing MNT_WRITE_HOLD, we'll read the counters. This store | 367 | * After storing MNT_WRITE_HOLD, we'll read the counters. This store |
| @@ -382,15 +395,15 @@ static int mnt_make_readonly(struct vfsmount *mnt) | |||
| 382 | */ | 395 | */ |
| 383 | smp_wmb(); | 396 | smp_wmb(); |
| 384 | mnt->mnt_flags &= ~MNT_WRITE_HOLD; | 397 | mnt->mnt_flags &= ~MNT_WRITE_HOLD; |
| 385 | spin_unlock(&vfsmount_lock); | 398 | br_write_unlock(vfsmount_lock); |
| 386 | return ret; | 399 | return ret; |
| 387 | } | 400 | } |
| 388 | 401 | ||
| 389 | static void __mnt_unmake_readonly(struct vfsmount *mnt) | 402 | static void __mnt_unmake_readonly(struct vfsmount *mnt) |
| 390 | { | 403 | { |
| 391 | spin_lock(&vfsmount_lock); | 404 | br_write_lock(vfsmount_lock); |
| 392 | mnt->mnt_flags &= ~MNT_READONLY; | 405 | mnt->mnt_flags &= ~MNT_READONLY; |
| 393 | spin_unlock(&vfsmount_lock); | 406 | br_write_unlock(vfsmount_lock); |
| 394 | } | 407 | } |
| 395 | 408 | ||
| 396 | void simple_set_mnt(struct vfsmount *mnt, struct super_block *sb) | 409 | void simple_set_mnt(struct vfsmount *mnt, struct super_block *sb) |
| @@ -414,6 +427,7 @@ void free_vfsmnt(struct vfsmount *mnt) | |||
| 414 | /* | 427 | /* |
| 415 | * find the first or last mount at @dentry on vfsmount @mnt depending on | 428 | * find the first or last mount at @dentry on vfsmount @mnt depending on |
| 416 | * @dir. If @dir is set return the first mount else return the last mount. | 429 | * @dir. If @dir is set return the first mount else return the last mount. |
| 430 | * vfsmount_lock must be held for read or write. | ||
| 417 | */ | 431 | */ |
| 418 | struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry, | 432 | struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry, |
| 419 | int dir) | 433 | int dir) |
| @@ -443,10 +457,11 @@ struct vfsmount *__lookup_mnt(struct vfsmount *mnt, struct dentry *dentry, | |||
| 443 | struct vfsmount *lookup_mnt(struct path *path) | 457 | struct vfsmount *lookup_mnt(struct path *path) |
| 444 | { | 458 | { |
| 445 | struct vfsmount *child_mnt; | 459 | struct vfsmount *child_mnt; |
| 446 | spin_lock(&vfsmount_lock); | 460 | |
| 461 | br_read_lock(vfsmount_lock); | ||
| 447 | if ((child_mnt = __lookup_mnt(path->mnt, path->dentry, 1))) | 462 | if ((child_mnt = __lookup_mnt(path->mnt, path->dentry, 1))) |
| 448 | mntget(child_mnt); | 463 | mntget(child_mnt); |
| 449 | spin_unlock(&vfsmount_lock); | 464 | br_read_unlock(vfsmount_lock); |
| 450 | return child_mnt; | 465 | return child_mnt; |
| 451 | } | 466 | } |
| 452 | 467 | ||
| @@ -455,6 +470,9 @@ static inline int check_mnt(struct vfsmount *mnt) | |||
| 455 | return mnt->mnt_ns == current->nsproxy->mnt_ns; | 470 | return mnt->mnt_ns == current->nsproxy->mnt_ns; |
| 456 | } | 471 | } |
| 457 | 472 | ||
| 473 | /* | ||
| 474 | * vfsmount lock must be held for write | ||
| 475 | */ | ||
| 458 | static void touch_mnt_namespace(struct mnt_namespace *ns) | 476 | static void touch_mnt_namespace(struct mnt_namespace *ns) |
| 459 | { | 477 | { |
| 460 | if (ns) { | 478 | if (ns) { |
| @@ -463,6 +481,9 @@ static void touch_mnt_namespace(struct mnt_namespace *ns) | |||
| 463 | } | 481 | } |
| 464 | } | 482 | } |
| 465 | 483 | ||
| 484 | /* | ||
| 485 | * vfsmount lock must be held for write | ||
| 486 | */ | ||
| 466 | static void __touch_mnt_namespace(struct mnt_namespace *ns) | 487 | static void __touch_mnt_namespace(struct mnt_namespace *ns) |
| 467 | { | 488 | { |
| 468 | if (ns && ns->event != event) { | 489 | if (ns && ns->event != event) { |
| @@ -471,6 +492,9 @@ static void __touch_mnt_namespace(struct mnt_namespace *ns) | |||
| 471 | } | 492 | } |
| 472 | } | 493 | } |
| 473 | 494 | ||
| 495 | /* | ||
| 496 | * vfsmount lock must be held for write | ||
| 497 | */ | ||
| 474 | static void detach_mnt(struct vfsmount *mnt, struct path *old_path) | 498 | static void detach_mnt(struct vfsmount *mnt, struct path *old_path) |
| 475 | { | 499 | { |
| 476 | old_path->dentry = mnt->mnt_mountpoint; | 500 | old_path->dentry = mnt->mnt_mountpoint; |
| @@ -482,6 +506,9 @@ static void detach_mnt(struct vfsmount *mnt, struct path *old_path) | |||
| 482 | old_path->dentry->d_mounted--; | 506 | old_path->dentry->d_mounted--; |
| 483 | } | 507 | } |
| 484 | 508 | ||
| 509 | /* | ||
| 510 | * vfsmount lock must be held for write | ||
| 511 | */ | ||
| 485 | void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry, | 512 | void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry, |
| 486 | struct vfsmount *child_mnt) | 513 | struct vfsmount *child_mnt) |
| 487 | { | 514 | { |
| @@ -490,6 +517,9 @@ void mnt_set_mountpoint(struct vfsmount *mnt, struct dentry *dentry, | |||
| 490 | dentry->d_mounted++; | 517 | dentry->d_mounted++; |
| 491 | } | 518 | } |
| 492 | 519 | ||
| 520 | /* | ||
| 521 | * vfsmount lock must be held for write | ||
| 522 | */ | ||
| 493 | static void attach_mnt(struct vfsmount *mnt, struct path *path) | 523 | static void attach_mnt(struct vfsmount *mnt, struct path *path) |
| 494 | { | 524 | { |
| 495 | mnt_set_mountpoint(path->mnt, path->dentry, mnt); | 525 | mnt_set_mountpoint(path->mnt, path->dentry, mnt); |
| @@ -499,7 +529,7 @@ static void attach_mnt(struct vfsmount *mnt, struct path *path) | |||
| 499 | } | 529 | } |
| 500 | 530 | ||
| 501 | /* | 531 | /* |
| 502 | * the caller must hold vfsmount_lock | 532 | * vfsmount lock must be held for write |
| 503 | */ | 533 | */ |
| 504 | static void commit_tree(struct vfsmount *mnt) | 534 | static void commit_tree(struct vfsmount *mnt) |
| 505 | { | 535 | { |
| @@ -623,39 +653,43 @@ static inline void __mntput(struct vfsmount *mnt) | |||
| 623 | void mntput_no_expire(struct vfsmount *mnt) | 653 | void mntput_no_expire(struct vfsmount *mnt) |
| 624 | { | 654 | { |
| 625 | repeat: | 655 | repeat: |
| 626 | if (atomic_dec_and_lock(&mnt->mnt_count, &vfsmount_lock)) { | 656 | if (atomic_add_unless(&mnt->mnt_count, -1, 1)) |
| 627 | if (likely(!mnt->mnt_pinned)) { | 657 | return; |
| 628 | spin_unlock(&vfsmount_lock); | 658 | br_write_lock(vfsmount_lock); |
| 629 | __mntput(mnt); | 659 | if (!atomic_dec_and_test(&mnt->mnt_count)) { |
| 630 | return; | 660 | br_write_unlock(vfsmount_lock); |
| 631 | } | 661 | return; |
| 632 | atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count); | ||
| 633 | mnt->mnt_pinned = 0; | ||
| 634 | spin_unlock(&vfsmount_lock); | ||
| 635 | acct_auto_close_mnt(mnt); | ||
| 636 | goto repeat; | ||
| 637 | } | 662 | } |
| 663 | if (likely(!mnt->mnt_pinned)) { | ||
| 664 | br_write_unlock(vfsmount_lock); | ||
| 665 | __mntput(mnt); | ||
| 666 | return; | ||
| 667 | } | ||
| 668 | atomic_add(mnt->mnt_pinned + 1, &mnt->mnt_count); | ||
| 669 | mnt->mnt_pinned = 0; | ||
| 670 | br_write_unlock(vfsmount_lock); | ||
| 671 | acct_auto_close_mnt(mnt); | ||
| 672 | goto repeat; | ||
| 638 | } | 673 | } |
| 639 | |||
| 640 | EXPORT_SYMBOL(mntput_no_expire); | 674 | EXPORT_SYMBOL(mntput_no_expire); |
| 641 | 675 | ||
| 642 | void mnt_pin(struct vfsmount *mnt) | 676 | void mnt_pin(struct vfsmount *mnt) |
| 643 | { | 677 | { |
| 644 | spin_lock(&vfsmount_lock); | 678 | br_write_lock(vfsmount_lock); |
| 645 | mnt->mnt_pinned++; | 679 | mnt->mnt_pinned++; |
| 646 | spin_unlock(&vfsmount_lock); | 680 | br_write_unlock(vfsmount_lock); |
| 647 | } | 681 | } |
| 648 | 682 | ||
| 649 | EXPORT_SYMBOL(mnt_pin); | 683 | EXPORT_SYMBOL(mnt_pin); |
| 650 | 684 | ||
| 651 | void mnt_unpin(struct vfsmount *mnt) | 685 | void mnt_unpin(struct vfsmount *mnt) |
| 652 | { | 686 | { |
| 653 | spin_lock(&vfsmount_lock); | 687 | br_write_lock(vfsmount_lock); |
| 654 | if (mnt->mnt_pinned) { | 688 | if (mnt->mnt_pinned) { |
| 655 | atomic_inc(&mnt->mnt_count); | 689 | atomic_inc(&mnt->mnt_count); |
| 656 | mnt->mnt_pinned--; | 690 | mnt->mnt_pinned--; |
| 657 | } | 691 | } |
| 658 | spin_unlock(&vfsmount_lock); | 692 | br_write_unlock(vfsmount_lock); |
| 659 | } | 693 | } |
| 660 | 694 | ||
| 661 | EXPORT_SYMBOL(mnt_unpin); | 695 | EXPORT_SYMBOL(mnt_unpin); |
| @@ -746,12 +780,12 @@ int mnt_had_events(struct proc_mounts *p) | |||
| 746 | struct mnt_namespace *ns = p->ns; | 780 | struct mnt_namespace *ns = p->ns; |
| 747 | int res = 0; | 781 | int res = 0; |
| 748 | 782 | ||
| 749 | spin_lock(&vfsmount_lock); | 783 | br_read_lock(vfsmount_lock); |
| 750 | if (p->event != ns->event) { | 784 | if (p->event != ns->event) { |
| 751 | p->event = ns->event; | 785 | p->event = ns->event; |
| 752 | res = 1; | 786 | res = 1; |
| 753 | } | 787 | } |
| 754 | spin_unlock(&vfsmount_lock); | 788 | br_read_unlock(vfsmount_lock); |
| 755 | 789 | ||
| 756 | return res; | 790 | return res; |
| 757 | } | 791 | } |
| @@ -952,12 +986,12 @@ int may_umount_tree(struct vfsmount *mnt) | |||
| 952 | int minimum_refs = 0; | 986 | int minimum_refs = 0; |
| 953 | struct vfsmount *p; | 987 | struct vfsmount *p; |
| 954 | 988 | ||
| 955 | spin_lock(&vfsmount_lock); | 989 | br_read_lock(vfsmount_lock); |
| 956 | for (p = mnt; p; p = next_mnt(p, mnt)) { | 990 | for (p = mnt; p; p = next_mnt(p, mnt)) { |
| 957 | actual_refs += atomic_read(&p->mnt_count); | 991 | actual_refs += atomic_read(&p->mnt_count); |
| 958 | minimum_refs += 2; | 992 | minimum_refs += 2; |
| 959 | } | 993 | } |
| 960 | spin_unlock(&vfsmount_lock); | 994 | br_read_unlock(vfsmount_lock); |
| 961 | 995 | ||
| 962 | if (actual_refs > minimum_refs) | 996 | if (actual_refs > minimum_refs) |
| 963 | return 0; | 997 | return 0; |
| @@ -984,10 +1018,10 @@ int may_umount(struct vfsmount *mnt) | |||
| 984 | { | 1018 | { |
| 985 | int ret = 1; | 1019 | int ret = 1; |
| 986 | down_read(&namespace_sem); | 1020 | down_read(&namespace_sem); |
| 987 | spin_lock(&vfsmount_lock); | 1021 | br_read_lock(vfsmount_lock); |
| 988 | if (propagate_mount_busy(mnt, 2)) | 1022 | if (propagate_mount_busy(mnt, 2)) |
| 989 | ret = 0; | 1023 | ret = 0; |
| 990 | spin_unlock(&vfsmount_lock); | 1024 | br_read_unlock(vfsmount_lock); |
| 991 | up_read(&namespace_sem); | 1025 | up_read(&namespace_sem); |
| 992 | return ret; | 1026 | return ret; |
| 993 | } | 1027 | } |
| @@ -1003,13 +1037,14 @@ void release_mounts(struct list_head *head) | |||
| 1003 | if (mnt->mnt_parent != mnt) { | 1037 | if (mnt->mnt_parent != mnt) { |
| 1004 | struct dentry *dentry; | 1038 | struct dentry *dentry; |
| 1005 | struct vfsmount *m; | 1039 | struct vfsmount *m; |
| 1006 | spin_lock(&vfsmount_lock); | 1040 | |
| 1041 | br_write_lock(vfsmount_lock); | ||
| 1007 | dentry = mnt->mnt_mountpoint; | 1042 | dentry = mnt->mnt_mountpoint; |
| 1008 | m = mnt->mnt_parent; | 1043 | m = mnt->mnt_parent; |
| 1009 | mnt->mnt_mountpoint = mnt->mnt_root; | 1044 | mnt->mnt_mountpoint = mnt->mnt_root; |
| 1010 | mnt->mnt_parent = mnt; | 1045 | mnt->mnt_parent = mnt; |
| 1011 | m->mnt_ghosts--; | 1046 | m->mnt_ghosts--; |
| 1012 | spin_unlock(&vfsmount_lock); | 1047 | br_write_unlock(vfsmount_lock); |
| 1013 | dput(dentry); | 1048 | dput(dentry); |
| 1014 | mntput(m); | 1049 | mntput(m); |
| 1015 | } | 1050 | } |
| @@ -1017,6 +1052,10 @@ void release_mounts(struct list_head *head) | |||
| 1017 | } | 1052 | } |
| 1018 | } | 1053 | } |
| 1019 | 1054 | ||
| 1055 | /* | ||
| 1056 | * vfsmount lock must be held for write | ||
| 1057 | * namespace_sem must be held for write | ||
| 1058 | */ | ||
| 1020 | void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill) | 1059 | void umount_tree(struct vfsmount *mnt, int propagate, struct list_head *kill) |
| 1021 | { | 1060 | { |
| 1022 | struct vfsmount *p; | 1061 | struct vfsmount *p; |
| @@ -1107,7 +1146,7 @@ static int do_umount(struct vfsmount *mnt, int flags) | |||
| 1107 | } | 1146 | } |
| 1108 | 1147 | ||
| 1109 | down_write(&namespace_sem); | 1148 | down_write(&namespace_sem); |
| 1110 | spin_lock(&vfsmount_lock); | 1149 | br_write_lock(vfsmount_lock); |
| 1111 | event++; | 1150 | event++; |
| 1112 | 1151 | ||
| 1113 | if (!(flags & MNT_DETACH)) | 1152 | if (!(flags & MNT_DETACH)) |
| @@ -1119,7 +1158,7 @@ static int do_umount(struct vfsmount *mnt, int flags) | |||
| 1119 | umount_tree(mnt, 1, &umount_list); | 1158 | umount_tree(mnt, 1, &umount_list); |
| 1120 | retval = 0; | 1159 | retval = 0; |
| 1121 | } | 1160 | } |
| 1122 | spin_unlock(&vfsmount_lock); | 1161 | br_write_unlock(vfsmount_lock); |
| 1123 | up_write(&namespace_sem); | 1162 | up_write(&namespace_sem); |
| 1124 | release_mounts(&umount_list); | 1163 | release_mounts(&umount_list); |
| 1125 | return retval; | 1164 | return retval; |
| @@ -1231,19 +1270,19 @@ struct vfsmount *copy_tree(struct vfsmount *mnt, struct dentry *dentry, | |||
| 1231 | q = clone_mnt(p, p->mnt_root, flag); | 1270 | q = clone_mnt(p, p->mnt_root, flag); |
| 1232 | if (!q) | 1271 | if (!q) |
| 1233 | goto Enomem; | 1272 | goto Enomem; |
| 1234 | spin_lock(&vfsmount_lock); | 1273 | br_write_lock(vfsmount_lock); |
| 1235 | list_add_tail(&q->mnt_list, &res->mnt_list); | 1274 | list_add_tail(&q->mnt_list, &res->mnt_list); |
| 1236 | attach_mnt(q, &path); | 1275 | attach_mnt(q, &path); |
| 1237 | spin_unlock(&vfsmount_lock); | 1276 | br_write_unlock(vfsmount_lock); |
| 1238 | } | 1277 | } |
| 1239 | } | 1278 | } |
| 1240 | return res; | 1279 | return res; |
| 1241 | Enomem: | 1280 | Enomem: |
| 1242 | if (res) { | 1281 | if (res) { |
| 1243 | LIST_HEAD(umount_list); | 1282 | LIST_HEAD(umount_list); |
| 1244 | spin_lock(&vfsmount_lock); | 1283 | br_write_lock(vfsmount_lock); |
| 1245 | umount_tree(res, 0, &umount_list); | 1284 | umount_tree(res, 0, &umount_list); |
| 1246 | spin_unlock(&vfsmount_lock); | 1285 | br_write_unlock(vfsmount_lock); |
| 1247 | release_mounts(&umount_list); | 1286 | release_mounts(&umount_list); |
| 1248 | } | 1287 | } |
| 1249 | return NULL; | 1288 | return NULL; |
| @@ -1262,9 +1301,9 @@ void drop_collected_mounts(struct vfsmount *mnt) | |||
| 1262 | { | 1301 | { |
| 1263 | LIST_HEAD(umount_list); | 1302 | LIST_HEAD(umount_list); |
| 1264 | down_write(&namespace_sem); | 1303 | down_write(&namespace_sem); |
| 1265 | spin_lock(&vfsmount_lock); | 1304 | br_write_lock(vfsmount_lock); |
| 1266 | umount_tree(mnt, 0, &umount_list); | 1305 | umount_tree(mnt, 0, &umount_list); |
| 1267 | spin_unlock(&vfsmount_lock); | 1306 | br_write_unlock(vfsmount_lock); |
| 1268 | up_write(&namespace_sem); | 1307 | up_write(&namespace_sem); |
| 1269 | release_mounts(&umount_list); | 1308 | release_mounts(&umount_list); |
| 1270 | } | 1309 | } |
| @@ -1392,7 +1431,7 @@ static int attach_recursive_mnt(struct vfsmount *source_mnt, | |||
| 1392 | if (err) | 1431 | if (err) |
| 1393 | goto out_cleanup_ids; | 1432 | goto out_cleanup_ids; |
| 1394 | 1433 | ||
| 1395 | spin_lock(&vfsmount_lock); | 1434 | br_write_lock(vfsmount_lock); |
| 1396 | 1435 | ||
| 1397 | if (IS_MNT_SHARED(dest_mnt)) { | 1436 | if (IS_MNT_SHARED(dest_mnt)) { |
| 1398 | for (p = source_mnt; p; p = next_mnt(p, source_mnt)) | 1437 | for (p = source_mnt; p; p = next_mnt(p, source_mnt)) |
| @@ -1411,7 +1450,8 @@ static int attach_recursive_mnt(struct vfsmount *source_mnt, | |||
| 1411 | list_del_init(&child->mnt_hash); | 1450 | list_del_init(&child->mnt_hash); |
| 1412 | commit_tree(child); | 1451 | commit_tree(child); |
| 1413 | } | 1452 | } |
| 1414 | spin_unlock(&vfsmount_lock); | 1453 | br_write_unlock(vfsmount_lock); |
| 1454 | |||
| 1415 | return 0; | 1455 | return 0; |
| 1416 | 1456 | ||
| 1417 | out_cleanup_ids: | 1457 | out_cleanup_ids: |
| @@ -1444,13 +1484,30 @@ out_unlock: | |||
| 1444 | } | 1484 | } |
| 1445 | 1485 | ||
| 1446 | /* | 1486 | /* |
| 1487 | * Sanity check the flags to change_mnt_propagation. | ||
| 1488 | */ | ||
| 1489 | |||
| 1490 | static int flags_to_propagation_type(int flags) | ||
| 1491 | { | ||
| 1492 | int type = flags & ~MS_REC; | ||
| 1493 | |||
| 1494 | /* Fail if any non-propagation flags are set */ | ||
| 1495 | if (type & ~(MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) | ||
| 1496 | return 0; | ||
| 1497 | /* Only one propagation flag should be set */ | ||
| 1498 | if (!is_power_of_2(type)) | ||
| 1499 | return 0; | ||
| 1500 | return type; | ||
| 1501 | } | ||
| 1502 | |||
| 1503 | /* | ||
| 1447 | * recursively change the type of the mountpoint. | 1504 | * recursively change the type of the mountpoint. |
| 1448 | */ | 1505 | */ |
| 1449 | static int do_change_type(struct path *path, int flag) | 1506 | static int do_change_type(struct path *path, int flag) |
| 1450 | { | 1507 | { |
| 1451 | struct vfsmount *m, *mnt = path->mnt; | 1508 | struct vfsmount *m, *mnt = path->mnt; |
| 1452 | int recurse = flag & MS_REC; | 1509 | int recurse = flag & MS_REC; |
| 1453 | int type = flag & ~MS_REC; | 1510 | int type; |
| 1454 | int err = 0; | 1511 | int err = 0; |
| 1455 | 1512 | ||
| 1456 | if (!capable(CAP_SYS_ADMIN)) | 1513 | if (!capable(CAP_SYS_ADMIN)) |
| @@ -1459,6 +1516,10 @@ static int do_change_type(struct path *path, int flag) | |||
| 1459 | if (path->dentry != path->mnt->mnt_root) | 1516 | if (path->dentry != path->mnt->mnt_root) |
| 1460 | return -EINVAL; | 1517 | return -EINVAL; |
| 1461 | 1518 | ||
| 1519 | type = flags_to_propagation_type(flag); | ||
| 1520 | if (!type) | ||
| 1521 | return -EINVAL; | ||
| 1522 | |||
| 1462 | down_write(&namespace_sem); | 1523 | down_write(&namespace_sem); |
| 1463 | if (type == MS_SHARED) { | 1524 | if (type == MS_SHARED) { |
| 1464 | err = invent_group_ids(mnt, recurse); | 1525 | err = invent_group_ids(mnt, recurse); |
| @@ -1466,10 +1527,10 @@ static int do_change_type(struct path *path, int flag) | |||
| 1466 | goto out_unlock; | 1527 | goto out_unlock; |
| 1467 | } | 1528 | } |
| 1468 | 1529 | ||
| 1469 | spin_lock(&vfsmount_lock); | 1530 | br_write_lock(vfsmount_lock); |
| 1470 | for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL)) | 1531 | for (m = mnt; m; m = (recurse ? next_mnt(m, mnt) : NULL)) |
| 1471 | change_mnt_propagation(m, type); | 1532 | change_mnt_propagation(m, type); |
| 1472 | spin_unlock(&vfsmount_lock); | 1533 | br_write_unlock(vfsmount_lock); |
| 1473 | 1534 | ||
| 1474 | out_unlock: | 1535 | out_unlock: |
| 1475 | up_write(&namespace_sem); | 1536 | up_write(&namespace_sem); |
| @@ -1513,9 +1574,10 @@ static int do_loopback(struct path *path, char *old_name, | |||
| 1513 | err = graft_tree(mnt, path); | 1574 | err = graft_tree(mnt, path); |
| 1514 | if (err) { | 1575 | if (err) { |
| 1515 | LIST_HEAD(umount_list); | 1576 | LIST_HEAD(umount_list); |
| 1516 | spin_lock(&vfsmount_lock); | 1577 | |
| 1578 | br_write_lock(vfsmount_lock); | ||
| 1517 | umount_tree(mnt, 0, &umount_list); | 1579 | umount_tree(mnt, 0, &umount_list); |
| 1518 | spin_unlock(&vfsmount_lock); | 1580 | br_write_unlock(vfsmount_lock); |
| 1519 | release_mounts(&umount_list); | 1581 | release_mounts(&umount_list); |
| 1520 | } | 1582 | } |
| 1521 | 1583 | ||
| @@ -1568,16 +1630,16 @@ static int do_remount(struct path *path, int flags, int mnt_flags, | |||
| 1568 | else | 1630 | else |
| 1569 | err = do_remount_sb(sb, flags, data, 0); | 1631 | err = do_remount_sb(sb, flags, data, 0); |
| 1570 | if (!err) { | 1632 | if (!err) { |
| 1571 | spin_lock(&vfsmount_lock); | 1633 | br_write_lock(vfsmount_lock); |
| 1572 | mnt_flags |= path->mnt->mnt_flags & MNT_PROPAGATION_MASK; | 1634 | mnt_flags |= path->mnt->mnt_flags & MNT_PROPAGATION_MASK; |
| 1573 | path->mnt->mnt_flags = mnt_flags; | 1635 | path->mnt->mnt_flags = mnt_flags; |
| 1574 | spin_unlock(&vfsmount_lock); | 1636 | br_write_unlock(vfsmount_lock); |
| 1575 | } | 1637 | } |
| 1576 | up_write(&sb->s_umount); | 1638 | up_write(&sb->s_umount); |
| 1577 | if (!err) { | 1639 | if (!err) { |
| 1578 | spin_lock(&vfsmount_lock); | 1640 | br_write_lock(vfsmount_lock); |
| 1579 | touch_mnt_namespace(path->mnt->mnt_ns); | 1641 | touch_mnt_namespace(path->mnt->mnt_ns); |
| 1580 | spin_unlock(&vfsmount_lock); | 1642 | br_write_unlock(vfsmount_lock); |
| 1581 | } | 1643 | } |
| 1582 | return err; | 1644 | return err; |
| 1583 | } | 1645 | } |
| @@ -1754,7 +1816,7 @@ void mark_mounts_for_expiry(struct list_head *mounts) | |||
| 1754 | return; | 1816 | return; |
| 1755 | 1817 | ||
| 1756 | down_write(&namespace_sem); | 1818 | down_write(&namespace_sem); |
| 1757 | spin_lock(&vfsmount_lock); | 1819 | br_write_lock(vfsmount_lock); |
| 1758 | 1820 | ||
| 1759 | /* extract from the expiration list every vfsmount that matches the | 1821 | /* extract from the expiration list every vfsmount that matches the |
| 1760 | * following criteria: | 1822 | * following criteria: |
| @@ -1773,7 +1835,7 @@ void mark_mounts_for_expiry(struct list_head *mounts) | |||
| 1773 | touch_mnt_namespace(mnt->mnt_ns); | 1835 | touch_mnt_namespace(mnt->mnt_ns); |
| 1774 | umount_tree(mnt, 1, &umounts); | 1836 | umount_tree(mnt, 1, &umounts); |
| 1775 | } | 1837 | } |
| 1776 | spin_unlock(&vfsmount_lock); | 1838 | br_write_unlock(vfsmount_lock); |
| 1777 | up_write(&namespace_sem); | 1839 | up_write(&namespace_sem); |
| 1778 | 1840 | ||
| 1779 | release_mounts(&umounts); | 1841 | release_mounts(&umounts); |
| @@ -1830,6 +1892,8 @@ resume: | |||
| 1830 | /* | 1892 | /* |
| 1831 | * process a list of expirable mountpoints with the intent of discarding any | 1893 | * process a list of expirable mountpoints with the intent of discarding any |
| 1832 | * submounts of a specific parent mountpoint | 1894 | * submounts of a specific parent mountpoint |
| 1895 | * | ||
| 1896 | * vfsmount_lock must be held for write | ||
| 1833 | */ | 1897 | */ |
| 1834 | static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts) | 1898 | static void shrink_submounts(struct vfsmount *mnt, struct list_head *umounts) |
| 1835 | { | 1899 | { |
| @@ -2048,9 +2112,9 @@ static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns, | |||
| 2048 | kfree(new_ns); | 2112 | kfree(new_ns); |
| 2049 | return ERR_PTR(-ENOMEM); | 2113 | return ERR_PTR(-ENOMEM); |
| 2050 | } | 2114 | } |
| 2051 | spin_lock(&vfsmount_lock); | 2115 | br_write_lock(vfsmount_lock); |
| 2052 | list_add_tail(&new_ns->list, &new_ns->root->mnt_list); | 2116 | list_add_tail(&new_ns->list, &new_ns->root->mnt_list); |
| 2053 | spin_unlock(&vfsmount_lock); | 2117 | br_write_unlock(vfsmount_lock); |
| 2054 | 2118 | ||
| 2055 | /* | 2119 | /* |
| 2056 | * Second pass: switch the tsk->fs->* elements and mark new vfsmounts | 2120 | * Second pass: switch the tsk->fs->* elements and mark new vfsmounts |
| @@ -2244,7 +2308,7 @@ SYSCALL_DEFINE2(pivot_root, const char __user *, new_root, | |||
| 2244 | goto out2; /* not attached */ | 2308 | goto out2; /* not attached */ |
| 2245 | /* make sure we can reach put_old from new_root */ | 2309 | /* make sure we can reach put_old from new_root */ |
| 2246 | tmp = old.mnt; | 2310 | tmp = old.mnt; |
| 2247 | spin_lock(&vfsmount_lock); | 2311 | br_write_lock(vfsmount_lock); |
| 2248 | if (tmp != new.mnt) { | 2312 | if (tmp != new.mnt) { |
| 2249 | for (;;) { | 2313 | for (;;) { |
| 2250 | if (tmp->mnt_parent == tmp) | 2314 | if (tmp->mnt_parent == tmp) |
| @@ -2264,7 +2328,7 @@ SYSCALL_DEFINE2(pivot_root, const char __user *, new_root, | |||
| 2264 | /* mount new_root on / */ | 2328 | /* mount new_root on / */ |
| 2265 | attach_mnt(new.mnt, &root_parent); | 2329 | attach_mnt(new.mnt, &root_parent); |
| 2266 | touch_mnt_namespace(current->nsproxy->mnt_ns); | 2330 | touch_mnt_namespace(current->nsproxy->mnt_ns); |
| 2267 | spin_unlock(&vfsmount_lock); | 2331 | br_write_unlock(vfsmount_lock); |
| 2268 | chroot_fs_refs(&root, &new); | 2332 | chroot_fs_refs(&root, &new); |
| 2269 | error = 0; | 2333 | error = 0; |
| 2270 | path_put(&root_parent); | 2334 | path_put(&root_parent); |
| @@ -2279,7 +2343,7 @@ out1: | |||
| 2279 | out0: | 2343 | out0: |
| 2280 | return error; | 2344 | return error; |
| 2281 | out3: | 2345 | out3: |
| 2282 | spin_unlock(&vfsmount_lock); | 2346 | br_write_unlock(vfsmount_lock); |
| 2283 | goto out2; | 2347 | goto out2; |
| 2284 | } | 2348 | } |
| 2285 | 2349 | ||
| @@ -2326,6 +2390,8 @@ void __init mnt_init(void) | |||
| 2326 | for (u = 0; u < HASH_SIZE; u++) | 2390 | for (u = 0; u < HASH_SIZE; u++) |
| 2327 | INIT_LIST_HEAD(&mount_hashtable[u]); | 2391 | INIT_LIST_HEAD(&mount_hashtable[u]); |
| 2328 | 2392 | ||
| 2393 | br_lock_init(vfsmount_lock); | ||
| 2394 | |||
| 2329 | err = sysfs_init(); | 2395 | err = sysfs_init(); |
| 2330 | if (err) | 2396 | if (err) |
| 2331 | printk(KERN_WARNING "%s: sysfs_init error: %d\n", | 2397 | printk(KERN_WARNING "%s: sysfs_init error: %d\n", |
| @@ -2344,9 +2410,9 @@ void put_mnt_ns(struct mnt_namespace *ns) | |||
| 2344 | if (!atomic_dec_and_test(&ns->count)) | 2410 | if (!atomic_dec_and_test(&ns->count)) |
| 2345 | return; | 2411 | return; |
| 2346 | down_write(&namespace_sem); | 2412 | down_write(&namespace_sem); |
| 2347 | spin_lock(&vfsmount_lock); | 2413 | br_write_lock(vfsmount_lock); |
| 2348 | umount_tree(ns->root, 0, &umount_list); | 2414 | umount_tree(ns->root, 0, &umount_list); |
| 2349 | spin_unlock(&vfsmount_lock); | 2415 | br_write_unlock(vfsmount_lock); |
| 2350 | up_write(&namespace_sem); | 2416 | up_write(&namespace_sem); |
| 2351 | release_mounts(&umount_list); | 2417 | release_mounts(&umount_list); |
| 2352 | kfree(ns); | 2418 | kfree(ns); |
