1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include <linux/fs.h>
20#include <linux/module.h>
21#include <linux/sched.h>
22#include <linux/dnotify.h>
23#include <linux/init.h>
24#include <linux/spinlock.h>
25#include <linux/slab.h>
26#include <linux/fdtable.h>
27#include <linux/fsnotify_backend.h>
28
29int dir_notify_enable __read_mostly = 1;
30
31static struct kmem_cache *dnotify_struct_cache __read_mostly;
32static struct kmem_cache *dnotify_mark_cache __read_mostly;
33static struct fsnotify_group *dnotify_group __read_mostly;
34
35
36
37
38
39
40struct dnotify_mark {
41 struct fsnotify_mark fsn_mark;
42 struct dnotify_struct *dn;
43};
44
45
46
47
48
49
50
51
52
53static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark)
54{
55 __u32 new_mask = 0;
56 struct dnotify_struct *dn;
57 struct dnotify_mark *dn_mark = container_of(fsn_mark,
58 struct dnotify_mark,
59 fsn_mark);
60
61 assert_spin_locked(&fsn_mark->lock);
62
63 for (dn = dn_mark->dn; dn != NULL; dn = dn->dn_next)
64 new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT);
65 if (fsn_mark->mask == new_mask)
66 return;
67 fsn_mark->mask = new_mask;
68
69 fsnotify_recalc_mask(fsn_mark->connector);
70}
71
72
73
74
75
76
77
78
79
80static int dnotify_handle_event(struct fsnotify_group *group,
81 struct inode *inode,
82 struct fsnotify_mark *inode_mark,
83 struct fsnotify_mark *vfsmount_mark,
84 u32 mask, const void *data, int data_type,
85 const unsigned char *file_name, u32 cookie,
86 struct fsnotify_iter_info *iter_info)
87{
88 struct dnotify_mark *dn_mark;
89 struct dnotify_struct *dn;
90 struct dnotify_struct **prev;
91 struct fown_struct *fown;
92 __u32 test_mask = mask & ~FS_EVENT_ON_CHILD;
93
94
95 if (!S_ISDIR(inode->i_mode))
96 return 0;
97
98 BUG_ON(vfsmount_mark);
99
100 dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark);
101
102 spin_lock(&inode_mark->lock);
103 prev = &dn_mark->dn;
104 while ((dn = *prev) != NULL) {
105 if ((dn->dn_mask & test_mask) == 0) {
106 prev = &dn->dn_next;
107 continue;
108 }
109 fown = &dn->dn_filp->f_owner;
110 send_sigio(fown, dn->dn_fd, POLL_MSG);
111 if (dn->dn_mask & FS_DN_MULTISHOT)
112 prev = &dn->dn_next;
113 else {
114 *prev = dn->dn_next;
115 kmem_cache_free(dnotify_struct_cache, dn);
116 dnotify_recalc_inode_mask(inode_mark);
117 }
118 }
119
120 spin_unlock(&inode_mark->lock);
121
122 return 0;
123}
124
125static void dnotify_free_mark(struct fsnotify_mark *fsn_mark)
126{
127 struct dnotify_mark *dn_mark = container_of(fsn_mark,
128 struct dnotify_mark,
129 fsn_mark);
130
131 BUG_ON(dn_mark->dn);
132
133 kmem_cache_free(dnotify_mark_cache, dn_mark);
134}
135
136static const struct fsnotify_ops dnotify_fsnotify_ops = {
137 .handle_event = dnotify_handle_event,
138 .free_mark = dnotify_free_mark,
139};
140
141
142
143
144
145
146
147
148void dnotify_flush(struct file *filp, fl_owner_t id)
149{
150 struct fsnotify_mark *fsn_mark;
151 struct dnotify_mark *dn_mark;
152 struct dnotify_struct *dn;
153 struct dnotify_struct **prev;
154 struct inode *inode;
155 bool free = false;
156
157 inode = file_inode(filp);
158 if (!S_ISDIR(inode->i_mode))
159 return;
160
161 fsn_mark = fsnotify_find_mark(&inode->i_fsnotify_marks, dnotify_group);
162 if (!fsn_mark)
163 return;
164 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
165
166 mutex_lock(&dnotify_group->mark_mutex);
167
168 spin_lock(&fsn_mark->lock);
169 prev = &dn_mark->dn;
170 while ((dn = *prev) != NULL) {
171 if ((dn->dn_owner == id) && (dn->dn_filp == filp)) {
172 *prev = dn->dn_next;
173 kmem_cache_free(dnotify_struct_cache, dn);
174 dnotify_recalc_inode_mask(fsn_mark);
175 break;
176 }
177 prev = &dn->dn_next;
178 }
179
180 spin_unlock(&fsn_mark->lock);
181
182
183
184 if (dn_mark->dn == NULL) {
185 fsnotify_detach_mark(fsn_mark);
186 free = true;
187 }
188
189 mutex_unlock(&dnotify_group->mark_mutex);
190
191 if (free)
192 fsnotify_free_mark(fsn_mark);
193 fsnotify_put_mark(fsn_mark);
194}
195
196
197static __u32 convert_arg(unsigned long arg)
198{
199 __u32 new_mask = FS_EVENT_ON_CHILD;
200
201 if (arg & DN_MULTISHOT)
202 new_mask |= FS_DN_MULTISHOT;
203 if (arg & DN_DELETE)
204 new_mask |= (FS_DELETE | FS_MOVED_FROM);
205 if (arg & DN_MODIFY)
206 new_mask |= FS_MODIFY;
207 if (arg & DN_ACCESS)
208 new_mask |= FS_ACCESS;
209 if (arg & DN_ATTRIB)
210 new_mask |= FS_ATTRIB;
211 if (arg & DN_RENAME)
212 new_mask |= FS_DN_RENAME;
213 if (arg & DN_CREATE)
214 new_mask |= (FS_CREATE | FS_MOVED_TO);
215
216 return new_mask;
217}
218
219
220
221
222
223
224
225static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark,
226 fl_owner_t id, int fd, struct file *filp, __u32 mask)
227{
228 struct dnotify_struct *odn;
229
230 odn = dn_mark->dn;
231 while (odn != NULL) {
232
233 if ((odn->dn_owner == id) && (odn->dn_filp == filp)) {
234 odn->dn_fd = fd;
235 odn->dn_mask |= mask;
236 return -EEXIST;
237 }
238 odn = odn->dn_next;
239 }
240
241 dn->dn_mask = mask;
242 dn->dn_fd = fd;
243 dn->dn_filp = filp;
244 dn->dn_owner = id;
245 dn->dn_next = dn_mark->dn;
246 dn_mark->dn = dn;
247
248 return 0;
249}
250
251
252
253
254
255
256int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
257{
258 struct dnotify_mark *new_dn_mark, *dn_mark;
259 struct fsnotify_mark *new_fsn_mark, *fsn_mark;
260 struct dnotify_struct *dn;
261 struct inode *inode;
262 fl_owner_t id = current->files;
263 struct file *f;
264 int destroy = 0, error = 0;
265 __u32 mask;
266
267
268 new_fsn_mark = NULL;
269 dn = NULL;
270
271 if (!dir_notify_enable) {
272 error = -EINVAL;
273 goto out_err;
274 }
275
276
277 if ((arg & ~DN_MULTISHOT) == 0) {
278 dnotify_flush(filp, id);
279 error = 0;
280 goto out_err;
281 }
282
283
284 inode = file_inode(filp);
285 if (!S_ISDIR(inode->i_mode)) {
286 error = -ENOTDIR;
287 goto out_err;
288 }
289
290
291 dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL);
292 if (!dn) {
293 error = -ENOMEM;
294 goto out_err;
295 }
296
297
298 new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL);
299 if (!new_dn_mark) {
300 error = -ENOMEM;
301 goto out_err;
302 }
303
304
305 mask = convert_arg(arg);
306
307
308 new_fsn_mark = &new_dn_mark->fsn_mark;
309 fsnotify_init_mark(new_fsn_mark, dnotify_group);
310 new_fsn_mark->mask = mask;
311 new_dn_mark->dn = NULL;
312
313
314 mutex_lock(&dnotify_group->mark_mutex);
315
316
317 fsn_mark = fsnotify_find_mark(&inode->i_fsnotify_marks, dnotify_group);
318 if (fsn_mark) {
319 dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark);
320 spin_lock(&fsn_mark->lock);
321 } else {
322 fsnotify_add_mark_locked(new_fsn_mark, inode, NULL, 0);
323 spin_lock(&new_fsn_mark->lock);
324 fsn_mark = new_fsn_mark;
325 dn_mark = new_dn_mark;
326
327 new_fsn_mark = NULL;
328 }
329
330 rcu_read_lock();
331 f = fcheck(fd);
332 rcu_read_unlock();
333
334
335
336
337
338
339 if (f != filp) {
340
341
342
343
344
345
346 if (dn_mark == new_dn_mark)
347 destroy = 1;
348 goto out;
349 }
350
351 __f_setown(filp, task_pid(current), PIDTYPE_PID, 0);
352
353 error = attach_dn(dn, dn_mark, id, fd, filp, mask);
354
355 if (!error)
356 dn = NULL;
357
358
359 else if (error == -EEXIST)
360 error = 0;
361
362 dnotify_recalc_inode_mask(fsn_mark);
363out:
364 spin_unlock(&fsn_mark->lock);
365
366 if (destroy)
367 fsnotify_detach_mark(fsn_mark);
368 mutex_unlock(&dnotify_group->mark_mutex);
369 if (destroy)
370 fsnotify_free_mark(fsn_mark);
371 fsnotify_put_mark(fsn_mark);
372out_err:
373 if (new_fsn_mark)
374 fsnotify_put_mark(new_fsn_mark);
375 if (dn)
376 kmem_cache_free(dnotify_struct_cache, dn);
377 return error;
378}
379
380static int __init dnotify_init(void)
381{
382 dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC);
383 dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC);
384
385 dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops);
386 if (IS_ERR(dnotify_group))
387 panic("unable to allocate fsnotify group for dnotify\n");
388 return 0;
389}
390
391module_init(dnotify_init)
392