]> Pileus Git - ~andy/linux/blob - fs/notify/dnotify/dnotify.c
fsnotify: remove .should_send_event callback
[~andy/linux] / fs / notify / dnotify / dnotify.c
1 /*
2  * Directory notifications for Linux.
3  *
4  * Copyright (C) 2000,2001,2002 Stephen Rothwell
5  *
6  * Copyright (C) 2009 Eric Paris <Red Hat Inc>
7  * dnotify was largly rewritten to use the new fsnotify infrastructure
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License as published by the
11  * Free Software Foundation; either version 2, or (at your option) any
12  * later version.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  */
19 #include <linux/fs.h>
20 #include <linux/module.h>
21 #include <linux/sched.h>
22 #include <linux/dnotify.h>
23 #include <linux/init.h>
24 #include <linux/spinlock.h>
25 #include <linux/slab.h>
26 #include <linux/fdtable.h>
27 #include <linux/fsnotify_backend.h>
28
29 int dir_notify_enable __read_mostly = 1;
30
31 static struct kmem_cache *dnotify_struct_cache __read_mostly;
32 static struct kmem_cache *dnotify_mark_cache __read_mostly;
33 static struct fsnotify_group *dnotify_group __read_mostly;
34
35 /*
36  * dnotify will attach one of these to each inode (i_fsnotify_marks) which
37  * is being watched by dnotify.  If multiple userspace applications are watching
38  * the same directory with dnotify their information is chained in dn
39  */
40 struct dnotify_mark {
41         struct fsnotify_mark fsn_mark;
42         struct dnotify_struct *dn;
43 };
44
45 /*
46  * When a process starts or stops watching an inode the set of events which
47  * dnotify cares about for that inode may change.  This function runs the
48  * list of everything receiving dnotify events about this directory and calculates
49  * the set of all those events.  After it updates what dnotify is interested in
50  * it calls the fsnotify function so it can update the set of all events relevant
51  * to this inode.
52  */
53 static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark)
54 {
55         __u32 new_mask, old_mask;
56         struct dnotify_struct *dn;
57         struct dnotify_mark *dn_mark  = container_of(fsn_mark,
58                                                      struct dnotify_mark,
59                                                      fsn_mark);
60
61         assert_spin_locked(&fsn_mark->lock);
62
63         old_mask = fsn_mark->mask;
64         new_mask = 0;
65         for (dn = dn_mark->dn; dn != NULL; dn = dn->dn_next)
66                 new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT);
67         fsnotify_set_mark_mask_locked(fsn_mark, new_mask);
68
69         if (old_mask == new_mask)
70                 return;
71
72         if (fsn_mark->i.inode)
73                 fsnotify_recalc_inode_mask(fsn_mark->i.inode);
74 }
75
76 /*
77  * Mains fsnotify call where events are delivered to dnotify.
78  * Find the dnotify mark on the relevant inode, run the list of dnotify structs
79  * on that mark and determine which of them has expressed interest in receiving
80  * events of this type.  When found send the correct process and signal and
81  * destroy the dnotify struct if it was not registered to receive multiple
82  * events.
83  */
84 static int dnotify_handle_event(struct fsnotify_group *group,
85                                 struct inode *inode,
86                                 struct fsnotify_mark *inode_mark,
87                                 struct fsnotify_mark *vfsmount_mark,
88                                 u32 mask, void *data, int data_type,
89                                 const unsigned char *file_name)
90 {
91         struct dnotify_mark *dn_mark;
92         struct dnotify_struct *dn;
93         struct dnotify_struct **prev;
94         struct fown_struct *fown;
95         __u32 test_mask = mask & ~FS_EVENT_ON_CHILD;
96
97         /* not a dir, dnotify doesn't care */
98         if (!S_ISDIR(inode->i_mode))
99                 return 0;
100
101         BUG_ON(vfsmount_mark);
102
103         dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark);
104
105         spin_lock(&inode_mark->lock);
106         prev = &dn_mark->dn;
107         while ((dn = *prev) != NULL) {
108                 if ((dn->dn_mask & test_mask) == 0) {
109                         prev = &dn->dn_next;
110                         continue;
111                 }
112                 fown = &dn->dn_filp->f_owner;
113                 send_sigio(fown, dn->dn_fd, POLL_MSG);
114                 if (dn->dn_mask & FS_DN_MULTISHOT)
115                         prev = &dn->dn_next;
116                 else {
117                         *prev = dn->dn_next;
118                         kmem_cache_free(dnotify_struct_cache, dn);
119                         dnotify_recalc_inode_mask(inode_mark);
120                 }
121         }
122
123         spin_unlock(&inode_mark->lock);
124
125         return 0;
126 }
127
128 static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
129 {
130         struct dnotify_mark *dn_mark = container_of(fsn_mark,
131                                                     struct dnotify_mark,
132                                                     fsn_mark);
133
134         BUG_ON(dn_mark->dn);
135
136         kmem_cache_free(dnotify_mark_cache, dn_mark);
137 }
138
139 static struct fsnotify_ops dnotify_fsnotify_ops = {
140         .handle_event = dnotify_handle_event,
141         .free_group_priv = NULL,
142         .freeing_mark = NULL,
143         .free_event = NULL,
144 };
145
146 /*
147  * Called every time a file is closed.  Looks first for a dnotify mark on the
148  * inode.  If one is found run all of the ->dn structures attached to that
149  * mark for one relevant to this process closing the file and remove that
150  * dnotify_struct.  If that was the last dnotify_struct also remove the
151  * fsnotify_mark.
152  */
153 void dnotify_flush(struct file *filp, fl_owner_t id)
154 {
155         struct fsnotify_mark *fsn_mark;
156         struct dnotify_mark *dn_mark;
157         struct dnotify_struct *dn;
158         struct dnotify_struct **prev;
159         struct inode *inode;
160
161         inode = file_inode(filp);
162         if (!S_ISDIR(inode->i_mode))
163                 return;
164
165         fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
166         if (!fsn_mark)
167                 return;
168         dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
169
170         mutex_lock(&dnotify_group->mark_mutex);
171
172         spin_lock(&fsn_mark->lock);
173         prev = &dn_mark->dn;
174         while ((dn = *prev) != NULL) {
175                 if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
176                         *prev = dn->dn_next;
177                         kmem_cache_free(dnotify_struct_cache, dn);
178                         dnotify_recalc_inode_mask(fsn_mark);
179                         break;
180                 }
181                 prev = &dn->dn_next;
182         }
183
184         spin_unlock(&fsn_mark->lock);
185
186         /* nothing else could have found us thanks to the dnotify_groups
187            mark_mutex */
188         if (dn_mark->dn == NULL)
189                 fsnotify_destroy_mark_locked(fsn_mark, dnotify_group);
190
191         mutex_unlock(&dnotify_group->mark_mutex);
192
193         fsnotify_put_mark(fsn_mark);
194 }
195
196 /* this conversion is done only at watch creation */
197 static __u32 convert_arg(unsigned long arg)
198 {
199         __u32 new_mask = FS_EVENT_ON_CHILD;
200
201         if (arg & DN_MULTISHOT)
202                 new_mask |= FS_DN_MULTISHOT;
203         if (arg & DN_DELETE)
204                 new_mask |= (FS_DELETE | FS_MOVED_FROM);
205         if (arg & DN_MODIFY)
206                 new_mask |= FS_MODIFY;
207         if (arg & DN_ACCESS)
208                 new_mask |= FS_ACCESS;
209         if (arg & DN_ATTRIB)
210                 new_mask |= FS_ATTRIB;
211         if (arg & DN_RENAME)
212                 new_mask |= FS_DN_RENAME;
213         if (arg & DN_CREATE)
214                 new_mask |= (FS_CREATE | FS_MOVED_TO);
215
216         return new_mask;
217 }
218
219 /*
220  * If multiple processes watch the same inode with dnotify there is only one
221  * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
222  * onto that mark.  This function either attaches the new dnotify_struct onto
223  * that list, or it |= the mask onto an existing dnofiy_struct.
224  */
225 static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
226                      fl_owner_t id, int fd, struct file *filp, __u32 mask)
227 {
228         struct dnotify_struct *odn;
229
230         odn = dn_mark->dn;
231         while (odn != NULL) {
232                 /* adding more events to existing dnofiy_struct? */
233                 if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
234                         odn->dn_fd = fd;
235                         odn->dn_mask |= mask;
236                         return -EEXIST;
237                 }
238                 odn = odn->dn_next;
239         }
240
241         dn->dn_mask = mask;
242         dn->dn_fd = fd;
243         dn->dn_filp = filp;
244         dn->dn_owner = id;
245         dn->dn_next = dn_mark->dn;
246         dn_mark->dn = dn;
247
248         return 0;
249 }
250
251 /*
252  * When a process calls fcntl to attach a dnotify watch to a directory it ends
253  * up here.  Allocate both a mark for fsnotify to add and a dnotify_struct to be
254  * attached to the fsnotify_mark.
255  */
256 int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
257 {
258         struct dnotify_mark *new_dn_mark, *dn_mark;
259         struct fsnotify_mark *new_fsn_mark, *fsn_mark;
260         struct dnotify_struct *dn;
261         struct inode *inode;
262         fl_owner_t id = current->files;
263         struct file *f;
264         int destroy = 0, error = 0;
265         __u32 mask;
266
267         /* we use these to tell if we need to kfree */
268         new_fsn_mark = NULL;
269         dn = NULL;
270
271         if (!dir_notify_enable) {
272                 error = -EINVAL;
273                 goto out_err;
274         }
275
276         /* a 0 mask means we are explicitly removing the watch */
277         if ((arg & ~DN_MULTISHOT) == 0) {
278                 dnotify_flush(filp, id);
279                 error = 0;
280                 goto out_err;
281         }
282
283         /* dnotify only works on directories */
284         inode = file_inode(filp);
285         if (!S_ISDIR(inode->i_mode)) {
286                 error = -ENOTDIR;
287                 goto out_err;
288         }
289
290         /* expect most fcntl to add new rather than augment old */
291         dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
292         if (!dn) {
293                 error = -ENOMEM;
294                 goto out_err;
295         }
296
297         /* new fsnotify mark, we expect most fcntl calls to add a new mark */
298         new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
299         if (!new_dn_mark) {
300                 error = -ENOMEM;
301                 goto out_err;
302         }
303
304         /* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */
305         mask = convert_arg(arg);
306
307         /* set up the new_fsn_mark and new_dn_mark */
308         new_fsn_mark = &new_dn_mark->fsn_mark;
309         fsnotify_init_mark(new_fsn_mark, dnotify_free_mark);
310         new_fsn_mark->mask = mask;
311         new_dn_mark->dn = NULL;
312
313         /* this is needed to prevent the fcntl/close race described below */
314         mutex_lock(&dnotify_group->mark_mutex);
315
316         /* add the new_fsn_mark or find an old one. */
317         fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
318         if (fsn_mark) {
319                 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
320                 spin_lock(&fsn_mark->lock);
321         } else {
322                 fsnotify_add_mark_locked(new_fsn_mark, dnotify_group, inode,
323                                          NULL, 0);
324                 spin_lock(&new_fsn_mark->lock);
325                 fsn_mark = new_fsn_mark;
326                 dn_mark = new_dn_mark;
327                 /* we used new_fsn_mark, so don't free it */
328                 new_fsn_mark = NULL;
329         }
330
331         rcu_read_lock();
332         f = fcheck(fd);
333         rcu_read_unlock();
334
335         /* if (f != filp) means that we lost a race and another task/thread
336          * actually closed the fd we are still playing with before we grabbed
337          * the dnotify_groups mark_mutex and fsn_mark->lock.  Since closing the
338          * fd is the only time we clean up the marks we need to get our mark
339          * off the list. */
340         if (f != filp) {
341                 /* if we added ourselves, shoot ourselves, it's possible that
342                  * the flush actually did shoot this fsn_mark.  That's fine too
343                  * since multiple calls to destroy_mark is perfectly safe, if
344                  * we found a dn_mark already attached to the inode, just sod
345                  * off silently as the flush at close time dealt with it.
346                  */
347                 if (dn_mark == new_dn_mark)
348                         destroy = 1;
349                 goto out;
350         }
351
352         error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
353         if (error) {
354                 /* if we added, we must shoot */
355                 if (dn_mark == new_dn_mark)
356                         destroy = 1;
357                 goto out;
358         }
359
360         error = attach_dn(dn, dn_mark, id, fd, filp, mask);
361         /* !error means that we attached the dn to the dn_mark, so don't free it */
362         if (!error)
363                 dn = NULL;
364         /* -EEXIST means that we didn't add this new dn and used an old one.
365          * that isn't an error (and the unused dn should be freed) */
366         else if (error == -EEXIST)
367                 error = 0;
368
369         dnotify_recalc_inode_mask(fsn_mark);
370 out:
371         spin_unlock(&fsn_mark->lock);
372
373         if (destroy)
374                 fsnotify_destroy_mark_locked(fsn_mark, dnotify_group);
375
376         mutex_unlock(&dnotify_group->mark_mutex);
377         fsnotify_put_mark(fsn_mark);
378 out_err:
379         if (new_fsn_mark)
380                 fsnotify_put_mark(new_fsn_mark);
381         if (dn)
382                 kmem_cache_free(dnotify_struct_cache, dn);
383         return error;
384 }
385
386 static int __init dnotify_init(void)
387 {
388         dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
389         dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
390
391         dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
392         if (IS_ERR(dnotify_group))
393                 panic("unable to allocate fsnotify group for dnotify\n");
394         return 0;
395 }
396
397 module_init(dnotify_init)