blob: a73b250b590bb8a0f74764f8f3b77e3f1fc0f2b8 [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;
41 struct inode *inode = path->dentry->d_inode;
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 Karaf83eb752015-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);
Al Virocccc6bb2009-12-25 05:07:33 -0500114 audit_inode_child(moved, new_dir);
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{
Al Virocccc6bb2009-12-25 05:07:33 -0500160 audit_inode_child(dentry, inode);
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);
Al Virocccc6bb2009-12-25 05:07:33 -0500173 audit_inode_child(new_dentry, dir);
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
Al Virocccc6bb2009-12-25 05:07:33 -0500186 audit_inode_child(dentry, inode);
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;
197 struct inode *inode = path->dentry->d_inode;
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;
215 struct inode *inode = path->dentry->d_inode;
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;
Daniel Rosenbergbe381642018-01-23 15:02:50 -0800233 struct path lower_path;
Linus Torvalds20696012010-08-12 14:23:04 -0700234 struct inode *inode = path->dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400235 __u32 mask = FS_OPEN;
Robert Love0eeca282005-07-12 17:06:03 -0400236
237 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400238 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400239
Daniel Rosenbergbe381642018-01-23 15:02:50 -0800240 if (path->dentry->d_op && path->dentry->d_op->d_canonical_path) {
241 path->dentry->d_op->d_canonical_path(path, &lower_path);
242 fsnotify_parent(&lower_path, NULL, mask);
243 fsnotify(lower_path.dentry->d_inode, mask, &lower_path, FSNOTIFY_EVENT_PATH, NULL, 0);
244 path_put(&lower_path);
245 }
Lino Sanfilippo6bff7ec2010-10-29 12:02:17 +0200246 fsnotify_parent(path, NULL, mask);
247 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400248}
249
250/*
251 * fsnotify_close - file was closed
252 */
253static inline void fsnotify_close(struct file *file)
254{
Linus Torvalds20696012010-08-12 14:23:04 -0700255 struct path *path = &file->f_path;
Eric Paris28c60e32009-12-17 21:24:21 -0500256 struct inode *inode = file->f_path.dentry->d_inode;
Al Viroaeb5d722008-09-02 15:28:45 -0400257 fmode_t mode = file->f_mode;
Eric Paris90586522009-05-21 17:01:20 -0400258 __u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
Robert Love0eeca282005-07-12 17:06:03 -0400259
260 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400261 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400262
Eric Parisecf081d2009-12-17 21:24:25 -0500263 if (!(file->f_mode & FMODE_NONOTIFY)) {
Linus Torvalds20696012010-08-12 14:23:04 -0700264 fsnotify_parent(path, NULL, mask);
265 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisecf081d2009-12-17 21:24:25 -0500266 }
Robert Love0eeca282005-07-12 17:06:03 -0400267}
268
269/*
270 * fsnotify_xattr - extended attributes were changed
271 */
272static inline void fsnotify_xattr(struct dentry *dentry)
273{
274 struct inode *inode = dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400275 __u32 mask = FS_ATTRIB;
Robert Love0eeca282005-07-12 17:06:03 -0400276
277 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400278 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400279
Eric Paris28c60e32009-12-17 21:24:21 -0500280 fsnotify_parent(NULL, dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400281 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400282}
283
284/*
285 * fsnotify_change - notify_change event. file was modified and/or metadata
286 * was changed.
287 */
288static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
289{
290 struct inode *inode = dentry->d_inode;
Eric Paris3c5119c2009-05-21 17:01:33 -0400291 __u32 mask = 0;
Robert Love0eeca282005-07-12 17:06:03 -0400292
Eric Paris3c5119c2009-05-21 17:01:33 -0400293 if (ia_valid & ATTR_UID)
294 mask |= FS_ATTRIB;
295 if (ia_valid & ATTR_GID)
296 mask |= FS_ATTRIB;
297 if (ia_valid & ATTR_SIZE)
298 mask |= FS_MODIFY;
299
Robert Love0eeca282005-07-12 17:06:03 -0400300 /* both times implies a utime(s) call */
301 if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
Eric Paris3c5119c2009-05-21 17:01:33 -0400302 mask |= FS_ATTRIB;
303 else if (ia_valid & ATTR_ATIME)
304 mask |= FS_ACCESS;
305 else if (ia_valid & ATTR_MTIME)
306 mask |= FS_MODIFY;
Robert Love0eeca282005-07-12 17:06:03 -0400307
Eric Paris3c5119c2009-05-21 17:01:33 -0400308 if (ia_valid & ATTR_MODE)
309 mask |= FS_ATTRIB;
310
311 if (mask) {
Robert Love0eeca282005-07-12 17:06:03 -0400312 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400313 mask |= FS_ISDIR;
Eric Paris28c60e32009-12-17 21:24:21 -0500314
315 fsnotify_parent(NULL, dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400316 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400317 }
318}
319
Robert Love0eeca282005-07-12 17:06:03 -0400320#endif /* _LINUX_FS_NOTIFY_H */