The discovered bit in PGCCSR register indicates if the device has been
[linux-2.6/next.git] / fs / notify / dnotify / dnotify.c
blob89ec7e0c15bc323eda0145fbe625521530d131d2
1 /*
2 * Directory notifications for Linux.
4 * Copyright (C) 2000,2001,2002 Stephen Rothwell
6 * Copyright (C) 2009 Eric Paris <Red Hat Inc>
7 * dnotify was largly rewritten to use the new fsnotify infrastructure
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.
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.
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>
29 int dir_notify_enable __read_mostly = 1;
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;
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
40 struct dnotify_mark {
41 struct fsnotify_mark fsn_mark;
42 struct dnotify_struct *dn;
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.
53 static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark)
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);
61 assert_spin_locked(&fsn_mark->lock);
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);
69 if (old_mask == new_mask)
70 return;
72 if (fsn_mark->i.inode)
73 fsnotify_recalc_inode_mask(fsn_mark->i.inode);
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.
84 static int dnotify_handle_event(struct fsnotify_group *group,
85 struct fsnotify_mark *inode_mark,
86 struct fsnotify_mark *vfsmount_mark,
87 struct fsnotify_event *event)
89 struct dnotify_mark *dn_mark;
90 struct inode *to_tell;
91 struct dnotify_struct *dn;
92 struct dnotify_struct **prev;
93 struct fown_struct *fown;
94 __u32 test_mask = event->mask & ~FS_EVENT_ON_CHILD;
96 BUG_ON(vfsmount_mark);
98 to_tell = event->to_tell;
100 dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark);
102 spin_lock(&inode_mark->lock);
103 prev = &dn_mark->dn;
104 while ((dn = *prev) != NULL) {
105 if ((dn->dn_mask & test_mask) == 0) {
106 prev = &dn->dn_next;
107 continue;
109 fown = &dn->dn_filp->f_owner;
110 send_sigio(fown, dn->dn_fd, POLL_MSG);
111 if (dn->dn_mask & FS_DN_MULTISHOT)
112 prev = &dn->dn_next;
113 else {
114 *prev = dn->dn_next;
115 kmem_cache_free(dnotify_struct_cache, dn);
116 dnotify_recalc_inode_mask(inode_mark);
120 spin_unlock(&inode_mark->lock);
122 return 0;
126 * Given an inode and mask determine if dnotify would be interested in sending
127 * userspace notification for that pair.
129 static bool dnotify_should_send_event(struct fsnotify_group *group,
130 struct inode *inode,
131 struct fsnotify_mark *inode_mark,
132 struct fsnotify_mark *vfsmount_mark,
133 __u32 mask, void *data, int data_type)
135 /* not a dir, dnotify doesn't care */
136 if (!S_ISDIR(inode->i_mode))
137 return false;
139 return true;
142 static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
144 struct dnotify_mark *dn_mark = container_of(fsn_mark,
145 struct dnotify_mark,
146 fsn_mark);
148 BUG_ON(dn_mark->dn);
150 kmem_cache_free(dnotify_mark_cache, dn_mark);
153 static struct fsnotify_ops dnotify_fsnotify_ops = {
154 .handle_event = dnotify_handle_event,
155 .should_send_event = dnotify_should_send_event,
156 .free_group_priv = NULL,
157 .freeing_mark = NULL,
158 .free_event_priv = NULL,
162 * Called every time a file is closed. Looks first for a dnotify mark on the
163 * inode. If one is found run all of the ->dn structures attached to that
164 * mark for one relevant to this process closing the file and remove that
165 * dnotify_struct. If that was the last dnotify_struct also remove the
166 * fsnotify_mark.
168 void dnotify_flush(struct file *filp, fl_owner_t id)
170 struct fsnotify_mark *fsn_mark;
171 struct dnotify_mark *dn_mark;
172 struct dnotify_struct *dn;
173 struct dnotify_struct **prev;
174 struct inode *inode;
176 inode = filp->f_path.dentry->d_inode;
177 if (!S_ISDIR(inode->i_mode))
178 return;
180 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
181 if (!fsn_mark)
182 return;
183 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
185 mutex_lock(&dnotify_group->mutex);
187 spin_lock(&fsn_mark->lock);
188 prev = &dn_mark->dn;
189 while ((dn = *prev) != NULL) {
190 if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
191 *prev = dn->dn_next;
192 kmem_cache_free(dnotify_struct_cache, dn);
193 dnotify_recalc_inode_mask(fsn_mark);
194 break;
196 prev = &dn->dn_next;
199 spin_unlock(&fsn_mark->lock);
201 /* nothing else could have found us thanks to the dnotify_group mutex */
202 if (dn_mark->dn == NULL)
203 fsnotify_destroy_mark(fsn_mark);
205 mutex_unlock(&dnotify_group->mutex);
207 fsnotify_put_mark(fsn_mark);
210 /* this conversion is done only at watch creation */
211 static __u32 convert_arg(unsigned long arg)
213 __u32 new_mask = FS_EVENT_ON_CHILD;
215 if (arg & DN_MULTISHOT)
216 new_mask |= FS_DN_MULTISHOT;
217 if (arg & DN_DELETE)
218 new_mask |= (FS_DELETE | FS_MOVED_FROM);
219 if (arg & DN_MODIFY)
220 new_mask |= FS_MODIFY;
221 if (arg & DN_ACCESS)
222 new_mask |= FS_ACCESS;
223 if (arg & DN_ATTRIB)
224 new_mask |= FS_ATTRIB;
225 if (arg & DN_RENAME)
226 new_mask |= FS_DN_RENAME;
227 if (arg & DN_CREATE)
228 new_mask |= (FS_CREATE | FS_MOVED_TO);
230 return new_mask;
234 * If multiple processes watch the same inode with dnotify there is only one
235 * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
236 * onto that mark. This function either attaches the new dnotify_struct onto
237 * that list, or it |= the mask onto an existing dnofiy_struct.
239 static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
240 fl_owner_t id, int fd, struct file *filp, __u32 mask)
242 struct dnotify_struct *odn;
244 odn = dn_mark->dn;
245 while (odn != NULL) {
246 /* adding more events to existing dnofiy_struct? */
247 if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
248 odn->dn_fd = fd;
249 odn->dn_mask |= mask;
250 return -EEXIST;
252 odn = odn->dn_next;
255 dn->dn_mask = mask;
256 dn->dn_fd = fd;
257 dn->dn_filp = filp;
258 dn->dn_owner = id;
259 dn->dn_next = dn_mark->dn;
260 dn_mark->dn = dn;
262 return 0;
266 * When a process calls fcntl to attach a dnotify watch to a directory it ends
267 * up here. Allocate both a mark for fsnotify to add and a dnotify_struct to be
268 * attached to the fsnotify_mark.
270 int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
272 struct dnotify_mark *new_dn_mark, *dn_mark;
273 struct fsnotify_mark *new_fsn_mark, *fsn_mark;
274 struct dnotify_struct *dn;
275 struct inode *inode;
276 fl_owner_t id = current->files;
277 struct file *f;
278 int destroy = 0, error = 0;
279 __u32 mask;
281 /* we use these to tell if we need to kfree */
282 new_fsn_mark = NULL;
283 dn = NULL;
285 if (!dir_notify_enable) {
286 error = -EINVAL;
287 goto out_err;
290 /* a 0 mask means we are explicitly removing the watch */
291 if ((arg & ~DN_MULTISHOT) == 0) {
292 dnotify_flush(filp, id);
293 error = 0;
294 goto out_err;
297 /* dnotify only works on directories */
298 inode = filp->f_path.dentry->d_inode;
299 if (!S_ISDIR(inode->i_mode)) {
300 error = -ENOTDIR;
301 goto out_err;
304 /* expect most fcntl to add new rather than augment old */
305 dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
306 if (!dn) {
307 error = -ENOMEM;
308 goto out_err;
311 /* new fsnotify mark, we expect most fcntl calls to add a new mark */
312 new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
313 if (!new_dn_mark) {
314 error = -ENOMEM;
315 goto out_err;
318 /* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */
319 mask = convert_arg(arg);
321 /* set up the new_fsn_mark and new_dn_mark */
322 new_fsn_mark = &new_dn_mark->fsn_mark;
323 fsnotify_init_mark(new_fsn_mark, dnotify_free_mark);
324 new_fsn_mark->mask = mask;
325 new_dn_mark->dn = NULL;
327 /* this is needed to prevent the fcntl/close race described below */
328 mutex_lock(&dnotify_group->mutex);
330 /* add the new_fsn_mark or find an old one. */
331 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
332 if (fsn_mark) {
333 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
334 spin_lock(&fsn_mark->lock);
335 } else {
336 fsnotify_add_mark(new_fsn_mark, dnotify_group, inode, NULL, 0);
337 spin_lock(&new_fsn_mark->lock);
338 fsn_mark = new_fsn_mark;
339 dn_mark = new_dn_mark;
340 /* we used new_fsn_mark, so don't free it */
341 new_fsn_mark = NULL;
344 rcu_read_lock();
345 f = fcheck(fd);
346 rcu_read_unlock();
348 /* if (f != filp) means that we lost a race and another task/thread
349 * actually closed the fd we are still playing with before we grabbed
350 * the dnotify_group mutex and fsn_mark->lock. Since closing the fd is
351 * the only time we clean up the marks we need to get our mark off
352 * the list. */
353 if (f != filp) {
354 /* if we added ourselves, shoot ourselves, it's possible that
355 * the flush actually did shoot this fsn_mark. That's fine too
356 * since multiple calls to destroy_mark is perfectly safe, if
357 * we found a dn_mark already attached to the inode, just sod
358 * off silently as the flush at close time dealt with it.
360 if (dn_mark == new_dn_mark)
361 destroy = 1;
362 goto out;
365 error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
366 if (error) {
367 /* if we added, we must shoot */
368 if (dn_mark == new_dn_mark)
369 destroy = 1;
370 goto out;
373 error = attach_dn(dn, dn_mark, id, fd, filp, mask);
374 /* !error means that we attached the dn to the dn_mark, so don't free it */
375 if (!error)
376 dn = NULL;
377 /* -EEXIST means that we didn't add this new dn and used an old one.
378 * that isn't an error (and the unused dn should be freed) */
379 else if (error == -EEXIST)
380 error = 0;
382 dnotify_recalc_inode_mask(fsn_mark);
383 out:
384 spin_unlock(&fsn_mark->lock);
386 if (destroy)
387 fsnotify_destroy_mark(fsn_mark);
389 mutex_unlock(&dnotify_group->mutex);
390 fsnotify_put_mark(fsn_mark);
391 out_err:
392 if (new_fsn_mark)
393 fsnotify_put_mark(new_fsn_mark);
394 if (dn)
395 kmem_cache_free(dnotify_struct_cache, dn);
396 return error;
399 static int __init dnotify_init(void)
401 dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
402 dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
404 dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
405 if (IS_ERR(dnotify_group))
406 panic("unable to allocate fsnotify group for dnotify\n");
407 return 0;
410 module_init(dnotify_init)