blob: 6baadb5a84307d176cd87ad99f399992ddff9519 [file] [log] [blame]
Eric Paris90586522009-05-21 17:01:20 -04001/*
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#include <linux/dcache.h>
20#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/gfp.h>
Eric Paris90586522009-05-21 17:01:20 -040022#include <linux/init.h>
23#include <linux/module.h>
Eric Paris71314852009-12-17 21:24:23 -050024#include <linux/mount.h>
Eric Paris90586522009-05-21 17:01:20 -040025#include <linux/srcu.h>
26
27#include <linux/fsnotify_backend.h>
28#include "fsnotify.h"
Al Viroc63181e2011-11-25 02:35:16 -050029#include "../mount.h"
Eric Paris90586522009-05-21 17:01:20 -040030
31/*
Eric Paris3be25f42009-05-21 17:01:26 -040032 * Clear all of the marks on an inode when it is being evicted from core
33 */
34void __fsnotify_inode_delete(struct inode *inode)
35{
36 fsnotify_clear_marks_by_inode(inode);
37}
38EXPORT_SYMBOL_GPL(__fsnotify_inode_delete);
39
Andreas Gruenbacherca9c7262009-12-17 21:24:27 -050040void __fsnotify_vfsmount_delete(struct vfsmount *mnt)
41{
42 fsnotify_clear_marks_by_mount(mnt);
43}
44
Eric Paris3be25f42009-05-21 17:01:26 -040045/*
Eric Parisc28f7e52009-05-21 17:01:29 -040046 * Given an inode, first check if we care what happens to our children. Inotify
47 * and dnotify both tell their parents about events. If we care about any event
48 * on a child we run all of our children and set a dentry flag saying that the
49 * parent cares. Thus when an event happens on a child it can quickly tell if
50 * if there is a need to find a parent and send the event to the parent.
51 */
52void __fsnotify_update_child_dentry_flags(struct inode *inode)
53{
54 struct dentry *alias;
Al Virob3d9b7a2012-06-09 13:51:19 -040055 struct hlist_node *p;
Eric Parisc28f7e52009-05-21 17:01:29 -040056 int watched;
57
58 if (!S_ISDIR(inode->i_mode))
59 return;
60
61 /* determine if the children should tell inode about their events */
62 watched = fsnotify_inode_watches_children(inode);
63
Nick Piggin873feea2011-01-07 17:50:06 +110064 spin_lock(&inode->i_lock);
Eric Parisc28f7e52009-05-21 17:01:29 -040065 /* run all of the dentries associated with this inode. Since this is a
66 * directory, there damn well better only be one item on this list */
Al Virob3d9b7a2012-06-09 13:51:19 -040067 hlist_for_each_entry(alias, p, &inode->i_dentry, d_alias) {
Eric Parisc28f7e52009-05-21 17:01:29 -040068 struct dentry *child;
69
70 /* run all of the children of the original inode and fix their
71 * d_flags to indicate parental interest (their parent is the
72 * original inode) */
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110073 spin_lock(&alias->d_lock);
Eric Parisc28f7e52009-05-21 17:01:29 -040074 list_for_each_entry(child, &alias->d_subdirs, d_u.d_child) {
75 if (!child->d_inode)
76 continue;
77
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110078 spin_lock_nested(&child->d_lock, DENTRY_D_LOCK_NESTED);
Eric Parisc28f7e52009-05-21 17:01:29 -040079 if (watched)
80 child->d_flags |= DCACHE_FSNOTIFY_PARENT_WATCHED;
81 else
82 child->d_flags &= ~DCACHE_FSNOTIFY_PARENT_WATCHED;
83 spin_unlock(&child->d_lock);
84 }
Nick Piggin2fd6b7f2011-01-07 17:49:34 +110085 spin_unlock(&alias->d_lock);
Eric Parisc28f7e52009-05-21 17:01:29 -040086 }
Nick Piggin873feea2011-01-07 17:50:06 +110087 spin_unlock(&inode->i_lock);
Eric Parisc28f7e52009-05-21 17:01:29 -040088}
89
90/* Notify this dentry's parent about a child's events. */
Eric Paris52420392010-10-28 17:21:56 -040091int __fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask)
Eric Parisc28f7e52009-05-21 17:01:29 -040092{
93 struct dentry *parent;
94 struct inode *p_inode;
Eric Paris52420392010-10-28 17:21:56 -040095 int ret = 0;
Eric Parisc28f7e52009-05-21 17:01:29 -040096
Andreas Gruenbacher72acc852009-12-17 21:24:24 -050097 if (!dentry)
Linus Torvalds20696012010-08-12 14:23:04 -070098 dentry = path->dentry;
Eric Paris28c60e32009-12-17 21:24:21 -050099
Eric Parisc28f7e52009-05-21 17:01:29 -0400100 if (!(dentry->d_flags & DCACHE_FSNOTIFY_PARENT_WATCHED))
Eric Paris52420392010-10-28 17:21:56 -0400101 return 0;
Eric Parisc28f7e52009-05-21 17:01:29 -0400102
Christoph Hellwig4d4eb362010-10-10 05:36:30 -0400103 parent = dget_parent(dentry);
Eric Parisc28f7e52009-05-21 17:01:29 -0400104 p_inode = parent->d_inode;
105
Christoph Hellwig4d4eb362010-10-10 05:36:30 -0400106 if (unlikely(!fsnotify_inode_watches_children(p_inode)))
107 __fsnotify_update_child_dentry_flags(p_inode);
108 else if (p_inode->i_fsnotify_mask & mask) {
Eric Parisc28f7e52009-05-21 17:01:29 -0400109 /* we are notifying a parent so come up with the new mask which
110 * specifies these are events which came from a child. */
111 mask |= FS_EVENT_ON_CHILD;
112
Linus Torvalds20696012010-08-12 14:23:04 -0700113 if (path)
Eric Paris52420392010-10-28 17:21:56 -0400114 ret = fsnotify(p_inode, mask, path, FSNOTIFY_EVENT_PATH,
115 dentry->d_name.name, 0);
Eric Paris28c60e32009-12-17 21:24:21 -0500116 else
Eric Paris52420392010-10-28 17:21:56 -0400117 ret = fsnotify(p_inode, mask, dentry->d_inode, FSNOTIFY_EVENT_INODE,
118 dentry->d_name.name, 0);
Eric Parisc28f7e52009-05-21 17:01:29 -0400119 }
120
Christoph Hellwig4d4eb362010-10-10 05:36:30 -0400121 dput(parent);
Eric Paris52420392010-10-28 17:21:56 -0400122
123 return ret;
Eric Parisc28f7e52009-05-21 17:01:29 -0400124}
125EXPORT_SYMBOL_GPL(__fsnotify_parent);
126
Dan Carpenterfd657172012-05-29 11:02:24 -0700127static int send_to_group(struct inode *to_tell,
Eric Parisce8f76f2010-07-28 10:18:39 -0400128 struct fsnotify_mark *inode_mark,
129 struct fsnotify_mark *vfsmount_mark,
130 __u32 mask, void *data,
Eric Paris613a8072010-07-28 10:18:39 -0400131 int data_is, u32 cookie,
Eric Paris3a9b16b2010-07-28 10:18:38 -0400132 const unsigned char *file_name,
Eric Parisc4ec54b2009-12-17 21:24:34 -0500133 struct fsnotify_event **event)
Eric Paris71314852009-12-17 21:24:23 -0500134{
Eric Parisfaa95602010-08-18 12:25:49 -0400135 struct fsnotify_group *group = NULL;
Eric Paris84e1ab42010-08-18 12:25:50 -0400136 __u32 inode_test_mask = 0;
137 __u32 vfsmount_test_mask = 0;
Eric Paris613a8072010-07-28 10:18:39 -0400138
Eric Parisfaa95602010-08-18 12:25:49 -0400139 if (unlikely(!inode_mark && !vfsmount_mark)) {
140 BUG();
141 return 0;
142 }
Eric Paris5ba08e22010-07-28 10:18:37 -0400143
Eric Parisce8f76f2010-07-28 10:18:39 -0400144 /* clear ignored on inode modification */
145 if (mask & FS_MODIFY) {
146 if (inode_mark &&
147 !(inode_mark->flags & FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY))
148 inode_mark->ignored_mask = 0;
149 if (vfsmount_mark &&
150 !(vfsmount_mark->flags & FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY))
151 vfsmount_mark->ignored_mask = 0;
152 }
Eric Paris613a8072010-07-28 10:18:39 -0400153
Eric Parisce8f76f2010-07-28 10:18:39 -0400154 /* does the inode mark tell us to do something? */
155 if (inode_mark) {
Eric Parisfaa95602010-08-18 12:25:49 -0400156 group = inode_mark->group;
Eric Paris84e1ab42010-08-18 12:25:50 -0400157 inode_test_mask = (mask & ~FS_EVENT_ON_CHILD);
Eric Parisce8f76f2010-07-28 10:18:39 -0400158 inode_test_mask &= inode_mark->mask;
159 inode_test_mask &= ~inode_mark->ignored_mask;
160 }
161
162 /* does the vfsmount_mark tell us to do something? */
163 if (vfsmount_mark) {
Eric Paris84e1ab42010-08-18 12:25:50 -0400164 vfsmount_test_mask = (mask & ~FS_EVENT_ON_CHILD);
Eric Parisfaa95602010-08-18 12:25:49 -0400165 group = vfsmount_mark->group;
Eric Parisce8f76f2010-07-28 10:18:39 -0400166 vfsmount_test_mask &= vfsmount_mark->mask;
167 vfsmount_test_mask &= ~vfsmount_mark->ignored_mask;
168 if (inode_mark)
169 vfsmount_test_mask &= ~inode_mark->ignored_mask;
170 }
171
Dan Carpenterfd657172012-05-29 11:02:24 -0700172 pr_debug("%s: group=%p to_tell=%p mask=%x inode_mark=%p"
Eric Paris84e1ab42010-08-18 12:25:50 -0400173 " inode_test_mask=%x vfsmount_mark=%p vfsmount_test_mask=%x"
174 " data=%p data_is=%d cookie=%d event=%p\n",
Dan Carpenterfd657172012-05-29 11:02:24 -0700175 __func__, group, to_tell, mask, inode_mark,
Eric Paris84e1ab42010-08-18 12:25:50 -0400176 inode_test_mask, vfsmount_mark, vfsmount_test_mask, data,
177 data_is, cookie, *event);
Eric Parisfaa95602010-08-18 12:25:49 -0400178
Eric Parisce8f76f2010-07-28 10:18:39 -0400179 if (!inode_test_mask && !vfsmount_test_mask)
Eric Paris613a8072010-07-28 10:18:39 -0400180 return 0;
181
Eric Paris1968f5e2010-07-28 10:18:39 -0400182 if (group->ops->should_send_event(group, to_tell, inode_mark,
Eric Parisce8f76f2010-07-28 10:18:39 -0400183 vfsmount_mark, mask, data,
184 data_is) == false)
Eric Parisc4ec54b2009-12-17 21:24:34 -0500185 return 0;
Eric Paris613a8072010-07-28 10:18:39 -0400186
Eric Paris71314852009-12-17 21:24:23 -0500187 if (!*event) {
188 *event = fsnotify_create_event(to_tell, mask, data,
189 data_is, file_name,
190 cookie, GFP_KERNEL);
Eric Paris71314852009-12-17 21:24:23 -0500191 if (!*event)
Eric Parisc4ec54b2009-12-17 21:24:34 -0500192 return -ENOMEM;
Eric Paris71314852009-12-17 21:24:23 -0500193 }
Eric Parisce8f76f2010-07-28 10:18:39 -0400194 return group->ops->handle_event(group, inode_mark, vfsmount_mark, *event);
Eric Paris71314852009-12-17 21:24:23 -0500195}
196
Eric Parisc28f7e52009-05-21 17:01:29 -0400197/*
Eric Paris90586522009-05-21 17:01:20 -0400198 * This is the main call to fsnotify. The VFS calls into hook specific functions
199 * in linux/fsnotify.h. Those functions then in turn call here. Here will call
200 * out to all of the registered fsnotify_group. Those groups can then use the
201 * notification event in whatever means they feel necessary.
202 */
Eric Parisc4ec54b2009-12-17 21:24:34 -0500203int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is,
204 const unsigned char *file_name, u32 cookie)
Eric Paris90586522009-05-21 17:01:20 -0400205{
Eric Paris84e1ab42010-08-18 12:25:50 -0400206 struct hlist_node *inode_node = NULL, *vfsmount_node = NULL;
Eric Paris613a8072010-07-28 10:18:39 -0400207 struct fsnotify_mark *inode_mark = NULL, *vfsmount_mark = NULL;
208 struct fsnotify_group *inode_group, *vfsmount_group;
Eric Paris90586522009-05-21 17:01:20 -0400209 struct fsnotify_event *event = NULL;
Al Viroc63181e2011-11-25 02:35:16 -0500210 struct mount *mnt;
Eric Parisc4ec54b2009-12-17 21:24:34 -0500211 int idx, ret = 0;
Eric Parise42e2772009-06-11 11:09:47 -0400212 /* global tests shouldn't care about events on child only the specific event */
213 __u32 test_mask = (mask & ~FS_EVENT_ON_CHILD);
Eric Paris90586522009-05-21 17:01:20 -0400214
Linus Torvalds20696012010-08-12 14:23:04 -0700215 if (data_is == FSNOTIFY_EVENT_PATH)
Al Viroc63181e2011-11-25 02:35:16 -0500216 mnt = real_mount(((struct path *)data)->mnt);
Eric Paris613a8072010-07-28 10:18:39 -0400217 else
218 mnt = NULL;
219
220 /*
221 * if this is a modify event we may need to clear the ignored masks
222 * otherwise return if neither the inode nor the vfsmount care about
223 * this type of event.
224 */
225 if (!(mask & FS_MODIFY) &&
226 !(test_mask & to_tell->i_fsnotify_mask) &&
227 !(mnt && test_mask & mnt->mnt_fsnotify_mask))
228 return 0;
Eric Paris3a9fb892009-12-17 21:24:23 -0500229
Eric Paris75c1be42010-07-28 10:18:38 -0400230 idx = srcu_read_lock(&fsnotify_mark_srcu);
Eric Paris71314852009-12-17 21:24:23 -0500231
Eric Paris613a8072010-07-28 10:18:39 -0400232 if ((mask & FS_MODIFY) ||
233 (test_mask & to_tell->i_fsnotify_mask))
Eric Parisce8f76f2010-07-28 10:18:39 -0400234 inode_node = srcu_dereference(to_tell->i_fsnotify_marks.first,
235 &fsnotify_mark_srcu);
Eric Paris75c1be42010-07-28 10:18:38 -0400236
Eric Paris84e1ab42010-08-18 12:25:50 -0400237 if (mnt && ((mask & FS_MODIFY) ||
238 (test_mask & mnt->mnt_fsnotify_mask))) {
239 vfsmount_node = srcu_dereference(mnt->mnt_fsnotify_marks.first,
240 &fsnotify_mark_srcu);
241 inode_node = srcu_dereference(to_tell->i_fsnotify_marks.first,
242 &fsnotify_mark_srcu);
Eric Paris90586522009-05-21 17:01:20 -0400243 }
Eric Paris75c1be42010-07-28 10:18:38 -0400244
Eric Paris613a8072010-07-28 10:18:39 -0400245 while (inode_node || vfsmount_node) {
Eric Parisf72adfd2010-08-27 21:24:24 -0400246 inode_group = vfsmount_group = NULL;
Eric Paris5f3f2592010-08-18 12:25:49 -0400247
Eric Paris613a8072010-07-28 10:18:39 -0400248 if (inode_node) {
249 inode_mark = hlist_entry(srcu_dereference(inode_node, &fsnotify_mark_srcu),
250 struct fsnotify_mark, i.i_list);
251 inode_group = inode_mark->group;
Eric Parisf72adfd2010-08-27 21:24:24 -0400252 }
Eric Paris75c1be42010-07-28 10:18:38 -0400253
Eric Paris613a8072010-07-28 10:18:39 -0400254 if (vfsmount_node) {
255 vfsmount_mark = hlist_entry(srcu_dereference(vfsmount_node, &fsnotify_mark_srcu),
256 struct fsnotify_mark, m.m_list);
257 vfsmount_group = vfsmount_mark->group;
Eric Parisf72adfd2010-08-27 21:24:24 -0400258 }
Eric Paris75c1be42010-07-28 10:18:38 -0400259
Eric Parisf72adfd2010-08-27 21:24:24 -0400260 if (inode_group > vfsmount_group) {
Eric Paris613a8072010-07-28 10:18:39 -0400261 /* handle inode */
Dan Carpenterfd657172012-05-29 11:02:24 -0700262 ret = send_to_group(to_tell, inode_mark, NULL, mask, data,
Eric Parisff8bcbd2010-10-28 17:21:56 -0400263 data_is, cookie, file_name, &event);
Eric Paris92b46782010-08-27 21:42:11 -0400264 /* we didn't use the vfsmount_mark */
265 vfsmount_group = NULL;
Eric Parisf72adfd2010-08-27 21:24:24 -0400266 } else if (vfsmount_group > inode_group) {
Dan Carpenterfd657172012-05-29 11:02:24 -0700267 ret = send_to_group(to_tell, NULL, vfsmount_mark, mask, data,
Eric Parisff8bcbd2010-10-28 17:21:56 -0400268 data_is, cookie, file_name, &event);
Eric Paris92b46782010-08-27 21:42:11 -0400269 inode_group = NULL;
Eric Paris613a8072010-07-28 10:18:39 -0400270 } else {
Dan Carpenterfd657172012-05-29 11:02:24 -0700271 ret = send_to_group(to_tell, inode_mark, vfsmount_mark,
Eric Parisff8bcbd2010-10-28 17:21:56 -0400272 mask, data, data_is, cookie, file_name,
273 &event);
Eric Paris71314852009-12-17 21:24:23 -0500274 }
Eric Paris613a8072010-07-28 10:18:39 -0400275
Eric Parisff8bcbd2010-10-28 17:21:56 -0400276 if (ret && (mask & ALL_FSNOTIFY_PERM_EVENTS))
277 goto out;
278
Eric Paris92b46782010-08-27 21:42:11 -0400279 if (inode_group)
Eric Parisce8f76f2010-07-28 10:18:39 -0400280 inode_node = srcu_dereference(inode_node->next,
281 &fsnotify_mark_srcu);
Eric Paris92b46782010-08-27 21:42:11 -0400282 if (vfsmount_group)
Eric Parisce8f76f2010-07-28 10:18:39 -0400283 vfsmount_node = srcu_dereference(vfsmount_node->next,
284 &fsnotify_mark_srcu);
Eric Paris71314852009-12-17 21:24:23 -0500285 }
Eric Parisff8bcbd2010-10-28 17:21:56 -0400286 ret = 0;
287out:
Eric Paris75c1be42010-07-28 10:18:38 -0400288 srcu_read_unlock(&fsnotify_mark_srcu, idx);
Eric Paris90586522009-05-21 17:01:20 -0400289 /*
290 * fsnotify_create_event() took a reference so the event can't be cleaned
291 * up while we are still trying to add it to lists, drop that one.
292 */
293 if (event)
294 fsnotify_put_event(event);
Eric Parisc4ec54b2009-12-17 21:24:34 -0500295
Jean-Christophe Dubois98b5c102010-03-23 08:08:09 +0100296 return ret;
Eric Paris90586522009-05-21 17:01:20 -0400297}
298EXPORT_SYMBOL_GPL(fsnotify);
299
300static __init int fsnotify_init(void)
301{
Eric Paris75c1be42010-07-28 10:18:38 -0400302 int ret;
303
Eric Paris20dee622010-07-28 10:18:37 -0400304 BUG_ON(hweight32(ALL_FSNOTIFY_EVENTS) != 23);
305
Eric Paris75c1be42010-07-28 10:18:38 -0400306 ret = init_srcu_struct(&fsnotify_mark_srcu);
307 if (ret)
308 panic("initializing fsnotify_mark_srcu");
309
310 return 0;
Eric Paris90586522009-05-21 17:01:20 -0400311}
Eric Paris75c1be42010-07-28 10:18:38 -0400312core_initcall(fsnotify_init);