1
2
3
4
5
6
7#ifndef __LINUX_FSNOTIFY_BACKEND_H
8#define __LINUX_FSNOTIFY_BACKEND_H
9
10#ifdef __KERNEL__
11
12#include <linux/idr.h>
13#include <linux/fs.h>
14#include <linux/list.h>
15#include <linux/path.h>
16#include <linux/spinlock.h>
17#include <linux/types.h>
18#include <linux/atomic.h>
19
20
21
22
23
24
25
26#define FS_ACCESS 0x00000001
27#define FS_MODIFY 0x00000002
28#define FS_ATTRIB 0x00000004
29#define FS_CLOSE_WRITE 0x00000008
30#define FS_CLOSE_NOWRITE 0x00000010
31#define FS_OPEN 0x00000020
32#define FS_MOVED_FROM 0x00000040
33#define FS_MOVED_TO 0x00000080
34#define FS_CREATE 0x00000100
35#define FS_DELETE 0x00000200
36#define FS_DELETE_SELF 0x00000400
37#define FS_MOVE_SELF 0x00000800
38
39#define FS_UNMOUNT 0x00002000
40#define FS_Q_OVERFLOW 0x00004000
41#define FS_IN_IGNORED 0x00008000
42
43#define FS_OPEN_PERM 0x00010000
44#define FS_ACCESS_PERM 0x00020000
45
46#define FS_EXCL_UNLINK 0x04000000
47#define FS_ISDIR 0x40000000
48#define FS_IN_ONESHOT 0x80000000
49
50#define FS_DN_RENAME 0x10000000
51#define FS_DN_MULTISHOT 0x20000000
52
53
54
55#define FS_EVENT_ON_CHILD 0x08000000
56
57
58
59#define FS_EVENTS_POSS_ON_CHILD (FS_ACCESS | FS_MODIFY | FS_ATTRIB |\
60 FS_CLOSE_WRITE | FS_CLOSE_NOWRITE | FS_OPEN |\
61 FS_MOVED_FROM | FS_MOVED_TO | FS_CREATE |\
62 FS_DELETE | FS_OPEN_PERM | FS_ACCESS_PERM)
63
64#define FS_MOVE (FS_MOVED_FROM | FS_MOVED_TO)
65
66#define ALL_FSNOTIFY_PERM_EVENTS (FS_OPEN_PERM | FS_ACCESS_PERM)
67
68#define ALL_FSNOTIFY_EVENTS (FS_ACCESS | FS_MODIFY | FS_ATTRIB | \
69 FS_CLOSE_WRITE | FS_CLOSE_NOWRITE | FS_OPEN | \
70 FS_MOVED_FROM | FS_MOVED_TO | FS_CREATE | \
71 FS_DELETE | FS_DELETE_SELF | FS_MOVE_SELF | \
72 FS_UNMOUNT | FS_Q_OVERFLOW | FS_IN_IGNORED | \
73 FS_OPEN_PERM | FS_ACCESS_PERM | FS_EXCL_UNLINK | \
74 FS_ISDIR | FS_IN_ONESHOT | FS_DN_RENAME | \
75 FS_DN_MULTISHOT | FS_EVENT_ON_CHILD)
76
77struct fsnotify_group;
78struct fsnotify_event;
79struct fsnotify_mark;
80struct fsnotify_event_private_data;
81struct fsnotify_fname;
82
83
84
85
86
87
88
89
90
91
92
93
94struct fsnotify_ops {
95 int (*handle_event)(struct fsnotify_group *group,
96 struct inode *inode,
97 struct fsnotify_mark *inode_mark,
98 struct fsnotify_mark *vfsmount_mark,
99 u32 mask, void *data, int data_type,
100 const unsigned char *file_name, u32 cookie);
101 void (*free_group_priv)(struct fsnotify_group *group);
102 void (*freeing_mark)(struct fsnotify_mark *mark, struct fsnotify_group *group);
103 void (*free_event)(struct fsnotify_event *event);
104};
105
106
107
108
109
110
111struct fsnotify_event {
112 struct list_head list;
113
114 struct inode *inode;
115 u32 mask;
116};
117
118
119
120
121
122
123
124struct fsnotify_group {
125
126
127
128
129
130
131
132
133 atomic_t refcnt;
134
135 const struct fsnotify_ops *ops;
136
137
138 spinlock_t notification_lock;
139 struct list_head notification_list;
140 wait_queue_head_t notification_waitq;
141 unsigned int q_len;
142 unsigned int max_events;
143
144
145
146
147 #define FS_PRIO_0 0
148 #define FS_PRIO_1 1
149 #define FS_PRIO_2 2
150 unsigned int priority;
151 bool shutdown;
152
153
154 struct mutex mark_mutex;
155 atomic_t num_marks;
156
157
158 struct list_head marks_list;
159
160 struct fasync_struct *fsn_fa;
161
162 struct fsnotify_event *overflow_event;
163
164
165
166
167 union {
168 void *private;
169#ifdef CONFIG_INOTIFY_USER
170 struct inotify_group_private_data {
171 spinlock_t idr_lock;
172 struct idr idr;
173 struct user_struct *user;
174 } inotify_data;
175#endif
176#ifdef CONFIG_FANOTIFY
177 struct fanotify_group_private_data {
178#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
179
180 struct list_head access_list;
181 wait_queue_head_t access_waitq;
182#endif
183 int f_flags;
184 unsigned int max_marks;
185 struct user_struct *user;
186 } fanotify_data;
187#endif
188 };
189};
190
191
192#define FSNOTIFY_EVENT_NONE 0
193#define FSNOTIFY_EVENT_PATH 1
194#define FSNOTIFY_EVENT_INODE 2
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210struct fsnotify_mark {
211
212 __u32 mask;
213
214
215 atomic_t refcnt;
216
217
218 struct fsnotify_group *group;
219
220
221
222 struct list_head g_list;
223
224 spinlock_t lock;
225
226 struct hlist_node obj_list;
227 union {
228 struct inode *inode;
229 struct vfsmount *mnt;
230 };
231
232 __u32 ignored_mask;
233#define FSNOTIFY_MARK_FLAG_INODE 0x01
234#define FSNOTIFY_MARK_FLAG_VFSMOUNT 0x02
235#define FSNOTIFY_MARK_FLAG_OBJECT_PINNED 0x04
236#define FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY 0x08
237#define FSNOTIFY_MARK_FLAG_ALIVE 0x10
238#define FSNOTIFY_MARK_FLAG_ATTACHED 0x20
239 unsigned int flags;
240 void (*free_mark)(struct fsnotify_mark *mark);
241};
242
243#ifdef CONFIG_FSNOTIFY
244
245
246
247
248extern int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is,
249 const unsigned char *name, u32 cookie);
250extern int __fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask);
251extern void __fsnotify_inode_delete(struct inode *inode);
252extern void __fsnotify_vfsmount_delete(struct vfsmount *mnt);
253extern u32 fsnotify_get_cookie(void);
254
255static inline int fsnotify_inode_watches_children(struct inode *inode)
256{
257
258 if (!(inode->i_fsnotify_mask & FS_EVENT_ON_CHILD))
259 return 0;
260
261
262 return inode->i_fsnotify_mask & FS_EVENTS_POSS_ON_CHILD;
263}
264
265
266
267
268
269static inline void fsnotify_update_flags(struct dentry *dentry)
270{
271 assert_spin_locked(&dentry->d_lock);
272
273
274
275
276
277
278
279
280 if (fsnotify_inode_watches_children(dentry->d_parent->d_inode))
281 dentry->d_flags |= DCACHE_FSNOTIFY_PARENT_WATCHED;
282 else
283 dentry->d_flags &= ~DCACHE_FSNOTIFY_PARENT_WATCHED;
284}
285
286
287
288
289extern struct fsnotify_group *fsnotify_alloc_group(const struct fsnotify_ops *ops);
290
291extern void fsnotify_get_group(struct fsnotify_group *group);
292
293extern void fsnotify_put_group(struct fsnotify_group *group);
294
295extern void fsnotify_group_stop_queueing(struct fsnotify_group *group);
296
297extern void fsnotify_destroy_group(struct fsnotify_group *group);
298
299extern int fsnotify_fasync(int fd, struct file *file, int on);
300
301extern void fsnotify_destroy_event(struct fsnotify_group *group,
302 struct fsnotify_event *event);
303
304extern int fsnotify_add_event(struct fsnotify_group *group,
305 struct fsnotify_event *event,
306 int (*merge)(struct list_head *,
307 struct fsnotify_event *));
308
309extern bool fsnotify_notify_queue_is_empty(struct fsnotify_group *group);
310
311extern struct fsnotify_event *fsnotify_peek_first_event(struct fsnotify_group *group);
312
313extern struct fsnotify_event *fsnotify_remove_first_event(struct fsnotify_group *group);
314
315
316
317
318extern void fsnotify_recalc_vfsmount_mask(struct vfsmount *mnt);
319
320extern void fsnotify_recalc_inode_mask(struct inode *inode);
321extern void fsnotify_init_mark(struct fsnotify_mark *mark, void (*free_mark)(struct fsnotify_mark *mark));
322
323extern struct fsnotify_mark *fsnotify_find_inode_mark(struct fsnotify_group *group, struct inode *inode);
324
325extern struct fsnotify_mark *fsnotify_find_vfsmount_mark(struct fsnotify_group *group, struct vfsmount *mnt);
326
327extern void fsnotify_duplicate_mark(struct fsnotify_mark *new, struct fsnotify_mark *old);
328
329extern void fsnotify_set_mark_ignored_mask_locked(struct fsnotify_mark *mark, __u32 mask);
330
331extern void fsnotify_set_mark_mask_locked(struct fsnotify_mark *mark, __u32 mask);
332
333extern int fsnotify_add_mark(struct fsnotify_mark *mark, struct fsnotify_group *group,
334 struct inode *inode, struct vfsmount *mnt, int allow_dups);
335extern int fsnotify_add_mark_locked(struct fsnotify_mark *mark, struct fsnotify_group *group,
336 struct inode *inode, struct vfsmount *mnt, int allow_dups);
337
338extern void fsnotify_destroy_mark(struct fsnotify_mark *mark,
339 struct fsnotify_group *group);
340
341extern void fsnotify_detach_mark(struct fsnotify_mark *mark);
342
343extern void fsnotify_free_mark(struct fsnotify_mark *mark);
344
345extern void fsnotify_clear_vfsmount_marks_by_group(struct fsnotify_group *group);
346
347extern void fsnotify_clear_inode_marks_by_group(struct fsnotify_group *group);
348
349extern void fsnotify_clear_marks_by_group_flags(struct fsnotify_group *group, unsigned int flags);
350extern void fsnotify_get_mark(struct fsnotify_mark *mark);
351extern void fsnotify_put_mark(struct fsnotify_mark *mark);
352extern void fsnotify_unmount_inodes(struct super_block *sb);
353
354
355extern void fsnotify_init_event(struct fsnotify_event *event,
356 struct inode *to_tell, u32 mask);
357
358#else
359
360static inline int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is,
361 const unsigned char *name, u32 cookie)
362{
363 return 0;
364}
365
366static inline int __fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask)
367{
368 return 0;
369}
370
371static inline void __fsnotify_inode_delete(struct inode *inode)
372{}
373
374static inline void __fsnotify_vfsmount_delete(struct vfsmount *mnt)
375{}
376
377static inline void fsnotify_update_flags(struct dentry *dentry)
378{}
379
380static inline u32 fsnotify_get_cookie(void)
381{
382 return 0;
383}
384
385static inline void fsnotify_unmount_inodes(struct super_block *sb)
386{}
387
388#endif
389
390#endif
391
392#endif
393