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/fsnotify_backend.h>
15 #include <linux/audit.h>
16 #include <linux/slab.h>
19 * fsnotify_d_instantiate - instantiate a dentry for inode
20 * Called with dcache_lock held.
22 static inline void fsnotify_d_instantiate(struct dentry
*dentry
,
25 __fsnotify_d_instantiate(dentry
, inode
);
28 /* Notify this dentry's parent about a child's events. */
29 static inline void fsnotify_parent(struct path
*path
, struct dentry
*dentry
, __u32 mask
)
32 dentry
= path
->dentry
;
34 __fsnotify_parent(path
, dentry
, mask
);
37 /* simple call site for access decisions */
38 static inline int fsnotify_perm(struct file
*file
, int mask
)
40 struct path
*path
= &file
->f_path
;
41 struct inode
*inode
= path
->dentry
->d_inode
;
42 __u32 fsnotify_mask
= 0;
44 if (file
->f_mode
& FMODE_NONOTIFY
)
46 if (!(mask
& (MAY_READ
| MAY_OPEN
)))
49 fsnotify_mask
= FS_OPEN_PERM
;
50 else if (mask
& MAY_READ
)
51 fsnotify_mask
= FS_ACCESS_PERM
;
55 return fsnotify(inode
, fsnotify_mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
59 * fsnotify_d_move - dentry has been moved
60 * Called with dcache_lock and dentry->d_lock held.
62 static inline void fsnotify_d_move(struct dentry
*dentry
)
65 * On move we need to update dentry->d_flags to indicate if the new parent
66 * cares about events from this dentry.
68 __fsnotify_update_dcache_flags(dentry
);
72 * fsnotify_link_count - inode's link count changed
74 static inline void fsnotify_link_count(struct inode
*inode
)
76 fsnotify(inode
, FS_ATTRIB
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
80 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
82 static inline void fsnotify_move(struct inode
*old_dir
, struct inode
*new_dir
,
83 const unsigned char *old_name
,
84 int isdir
, struct inode
*target
, struct dentry
*moved
)
86 struct inode
*source
= moved
->d_inode
;
87 u32 fs_cookie
= fsnotify_get_cookie();
88 __u32 old_dir_mask
= (FS_EVENT_ON_CHILD
| FS_MOVED_FROM
);
89 __u32 new_dir_mask
= (FS_EVENT_ON_CHILD
| FS_MOVED_TO
);
90 const unsigned char *new_name
= moved
->d_name
.name
;
92 if (old_dir
== new_dir
)
93 old_dir_mask
|= FS_DN_RENAME
;
96 old_dir_mask
|= FS_IN_ISDIR
;
97 new_dir_mask
|= FS_IN_ISDIR
;
100 fsnotify(old_dir
, old_dir_mask
, old_dir
, FSNOTIFY_EVENT_INODE
, old_name
, fs_cookie
);
101 fsnotify(new_dir
, new_dir_mask
, new_dir
, FSNOTIFY_EVENT_INODE
, new_name
, fs_cookie
);
104 fsnotify_link_count(target
);
107 fsnotify(source
, FS_MOVE_SELF
, moved
->d_inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
108 audit_inode_child(moved
, new_dir
);
112 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
114 static inline void fsnotify_inode_delete(struct inode
*inode
)
116 __fsnotify_inode_delete(inode
);
120 * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed
122 static inline void fsnotify_vfsmount_delete(struct vfsmount
*mnt
)
124 __fsnotify_vfsmount_delete(mnt
);
128 * fsnotify_nameremove - a filename was removed from a directory
130 static inline void fsnotify_nameremove(struct dentry
*dentry
, int isdir
)
132 __u32 mask
= FS_DELETE
;
137 fsnotify_parent(NULL
, dentry
, mask
);
141 * fsnotify_inoderemove - an inode is going away
143 static inline void fsnotify_inoderemove(struct inode
*inode
)
145 fsnotify(inode
, FS_DELETE_SELF
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
146 __fsnotify_inode_delete(inode
);
150 * fsnotify_create - 'name' was linked in
152 static inline void fsnotify_create(struct inode
*inode
, struct dentry
*dentry
)
154 audit_inode_child(dentry
, inode
);
156 fsnotify(inode
, FS_CREATE
, dentry
->d_inode
, FSNOTIFY_EVENT_INODE
, dentry
->d_name
.name
, 0);
160 * fsnotify_link - new hardlink in 'inode' directory
161 * Note: We have to pass also the linked inode ptr as some filesystems leave
162 * new_dentry->d_inode NULL and instantiate inode pointer later
164 static inline void fsnotify_link(struct inode
*dir
, struct inode
*inode
, struct dentry
*new_dentry
)
166 fsnotify_link_count(inode
);
167 audit_inode_child(new_dentry
, dir
);
169 fsnotify(dir
, FS_CREATE
, inode
, FSNOTIFY_EVENT_INODE
, new_dentry
->d_name
.name
, 0);
173 * fsnotify_mkdir - directory 'name' was created
175 static inline void fsnotify_mkdir(struct inode
*inode
, struct dentry
*dentry
)
177 __u32 mask
= (FS_CREATE
| FS_IN_ISDIR
);
178 struct inode
*d_inode
= dentry
->d_inode
;
180 audit_inode_child(dentry
, inode
);
182 fsnotify(inode
, mask
, d_inode
, FSNOTIFY_EVENT_INODE
, dentry
->d_name
.name
, 0);
186 * fsnotify_access - file was read
188 static inline void fsnotify_access(struct file
*file
)
190 struct path
*path
= &file
->f_path
;
191 struct inode
*inode
= path
->dentry
->d_inode
;
192 __u32 mask
= FS_ACCESS
;
194 if (S_ISDIR(inode
->i_mode
))
197 if (!(file
->f_mode
& FMODE_NONOTIFY
)) {
198 fsnotify_parent(path
, NULL
, mask
);
199 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
204 * fsnotify_modify - file was modified
206 static inline void fsnotify_modify(struct file
*file
)
208 struct path
*path
= &file
->f_path
;
209 struct inode
*inode
= path
->dentry
->d_inode
;
210 __u32 mask
= FS_MODIFY
;
212 if (S_ISDIR(inode
->i_mode
))
215 if (!(file
->f_mode
& FMODE_NONOTIFY
)) {
216 fsnotify_parent(path
, NULL
, mask
);
217 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
222 * fsnotify_open - file was opened
224 static inline void fsnotify_open(struct file
*file
)
226 struct path
*path
= &file
->f_path
;
227 struct inode
*inode
= path
->dentry
->d_inode
;
228 __u32 mask
= FS_OPEN
;
230 if (S_ISDIR(inode
->i_mode
))
233 if (!(file
->f_mode
& FMODE_NONOTIFY
)) {
234 fsnotify_parent(path
, NULL
, mask
);
235 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
240 * fsnotify_close - file was closed
242 static inline void fsnotify_close(struct file
*file
)
244 struct path
*path
= &file
->f_path
;
245 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
246 fmode_t mode
= file
->f_mode
;
247 __u32 mask
= (mode
& FMODE_WRITE
) ? FS_CLOSE_WRITE
: FS_CLOSE_NOWRITE
;
249 if (S_ISDIR(inode
->i_mode
))
252 if (!(file
->f_mode
& FMODE_NONOTIFY
)) {
253 fsnotify_parent(path
, NULL
, mask
);
254 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
259 * fsnotify_xattr - extended attributes were changed
261 static inline void fsnotify_xattr(struct dentry
*dentry
)
263 struct inode
*inode
= dentry
->d_inode
;
264 __u32 mask
= FS_ATTRIB
;
266 if (S_ISDIR(inode
->i_mode
))
269 fsnotify_parent(NULL
, dentry
, mask
);
270 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
274 * fsnotify_change - notify_change event. file was modified and/or metadata
277 static inline void fsnotify_change(struct dentry
*dentry
, unsigned int ia_valid
)
279 struct inode
*inode
= dentry
->d_inode
;
282 if (ia_valid
& ATTR_UID
)
284 if (ia_valid
& ATTR_GID
)
286 if (ia_valid
& ATTR_SIZE
)
289 /* both times implies a utime(s) call */
290 if ((ia_valid
& (ATTR_ATIME
| ATTR_MTIME
)) == (ATTR_ATIME
| ATTR_MTIME
))
292 else if (ia_valid
& ATTR_ATIME
)
294 else if (ia_valid
& ATTR_MTIME
)
297 if (ia_valid
& ATTR_MODE
)
301 if (S_ISDIR(inode
->i_mode
))
304 fsnotify_parent(NULL
, dentry
, mask
);
305 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
309 #if defined(CONFIG_FSNOTIFY) /* notify helpers */
312 * fsnotify_oldname_init - save off the old filename before we change it
314 static inline const unsigned char *fsnotify_oldname_init(const unsigned char *name
)
316 return kstrdup(name
, GFP_KERNEL
);
320 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
322 static inline void fsnotify_oldname_free(const unsigned char *old_name
)
327 #else /* CONFIG_FSNOTIFY */
329 static inline const char *fsnotify_oldname_init(const unsigned char *name
)
334 static inline void fsnotify_oldname_free(const unsigned char *old_name
)
338 #endif /* CONFIG_FSNOTIFY */
340 #endif /* _LINUX_FS_NOTIFY_H */