1 #ifndef _LINUX_FS_NOTIFY_H
2 #define _LINUX_FS_NOTIFY_H
5 * include/linux/fsnotify.h - generic hooks for filesystem notification, to
6 * reduce in-source duplication from both dnotify and inotify.
8 * We don't compile any of this away in some complicated menagerie of ifdefs.
9 * Instead, we rely on the code inside to optimize away as needed.
11 * (C) Copyright 2005 Robert Love
14 #include <linux/dnotify.h>
15 #include <linux/inotify.h>
16 #include <linux/fsnotify_backend.h>
17 #include <linux/audit.h>
20 * fsnotify_d_instantiate - instantiate a dentry for inode
21 * Called with dcache_lock held.
23 static inline void fsnotify_d_instantiate(struct dentry
*entry
,
26 __fsnotify_d_instantiate(entry
, inode
);
28 inotify_d_instantiate(entry
, inode
);
31 /* Notify this dentry's parent about a child's events. */
32 static inline void fsnotify_parent(struct dentry
*dentry
, __u32 mask
)
34 __fsnotify_parent(dentry
, mask
);
36 inotify_dentry_parent_queue_event(dentry
, mask
, 0, dentry
->d_name
.name
);
40 * fsnotify_d_move - entry has been moved
41 * Called with dcache_lock and entry->d_lock held.
43 static inline void fsnotify_d_move(struct dentry
*entry
)
46 * On move we need to update entry->d_flags to indicate if the new parent
47 * cares about events from this entry.
49 __fsnotify_update_dcache_flags(entry
);
51 inotify_d_move(entry
);
55 * fsnotify_link_count - inode's link count changed
57 static inline void fsnotify_link_count(struct inode
*inode
)
59 inotify_inode_queue_event(inode
, IN_ATTRIB
, 0, NULL
, NULL
);
61 fsnotify(inode
, FS_ATTRIB
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
65 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
67 static inline void fsnotify_move(struct inode
*old_dir
, struct inode
*new_dir
,
69 int isdir
, struct inode
*target
, struct dentry
*moved
)
71 struct inode
*source
= moved
->d_inode
;
72 u32 in_cookie
= inotify_get_cookie();
73 u32 fs_cookie
= fsnotify_get_cookie();
74 __u32 old_dir_mask
= (FS_EVENT_ON_CHILD
| FS_MOVED_FROM
);
75 __u32 new_dir_mask
= (FS_EVENT_ON_CHILD
| FS_MOVED_TO
);
76 const char *new_name
= moved
->d_name
.name
;
78 if (old_dir
== new_dir
)
79 old_dir_mask
|= FS_DN_RENAME
;
83 old_dir_mask
|= FS_IN_ISDIR
;
84 new_dir_mask
|= FS_IN_ISDIR
;
87 inotify_inode_queue_event(old_dir
, IN_MOVED_FROM
|isdir
, in_cookie
, old_name
,
89 inotify_inode_queue_event(new_dir
, IN_MOVED_TO
|isdir
, in_cookie
, new_name
,
92 fsnotify(old_dir
, old_dir_mask
, old_dir
, FSNOTIFY_EVENT_INODE
, old_name
, fs_cookie
);
93 fsnotify(new_dir
, new_dir_mask
, new_dir
, FSNOTIFY_EVENT_INODE
, new_name
, fs_cookie
);
96 inotify_inode_queue_event(target
, IN_DELETE_SELF
, 0, NULL
, NULL
);
97 inotify_inode_is_dead(target
);
99 /* this is really a link_count change not a removal */
100 fsnotify_link_count(target
);
104 inotify_inode_queue_event(source
, IN_MOVE_SELF
, 0, NULL
, NULL
);
105 fsnotify(source
, FS_MOVE_SELF
, moved
->d_inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
107 audit_inode_child(moved
, new_dir
);
111 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
113 static inline void fsnotify_inode_delete(struct inode
*inode
)
115 __fsnotify_inode_delete(inode
);
119 * fsnotify_nameremove - a filename was removed from a directory
121 static inline void fsnotify_nameremove(struct dentry
*dentry
, int isdir
)
123 __u32 mask
= FS_DELETE
;
128 fsnotify_parent(dentry
, mask
);
132 * fsnotify_inoderemove - an inode is going away
134 static inline void fsnotify_inoderemove(struct inode
*inode
)
136 inotify_inode_queue_event(inode
, IN_DELETE_SELF
, 0, NULL
, NULL
);
137 inotify_inode_is_dead(inode
);
139 fsnotify(inode
, FS_DELETE_SELF
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
140 __fsnotify_inode_delete(inode
);
144 * fsnotify_create - 'name' was linked in
146 static inline void fsnotify_create(struct inode
*inode
, struct dentry
*dentry
)
148 inotify_inode_queue_event(inode
, IN_CREATE
, 0, dentry
->d_name
.name
,
150 audit_inode_child(dentry
, inode
);
152 fsnotify(inode
, FS_CREATE
, dentry
->d_inode
, FSNOTIFY_EVENT_INODE
, dentry
->d_name
.name
, 0);
156 * fsnotify_link - new hardlink in 'inode' directory
157 * Note: We have to pass also the linked inode ptr as some filesystems leave
158 * new_dentry->d_inode NULL and instantiate inode pointer later
160 static inline void fsnotify_link(struct inode
*dir
, struct inode
*inode
, struct dentry
*new_dentry
)
162 inotify_inode_queue_event(dir
, IN_CREATE
, 0, new_dentry
->d_name
.name
,
164 fsnotify_link_count(inode
);
165 audit_inode_child(new_dentry
, dir
);
167 fsnotify(dir
, FS_CREATE
, inode
, FSNOTIFY_EVENT_INODE
, new_dentry
->d_name
.name
, 0);
171 * fsnotify_mkdir - directory 'name' was created
173 static inline void fsnotify_mkdir(struct inode
*inode
, struct dentry
*dentry
)
175 __u32 mask
= (FS_CREATE
| FS_IN_ISDIR
);
176 struct inode
*d_inode
= dentry
->d_inode
;
178 inotify_inode_queue_event(inode
, mask
, 0, dentry
->d_name
.name
, d_inode
);
179 audit_inode_child(dentry
, inode
);
181 fsnotify(inode
, mask
, d_inode
, FSNOTIFY_EVENT_INODE
, dentry
->d_name
.name
, 0);
185 * fsnotify_access - file was read
187 static inline void fsnotify_access(struct dentry
*dentry
)
189 struct inode
*inode
= dentry
->d_inode
;
190 __u32 mask
= FS_ACCESS
;
192 if (S_ISDIR(inode
->i_mode
))
195 inotify_inode_queue_event(inode
, mask
, 0, NULL
, NULL
);
197 fsnotify_parent(dentry
, mask
);
198 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
202 * fsnotify_modify - file was modified
204 static inline void fsnotify_modify(struct dentry
*dentry
)
206 struct inode
*inode
= dentry
->d_inode
;
207 __u32 mask
= FS_MODIFY
;
209 if (S_ISDIR(inode
->i_mode
))
212 inotify_inode_queue_event(inode
, mask
, 0, NULL
, NULL
);
214 fsnotify_parent(dentry
, mask
);
215 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
219 * fsnotify_open - file was opened
221 static inline void fsnotify_open(struct dentry
*dentry
)
223 struct inode
*inode
= dentry
->d_inode
;
224 __u32 mask
= FS_OPEN
;
226 if (S_ISDIR(inode
->i_mode
))
229 inotify_inode_queue_event(inode
, mask
, 0, NULL
, NULL
);
231 fsnotify_parent(dentry
, mask
);
232 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
236 * fsnotify_close - file was closed
238 static inline void fsnotify_close(struct file
*file
)
240 struct dentry
*dentry
= file
->f_path
.dentry
;
241 struct inode
*inode
= dentry
->d_inode
;
242 fmode_t mode
= file
->f_mode
;
243 __u32 mask
= (mode
& FMODE_WRITE
) ? FS_CLOSE_WRITE
: FS_CLOSE_NOWRITE
;
245 if (S_ISDIR(inode
->i_mode
))
248 inotify_inode_queue_event(inode
, mask
, 0, NULL
, NULL
);
250 fsnotify_parent(dentry
, mask
);
251 fsnotify(inode
, mask
, file
, FSNOTIFY_EVENT_FILE
, NULL
, 0);
255 * fsnotify_xattr - extended attributes were changed
257 static inline void fsnotify_xattr(struct dentry
*dentry
)
259 struct inode
*inode
= dentry
->d_inode
;
260 __u32 mask
= FS_ATTRIB
;
262 if (S_ISDIR(inode
->i_mode
))
265 inotify_inode_queue_event(inode
, mask
, 0, NULL
, NULL
);
267 fsnotify_parent(dentry
, mask
);
268 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
272 * fsnotify_change - notify_change event. file was modified and/or metadata
275 static inline void fsnotify_change(struct dentry
*dentry
, unsigned int ia_valid
)
277 struct inode
*inode
= dentry
->d_inode
;
280 if (ia_valid
& ATTR_UID
)
282 if (ia_valid
& ATTR_GID
)
284 if (ia_valid
& ATTR_SIZE
)
287 /* both times implies a utime(s) call */
288 if ((ia_valid
& (ATTR_ATIME
| ATTR_MTIME
)) == (ATTR_ATIME
| ATTR_MTIME
))
290 else if (ia_valid
& ATTR_ATIME
)
292 else if (ia_valid
& ATTR_MTIME
)
295 if (ia_valid
& ATTR_MODE
)
299 if (S_ISDIR(inode
->i_mode
))
301 inotify_inode_queue_event(inode
, mask
, 0, NULL
, NULL
);
303 fsnotify_parent(dentry
, mask
);
304 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
308 #if defined(CONFIG_INOTIFY) || defined(CONFIG_FSNOTIFY) /* notify helpers */
311 * fsnotify_oldname_init - save off the old filename before we change it
313 static inline const char *fsnotify_oldname_init(const char *name
)
315 return kstrdup(name
, GFP_KERNEL
);
319 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
321 static inline void fsnotify_oldname_free(const char *old_name
)
326 #else /* CONFIG_INOTIFY || CONFIG_FSNOTIFY */
328 static inline const char *fsnotify_oldname_init(const char *name
)
333 static inline void fsnotify_oldname_free(const char *old_name
)
337 #endif /* ! CONFIG_INOTIFY */
339 #endif /* _LINUX_FS_NOTIFY_H */