blob: 7ee1774edee51c7f872a8a9cc5c49fe0e8d83714 [file] [log] [blame]
Robert Love0eeca282005-07-12 17:06:03 -04001#ifndef _LINUX_FS_NOTIFY_H
2#define _LINUX_FS_NOTIFY_H
3
4/*
5 * include/linux/fsnotify.h - generic hooks for filesystem notification, to
6 * reduce in-source duplication from both dnotify and inotify.
7 *
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.
10 *
11 * (C) Copyright 2005 Robert Love
12 */
13
Eric Paris90586522009-05-21 17:01:20 -040014#include <linux/fsnotify_backend.h>
Amy Griffis73241cc2005-11-03 16:00:25 +000015#include <linux/audit.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -050017#include <linux/bug.h>
Robert Love0eeca282005-07-12 17:06:03 -040018
19/*
Nick Pigginc32ccd82006-03-25 03:07:09 -080020 * fsnotify_d_instantiate - instantiate a dentry for inode
Nick Pigginc32ccd82006-03-25 03:07:09 -080021 */
Eric Parise61ce862009-12-17 21:24:24 -050022static inline void fsnotify_d_instantiate(struct dentry *dentry,
23 struct inode *inode)
Nick Pigginc32ccd82006-03-25 03:07:09 -080024{
Eric Parise61ce862009-12-17 21:24:24 -050025 __fsnotify_d_instantiate(dentry, inode);
Nick Pigginc32ccd82006-03-25 03:07:09 -080026}
27
Eric Parisc28f7e52009-05-21 17:01:29 -040028/* Notify this dentry's parent about a child's events. */
Eric Paris52420392010-10-28 17:21:56 -040029static inline int fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask)
Eric Parisc28f7e52009-05-21 17:01:29 -040030{
Andreas Gruenbacher72acc852009-12-17 21:24:24 -050031 if (!dentry)
Linus Torvalds20696012010-08-12 14:23:04 -070032 dentry = path->dentry;
Eric Paris28c60e32009-12-17 21:24:21 -050033
Eric Paris52420392010-10-28 17:21:56 -040034 return __fsnotify_parent(path, dentry, mask);
Eric Parisc28f7e52009-05-21 17:01:29 -040035}
36
Eric Parisc4ec54b2009-12-17 21:24:34 -050037/* simple call site for access decisions */
38static inline int fsnotify_perm(struct file *file, int mask)
39{
Linus Torvalds20696012010-08-12 14:23:04 -070040 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +010041 struct inode *inode = file_inode(file);
Eric Parisfb1cfb82010-05-12 11:42:29 -040042 __u32 fsnotify_mask = 0;
Eric Paris52420392010-10-28 17:21:56 -040043 int ret;
Eric Parisc4ec54b2009-12-17 21:24:34 -050044
45 if (file->f_mode & FMODE_NONOTIFY)
46 return 0;
47 if (!(mask & (MAY_READ | MAY_OPEN)))
48 return 0;
Eric Parisc4ec54b2009-12-17 21:24:34 -050049 if (mask & MAY_OPEN)
50 fsnotify_mask = FS_OPEN_PERM;
Eric Parisfb1cfb82010-05-12 11:42:29 -040051 else if (mask & MAY_READ)
52 fsnotify_mask = FS_ACCESS_PERM;
53 else
54 BUG();
Eric Parisc4ec54b2009-12-17 21:24:34 -050055
Eric Paris52420392010-10-28 17:21:56 -040056 ret = fsnotify_parent(path, NULL, fsnotify_mask);
57 if (ret)
58 return ret;
59
Linus Torvalds20696012010-08-12 14:23:04 -070060 return fsnotify(inode, fsnotify_mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisc4ec54b2009-12-17 21:24:34 -050061}
62
Nick Pigginc32ccd82006-03-25 03:07:09 -080063/*
Eric Parise61ce862009-12-17 21:24:24 -050064 * fsnotify_d_move - dentry has been moved
Nick Pigginc32ccd82006-03-25 03:07:09 -080065 */
Eric Parise61ce862009-12-17 21:24:24 -050066static inline void fsnotify_d_move(struct dentry *dentry)
Nick Pigginc32ccd82006-03-25 03:07:09 -080067{
Eric Parisc28f7e52009-05-21 17:01:29 -040068 /*
Eric Parise61ce862009-12-17 21:24:24 -050069 * On move we need to update dentry->d_flags to indicate if the new parent
70 * cares about events from this dentry.
Eric Parisc28f7e52009-05-21 17:01:29 -040071 */
Eric Parise61ce862009-12-17 21:24:24 -050072 __fsnotify_update_dcache_flags(dentry);
Nick Pigginc32ccd82006-03-25 03:07:09 -080073}
74
75/*
Eric Paris90586522009-05-21 17:01:20 -040076 * fsnotify_link_count - inode's link count changed
77 */
78static inline void fsnotify_link_count(struct inode *inode)
79{
Eric Paris47882c62009-05-21 17:01:47 -040080 fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Eric Paris90586522009-05-21 17:01:20 -040081}
82
83/*
Robert Love0eeca282005-07-12 17:06:03 -040084 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
85 */
86static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir,
Eric Paris59b0df22010-02-08 12:53:52 -050087 const unsigned char *old_name,
Al Viro5a190ae2007-06-07 12:19:32 -040088 int isdir, struct inode *target, struct dentry *moved)
Robert Love0eeca282005-07-12 17:06:03 -040089{
Al Viro5a190ae2007-06-07 12:19:32 -040090 struct inode *source = moved->d_inode;
Eric Paris47882c62009-05-21 17:01:47 -040091 u32 fs_cookie = fsnotify_get_cookie();
Eric Parisff52cc22009-06-11 11:09:47 -040092 __u32 old_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_FROM);
93 __u32 new_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_TO);
Eric Paris59b0df22010-02-08 12:53:52 -050094 const unsigned char *new_name = moved->d_name.name;
Robert Love0eeca282005-07-12 17:06:03 -040095
Eric Parisff52cc22009-06-11 11:09:47 -040096 if (old_dir == new_dir)
97 old_dir_mask |= FS_DN_RENAME;
Robert Love0eeca282005-07-12 17:06:03 -040098
Eric Paris90586522009-05-21 17:01:20 -040099 if (isdir) {
Eric Parisb29866a2010-10-28 17:21:58 -0400100 old_dir_mask |= FS_ISDIR;
101 new_dir_mask |= FS_ISDIR;
Eric Paris90586522009-05-21 17:01:20 -0400102 }
103
Jan Kara6ee8e252015-02-10 14:08:32 -0800104 fsnotify(old_dir, old_dir_mask, source, FSNOTIFY_EVENT_INODE, old_name,
105 fs_cookie);
106 fsnotify(new_dir, new_dir_mask, source, FSNOTIFY_EVENT_INODE, new_name,
107 fs_cookie);
Eric Paris90586522009-05-21 17:01:20 -0400108
Eric Paris2dfc1ca2009-12-17 20:30:52 -0500109 if (target)
Eric Paris90586522009-05-21 17:01:20 -0400110 fsnotify_link_count(target);
John McCutchan89204c42005-08-15 12:13:28 -0400111
Eric Paris2dfc1ca2009-12-17 20:30:52 -0500112 if (source)
Eric Paris47882c62009-05-21 17:01:47 -0400113 fsnotify(source, FS_MOVE_SELF, moved->d_inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400114 audit_inode_child(new_dir, moved, AUDIT_TYPE_CHILD_CREATE);
Robert Love0eeca282005-07-12 17:06:03 -0400115}
116
117/*
Eric Paris3be25f42009-05-21 17:01:26 -0400118 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
119 */
120static inline void fsnotify_inode_delete(struct inode *inode)
121{
122 __fsnotify_inode_delete(inode);
123}
124
125/*
Andreas Gruenbacherca9c7262009-12-17 21:24:27 -0500126 * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed
127 */
128static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt)
129{
130 __fsnotify_vfsmount_delete(mnt);
131}
132
133/*
John McCutchan7a91bf72005-08-08 13:52:16 -0400134 * fsnotify_nameremove - a filename was removed from a directory
135 */
136static inline void fsnotify_nameremove(struct dentry *dentry, int isdir)
137{
Eric Paris90586522009-05-21 17:01:20 -0400138 __u32 mask = FS_DELETE;
139
John McCutchan7a91bf72005-08-08 13:52:16 -0400140 if (isdir)
Eric Parisb29866a2010-10-28 17:21:58 -0400141 mask |= FS_ISDIR;
Eric Parisc28f7e52009-05-21 17:01:29 -0400142
Eric Paris28c60e32009-12-17 21:24:21 -0500143 fsnotify_parent(NULL, dentry, mask);
John McCutchan7a91bf72005-08-08 13:52:16 -0400144}
145
146/*
147 * fsnotify_inoderemove - an inode is going away
148 */
149static inline void fsnotify_inoderemove(struct inode *inode)
150{
Eric Paris47882c62009-05-21 17:01:47 -0400151 fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Eric Paris3be25f42009-05-21 17:01:26 -0400152 __fsnotify_inode_delete(inode);
Jan Karaece95912008-02-06 01:37:13 -0800153}
154
155/*
Robert Love0eeca282005-07-12 17:06:03 -0400156 * fsnotify_create - 'name' was linked in
157 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000158static inline void fsnotify_create(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400159{
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400160 audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Eric Paris90586522009-05-21 17:01:20 -0400161
Eric Paris47882c62009-05-21 17:01:47 -0400162 fsnotify(inode, FS_CREATE, dentry->d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400163}
164
165/*
Jan Karaece95912008-02-06 01:37:13 -0800166 * fsnotify_link - new hardlink in 'inode' directory
167 * Note: We have to pass also the linked inode ptr as some filesystems leave
168 * new_dentry->d_inode NULL and instantiate inode pointer later
169 */
170static inline void fsnotify_link(struct inode *dir, struct inode *inode, struct dentry *new_dentry)
171{
Jan Karaece95912008-02-06 01:37:13 -0800172 fsnotify_link_count(inode);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400173 audit_inode_child(dir, new_dentry, AUDIT_TYPE_CHILD_CREATE);
Eric Paris90586522009-05-21 17:01:20 -0400174
Eric Paris47882c62009-05-21 17:01:47 -0400175 fsnotify(dir, FS_CREATE, inode, FSNOTIFY_EVENT_INODE, new_dentry->d_name.name, 0);
Jan Karaece95912008-02-06 01:37:13 -0800176}
177
178/*
Robert Love0eeca282005-07-12 17:06:03 -0400179 * fsnotify_mkdir - directory 'name' was created
180 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000181static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400182{
Eric Parisb29866a2010-10-28 17:21:58 -0400183 __u32 mask = (FS_CREATE | FS_ISDIR);
Eric Paris90586522009-05-21 17:01:20 -0400184 struct inode *d_inode = dentry->d_inode;
185
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400186 audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Eric Paris90586522009-05-21 17:01:20 -0400187
Eric Paris47882c62009-05-21 17:01:47 -0400188 fsnotify(inode, mask, d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400189}
190
191/*
192 * fsnotify_access - file was read
193 */
Eric Paris2a12a9d2009-12-17 21:24:21 -0500194static inline void fsnotify_access(struct file *file)
Robert Love0eeca282005-07-12 17:06:03 -0400195{
Linus Torvalds20696012010-08-12 14:23:04 -0700196 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +0100197 struct inode *inode = file_inode(file);
Eric Paris90586522009-05-21 17:01:20 -0400198 __u32 mask = FS_ACCESS;
Robert Love0eeca282005-07-12 17:06:03 -0400199
200 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400201 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400202
Eric Parisecf081d2009-12-17 21:24:25 -0500203 if (!(file->f_mode & FMODE_NONOTIFY)) {
Linus Torvalds20696012010-08-12 14:23:04 -0700204 fsnotify_parent(path, NULL, mask);
205 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisecf081d2009-12-17 21:24:25 -0500206 }
Robert Love0eeca282005-07-12 17:06:03 -0400207}
208
209/*
210 * fsnotify_modify - file was modified
211 */
Eric Paris2a12a9d2009-12-17 21:24:21 -0500212static inline void fsnotify_modify(struct file *file)
Robert Love0eeca282005-07-12 17:06:03 -0400213{
Linus Torvalds20696012010-08-12 14:23:04 -0700214 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +0100215 struct inode *inode = file_inode(file);
Eric Paris90586522009-05-21 17:01:20 -0400216 __u32 mask = FS_MODIFY;
Robert Love0eeca282005-07-12 17:06:03 -0400217
218 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400219 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400220
Eric Parisecf081d2009-12-17 21:24:25 -0500221 if (!(file->f_mode & FMODE_NONOTIFY)) {
Linus Torvalds20696012010-08-12 14:23:04 -0700222 fsnotify_parent(path, NULL, mask);
223 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisecf081d2009-12-17 21:24:25 -0500224 }
Robert Love0eeca282005-07-12 17:06:03 -0400225}
226
227/*
228 * fsnotify_open - file was opened
229 */
Eric Paris2a12a9d2009-12-17 21:24:21 -0500230static inline void fsnotify_open(struct file *file)
Robert Love0eeca282005-07-12 17:06:03 -0400231{
Linus Torvalds20696012010-08-12 14:23:04 -0700232 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +0100233 struct inode *inode = file_inode(file);
Eric Paris90586522009-05-21 17:01:20 -0400234 __u32 mask = FS_OPEN;
Robert Love0eeca282005-07-12 17:06:03 -0400235
236 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400237 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400238
Lino Sanfilippo6bff7ec2010-10-29 12:02:17 +0200239 fsnotify_parent(path, NULL, mask);
240 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400241}
242
243/*
244 * fsnotify_close - file was closed
245 */
246static inline void fsnotify_close(struct file *file)
247{
Linus Torvalds20696012010-08-12 14:23:04 -0700248 struct path *path = &file->f_path;
Al Viro496ad9a2013-01-23 17:07:38 -0500249 struct inode *inode = file_inode(file);
Al Viroaeb5d722008-09-02 15:28:45 -0400250 fmode_t mode = file->f_mode;
Eric Paris90586522009-05-21 17:01:20 -0400251 __u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
Robert Love0eeca282005-07-12 17:06:03 -0400252
253 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400254 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400255
Eric Parisecf081d2009-12-17 21:24:25 -0500256 if (!(file->f_mode & FMODE_NONOTIFY)) {
Linus Torvalds20696012010-08-12 14:23:04 -0700257 fsnotify_parent(path, NULL, mask);
258 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisecf081d2009-12-17 21:24:25 -0500259 }
Robert Love0eeca282005-07-12 17:06:03 -0400260}
261
262/*
263 * fsnotify_xattr - extended attributes were changed
264 */
265static inline void fsnotify_xattr(struct dentry *dentry)
266{
267 struct inode *inode = dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400268 __u32 mask = FS_ATTRIB;
Robert Love0eeca282005-07-12 17:06:03 -0400269
270 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400271 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400272
Eric Paris28c60e32009-12-17 21:24:21 -0500273 fsnotify_parent(NULL, dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400274 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400275}
276
277/*
278 * fsnotify_change - notify_change event. file was modified and/or metadata
279 * was changed.
280 */
281static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
282{
283 struct inode *inode = dentry->d_inode;
Eric Paris3c5119c2009-05-21 17:01:33 -0400284 __u32 mask = 0;
Robert Love0eeca282005-07-12 17:06:03 -0400285
Eric Paris3c5119c2009-05-21 17:01:33 -0400286 if (ia_valid & ATTR_UID)
287 mask |= FS_ATTRIB;
288 if (ia_valid & ATTR_GID)
289 mask |= FS_ATTRIB;
290 if (ia_valid & ATTR_SIZE)
291 mask |= FS_MODIFY;
292
Robert Love0eeca282005-07-12 17:06:03 -0400293 /* both times implies a utime(s) call */
294 if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
Eric Paris3c5119c2009-05-21 17:01:33 -0400295 mask |= FS_ATTRIB;
296 else if (ia_valid & ATTR_ATIME)
297 mask |= FS_ACCESS;
298 else if (ia_valid & ATTR_MTIME)
299 mask |= FS_MODIFY;
Robert Love0eeca282005-07-12 17:06:03 -0400300
Eric Paris3c5119c2009-05-21 17:01:33 -0400301 if (ia_valid & ATTR_MODE)
302 mask |= FS_ATTRIB;
303
304 if (mask) {
Robert Love0eeca282005-07-12 17:06:03 -0400305 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400306 mask |= FS_ISDIR;
Eric Paris28c60e32009-12-17 21:24:21 -0500307
308 fsnotify_parent(NULL, dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400309 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400310 }
311}
312
Eric Paris2dfc1ca2009-12-17 20:30:52 -0500313#if defined(CONFIG_FSNOTIFY) /* notify helpers */
Robert Love0eeca282005-07-12 17:06:03 -0400314
315/*
316 * fsnotify_oldname_init - save off the old filename before we change it
317 */
Eric Paris59b0df22010-02-08 12:53:52 -0500318static inline const unsigned char *fsnotify_oldname_init(const unsigned char *name)
Robert Love0eeca282005-07-12 17:06:03 -0400319{
320 return kstrdup(name, GFP_KERNEL);
321}
322
323/*
324 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
325 */
Eric Paris59b0df22010-02-08 12:53:52 -0500326static inline void fsnotify_oldname_free(const unsigned char *old_name)
Robert Love0eeca282005-07-12 17:06:03 -0400327{
328 kfree(old_name);
329}
330
Eric Paris28c60e32009-12-17 21:24:21 -0500331#else /* CONFIG_FSNOTIFY */
Robert Love0eeca282005-07-12 17:06:03 -0400332
Eric Paris59b0df22010-02-08 12:53:52 -0500333static inline const char *fsnotify_oldname_init(const unsigned char *name)
Robert Love0eeca282005-07-12 17:06:03 -0400334{
335 return NULL;
336}
337
Eric Paris59b0df22010-02-08 12:53:52 -0500338static inline void fsnotify_oldname_free(const unsigned char *old_name)
Robert Love0eeca282005-07-12 17:06:03 -0400339{
340}
341
Eric Paris28c60e32009-12-17 21:24:21 -0500342#endif /* CONFIG_FSNOTIFY */
Robert Love0eeca282005-07-12 17:06:03 -0400343
Robert Love0eeca282005-07-12 17:06:03 -0400344#endif /* _LINUX_FS_NOTIFY_H */