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>
17 #include <linux/bug.h>
19 /* Notify this dentry's parent about a child's events. */
20 static inline int fsnotify_parent(const struct path
*path
, struct dentry
*dentry
, __u32 mask
)
23 dentry
= path
->dentry
;
25 return __fsnotify_parent(path
, dentry
, mask
);
28 /* simple call site for access decisions */
29 static inline int fsnotify_perm(struct file
*file
, int mask
)
31 const struct path
*path
= &file
->f_path
;
33 * Do not use file_inode() here or anywhere in this file to get the
34 * inode. That would break *notity on overlayfs.
36 struct inode
*inode
= path
->dentry
->d_inode
;
37 __u32 fsnotify_mask
= 0;
40 if (file
->f_mode
& FMODE_NONOTIFY
)
42 if (!(mask
& (MAY_READ
| MAY_OPEN
)))
45 fsnotify_mask
= FS_OPEN_PERM
;
46 else if (mask
& MAY_READ
)
47 fsnotify_mask
= FS_ACCESS_PERM
;
51 ret
= fsnotify_parent(path
, NULL
, fsnotify_mask
);
55 return fsnotify(inode
, fsnotify_mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
59 * fsnotify_link_count - inode's link count changed
61 static inline void fsnotify_link_count(struct inode
*inode
)
63 fsnotify(inode
, FS_ATTRIB
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
67 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
69 static inline void fsnotify_move(struct inode
*old_dir
, struct inode
*new_dir
,
70 const unsigned char *old_name
,
71 int isdir
, struct inode
*target
, struct dentry
*moved
)
73 struct inode
*source
= moved
->d_inode
;
74 u32 fs_cookie
= fsnotify_get_cookie();
75 __u32 old_dir_mask
= (FS_EVENT_ON_CHILD
| FS_MOVED_FROM
);
76 __u32 new_dir_mask
= (FS_EVENT_ON_CHILD
| FS_MOVED_TO
);
77 const unsigned char *new_name
= moved
->d_name
.name
;
79 if (old_dir
== new_dir
)
80 old_dir_mask
|= FS_DN_RENAME
;
83 old_dir_mask
|= FS_ISDIR
;
84 new_dir_mask
|= FS_ISDIR
;
87 fsnotify(old_dir
, old_dir_mask
, source
, FSNOTIFY_EVENT_INODE
, old_name
,
89 fsnotify(new_dir
, new_dir_mask
, source
, FSNOTIFY_EVENT_INODE
, new_name
,
93 fsnotify_link_count(target
);
96 fsnotify(source
, FS_MOVE_SELF
, moved
->d_inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
97 audit_inode_child(new_dir
, moved
, AUDIT_TYPE_CHILD_CREATE
);
101 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
103 static inline void fsnotify_inode_delete(struct inode
*inode
)
105 __fsnotify_inode_delete(inode
);
109 * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed
111 static inline void fsnotify_vfsmount_delete(struct vfsmount
*mnt
)
113 __fsnotify_vfsmount_delete(mnt
);
117 * fsnotify_nameremove - a filename was removed from a directory
119 static inline void fsnotify_nameremove(struct dentry
*dentry
, int isdir
)
121 __u32 mask
= FS_DELETE
;
126 fsnotify_parent(NULL
, dentry
, mask
);
130 * fsnotify_inoderemove - an inode is going away
132 static inline void fsnotify_inoderemove(struct inode
*inode
)
134 fsnotify(inode
, FS_DELETE_SELF
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
135 __fsnotify_inode_delete(inode
);
139 * fsnotify_create - 'name' was linked in
141 static inline void fsnotify_create(struct inode
*inode
, struct dentry
*dentry
)
143 audit_inode_child(inode
, dentry
, AUDIT_TYPE_CHILD_CREATE
);
145 fsnotify(inode
, FS_CREATE
, dentry
->d_inode
, FSNOTIFY_EVENT_INODE
, dentry
->d_name
.name
, 0);
149 * fsnotify_link - new hardlink in 'inode' directory
150 * Note: We have to pass also the linked inode ptr as some filesystems leave
151 * new_dentry->d_inode NULL and instantiate inode pointer later
153 static inline void fsnotify_link(struct inode
*dir
, struct inode
*inode
, struct dentry
*new_dentry
)
155 fsnotify_link_count(inode
);
156 audit_inode_child(dir
, new_dentry
, AUDIT_TYPE_CHILD_CREATE
);
158 fsnotify(dir
, FS_CREATE
, inode
, FSNOTIFY_EVENT_INODE
, new_dentry
->d_name
.name
, 0);
162 * fsnotify_mkdir - directory 'name' was created
164 static inline void fsnotify_mkdir(struct inode
*inode
, struct dentry
*dentry
)
166 __u32 mask
= (FS_CREATE
| FS_ISDIR
);
167 struct inode
*d_inode
= dentry
->d_inode
;
169 audit_inode_child(inode
, dentry
, AUDIT_TYPE_CHILD_CREATE
);
171 fsnotify(inode
, mask
, d_inode
, FSNOTIFY_EVENT_INODE
, dentry
->d_name
.name
, 0);
175 * fsnotify_access - file was read
177 static inline void fsnotify_access(struct file
*file
)
179 const struct path
*path
= &file
->f_path
;
180 struct inode
*inode
= path
->dentry
->d_inode
;
181 __u32 mask
= FS_ACCESS
;
183 if (S_ISDIR(inode
->i_mode
))
186 if (!(file
->f_mode
& FMODE_NONOTIFY
)) {
187 fsnotify_parent(path
, NULL
, mask
);
188 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
193 * fsnotify_modify - file was modified
195 static inline void fsnotify_modify(struct file
*file
)
197 const struct path
*path
= &file
->f_path
;
198 struct inode
*inode
= path
->dentry
->d_inode
;
199 __u32 mask
= FS_MODIFY
;
201 if (S_ISDIR(inode
->i_mode
))
204 if (!(file
->f_mode
& FMODE_NONOTIFY
)) {
205 fsnotify_parent(path
, NULL
, mask
);
206 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
211 * fsnotify_open - file was opened
213 static inline void fsnotify_open(struct file
*file
)
215 const struct path
*path
= &file
->f_path
;
216 struct inode
*inode
= path
->dentry
->d_inode
;
217 __u32 mask
= FS_OPEN
;
219 if (S_ISDIR(inode
->i_mode
))
222 fsnotify_parent(path
, NULL
, mask
);
223 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
227 * fsnotify_close - file was closed
229 static inline void fsnotify_close(struct file
*file
)
231 const struct path
*path
= &file
->f_path
;
232 struct inode
*inode
= path
->dentry
->d_inode
;
233 fmode_t mode
= file
->f_mode
;
234 __u32 mask
= (mode
& FMODE_WRITE
) ? FS_CLOSE_WRITE
: FS_CLOSE_NOWRITE
;
236 if (S_ISDIR(inode
->i_mode
))
239 if (!(file
->f_mode
& FMODE_NONOTIFY
)) {
240 fsnotify_parent(path
, NULL
, mask
);
241 fsnotify(inode
, mask
, path
, FSNOTIFY_EVENT_PATH
, NULL
, 0);
246 * fsnotify_xattr - extended attributes were changed
248 static inline void fsnotify_xattr(struct dentry
*dentry
)
250 struct inode
*inode
= dentry
->d_inode
;
251 __u32 mask
= FS_ATTRIB
;
253 if (S_ISDIR(inode
->i_mode
))
256 fsnotify_parent(NULL
, dentry
, mask
);
257 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
261 * fsnotify_change - notify_change event. file was modified and/or metadata
264 static inline void fsnotify_change(struct dentry
*dentry
, unsigned int ia_valid
)
266 struct inode
*inode
= dentry
->d_inode
;
269 if (ia_valid
& ATTR_UID
)
271 if (ia_valid
& ATTR_GID
)
273 if (ia_valid
& ATTR_SIZE
)
276 /* both times implies a utime(s) call */
277 if ((ia_valid
& (ATTR_ATIME
| ATTR_MTIME
)) == (ATTR_ATIME
| ATTR_MTIME
))
279 else if (ia_valid
& ATTR_ATIME
)
281 else if (ia_valid
& ATTR_MTIME
)
284 if (ia_valid
& ATTR_MODE
)
288 if (S_ISDIR(inode
->i_mode
))
291 fsnotify_parent(NULL
, dentry
, mask
);
292 fsnotify(inode
, mask
, inode
, FSNOTIFY_EVENT_INODE
, NULL
, 0);
296 #endif /* _LINUX_FS_NOTIFY_H */