blob: 723836a1f71896a5406b7ca6e066dc42ca5a6286 [file] [log] [blame]
Robert Love0eeca282005-07-12 17:06:03 -04001/*
2 * fs/inotify.c - inode-based file event notifications
3 *
4 * Authors:
5 * John McCutchan <ttb@tentacle.dhs.org>
6 * Robert Love <rml@novell.com>
7 *
Amy Griffis2d9048e2006-06-01 13:10:59 -07008 * Kernel API added by: Amy Griffis <amy.griffis@hp.com>
9 *
Robert Love0eeca282005-07-12 17:06:03 -040010 * Copyright (C) 2005 John McCutchan
Amy Griffis2d9048e2006-06-01 13:10:59 -070011 * Copyright 2006 Hewlett-Packard Development Company, L.P.
Robert Love0eeca282005-07-12 17:06:03 -040012 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2, or (at your option) any
16 * later version.
17 *
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 */
23
24#include <linux/module.h>
25#include <linux/kernel.h>
Robert Love0eeca282005-07-12 17:06:03 -040026#include <linux/spinlock.h>
27#include <linux/idr.h>
28#include <linux/slab.h>
29#include <linux/fs.h>
Robert Love0eeca282005-07-12 17:06:03 -040030#include <linux/init.h>
31#include <linux/list.h>
32#include <linux/writeback.h>
33#include <linux/inotify.h>
Robert Love0eeca282005-07-12 17:06:03 -040034
35static atomic_t inotify_cookie;
36
Robert Love0eeca282005-07-12 17:06:03 -040037/*
38 * Lock ordering:
39 *
40 * dentry->d_lock (used to keep d_move() away from dentry->d_parent)
Ingo Molnarf24075b2006-03-23 03:00:34 -080041 * iprune_mutex (synchronize shrink_icache_memory())
Robert Love0eeca282005-07-12 17:06:03 -040042 * inode_lock (protects the super_block->s_inodes list)
Ingo Molnard4f9af92006-03-23 03:00:30 -080043 * inode->inotify_mutex (protects inode->inotify_watches and watches->i_list)
Amy Griffis2d9048e2006-06-01 13:10:59 -070044 * inotify_handle->mutex (protects inotify_handle and watches->h_list)
45 *
46 * The inode->inotify_mutex and inotify_handle->mutex and held during execution
47 * of a caller's event handler. Thus, the caller must not hold any locks
48 * taken in their event handler while calling any of the published inotify
49 * interfaces.
Robert Love0eeca282005-07-12 17:06:03 -040050 */
51
52/*
Amy Griffis2d9048e2006-06-01 13:10:59 -070053 * Lifetimes of the three main data structures--inotify_handle, inode, and
Robert Love0eeca282005-07-12 17:06:03 -040054 * inotify_watch--are managed by reference count.
55 *
Amy Griffis2d9048e2006-06-01 13:10:59 -070056 * inotify_handle: Lifetime is from inotify_init() to inotify_destroy().
57 * Additional references can bump the count via get_inotify_handle() and drop
58 * the count via put_inotify_handle().
Robert Love0eeca282005-07-12 17:06:03 -040059 *
Amy Griffis2d9048e2006-06-01 13:10:59 -070060 * inotify_watch: for inotify's purposes, lifetime is from inotify_add_watch()
61 * to remove_watch_no_event(). Additional references can bump the count via
62 * get_inotify_watch() and drop the count via put_inotify_watch(). The caller
63 * is reponsible for the final put after receiving IN_IGNORED, or when using
64 * IN_ONESHOT after receiving the first event. Inotify does the final put if
65 * inotify_destroy() is called.
Robert Love0eeca282005-07-12 17:06:03 -040066 *
67 * inode: Pinned so long as the inode is associated with a watch, from
Amy Griffis2d9048e2006-06-01 13:10:59 -070068 * inotify_add_watch() to the final put_inotify_watch().
Robert Love0eeca282005-07-12 17:06:03 -040069 */
70
71/*
Amy Griffis2d9048e2006-06-01 13:10:59 -070072 * struct inotify_handle - represents an inotify instance
Robert Love0eeca282005-07-12 17:06:03 -040073 *
Ingo Molnard4f9af92006-03-23 03:00:30 -080074 * This structure is protected by the mutex 'mutex'.
Robert Love0eeca282005-07-12 17:06:03 -040075 */
Amy Griffis2d9048e2006-06-01 13:10:59 -070076struct inotify_handle {
Robert Love0eeca282005-07-12 17:06:03 -040077 struct idr idr; /* idr mapping wd -> watch */
Ingo Molnard4f9af92006-03-23 03:00:30 -080078 struct mutex mutex; /* protects this bad boy */
Robert Love0eeca282005-07-12 17:06:03 -040079 struct list_head watches; /* list of watches */
80 atomic_t count; /* reference count */
John McCutchanb9c55d22005-08-01 11:00:45 -040081 u32 last_wd; /* the last wd allocated */
Amy Griffis2d9048e2006-06-01 13:10:59 -070082 const struct inotify_operations *in_ops; /* inotify caller operations */
Robert Love0eeca282005-07-12 17:06:03 -040083};
84
Amy Griffis2d9048e2006-06-01 13:10:59 -070085static inline void get_inotify_handle(struct inotify_handle *ih)
Robert Love0eeca282005-07-12 17:06:03 -040086{
Amy Griffis2d9048e2006-06-01 13:10:59 -070087 atomic_inc(&ih->count);
Robert Love0eeca282005-07-12 17:06:03 -040088}
89
Amy Griffis2d9048e2006-06-01 13:10:59 -070090static inline void put_inotify_handle(struct inotify_handle *ih)
Robert Love0eeca282005-07-12 17:06:03 -040091{
Amy Griffis2d9048e2006-06-01 13:10:59 -070092 if (atomic_dec_and_test(&ih->count)) {
93 idr_destroy(&ih->idr);
94 kfree(ih);
Robert Love0eeca282005-07-12 17:06:03 -040095 }
96}
97
Amy Griffis2d9048e2006-06-01 13:10:59 -070098/**
99 * get_inotify_watch - grab a reference to an inotify_watch
100 * @watch: watch to grab
101 */
102void get_inotify_watch(struct inotify_watch *watch)
Robert Love0eeca282005-07-12 17:06:03 -0400103{
104 atomic_inc(&watch->count);
105}
Amy Griffis2d9048e2006-06-01 13:10:59 -0700106EXPORT_SYMBOL_GPL(get_inotify_watch);
Robert Love0eeca282005-07-12 17:06:03 -0400107
Amy Griffis2d9048e2006-06-01 13:10:59 -0700108/**
Robert Love0eeca282005-07-12 17:06:03 -0400109 * put_inotify_watch - decrements the ref count on a given watch. cleans up
Amy Griffis2d9048e2006-06-01 13:10:59 -0700110 * watch references if the count reaches zero. inotify_watch is freed by
111 * inotify callers via the destroy_watch() op.
112 * @watch: watch to release
Robert Love0eeca282005-07-12 17:06:03 -0400113 */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700114void put_inotify_watch(struct inotify_watch *watch)
Robert Love0eeca282005-07-12 17:06:03 -0400115{
116 if (atomic_dec_and_test(&watch->count)) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700117 struct inotify_handle *ih = watch->ih;
118
Robert Love0eeca282005-07-12 17:06:03 -0400119 iput(watch->inode);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700120 ih->in_ops->destroy_watch(watch);
121 put_inotify_handle(ih);
Robert Love0eeca282005-07-12 17:06:03 -0400122 }
123}
Amy Griffis2d9048e2006-06-01 13:10:59 -0700124EXPORT_SYMBOL_GPL(put_inotify_watch);
Robert Love0eeca282005-07-12 17:06:03 -0400125
126/*
Amy Griffis2d9048e2006-06-01 13:10:59 -0700127 * inotify_handle_get_wd - returns the next WD for use by the given handle
Robert Love0eeca282005-07-12 17:06:03 -0400128 *
Amy Griffis2d9048e2006-06-01 13:10:59 -0700129 * Callers must hold ih->mutex. This function can sleep.
Robert Love0eeca282005-07-12 17:06:03 -0400130 */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700131static int inotify_handle_get_wd(struct inotify_handle *ih,
132 struct inotify_watch *watch)
Robert Love0eeca282005-07-12 17:06:03 -0400133{
134 int ret;
135
136 do {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700137 if (unlikely(!idr_pre_get(&ih->idr, GFP_KERNEL)))
Robert Love0eeca282005-07-12 17:06:03 -0400138 return -ENOSPC;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700139 ret = idr_get_new_above(&ih->idr, watch, ih->last_wd+1, &watch->wd);
Robert Love0eeca282005-07-12 17:06:03 -0400140 } while (ret == -EAGAIN);
141
Amy Griffis2d9048e2006-06-01 13:10:59 -0700142 if (likely(!ret))
143 ih->last_wd = watch->wd;
144
Robert Love0eeca282005-07-12 17:06:03 -0400145 return ret;
146}
147
148/*
Nick Pigginc32ccd82006-03-25 03:07:09 -0800149 * inotify_inode_watched - returns nonzero if there are watches on this inode
150 * and zero otherwise. We call this lockless, we do not care if we race.
151 */
152static inline int inotify_inode_watched(struct inode *inode)
153{
154 return !list_empty(&inode->inotify_watches);
155}
156
157/*
158 * Get child dentry flag into synch with parent inode.
159 * Flag should always be clear for negative dentrys.
160 */
161static void set_dentry_child_flags(struct inode *inode, int watched)
162{
163 struct dentry *alias;
164
165 spin_lock(&dcache_lock);
166 list_for_each_entry(alias, &inode->i_dentry, d_alias) {
167 struct dentry *child;
168
169 list_for_each_entry(child, &alias->d_subdirs, d_u.d_child) {
170 if (!child->d_inode) {
171 WARN_ON(child->d_flags & DCACHE_INOTIFY_PARENT_WATCHED);
172 continue;
173 }
174 spin_lock(&child->d_lock);
175 if (watched) {
176 WARN_ON(child->d_flags &
177 DCACHE_INOTIFY_PARENT_WATCHED);
178 child->d_flags |= DCACHE_INOTIFY_PARENT_WATCHED;
179 } else {
180 WARN_ON(!(child->d_flags &
181 DCACHE_INOTIFY_PARENT_WATCHED));
182 child->d_flags&=~DCACHE_INOTIFY_PARENT_WATCHED;
183 }
184 spin_unlock(&child->d_lock);
185 }
186 }
187 spin_unlock(&dcache_lock);
188}
189
190/*
Amy Griffis2d9048e2006-06-01 13:10:59 -0700191 * inotify_find_handle - find the watch associated with the given inode and
192 * handle
Robert Love0eeca282005-07-12 17:06:03 -0400193 *
Ingo Molnard4f9af92006-03-23 03:00:30 -0800194 * Callers must hold inode->inotify_mutex.
Robert Love0eeca282005-07-12 17:06:03 -0400195 */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700196static struct inotify_watch *inode_find_handle(struct inode *inode,
197 struct inotify_handle *ih)
Robert Love0eeca282005-07-12 17:06:03 -0400198{
199 struct inotify_watch *watch;
200
201 list_for_each_entry(watch, &inode->inotify_watches, i_list) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700202 if (watch->ih == ih)
Robert Love0eeca282005-07-12 17:06:03 -0400203 return watch;
204 }
205
206 return NULL;
207}
208
209/*
Amy Griffis3ca10062006-06-01 13:11:05 -0700210 * remove_watch_no_event - remove watch without the IN_IGNORED event.
Amy Griffis2d9048e2006-06-01 13:10:59 -0700211 *
212 * Callers must hold both inode->inotify_mutex and ih->mutex.
Robert Love0eeca282005-07-12 17:06:03 -0400213 */
214static void remove_watch_no_event(struct inotify_watch *watch,
Amy Griffis2d9048e2006-06-01 13:10:59 -0700215 struct inotify_handle *ih)
Robert Love0eeca282005-07-12 17:06:03 -0400216{
217 list_del(&watch->i_list);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700218 list_del(&watch->h_list);
Robert Love0eeca282005-07-12 17:06:03 -0400219
Nick Pigginc32ccd82006-03-25 03:07:09 -0800220 if (!inotify_inode_watched(watch->inode))
221 set_dentry_child_flags(watch->inode, 0);
222
Amy Griffis2d9048e2006-06-01 13:10:59 -0700223 idr_remove(&ih->idr, watch->wd);
Robert Love0eeca282005-07-12 17:06:03 -0400224}
225
Amy Griffis3ca10062006-06-01 13:11:05 -0700226/**
227 * inotify_remove_watch_locked - Remove a watch from both the handle and the
228 * inode. Sends the IN_IGNORED event signifying that the inode is no longer
229 * watched. May be invoked from a caller's event handler.
230 * @ih: inotify handle associated with watch
231 * @watch: watch to remove
Robert Love0eeca282005-07-12 17:06:03 -0400232 *
Amy Griffis2d9048e2006-06-01 13:10:59 -0700233 * Callers must hold both inode->inotify_mutex and ih->mutex.
Robert Love0eeca282005-07-12 17:06:03 -0400234 */
Amy Griffis3ca10062006-06-01 13:11:05 -0700235void inotify_remove_watch_locked(struct inotify_handle *ih,
236 struct inotify_watch *watch)
Robert Love0eeca282005-07-12 17:06:03 -0400237{
Amy Griffis2d9048e2006-06-01 13:10:59 -0700238 remove_watch_no_event(watch, ih);
Amy Griffis7c297722006-06-01 13:11:01 -0700239 ih->in_ops->handle_event(watch, watch->wd, IN_IGNORED, 0, NULL, NULL);
Robert Love0eeca282005-07-12 17:06:03 -0400240}
Amy Griffis3ca10062006-06-01 13:11:05 -0700241EXPORT_SYMBOL_GPL(inotify_remove_watch_locked);
Robert Love0eeca282005-07-12 17:06:03 -0400242
Amy Griffis2d9048e2006-06-01 13:10:59 -0700243/* Kernel API for producing events */
Nick Pigginc32ccd82006-03-25 03:07:09 -0800244
Robert Love0eeca282005-07-12 17:06:03 -0400245/*
Nick Pigginc32ccd82006-03-25 03:07:09 -0800246 * inotify_d_instantiate - instantiate dcache entry for inode
Robert Love0eeca282005-07-12 17:06:03 -0400247 */
Nick Pigginc32ccd82006-03-25 03:07:09 -0800248void inotify_d_instantiate(struct dentry *entry, struct inode *inode)
Robert Love0eeca282005-07-12 17:06:03 -0400249{
Nick Pigginc32ccd82006-03-25 03:07:09 -0800250 struct dentry *parent;
251
252 if (!inode)
253 return;
254
255 WARN_ON(entry->d_flags & DCACHE_INOTIFY_PARENT_WATCHED);
256 spin_lock(&entry->d_lock);
257 parent = entry->d_parent;
Arnd Bergmann091e8812006-04-10 22:54:31 -0700258 if (parent->d_inode && inotify_inode_watched(parent->d_inode))
Nick Pigginc32ccd82006-03-25 03:07:09 -0800259 entry->d_flags |= DCACHE_INOTIFY_PARENT_WATCHED;
260 spin_unlock(&entry->d_lock);
Robert Love0eeca282005-07-12 17:06:03 -0400261}
262
Nick Pigginc32ccd82006-03-25 03:07:09 -0800263/*
264 * inotify_d_move - dcache entry has been moved
265 */
266void inotify_d_move(struct dentry *entry)
267{
268 struct dentry *parent;
269
270 parent = entry->d_parent;
271 if (inotify_inode_watched(parent->d_inode))
272 entry->d_flags |= DCACHE_INOTIFY_PARENT_WATCHED;
273 else
274 entry->d_flags &= ~DCACHE_INOTIFY_PARENT_WATCHED;
275}
Robert Love0eeca282005-07-12 17:06:03 -0400276
277/**
278 * inotify_inode_queue_event - queue an event to all watches on this inode
279 * @inode: inode event is originating from
280 * @mask: event mask describing this event
281 * @cookie: cookie for synchronization, or zero
282 * @name: filename, if any
Amy Griffis7c297722006-06-01 13:11:01 -0700283 * @n_inode: inode associated with name
Robert Love0eeca282005-07-12 17:06:03 -0400284 */
285void inotify_inode_queue_event(struct inode *inode, u32 mask, u32 cookie,
Amy Griffis7c297722006-06-01 13:11:01 -0700286 const char *name, struct inode *n_inode)
Robert Love0eeca282005-07-12 17:06:03 -0400287{
288 struct inotify_watch *watch, *next;
289
290 if (!inotify_inode_watched(inode))
291 return;
292
Ingo Molnard4f9af92006-03-23 03:00:30 -0800293 mutex_lock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400294 list_for_each_entry_safe(watch, next, &inode->inotify_watches, i_list) {
295 u32 watch_mask = watch->mask;
296 if (watch_mask & mask) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700297 struct inotify_handle *ih= watch->ih;
298 mutex_lock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400299 if (watch_mask & IN_ONESHOT)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700300 remove_watch_no_event(watch, ih);
Amy Griffis7c297722006-06-01 13:11:01 -0700301 ih->in_ops->handle_event(watch, watch->wd, mask, cookie,
302 name, n_inode);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700303 mutex_unlock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400304 }
305 }
Ingo Molnard4f9af92006-03-23 03:00:30 -0800306 mutex_unlock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400307}
308EXPORT_SYMBOL_GPL(inotify_inode_queue_event);
309
310/**
311 * inotify_dentry_parent_queue_event - queue an event to a dentry's parent
312 * @dentry: the dentry in question, we queue against this dentry's parent
313 * @mask: event mask describing this event
314 * @cookie: cookie for synchronization, or zero
315 * @name: filename, if any
316 */
317void inotify_dentry_parent_queue_event(struct dentry *dentry, u32 mask,
318 u32 cookie, const char *name)
319{
320 struct dentry *parent;
321 struct inode *inode;
322
Nick Pigginc32ccd82006-03-25 03:07:09 -0800323 if (!(dentry->d_flags & DCACHE_INOTIFY_PARENT_WATCHED))
John McCutchan820249b2005-09-06 15:16:38 -0700324 return;
325
Robert Love0eeca282005-07-12 17:06:03 -0400326 spin_lock(&dentry->d_lock);
327 parent = dentry->d_parent;
328 inode = parent->d_inode;
329
330 if (inotify_inode_watched(inode)) {
331 dget(parent);
332 spin_unlock(&dentry->d_lock);
Amy Griffis7c297722006-06-01 13:11:01 -0700333 inotify_inode_queue_event(inode, mask, cookie, name,
334 dentry->d_inode);
Robert Love0eeca282005-07-12 17:06:03 -0400335 dput(parent);
336 } else
337 spin_unlock(&dentry->d_lock);
338}
339EXPORT_SYMBOL_GPL(inotify_dentry_parent_queue_event);
340
341/**
342 * inotify_get_cookie - return a unique cookie for use in synchronizing events.
343 */
344u32 inotify_get_cookie(void)
345{
346 return atomic_inc_return(&inotify_cookie);
347}
348EXPORT_SYMBOL_GPL(inotify_get_cookie);
349
350/**
351 * inotify_unmount_inodes - an sb is unmounting. handle any watched inodes.
352 * @list: list of inodes being unmounted (sb->s_inodes)
353 *
354 * Called with inode_lock held, protecting the unmounting super block's list
Ingo Molnarf24075b2006-03-23 03:00:34 -0800355 * of inodes, and with iprune_mutex held, keeping shrink_icache_memory() at bay.
Robert Love0eeca282005-07-12 17:06:03 -0400356 * We temporarily drop inode_lock, however, and CAN block.
357 */
358void inotify_unmount_inodes(struct list_head *list)
359{
360 struct inode *inode, *next_i, *need_iput = NULL;
361
362 list_for_each_entry_safe(inode, next_i, list, i_sb_list) {
363 struct inotify_watch *watch, *next_w;
364 struct inode *need_iput_tmp;
365 struct list_head *watches;
366
367 /*
368 * If i_count is zero, the inode cannot have any watches and
369 * doing an __iget/iput with MS_ACTIVE clear would actually
370 * evict all inodes with zero i_count from icache which is
371 * unnecessarily violent and may in fact be illegal to do.
372 */
373 if (!atomic_read(&inode->i_count))
374 continue;
375
376 /*
377 * We cannot __iget() an inode in state I_CLEAR, I_FREEING, or
378 * I_WILL_FREE which is fine because by that point the inode
379 * cannot have any associated watches.
380 */
381 if (inode->i_state & (I_CLEAR | I_FREEING | I_WILL_FREE))
382 continue;
383
384 need_iput_tmp = need_iput;
385 need_iput = NULL;
Amy Griffis3ca10062006-06-01 13:11:05 -0700386 /* In case inotify_remove_watch_locked() drops a reference. */
Robert Love0eeca282005-07-12 17:06:03 -0400387 if (inode != need_iput_tmp)
388 __iget(inode);
389 else
390 need_iput_tmp = NULL;
391 /* In case the dropping of a reference would nuke next_i. */
392 if ((&next_i->i_sb_list != list) &&
393 atomic_read(&next_i->i_count) &&
394 !(next_i->i_state & (I_CLEAR | I_FREEING |
395 I_WILL_FREE))) {
396 __iget(next_i);
397 need_iput = next_i;
398 }
399
400 /*
401 * We can safely drop inode_lock here because we hold
402 * references on both inode and next_i. Also no new inodes
403 * will be added since the umount has begun. Finally,
Ingo Molnarf24075b2006-03-23 03:00:34 -0800404 * iprune_mutex keeps shrink_icache_memory() away.
Robert Love0eeca282005-07-12 17:06:03 -0400405 */
406 spin_unlock(&inode_lock);
407
408 if (need_iput_tmp)
409 iput(need_iput_tmp);
410
411 /* for each watch, send IN_UNMOUNT and then remove it */
Ingo Molnard4f9af92006-03-23 03:00:30 -0800412 mutex_lock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400413 watches = &inode->inotify_watches;
414 list_for_each_entry_safe(watch, next_w, watches, i_list) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700415 struct inotify_handle *ih= watch->ih;
416 mutex_lock(&ih->mutex);
417 ih->in_ops->handle_event(watch, watch->wd, IN_UNMOUNT, 0,
Amy Griffis7c297722006-06-01 13:11:01 -0700418 NULL, NULL);
Amy Griffis3ca10062006-06-01 13:11:05 -0700419 inotify_remove_watch_locked(ih, watch);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700420 mutex_unlock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400421 }
Ingo Molnard4f9af92006-03-23 03:00:30 -0800422 mutex_unlock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400423 iput(inode);
424
425 spin_lock(&inode_lock);
426 }
427}
428EXPORT_SYMBOL_GPL(inotify_unmount_inodes);
429
430/**
431 * inotify_inode_is_dead - an inode has been deleted, cleanup any watches
432 * @inode: inode that is about to be removed
433 */
434void inotify_inode_is_dead(struct inode *inode)
435{
436 struct inotify_watch *watch, *next;
437
Ingo Molnard4f9af92006-03-23 03:00:30 -0800438 mutex_lock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400439 list_for_each_entry_safe(watch, next, &inode->inotify_watches, i_list) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700440 struct inotify_handle *ih = watch->ih;
441 mutex_lock(&ih->mutex);
Amy Griffis3ca10062006-06-01 13:11:05 -0700442 inotify_remove_watch_locked(ih, watch);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700443 mutex_unlock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400444 }
Ingo Molnard4f9af92006-03-23 03:00:30 -0800445 mutex_unlock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400446}
447EXPORT_SYMBOL_GPL(inotify_inode_is_dead);
448
Amy Griffis2d9048e2006-06-01 13:10:59 -0700449/* Kernel Consumer API */
Robert Love0eeca282005-07-12 17:06:03 -0400450
Amy Griffis2d9048e2006-06-01 13:10:59 -0700451/**
452 * inotify_init - allocate and initialize an inotify instance
453 * @ops: caller's inotify operations
454 */
455struct inotify_handle *inotify_init(const struct inotify_operations *ops)
Robert Love0eeca282005-07-12 17:06:03 -0400456{
Amy Griffis2d9048e2006-06-01 13:10:59 -0700457 struct inotify_handle *ih;
Robert Love0eeca282005-07-12 17:06:03 -0400458
Amy Griffis2d9048e2006-06-01 13:10:59 -0700459 ih = kmalloc(sizeof(struct inotify_handle), GFP_KERNEL);
460 if (unlikely(!ih))
461 return ERR_PTR(-ENOMEM);
Robert Love0eeca282005-07-12 17:06:03 -0400462
Amy Griffis2d9048e2006-06-01 13:10:59 -0700463 idr_init(&ih->idr);
464 INIT_LIST_HEAD(&ih->watches);
465 mutex_init(&ih->mutex);
466 ih->last_wd = 0;
467 ih->in_ops = ops;
468 atomic_set(&ih->count, 0);
469 get_inotify_handle(ih);
470
471 return ih;
Robert Love0eeca282005-07-12 17:06:03 -0400472}
Amy Griffis2d9048e2006-06-01 13:10:59 -0700473EXPORT_SYMBOL_GPL(inotify_init);
Robert Love0eeca282005-07-12 17:06:03 -0400474
Amy Griffis2d9048e2006-06-01 13:10:59 -0700475/**
Amy Griffisa9dc9712006-06-01 13:11:03 -0700476 * inotify_init_watch - initialize an inotify watch
477 * @watch: watch to initialize
478 */
479void inotify_init_watch(struct inotify_watch *watch)
480{
481 INIT_LIST_HEAD(&watch->h_list);
482 INIT_LIST_HEAD(&watch->i_list);
483 atomic_set(&watch->count, 0);
484 get_inotify_watch(watch); /* initial get */
485}
486EXPORT_SYMBOL_GPL(inotify_init_watch);
487
488/**
Amy Griffis2d9048e2006-06-01 13:10:59 -0700489 * inotify_destroy - clean up and destroy an inotify instance
490 * @ih: inotify handle
491 */
492void inotify_destroy(struct inotify_handle *ih)
Robert Love0eeca282005-07-12 17:06:03 -0400493{
Robert Love0eeca282005-07-12 17:06:03 -0400494 /*
Amy Griffis2d9048e2006-06-01 13:10:59 -0700495 * Destroy all of the watches for this handle. Unfortunately, not very
Robert Love0eeca282005-07-12 17:06:03 -0400496 * pretty. We cannot do a simple iteration over the list, because we
497 * do not know the inode until we iterate to the watch. But we need to
Amy Griffis2d9048e2006-06-01 13:10:59 -0700498 * hold inode->inotify_mutex before ih->mutex. The following works.
Robert Love0eeca282005-07-12 17:06:03 -0400499 */
500 while (1) {
501 struct inotify_watch *watch;
502 struct list_head *watches;
503 struct inode *inode;
504
Amy Griffis2d9048e2006-06-01 13:10:59 -0700505 mutex_lock(&ih->mutex);
506 watches = &ih->watches;
Robert Love0eeca282005-07-12 17:06:03 -0400507 if (list_empty(watches)) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700508 mutex_unlock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400509 break;
510 }
Amy Griffis2d9048e2006-06-01 13:10:59 -0700511 watch = list_entry(watches->next, struct inotify_watch, h_list);
Robert Love0eeca282005-07-12 17:06:03 -0400512 get_inotify_watch(watch);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700513 mutex_unlock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400514
515 inode = watch->inode;
Ingo Molnard4f9af92006-03-23 03:00:30 -0800516 mutex_lock(&inode->inotify_mutex);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700517 mutex_lock(&ih->mutex);
Amy Griffis66055a42006-05-20 15:00:06 -0700518
519 /* make sure we didn't race with another list removal */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700520 if (likely(idr_find(&ih->idr, watch->wd))) {
521 remove_watch_no_event(watch, ih);
522 put_inotify_watch(watch);
523 }
Amy Griffis66055a42006-05-20 15:00:06 -0700524
Amy Griffis2d9048e2006-06-01 13:10:59 -0700525 mutex_unlock(&ih->mutex);
Ingo Molnard4f9af92006-03-23 03:00:30 -0800526 mutex_unlock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400527 put_inotify_watch(watch);
528 }
529
Amy Griffis2d9048e2006-06-01 13:10:59 -0700530 /* free this handle: the put matching the get in inotify_init() */
531 put_inotify_handle(ih);
Robert Love0eeca282005-07-12 17:06:03 -0400532}
Amy Griffis2d9048e2006-06-01 13:10:59 -0700533EXPORT_SYMBOL_GPL(inotify_destroy);
Robert Love0eeca282005-07-12 17:06:03 -0400534
Amy Griffis2d9048e2006-06-01 13:10:59 -0700535/**
Amy Griffisa9dc9712006-06-01 13:11:03 -0700536 * inotify_find_watch - find an existing watch for an (ih,inode) pair
537 * @ih: inotify handle
538 * @inode: inode to watch
539 * @watchp: pointer to existing inotify_watch
540 *
541 * Caller must pin given inode (via nameidata).
542 */
543s32 inotify_find_watch(struct inotify_handle *ih, struct inode *inode,
544 struct inotify_watch **watchp)
545{
546 struct inotify_watch *old;
547 int ret = -ENOENT;
548
549 mutex_lock(&inode->inotify_mutex);
550 mutex_lock(&ih->mutex);
551
552 old = inode_find_handle(inode, ih);
553 if (unlikely(old)) {
554 get_inotify_watch(old); /* caller must put watch */
555 *watchp = old;
556 ret = old->wd;
557 }
558
559 mutex_unlock(&ih->mutex);
560 mutex_unlock(&inode->inotify_mutex);
561
562 return ret;
563}
564EXPORT_SYMBOL_GPL(inotify_find_watch);
565
566/**
Amy Griffis2d9048e2006-06-01 13:10:59 -0700567 * inotify_find_update_watch - find and update the mask of an existing watch
568 * @ih: inotify handle
569 * @inode: inode's watch to update
570 * @mask: mask of events to watch
571 *
572 * Caller must pin given inode (via nameidata).
573 */
574s32 inotify_find_update_watch(struct inotify_handle *ih, struct inode *inode,
575 u32 mask)
576{
577 struct inotify_watch *old;
578 int mask_add = 0;
579 int ret;
580
581 if (mask & IN_MASK_ADD)
582 mask_add = 1;
583
584 /* don't allow invalid bits: we don't want flags set */
585 mask &= IN_ALL_EVENTS | IN_ONESHOT;
586 if (unlikely(!mask))
587 return -EINVAL;
588
589 mutex_lock(&inode->inotify_mutex);
590 mutex_lock(&ih->mutex);
591
592 /*
593 * Handle the case of re-adding a watch on an (inode,ih) pair that we
594 * are already watching. We just update the mask and return its wd.
595 */
596 old = inode_find_handle(inode, ih);
597 if (unlikely(!old)) {
598 ret = -ENOENT;
599 goto out;
600 }
601
602 if (mask_add)
603 old->mask |= mask;
604 else
605 old->mask = mask;
606 ret = old->wd;
607out:
608 mutex_unlock(&ih->mutex);
609 mutex_unlock(&inode->inotify_mutex);
610 return ret;
611}
612EXPORT_SYMBOL_GPL(inotify_find_update_watch);
613
614/**
615 * inotify_add_watch - add a watch to an inotify instance
616 * @ih: inotify handle
617 * @watch: caller allocated watch structure
618 * @inode: inode to watch
619 * @mask: mask of events to watch
620 *
621 * Caller must pin given inode (via nameidata).
622 * Caller must ensure it only calls inotify_add_watch() once per watch.
623 * Calls inotify_handle_get_wd() so may sleep.
624 */
625s32 inotify_add_watch(struct inotify_handle *ih, struct inotify_watch *watch,
626 struct inode *inode, u32 mask)
627{
628 int ret = 0;
629
630 /* don't allow invalid bits: we don't want flags set */
631 mask &= IN_ALL_EVENTS | IN_ONESHOT;
632 if (unlikely(!mask))
633 return -EINVAL;
634 watch->mask = mask;
635
636 mutex_lock(&inode->inotify_mutex);
637 mutex_lock(&ih->mutex);
638
639 /* Initialize a new watch */
640 ret = inotify_handle_get_wd(ih, watch);
641 if (unlikely(ret))
642 goto out;
643 ret = watch->wd;
644
Amy Griffis2d9048e2006-06-01 13:10:59 -0700645 /* save a reference to handle and bump the count to make it official */
646 get_inotify_handle(ih);
647 watch->ih = ih;
648
649 /*
650 * Save a reference to the inode and bump the ref count to make it
651 * official. We hold a reference to nameidata, which makes this safe.
652 */
653 watch->inode = igrab(inode);
654
Amy Griffis2d9048e2006-06-01 13:10:59 -0700655 if (!inotify_inode_watched(inode))
656 set_dentry_child_flags(inode, 1);
657
658 /* Add the watch to the handle's and the inode's list */
659 list_add(&watch->h_list, &ih->watches);
660 list_add(&watch->i_list, &inode->inotify_watches);
661out:
662 mutex_unlock(&ih->mutex);
663 mutex_unlock(&inode->inotify_mutex);
664 return ret;
665}
666EXPORT_SYMBOL_GPL(inotify_add_watch);
667
668/**
669 * inotify_rm_wd - remove a watch from an inotify instance
670 * @ih: inotify handle
671 * @wd: watch descriptor to remove
Robert Love0eeca282005-07-12 17:06:03 -0400672 *
673 * Can sleep.
674 */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700675int inotify_rm_wd(struct inotify_handle *ih, u32 wd)
Robert Love0eeca282005-07-12 17:06:03 -0400676{
677 struct inotify_watch *watch;
678 struct inode *inode;
679
Amy Griffis2d9048e2006-06-01 13:10:59 -0700680 mutex_lock(&ih->mutex);
681 watch = idr_find(&ih->idr, wd);
Robert Love0eeca282005-07-12 17:06:03 -0400682 if (unlikely(!watch)) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700683 mutex_unlock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400684 return -EINVAL;
685 }
686 get_inotify_watch(watch);
687 inode = watch->inode;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700688 mutex_unlock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400689
Ingo Molnard4f9af92006-03-23 03:00:30 -0800690 mutex_lock(&inode->inotify_mutex);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700691 mutex_lock(&ih->mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400692
693 /* make sure that we did not race */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700694 if (likely(idr_find(&ih->idr, wd) == watch))
Amy Griffis3ca10062006-06-01 13:11:05 -0700695 inotify_remove_watch_locked(ih, watch);
Robert Love0eeca282005-07-12 17:06:03 -0400696
Amy Griffis2d9048e2006-06-01 13:10:59 -0700697 mutex_unlock(&ih->mutex);
Ingo Molnard4f9af92006-03-23 03:00:30 -0800698 mutex_unlock(&inode->inotify_mutex);
Robert Love0eeca282005-07-12 17:06:03 -0400699 put_inotify_watch(watch);
700
701 return 0;
702}
Amy Griffis2d9048e2006-06-01 13:10:59 -0700703EXPORT_SYMBOL_GPL(inotify_rm_wd);
Robert Love0eeca282005-07-12 17:06:03 -0400704
Amy Griffisa9dc9712006-06-01 13:11:03 -0700705/**
706 * inotify_rm_watch - remove a watch from an inotify instance
707 * @ih: inotify handle
708 * @watch: watch to remove
709 *
710 * Can sleep.
711 */
712int inotify_rm_watch(struct inotify_handle *ih,
713 struct inotify_watch *watch)
714{
715 return inotify_rm_wd(ih, watch->wd);
716}
717EXPORT_SYMBOL_GPL(inotify_rm_watch);
718
Robert Love0eeca282005-07-12 17:06:03 -0400719/*
Amy Griffis2d9048e2006-06-01 13:10:59 -0700720 * inotify_setup - core initialization function
Robert Love0eeca282005-07-12 17:06:03 -0400721 */
Robert Loveb6807162005-07-25 15:07:13 -0400722static int __init inotify_setup(void)
Robert Love0eeca282005-07-12 17:06:03 -0400723{
Robert Love0eeca282005-07-12 17:06:03 -0400724 atomic_set(&inotify_cookie, 0);
725
Robert Love0eeca282005-07-12 17:06:03 -0400726 return 0;
727}
728
Robert Loveb6807162005-07-25 15:07:13 -0400729module_init(inotify_setup);