Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 1 | /* |
| 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 Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 8 | * Kernel API added by: Amy Griffis <amy.griffis@hp.com> |
| 9 | * |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 10 | * Copyright (C) 2005 John McCutchan |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 11 | * Copyright 2006 Hewlett-Packard Development Company, L.P. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 12 | * |
| 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 Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 26 | #include <linux/spinlock.h> |
| 27 | #include <linux/idr.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/fs.h> |
Al Viro | 914e263 | 2006-10-18 13:55:46 -0400 | [diff] [blame] | 30 | #include <linux/sched.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 31 | #include <linux/init.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/writeback.h> |
| 34 | #include <linux/inotify.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 35 | |
| 36 | static atomic_t inotify_cookie; |
| 37 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 38 | /* |
| 39 | * Lock ordering: |
| 40 | * |
| 41 | * dentry->d_lock (used to keep d_move() away from dentry->d_parent) |
Ingo Molnar | f24075b | 2006-03-23 03:00:34 -0800 | [diff] [blame] | 42 | * iprune_mutex (synchronize shrink_icache_memory()) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 43 | * inode_lock (protects the super_block->s_inodes list) |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 44 | * inode->inotify_mutex (protects inode->inotify_watches and watches->i_list) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 45 | * inotify_handle->mutex (protects inotify_handle and watches->h_list) |
| 46 | * |
| 47 | * The inode->inotify_mutex and inotify_handle->mutex and held during execution |
| 48 | * of a caller's event handler. Thus, the caller must not hold any locks |
| 49 | * taken in their event handler while calling any of the published inotify |
| 50 | * interfaces. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 51 | */ |
| 52 | |
| 53 | /* |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 54 | * Lifetimes of the three main data structures--inotify_handle, inode, and |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 55 | * inotify_watch--are managed by reference count. |
| 56 | * |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 57 | * inotify_handle: Lifetime is from inotify_init() to inotify_destroy(). |
| 58 | * Additional references can bump the count via get_inotify_handle() and drop |
| 59 | * the count via put_inotify_handle(). |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 60 | * |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 61 | * inotify_watch: for inotify's purposes, lifetime is from inotify_add_watch() |
| 62 | * to remove_watch_no_event(). Additional references can bump the count via |
| 63 | * get_inotify_watch() and drop the count via put_inotify_watch(). The caller |
| 64 | * is reponsible for the final put after receiving IN_IGNORED, or when using |
| 65 | * IN_ONESHOT after receiving the first event. Inotify does the final put if |
| 66 | * inotify_destroy() is called. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 67 | * |
| 68 | * inode: Pinned so long as the inode is associated with a watch, from |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 69 | * inotify_add_watch() to the final put_inotify_watch(). |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 70 | */ |
| 71 | |
| 72 | /* |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 73 | * struct inotify_handle - represents an inotify instance |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 74 | * |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 75 | * This structure is protected by the mutex 'mutex'. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 76 | */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 77 | struct inotify_handle { |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 78 | struct idr idr; /* idr mapping wd -> watch */ |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 79 | struct mutex mutex; /* protects this bad boy */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 80 | struct list_head watches; /* list of watches */ |
| 81 | atomic_t count; /* reference count */ |
John McCutchan | b9c55d2 | 2005-08-01 11:00:45 -0400 | [diff] [blame] | 82 | u32 last_wd; /* the last wd allocated */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 83 | const struct inotify_operations *in_ops; /* inotify caller operations */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 84 | }; |
| 85 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 86 | static inline void get_inotify_handle(struct inotify_handle *ih) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 87 | { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 88 | atomic_inc(&ih->count); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 89 | } |
| 90 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 91 | static inline void put_inotify_handle(struct inotify_handle *ih) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 92 | { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 93 | if (atomic_dec_and_test(&ih->count)) { |
| 94 | idr_destroy(&ih->idr); |
| 95 | kfree(ih); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 96 | } |
| 97 | } |
| 98 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 99 | /** |
| 100 | * get_inotify_watch - grab a reference to an inotify_watch |
| 101 | * @watch: watch to grab |
| 102 | */ |
| 103 | void get_inotify_watch(struct inotify_watch *watch) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 104 | { |
| 105 | atomic_inc(&watch->count); |
| 106 | } |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 107 | EXPORT_SYMBOL_GPL(get_inotify_watch); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 108 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 109 | /** |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 110 | * put_inotify_watch - decrements the ref count on a given watch. cleans up |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 111 | * watch references if the count reaches zero. inotify_watch is freed by |
| 112 | * inotify callers via the destroy_watch() op. |
| 113 | * @watch: watch to release |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 114 | */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 115 | void put_inotify_watch(struct inotify_watch *watch) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 116 | { |
| 117 | if (atomic_dec_and_test(&watch->count)) { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 118 | struct inotify_handle *ih = watch->ih; |
| 119 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 120 | iput(watch->inode); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 121 | ih->in_ops->destroy_watch(watch); |
| 122 | put_inotify_handle(ih); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 123 | } |
| 124 | } |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 125 | EXPORT_SYMBOL_GPL(put_inotify_watch); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 126 | |
| 127 | /* |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 128 | * inotify_handle_get_wd - returns the next WD for use by the given handle |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 129 | * |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 130 | * Callers must hold ih->mutex. This function can sleep. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 131 | */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 132 | static int inotify_handle_get_wd(struct inotify_handle *ih, |
| 133 | struct inotify_watch *watch) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 134 | { |
| 135 | int ret; |
| 136 | |
| 137 | do { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 138 | if (unlikely(!idr_pre_get(&ih->idr, GFP_KERNEL))) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 139 | return -ENOSPC; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 140 | ret = idr_get_new_above(&ih->idr, watch, ih->last_wd+1, &watch->wd); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 141 | } while (ret == -EAGAIN); |
| 142 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 143 | if (likely(!ret)) |
| 144 | ih->last_wd = watch->wd; |
| 145 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 146 | return ret; |
| 147 | } |
| 148 | |
| 149 | /* |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 150 | * inotify_inode_watched - returns nonzero if there are watches on this inode |
| 151 | * and zero otherwise. We call this lockless, we do not care if we race. |
| 152 | */ |
| 153 | static inline int inotify_inode_watched(struct inode *inode) |
| 154 | { |
| 155 | return !list_empty(&inode->inotify_watches); |
| 156 | } |
| 157 | |
| 158 | /* |
| 159 | * Get child dentry flag into synch with parent inode. |
| 160 | * Flag should always be clear for negative dentrys. |
| 161 | */ |
| 162 | static void set_dentry_child_flags(struct inode *inode, int watched) |
| 163 | { |
| 164 | struct dentry *alias; |
| 165 | |
| 166 | spin_lock(&dcache_lock); |
| 167 | list_for_each_entry(alias, &inode->i_dentry, d_alias) { |
| 168 | struct dentry *child; |
| 169 | |
| 170 | list_for_each_entry(child, &alias->d_subdirs, d_u.d_child) { |
Nick Piggin | 0d71bd5 | 2008-02-06 01:37:29 -0800 | [diff] [blame] | 171 | if (!child->d_inode) |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 172 | continue; |
Nick Piggin | 0d71bd5 | 2008-02-06 01:37:29 -0800 | [diff] [blame] | 173 | |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 174 | spin_lock(&child->d_lock); |
Nick Piggin | 0d71bd5 | 2008-02-06 01:37:29 -0800 | [diff] [blame] | 175 | if (watched) |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 176 | child->d_flags |= DCACHE_INOTIFY_PARENT_WATCHED; |
Nick Piggin | 0d71bd5 | 2008-02-06 01:37:29 -0800 | [diff] [blame] | 177 | else |
| 178 | child->d_flags &=~DCACHE_INOTIFY_PARENT_WATCHED; |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 179 | spin_unlock(&child->d_lock); |
| 180 | } |
| 181 | } |
| 182 | spin_unlock(&dcache_lock); |
| 183 | } |
| 184 | |
| 185 | /* |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 186 | * inotify_find_handle - find the watch associated with the given inode and |
| 187 | * handle |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 188 | * |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 189 | * Callers must hold inode->inotify_mutex. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 190 | */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 191 | static struct inotify_watch *inode_find_handle(struct inode *inode, |
| 192 | struct inotify_handle *ih) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 193 | { |
| 194 | struct inotify_watch *watch; |
| 195 | |
| 196 | list_for_each_entry(watch, &inode->inotify_watches, i_list) { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 197 | if (watch->ih == ih) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 198 | return watch; |
| 199 | } |
| 200 | |
| 201 | return NULL; |
| 202 | } |
| 203 | |
| 204 | /* |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 205 | * remove_watch_no_event - remove watch without the IN_IGNORED event. |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 206 | * |
| 207 | * Callers must hold both inode->inotify_mutex and ih->mutex. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 208 | */ |
| 209 | static void remove_watch_no_event(struct inotify_watch *watch, |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 210 | struct inotify_handle *ih) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 211 | { |
| 212 | list_del(&watch->i_list); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 213 | list_del(&watch->h_list); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 214 | |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 215 | if (!inotify_inode_watched(watch->inode)) |
| 216 | set_dentry_child_flags(watch->inode, 0); |
| 217 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 218 | idr_remove(&ih->idr, watch->wd); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 219 | } |
| 220 | |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 221 | /** |
| 222 | * inotify_remove_watch_locked - Remove a watch from both the handle and the |
| 223 | * inode. Sends the IN_IGNORED event signifying that the inode is no longer |
| 224 | * watched. May be invoked from a caller's event handler. |
| 225 | * @ih: inotify handle associated with watch |
| 226 | * @watch: watch to remove |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 227 | * |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 228 | * Callers must hold both inode->inotify_mutex and ih->mutex. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 229 | */ |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 230 | void inotify_remove_watch_locked(struct inotify_handle *ih, |
| 231 | struct inotify_watch *watch) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 232 | { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 233 | remove_watch_no_event(watch, ih); |
Amy Griffis | 7c29772 | 2006-06-01 13:11:01 -0700 | [diff] [blame] | 234 | ih->in_ops->handle_event(watch, watch->wd, IN_IGNORED, 0, NULL, NULL); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 235 | } |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 236 | EXPORT_SYMBOL_GPL(inotify_remove_watch_locked); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 237 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 238 | /* Kernel API for producing events */ |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 239 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 240 | /* |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 241 | * inotify_d_instantiate - instantiate dcache entry for inode |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 242 | */ |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 243 | void inotify_d_instantiate(struct dentry *entry, struct inode *inode) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 244 | { |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 245 | struct dentry *parent; |
| 246 | |
| 247 | if (!inode) |
| 248 | return; |
| 249 | |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 250 | spin_lock(&entry->d_lock); |
| 251 | parent = entry->d_parent; |
Arnd Bergmann | 091e881 | 2006-04-10 22:54:31 -0700 | [diff] [blame] | 252 | if (parent->d_inode && inotify_inode_watched(parent->d_inode)) |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 253 | entry->d_flags |= DCACHE_INOTIFY_PARENT_WATCHED; |
| 254 | spin_unlock(&entry->d_lock); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 255 | } |
| 256 | |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 257 | /* |
| 258 | * inotify_d_move - dcache entry has been moved |
| 259 | */ |
| 260 | void inotify_d_move(struct dentry *entry) |
| 261 | { |
| 262 | struct dentry *parent; |
| 263 | |
| 264 | parent = entry->d_parent; |
| 265 | if (inotify_inode_watched(parent->d_inode)) |
| 266 | entry->d_flags |= DCACHE_INOTIFY_PARENT_WATCHED; |
| 267 | else |
| 268 | entry->d_flags &= ~DCACHE_INOTIFY_PARENT_WATCHED; |
| 269 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 270 | |
| 271 | /** |
| 272 | * inotify_inode_queue_event - queue an event to all watches on this inode |
| 273 | * @inode: inode event is originating from |
| 274 | * @mask: event mask describing this event |
| 275 | * @cookie: cookie for synchronization, or zero |
| 276 | * @name: filename, if any |
Amy Griffis | 7c29772 | 2006-06-01 13:11:01 -0700 | [diff] [blame] | 277 | * @n_inode: inode associated with name |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 278 | */ |
| 279 | void inotify_inode_queue_event(struct inode *inode, u32 mask, u32 cookie, |
Amy Griffis | 7c29772 | 2006-06-01 13:11:01 -0700 | [diff] [blame] | 280 | const char *name, struct inode *n_inode) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 281 | { |
| 282 | struct inotify_watch *watch, *next; |
| 283 | |
| 284 | if (!inotify_inode_watched(inode)) |
| 285 | return; |
| 286 | |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 287 | mutex_lock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 288 | list_for_each_entry_safe(watch, next, &inode->inotify_watches, i_list) { |
| 289 | u32 watch_mask = watch->mask; |
| 290 | if (watch_mask & mask) { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 291 | struct inotify_handle *ih= watch->ih; |
| 292 | mutex_lock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 293 | if (watch_mask & IN_ONESHOT) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 294 | remove_watch_no_event(watch, ih); |
Amy Griffis | 7c29772 | 2006-06-01 13:11:01 -0700 | [diff] [blame] | 295 | ih->in_ops->handle_event(watch, watch->wd, mask, cookie, |
| 296 | name, n_inode); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 297 | mutex_unlock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 298 | } |
| 299 | } |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 300 | mutex_unlock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 301 | } |
| 302 | EXPORT_SYMBOL_GPL(inotify_inode_queue_event); |
| 303 | |
| 304 | /** |
| 305 | * inotify_dentry_parent_queue_event - queue an event to a dentry's parent |
| 306 | * @dentry: the dentry in question, we queue against this dentry's parent |
| 307 | * @mask: event mask describing this event |
| 308 | * @cookie: cookie for synchronization, or zero |
| 309 | * @name: filename, if any |
| 310 | */ |
| 311 | void inotify_dentry_parent_queue_event(struct dentry *dentry, u32 mask, |
| 312 | u32 cookie, const char *name) |
| 313 | { |
| 314 | struct dentry *parent; |
| 315 | struct inode *inode; |
| 316 | |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 317 | if (!(dentry->d_flags & DCACHE_INOTIFY_PARENT_WATCHED)) |
John McCutchan | 820249b | 2005-09-06 15:16:38 -0700 | [diff] [blame] | 318 | return; |
| 319 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 320 | spin_lock(&dentry->d_lock); |
| 321 | parent = dentry->d_parent; |
| 322 | inode = parent->d_inode; |
| 323 | |
| 324 | if (inotify_inode_watched(inode)) { |
| 325 | dget(parent); |
| 326 | spin_unlock(&dentry->d_lock); |
Amy Griffis | 7c29772 | 2006-06-01 13:11:01 -0700 | [diff] [blame] | 327 | inotify_inode_queue_event(inode, mask, cookie, name, |
| 328 | dentry->d_inode); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 329 | dput(parent); |
| 330 | } else |
| 331 | spin_unlock(&dentry->d_lock); |
| 332 | } |
| 333 | EXPORT_SYMBOL_GPL(inotify_dentry_parent_queue_event); |
| 334 | |
| 335 | /** |
| 336 | * inotify_get_cookie - return a unique cookie for use in synchronizing events. |
| 337 | */ |
| 338 | u32 inotify_get_cookie(void) |
| 339 | { |
| 340 | return atomic_inc_return(&inotify_cookie); |
| 341 | } |
| 342 | EXPORT_SYMBOL_GPL(inotify_get_cookie); |
| 343 | |
| 344 | /** |
| 345 | * inotify_unmount_inodes - an sb is unmounting. handle any watched inodes. |
| 346 | * @list: list of inodes being unmounted (sb->s_inodes) |
| 347 | * |
| 348 | * Called with inode_lock held, protecting the unmounting super block's list |
Ingo Molnar | f24075b | 2006-03-23 03:00:34 -0800 | [diff] [blame] | 349 | * of inodes, and with iprune_mutex held, keeping shrink_icache_memory() at bay. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 350 | * We temporarily drop inode_lock, however, and CAN block. |
| 351 | */ |
| 352 | void inotify_unmount_inodes(struct list_head *list) |
| 353 | { |
| 354 | struct inode *inode, *next_i, *need_iput = NULL; |
| 355 | |
| 356 | list_for_each_entry_safe(inode, next_i, list, i_sb_list) { |
| 357 | struct inotify_watch *watch, *next_w; |
| 358 | struct inode *need_iput_tmp; |
| 359 | struct list_head *watches; |
| 360 | |
| 361 | /* |
| 362 | * If i_count is zero, the inode cannot have any watches and |
| 363 | * doing an __iget/iput with MS_ACTIVE clear would actually |
| 364 | * evict all inodes with zero i_count from icache which is |
| 365 | * unnecessarily violent and may in fact be illegal to do. |
| 366 | */ |
| 367 | if (!atomic_read(&inode->i_count)) |
| 368 | continue; |
| 369 | |
| 370 | /* |
| 371 | * We cannot __iget() an inode in state I_CLEAR, I_FREEING, or |
| 372 | * I_WILL_FREE which is fine because by that point the inode |
| 373 | * cannot have any associated watches. |
| 374 | */ |
| 375 | if (inode->i_state & (I_CLEAR | I_FREEING | I_WILL_FREE)) |
| 376 | continue; |
| 377 | |
| 378 | need_iput_tmp = need_iput; |
| 379 | need_iput = NULL; |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 380 | /* In case inotify_remove_watch_locked() drops a reference. */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 381 | if (inode != need_iput_tmp) |
| 382 | __iget(inode); |
| 383 | else |
| 384 | need_iput_tmp = NULL; |
| 385 | /* In case the dropping of a reference would nuke next_i. */ |
| 386 | if ((&next_i->i_sb_list != list) && |
| 387 | atomic_read(&next_i->i_count) && |
| 388 | !(next_i->i_state & (I_CLEAR | I_FREEING | |
| 389 | I_WILL_FREE))) { |
| 390 | __iget(next_i); |
| 391 | need_iput = next_i; |
| 392 | } |
| 393 | |
| 394 | /* |
| 395 | * We can safely drop inode_lock here because we hold |
| 396 | * references on both inode and next_i. Also no new inodes |
| 397 | * will be added since the umount has begun. Finally, |
Ingo Molnar | f24075b | 2006-03-23 03:00:34 -0800 | [diff] [blame] | 398 | * iprune_mutex keeps shrink_icache_memory() away. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 399 | */ |
| 400 | spin_unlock(&inode_lock); |
| 401 | |
| 402 | if (need_iput_tmp) |
| 403 | iput(need_iput_tmp); |
| 404 | |
| 405 | /* for each watch, send IN_UNMOUNT and then remove it */ |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 406 | mutex_lock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 407 | watches = &inode->inotify_watches; |
| 408 | list_for_each_entry_safe(watch, next_w, watches, i_list) { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 409 | struct inotify_handle *ih= watch->ih; |
| 410 | mutex_lock(&ih->mutex); |
| 411 | ih->in_ops->handle_event(watch, watch->wd, IN_UNMOUNT, 0, |
Amy Griffis | 7c29772 | 2006-06-01 13:11:01 -0700 | [diff] [blame] | 412 | NULL, NULL); |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 413 | inotify_remove_watch_locked(ih, watch); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 414 | mutex_unlock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 415 | } |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 416 | mutex_unlock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 417 | iput(inode); |
| 418 | |
| 419 | spin_lock(&inode_lock); |
| 420 | } |
| 421 | } |
| 422 | EXPORT_SYMBOL_GPL(inotify_unmount_inodes); |
| 423 | |
| 424 | /** |
| 425 | * inotify_inode_is_dead - an inode has been deleted, cleanup any watches |
| 426 | * @inode: inode that is about to be removed |
| 427 | */ |
| 428 | void inotify_inode_is_dead(struct inode *inode) |
| 429 | { |
| 430 | struct inotify_watch *watch, *next; |
| 431 | |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 432 | mutex_lock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 433 | list_for_each_entry_safe(watch, next, &inode->inotify_watches, i_list) { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 434 | struct inotify_handle *ih = watch->ih; |
| 435 | mutex_lock(&ih->mutex); |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 436 | inotify_remove_watch_locked(ih, watch); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 437 | mutex_unlock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 438 | } |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 439 | mutex_unlock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 440 | } |
| 441 | EXPORT_SYMBOL_GPL(inotify_inode_is_dead); |
| 442 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 443 | /* Kernel Consumer API */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 444 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 445 | /** |
| 446 | * inotify_init - allocate and initialize an inotify instance |
| 447 | * @ops: caller's inotify operations |
| 448 | */ |
| 449 | struct inotify_handle *inotify_init(const struct inotify_operations *ops) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 450 | { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 451 | struct inotify_handle *ih; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 452 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 453 | ih = kmalloc(sizeof(struct inotify_handle), GFP_KERNEL); |
| 454 | if (unlikely(!ih)) |
| 455 | return ERR_PTR(-ENOMEM); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 456 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 457 | idr_init(&ih->idr); |
| 458 | INIT_LIST_HEAD(&ih->watches); |
| 459 | mutex_init(&ih->mutex); |
| 460 | ih->last_wd = 0; |
| 461 | ih->in_ops = ops; |
| 462 | atomic_set(&ih->count, 0); |
| 463 | get_inotify_handle(ih); |
| 464 | |
| 465 | return ih; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 466 | } |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 467 | EXPORT_SYMBOL_GPL(inotify_init); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 468 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 469 | /** |
Amy Griffis | a9dc971 | 2006-06-01 13:11:03 -0700 | [diff] [blame] | 470 | * inotify_init_watch - initialize an inotify watch |
| 471 | * @watch: watch to initialize |
| 472 | */ |
| 473 | void inotify_init_watch(struct inotify_watch *watch) |
| 474 | { |
| 475 | INIT_LIST_HEAD(&watch->h_list); |
| 476 | INIT_LIST_HEAD(&watch->i_list); |
| 477 | atomic_set(&watch->count, 0); |
| 478 | get_inotify_watch(watch); /* initial get */ |
| 479 | } |
| 480 | EXPORT_SYMBOL_GPL(inotify_init_watch); |
| 481 | |
| 482 | /** |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 483 | * inotify_destroy - clean up and destroy an inotify instance |
| 484 | * @ih: inotify handle |
| 485 | */ |
| 486 | void inotify_destroy(struct inotify_handle *ih) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 487 | { |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 488 | /* |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 489 | * Destroy all of the watches for this handle. Unfortunately, not very |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 490 | * pretty. We cannot do a simple iteration over the list, because we |
| 491 | * do not know the inode until we iterate to the watch. But we need to |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 492 | * hold inode->inotify_mutex before ih->mutex. The following works. |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 493 | */ |
| 494 | while (1) { |
| 495 | struct inotify_watch *watch; |
| 496 | struct list_head *watches; |
| 497 | struct inode *inode; |
| 498 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 499 | mutex_lock(&ih->mutex); |
| 500 | watches = &ih->watches; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 501 | if (list_empty(watches)) { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 502 | mutex_unlock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 503 | break; |
| 504 | } |
Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 505 | watch = list_first_entry(watches, struct inotify_watch, h_list); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 506 | get_inotify_watch(watch); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 507 | mutex_unlock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 508 | |
| 509 | inode = watch->inode; |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 510 | mutex_lock(&inode->inotify_mutex); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 511 | mutex_lock(&ih->mutex); |
Amy Griffis | 66055a4 | 2006-05-20 15:00:06 -0700 | [diff] [blame] | 512 | |
| 513 | /* make sure we didn't race with another list removal */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 514 | if (likely(idr_find(&ih->idr, watch->wd))) { |
| 515 | remove_watch_no_event(watch, ih); |
| 516 | put_inotify_watch(watch); |
| 517 | } |
Amy Griffis | 66055a4 | 2006-05-20 15:00:06 -0700 | [diff] [blame] | 518 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 519 | mutex_unlock(&ih->mutex); |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 520 | mutex_unlock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 521 | put_inotify_watch(watch); |
| 522 | } |
| 523 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 524 | /* free this handle: the put matching the get in inotify_init() */ |
| 525 | put_inotify_handle(ih); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 526 | } |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 527 | EXPORT_SYMBOL_GPL(inotify_destroy); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 528 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 529 | /** |
Amy Griffis | a9dc971 | 2006-06-01 13:11:03 -0700 | [diff] [blame] | 530 | * inotify_find_watch - find an existing watch for an (ih,inode) pair |
| 531 | * @ih: inotify handle |
| 532 | * @inode: inode to watch |
| 533 | * @watchp: pointer to existing inotify_watch |
| 534 | * |
| 535 | * Caller must pin given inode (via nameidata). |
| 536 | */ |
| 537 | s32 inotify_find_watch(struct inotify_handle *ih, struct inode *inode, |
| 538 | struct inotify_watch **watchp) |
| 539 | { |
| 540 | struct inotify_watch *old; |
| 541 | int ret = -ENOENT; |
| 542 | |
| 543 | mutex_lock(&inode->inotify_mutex); |
| 544 | mutex_lock(&ih->mutex); |
| 545 | |
| 546 | old = inode_find_handle(inode, ih); |
| 547 | if (unlikely(old)) { |
| 548 | get_inotify_watch(old); /* caller must put watch */ |
| 549 | *watchp = old; |
| 550 | ret = old->wd; |
| 551 | } |
| 552 | |
| 553 | mutex_unlock(&ih->mutex); |
| 554 | mutex_unlock(&inode->inotify_mutex); |
| 555 | |
| 556 | return ret; |
| 557 | } |
| 558 | EXPORT_SYMBOL_GPL(inotify_find_watch); |
| 559 | |
| 560 | /** |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 561 | * inotify_find_update_watch - find and update the mask of an existing watch |
| 562 | * @ih: inotify handle |
| 563 | * @inode: inode's watch to update |
| 564 | * @mask: mask of events to watch |
| 565 | * |
| 566 | * Caller must pin given inode (via nameidata). |
| 567 | */ |
| 568 | s32 inotify_find_update_watch(struct inotify_handle *ih, struct inode *inode, |
| 569 | u32 mask) |
| 570 | { |
| 571 | struct inotify_watch *old; |
| 572 | int mask_add = 0; |
| 573 | int ret; |
| 574 | |
| 575 | if (mask & IN_MASK_ADD) |
| 576 | mask_add = 1; |
| 577 | |
| 578 | /* don't allow invalid bits: we don't want flags set */ |
| 579 | mask &= IN_ALL_EVENTS | IN_ONESHOT; |
| 580 | if (unlikely(!mask)) |
| 581 | return -EINVAL; |
| 582 | |
| 583 | mutex_lock(&inode->inotify_mutex); |
| 584 | mutex_lock(&ih->mutex); |
| 585 | |
| 586 | /* |
| 587 | * Handle the case of re-adding a watch on an (inode,ih) pair that we |
| 588 | * are already watching. We just update the mask and return its wd. |
| 589 | */ |
| 590 | old = inode_find_handle(inode, ih); |
| 591 | if (unlikely(!old)) { |
| 592 | ret = -ENOENT; |
| 593 | goto out; |
| 594 | } |
| 595 | |
| 596 | if (mask_add) |
| 597 | old->mask |= mask; |
| 598 | else |
| 599 | old->mask = mask; |
| 600 | ret = old->wd; |
| 601 | out: |
| 602 | mutex_unlock(&ih->mutex); |
| 603 | mutex_unlock(&inode->inotify_mutex); |
| 604 | return ret; |
| 605 | } |
| 606 | EXPORT_SYMBOL_GPL(inotify_find_update_watch); |
| 607 | |
| 608 | /** |
| 609 | * inotify_add_watch - add a watch to an inotify instance |
| 610 | * @ih: inotify handle |
| 611 | * @watch: caller allocated watch structure |
| 612 | * @inode: inode to watch |
| 613 | * @mask: mask of events to watch |
| 614 | * |
| 615 | * Caller must pin given inode (via nameidata). |
| 616 | * Caller must ensure it only calls inotify_add_watch() once per watch. |
| 617 | * Calls inotify_handle_get_wd() so may sleep. |
| 618 | */ |
| 619 | s32 inotify_add_watch(struct inotify_handle *ih, struct inotify_watch *watch, |
| 620 | struct inode *inode, u32 mask) |
| 621 | { |
| 622 | int ret = 0; |
Nick Piggin | d599e36 | 2008-02-06 01:37:28 -0800 | [diff] [blame] | 623 | int newly_watched; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 624 | |
| 625 | /* don't allow invalid bits: we don't want flags set */ |
| 626 | mask &= IN_ALL_EVENTS | IN_ONESHOT; |
| 627 | if (unlikely(!mask)) |
| 628 | return -EINVAL; |
| 629 | watch->mask = mask; |
| 630 | |
| 631 | mutex_lock(&inode->inotify_mutex); |
| 632 | mutex_lock(&ih->mutex); |
| 633 | |
| 634 | /* Initialize a new watch */ |
| 635 | ret = inotify_handle_get_wd(ih, watch); |
| 636 | if (unlikely(ret)) |
| 637 | goto out; |
| 638 | ret = watch->wd; |
| 639 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 640 | /* save a reference to handle and bump the count to make it official */ |
| 641 | get_inotify_handle(ih); |
| 642 | watch->ih = ih; |
| 643 | |
| 644 | /* |
| 645 | * Save a reference to the inode and bump the ref count to make it |
| 646 | * official. We hold a reference to nameidata, which makes this safe. |
| 647 | */ |
| 648 | watch->inode = igrab(inode); |
| 649 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 650 | /* Add the watch to the handle's and the inode's list */ |
Nick Piggin | d599e36 | 2008-02-06 01:37:28 -0800 | [diff] [blame] | 651 | newly_watched = !inotify_inode_watched(inode); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 652 | list_add(&watch->h_list, &ih->watches); |
| 653 | list_add(&watch->i_list, &inode->inotify_watches); |
Nick Piggin | d599e36 | 2008-02-06 01:37:28 -0800 | [diff] [blame] | 654 | /* |
| 655 | * Set child flags _after_ adding the watch, so there is no race |
| 656 | * windows where newly instantiated children could miss their parent's |
| 657 | * watched flag. |
| 658 | */ |
| 659 | if (newly_watched) |
| 660 | set_dentry_child_flags(inode, 1); |
| 661 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 662 | out: |
| 663 | mutex_unlock(&ih->mutex); |
| 664 | mutex_unlock(&inode->inotify_mutex); |
| 665 | return ret; |
| 666 | } |
| 667 | EXPORT_SYMBOL_GPL(inotify_add_watch); |
| 668 | |
| 669 | /** |
Al Viro | b9efe8a | 2007-06-07 12:21:44 -0400 | [diff] [blame] | 670 | * inotify_clone_watch - put the watch next to existing one |
| 671 | * @old: already installed watch |
| 672 | * @new: new watch |
| 673 | * |
| 674 | * Caller must hold the inotify_mutex of inode we are dealing with; |
| 675 | * it is expected to remove the old watch before unlocking the inode. |
| 676 | */ |
| 677 | s32 inotify_clone_watch(struct inotify_watch *old, struct inotify_watch *new) |
| 678 | { |
| 679 | struct inotify_handle *ih = old->ih; |
| 680 | int ret = 0; |
| 681 | |
| 682 | new->mask = old->mask; |
| 683 | new->ih = ih; |
| 684 | |
| 685 | mutex_lock(&ih->mutex); |
| 686 | |
| 687 | /* Initialize a new watch */ |
| 688 | ret = inotify_handle_get_wd(ih, new); |
| 689 | if (unlikely(ret)) |
| 690 | goto out; |
| 691 | ret = new->wd; |
| 692 | |
| 693 | get_inotify_handle(ih); |
| 694 | |
| 695 | new->inode = igrab(old->inode); |
| 696 | |
| 697 | list_add(&new->h_list, &ih->watches); |
| 698 | list_add(&new->i_list, &old->inode->inotify_watches); |
| 699 | out: |
| 700 | mutex_unlock(&ih->mutex); |
| 701 | return ret; |
| 702 | } |
| 703 | |
Al Viro | 455434d | 2007-06-07 12:22:59 -0400 | [diff] [blame] | 704 | void inotify_evict_watch(struct inotify_watch *watch) |
| 705 | { |
| 706 | get_inotify_watch(watch); |
| 707 | mutex_lock(&watch->ih->mutex); |
| 708 | inotify_remove_watch_locked(watch->ih, watch); |
| 709 | mutex_unlock(&watch->ih->mutex); |
| 710 | } |
| 711 | |
Al Viro | b9efe8a | 2007-06-07 12:21:44 -0400 | [diff] [blame] | 712 | /** |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 713 | * inotify_rm_wd - remove a watch from an inotify instance |
| 714 | * @ih: inotify handle |
| 715 | * @wd: watch descriptor to remove |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 716 | * |
| 717 | * Can sleep. |
| 718 | */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 719 | int inotify_rm_wd(struct inotify_handle *ih, u32 wd) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 720 | { |
| 721 | struct inotify_watch *watch; |
| 722 | struct inode *inode; |
| 723 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 724 | mutex_lock(&ih->mutex); |
| 725 | watch = idr_find(&ih->idr, wd); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 726 | if (unlikely(!watch)) { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 727 | mutex_unlock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 728 | return -EINVAL; |
| 729 | } |
| 730 | get_inotify_watch(watch); |
| 731 | inode = watch->inode; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 732 | mutex_unlock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 733 | |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 734 | mutex_lock(&inode->inotify_mutex); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 735 | mutex_lock(&ih->mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 736 | |
| 737 | /* make sure that we did not race */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 738 | if (likely(idr_find(&ih->idr, wd) == watch)) |
Amy Griffis | 3ca1006 | 2006-06-01 13:11:05 -0700 | [diff] [blame] | 739 | inotify_remove_watch_locked(ih, watch); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 740 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 741 | mutex_unlock(&ih->mutex); |
Ingo Molnar | d4f9af9 | 2006-03-23 03:00:30 -0800 | [diff] [blame] | 742 | mutex_unlock(&inode->inotify_mutex); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 743 | put_inotify_watch(watch); |
| 744 | |
| 745 | return 0; |
| 746 | } |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 747 | EXPORT_SYMBOL_GPL(inotify_rm_wd); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 748 | |
Amy Griffis | a9dc971 | 2006-06-01 13:11:03 -0700 | [diff] [blame] | 749 | /** |
| 750 | * inotify_rm_watch - remove a watch from an inotify instance |
| 751 | * @ih: inotify handle |
| 752 | * @watch: watch to remove |
| 753 | * |
| 754 | * Can sleep. |
| 755 | */ |
| 756 | int inotify_rm_watch(struct inotify_handle *ih, |
| 757 | struct inotify_watch *watch) |
| 758 | { |
| 759 | return inotify_rm_wd(ih, watch->wd); |
| 760 | } |
| 761 | EXPORT_SYMBOL_GPL(inotify_rm_watch); |
| 762 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 763 | /* |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 764 | * inotify_setup - core initialization function |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 765 | */ |
Robert Love | b680716 | 2005-07-25 15:07:13 -0400 | [diff] [blame] | 766 | static int __init inotify_setup(void) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 767 | { |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 768 | atomic_set(&inotify_cookie, 0); |
| 769 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 770 | return 0; |
| 771 | } |
| 772 | |
Robert Love | b680716 | 2005-07-25 15:07:13 -0400 | [diff] [blame] | 773 | module_init(inotify_setup); |