1 #ifndef _LINUX_FS_NOTIFY_H
2 #define _LINUX_FS_NOTIFY_H
15 #include <linux/audit.h>
16 #include <linux/slab.h>
22 static inline void fsnotify_d_instantiate(
struct dentry *
dentry,
25 __fsnotify_d_instantiate(dentry, inode);
38 static inline int fsnotify_perm(
struct file *
file,
int mask)
40 struct path *path = &file->
f_path;
42 __u32 fsnotify_mask = 0;
50 fsnotify_mask = FS_OPEN_PERM;
52 fsnotify_mask = FS_ACCESS_PERM;
56 ret = fsnotify_parent(path,
NULL, fsnotify_mask);
60 return fsnotify(inode, fsnotify_mask, path, FSNOTIFY_EVENT_PATH,
NULL, 0);
66 static inline void fsnotify_d_move(
struct dentry *dentry)
72 __fsnotify_update_dcache_flags(dentry);
78 static inline void fsnotify_link_count(
struct inode *inode)
80 fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE,
NULL, 0);
86 static inline void fsnotify_move(
struct inode *old_dir,
struct inode *new_dir,
87 const unsigned char *old_name,
88 int isdir,
struct inode *
target,
struct dentry *moved)
92 __u32 old_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_FROM);
93 __u32 new_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_TO);
94 const unsigned char *new_name = moved->
d_name.name;
96 if (old_dir == new_dir)
97 old_dir_mask |= FS_DN_RENAME;
100 old_dir_mask |= FS_ISDIR;
101 new_dir_mask |= FS_ISDIR;
104 fsnotify(old_dir, old_dir_mask, old_dir, FSNOTIFY_EVENT_INODE, old_name, fs_cookie);
105 fsnotify(new_dir, new_dir_mask, new_dir, FSNOTIFY_EVENT_INODE, new_name, fs_cookie);
108 fsnotify_link_count(target);
118 static inline void fsnotify_inode_delete(
struct inode *inode)
126 static inline void fsnotify_vfsmount_delete(
struct vfsmount *mnt)
134 static inline void fsnotify_nameremove(
struct dentry *dentry,
int isdir)
136 __u32 mask = FS_DELETE;
141 fsnotify_parent(
NULL, dentry, mask);
147 static inline void fsnotify_inoderemove(
struct inode *inode)
149 fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE,
NULL, 0);
156 static inline void fsnotify_create(
struct inode *inode,
struct dentry *dentry)
168 static inline void fsnotify_link(
struct inode *dir,
struct inode *inode,
struct dentry *new_dentry)
170 fsnotify_link_count(inode);
173 fsnotify(dir, FS_CREATE, inode, FSNOTIFY_EVENT_INODE, new_dentry->
d_name.name, 0);
179 static inline void fsnotify_mkdir(
struct inode *inode,
struct dentry *dentry)
181 __u32 mask = (FS_CREATE | FS_ISDIR);
182 struct inode *d_inode = dentry->
d_inode;
186 fsnotify(inode, mask, d_inode, FSNOTIFY_EVENT_INODE, dentry->
d_name.name, 0);
192 static inline void fsnotify_access(
struct file *file)
194 struct path *path = &file->
f_path;
195 struct inode *inode = path->
dentry->d_inode;
196 __u32 mask = FS_ACCESS;
202 fsnotify_parent(path,
NULL, mask);
203 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH,
NULL, 0);
210 static inline void fsnotify_modify(
struct file *file)
212 struct path *path = &file->
f_path;
213 struct inode *inode = path->
dentry->d_inode;
214 __u32 mask = FS_MODIFY;
220 fsnotify_parent(path,
NULL, mask);
221 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH,
NULL, 0);
228 static inline void fsnotify_open(
struct file *file)
230 struct path *path = &file->
f_path;
231 struct inode *inode = path->
dentry->d_inode;
232 __u32 mask = FS_OPEN;
237 fsnotify_parent(path,
NULL, mask);
238 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH,
NULL, 0);
244 static inline void fsnotify_close(
struct file *file)
246 struct path *path = &file->
f_path;
247 struct inode *inode = file->
f_path.dentry->d_inode;
255 fsnotify_parent(path,
NULL, mask);
256 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH,
NULL, 0);
263 static inline void fsnotify_xattr(
struct dentry *dentry)
265 struct inode *inode = dentry->
d_inode;
266 __u32 mask = FS_ATTRIB;
271 fsnotify_parent(
NULL, dentry, mask);
272 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE,
NULL, 0);
279 static inline void fsnotify_change(
struct dentry *dentry,
unsigned int ia_valid)
281 struct inode *inode = dentry->
d_inode;
306 fsnotify_parent(
NULL, dentry, mask);
307 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE,
NULL, 0);
311 #if defined(CONFIG_FSNOTIFY)
316 static inline const unsigned char *fsnotify_oldname_init(
const unsigned char *
name)
324 static inline void fsnotify_oldname_free(
const unsigned char *old_name)
331 static inline const char *fsnotify_oldname_init(
const unsigned char *
name)
336 static inline void fsnotify_oldname_free(
const unsigned char *old_name)