blob: 2cae9be120db2c8d6360a81bb63c83f7b425b9ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Directory notifications for Linux.
3 *
4 * Copyright (C) 2000,2001,2002 Stephen Rothwell
5 *
Eric Paris3c5119c2009-05-21 17:01:33 -04006 * Copyright (C) 2009 Eric Paris <Red Hat Inc>
7 * dnotify was largly rewritten to use the new fsnotify infrastructure
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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>
Al Viro9f3acc32008-04-24 07:44:08 -040026#include <linux/fdtable.h>
Eric Paris3c5119c2009-05-21 17:01:33 -040027#include <linux/fsnotify_backend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Eric Dumazetfa3536c2006-03-26 01:37:24 -080029int dir_notify_enable __read_mostly = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Eric Paris3c5119c2009-05-21 17:01:33 -040031static struct kmem_cache *dnotify_struct_cache __read_mostly;
Eric Parisef5e2b72009-12-17 21:24:24 -050032static struct kmem_cache *dnotify_mark_cache __read_mostly;
Eric Paris3c5119c2009-05-21 17:01:33 -040033static struct fsnotify_group *dnotify_group __read_mostly;
34static DEFINE_MUTEX(dnotify_mark_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Eric Paris3c5119c2009-05-21 17:01:33 -040036/*
Eric Parise61ce862009-12-17 21:24:24 -050037 * dnotify will attach one of these to each inode (i_fsnotify_marks) which
Eric Paris3c5119c2009-05-21 17:01:33 -040038 * is being watched by dnotify. If multiple userspace applications are watching
39 * the same directory with dnotify their information is chained in dn
40 */
Eric Parisef5e2b72009-12-17 21:24:24 -050041struct dnotify_mark {
42 struct fsnotify_mark fsn_mark;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct dnotify_struct *dn;
Eric Paris3c5119c2009-05-21 17:01:33 -040044};
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Eric Paris3c5119c2009-05-21 17:01:33 -040046/*
47 * When a process starts or stops watching an inode the set of events which
48 * dnotify cares about for that inode may change. This function runs the
49 * list of everything receiving dnotify events about this directory and calculates
50 * the set of all those events. After it updates what dnotify is interested in
51 * it calls the fsnotify function so it can update the set of all events relevant
52 * to this inode.
53 */
Eric Parisef5e2b72009-12-17 21:24:24 -050054static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -040055{
56 __u32 new_mask, old_mask;
57 struct dnotify_struct *dn;
Eric Parisef5e2b72009-12-17 21:24:24 -050058 struct dnotify_mark *dn_mark = container_of(fsn_mark,
59 struct dnotify_mark,
60 fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -040061
Eric Parisef5e2b72009-12-17 21:24:24 -050062 assert_spin_locked(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -040063
Eric Parisef5e2b72009-12-17 21:24:24 -050064 old_mask = fsn_mark->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 new_mask = 0;
Eric Parisef5e2b72009-12-17 21:24:24 -050066 for (dn = dn_mark->dn; dn != NULL; dn = dn->dn_next)
Eric Paris3c5119c2009-05-21 17:01:33 -040067 new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT);
Eric Paris90b1e7a2009-12-17 21:24:33 -050068 fsnotify_set_mark_mask_locked(fsn_mark, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric Paris3c5119c2009-05-21 17:01:33 -040070 if (old_mask == new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return;
Eric Paris3c5119c2009-05-21 17:01:33 -040072
Eric Parisef5e2b72009-12-17 21:24:24 -050073 if (fsn_mark->i.inode)
74 fsnotify_recalc_inode_mask(fsn_mark->i.inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
Eric Paris3c5119c2009-05-21 17:01:33 -040077/*
78 * Mains fsnotify call where events are delivered to dnotify.
79 * Find the dnotify mark on the relevant inode, run the list of dnotify structs
80 * on that mark and determine which of them has expressed interest in receiving
81 * events of this type. When found send the correct process and signal and
82 * destroy the dnotify struct if it was not registered to receive multiple
83 * events.
84 */
85static int dnotify_handle_event(struct fsnotify_group *group,
Eric Paris3a9b16b2010-07-28 10:18:38 -040086 struct fsnotify_mark *mark,
Eric Paris3c5119c2009-05-21 17:01:33 -040087 struct fsnotify_event *event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Eric Parisef5e2b72009-12-17 21:24:24 -050089 struct fsnotify_mark *fsn_mark = NULL;
90 struct dnotify_mark *dn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -040091 struct inode *to_tell;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct dnotify_struct *dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct dnotify_struct **prev;
Eric Paris3c5119c2009-05-21 17:01:33 -040094 struct fown_struct *fown;
Andreas Gruenbacher94552682009-10-15 00:13:23 +020095 __u32 test_mask = event->mask & ~FS_EVENT_ON_CHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Eric Paris3c5119c2009-05-21 17:01:33 -040097 to_tell = event->to_tell;
98
Eric Paris5444e292009-12-17 21:24:27 -050099 fsn_mark = fsnotify_find_inode_mark(group, to_tell);
Eric Parisef5e2b72009-12-17 21:24:24 -0500100 if (unlikely(!fsn_mark))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 0;
Eric Parisef5e2b72009-12-17 21:24:24 -0500102 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Eric Parisef5e2b72009-12-17 21:24:24 -0500104 spin_lock(&fsn_mark->lock);
105 prev = &dn_mark->dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 while ((dn = *prev) != NULL) {
Andreas Gruenbacher94552682009-10-15 00:13:23 +0200107 if ((dn->dn_mask & test_mask) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 prev = &dn->dn_next;
109 continue;
110 }
111 fown = &dn->dn_filp->f_owner;
112 send_sigio(fown, dn->dn_fd, POLL_MSG);
Eric Paris3c5119c2009-05-21 17:01:33 -0400113 if (dn->dn_mask & FS_DN_MULTISHOT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 prev = &dn->dn_next;
115 else {
116 *prev = dn->dn_next;
Eric Paris3c5119c2009-05-21 17:01:33 -0400117 kmem_cache_free(dnotify_struct_cache, dn);
Eric Parisef5e2b72009-12-17 21:24:24 -0500118 dnotify_recalc_inode_mask(fsn_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Eric Parisef5e2b72009-12-17 21:24:24 -0500122 spin_unlock(&fsn_mark->lock);
123 fsnotify_put_mark(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400124
125 return 0;
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128/*
Eric Paris3c5119c2009-05-21 17:01:33 -0400129 * Given an inode and mask determine if dnotify would be interested in sending
130 * userspace notification for that pair.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 */
Eric Paris3c5119c2009-05-21 17:01:33 -0400132static bool dnotify_should_send_event(struct fsnotify_group *group,
Eric Paris3a9fb892009-12-17 21:24:23 -0500133 struct inode *inode, struct vfsmount *mnt,
Eric Paris3a9b16b2010-07-28 10:18:38 -0400134 struct fsnotify_mark *mark, __u32 mask,
135 void *data, int data_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
Eric Parisef5e2b72009-12-17 21:24:24 -0500137 struct fsnotify_mark *fsn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -0400138 bool send;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Eric Paris3c5119c2009-05-21 17:01:33 -0400140 /* !dir_notify_enable should never get here, don't waste time checking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (!dir_notify_enable)
Eric Paris3c5119c2009-05-21 17:01:33 -0400142 return 0; */
143
144 /* not a dir, dnotify doesn't care */
145 if (!S_ISDIR(inode->i_mode))
146 return false;
147
Eric Paris5444e292009-12-17 21:24:27 -0500148 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Parisef5e2b72009-12-17 21:24:24 -0500149 if (!fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400150 return false;
151
Eric Parise42e2772009-06-11 11:09:47 -0400152 mask = (mask & ~FS_EVENT_ON_CHILD);
Eric Parisef5e2b72009-12-17 21:24:24 -0500153 send = (mask & fsn_mark->mask);
Eric Parisce618562009-06-11 11:09:47 -0400154
Eric Paris5444e292009-12-17 21:24:27 -0500155 fsnotify_put_mark(fsn_mark); /* matches fsnotify_find_inode_mark */
Eric Paris3c5119c2009-05-21 17:01:33 -0400156
157 return send;
158}
159
Eric Parisef5e2b72009-12-17 21:24:24 -0500160static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400161{
Eric Parisef5e2b72009-12-17 21:24:24 -0500162 struct dnotify_mark *dn_mark = container_of(fsn_mark,
163 struct dnotify_mark,
164 fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400165
Eric Parisef5e2b72009-12-17 21:24:24 -0500166 BUG_ON(dn_mark->dn);
Eric Paris3c5119c2009-05-21 17:01:33 -0400167
Eric Parisef5e2b72009-12-17 21:24:24 -0500168 kmem_cache_free(dnotify_mark_cache, dn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400169}
170
171static struct fsnotify_ops dnotify_fsnotify_ops = {
172 .handle_event = dnotify_handle_event,
173 .should_send_event = dnotify_should_send_event,
174 .free_group_priv = NULL,
Eric Parisa092ee22009-06-11 11:09:48 -0400175 .freeing_mark = NULL,
Eric Parise4aff112009-05-21 17:01:50 -0400176 .free_event_priv = NULL,
Eric Paris3c5119c2009-05-21 17:01:33 -0400177};
178
179/*
180 * Called every time a file is closed. Looks first for a dnotify mark on the
Eric Parise61ce862009-12-17 21:24:24 -0500181 * inode. If one is found run all of the ->dn structures attached to that
Eric Paris3c5119c2009-05-21 17:01:33 -0400182 * mark for one relevant to this process closing the file and remove that
183 * dnotify_struct. If that was the last dnotify_struct also remove the
Eric Parise61ce862009-12-17 21:24:24 -0500184 * fsnotify_mark.
Eric Paris3c5119c2009-05-21 17:01:33 -0400185 */
186void dnotify_flush(struct file *filp, fl_owner_t id)
187{
Eric Parisef5e2b72009-12-17 21:24:24 -0500188 struct fsnotify_mark *fsn_mark;
189 struct dnotify_mark *dn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -0400190 struct dnotify_struct *dn;
191 struct dnotify_struct **prev;
192 struct inode *inode;
193
194 inode = filp->f_path.dentry->d_inode;
195 if (!S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return;
197
Eric Paris5444e292009-12-17 21:24:27 -0500198 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
Eric Parisef5e2b72009-12-17 21:24:24 -0500199 if (!fsn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400200 return;
Eric Parisef5e2b72009-12-17 21:24:24 -0500201 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400202
203 mutex_lock(&dnotify_mark_mutex);
204
Eric Parisef5e2b72009-12-17 21:24:24 -0500205 spin_lock(&fsn_mark->lock);
206 prev = &dn_mark->dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400207 while ((dn = *prev) != NULL) {
208 if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
209 *prev = dn->dn_next;
210 kmem_cache_free(dnotify_struct_cache, dn);
Eric Parisef5e2b72009-12-17 21:24:24 -0500211 dnotify_recalc_inode_mask(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400212 break;
213 }
214 prev = &dn->dn_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
Eric Paris3c5119c2009-05-21 17:01:33 -0400216
Eric Parisef5e2b72009-12-17 21:24:24 -0500217 spin_unlock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400218
219 /* nothing else could have found us thanks to the dnotify_mark_mutex */
Eric Parisef5e2b72009-12-17 21:24:24 -0500220 if (dn_mark->dn == NULL)
221 fsnotify_destroy_mark(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400222
223 fsnotify_recalc_group_mask(dnotify_group);
224
225 mutex_unlock(&dnotify_mark_mutex);
226
Eric Parisef5e2b72009-12-17 21:24:24 -0500227 fsnotify_put_mark(fsn_mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
Eric Paris3c5119c2009-05-21 17:01:33 -0400229
230/* this conversion is done only at watch creation */
231static __u32 convert_arg(unsigned long arg)
232{
233 __u32 new_mask = FS_EVENT_ON_CHILD;
234
235 if (arg & DN_MULTISHOT)
236 new_mask |= FS_DN_MULTISHOT;
237 if (arg & DN_DELETE)
238 new_mask |= (FS_DELETE | FS_MOVED_FROM);
239 if (arg & DN_MODIFY)
240 new_mask |= FS_MODIFY;
241 if (arg & DN_ACCESS)
242 new_mask |= FS_ACCESS;
243 if (arg & DN_ATTRIB)
244 new_mask |= FS_ATTRIB;
245 if (arg & DN_RENAME)
246 new_mask |= FS_DN_RENAME;
247 if (arg & DN_CREATE)
248 new_mask |= (FS_CREATE | FS_MOVED_TO);
249
250 return new_mask;
251}
252
253/*
254 * If multiple processes watch the same inode with dnotify there is only one
Eric Parise61ce862009-12-17 21:24:24 -0500255 * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct
Eric Paris3c5119c2009-05-21 17:01:33 -0400256 * onto that mark. This function either attaches the new dnotify_struct onto
257 * that list, or it |= the mask onto an existing dnofiy_struct.
258 */
Eric Parisef5e2b72009-12-17 21:24:24 -0500259static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
Eric Paris3c5119c2009-05-21 17:01:33 -0400260 fl_owner_t id, int fd, struct file *filp, __u32 mask)
261{
262 struct dnotify_struct *odn;
263
Eric Parisef5e2b72009-12-17 21:24:24 -0500264 odn = dn_mark->dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400265 while (odn != NULL) {
266 /* adding more events to existing dnofiy_struct? */
267 if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
268 odn->dn_fd = fd;
269 odn->dn_mask |= mask;
270 return -EEXIST;
271 }
272 odn = odn->dn_next;
273 }
274
275 dn->dn_mask = mask;
276 dn->dn_fd = fd;
277 dn->dn_filp = filp;
278 dn->dn_owner = id;
Eric Parisef5e2b72009-12-17 21:24:24 -0500279 dn->dn_next = dn_mark->dn;
280 dn_mark->dn = dn;
Eric Paris3c5119c2009-05-21 17:01:33 -0400281
282 return 0;
283}
284
285/*
286 * When a process calls fcntl to attach a dnotify watch to a directory it ends
287 * up here. Allocate both a mark for fsnotify to add and a dnotify_struct to be
288 * attached to the fsnotify_mark.
289 */
290int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
291{
Eric Parisef5e2b72009-12-17 21:24:24 -0500292 struct dnotify_mark *new_dn_mark, *dn_mark;
293 struct fsnotify_mark *new_fsn_mark, *fsn_mark;
Eric Paris3c5119c2009-05-21 17:01:33 -0400294 struct dnotify_struct *dn;
295 struct inode *inode;
296 fl_owner_t id = current->files;
297 struct file *f;
298 int destroy = 0, error = 0;
299 __u32 mask;
300
301 /* we use these to tell if we need to kfree */
Eric Parisef5e2b72009-12-17 21:24:24 -0500302 new_fsn_mark = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400303 dn = NULL;
304
305 if (!dir_notify_enable) {
306 error = -EINVAL;
307 goto out_err;
308 }
309
310 /* a 0 mask means we are explicitly removing the watch */
311 if ((arg & ~DN_MULTISHOT) == 0) {
312 dnotify_flush(filp, id);
313 error = 0;
314 goto out_err;
315 }
316
317 /* dnotify only works on directories */
318 inode = filp->f_path.dentry->d_inode;
319 if (!S_ISDIR(inode->i_mode)) {
320 error = -ENOTDIR;
321 goto out_err;
322 }
323
324 /* expect most fcntl to add new rather than augment old */
325 dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
326 if (!dn) {
327 error = -ENOMEM;
328 goto out_err;
329 }
330
331 /* new fsnotify mark, we expect most fcntl calls to add a new mark */
Eric Parisef5e2b72009-12-17 21:24:24 -0500332 new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
333 if (!new_dn_mark) {
Eric Paris3c5119c2009-05-21 17:01:33 -0400334 error = -ENOMEM;
335 goto out_err;
336 }
337
338 /* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */
339 mask = convert_arg(arg);
340
Eric Parisef5e2b72009-12-17 21:24:24 -0500341 /* set up the new_fsn_mark and new_dn_mark */
342 new_fsn_mark = &new_dn_mark->fsn_mark;
343 fsnotify_init_mark(new_fsn_mark, dnotify_free_mark);
344 new_fsn_mark->mask = mask;
345 new_dn_mark->dn = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400346
347 /* this is needed to prevent the fcntl/close race described below */
348 mutex_lock(&dnotify_mark_mutex);
349
Eric Parisef5e2b72009-12-17 21:24:24 -0500350 /* add the new_fsn_mark or find an old one. */
Eric Paris5444e292009-12-17 21:24:27 -0500351 fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode);
Eric Parisef5e2b72009-12-17 21:24:24 -0500352 if (fsn_mark) {
353 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
354 spin_lock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400355 } else {
Eric Paris5444e292009-12-17 21:24:27 -0500356 fsnotify_add_mark(new_fsn_mark, dnotify_group, inode, NULL, 0);
Eric Parisef5e2b72009-12-17 21:24:24 -0500357 spin_lock(&new_fsn_mark->lock);
358 fsn_mark = new_fsn_mark;
359 dn_mark = new_dn_mark;
360 /* we used new_fsn_mark, so don't free it */
361 new_fsn_mark = NULL;
Eric Paris3c5119c2009-05-21 17:01:33 -0400362 }
363
364 rcu_read_lock();
365 f = fcheck(fd);
366 rcu_read_unlock();
367
368 /* if (f != filp) means that we lost a race and another task/thread
369 * actually closed the fd we are still playing with before we grabbed
Eric Parisef5e2b72009-12-17 21:24:24 -0500370 * the dnotify_mark_mutex and fsn_mark->lock. Since closing the fd is the
Eric Parise61ce862009-12-17 21:24:24 -0500371 * only time we clean up the marks we need to get our mark off
Eric Paris3c5119c2009-05-21 17:01:33 -0400372 * the list. */
373 if (f != filp) {
374 /* if we added ourselves, shoot ourselves, it's possible that
Eric Parisef5e2b72009-12-17 21:24:24 -0500375 * the flush actually did shoot this fsn_mark. That's fine too
Eric Paris3c5119c2009-05-21 17:01:33 -0400376 * since multiple calls to destroy_mark is perfectly safe, if
Eric Parisef5e2b72009-12-17 21:24:24 -0500377 * we found a dn_mark already attached to the inode, just sod
Eric Paris3c5119c2009-05-21 17:01:33 -0400378 * off silently as the flush at close time dealt with it.
379 */
Eric Parisef5e2b72009-12-17 21:24:24 -0500380 if (dn_mark == new_dn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400381 destroy = 1;
382 goto out;
383 }
384
385 error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
386 if (error) {
387 /* if we added, we must shoot */
Eric Parisef5e2b72009-12-17 21:24:24 -0500388 if (dn_mark == new_dn_mark)
Eric Paris3c5119c2009-05-21 17:01:33 -0400389 destroy = 1;
390 goto out;
391 }
392
Eric Parisef5e2b72009-12-17 21:24:24 -0500393 error = attach_dn(dn, dn_mark, id, fd, filp, mask);
394 /* !error means that we attached the dn to the dn_mark, so don't free it */
Eric Paris3c5119c2009-05-21 17:01:33 -0400395 if (!error)
396 dn = NULL;
397 /* -EEXIST means that we didn't add this new dn and used an old one.
398 * that isn't an error (and the unused dn should be freed) */
399 else if (error == -EEXIST)
400 error = 0;
401
Eric Parisef5e2b72009-12-17 21:24:24 -0500402 dnotify_recalc_inode_mask(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400403out:
Eric Parisef5e2b72009-12-17 21:24:24 -0500404 spin_unlock(&fsn_mark->lock);
Eric Paris3c5119c2009-05-21 17:01:33 -0400405
406 if (destroy)
Eric Parisef5e2b72009-12-17 21:24:24 -0500407 fsnotify_destroy_mark(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400408
409 fsnotify_recalc_group_mask(dnotify_group);
410
411 mutex_unlock(&dnotify_mark_mutex);
Eric Parisef5e2b72009-12-17 21:24:24 -0500412 fsnotify_put_mark(fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400413out_err:
Eric Parisef5e2b72009-12-17 21:24:24 -0500414 if (new_fsn_mark)
415 fsnotify_put_mark(new_fsn_mark);
Eric Paris3c5119c2009-05-21 17:01:33 -0400416 if (dn)
417 kmem_cache_free(dnotify_struct_cache, dn);
418 return error;
419}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421static int __init dnotify_init(void)
422{
Eric Paris3c5119c2009-05-21 17:01:33 -0400423 dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
Eric Parisef5e2b72009-12-17 21:24:24 -0500424 dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
Eric Paris3c5119c2009-05-21 17:01:33 -0400425
Eric Paris0d2e2a12009-12-17 21:24:22 -0500426 dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
Eric Paris3c5119c2009-05-21 17:01:33 -0400427 if (IS_ERR(dnotify_group))
428 panic("unable to allocate fsnotify group for dnotify\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return 0;
430}
431
432module_init(dnotify_init)