Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 Red Hat, Inc., Eric Paris <eparis@redhat.com> |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2, or (at your option) |
| 7 | * any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; see the file COPYING. If not, write to |
| 16 | * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 17 | */ |
| 18 | |
| 19 | /* |
| 20 | * fsnotify inode mark locking/lifetime/and refcnting |
| 21 | * |
| 22 | * REFCNT: |
Lino Sanfilippo | 9756b91 | 2013-07-08 15:59:46 -0700 | [diff] [blame] | 23 | * The group->recnt and mark->refcnt tell how many "things" in the kernel |
| 24 | * currently are referencing the objects. Both kind of objects typically will |
| 25 | * live inside the kernel with a refcnt of 2, one for its creation and one for |
| 26 | * the reference a group and a mark hold to each other. |
| 27 | * If you are holding the appropriate locks, you can take a reference and the |
| 28 | * object itself is guaranteed to survive until the reference is dropped. |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 29 | * |
| 30 | * LOCKING: |
Lino Sanfilippo | 9756b91 | 2013-07-08 15:59:46 -0700 | [diff] [blame] | 31 | * There are 3 locks involved with fsnotify inode marks and they MUST be taken |
| 32 | * in order as follows: |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 33 | * |
Lino Sanfilippo | 9756b91 | 2013-07-08 15:59:46 -0700 | [diff] [blame] | 34 | * group->mark_mutex |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 35 | * mark->lock |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 36 | * mark->connector->lock |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 37 | * |
Lino Sanfilippo | 9756b91 | 2013-07-08 15:59:46 -0700 | [diff] [blame] | 38 | * group->mark_mutex protects the marks_list anchored inside a given group and |
| 39 | * each mark is hooked via the g_list. It also protects the groups private |
| 40 | * data (i.e group limits). |
| 41 | |
| 42 | * mark->lock protects the marks attributes like its masks and flags. |
| 43 | * Furthermore it protects the access to a reference of the group that the mark |
| 44 | * is assigned to as well as the access to a reference of the inode/vfsmount |
| 45 | * that is being watched by the mark. |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 46 | * |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 47 | * mark->connector->lock protects the list of marks anchored inside an |
| 48 | * inode / vfsmount and each mark is hooked via the i_list. |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 49 | * |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 50 | * A list of notification marks relating to inode / mnt is contained in |
| 51 | * fsnotify_mark_connector. That structure is alive as long as there are any |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 52 | * marks in the list and is also protected by fsnotify_mark_srcu. A mark gets |
| 53 | * detached from fsnotify_mark_connector when last reference to the mark is |
| 54 | * dropped. Thus having mark reference is enough to protect mark->connector |
| 55 | * pointer and to make sure fsnotify_mark_connector cannot disappear. Also |
| 56 | * because we remove mark from g_list before dropping mark reference associated |
| 57 | * with that, any mark found through g_list is guaranteed to have |
| 58 | * mark->connector set until we drop group->mark_mutex. |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 59 | * |
| 60 | * LIFETIME: |
| 61 | * Inode marks survive between when they are added to an inode and when their |
Jan Kara | c1f3307 | 2016-12-16 10:53:32 +0100 | [diff] [blame] | 62 | * refcnt==0. Marks are also protected by fsnotify_mark_srcu. |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 63 | * |
| 64 | * The inode mark can be cleared for a number of different reasons including: |
| 65 | * - The inode is unlinked for the last time. (fsnotify_inode_remove) |
| 66 | * - The inode is being evicted from cache. (fsnotify_inode_delete) |
| 67 | * - The fs the inode is on is unmounted. (fsnotify_inode_delete/fsnotify_unmount_inodes) |
| 68 | * - Something explicitly requests that it be removed. (fsnotify_destroy_mark) |
| 69 | * - The fsnotify_group associated with the mark is going away and all such marks |
| 70 | * need to be cleaned up. (fsnotify_clear_marks_by_group) |
| 71 | * |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 72 | * This has the very interesting property of being able to run concurrently with |
| 73 | * any (or all) other directions. |
| 74 | */ |
| 75 | |
| 76 | #include <linux/fs.h> |
| 77 | #include <linux/init.h> |
| 78 | #include <linux/kernel.h> |
Eric Paris | 75c1be4 | 2010-07-28 10:18:38 -0400 | [diff] [blame] | 79 | #include <linux/kthread.h> |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 80 | #include <linux/module.h> |
| 81 | #include <linux/mutex.h> |
| 82 | #include <linux/slab.h> |
| 83 | #include <linux/spinlock.h> |
Eric Paris | 75c1be4 | 2010-07-28 10:18:38 -0400 | [diff] [blame] | 84 | #include <linux/srcu.h> |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 85 | |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 86 | #include <linux/atomic.h> |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 87 | |
| 88 | #include <linux/fsnotify_backend.h> |
| 89 | #include "fsnotify.h" |
| 90 | |
Jeff Layton | 0918f1c | 2016-02-17 13:11:21 -0800 | [diff] [blame] | 91 | #define FSNOTIFY_REAPER_DELAY (1) /* 1 jiffy */ |
| 92 | |
Eric Paris | 75c1be4 | 2010-07-28 10:18:38 -0400 | [diff] [blame] | 93 | struct srcu_struct fsnotify_mark_srcu; |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 94 | struct kmem_cache *fsnotify_mark_connector_cachep; |
| 95 | |
Jeff Layton | 13d34ac | 2016-02-17 13:11:18 -0800 | [diff] [blame] | 96 | static DEFINE_SPINLOCK(destroy_lock); |
| 97 | static LIST_HEAD(destroy_list); |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 98 | static struct fsnotify_mark_connector *connector_destroy_list; |
Jeff Layton | 0918f1c | 2016-02-17 13:11:21 -0800 | [diff] [blame] | 99 | |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 100 | static void fsnotify_mark_destroy_workfn(struct work_struct *work); |
| 101 | static DECLARE_DELAYED_WORK(reaper_work, fsnotify_mark_destroy_workfn); |
Eric Paris | 75c1be4 | 2010-07-28 10:18:38 -0400 | [diff] [blame] | 102 | |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 103 | static void fsnotify_connector_destroy_workfn(struct work_struct *work); |
| 104 | static DECLARE_WORK(connector_reaper_work, fsnotify_connector_destroy_workfn); |
| 105 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 106 | void fsnotify_get_mark(struct fsnotify_mark *mark) |
| 107 | { |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 108 | WARN_ON_ONCE(!atomic_read(&mark->refcnt)); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 109 | atomic_inc(&mark->refcnt); |
| 110 | } |
| 111 | |
Jan Kara | a242677 | 2017-03-15 09:16:27 +0100 | [diff] [blame] | 112 | static void __fsnotify_recalc_mask(struct fsnotify_mark_connector *conn) |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 113 | { |
| 114 | u32 new_mask = 0; |
| 115 | struct fsnotify_mark *mark; |
| 116 | |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 117 | assert_spin_locked(&conn->lock); |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 118 | hlist_for_each_entry(mark, &conn->list, obj_list) { |
| 119 | if (mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED) |
| 120 | new_mask |= mark->mask; |
| 121 | } |
Jan Kara | a242677 | 2017-03-15 09:16:27 +0100 | [diff] [blame] | 122 | if (conn->flags & FSNOTIFY_OBJ_TYPE_INODE) |
| 123 | conn->inode->i_fsnotify_mask = new_mask; |
| 124 | else if (conn->flags & FSNOTIFY_OBJ_TYPE_VFSMOUNT) |
| 125 | real_mount(conn->mnt)->mnt_fsnotify_mask = new_mask; |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * Calculate mask of events for a list of marks. The caller must make sure |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 130 | * connector and connector->inode cannot disappear under us. Callers achieve |
| 131 | * this by holding a mark->lock or mark->group->mark_mutex for a mark on this |
| 132 | * list. |
Jan Kara | a242677 | 2017-03-15 09:16:27 +0100 | [diff] [blame] | 133 | */ |
| 134 | void fsnotify_recalc_mask(struct fsnotify_mark_connector *conn) |
| 135 | { |
| 136 | if (!conn) |
| 137 | return; |
| 138 | |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 139 | spin_lock(&conn->lock); |
Jan Kara | a242677 | 2017-03-15 09:16:27 +0100 | [diff] [blame] | 140 | __fsnotify_recalc_mask(conn); |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 141 | spin_unlock(&conn->lock); |
| 142 | if (conn->flags & FSNOTIFY_OBJ_TYPE_INODE) |
Jan Kara | a242677 | 2017-03-15 09:16:27 +0100 | [diff] [blame] | 143 | __fsnotify_update_child_dentry_flags(conn->inode); |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 144 | } |
| 145 | |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 146 | /* Free all connectors queued for freeing once SRCU period ends */ |
| 147 | static void fsnotify_connector_destroy_workfn(struct work_struct *work) |
| 148 | { |
| 149 | struct fsnotify_mark_connector *conn, *free; |
| 150 | |
| 151 | spin_lock(&destroy_lock); |
| 152 | conn = connector_destroy_list; |
| 153 | connector_destroy_list = NULL; |
| 154 | spin_unlock(&destroy_lock); |
| 155 | |
| 156 | synchronize_srcu(&fsnotify_mark_srcu); |
| 157 | while (conn) { |
| 158 | free = conn; |
| 159 | conn = conn->destroy_next; |
| 160 | kmem_cache_free(fsnotify_mark_connector_cachep, free); |
| 161 | } |
| 162 | } |
| 163 | |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 164 | static struct inode *fsnotify_detach_connector_from_object( |
| 165 | struct fsnotify_mark_connector *conn) |
| 166 | { |
| 167 | struct inode *inode = NULL; |
| 168 | |
| 169 | if (conn->flags & FSNOTIFY_OBJ_TYPE_INODE) { |
| 170 | inode = conn->inode; |
| 171 | rcu_assign_pointer(inode->i_fsnotify_marks, NULL); |
| 172 | inode->i_fsnotify_mask = 0; |
| 173 | conn->inode = NULL; |
| 174 | conn->flags &= ~FSNOTIFY_OBJ_TYPE_INODE; |
| 175 | } else if (conn->flags & FSNOTIFY_OBJ_TYPE_VFSMOUNT) { |
| 176 | rcu_assign_pointer(real_mount(conn->mnt)->mnt_fsnotify_marks, |
| 177 | NULL); |
| 178 | real_mount(conn->mnt)->mnt_fsnotify_mask = 0; |
| 179 | conn->mnt = NULL; |
| 180 | conn->flags &= ~FSNOTIFY_OBJ_TYPE_VFSMOUNT; |
| 181 | } |
| 182 | |
| 183 | return inode; |
| 184 | } |
| 185 | |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 186 | static void fsnotify_final_mark_destroy(struct fsnotify_mark *mark) |
| 187 | { |
| 188 | if (mark->group) |
| 189 | fsnotify_put_group(mark->group); |
| 190 | mark->free_mark(mark); |
| 191 | } |
| 192 | |
| 193 | void fsnotify_put_mark(struct fsnotify_mark *mark) |
Jan Kara | 8212a60 | 2017-03-15 09:48:11 +0100 | [diff] [blame] | 194 | { |
| 195 | struct fsnotify_mark_connector *conn; |
| 196 | struct inode *inode = NULL; |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 197 | bool free_conn = false; |
Jan Kara | 8212a60 | 2017-03-15 09:48:11 +0100 | [diff] [blame] | 198 | |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 199 | /* Catch marks that were actually never attached to object */ |
| 200 | if (!mark->connector) { |
| 201 | if (atomic_dec_and_test(&mark->refcnt)) |
| 202 | fsnotify_final_mark_destroy(mark); |
| 203 | return; |
| 204 | } |
| 205 | |
| 206 | /* |
| 207 | * We have to be careful so that traversals of obj_list under lock can |
| 208 | * safely grab mark reference. |
| 209 | */ |
| 210 | if (!atomic_dec_and_lock(&mark->refcnt, &mark->connector->lock)) |
| 211 | return; |
| 212 | |
Jan Kara | 8212a60 | 2017-03-15 09:48:11 +0100 | [diff] [blame] | 213 | conn = mark->connector; |
Jan Kara | 8212a60 | 2017-03-15 09:48:11 +0100 | [diff] [blame] | 214 | hlist_del_init_rcu(&mark->obj_list); |
| 215 | if (hlist_empty(&conn->list)) { |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 216 | inode = fsnotify_detach_connector_from_object(conn); |
| 217 | free_conn = true; |
| 218 | } else { |
| 219 | __fsnotify_recalc_mask(conn); |
Jan Kara | 8212a60 | 2017-03-15 09:48:11 +0100 | [diff] [blame] | 220 | } |
| 221 | mark->connector = NULL; |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 222 | spin_unlock(&conn->lock); |
Jan Kara | 8212a60 | 2017-03-15 09:48:11 +0100 | [diff] [blame] | 223 | |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 224 | iput(inode); |
| 225 | |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 226 | if (free_conn) { |
| 227 | spin_lock(&destroy_lock); |
| 228 | conn->destroy_next = connector_destroy_list; |
| 229 | connector_destroy_list = conn; |
| 230 | spin_unlock(&destroy_lock); |
| 231 | queue_work(system_unbound_wq, &connector_reaper_work); |
| 232 | } |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 233 | /* |
| 234 | * Note that we didn't update flags telling whether inode cares about |
| 235 | * what's happening with children. We update these flags from |
| 236 | * __fsnotify_parent() lazily when next event happens on one of our |
| 237 | * children. |
| 238 | */ |
| 239 | spin_lock(&destroy_lock); |
| 240 | list_add(&mark->g_list, &destroy_list); |
| 241 | spin_unlock(&destroy_lock); |
| 242 | queue_delayed_work(system_unbound_wq, &reaper_work, |
| 243 | FSNOTIFY_REAPER_DELAY); |
Jan Kara | 8212a60 | 2017-03-15 09:48:11 +0100 | [diff] [blame] | 244 | } |
| 245 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 246 | /* |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 247 | * Mark mark as detached, remove it from group list. Mark still stays in object |
| 248 | * list until its last reference is dropped. Note that we rely on mark being |
| 249 | * removed from group list before corresponding reference to it is dropped. In |
| 250 | * particular we rely on mark->connector being valid while we hold |
| 251 | * group->mark_mutex if we found the mark through g_list. |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 252 | * |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 253 | * Must be called with group->mark_mutex held. The caller must either hold |
| 254 | * reference to the mark or be protected by fsnotify_mark_srcu. |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 255 | */ |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 256 | void fsnotify_detach_mark(struct fsnotify_mark *mark) |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 257 | { |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 258 | struct fsnotify_group *group = mark->group; |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 259 | |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 260 | WARN_ON_ONCE(!mutex_is_locked(&group->mark_mutex)); |
| 261 | WARN_ON_ONCE(!srcu_read_lock_held(&fsnotify_mark_srcu) && |
| 262 | atomic_read(&mark->refcnt) < 1 + |
| 263 | !!(mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED)); |
Lino Sanfilippo | d5a335b | 2011-06-14 17:29:52 +0200 | [diff] [blame] | 264 | |
Lino Sanfilippo | 104d06f | 2011-06-14 17:29:48 +0200 | [diff] [blame] | 265 | spin_lock(&mark->lock); |
Eric Paris | 700307a | 2010-07-28 10:18:38 -0400 | [diff] [blame] | 266 | /* something else already called this function on this mark */ |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 267 | if (!(mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED)) { |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 268 | spin_unlock(&mark->lock); |
Lino Sanfilippo | e2a2994 | 2011-06-14 17:29:51 +0200 | [diff] [blame] | 269 | return; |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 270 | } |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 271 | mark->flags &= ~FSNOTIFY_MARK_FLAG_ATTACHED; |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 272 | list_del_init(&mark->g_list); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 273 | spin_unlock(&mark->lock); |
Lino Sanfilippo | d5a335b | 2011-06-14 17:29:52 +0200 | [diff] [blame] | 274 | |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 275 | atomic_dec(&group->num_marks); |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 276 | |
| 277 | /* Drop mark reference acquired in fsnotify_add_mark_locked() */ |
| 278 | fsnotify_put_mark(mark); |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | /* |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 282 | * Free fsnotify mark. The mark is actually only marked as being freed. The |
| 283 | * freeing is actually happening only once last reference to the mark is |
| 284 | * dropped from a workqueue which first waits for srcu period end. |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 285 | * |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 286 | * Caller must have a reference to the mark or be protected by |
| 287 | * fsnotify_mark_srcu. |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 288 | */ |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 289 | void fsnotify_free_mark(struct fsnotify_mark *mark) |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 290 | { |
| 291 | struct fsnotify_group *group = mark->group; |
| 292 | |
| 293 | spin_lock(&mark->lock); |
| 294 | /* something else already called this function on this mark */ |
| 295 | if (!(mark->flags & FSNOTIFY_MARK_FLAG_ALIVE)) { |
| 296 | spin_unlock(&mark->lock); |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 297 | return; |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 298 | } |
| 299 | mark->flags &= ~FSNOTIFY_MARK_FLAG_ALIVE; |
| 300 | spin_unlock(&mark->lock); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 301 | |
Linus Torvalds | d725e66 | 2015-07-21 16:06:53 -0700 | [diff] [blame] | 302 | /* |
| 303 | * Some groups like to know that marks are being freed. This is a |
| 304 | * callback to the group function to let it know that this mark |
| 305 | * is being freed. |
| 306 | */ |
| 307 | if (group->ops->freeing_mark) |
| 308 | group->ops->freeing_mark(mark, group); |
Lino Sanfilippo | d5a335b | 2011-06-14 17:29:52 +0200 | [diff] [blame] | 309 | } |
| 310 | |
| 311 | void fsnotify_destroy_mark(struct fsnotify_mark *mark, |
| 312 | struct fsnotify_group *group) |
| 313 | { |
Lino Sanfilippo | 6960b0d | 2011-08-12 01:13:31 +0200 | [diff] [blame] | 314 | mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING); |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 315 | fsnotify_detach_mark(mark); |
Lino Sanfilippo | d5a335b | 2011-06-14 17:29:52 +0200 | [diff] [blame] | 316 | mutex_unlock(&group->mark_mutex); |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 317 | fsnotify_free_mark(mark); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 318 | } |
| 319 | |
Eric Paris | 90b1e7a | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 320 | void fsnotify_set_mark_mask_locked(struct fsnotify_mark *mark, __u32 mask) |
| 321 | { |
| 322 | assert_spin_locked(&mark->lock); |
| 323 | |
| 324 | mark->mask = mask; |
Eric Paris | 90b1e7a | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 325 | } |
| 326 | |
Eric Paris | 33af5e3 | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 327 | void fsnotify_set_mark_ignored_mask_locked(struct fsnotify_mark *mark, __u32 mask) |
| 328 | { |
| 329 | assert_spin_locked(&mark->lock); |
| 330 | |
| 331 | mark->ignored_mask = mask; |
| 332 | } |
Eric Paris | 90b1e7a | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 333 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 334 | /* |
Jan Kara | 8edc6e1 | 2014-11-13 15:19:33 -0800 | [diff] [blame] | 335 | * Sorting function for lists of fsnotify marks. |
| 336 | * |
| 337 | * Fanotify supports different notification classes (reflected as priority of |
| 338 | * notification group). Events shall be passed to notification groups in |
| 339 | * decreasing priority order. To achieve this marks in notification lists for |
| 340 | * inodes and vfsmounts are sorted so that priorities of corresponding groups |
| 341 | * are descending. |
| 342 | * |
| 343 | * Furthermore correct handling of the ignore mask requires processing inode |
| 344 | * and vfsmount marks of each group together. Using the group address as |
| 345 | * further sort criterion provides a unique sorting order and thus we can |
| 346 | * merge inode and vfsmount lists of marks in linear time and find groups |
| 347 | * present in both lists. |
| 348 | * |
| 349 | * A return value of 1 signifies that b has priority over a. |
| 350 | * A return value of 0 signifies that the two marks have to be handled together. |
| 351 | * A return value of -1 signifies that a has priority over b. |
| 352 | */ |
| 353 | int fsnotify_compare_groups(struct fsnotify_group *a, struct fsnotify_group *b) |
| 354 | { |
| 355 | if (a == b) |
| 356 | return 0; |
| 357 | if (!a) |
| 358 | return 1; |
| 359 | if (!b) |
| 360 | return -1; |
| 361 | if (a->priority < b->priority) |
| 362 | return 1; |
| 363 | if (a->priority > b->priority) |
| 364 | return -1; |
| 365 | if (a < b) |
| 366 | return 1; |
| 367 | return -1; |
| 368 | } |
| 369 | |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 370 | static int fsnotify_attach_connector_to_object( |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 371 | struct fsnotify_mark_connector __rcu **connp, |
| 372 | struct inode *inode, |
| 373 | struct vfsmount *mnt) |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 374 | { |
| 375 | struct fsnotify_mark_connector *conn; |
| 376 | |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 377 | conn = kmem_cache_alloc(fsnotify_mark_connector_cachep, GFP_KERNEL); |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 378 | if (!conn) |
| 379 | return -ENOMEM; |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 380 | spin_lock_init(&conn->lock); |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 381 | INIT_HLIST_HEAD(&conn->list); |
Jan Kara | 86ffe24 | 2017-03-14 14:29:35 +0100 | [diff] [blame] | 382 | if (inode) { |
| 383 | conn->flags = FSNOTIFY_OBJ_TYPE_INODE; |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 384 | conn->inode = igrab(inode); |
Jan Kara | 86ffe24 | 2017-03-14 14:29:35 +0100 | [diff] [blame] | 385 | } else { |
| 386 | conn->flags = FSNOTIFY_OBJ_TYPE_VFSMOUNT; |
| 387 | conn->mnt = mnt; |
| 388 | } |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 389 | /* |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 390 | * cmpxchg() provides the barrier so that readers of *connp can see |
| 391 | * only initialized structure |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 392 | */ |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 393 | if (cmpxchg(connp, NULL, conn)) { |
| 394 | /* Someone else created list structure for us */ |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 395 | if (inode) |
| 396 | iput(inode); |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 397 | kmem_cache_free(fsnotify_mark_connector_cachep, conn); |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 398 | } |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 399 | |
| 400 | return 0; |
| 401 | } |
| 402 | |
| 403 | /* |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 404 | * Get mark connector, make sure it is alive and return with its lock held. |
| 405 | * This is for users that get connector pointer from inode or mount. Users that |
| 406 | * hold reference to a mark on the list may directly lock connector->lock as |
| 407 | * they are sure list cannot go away under them. |
| 408 | */ |
| 409 | static struct fsnotify_mark_connector *fsnotify_grab_connector( |
| 410 | struct fsnotify_mark_connector __rcu **connp) |
| 411 | { |
| 412 | struct fsnotify_mark_connector *conn; |
| 413 | int idx; |
| 414 | |
| 415 | idx = srcu_read_lock(&fsnotify_mark_srcu); |
| 416 | conn = srcu_dereference(*connp, &fsnotify_mark_srcu); |
| 417 | if (!conn) |
| 418 | goto out; |
| 419 | spin_lock(&conn->lock); |
| 420 | if (!(conn->flags & (FSNOTIFY_OBJ_TYPE_INODE | |
| 421 | FSNOTIFY_OBJ_TYPE_VFSMOUNT))) { |
| 422 | spin_unlock(&conn->lock); |
| 423 | srcu_read_unlock(&fsnotify_mark_srcu, idx); |
| 424 | return NULL; |
| 425 | } |
| 426 | out: |
| 427 | srcu_read_unlock(&fsnotify_mark_srcu, idx); |
| 428 | return conn; |
| 429 | } |
| 430 | |
| 431 | /* |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 432 | * Add mark into proper place in given list of marks. These marks may be used |
| 433 | * for the fsnotify backend to determine which event types should be delivered |
| 434 | * to which group and for which inodes. These marks are ordered according to |
| 435 | * priority, highest number first, and then by the group's location in memory. |
| 436 | */ |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 437 | static int fsnotify_add_mark_list(struct fsnotify_mark *mark, |
| 438 | struct inode *inode, struct vfsmount *mnt, |
| 439 | int allow_dups) |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 440 | { |
| 441 | struct fsnotify_mark *lmark, *last = NULL; |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 442 | struct fsnotify_mark_connector *conn; |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 443 | struct fsnotify_mark_connector __rcu **connp; |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 444 | int cmp; |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 445 | int err = 0; |
| 446 | |
| 447 | if (WARN_ON(!inode && !mnt)) |
| 448 | return -EINVAL; |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 449 | if (inode) |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 450 | connp = &inode->i_fsnotify_marks; |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 451 | else |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 452 | connp = &real_mount(mnt)->mnt_fsnotify_marks; |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 453 | restart: |
| 454 | spin_lock(&mark->lock); |
| 455 | conn = fsnotify_grab_connector(connp); |
| 456 | if (!conn) { |
| 457 | spin_unlock(&mark->lock); |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 458 | err = fsnotify_attach_connector_to_object(connp, inode, mnt); |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 459 | if (err) |
| 460 | return err; |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 461 | goto restart; |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 462 | } |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 463 | |
| 464 | /* is mark the first mark? */ |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 465 | if (hlist_empty(&conn->list)) { |
| 466 | hlist_add_head_rcu(&mark->obj_list, &conn->list); |
Jan Kara | 86ffe24 | 2017-03-14 14:29:35 +0100 | [diff] [blame] | 467 | goto added; |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | /* should mark be in the middle of the current list? */ |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 471 | hlist_for_each_entry(lmark, &conn->list, obj_list) { |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 472 | last = lmark; |
| 473 | |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 474 | if ((lmark->group == mark->group) && |
| 475 | (lmark->flags & FSNOTIFY_MARK_FLAG_ATTACHED) && |
| 476 | !allow_dups) { |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 477 | err = -EEXIST; |
| 478 | goto out_err; |
| 479 | } |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 480 | |
| 481 | cmp = fsnotify_compare_groups(lmark->group, mark->group); |
| 482 | if (cmp >= 0) { |
| 483 | hlist_add_before_rcu(&mark->obj_list, &lmark->obj_list); |
Jan Kara | 86ffe24 | 2017-03-14 14:29:35 +0100 | [diff] [blame] | 484 | goto added; |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 485 | } |
| 486 | } |
| 487 | |
| 488 | BUG_ON(last == NULL); |
| 489 | /* mark should be the last entry. last is the current last entry */ |
| 490 | hlist_add_behind_rcu(&mark->obj_list, &last->obj_list); |
Jan Kara | 86ffe24 | 2017-03-14 14:29:35 +0100 | [diff] [blame] | 491 | added: |
| 492 | mark->connector = conn; |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 493 | out_err: |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 494 | spin_unlock(&conn->lock); |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 495 | spin_unlock(&mark->lock); |
| 496 | return err; |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 497 | } |
| 498 | |
Jan Kara | 8edc6e1 | 2014-11-13 15:19:33 -0800 | [diff] [blame] | 499 | /* |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 500 | * Attach an initialized mark to a given group and fs object. |
| 501 | * These marks may be used for the fsnotify backend to determine which |
| 502 | * event types should be delivered to which group. |
| 503 | */ |
Lino Sanfilippo | d5a335b | 2011-06-14 17:29:52 +0200 | [diff] [blame] | 504 | int fsnotify_add_mark_locked(struct fsnotify_mark *mark, |
| 505 | struct fsnotify_group *group, struct inode *inode, |
| 506 | struct vfsmount *mnt, int allow_dups) |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 507 | { |
| 508 | int ret = 0; |
| 509 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 510 | BUG_ON(inode && mnt); |
| 511 | BUG_ON(!inode && !mnt); |
Lino Sanfilippo | d5a335b | 2011-06-14 17:29:52 +0200 | [diff] [blame] | 512 | BUG_ON(!mutex_is_locked(&group->mark_mutex)); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 513 | |
| 514 | /* |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 515 | * LOCKING ORDER!!!! |
Lino Sanfilippo | 986ab09 | 2011-06-14 17:29:50 +0200 | [diff] [blame] | 516 | * group->mark_mutex |
Lino Sanfilippo | 104d06f | 2011-06-14 17:29:48 +0200 | [diff] [blame] | 517 | * mark->lock |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 518 | * mark->connector->lock |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 519 | */ |
Lino Sanfilippo | 104d06f | 2011-06-14 17:29:48 +0200 | [diff] [blame] | 520 | spin_lock(&mark->lock); |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 521 | mark->flags |= FSNOTIFY_MARK_FLAG_ALIVE | FSNOTIFY_MARK_FLAG_ATTACHED; |
Eric Paris | 700307a | 2010-07-28 10:18:38 -0400 | [diff] [blame] | 522 | |
Lino Sanfilippo | 23e964c | 2011-06-14 17:29:47 +0200 | [diff] [blame] | 523 | fsnotify_get_group(group); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 524 | mark->group = group; |
| 525 | list_add(&mark->g_list, &group->marks_list); |
| 526 | atomic_inc(&group->num_marks); |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 527 | fsnotify_get_mark(mark); /* for g_list */ |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 528 | spin_unlock(&mark->lock); |
| 529 | |
Jan Kara | 755b5bc | 2017-03-14 16:11:23 +0100 | [diff] [blame] | 530 | ret = fsnotify_add_mark_list(mark, inode, mnt, allow_dups); |
| 531 | if (ret) |
| 532 | goto err; |
| 533 | |
Jan Kara | a242677 | 2017-03-15 09:16:27 +0100 | [diff] [blame] | 534 | if (mark->mask) |
| 535 | fsnotify_recalc_mask(mark->connector); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 536 | |
| 537 | return ret; |
| 538 | err: |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 539 | mark->flags &= ~(FSNOTIFY_MARK_FLAG_ALIVE | |
| 540 | FSNOTIFY_MARK_FLAG_ATTACHED); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 541 | list_del_init(&mark->g_list); |
| 542 | atomic_dec(&group->num_marks); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 543 | spin_unlock(&mark->lock); |
| 544 | |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 545 | fsnotify_put_mark(mark); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 546 | return ret; |
| 547 | } |
| 548 | |
Lino Sanfilippo | d5a335b | 2011-06-14 17:29:52 +0200 | [diff] [blame] | 549 | int fsnotify_add_mark(struct fsnotify_mark *mark, struct fsnotify_group *group, |
| 550 | struct inode *inode, struct vfsmount *mnt, int allow_dups) |
| 551 | { |
| 552 | int ret; |
| 553 | mutex_lock(&group->mark_mutex); |
| 554 | ret = fsnotify_add_mark_locked(mark, group, inode, mnt, allow_dups); |
| 555 | mutex_unlock(&group->mark_mutex); |
| 556 | return ret; |
| 557 | } |
| 558 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 559 | /* |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 560 | * Given a list of marks, find the mark associated with given group. If found |
| 561 | * take a reference to that mark and return it, else return NULL. |
| 562 | */ |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 563 | struct fsnotify_mark *fsnotify_find_mark( |
| 564 | struct fsnotify_mark_connector __rcu **connp, |
| 565 | struct fsnotify_group *group) |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 566 | { |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 567 | struct fsnotify_mark_connector *conn; |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 568 | struct fsnotify_mark *mark; |
| 569 | |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 570 | conn = fsnotify_grab_connector(connp); |
Jan Kara | 9dd813c | 2017-03-14 12:31:02 +0100 | [diff] [blame] | 571 | if (!conn) |
| 572 | return NULL; |
| 573 | |
| 574 | hlist_for_each_entry(mark, &conn->list, obj_list) { |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 575 | if (mark->group == group && |
| 576 | (mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED)) { |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 577 | fsnotify_get_mark(mark); |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 578 | spin_unlock(&conn->lock); |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 579 | return mark; |
| 580 | } |
| 581 | } |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 582 | spin_unlock(&conn->lock); |
Jan Kara | 0809ab6 | 2014-12-12 16:58:36 -0800 | [diff] [blame] | 583 | return NULL; |
| 584 | } |
| 585 | |
| 586 | /* |
Linus Torvalds | d725e66 | 2015-07-21 16:06:53 -0700 | [diff] [blame] | 587 | * clear any marks in a group in which mark->flags & flags is true |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 588 | */ |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 589 | void fsnotify_clear_marks_by_group_flags(struct fsnotify_group *group, |
| 590 | unsigned int flags) |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 591 | { |
| 592 | struct fsnotify_mark *lmark, *mark; |
Jan Kara | 8f2f3eb | 2015-08-06 15:46:42 -0700 | [diff] [blame] | 593 | LIST_HEAD(to_free); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 594 | |
Jan Kara | 8f2f3eb | 2015-08-06 15:46:42 -0700 | [diff] [blame] | 595 | /* |
| 596 | * We have to be really careful here. Anytime we drop mark_mutex, e.g. |
| 597 | * fsnotify_clear_marks_by_inode() can come and free marks. Even in our |
| 598 | * to_free list so we have to use mark_mutex even when accessing that |
| 599 | * list. And freeing mark requires us to drop mark_mutex. So we can |
| 600 | * reliably free only the first mark in the list. That's why we first |
| 601 | * move marks to free to to_free list in one go and then free marks in |
| 602 | * to_free list one by one. |
| 603 | */ |
Lino Sanfilippo | 6960b0d | 2011-08-12 01:13:31 +0200 | [diff] [blame] | 604 | mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 605 | list_for_each_entry_safe(mark, lmark, &group->marks_list, g_list) { |
Jan Kara | 86ffe24 | 2017-03-14 14:29:35 +0100 | [diff] [blame] | 606 | if (mark->connector->flags & flags) |
Jan Kara | 8f2f3eb | 2015-08-06 15:46:42 -0700 | [diff] [blame] | 607 | list_move(&mark->g_list, &to_free); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 608 | } |
Lino Sanfilippo | 986ab09 | 2011-06-14 17:29:50 +0200 | [diff] [blame] | 609 | mutex_unlock(&group->mark_mutex); |
Jan Kara | 8f2f3eb | 2015-08-06 15:46:42 -0700 | [diff] [blame] | 610 | |
| 611 | while (1) { |
| 612 | mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING); |
| 613 | if (list_empty(&to_free)) { |
| 614 | mutex_unlock(&group->mark_mutex); |
| 615 | break; |
| 616 | } |
| 617 | mark = list_first_entry(&to_free, struct fsnotify_mark, g_list); |
| 618 | fsnotify_get_mark(mark); |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 619 | fsnotify_detach_mark(mark); |
Jan Kara | 8f2f3eb | 2015-08-06 15:46:42 -0700 | [diff] [blame] | 620 | mutex_unlock(&group->mark_mutex); |
Jan Kara | 4712e722 | 2015-09-04 15:43:12 -0700 | [diff] [blame] | 621 | fsnotify_free_mark(mark); |
Jan Kara | 8f2f3eb | 2015-08-06 15:46:42 -0700 | [diff] [blame] | 622 | fsnotify_put_mark(mark); |
| 623 | } |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 624 | } |
| 625 | |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 626 | /* |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 627 | * Given a group, prepare for freeing all the marks associated with that group. |
| 628 | * The marks are attached to the list of marks prepared for destruction, the |
| 629 | * caller is responsible for freeing marks in that list after SRCU period has |
| 630 | * ended. |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 631 | */ |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 632 | void fsnotify_detach_group_marks(struct fsnotify_group *group) |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 633 | { |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 634 | struct fsnotify_mark *mark; |
| 635 | |
| 636 | while (1) { |
| 637 | mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING); |
| 638 | if (list_empty(&group->marks_list)) { |
| 639 | mutex_unlock(&group->mark_mutex); |
| 640 | break; |
| 641 | } |
| 642 | mark = list_first_entry(&group->marks_list, |
| 643 | struct fsnotify_mark, g_list); |
| 644 | fsnotify_get_mark(mark); |
| 645 | fsnotify_detach_mark(mark); |
| 646 | mutex_unlock(&group->mark_mutex); |
Jan Kara | 1137514 | 2016-11-09 14:54:20 +0100 | [diff] [blame] | 647 | fsnotify_free_mark(mark); |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 648 | fsnotify_put_mark(mark); |
| 649 | } |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 650 | } |
| 651 | |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 652 | /* Destroy all marks attached to inode / vfsmount */ |
| 653 | void fsnotify_destroy_marks(struct fsnotify_mark_connector __rcu **connp) |
Jan Kara | 0810b4f | 2017-02-01 09:23:48 +0100 | [diff] [blame] | 654 | { |
Jan Kara | 08991e8 | 2017-02-01 09:21:58 +0100 | [diff] [blame] | 655 | struct fsnotify_mark_connector *conn; |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 656 | struct fsnotify_mark *mark, *old_mark = NULL; |
| 657 | struct inode *inode; |
Jan Kara | 0810b4f | 2017-02-01 09:23:48 +0100 | [diff] [blame] | 658 | |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 659 | conn = fsnotify_grab_connector(connp); |
| 660 | if (!conn) |
| 661 | return; |
| 662 | /* |
| 663 | * We have to be careful since we can race with e.g. |
| 664 | * fsnotify_clear_marks_by_group() and once we drop the conn->lock, the |
| 665 | * list can get modified. However we are holding mark reference and |
| 666 | * thus our mark cannot be removed from obj_list so we can continue |
| 667 | * iteration after regaining conn->lock. |
| 668 | */ |
| 669 | hlist_for_each_entry(mark, &conn->list, obj_list) { |
Jan Kara | 0810b4f | 2017-02-01 09:23:48 +0100 | [diff] [blame] | 670 | fsnotify_get_mark(mark); |
Jan Kara | 04662ca | 2017-02-01 08:19:43 +0100 | [diff] [blame] | 671 | spin_unlock(&conn->lock); |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 672 | if (old_mark) |
| 673 | fsnotify_put_mark(old_mark); |
| 674 | old_mark = mark; |
Jan Kara | 0810b4f | 2017-02-01 09:23:48 +0100 | [diff] [blame] | 675 | fsnotify_destroy_mark(mark, mark->group); |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 676 | spin_lock(&conn->lock); |
Jan Kara | 0810b4f | 2017-02-01 09:23:48 +0100 | [diff] [blame] | 677 | } |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 678 | /* |
| 679 | * Detach list from object now so that we don't pin inode until all |
| 680 | * mark references get dropped. It would lead to strange results such |
| 681 | * as delaying inode deletion or blocking unmount. |
| 682 | */ |
| 683 | inode = fsnotify_detach_connector_from_object(conn); |
| 684 | spin_unlock(&conn->lock); |
| 685 | if (old_mark) |
| 686 | fsnotify_put_mark(old_mark); |
| 687 | iput(inode); |
Jan Kara | 0810b4f | 2017-02-01 09:23:48 +0100 | [diff] [blame] | 688 | } |
| 689 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 690 | /* |
| 691 | * Nothing fancy, just initialize lists and locks and counters. |
| 692 | */ |
| 693 | void fsnotify_init_mark(struct fsnotify_mark *mark, |
| 694 | void (*free_mark)(struct fsnotify_mark *mark)) |
| 695 | { |
Eric Paris | ba643f0 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 696 | memset(mark, 0, sizeof(*mark)); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 697 | spin_lock_init(&mark->lock); |
| 698 | atomic_set(&mark->refcnt, 1); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 699 | mark->free_mark = free_mark; |
| 700 | } |
Jeff Layton | 13d34ac | 2016-02-17 13:11:18 -0800 | [diff] [blame] | 701 | |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 702 | /* |
| 703 | * Destroy all marks in destroy_list, waits for SRCU period to finish before |
| 704 | * actually freeing marks. |
| 705 | */ |
Jan Kara | f09b04a | 2016-12-21 14:48:18 +0100 | [diff] [blame^] | 706 | static void fsnotify_mark_destroy_workfn(struct work_struct *work) |
Jeff Layton | 13d34ac | 2016-02-17 13:11:18 -0800 | [diff] [blame] | 707 | { |
| 708 | struct fsnotify_mark *mark, *next; |
| 709 | struct list_head private_destroy_list; |
| 710 | |
Jeff Layton | 0918f1c | 2016-02-17 13:11:21 -0800 | [diff] [blame] | 711 | spin_lock(&destroy_lock); |
| 712 | /* exchange the list head */ |
| 713 | list_replace_init(&destroy_list, &private_destroy_list); |
| 714 | spin_unlock(&destroy_lock); |
Jeff Layton | 13d34ac | 2016-02-17 13:11:18 -0800 | [diff] [blame] | 715 | |
Jeff Layton | 0918f1c | 2016-02-17 13:11:21 -0800 | [diff] [blame] | 716 | synchronize_srcu(&fsnotify_mark_srcu); |
Jeff Layton | 13d34ac | 2016-02-17 13:11:18 -0800 | [diff] [blame] | 717 | |
Jeff Layton | 0918f1c | 2016-02-17 13:11:21 -0800 | [diff] [blame] | 718 | list_for_each_entry_safe(mark, next, &private_destroy_list, g_list) { |
| 719 | list_del_init(&mark->g_list); |
Jan Kara | 6b3f05d | 2016-12-21 12:15:30 +0100 | [diff] [blame] | 720 | fsnotify_final_mark_destroy(mark); |
Jeff Layton | 13d34ac | 2016-02-17 13:11:18 -0800 | [diff] [blame] | 721 | } |
Jeff Layton | 13d34ac | 2016-02-17 13:11:18 -0800 | [diff] [blame] | 722 | } |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 723 | |
Jan Kara | f09b04a | 2016-12-21 14:48:18 +0100 | [diff] [blame^] | 724 | /* Wait for all marks queued for destruction to be actually destroyed */ |
| 725 | void fsnotify_wait_marks_destroyed(void) |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 726 | { |
Jan Kara | f09b04a | 2016-12-21 14:48:18 +0100 | [diff] [blame^] | 727 | flush_delayed_work(&reaper_work); |
Jan Kara | 35e4817 | 2016-05-19 17:08:59 -0700 | [diff] [blame] | 728 | } |