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