Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/pnode.c |
| 3 | * |
| 4 | * (C) Copyright IBM Corporation 2005. |
| 5 | * Released under GPL v2. |
| 6 | * Author : Ram Pai (linuxram@us.ibm.com) |
| 7 | * |
| 8 | */ |
Kirill Korotaev | 6b3286e | 2006-12-08 02:37:56 -0800 | [diff] [blame] | 9 | #include <linux/mnt_namespace.h> |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 10 | #include <linux/mount.h> |
| 11 | #include <linux/fs.h> |
Eric W. Biederman | 132c94e | 2013-03-22 04:08:05 -0700 | [diff] [blame] | 12 | #include <linux/nsproxy.h> |
Al Viro | 6d59e7f | 2008-03-22 15:48:17 -0400 | [diff] [blame] | 13 | #include "internal.h" |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 14 | #include "pnode.h" |
| 15 | |
Ram Pai | 03e06e6 | 2005-11-07 17:19:33 -0500 | [diff] [blame] | 16 | /* return the next shared peer mount of @p */ |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 17 | static inline struct mount *next_peer(struct mount *p) |
Ram Pai | 03e06e6 | 2005-11-07 17:19:33 -0500 | [diff] [blame] | 18 | { |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 19 | return list_entry(p->mnt_share.next, struct mount, mnt_share); |
Ram Pai | 03e06e6 | 2005-11-07 17:19:33 -0500 | [diff] [blame] | 20 | } |
| 21 | |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 22 | static inline struct mount *first_slave(struct mount *p) |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 23 | { |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 24 | return list_entry(p->mnt_slave_list.next, struct mount, mnt_slave); |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 25 | } |
| 26 | |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 27 | static inline struct mount *last_slave(struct mount *p) |
| 28 | { |
| 29 | return list_entry(p->mnt_slave_list.prev, struct mount, mnt_slave); |
| 30 | } |
| 31 | |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 32 | static inline struct mount *next_slave(struct mount *p) |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 33 | { |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 34 | return list_entry(p->mnt_slave.next, struct mount, mnt_slave); |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 35 | } |
| 36 | |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 37 | static struct mount *get_peer_under_root(struct mount *mnt, |
| 38 | struct mnt_namespace *ns, |
| 39 | const struct path *root) |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 40 | { |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 41 | struct mount *m = mnt; |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 42 | |
| 43 | do { |
| 44 | /* Check the namespace first for optimization */ |
Al Viro | 143c8c9 | 2011-11-25 00:46:35 -0500 | [diff] [blame] | 45 | if (m->mnt_ns == ns && is_path_reachable(m, m->mnt.mnt_root, root)) |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 46 | return m; |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 47 | |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 48 | m = next_peer(m); |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 49 | } while (m != mnt); |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 50 | |
| 51 | return NULL; |
| 52 | } |
| 53 | |
| 54 | /* |
| 55 | * Get ID of closest dominating peer group having a representative |
| 56 | * under the given root. |
| 57 | * |
| 58 | * Caller must hold namespace_sem |
| 59 | */ |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 60 | int get_dominating_id(struct mount *mnt, const struct path *root) |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 61 | { |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 62 | struct mount *m; |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 63 | |
Al Viro | 3230192 | 2011-11-25 00:10:28 -0500 | [diff] [blame] | 64 | for (m = mnt->mnt_master; m != NULL; m = m->mnt_master) { |
Al Viro | 143c8c9 | 2011-11-25 00:46:35 -0500 | [diff] [blame] | 65 | struct mount *d = get_peer_under_root(m, mnt->mnt_ns, root); |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 66 | if (d) |
Al Viro | 15169fe | 2011-11-25 00:50:41 -0500 | [diff] [blame] | 67 | return d->mnt_group_id; |
Miklos Szeredi | 97e7e0f | 2008-03-27 13:06:26 +0100 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | return 0; |
| 71 | } |
| 72 | |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 73 | static int do_make_slave(struct mount *mnt) |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 74 | { |
Al Viro | 3230192 | 2011-11-25 00:10:28 -0500 | [diff] [blame] | 75 | struct mount *peer_mnt = mnt, *master = mnt->mnt_master; |
Al Viro | d10e8de | 2011-11-25 00:07:16 -0500 | [diff] [blame] | 76 | struct mount *slave_mnt; |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 77 | |
| 78 | /* |
| 79 | * slave 'mnt' to a peer mount that has the |
Al Viro | 796a6b5 | 2010-01-16 13:28:47 -0500 | [diff] [blame] | 80 | * same root dentry. If none is available then |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 81 | * slave it to anything that is available. |
| 82 | */ |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 83 | while ((peer_mnt = next_peer(peer_mnt)) != mnt && |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 84 | peer_mnt->mnt.mnt_root != mnt->mnt.mnt_root) ; |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 85 | |
| 86 | if (peer_mnt == mnt) { |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 87 | peer_mnt = next_peer(mnt); |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 88 | if (peer_mnt == mnt) |
| 89 | peer_mnt = NULL; |
| 90 | } |
Takashi Iwai | 5d477b6 | 2013-05-10 14:04:11 +0200 | [diff] [blame] | 91 | if (mnt->mnt_group_id && IS_MNT_SHARED(mnt) && |
| 92 | list_empty(&mnt->mnt_share)) |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 93 | mnt_release_group_id(mnt); |
Miklos Szeredi | 719f5d7 | 2008-03-27 13:06:23 +0100 | [diff] [blame] | 94 | |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 95 | list_del_init(&mnt->mnt_share); |
Al Viro | 15169fe | 2011-11-25 00:50:41 -0500 | [diff] [blame] | 96 | mnt->mnt_group_id = 0; |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 97 | |
| 98 | if (peer_mnt) |
| 99 | master = peer_mnt; |
| 100 | |
| 101 | if (master) { |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 102 | list_for_each_entry(slave_mnt, &mnt->mnt_slave_list, mnt_slave) |
Al Viro | 3230192 | 2011-11-25 00:10:28 -0500 | [diff] [blame] | 103 | slave_mnt->mnt_master = master; |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 104 | list_move(&mnt->mnt_slave, &master->mnt_slave_list); |
| 105 | list_splice(&mnt->mnt_slave_list, master->mnt_slave_list.prev); |
| 106 | INIT_LIST_HEAD(&mnt->mnt_slave_list); |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 107 | } else { |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 108 | struct list_head *p = &mnt->mnt_slave_list; |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 109 | while (!list_empty(p)) { |
Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 110 | slave_mnt = list_first_entry(p, |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 111 | struct mount, mnt_slave); |
| 112 | list_del_init(&slave_mnt->mnt_slave); |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 113 | slave_mnt->mnt_master = NULL; |
| 114 | } |
| 115 | } |
Al Viro | 3230192 | 2011-11-25 00:10:28 -0500 | [diff] [blame] | 116 | mnt->mnt_master = master; |
Al Viro | fc7be13 | 2011-11-25 01:05:37 -0500 | [diff] [blame] | 117 | CLEAR_MNT_SHARED(mnt); |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 118 | return 0; |
| 119 | } |
| 120 | |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 121 | /* |
| 122 | * vfsmount lock must be held for write |
| 123 | */ |
Al Viro | 0f0afb1 | 2011-11-24 20:43:10 -0500 | [diff] [blame] | 124 | void change_mnt_propagation(struct mount *mnt, int type) |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 125 | { |
Ram Pai | 03e06e6 | 2005-11-07 17:19:33 -0500 | [diff] [blame] | 126 | if (type == MS_SHARED) { |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 127 | set_mnt_shared(mnt); |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 128 | return; |
| 129 | } |
Al Viro | 6fc7871 | 2011-11-24 23:35:54 -0500 | [diff] [blame] | 130 | do_make_slave(mnt); |
Ram Pai | a58b0eb | 2005-11-07 17:20:48 -0500 | [diff] [blame] | 131 | if (type != MS_SLAVE) { |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 132 | list_del_init(&mnt->mnt_slave); |
Al Viro | d10e8de | 2011-11-25 00:07:16 -0500 | [diff] [blame] | 133 | mnt->mnt_master = NULL; |
Ram Pai | 9676f0c | 2005-11-07 17:21:20 -0500 | [diff] [blame] | 134 | if (type == MS_UNBINDABLE) |
Al Viro | 0f0afb1 | 2011-11-24 20:43:10 -0500 | [diff] [blame] | 135 | mnt->mnt.mnt_flags |= MNT_UNBINDABLE; |
Andries E. Brouwer | 0b03cfb | 2008-02-06 01:36:32 -0800 | [diff] [blame] | 136 | else |
Al Viro | 0f0afb1 | 2011-11-24 20:43:10 -0500 | [diff] [blame] | 137 | mnt->mnt.mnt_flags &= ~MNT_UNBINDABLE; |
Ram Pai | 03e06e6 | 2005-11-07 17:19:33 -0500 | [diff] [blame] | 138 | } |
Ram Pai | 07b2088 | 2005-11-07 17:19:07 -0500 | [diff] [blame] | 139 | } |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 140 | |
| 141 | /* |
| 142 | * get the next mount in the propagation tree. |
| 143 | * @m: the mount seen last |
| 144 | * @origin: the original mount from where the tree walk initiated |
Al Viro | 796a6b5 | 2010-01-16 13:28:47 -0500 | [diff] [blame] | 145 | * |
| 146 | * Note that peer groups form contiguous segments of slave lists. |
| 147 | * We rely on that in get_source() to be able to find out if |
| 148 | * vfsmount found while iterating with propagation_next() is |
| 149 | * a peer of one we'd found earlier. |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 150 | */ |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 151 | static struct mount *propagation_next(struct mount *m, |
| 152 | struct mount *origin) |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 153 | { |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 154 | /* are there any slaves of this mount? */ |
Al Viro | 143c8c9 | 2011-11-25 00:46:35 -0500 | [diff] [blame] | 155 | if (!IS_MNT_NEW(m) && !list_empty(&m->mnt_slave_list)) |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 156 | return first_slave(m); |
| 157 | |
| 158 | while (1) { |
Al Viro | 3230192 | 2011-11-25 00:10:28 -0500 | [diff] [blame] | 159 | struct mount *master = m->mnt_master; |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 160 | |
Al Viro | 3230192 | 2011-11-25 00:10:28 -0500 | [diff] [blame] | 161 | if (master == origin->mnt_master) { |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 162 | struct mount *next = next_peer(m); |
| 163 | return (next == origin) ? NULL : next; |
Al Viro | 6776db3d | 2011-11-25 00:22:05 -0500 | [diff] [blame] | 164 | } else if (m->mnt_slave.next != &master->mnt_slave_list) |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 165 | return next_slave(m); |
| 166 | |
| 167 | /* back at master */ |
| 168 | m = master; |
| 169 | } |
| 170 | } |
| 171 | |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 172 | static struct mount *skip_propagation_subtree(struct mount *m, |
| 173 | struct mount *origin) |
| 174 | { |
| 175 | /* |
| 176 | * Advance m such that propagation_next will not return |
| 177 | * the slaves of m. |
| 178 | */ |
| 179 | if (!IS_MNT_NEW(m) && !list_empty(&m->mnt_slave_list)) |
| 180 | m = last_slave(m); |
| 181 | |
| 182 | return m; |
| 183 | } |
| 184 | |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 185 | static struct mount *next_group(struct mount *m, struct mount *origin) |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 186 | { |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 187 | while (1) { |
| 188 | while (1) { |
| 189 | struct mount *next; |
| 190 | if (!IS_MNT_NEW(m) && !list_empty(&m->mnt_slave_list)) |
| 191 | return first_slave(m); |
| 192 | next = next_peer(m); |
| 193 | if (m->mnt_group_id == origin->mnt_group_id) { |
| 194 | if (next == origin) |
| 195 | return NULL; |
| 196 | } else if (m->mnt_slave.next != &next->mnt_slave) |
| 197 | break; |
| 198 | m = next; |
Al Viro | 796a6b5 | 2010-01-16 13:28:47 -0500 | [diff] [blame] | 199 | } |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 200 | /* m is the last peer */ |
| 201 | while (1) { |
| 202 | struct mount *master = m->mnt_master; |
| 203 | if (m->mnt_slave.next != &master->mnt_slave_list) |
| 204 | return next_slave(m); |
| 205 | m = next_peer(master); |
| 206 | if (master->mnt_group_id == origin->mnt_group_id) |
| 207 | break; |
| 208 | if (master->mnt_slave.next == &m->mnt_slave) |
| 209 | break; |
| 210 | m = master; |
| 211 | } |
| 212 | if (m == origin) |
| 213 | return NULL; |
Ram Pai | 5afe002 | 2005-11-07 17:21:01 -0500 | [diff] [blame] | 214 | } |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | /* all accesses are serialized by namespace_sem */ |
| 218 | static struct user_namespace *user_ns; |
Eric W. Biederman | 5ec0811 | 2016-05-05 09:29:29 -0500 | [diff] [blame] | 219 | static struct mount *last_dest, *first_source, *last_source, *dest_master; |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 220 | static struct mountpoint *mp; |
| 221 | static struct hlist_head *list; |
| 222 | |
Maxim Patlasov | 7ae8fd0 | 2016-02-16 11:45:33 -0800 | [diff] [blame] | 223 | static inline bool peers(struct mount *m1, struct mount *m2) |
| 224 | { |
| 225 | return m1->mnt_group_id == m2->mnt_group_id && m1->mnt_group_id; |
| 226 | } |
| 227 | |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 228 | static int propagate_one(struct mount *m) |
| 229 | { |
| 230 | struct mount *child; |
| 231 | int type; |
| 232 | /* skip ones added by this propagate_mnt() */ |
| 233 | if (IS_MNT_NEW(m)) |
| 234 | return 0; |
| 235 | /* skip if mountpoint isn't covered by it */ |
| 236 | if (!is_subdir(mp->m_dentry, m->mnt.mnt_root)) |
| 237 | return 0; |
Maxim Patlasov | 7ae8fd0 | 2016-02-16 11:45:33 -0800 | [diff] [blame] | 238 | if (peers(m, last_dest)) { |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 239 | type = CL_MAKE_SHARED; |
| 240 | } else { |
| 241 | struct mount *n, *p; |
Eric W. Biederman | 5ec0811 | 2016-05-05 09:29:29 -0500 | [diff] [blame] | 242 | bool done; |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 243 | for (n = m; ; n = p) { |
| 244 | p = n->mnt_master; |
Eric W. Biederman | 5ec0811 | 2016-05-05 09:29:29 -0500 | [diff] [blame] | 245 | if (p == dest_master || IS_MNT_MARKED(p)) |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 246 | break; |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 247 | } |
Eric W. Biederman | 5ec0811 | 2016-05-05 09:29:29 -0500 | [diff] [blame] | 248 | do { |
| 249 | struct mount *parent = last_source->mnt_parent; |
| 250 | if (last_source == first_source) |
| 251 | break; |
| 252 | done = parent->mnt_master == p; |
| 253 | if (done && peers(n, parent)) |
| 254 | break; |
| 255 | last_source = last_source->mnt_master; |
| 256 | } while (!done); |
| 257 | |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 258 | type = CL_SLAVE; |
| 259 | /* beginning of peer group among the slaves? */ |
| 260 | if (IS_MNT_SHARED(m)) |
| 261 | type |= CL_MAKE_SHARED; |
| 262 | } |
| 263 | |
| 264 | /* Notice when we are propagating across user namespaces */ |
| 265 | if (m->mnt_ns->user_ns != user_ns) |
| 266 | type |= CL_UNPRIVILEGED; |
| 267 | child = copy_tree(last_source, last_source->mnt.mnt_root, type); |
| 268 | if (IS_ERR(child)) |
| 269 | return PTR_ERR(child); |
Eric W. Biederman | 8486a78 | 2014-10-07 16:22:52 -0700 | [diff] [blame] | 270 | child->mnt.mnt_flags &= ~MNT_LOCKED; |
Al Viro | fcd4181 | 2020-04-27 10:26:22 -0400 | [diff] [blame] | 271 | read_seqlock_excl(&mount_lock); |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 272 | mnt_set_mountpoint(m, mp, child); |
Al Viro | fcd4181 | 2020-04-27 10:26:22 -0400 | [diff] [blame] | 273 | if (m->mnt_master != dest_master) |
| 274 | SET_MNT_MARK(m->mnt_master); |
| 275 | read_sequnlock_excl(&mount_lock); |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 276 | last_dest = m; |
| 277 | last_source = child; |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 278 | hlist_add_head(&child->mnt_hash, list); |
Eric W. Biederman | d292168 | 2016-09-28 00:27:17 -0500 | [diff] [blame] | 279 | return count_mounts(m->mnt_ns, child); |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /* |
| 283 | * mount 'source_mnt' under the destination 'dest_mnt' at |
| 284 | * dentry 'dest_dentry'. And propagate that mount to |
| 285 | * all the peer and slave mounts of 'dest_mnt'. |
| 286 | * Link all the new mounts into a propagation tree headed at |
| 287 | * source_mnt. Also link all the new mounts using ->mnt_list |
| 288 | * headed at source_mnt's ->mnt_list |
| 289 | * |
| 290 | * @dest_mnt: destination mount. |
| 291 | * @dest_dentry: destination dentry. |
| 292 | * @source_mnt: source mount. |
| 293 | * @tree_list : list of heads of trees to be attached. |
| 294 | */ |
Al Viro | 84d1719 | 2013-03-15 10:53:28 -0400 | [diff] [blame] | 295 | int propagate_mnt(struct mount *dest_mnt, struct mountpoint *dest_mp, |
Al Viro | 38129a1 | 2014-03-20 21:10:51 -0400 | [diff] [blame] | 296 | struct mount *source_mnt, struct hlist_head *tree_list) |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 297 | { |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 298 | struct mount *m, *n; |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 299 | int ret = 0; |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 300 | |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 301 | /* |
| 302 | * we don't want to bother passing tons of arguments to |
| 303 | * propagate_one(); everything is serialized by namespace_sem, |
| 304 | * so globals will do just fine. |
| 305 | */ |
| 306 | user_ns = current->nsproxy->mnt_ns->user_ns; |
| 307 | last_dest = dest_mnt; |
Eric W. Biederman | 5ec0811 | 2016-05-05 09:29:29 -0500 | [diff] [blame] | 308 | first_source = source_mnt; |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 309 | last_source = source_mnt; |
| 310 | mp = dest_mp; |
| 311 | list = tree_list; |
| 312 | dest_master = dest_mnt->mnt_master; |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 313 | |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 314 | /* all peers of dest_mnt, except dest_mnt itself */ |
| 315 | for (n = next_peer(dest_mnt); n != dest_mnt; n = next_peer(n)) { |
| 316 | ret = propagate_one(n); |
| 317 | if (ret) |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 318 | goto out; |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 319 | } |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 320 | |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 321 | /* all slave groups */ |
| 322 | for (m = next_group(dest_mnt, dest_mnt); m; |
| 323 | m = next_group(m, dest_mnt)) { |
| 324 | /* everything in that slave group */ |
| 325 | n = m; |
| 326 | do { |
| 327 | ret = propagate_one(n); |
| 328 | if (ret) |
| 329 | goto out; |
| 330 | n = next_peer(n); |
| 331 | } while (n != m); |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 332 | } |
| 333 | out: |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 334 | read_seqlock_excl(&mount_lock); |
| 335 | hlist_for_each_entry(n, tree_list, mnt_hash) { |
| 336 | m = n->mnt_parent; |
| 337 | if (m->mnt_master != dest_mnt->mnt_master) |
| 338 | CLEAR_MNT_MARK(m->mnt_master); |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 339 | } |
Al Viro | f2ebb3a | 2014-02-27 09:35:45 -0500 | [diff] [blame] | 340 | read_sequnlock_excl(&mount_lock); |
Ram Pai | b90fa9a | 2005-11-07 17:19:50 -0500 | [diff] [blame] | 341 | return ret; |
| 342 | } |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 343 | |
Eric W. Biederman | 808e83e | 2017-01-20 18:28:35 +1300 | [diff] [blame] | 344 | static struct mount *find_topper(struct mount *mnt) |
| 345 | { |
| 346 | /* If there is exactly one mount covering mnt completely return it. */ |
| 347 | struct mount *child; |
| 348 | |
| 349 | if (!list_is_singular(&mnt->mnt_mounts)) |
| 350 | return NULL; |
| 351 | |
| 352 | child = list_first_entry(&mnt->mnt_mounts, struct mount, mnt_child); |
| 353 | if (child->mnt_mountpoint != mnt->mnt.mnt_root) |
| 354 | return NULL; |
| 355 | |
| 356 | return child; |
| 357 | } |
| 358 | |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 359 | /* |
| 360 | * return true if the refcount is greater than count |
| 361 | */ |
Al Viro | 1ab5973 | 2011-11-24 21:35:16 -0500 | [diff] [blame] | 362 | static inline int do_refcount_check(struct mount *mnt, int count) |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 363 | { |
Al Viro | aba809cf | 2013-09-28 23:10:55 -0400 | [diff] [blame] | 364 | return mnt_get_count(mnt) > count; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /* |
| 368 | * check if the mount 'mnt' can be unmounted successfully. |
| 369 | * @mnt: the mount to be checked for unmount |
| 370 | * NOTE: unmounting 'mnt' would naturally propagate to all |
| 371 | * other mounts its parent propagates to. |
| 372 | * Check if any of these mounts that **do not have submounts** |
| 373 | * have more references than 'refcnt'. If so return busy. |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 374 | * |
Nick Piggin | b3e19d9 | 2011-01-07 17:50:11 +1100 | [diff] [blame] | 375 | * vfsmount lock must be held for write |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 376 | */ |
Al Viro | 1ab5973 | 2011-11-24 21:35:16 -0500 | [diff] [blame] | 377 | int propagate_mount_busy(struct mount *mnt, int refcnt) |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 378 | { |
Eric W. Biederman | 808e83e | 2017-01-20 18:28:35 +1300 | [diff] [blame] | 379 | struct mount *m, *child, *topper; |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 380 | struct mount *parent = mnt->mnt_parent; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 381 | |
Al Viro | 0714a53 | 2011-11-24 22:19:58 -0500 | [diff] [blame] | 382 | if (mnt == parent) |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 383 | return do_refcount_check(mnt, refcnt); |
| 384 | |
| 385 | /* |
| 386 | * quickly check if the current mount can be unmounted. |
| 387 | * If not, we don't have to go checking for all other |
| 388 | * mounts |
| 389 | */ |
Al Viro | 6b41d53 | 2011-11-24 23:24:33 -0500 | [diff] [blame] | 390 | if (!list_empty(&mnt->mnt_mounts) || do_refcount_check(mnt, refcnt)) |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 391 | return 1; |
| 392 | |
Al Viro | c937135 | 2011-11-24 23:56:26 -0500 | [diff] [blame] | 393 | for (m = propagation_next(parent, parent); m; |
| 394 | m = propagation_next(m, parent)) { |
Eric W. Biederman | 808e83e | 2017-01-20 18:28:35 +1300 | [diff] [blame] | 395 | int count = 1; |
| 396 | child = __lookup_mnt(&m->mnt, mnt->mnt_mountpoint); |
| 397 | if (!child) |
| 398 | continue; |
| 399 | |
| 400 | /* Is there exactly one mount on the child that covers |
| 401 | * it completely whose reference should be ignored? |
| 402 | */ |
| 403 | topper = find_topper(child); |
| 404 | if (topper) |
| 405 | count += 1; |
| 406 | else if (!list_empty(&child->mnt_mounts)) |
| 407 | continue; |
| 408 | |
| 409 | if (do_refcount_check(child, count)) |
| 410 | return 1; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 411 | } |
Eric W. Biederman | 808e83e | 2017-01-20 18:28:35 +1300 | [diff] [blame] | 412 | return 0; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | /* |
Eric W. Biederman | 5d88457 | 2015-01-03 05:39:35 -0600 | [diff] [blame] | 416 | * Clear MNT_LOCKED when it can be shown to be safe. |
| 417 | * |
| 418 | * mount_lock lock must be held for write |
| 419 | */ |
| 420 | void propagate_mount_unlock(struct mount *mnt) |
| 421 | { |
| 422 | struct mount *parent = mnt->mnt_parent; |
| 423 | struct mount *m, *child; |
| 424 | |
| 425 | BUG_ON(parent == mnt); |
| 426 | |
| 427 | for (m = propagation_next(parent, parent); m; |
| 428 | m = propagation_next(m, parent)) { |
Eric W. Biederman | 808e83e | 2017-01-20 18:28:35 +1300 | [diff] [blame] | 429 | child = __lookup_mnt(&m->mnt, mnt->mnt_mountpoint); |
Eric W. Biederman | 5d88457 | 2015-01-03 05:39:35 -0600 | [diff] [blame] | 430 | if (child) |
| 431 | child->mnt.mnt_flags &= ~MNT_LOCKED; |
| 432 | } |
| 433 | } |
| 434 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 435 | static void umount_one(struct mount *mnt, struct list_head *to_umount) |
Eric W. Biederman | 0c56fe3 | 2015-01-05 13:38:04 -0600 | [diff] [blame] | 436 | { |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 437 | CLEAR_MNT_MARK(mnt); |
| 438 | mnt->mnt.mnt_flags |= MNT_UMOUNT; |
| 439 | list_del_init(&mnt->mnt_child); |
| 440 | list_del_init(&mnt->mnt_umounting); |
| 441 | list_move_tail(&mnt->mnt_list, to_umount); |
Eric W. Biederman | 0c56fe3 | 2015-01-05 13:38:04 -0600 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | /* |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 445 | * NOTE: unmounting 'mnt' naturally propagates to all other mounts its |
| 446 | * parent propagates to. |
| 447 | */ |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 448 | static bool __propagate_umount(struct mount *mnt, |
| 449 | struct list_head *to_umount, |
| 450 | struct list_head *to_restore) |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 451 | { |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 452 | bool progress = false; |
| 453 | struct mount *child; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 454 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 455 | /* |
| 456 | * The state of the parent won't change if this mount is |
| 457 | * already unmounted or marked as without children. |
| 458 | */ |
| 459 | if (mnt->mnt.mnt_flags & (MNT_UMOUNT | MNT_MARKED)) |
| 460 | goto out; |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 461 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 462 | /* Verify topper is the only grandchild that has not been |
| 463 | * speculatively unmounted. |
| 464 | */ |
| 465 | list_for_each_entry(child, &mnt->mnt_mounts, mnt_child) { |
| 466 | if (child->mnt_mountpoint == mnt->mnt.mnt_root) |
Eric W. Biederman | 0c56fe3 | 2015-01-05 13:38:04 -0600 | [diff] [blame] | 467 | continue; |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 468 | if (!list_empty(&child->mnt_umounting) && IS_MNT_MARKED(child)) |
| 469 | continue; |
| 470 | /* Found a mounted child */ |
| 471 | goto children; |
| 472 | } |
Eric W. Biederman | 808e83e | 2017-01-20 18:28:35 +1300 | [diff] [blame] | 473 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 474 | /* Mark mounts that can be unmounted if not locked */ |
| 475 | SET_MNT_MARK(mnt); |
| 476 | progress = true; |
Eric W. Biederman | 808e83e | 2017-01-20 18:28:35 +1300 | [diff] [blame] | 477 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 478 | /* If a mount is without children and not locked umount it. */ |
| 479 | if (!IS_MNT_LOCKED(mnt)) { |
| 480 | umount_one(mnt, to_umount); |
| 481 | } else { |
| 482 | children: |
| 483 | list_move_tail(&mnt->mnt_umounting, to_restore); |
| 484 | } |
| 485 | out: |
| 486 | return progress; |
| 487 | } |
| 488 | |
| 489 | static void umount_list(struct list_head *to_umount, |
| 490 | struct list_head *to_restore) |
| 491 | { |
| 492 | struct mount *mnt, *child, *tmp; |
| 493 | list_for_each_entry(mnt, to_umount, mnt_list) { |
| 494 | list_for_each_entry_safe(child, tmp, &mnt->mnt_mounts, mnt_child) { |
| 495 | /* topper? */ |
| 496 | if (child->mnt_mountpoint == mnt->mnt.mnt_root) |
| 497 | list_move_tail(&child->mnt_umounting, to_restore); |
| 498 | else |
| 499 | umount_one(child, to_umount); |
Al Viro | 38129a1 | 2014-03-20 21:10:51 -0400 | [diff] [blame] | 500 | } |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 501 | } |
| 502 | } |
| 503 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 504 | static void restore_mounts(struct list_head *to_restore) |
Eric W. Biederman | e260db7 | 2017-05-15 14:42:07 -0500 | [diff] [blame] | 505 | { |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 506 | /* Restore mounts to a clean working state */ |
| 507 | while (!list_empty(to_restore)) { |
Eric W. Biederman | e260db7 | 2017-05-15 14:42:07 -0500 | [diff] [blame] | 508 | struct mount *mnt, *parent; |
| 509 | struct mountpoint *mp; |
| 510 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 511 | mnt = list_first_entry(to_restore, struct mount, mnt_umounting); |
| 512 | CLEAR_MNT_MARK(mnt); |
| 513 | list_del_init(&mnt->mnt_umounting); |
Eric W. Biederman | e260db7 | 2017-05-15 14:42:07 -0500 | [diff] [blame] | 514 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 515 | /* Should this mount be reparented? */ |
Eric W. Biederman | e260db7 | 2017-05-15 14:42:07 -0500 | [diff] [blame] | 516 | mp = mnt->mnt_mp; |
| 517 | parent = mnt->mnt_parent; |
| 518 | while (parent->mnt.mnt_flags & MNT_UMOUNT) { |
| 519 | mp = parent->mnt_mp; |
| 520 | parent = parent->mnt_parent; |
| 521 | } |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 522 | if (parent != mnt->mnt_parent) |
| 523 | mnt_change_mountpoint(parent, mp, mnt); |
Eric W. Biederman | e260db7 | 2017-05-15 14:42:07 -0500 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 527 | static void cleanup_umount_visitations(struct list_head *visited) |
| 528 | { |
| 529 | while (!list_empty(visited)) { |
| 530 | struct mount *mnt = |
| 531 | list_first_entry(visited, struct mount, mnt_umounting); |
| 532 | list_del_init(&mnt->mnt_umounting); |
| 533 | } |
| 534 | } |
| 535 | |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 536 | /* |
| 537 | * collect all mounts that receive propagation from the mount in @list, |
| 538 | * and return these additional mounts in the same list. |
| 539 | * @list: the list of mounts to be unmounted. |
Nick Piggin | 99b7db7 | 2010-08-18 04:37:39 +1000 | [diff] [blame] | 540 | * |
| 541 | * vfsmount lock must be held for write |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 542 | */ |
Eric W. Biederman | c003b26 | 2014-12-18 13:10:48 -0600 | [diff] [blame] | 543 | int propagate_umount(struct list_head *list) |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 544 | { |
Al Viro | 61ef47b | 2011-11-24 18:25:28 -0500 | [diff] [blame] | 545 | struct mount *mnt; |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 546 | LIST_HEAD(to_restore); |
| 547 | LIST_HEAD(to_umount); |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 548 | LIST_HEAD(visited); |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 549 | |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 550 | /* Find candidates for unmounting */ |
| 551 | list_for_each_entry_reverse(mnt, list, mnt_list) { |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 552 | struct mount *parent = mnt->mnt_parent; |
| 553 | struct mount *m; |
Eric W. Biederman | 0c56fe3 | 2015-01-05 13:38:04 -0600 | [diff] [blame] | 554 | |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 555 | /* |
| 556 | * If this mount has already been visited it is known that it's |
| 557 | * entire peer group and all of their slaves in the propagation |
| 558 | * tree for the mountpoint has already been visited and there is |
| 559 | * no need to visit them again. |
| 560 | */ |
| 561 | if (!list_empty(&mnt->mnt_umounting)) |
| 562 | continue; |
| 563 | |
| 564 | list_add_tail(&mnt->mnt_umounting, &visited); |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 565 | for (m = propagation_next(parent, parent); m; |
| 566 | m = propagation_next(m, parent)) { |
| 567 | struct mount *child = __lookup_mnt(&m->mnt, |
| 568 | mnt->mnt_mountpoint); |
| 569 | if (!child) |
| 570 | continue; |
Eric W. Biederman | e260db7 | 2017-05-15 14:42:07 -0500 | [diff] [blame] | 571 | |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 572 | if (!list_empty(&child->mnt_umounting)) { |
| 573 | /* |
| 574 | * If the child has already been visited it is |
| 575 | * know that it's entire peer group and all of |
| 576 | * their slaves in the propgation tree for the |
| 577 | * mountpoint has already been visited and there |
| 578 | * is no need to visit this subtree again. |
| 579 | */ |
| 580 | m = skip_propagation_subtree(m, parent); |
| 581 | continue; |
| 582 | } else if (child->mnt.mnt_flags & MNT_UMOUNT) { |
| 583 | /* |
| 584 | * We have come accross an partially unmounted |
| 585 | * mount in list that has not been visited yet. |
| 586 | * Remember it has been visited and continue |
| 587 | * about our merry way. |
| 588 | */ |
| 589 | list_add_tail(&child->mnt_umounting, &visited); |
| 590 | continue; |
| 591 | } |
| 592 | |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 593 | /* Check the child and parents while progress is made */ |
| 594 | while (__propagate_umount(child, |
| 595 | &to_umount, &to_restore)) { |
| 596 | /* Is the parent a umount candidate? */ |
| 597 | child = child->mnt_parent; |
| 598 | if (list_empty(&child->mnt_umounting)) |
| 599 | break; |
| 600 | } |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | umount_list(&to_umount, &to_restore); |
| 605 | restore_mounts(&to_restore); |
Eric W. Biederman | 54fcb23 | 2016-10-24 17:25:19 -0500 | [diff] [blame] | 606 | cleanup_umount_visitations(&visited); |
Eric W. Biederman | bb4fbf0 | 2016-10-24 16:16:13 -0500 | [diff] [blame] | 607 | list_splice_tail(&to_umount, list); |
Eric W. Biederman | e260db7 | 2017-05-15 14:42:07 -0500 | [diff] [blame] | 608 | |
Ram Pai | a05964f | 2005-11-07 17:20:17 -0500 | [diff] [blame] | 609 | return 0; |
| 610 | } |