]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/notify/dnotify/dnotify.c
41b2a070761c9d60be7a466f30d3342b355160b6
[karo-tx-linux.git] / 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         fsnotify_recalc_mask(fsn_mark->connector);
73 }
74
75 /*
76  * Mains fsnotify call where events are delivered to dnotify.
77  * Find the dnotify mark on the relevant inode, run the list of dnotify structs
78  * on that mark and determine which of them has expressed interest in receiving
79  * events of this type.  When found send the correct process and signal and
80  * destroy the dnotify struct if it was not registered to receive multiple
81  * events.
82  */
83 static int dnotify_handle_event(struct fsnotify_group *group,
84                                 struct inode *inode,
85                                 struct fsnotify_mark *inode_mark,
86                                 struct fsnotify_mark *vfsmount_mark,
87                                 u32 mask, const void *data, int data_type,
88                                 const unsigned char *file_name, u32 cookie)
89 {
90         struct dnotify_mark *dn_mark;
91         struct dnotify_struct *dn;
92         struct dnotify_struct **prev;
93         struct fown_struct *fown;
94         __u32 test_mask = mask & ~FS_EVENT_ON_CHILD;
95
96         /* not a dir, dnotify doesn't care */
97         if (!S_ISDIR(inode->i_mode))
98                 return 0;
99
100         BUG_ON(vfsmount_mark);
101
102         dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark);
103
104         spin_lock(&inode_mark->lock);
105         prev = &dn_mark->dn;
106         while ((dn = *prev) != NULL) {
107                 if ((dn->dn_mask & test_mask) == 0) {
108                         prev = &dn->dn_next;
109                         continue;
110                 }
111                 fown = &dn->dn_filp->f_owner;
112                 send_sigio(fown, dn->dn_fd, POLL_MSG);
113                 if (dn->dn_mask & FS_DN_MULTISHOT)
114                         prev = &dn->dn_next;
115                 else {
116                         *prev = dn->dn_next;
117                         kmem_cache_free(dnotify_struct_cache, dn);
118                         dnotify_recalc_inode_mask(inode_mark);
119                 }
120         }
121
122         spin_unlock(&inode_mark->lock);
123
124         return 0;
125 }
126
127 static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
128 {
129         struct dnotify_mark *dn_mark = container_of(fsn_mark,
130                                                     struct dnotify_mark,
131                                                     fsn_mark);
132
133         BUG_ON(dn_mark->dn);
134
135         kmem_cache_free(dnotify_mark_cache, dn_mark);
136 }
137
138 static struct fsnotify_ops dnotify_fsnotify_ops = {
139         .handle_event = dnotify_handle_event,
140 };
141
142 /*
143  * Called every time a file is closed.  Looks first for a dnotify mark on the
144  * inode.  If one is found run all of the ->dn structures attached to that
145  * mark for one relevant to this process closing the file and remove that
146  * dnotify_struct.  If that was the last dnotify_struct also remove the
147  * fsnotify_mark.
148  */
149 void dnotify_flush(struct file *filp, fl_owner_t id)
150 {
151         struct fsnotify_mark *fsn_mark;
152         struct dnotify_mark *dn_mark;
153         struct dnotify_struct *dn;
154         struct dnotify_struct **prev;
155         struct inode *inode;
156         bool free = false;
157
158         inode = file_inode(filp);
159         if (!S_ISDIR(inode->i_mode))
160                 return;
161
162         fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
163         if (!fsn_mark)
164                 return;
165         dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
166
167         mutex_lock(&dnotify_group->mark_mutex);
168
169         spin_lock(&fsn_mark->lock);
170         prev = &dn_mark->dn;
171         while ((dn = *prev) != NULL) {
172                 if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
173                         *prev = dn->dn_next;
174                         kmem_cache_free(dnotify_struct_cache, dn);
175                         dnotify_recalc_inode_mask(fsn_mark);
176                         break;
177                 }
178                 prev = &dn->dn_next;
179         }
180
181         spin_unlock(&fsn_mark->lock);
182
183         /* nothing else could have found us thanks to the dnotify_groups
184            mark_mutex */
185         if (dn_mark->dn == NULL) {
186                 fsnotify_detach_mark(fsn_mark);
187                 free = true;
188         }
189
190         mutex_unlock(&dnotify_group->mark_mutex);
191
192         if (free)
193                 fsnotify_free_mark(fsn_mark);
194         fsnotify_put_mark(fsn_mark);
195 }
196
197 /* this conversion is done only at watch creation */
198 static __u32 convert_arg(unsigned long arg)
199 {
200         __u32 new_mask = FS_EVENT_ON_CHILD;
201
202         if (arg & DN_MULTISHOT)
203                 new_mask |= FS_DN_MULTISHOT;
204         if (arg & DN_DELETE)
205                 new_mask |= (FS_DELETE | FS_MOVED_FROM);
206         if (arg & DN_MODIFY)
207                 new_mask |= FS_MODIFY;
208         if (arg & DN_ACCESS)
209                 new_mask |= FS_ACCESS;
210         if (arg & DN_ATTRIB)
211                 new_mask |= FS_ATTRIB;
212         if (arg & DN_RENAME)
213                 new_mask |= FS_DN_RENAME;
214         if (arg & DN_CREATE)
215                 new_mask |= (FS_CREATE | FS_MOVED_TO);
216
217         return new_mask;
218 }
219
220 /*
221  * If multiple processes watch the same inode with dnotify there is only one
222  * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
223  * onto that mark.  This function either attaches the new dnotify_struct onto
224  * that list, or it |= the mask onto an existing dnofiy_struct.
225  */
226 static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
227                      fl_owner_t id, int fd, struct file *filp, __u32 mask)
228 {
229         struct dnotify_struct *odn;
230
231         odn = dn_mark->dn;
232         while (odn != NULL) {
233                 /* adding more events to existing dnofiy_struct? */
234                 if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
235                         odn->dn_fd = fd;
236                         odn->dn_mask |= mask;
237                         return -EEXIST;
238                 }
239                 odn = odn->dn_next;
240         }
241
242         dn->dn_mask = mask;
243         dn->dn_fd = fd;
244         dn->dn_filp = filp;
245         dn->dn_owner = id;
246         dn->dn_next = dn_mark->dn;
247         dn_mark->dn = dn;
248
249         return 0;
250 }
251
252 /*
253  * When a process calls fcntl to attach a dnotify watch to a directory it ends
254  * up here.  Allocate both a mark for fsnotify to add and a dnotify_struct to be
255  * attached to the fsnotify_mark.
256  */
257 int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
258 {
259         struct dnotify_mark *new_dn_mark, *dn_mark;
260         struct fsnotify_mark *new_fsn_mark, *fsn_mark;
261         struct dnotify_struct *dn;
262         struct inode *inode;
263         fl_owner_t id = current->files;
264         struct file *f;
265         int destroy = 0, error = 0;
266         __u32 mask;
267
268         /* we use these to tell if we need to kfree */
269         new_fsn_mark = NULL;
270         dn = NULL;
271
272         if (!dir_notify_enable) {
273                 error = -EINVAL;
274                 goto out_err;
275         }
276
277         /* a 0 mask means we are explicitly removing the watch */
278         if ((arg & ~DN_MULTISHOT) == 0) {
279                 dnotify_flush(filp, id);
280                 error = 0;
281                 goto out_err;
282         }
283
284         /* dnotify only works on directories */
285         inode = file_inode(filp);
286         if (!S_ISDIR(inode->i_mode)) {
287                 error = -ENOTDIR;
288                 goto out_err;
289         }
290
291         /* expect most fcntl to add new rather than augment old */
292         dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
293         if (!dn) {
294                 error = -ENOMEM;
295                 goto out_err;
296         }
297
298         /* new fsnotify mark, we expect most fcntl calls to add a new mark */
299         new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
300         if (!new_dn_mark) {
301                 error = -ENOMEM;
302                 goto out_err;
303         }
304
305         /* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */
306         mask = convert_arg(arg);
307
308         /* set up the new_fsn_mark and new_dn_mark */
309         new_fsn_mark = &new_dn_mark->fsn_mark;
310         fsnotify_init_mark(new_fsn_mark, dnotify_free_mark);
311         new_fsn_mark->mask = mask;
312         new_dn_mark->dn = NULL;
313
314         /* this is needed to prevent the fcntl/close race described below */
315         mutex_lock(&dnotify_group->mark_mutex);
316
317         /* add the new_fsn_mark or find an old one. */
318         fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
319         if (fsn_mark) {
320                 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
321                 spin_lock(&fsn_mark->lock);
322         } else {
323                 fsnotify_add_mark_locked(new_fsn_mark, dnotify_group, inode,
324                                          NULL, 0);
325                 spin_lock(&new_fsn_mark->lock);
326                 fsn_mark = new_fsn_mark;
327                 dn_mark = new_dn_mark;
328                 /* we used new_fsn_mark, so don't free it */
329                 new_fsn_mark = NULL;
330         }
331
332         rcu_read_lock();
333         f = fcheck(fd);
334         rcu_read_unlock();
335
336         /* if (f != filp) means that we lost a race and another task/thread
337          * actually closed the fd we are still playing with before we grabbed
338          * the dnotify_groups mark_mutex and fsn_mark->lock.  Since closing the
339          * fd is the only time we clean up the marks we need to get our mark
340          * off the list. */
341         if (f != filp) {
342                 /* if we added ourselves, shoot ourselves, it's possible that
343                  * the flush actually did shoot this fsn_mark.  That's fine too
344                  * since multiple calls to destroy_mark is perfectly safe, if
345                  * we found a dn_mark already attached to the inode, just sod
346                  * off silently as the flush at close time dealt with it.
347                  */
348                 if (dn_mark == new_dn_mark)
349                         destroy = 1;
350                 goto out;
351         }
352
353         __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
354
355         error = attach_dn(dn, dn_mark, id, fd, filp, mask);
356         /* !error means that we attached the dn to the dn_mark, so don't free it */
357         if (!error)
358                 dn = NULL;
359         /* -EEXIST means that we didn't add this new dn and used an old one.
360          * that isn't an error (and the unused dn should be freed) */
361         else if (error == -EEXIST)
362                 error = 0;
363
364         dnotify_recalc_inode_mask(fsn_mark);
365 out:
366         spin_unlock(&fsn_mark->lock);
367
368         if (destroy)
369                 fsnotify_detach_mark(fsn_mark);
370         mutex_unlock(&dnotify_group->mark_mutex);
371         if (destroy)
372                 fsnotify_free_mark(fsn_mark);
373         fsnotify_put_mark(fsn_mark);
374 out_err:
375         if (new_fsn_mark)
376                 fsnotify_put_mark(new_fsn_mark);
377         if (dn)
378                 kmem_cache_free(dnotify_struct_cache, dn);
379         return error;
380 }
381
382 static int __init dnotify_init(void)
383 {
384         dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
385         dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
386
387         dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
388         if (IS_ERR(dnotify_group))
389                 panic("unable to allocate fsnotify group for dnotify\n");
390         return 0;
391 }
392
393 module_init(dnotify_init)