blob: c4f43a6acd9aac838d67081cb27a704cfe964ba6 [file] [log] [blame]
Eric Paris5444e292009-12-17 21:24:27 -05001/*
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 Sanfilippo9756b912013-07-08 15:59:46 -070023 * 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 Paris5444e292009-12-17 21:24:27 -050029 *
30 * LOCKING:
Lino Sanfilippo9756b912013-07-08 15:59:46 -070031 * There are 3 locks involved with fsnotify inode marks and they MUST be taken
32 * in order as follows:
Eric Paris5444e292009-12-17 21:24:27 -050033 *
Lino Sanfilippo9756b912013-07-08 15:59:46 -070034 * group->mark_mutex
Eric Paris5444e292009-12-17 21:24:27 -050035 * mark->lock
Jan Kara04662ca2017-02-01 08:19:43 +010036 * mark->connector->lock
Eric Paris5444e292009-12-17 21:24:27 -050037 *
Lino Sanfilippo9756b912013-07-08 15:59:46 -070038 * 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 Paris5444e292009-12-17 21:24:27 -050046 *
Jan Kara04662ca2017-02-01 08:19:43 +010047 * mark->connector->lock protects the list of marks anchored inside an
48 * inode / vfsmount and each mark is hooked via the i_list.
Eric Paris5444e292009-12-17 21:24:27 -050049 *
Jan Kara04662ca2017-02-01 08:19:43 +010050 * 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 Kara6b3f05d2016-12-21 12:15:30 +010052 * 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 Paris5444e292009-12-17 21:24:27 -050059 *
60 * LIFETIME:
61 * Inode marks survive between when they are added to an inode and when their
Jan Karac1f33072016-12-16 10:53:32 +010062 * refcnt==0. Marks are also protected by fsnotify_mark_srcu.
Eric Paris5444e292009-12-17 21:24:27 -050063 *
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 Paris5444e292009-12-17 21:24:27 -050072 * 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 Paris75c1be42010-07-28 10:18:38 -040079#include <linux/kthread.h>
Eric Paris5444e292009-12-17 21:24:27 -050080#include <linux/module.h>
81#include <linux/mutex.h>
82#include <linux/slab.h>
83#include <linux/spinlock.h>
Eric Paris75c1be42010-07-28 10:18:38 -040084#include <linux/srcu.h>
Eric Paris5444e292009-12-17 21:24:27 -050085
Arun Sharma600634972011-07-26 16:09:06 -070086#include <linux/atomic.h>
Eric Paris5444e292009-12-17 21:24:27 -050087
88#include <linux/fsnotify_backend.h>
89#include "fsnotify.h"
90
Jeff Layton0918f1c2016-02-17 13:11:21 -080091#define FSNOTIFY_REAPER_DELAY (1) /* 1 jiffy */
92
Eric Paris75c1be42010-07-28 10:18:38 -040093struct srcu_struct fsnotify_mark_srcu;
Jan Kara9dd813c2017-03-14 12:31:02 +010094struct kmem_cache *fsnotify_mark_connector_cachep;
95
Jeff Layton13d34ac2016-02-17 13:11:18 -080096static DEFINE_SPINLOCK(destroy_lock);
97static LIST_HEAD(destroy_list);
Jan Kara08991e82017-02-01 09:21:58 +010098static struct fsnotify_mark_connector *connector_destroy_list;
Jeff Layton0918f1c2016-02-17 13:11:21 -080099
Jan Kara35e48172016-05-19 17:08:59 -0700100static void fsnotify_mark_destroy_workfn(struct work_struct *work);
101static DECLARE_DELAYED_WORK(reaper_work, fsnotify_mark_destroy_workfn);
Eric Paris75c1be42010-07-28 10:18:38 -0400102
Jan Kara08991e82017-02-01 09:21:58 +0100103static void fsnotify_connector_destroy_workfn(struct work_struct *work);
104static DECLARE_WORK(connector_reaper_work, fsnotify_connector_destroy_workfn);
105
Eric Paris5444e292009-12-17 21:24:27 -0500106void fsnotify_get_mark(struct fsnotify_mark *mark)
107{
Jan Kara11375142016-11-09 14:54:20 +0100108 WARN_ON_ONCE(!atomic_read(&mark->refcnt));
Eric Paris5444e292009-12-17 21:24:27 -0500109 atomic_inc(&mark->refcnt);
110}
111
Jan Karaabc77572016-11-10 16:02:11 +0100112/*
113 * Get mark reference when we found the mark via lockless traversal of object
114 * list. Mark can be already removed from the list by now and on its way to be
115 * destroyed once SRCU period ends.
116 */
117static bool fsnotify_get_mark_safe(struct fsnotify_mark *mark)
118{
119 return atomic_inc_not_zero(&mark->refcnt);
120}
121
Jan Karaa2426772017-03-15 09:16:27 +0100122static void __fsnotify_recalc_mask(struct fsnotify_mark_connector *conn)
Jan Kara0809ab62014-12-12 16:58:36 -0800123{
124 u32 new_mask = 0;
125 struct fsnotify_mark *mark;
126
Jan Kara04662ca2017-02-01 08:19:43 +0100127 assert_spin_locked(&conn->lock);
Jan Kara6b3f05d2016-12-21 12:15:30 +0100128 hlist_for_each_entry(mark, &conn->list, obj_list) {
129 if (mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED)
130 new_mask |= mark->mask;
131 }
Jan Karaa2426772017-03-15 09:16:27 +0100132 if (conn->flags & FSNOTIFY_OBJ_TYPE_INODE)
133 conn->inode->i_fsnotify_mask = new_mask;
134 else if (conn->flags & FSNOTIFY_OBJ_TYPE_VFSMOUNT)
135 real_mount(conn->mnt)->mnt_fsnotify_mask = new_mask;
136}
137
138/*
139 * Calculate mask of events for a list of marks. The caller must make sure
Jan Kara6b3f05d2016-12-21 12:15:30 +0100140 * connector and connector->inode cannot disappear under us. Callers achieve
141 * this by holding a mark->lock or mark->group->mark_mutex for a mark on this
142 * list.
Jan Karaa2426772017-03-15 09:16:27 +0100143 */
144void fsnotify_recalc_mask(struct fsnotify_mark_connector *conn)
145{
146 if (!conn)
147 return;
148
Jan Kara04662ca2017-02-01 08:19:43 +0100149 spin_lock(&conn->lock);
Jan Karaa2426772017-03-15 09:16:27 +0100150 __fsnotify_recalc_mask(conn);
Jan Kara04662ca2017-02-01 08:19:43 +0100151 spin_unlock(&conn->lock);
152 if (conn->flags & FSNOTIFY_OBJ_TYPE_INODE)
Jan Karaa2426772017-03-15 09:16:27 +0100153 __fsnotify_update_child_dentry_flags(conn->inode);
Jan Kara0809ab62014-12-12 16:58:36 -0800154}
155
Jan Kara08991e82017-02-01 09:21:58 +0100156/* Free all connectors queued for freeing once SRCU period ends */
157static void fsnotify_connector_destroy_workfn(struct work_struct *work)
158{
159 struct fsnotify_mark_connector *conn, *free;
160
161 spin_lock(&destroy_lock);
162 conn = connector_destroy_list;
163 connector_destroy_list = NULL;
164 spin_unlock(&destroy_lock);
165
166 synchronize_srcu(&fsnotify_mark_srcu);
167 while (conn) {
168 free = conn;
169 conn = conn->destroy_next;
170 kmem_cache_free(fsnotify_mark_connector_cachep, free);
171 }
172}
173
Jan Kara08991e82017-02-01 09:21:58 +0100174static struct inode *fsnotify_detach_connector_from_object(
175 struct fsnotify_mark_connector *conn)
176{
177 struct inode *inode = NULL;
178
179 if (conn->flags & FSNOTIFY_OBJ_TYPE_INODE) {
180 inode = conn->inode;
181 rcu_assign_pointer(inode->i_fsnotify_marks, NULL);
182 inode->i_fsnotify_mask = 0;
183 conn->inode = NULL;
184 conn->flags &= ~FSNOTIFY_OBJ_TYPE_INODE;
185 } else if (conn->flags & FSNOTIFY_OBJ_TYPE_VFSMOUNT) {
186 rcu_assign_pointer(real_mount(conn->mnt)->mnt_fsnotify_marks,
187 NULL);
188 real_mount(conn->mnt)->mnt_fsnotify_mask = 0;
189 conn->mnt = NULL;
190 conn->flags &= ~FSNOTIFY_OBJ_TYPE_VFSMOUNT;
191 }
192
193 return inode;
194}
195
Jan Kara6b3f05d2016-12-21 12:15:30 +0100196static void fsnotify_final_mark_destroy(struct fsnotify_mark *mark)
197{
198 if (mark->group)
199 fsnotify_put_group(mark->group);
200 mark->free_mark(mark);
201}
202
203void fsnotify_put_mark(struct fsnotify_mark *mark)
Jan Kara8212a602017-03-15 09:48:11 +0100204{
205 struct fsnotify_mark_connector *conn;
206 struct inode *inode = NULL;
Jan Kara08991e82017-02-01 09:21:58 +0100207 bool free_conn = false;
Jan Kara8212a602017-03-15 09:48:11 +0100208
Jan Kara6b3f05d2016-12-21 12:15:30 +0100209 /* Catch marks that were actually never attached to object */
210 if (!mark->connector) {
211 if (atomic_dec_and_test(&mark->refcnt))
212 fsnotify_final_mark_destroy(mark);
213 return;
214 }
215
216 /*
217 * We have to be careful so that traversals of obj_list under lock can
218 * safely grab mark reference.
219 */
220 if (!atomic_dec_and_lock(&mark->refcnt, &mark->connector->lock))
221 return;
222
Jan Kara8212a602017-03-15 09:48:11 +0100223 conn = mark->connector;
Jan Kara8212a602017-03-15 09:48:11 +0100224 hlist_del_init_rcu(&mark->obj_list);
225 if (hlist_empty(&conn->list)) {
Jan Kara08991e82017-02-01 09:21:58 +0100226 inode = fsnotify_detach_connector_from_object(conn);
227 free_conn = true;
228 } else {
229 __fsnotify_recalc_mask(conn);
Jan Kara8212a602017-03-15 09:48:11 +0100230 }
231 mark->connector = NULL;
Jan Kara04662ca2017-02-01 08:19:43 +0100232 spin_unlock(&conn->lock);
Jan Kara8212a602017-03-15 09:48:11 +0100233
Jan Kara6b3f05d2016-12-21 12:15:30 +0100234 iput(inode);
235
Jan Kara08991e82017-02-01 09:21:58 +0100236 if (free_conn) {
237 spin_lock(&destroy_lock);
238 conn->destroy_next = connector_destroy_list;
239 connector_destroy_list = conn;
240 spin_unlock(&destroy_lock);
241 queue_work(system_unbound_wq, &connector_reaper_work);
242 }
Jan Kara6b3f05d2016-12-21 12:15:30 +0100243 /*
244 * Note that we didn't update flags telling whether inode cares about
245 * what's happening with children. We update these flags from
246 * __fsnotify_parent() lazily when next event happens on one of our
247 * children.
248 */
249 spin_lock(&destroy_lock);
250 list_add(&mark->g_list, &destroy_list);
251 spin_unlock(&destroy_lock);
252 queue_delayed_work(system_unbound_wq, &reaper_work,
253 FSNOTIFY_REAPER_DELAY);
Jan Kara8212a602017-03-15 09:48:11 +0100254}
255
Jan Karaabc77572016-11-10 16:02:11 +0100256bool fsnotify_prepare_user_wait(struct fsnotify_iter_info *iter_info)
257{
258 struct fsnotify_group *group;
259
260 if (WARN_ON_ONCE(!iter_info->inode_mark && !iter_info->vfsmount_mark))
261 return false;
262
263 if (iter_info->inode_mark)
264 group = iter_info->inode_mark->group;
265 else
266 group = iter_info->vfsmount_mark->group;
267
268 /*
269 * Since acquisition of mark reference is an atomic op as well, we can
270 * be sure this inc is seen before any effect of refcount increment.
271 */
272 atomic_inc(&group->user_waits);
273
274 if (iter_info->inode_mark) {
275 /* This can fail if mark is being removed */
276 if (!fsnotify_get_mark_safe(iter_info->inode_mark))
277 goto out_wait;
278 }
279 if (iter_info->vfsmount_mark) {
280 if (!fsnotify_get_mark_safe(iter_info->vfsmount_mark))
281 goto out_inode;
282 }
283
284 /*
285 * Now that both marks are pinned by refcount in the inode / vfsmount
286 * lists, we can drop SRCU lock, and safely resume the list iteration
287 * once userspace returns.
288 */
289 srcu_read_unlock(&fsnotify_mark_srcu, iter_info->srcu_idx);
290
291 return true;
292out_inode:
293 if (iter_info->inode_mark)
294 fsnotify_put_mark(iter_info->inode_mark);
295out_wait:
296 if (atomic_dec_and_test(&group->user_waits) && group->shutdown)
297 wake_up(&group->notification_waitq);
298 return false;
299}
300
301void fsnotify_finish_user_wait(struct fsnotify_iter_info *iter_info)
302{
303 struct fsnotify_group *group = NULL;
304
305 iter_info->srcu_idx = srcu_read_lock(&fsnotify_mark_srcu);
306 if (iter_info->inode_mark) {
307 group = iter_info->inode_mark->group;
308 fsnotify_put_mark(iter_info->inode_mark);
309 }
310 if (iter_info->vfsmount_mark) {
311 group = iter_info->vfsmount_mark->group;
312 fsnotify_put_mark(iter_info->vfsmount_mark);
313 }
314 /*
315 * We abuse notification_waitq on group shutdown for waiting for all
316 * marks pinned when waiting for userspace.
317 */
318 if (atomic_dec_and_test(&group->user_waits) && group->shutdown)
319 wake_up(&group->notification_waitq);
320}
321
Eric Paris5444e292009-12-17 21:24:27 -0500322/*
Jan Kara6b3f05d2016-12-21 12:15:30 +0100323 * Mark mark as detached, remove it from group list. Mark still stays in object
324 * list until its last reference is dropped. Note that we rely on mark being
325 * removed from group list before corresponding reference to it is dropped. In
326 * particular we rely on mark->connector being valid while we hold
327 * group->mark_mutex if we found the mark through g_list.
Jan Kara4712e7222015-09-04 15:43:12 -0700328 *
Jan Kara11375142016-11-09 14:54:20 +0100329 * Must be called with group->mark_mutex held. The caller must either hold
330 * reference to the mark or be protected by fsnotify_mark_srcu.
Eric Paris5444e292009-12-17 21:24:27 -0500331 */
Jan Kara4712e7222015-09-04 15:43:12 -0700332void fsnotify_detach_mark(struct fsnotify_mark *mark)
Eric Paris5444e292009-12-17 21:24:27 -0500333{
Jan Kara4712e7222015-09-04 15:43:12 -0700334 struct fsnotify_group *group = mark->group;
Eric Paris5444e292009-12-17 21:24:27 -0500335
Jan Kara11375142016-11-09 14:54:20 +0100336 WARN_ON_ONCE(!mutex_is_locked(&group->mark_mutex));
337 WARN_ON_ONCE(!srcu_read_lock_held(&fsnotify_mark_srcu) &&
338 atomic_read(&mark->refcnt) < 1 +
339 !!(mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED));
Lino Sanfilippod5a335b2011-06-14 17:29:52 +0200340
Lino Sanfilippo104d06f2011-06-14 17:29:48 +0200341 spin_lock(&mark->lock);
Eric Paris700307a2010-07-28 10:18:38 -0400342 /* something else already called this function on this mark */
Jan Kara4712e7222015-09-04 15:43:12 -0700343 if (!(mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED)) {
Eric Paris5444e292009-12-17 21:24:27 -0500344 spin_unlock(&mark->lock);
Lino Sanfilippoe2a29942011-06-14 17:29:51 +0200345 return;
Eric Paris5444e292009-12-17 21:24:27 -0500346 }
Jan Kara4712e7222015-09-04 15:43:12 -0700347 mark->flags &= ~FSNOTIFY_MARK_FLAG_ATTACHED;
Eric Paris5444e292009-12-17 21:24:27 -0500348 list_del_init(&mark->g_list);
Eric Paris5444e292009-12-17 21:24:27 -0500349 spin_unlock(&mark->lock);
Lino Sanfilippod5a335b2011-06-14 17:29:52 +0200350
Jan Kara4712e7222015-09-04 15:43:12 -0700351 atomic_dec(&group->num_marks);
Jan Kara11375142016-11-09 14:54:20 +0100352
353 /* Drop mark reference acquired in fsnotify_add_mark_locked() */
354 fsnotify_put_mark(mark);
Jan Kara4712e7222015-09-04 15:43:12 -0700355}
356
357/*
Jan Kara11375142016-11-09 14:54:20 +0100358 * Free fsnotify mark. The mark is actually only marked as being freed. The
359 * freeing is actually happening only once last reference to the mark is
360 * dropped from a workqueue which first waits for srcu period end.
Jan Kara35e48172016-05-19 17:08:59 -0700361 *
Jan Kara11375142016-11-09 14:54:20 +0100362 * Caller must have a reference to the mark or be protected by
363 * fsnotify_mark_srcu.
Jan Kara4712e7222015-09-04 15:43:12 -0700364 */
Jan Kara11375142016-11-09 14:54:20 +0100365void fsnotify_free_mark(struct fsnotify_mark *mark)
Jan Kara4712e7222015-09-04 15:43:12 -0700366{
367 struct fsnotify_group *group = mark->group;
368
369 spin_lock(&mark->lock);
370 /* something else already called this function on this mark */
371 if (!(mark->flags & FSNOTIFY_MARK_FLAG_ALIVE)) {
372 spin_unlock(&mark->lock);
Jan Kara11375142016-11-09 14:54:20 +0100373 return;
Jan Kara4712e7222015-09-04 15:43:12 -0700374 }
375 mark->flags &= ~FSNOTIFY_MARK_FLAG_ALIVE;
376 spin_unlock(&mark->lock);
Eric Paris5444e292009-12-17 21:24:27 -0500377
Linus Torvaldsd725e662015-07-21 16:06:53 -0700378 /*
379 * Some groups like to know that marks are being freed. This is a
380 * callback to the group function to let it know that this mark
381 * is being freed.
382 */
383 if (group->ops->freeing_mark)
384 group->ops->freeing_mark(mark, group);
Lino Sanfilippod5a335b2011-06-14 17:29:52 +0200385}
386
387void fsnotify_destroy_mark(struct fsnotify_mark *mark,
388 struct fsnotify_group *group)
389{
Lino Sanfilippo6960b0d2011-08-12 01:13:31 +0200390 mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING);
Jan Kara4712e7222015-09-04 15:43:12 -0700391 fsnotify_detach_mark(mark);
Lino Sanfilippod5a335b2011-06-14 17:29:52 +0200392 mutex_unlock(&group->mark_mutex);
Jan Kara4712e7222015-09-04 15:43:12 -0700393 fsnotify_free_mark(mark);
Eric Paris5444e292009-12-17 21:24:27 -0500394}
395
Eric Paris90b1e7a2009-12-17 21:24:33 -0500396void fsnotify_set_mark_mask_locked(struct fsnotify_mark *mark, __u32 mask)
397{
398 assert_spin_locked(&mark->lock);
399
400 mark->mask = mask;
Eric Paris90b1e7a2009-12-17 21:24:33 -0500401}
402
Eric Paris33af5e32009-12-17 21:24:33 -0500403void fsnotify_set_mark_ignored_mask_locked(struct fsnotify_mark *mark, __u32 mask)
404{
405 assert_spin_locked(&mark->lock);
406
407 mark->ignored_mask = mask;
408}
Eric Paris90b1e7a2009-12-17 21:24:33 -0500409
Eric Paris5444e292009-12-17 21:24:27 -0500410/*
Jan Kara8edc6e12014-11-13 15:19:33 -0800411 * Sorting function for lists of fsnotify marks.
412 *
413 * Fanotify supports different notification classes (reflected as priority of
414 * notification group). Events shall be passed to notification groups in
415 * decreasing priority order. To achieve this marks in notification lists for
416 * inodes and vfsmounts are sorted so that priorities of corresponding groups
417 * are descending.
418 *
419 * Furthermore correct handling of the ignore mask requires processing inode
420 * and vfsmount marks of each group together. Using the group address as
421 * further sort criterion provides a unique sorting order and thus we can
422 * merge inode and vfsmount lists of marks in linear time and find groups
423 * present in both lists.
424 *
425 * A return value of 1 signifies that b has priority over a.
426 * A return value of 0 signifies that the two marks have to be handled together.
427 * A return value of -1 signifies that a has priority over b.
428 */
429int fsnotify_compare_groups(struct fsnotify_group *a, struct fsnotify_group *b)
430{
431 if (a == b)
432 return 0;
433 if (!a)
434 return 1;
435 if (!b)
436 return -1;
437 if (a->priority < b->priority)
438 return 1;
439 if (a->priority > b->priority)
440 return -1;
441 if (a < b)
442 return 1;
443 return -1;
444}
445
Jan Kara9dd813c2017-03-14 12:31:02 +0100446static int fsnotify_attach_connector_to_object(
Jan Kara08991e82017-02-01 09:21:58 +0100447 struct fsnotify_mark_connector __rcu **connp,
448 struct inode *inode,
449 struct vfsmount *mnt)
Jan Kara9dd813c2017-03-14 12:31:02 +0100450{
451 struct fsnotify_mark_connector *conn;
452
Jan Kara755b5bc2017-03-14 16:11:23 +0100453 conn = kmem_cache_alloc(fsnotify_mark_connector_cachep, GFP_KERNEL);
Jan Kara9dd813c2017-03-14 12:31:02 +0100454 if (!conn)
455 return -ENOMEM;
Jan Kara04662ca2017-02-01 08:19:43 +0100456 spin_lock_init(&conn->lock);
Jan Kara9dd813c2017-03-14 12:31:02 +0100457 INIT_HLIST_HEAD(&conn->list);
Jan Kara86ffe242017-03-14 14:29:35 +0100458 if (inode) {
459 conn->flags = FSNOTIFY_OBJ_TYPE_INODE;
Jan Kara08991e82017-02-01 09:21:58 +0100460 conn->inode = igrab(inode);
Jan Kara86ffe242017-03-14 14:29:35 +0100461 } else {
462 conn->flags = FSNOTIFY_OBJ_TYPE_VFSMOUNT;
463 conn->mnt = mnt;
464 }
Jan Kara9dd813c2017-03-14 12:31:02 +0100465 /*
Jan Kara04662ca2017-02-01 08:19:43 +0100466 * cmpxchg() provides the barrier so that readers of *connp can see
467 * only initialized structure
Jan Kara9dd813c2017-03-14 12:31:02 +0100468 */
Jan Kara04662ca2017-02-01 08:19:43 +0100469 if (cmpxchg(connp, NULL, conn)) {
470 /* Someone else created list structure for us */
Jan Kara08991e82017-02-01 09:21:58 +0100471 if (inode)
472 iput(inode);
Jan Kara755b5bc2017-03-14 16:11:23 +0100473 kmem_cache_free(fsnotify_mark_connector_cachep, conn);
Jan Kara04662ca2017-02-01 08:19:43 +0100474 }
Jan Kara9dd813c2017-03-14 12:31:02 +0100475
476 return 0;
477}
478
479/*
Jan Kara08991e82017-02-01 09:21:58 +0100480 * Get mark connector, make sure it is alive and return with its lock held.
481 * This is for users that get connector pointer from inode or mount. Users that
482 * hold reference to a mark on the list may directly lock connector->lock as
483 * they are sure list cannot go away under them.
484 */
485static struct fsnotify_mark_connector *fsnotify_grab_connector(
486 struct fsnotify_mark_connector __rcu **connp)
487{
488 struct fsnotify_mark_connector *conn;
489 int idx;
490
491 idx = srcu_read_lock(&fsnotify_mark_srcu);
492 conn = srcu_dereference(*connp, &fsnotify_mark_srcu);
493 if (!conn)
494 goto out;
495 spin_lock(&conn->lock);
496 if (!(conn->flags & (FSNOTIFY_OBJ_TYPE_INODE |
497 FSNOTIFY_OBJ_TYPE_VFSMOUNT))) {
498 spin_unlock(&conn->lock);
499 srcu_read_unlock(&fsnotify_mark_srcu, idx);
500 return NULL;
501 }
502out:
503 srcu_read_unlock(&fsnotify_mark_srcu, idx);
504 return conn;
505}
506
507/*
Jan Kara9dd813c2017-03-14 12:31:02 +0100508 * Add mark into proper place in given list of marks. These marks may be used
509 * for the fsnotify backend to determine which event types should be delivered
510 * to which group and for which inodes. These marks are ordered according to
511 * priority, highest number first, and then by the group's location in memory.
512 */
Jan Kara755b5bc2017-03-14 16:11:23 +0100513static int fsnotify_add_mark_list(struct fsnotify_mark *mark,
514 struct inode *inode, struct vfsmount *mnt,
515 int allow_dups)
Jan Kara0809ab62014-12-12 16:58:36 -0800516{
517 struct fsnotify_mark *lmark, *last = NULL;
Jan Kara9dd813c2017-03-14 12:31:02 +0100518 struct fsnotify_mark_connector *conn;
Jan Kara08991e82017-02-01 09:21:58 +0100519 struct fsnotify_mark_connector __rcu **connp;
Jan Kara0809ab62014-12-12 16:58:36 -0800520 int cmp;
Jan Kara755b5bc2017-03-14 16:11:23 +0100521 int err = 0;
522
523 if (WARN_ON(!inode && !mnt))
524 return -EINVAL;
Jan Kara04662ca2017-02-01 08:19:43 +0100525 if (inode)
Jan Kara755b5bc2017-03-14 16:11:23 +0100526 connp = &inode->i_fsnotify_marks;
Jan Kara04662ca2017-02-01 08:19:43 +0100527 else
Jan Kara755b5bc2017-03-14 16:11:23 +0100528 connp = &real_mount(mnt)->mnt_fsnotify_marks;
Jan Kara08991e82017-02-01 09:21:58 +0100529restart:
530 spin_lock(&mark->lock);
531 conn = fsnotify_grab_connector(connp);
532 if (!conn) {
533 spin_unlock(&mark->lock);
Jan Kara04662ca2017-02-01 08:19:43 +0100534 err = fsnotify_attach_connector_to_object(connp, inode, mnt);
Jan Kara9dd813c2017-03-14 12:31:02 +0100535 if (err)
536 return err;
Jan Kara08991e82017-02-01 09:21:58 +0100537 goto restart;
Jan Kara9dd813c2017-03-14 12:31:02 +0100538 }
Jan Kara0809ab62014-12-12 16:58:36 -0800539
540 /* is mark the first mark? */
Jan Kara9dd813c2017-03-14 12:31:02 +0100541 if (hlist_empty(&conn->list)) {
542 hlist_add_head_rcu(&mark->obj_list, &conn->list);
Jan Kara86ffe242017-03-14 14:29:35 +0100543 goto added;
Jan Kara0809ab62014-12-12 16:58:36 -0800544 }
545
546 /* should mark be in the middle of the current list? */
Jan Kara9dd813c2017-03-14 12:31:02 +0100547 hlist_for_each_entry(lmark, &conn->list, obj_list) {
Jan Kara0809ab62014-12-12 16:58:36 -0800548 last = lmark;
549
Jan Kara6b3f05d2016-12-21 12:15:30 +0100550 if ((lmark->group == mark->group) &&
551 (lmark->flags & FSNOTIFY_MARK_FLAG_ATTACHED) &&
552 !allow_dups) {
Jan Kara755b5bc2017-03-14 16:11:23 +0100553 err = -EEXIST;
554 goto out_err;
555 }
Jan Kara0809ab62014-12-12 16:58:36 -0800556
557 cmp = fsnotify_compare_groups(lmark->group, mark->group);
558 if (cmp >= 0) {
559 hlist_add_before_rcu(&mark->obj_list, &lmark->obj_list);
Jan Kara86ffe242017-03-14 14:29:35 +0100560 goto added;
Jan Kara0809ab62014-12-12 16:58:36 -0800561 }
562 }
563
564 BUG_ON(last == NULL);
565 /* mark should be the last entry. last is the current last entry */
566 hlist_add_behind_rcu(&mark->obj_list, &last->obj_list);
Jan Kara86ffe242017-03-14 14:29:35 +0100567added:
568 mark->connector = conn;
Jan Kara755b5bc2017-03-14 16:11:23 +0100569out_err:
Jan Kara04662ca2017-02-01 08:19:43 +0100570 spin_unlock(&conn->lock);
Jan Kara755b5bc2017-03-14 16:11:23 +0100571 spin_unlock(&mark->lock);
572 return err;
Jan Kara0809ab62014-12-12 16:58:36 -0800573}
574
Jan Kara8edc6e12014-11-13 15:19:33 -0800575/*
Eric Paris5444e292009-12-17 21:24:27 -0500576 * Attach an initialized mark to a given group and fs object.
577 * These marks may be used for the fsnotify backend to determine which
578 * event types should be delivered to which group.
579 */
Lino Sanfilippod5a335b2011-06-14 17:29:52 +0200580int fsnotify_add_mark_locked(struct fsnotify_mark *mark,
581 struct fsnotify_group *group, struct inode *inode,
582 struct vfsmount *mnt, int allow_dups)
Eric Paris5444e292009-12-17 21:24:27 -0500583{
584 int ret = 0;
585
Eric Paris5444e292009-12-17 21:24:27 -0500586 BUG_ON(inode && mnt);
587 BUG_ON(!inode && !mnt);
Lino Sanfilippod5a335b2011-06-14 17:29:52 +0200588 BUG_ON(!mutex_is_locked(&group->mark_mutex));
Eric Paris5444e292009-12-17 21:24:27 -0500589
590 /*
Eric Paris5444e292009-12-17 21:24:27 -0500591 * LOCKING ORDER!!!!
Lino Sanfilippo986ab092011-06-14 17:29:50 +0200592 * group->mark_mutex
Lino Sanfilippo104d06f2011-06-14 17:29:48 +0200593 * mark->lock
Jan Kara04662ca2017-02-01 08:19:43 +0100594 * mark->connector->lock
Eric Paris5444e292009-12-17 21:24:27 -0500595 */
Lino Sanfilippo104d06f2011-06-14 17:29:48 +0200596 spin_lock(&mark->lock);
Jan Kara4712e7222015-09-04 15:43:12 -0700597 mark->flags |= FSNOTIFY_MARK_FLAG_ALIVE | FSNOTIFY_MARK_FLAG_ATTACHED;
Eric Paris700307a2010-07-28 10:18:38 -0400598
Lino Sanfilippo23e964c2011-06-14 17:29:47 +0200599 fsnotify_get_group(group);
Eric Paris5444e292009-12-17 21:24:27 -0500600 mark->group = group;
601 list_add(&mark->g_list, &group->marks_list);
602 atomic_inc(&group->num_marks);
Jan Kara6b3f05d2016-12-21 12:15:30 +0100603 fsnotify_get_mark(mark); /* for g_list */
Eric Paris5444e292009-12-17 21:24:27 -0500604 spin_unlock(&mark->lock);
605
Jan Kara755b5bc2017-03-14 16:11:23 +0100606 ret = fsnotify_add_mark_list(mark, inode, mnt, allow_dups);
607 if (ret)
608 goto err;
609
Jan Karaa2426772017-03-15 09:16:27 +0100610 if (mark->mask)
611 fsnotify_recalc_mask(mark->connector);
Eric Paris5444e292009-12-17 21:24:27 -0500612
613 return ret;
614err:
Jan Kara11375142016-11-09 14:54:20 +0100615 mark->flags &= ~(FSNOTIFY_MARK_FLAG_ALIVE |
616 FSNOTIFY_MARK_FLAG_ATTACHED);
Eric Paris5444e292009-12-17 21:24:27 -0500617 list_del_init(&mark->g_list);
618 atomic_dec(&group->num_marks);
Eric Paris5444e292009-12-17 21:24:27 -0500619 spin_unlock(&mark->lock);
620
Jan Kara11375142016-11-09 14:54:20 +0100621 fsnotify_put_mark(mark);
Eric Paris5444e292009-12-17 21:24:27 -0500622 return ret;
623}
624
Lino Sanfilippod5a335b2011-06-14 17:29:52 +0200625int fsnotify_add_mark(struct fsnotify_mark *mark, struct fsnotify_group *group,
626 struct inode *inode, struct vfsmount *mnt, int allow_dups)
627{
628 int ret;
629 mutex_lock(&group->mark_mutex);
630 ret = fsnotify_add_mark_locked(mark, group, inode, mnt, allow_dups);
631 mutex_unlock(&group->mark_mutex);
632 return ret;
633}
634
Eric Paris5444e292009-12-17 21:24:27 -0500635/*
Jan Kara0809ab62014-12-12 16:58:36 -0800636 * Given a list of marks, find the mark associated with given group. If found
637 * take a reference to that mark and return it, else return NULL.
638 */
Jan Kara08991e82017-02-01 09:21:58 +0100639struct fsnotify_mark *fsnotify_find_mark(
640 struct fsnotify_mark_connector __rcu **connp,
641 struct fsnotify_group *group)
Jan Kara0809ab62014-12-12 16:58:36 -0800642{
Jan Kara08991e82017-02-01 09:21:58 +0100643 struct fsnotify_mark_connector *conn;
Jan Kara0809ab62014-12-12 16:58:36 -0800644 struct fsnotify_mark *mark;
645
Jan Kara08991e82017-02-01 09:21:58 +0100646 conn = fsnotify_grab_connector(connp);
Jan Kara9dd813c2017-03-14 12:31:02 +0100647 if (!conn)
648 return NULL;
649
650 hlist_for_each_entry(mark, &conn->list, obj_list) {
Jan Kara6b3f05d2016-12-21 12:15:30 +0100651 if (mark->group == group &&
652 (mark->flags & FSNOTIFY_MARK_FLAG_ATTACHED)) {
Jan Kara0809ab62014-12-12 16:58:36 -0800653 fsnotify_get_mark(mark);
Jan Kara04662ca2017-02-01 08:19:43 +0100654 spin_unlock(&conn->lock);
Jan Kara0809ab62014-12-12 16:58:36 -0800655 return mark;
656 }
657 }
Jan Kara04662ca2017-02-01 08:19:43 +0100658 spin_unlock(&conn->lock);
Jan Kara0809ab62014-12-12 16:58:36 -0800659 return NULL;
660}
661
662/*
Linus Torvaldsd725e662015-07-21 16:06:53 -0700663 * clear any marks in a group in which mark->flags & flags is true
Eric Paris5444e292009-12-17 21:24:27 -0500664 */
Eric Paris4d926042009-12-17 21:24:34 -0500665void fsnotify_clear_marks_by_group_flags(struct fsnotify_group *group,
666 unsigned int flags)
Eric Paris5444e292009-12-17 21:24:27 -0500667{
668 struct fsnotify_mark *lmark, *mark;
Jan Kara8f2f3eb2015-08-06 15:46:42 -0700669 LIST_HEAD(to_free);
Eric Paris5444e292009-12-17 21:24:27 -0500670
Jan Kara8f2f3eb2015-08-06 15:46:42 -0700671 /*
672 * We have to be really careful here. Anytime we drop mark_mutex, e.g.
673 * fsnotify_clear_marks_by_inode() can come and free marks. Even in our
674 * to_free list so we have to use mark_mutex even when accessing that
675 * list. And freeing mark requires us to drop mark_mutex. So we can
676 * reliably free only the first mark in the list. That's why we first
677 * move marks to free to to_free list in one go and then free marks in
678 * to_free list one by one.
679 */
Lino Sanfilippo6960b0d2011-08-12 01:13:31 +0200680 mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING);
Eric Paris5444e292009-12-17 21:24:27 -0500681 list_for_each_entry_safe(mark, lmark, &group->marks_list, g_list) {
Jan Kara86ffe242017-03-14 14:29:35 +0100682 if (mark->connector->flags & flags)
Jan Kara8f2f3eb2015-08-06 15:46:42 -0700683 list_move(&mark->g_list, &to_free);
Eric Paris5444e292009-12-17 21:24:27 -0500684 }
Lino Sanfilippo986ab092011-06-14 17:29:50 +0200685 mutex_unlock(&group->mark_mutex);
Jan Kara8f2f3eb2015-08-06 15:46:42 -0700686
687 while (1) {
688 mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING);
689 if (list_empty(&to_free)) {
690 mutex_unlock(&group->mark_mutex);
691 break;
692 }
693 mark = list_first_entry(&to_free, struct fsnotify_mark, g_list);
694 fsnotify_get_mark(mark);
Jan Kara4712e7222015-09-04 15:43:12 -0700695 fsnotify_detach_mark(mark);
Jan Kara8f2f3eb2015-08-06 15:46:42 -0700696 mutex_unlock(&group->mark_mutex);
Jan Kara4712e7222015-09-04 15:43:12 -0700697 fsnotify_free_mark(mark);
Jan Kara8f2f3eb2015-08-06 15:46:42 -0700698 fsnotify_put_mark(mark);
699 }
Eric Paris5444e292009-12-17 21:24:27 -0500700}
701
Eric Paris4d926042009-12-17 21:24:34 -0500702/*
Jan Kara35e48172016-05-19 17:08:59 -0700703 * Given a group, prepare for freeing all the marks associated with that group.
704 * The marks are attached to the list of marks prepared for destruction, the
705 * caller is responsible for freeing marks in that list after SRCU period has
706 * ended.
Eric Paris4d926042009-12-17 21:24:34 -0500707 */
Jan Kara35e48172016-05-19 17:08:59 -0700708void fsnotify_detach_group_marks(struct fsnotify_group *group)
Eric Paris4d926042009-12-17 21:24:34 -0500709{
Jan Kara35e48172016-05-19 17:08:59 -0700710 struct fsnotify_mark *mark;
711
712 while (1) {
713 mutex_lock_nested(&group->mark_mutex, SINGLE_DEPTH_NESTING);
714 if (list_empty(&group->marks_list)) {
715 mutex_unlock(&group->mark_mutex);
716 break;
717 }
718 mark = list_first_entry(&group->marks_list,
719 struct fsnotify_mark, g_list);
720 fsnotify_get_mark(mark);
721 fsnotify_detach_mark(mark);
722 mutex_unlock(&group->mark_mutex);
Jan Kara11375142016-11-09 14:54:20 +0100723 fsnotify_free_mark(mark);
Jan Kara35e48172016-05-19 17:08:59 -0700724 fsnotify_put_mark(mark);
725 }
Jan Karaabc77572016-11-10 16:02:11 +0100726 /*
727 * Some marks can still be pinned when waiting for response from
728 * userspace. Wait for those now. fsnotify_prepare_user_wait() will
729 * not succeed now so this wait is race-free.
730 */
731 wait_event(group->notification_waitq, !atomic_read(&group->user_waits));
Eric Paris4d926042009-12-17 21:24:34 -0500732}
733
Jan Kara08991e82017-02-01 09:21:58 +0100734/* Destroy all marks attached to inode / vfsmount */
735void fsnotify_destroy_marks(struct fsnotify_mark_connector __rcu **connp)
Jan Kara0810b4f2017-02-01 09:23:48 +0100736{
Jan Kara08991e82017-02-01 09:21:58 +0100737 struct fsnotify_mark_connector *conn;
Jan Kara6b3f05d2016-12-21 12:15:30 +0100738 struct fsnotify_mark *mark, *old_mark = NULL;
739 struct inode *inode;
Jan Kara0810b4f2017-02-01 09:23:48 +0100740
Jan Kara6b3f05d2016-12-21 12:15:30 +0100741 conn = fsnotify_grab_connector(connp);
742 if (!conn)
743 return;
744 /*
745 * We have to be careful since we can race with e.g.
746 * fsnotify_clear_marks_by_group() and once we drop the conn->lock, the
747 * list can get modified. However we are holding mark reference and
748 * thus our mark cannot be removed from obj_list so we can continue
749 * iteration after regaining conn->lock.
750 */
751 hlist_for_each_entry(mark, &conn->list, obj_list) {
Jan Kara0810b4f2017-02-01 09:23:48 +0100752 fsnotify_get_mark(mark);
Jan Kara04662ca2017-02-01 08:19:43 +0100753 spin_unlock(&conn->lock);
Jan Kara6b3f05d2016-12-21 12:15:30 +0100754 if (old_mark)
755 fsnotify_put_mark(old_mark);
756 old_mark = mark;
Jan Kara0810b4f2017-02-01 09:23:48 +0100757 fsnotify_destroy_mark(mark, mark->group);
Jan Kara6b3f05d2016-12-21 12:15:30 +0100758 spin_lock(&conn->lock);
Jan Kara0810b4f2017-02-01 09:23:48 +0100759 }
Jan Kara6b3f05d2016-12-21 12:15:30 +0100760 /*
761 * Detach list from object now so that we don't pin inode until all
762 * mark references get dropped. It would lead to strange results such
763 * as delaying inode deletion or blocking unmount.
764 */
765 inode = fsnotify_detach_connector_from_object(conn);
766 spin_unlock(&conn->lock);
767 if (old_mark)
768 fsnotify_put_mark(old_mark);
769 iput(inode);
Jan Kara0810b4f2017-02-01 09:23:48 +0100770}
771
Eric Paris5444e292009-12-17 21:24:27 -0500772/*
773 * Nothing fancy, just initialize lists and locks and counters.
774 */
775void fsnotify_init_mark(struct fsnotify_mark *mark,
776 void (*free_mark)(struct fsnotify_mark *mark))
777{
Eric Parisba643f02009-12-17 21:24:27 -0500778 memset(mark, 0, sizeof(*mark));
Eric Paris5444e292009-12-17 21:24:27 -0500779 spin_lock_init(&mark->lock);
780 atomic_set(&mark->refcnt, 1);
Eric Paris5444e292009-12-17 21:24:27 -0500781 mark->free_mark = free_mark;
782}
Jeff Layton13d34ac2016-02-17 13:11:18 -0800783
Jan Kara35e48172016-05-19 17:08:59 -0700784/*
785 * Destroy all marks in destroy_list, waits for SRCU period to finish before
786 * actually freeing marks.
787 */
Jan Karaf09b04a2016-12-21 14:48:18 +0100788static void fsnotify_mark_destroy_workfn(struct work_struct *work)
Jeff Layton13d34ac2016-02-17 13:11:18 -0800789{
790 struct fsnotify_mark *mark, *next;
791 struct list_head private_destroy_list;
792
Jeff Layton0918f1c2016-02-17 13:11:21 -0800793 spin_lock(&destroy_lock);
794 /* exchange the list head */
795 list_replace_init(&destroy_list, &private_destroy_list);
796 spin_unlock(&destroy_lock);
Jeff Layton13d34ac2016-02-17 13:11:18 -0800797
Jeff Layton0918f1c2016-02-17 13:11:21 -0800798 synchronize_srcu(&fsnotify_mark_srcu);
Jeff Layton13d34ac2016-02-17 13:11:18 -0800799
Jeff Layton0918f1c2016-02-17 13:11:21 -0800800 list_for_each_entry_safe(mark, next, &private_destroy_list, g_list) {
801 list_del_init(&mark->g_list);
Jan Kara6b3f05d2016-12-21 12:15:30 +0100802 fsnotify_final_mark_destroy(mark);
Jeff Layton13d34ac2016-02-17 13:11:18 -0800803 }
Jeff Layton13d34ac2016-02-17 13:11:18 -0800804}
Jan Kara35e48172016-05-19 17:08:59 -0700805
Jan Karaf09b04a2016-12-21 14:48:18 +0100806/* Wait for all marks queued for destruction to be actually destroyed */
807void fsnotify_wait_marks_destroyed(void)
Jan Kara35e48172016-05-19 17:08:59 -0700808{
Jan Karaf09b04a2016-12-21 14:48:18 +0100809 flush_delayed_work(&reaper_work);
Jan Kara35e48172016-05-19 17:08:59 -0700810}