blob: eed9e853a06f13c77506bc451262e83a99f1a332 [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
Eric Parisc28f7e52009-05-21 17:01:29 -040019/* Notify this dentry's parent about a child's events. */
Eric Paris52420392010-10-28 17:21:56 -040020static inline int fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask)
Eric Parisc28f7e52009-05-21 17:01:29 -040021{
Andreas Gruenbacher72acc852009-12-17 21:24:24 -050022 if (!dentry)
Linus Torvalds20696012010-08-12 14:23:04 -070023 dentry = path->dentry;
Eric Paris28c60e32009-12-17 21:24:21 -050024
Eric Paris52420392010-10-28 17:21:56 -040025 return __fsnotify_parent(path, dentry, mask);
Eric Parisc28f7e52009-05-21 17:01:29 -040026}
27
Eric Parisc4ec54b2009-12-17 21:24:34 -050028/* simple call site for access decisions */
29static inline int fsnotify_perm(struct file *file, int mask)
30{
Linus Torvalds20696012010-08-12 14:23:04 -070031 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +010032 struct inode *inode = file_inode(file);
Eric Parisfb1cfb82010-05-12 11:42:29 -040033 __u32 fsnotify_mask = 0;
Eric Paris52420392010-10-28 17:21:56 -040034 int ret;
Eric Parisc4ec54b2009-12-17 21:24:34 -050035
36 if (file->f_mode & FMODE_NONOTIFY)
37 return 0;
38 if (!(mask & (MAY_READ | MAY_OPEN)))
39 return 0;
Eric Parisc4ec54b2009-12-17 21:24:34 -050040 if (mask & MAY_OPEN)
41 fsnotify_mask = FS_OPEN_PERM;
Eric Parisfb1cfb82010-05-12 11:42:29 -040042 else if (mask & MAY_READ)
43 fsnotify_mask = FS_ACCESS_PERM;
44 else
45 BUG();
Eric Parisc4ec54b2009-12-17 21:24:34 -050046
Eric Paris52420392010-10-28 17:21:56 -040047 ret = fsnotify_parent(path, NULL, fsnotify_mask);
48 if (ret)
49 return ret;
50
Linus Torvalds20696012010-08-12 14:23:04 -070051 return fsnotify(inode, fsnotify_mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisc4ec54b2009-12-17 21:24:34 -050052}
53
Nick Pigginc32ccd82006-03-25 03:07:09 -080054/*
Eric Paris90586522009-05-21 17:01:20 -040055 * fsnotify_link_count - inode's link count changed
56 */
57static inline void fsnotify_link_count(struct inode *inode)
58{
Eric Paris47882c62009-05-21 17:01:47 -040059 fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Eric Paris90586522009-05-21 17:01:20 -040060}
61
62/*
Robert Love0eeca282005-07-12 17:06:03 -040063 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
64 */
65static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir,
Eric Paris59b0df22010-02-08 12:53:52 -050066 const unsigned char *old_name,
Al Viro5a190ae2007-06-07 12:19:32 -040067 int isdir, struct inode *target, struct dentry *moved)
Robert Love0eeca282005-07-12 17:06:03 -040068{
Al Viro5a190ae2007-06-07 12:19:32 -040069 struct inode *source = moved->d_inode;
Eric Paris47882c62009-05-21 17:01:47 -040070 u32 fs_cookie = fsnotify_get_cookie();
Eric Parisff52cc22009-06-11 11:09:47 -040071 __u32 old_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_FROM);
72 __u32 new_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_TO);
Eric Paris59b0df22010-02-08 12:53:52 -050073 const unsigned char *new_name = moved->d_name.name;
Robert Love0eeca282005-07-12 17:06:03 -040074
Eric Parisff52cc22009-06-11 11:09:47 -040075 if (old_dir == new_dir)
76 old_dir_mask |= FS_DN_RENAME;
Robert Love0eeca282005-07-12 17:06:03 -040077
Eric Paris90586522009-05-21 17:01:20 -040078 if (isdir) {
Eric Parisb29866a2010-10-28 17:21:58 -040079 old_dir_mask |= FS_ISDIR;
80 new_dir_mask |= FS_ISDIR;
Eric Paris90586522009-05-21 17:01:20 -040081 }
82
Jan Kara6ee8e252015-02-10 14:08:32 -080083 fsnotify(old_dir, old_dir_mask, source, FSNOTIFY_EVENT_INODE, old_name,
84 fs_cookie);
85 fsnotify(new_dir, new_dir_mask, source, FSNOTIFY_EVENT_INODE, new_name,
86 fs_cookie);
Eric Paris90586522009-05-21 17:01:20 -040087
Eric Paris2dfc1ca2009-12-17 20:30:52 -050088 if (target)
Eric Paris90586522009-05-21 17:01:20 -040089 fsnotify_link_count(target);
John McCutchan89204c42005-08-15 12:13:28 -040090
Eric Paris2dfc1ca2009-12-17 20:30:52 -050091 if (source)
Eric Paris47882c62009-05-21 17:01:47 -040092 fsnotify(source, FS_MOVE_SELF, moved->d_inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -040093 audit_inode_child(new_dir, moved, AUDIT_TYPE_CHILD_CREATE);
Robert Love0eeca282005-07-12 17:06:03 -040094}
95
96/*
Eric Paris3be25f42009-05-21 17:01:26 -040097 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
98 */
99static inline void fsnotify_inode_delete(struct inode *inode)
100{
101 __fsnotify_inode_delete(inode);
102}
103
104/*
Andreas Gruenbacherca9c7262009-12-17 21:24:27 -0500105 * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed
106 */
107static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt)
108{
109 __fsnotify_vfsmount_delete(mnt);
110}
111
112/*
John McCutchan7a91bf72005-08-08 13:52:16 -0400113 * fsnotify_nameremove - a filename was removed from a directory
114 */
115static inline void fsnotify_nameremove(struct dentry *dentry, int isdir)
116{
Eric Paris90586522009-05-21 17:01:20 -0400117 __u32 mask = FS_DELETE;
118
John McCutchan7a91bf72005-08-08 13:52:16 -0400119 if (isdir)
Eric Parisb29866a2010-10-28 17:21:58 -0400120 mask |= FS_ISDIR;
Eric Parisc28f7e52009-05-21 17:01:29 -0400121
Eric Paris28c60e32009-12-17 21:24:21 -0500122 fsnotify_parent(NULL, dentry, mask);
John McCutchan7a91bf72005-08-08 13:52:16 -0400123}
124
125/*
126 * fsnotify_inoderemove - an inode is going away
127 */
128static inline void fsnotify_inoderemove(struct inode *inode)
129{
Eric Paris47882c62009-05-21 17:01:47 -0400130 fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Eric Paris3be25f42009-05-21 17:01:26 -0400131 __fsnotify_inode_delete(inode);
Jan Karaece95912008-02-06 01:37:13 -0800132}
133
134/*
Robert Love0eeca282005-07-12 17:06:03 -0400135 * fsnotify_create - 'name' was linked in
136 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000137static inline void fsnotify_create(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400138{
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400139 audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Eric Paris90586522009-05-21 17:01:20 -0400140
Eric Paris47882c62009-05-21 17:01:47 -0400141 fsnotify(inode, FS_CREATE, dentry->d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400142}
143
144/*
Jan Karaece95912008-02-06 01:37:13 -0800145 * fsnotify_link - new hardlink in 'inode' directory
146 * Note: We have to pass also the linked inode ptr as some filesystems leave
147 * new_dentry->d_inode NULL and instantiate inode pointer later
148 */
149static inline void fsnotify_link(struct inode *dir, struct inode *inode, struct dentry *new_dentry)
150{
Jan Karaece95912008-02-06 01:37:13 -0800151 fsnotify_link_count(inode);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400152 audit_inode_child(dir, new_dentry, AUDIT_TYPE_CHILD_CREATE);
Eric Paris90586522009-05-21 17:01:20 -0400153
Eric Paris47882c62009-05-21 17:01:47 -0400154 fsnotify(dir, FS_CREATE, inode, FSNOTIFY_EVENT_INODE, new_dentry->d_name.name, 0);
Jan Karaece95912008-02-06 01:37:13 -0800155}
156
157/*
Robert Love0eeca282005-07-12 17:06:03 -0400158 * fsnotify_mkdir - directory 'name' was created
159 */
Amy Griffisf38aa942005-11-03 15:57:06 +0000160static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
Robert Love0eeca282005-07-12 17:06:03 -0400161{
Eric Parisb29866a2010-10-28 17:21:58 -0400162 __u32 mask = (FS_CREATE | FS_ISDIR);
Eric Paris90586522009-05-21 17:01:20 -0400163 struct inode *d_inode = dentry->d_inode;
164
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400165 audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Eric Paris90586522009-05-21 17:01:20 -0400166
Eric Paris47882c62009-05-21 17:01:47 -0400167 fsnotify(inode, mask, d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400168}
169
170/*
171 * fsnotify_access - file was read
172 */
Eric Paris2a12a9d2009-12-17 21:24:21 -0500173static inline void fsnotify_access(struct file *file)
Robert Love0eeca282005-07-12 17:06:03 -0400174{
Linus Torvalds20696012010-08-12 14:23:04 -0700175 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +0100176 struct inode *inode = file_inode(file);
Eric Paris90586522009-05-21 17:01:20 -0400177 __u32 mask = FS_ACCESS;
Robert Love0eeca282005-07-12 17:06:03 -0400178
179 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400180 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400181
Eric Parisecf081d2009-12-17 21:24:25 -0500182 if (!(file->f_mode & FMODE_NONOTIFY)) {
Linus Torvalds20696012010-08-12 14:23:04 -0700183 fsnotify_parent(path, NULL, mask);
184 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisecf081d2009-12-17 21:24:25 -0500185 }
Robert Love0eeca282005-07-12 17:06:03 -0400186}
187
188/*
189 * fsnotify_modify - file was modified
190 */
Eric Paris2a12a9d2009-12-17 21:24:21 -0500191static inline void fsnotify_modify(struct file *file)
Robert Love0eeca282005-07-12 17:06:03 -0400192{
Linus Torvalds20696012010-08-12 14:23:04 -0700193 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +0100194 struct inode *inode = file_inode(file);
Eric Paris90586522009-05-21 17:01:20 -0400195 __u32 mask = FS_MODIFY;
Robert Love0eeca282005-07-12 17:06:03 -0400196
197 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400198 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400199
Eric Parisecf081d2009-12-17 21:24:25 -0500200 if (!(file->f_mode & FMODE_NONOTIFY)) {
Linus Torvalds20696012010-08-12 14:23:04 -0700201 fsnotify_parent(path, NULL, mask);
202 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisecf081d2009-12-17 21:24:25 -0500203 }
Robert Love0eeca282005-07-12 17:06:03 -0400204}
205
206/*
207 * fsnotify_open - file was opened
208 */
Eric Paris2a12a9d2009-12-17 21:24:21 -0500209static inline void fsnotify_open(struct file *file)
Robert Love0eeca282005-07-12 17:06:03 -0400210{
Linus Torvalds20696012010-08-12 14:23:04 -0700211 struct path *path = &file->f_path;
David Howellsc77cece2013-06-13 23:37:49 +0100212 struct inode *inode = file_inode(file);
Eric Paris90586522009-05-21 17:01:20 -0400213 __u32 mask = FS_OPEN;
Robert Love0eeca282005-07-12 17:06:03 -0400214
215 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400216 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400217
Lino Sanfilippo6bff7ec2010-10-29 12:02:17 +0200218 fsnotify_parent(path, NULL, mask);
219 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400220}
221
222/*
223 * fsnotify_close - file was closed
224 */
225static inline void fsnotify_close(struct file *file)
226{
Linus Torvalds20696012010-08-12 14:23:04 -0700227 struct path *path = &file->f_path;
Al Viro496ad9a2013-01-23 17:07:38 -0500228 struct inode *inode = file_inode(file);
Al Viroaeb5d722008-09-02 15:28:45 -0400229 fmode_t mode = file->f_mode;
Eric Paris90586522009-05-21 17:01:20 -0400230 __u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE;
Robert Love0eeca282005-07-12 17:06:03 -0400231
232 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400233 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400234
Eric Parisecf081d2009-12-17 21:24:25 -0500235 if (!(file->f_mode & FMODE_NONOTIFY)) {
Linus Torvalds20696012010-08-12 14:23:04 -0700236 fsnotify_parent(path, NULL, mask);
237 fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0);
Eric Parisecf081d2009-12-17 21:24:25 -0500238 }
Robert Love0eeca282005-07-12 17:06:03 -0400239}
240
241/*
242 * fsnotify_xattr - extended attributes were changed
243 */
244static inline void fsnotify_xattr(struct dentry *dentry)
245{
246 struct inode *inode = dentry->d_inode;
Eric Paris90586522009-05-21 17:01:20 -0400247 __u32 mask = FS_ATTRIB;
Robert Love0eeca282005-07-12 17:06:03 -0400248
249 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400250 mask |= FS_ISDIR;
Robert Love0eeca282005-07-12 17:06:03 -0400251
Eric Paris28c60e32009-12-17 21:24:21 -0500252 fsnotify_parent(NULL, dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400253 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400254}
255
256/*
257 * fsnotify_change - notify_change event. file was modified and/or metadata
258 * was changed.
259 */
260static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
261{
262 struct inode *inode = dentry->d_inode;
Eric Paris3c5119c2009-05-21 17:01:33 -0400263 __u32 mask = 0;
Robert Love0eeca282005-07-12 17:06:03 -0400264
Eric Paris3c5119c2009-05-21 17:01:33 -0400265 if (ia_valid & ATTR_UID)
266 mask |= FS_ATTRIB;
267 if (ia_valid & ATTR_GID)
268 mask |= FS_ATTRIB;
269 if (ia_valid & ATTR_SIZE)
270 mask |= FS_MODIFY;
271
Robert Love0eeca282005-07-12 17:06:03 -0400272 /* both times implies a utime(s) call */
273 if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
Eric Paris3c5119c2009-05-21 17:01:33 -0400274 mask |= FS_ATTRIB;
275 else if (ia_valid & ATTR_ATIME)
276 mask |= FS_ACCESS;
277 else if (ia_valid & ATTR_MTIME)
278 mask |= FS_MODIFY;
Robert Love0eeca282005-07-12 17:06:03 -0400279
Eric Paris3c5119c2009-05-21 17:01:33 -0400280 if (ia_valid & ATTR_MODE)
281 mask |= FS_ATTRIB;
282
283 if (mask) {
Robert Love0eeca282005-07-12 17:06:03 -0400284 if (S_ISDIR(inode->i_mode))
Eric Parisb29866a2010-10-28 17:21:58 -0400285 mask |= FS_ISDIR;
Eric Paris28c60e32009-12-17 21:24:21 -0500286
287 fsnotify_parent(NULL, dentry, mask);
Eric Paris47882c62009-05-21 17:01:47 -0400288 fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
Robert Love0eeca282005-07-12 17:06:03 -0400289 }
290}
291
Eric Paris2dfc1ca2009-12-17 20:30:52 -0500292#if defined(CONFIG_FSNOTIFY) /* notify helpers */
Robert Love0eeca282005-07-12 17:06:03 -0400293
294/*
295 * fsnotify_oldname_init - save off the old filename before we change it
296 */
Eric Paris59b0df22010-02-08 12:53:52 -0500297static inline const unsigned char *fsnotify_oldname_init(const unsigned char *name)
Robert Love0eeca282005-07-12 17:06:03 -0400298{
299 return kstrdup(name, GFP_KERNEL);
300}
301
302/*
303 * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init
304 */
Eric Paris59b0df22010-02-08 12:53:52 -0500305static inline void fsnotify_oldname_free(const unsigned char *old_name)
Robert Love0eeca282005-07-12 17:06:03 -0400306{
307 kfree(old_name);
308}
309
Eric Paris28c60e32009-12-17 21:24:21 -0500310#else /* CONFIG_FSNOTIFY */
Robert Love0eeca282005-07-12 17:06:03 -0400311
Eric Paris59b0df22010-02-08 12:53:52 -0500312static inline const char *fsnotify_oldname_init(const unsigned char *name)
Robert Love0eeca282005-07-12 17:06:03 -0400313{
314 return NULL;
315}
316
Eric Paris59b0df22010-02-08 12:53:52 -0500317static inline void fsnotify_oldname_free(const unsigned char *old_name)
Robert Love0eeca282005-07-12 17:06:03 -0400318{
319}
320
Eric Paris28c60e32009-12-17 21:24:21 -0500321#endif /* CONFIG_FSNOTIFY */
Robert Love0eeca282005-07-12 17:06:03 -0400322
Robert Love0eeca282005-07-12 17:06:03 -0400323#endif /* _LINUX_FS_NOTIFY_H */