Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 2 | #ifndef _LINUX_FS_NOTIFY_H |
| 3 | #define _LINUX_FS_NOTIFY_H |
| 4 | |
| 5 | /* |
| 6 | * include/linux/fsnotify.h - generic hooks for filesystem notification, to |
| 7 | * reduce in-source duplication from both dnotify and inotify. |
| 8 | * |
| 9 | * We don't compile any of this away in some complicated menagerie of ifdefs. |
| 10 | * Instead, we rely on the code inside to optimize away as needed. |
| 11 | * |
| 12 | * (C) Copyright 2005 Robert Love |
| 13 | */ |
| 14 | |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 15 | #include <linux/fsnotify_backend.h> |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 16 | #include <linux/audit.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 18 | #include <linux/bug.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 19 | |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 20 | /* |
| 21 | * Notify this @dir inode about a change in the directory entry @dentry. |
| 22 | * |
| 23 | * Unlike fsnotify_parent(), the event will be reported regardless of the |
| 24 | * FS_EVENT_ON_CHILD mask on the parent inode. |
| 25 | */ |
| 26 | static inline int fsnotify_dirent(struct inode *dir, struct dentry *dentry, |
| 27 | __u32 mask) |
| 28 | { |
| 29 | return fsnotify(dir, mask, d_inode(dentry), FSNOTIFY_EVENT_INODE, |
| 30 | dentry->d_name.name, 0); |
| 31 | } |
| 32 | |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 33 | /* Notify this dentry's parent about a child's events. */ |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 34 | static inline int fsnotify_parent(const struct path *path, |
| 35 | struct dentry *dentry, __u32 mask) |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 36 | { |
Andreas Gruenbacher | 72acc85 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 37 | if (!dentry) |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 38 | dentry = path->dentry; |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 39 | |
Eric Paris | 5242039 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 40 | return __fsnotify_parent(path, dentry, mask); |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 41 | } |
| 42 | |
Matthew Bobrowski | a704bba | 2018-11-08 14:10:03 +1100 | [diff] [blame] | 43 | /* |
| 44 | * Simple wrapper to consolidate calls fsnotify_parent()/fsnotify() when |
| 45 | * an event is on a path. |
| 46 | */ |
| 47 | static inline int fsnotify_path(struct inode *inode, const struct path *path, |
| 48 | __u32 mask) |
| 49 | { |
| 50 | int ret = fsnotify_parent(path, NULL, mask); |
| 51 | |
| 52 | if (ret) |
| 53 | return ret; |
| 54 | return fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0); |
| 55 | } |
| 56 | |
Matthew Bobrowski | 66917a3 | 2018-11-08 14:12:44 +1100 | [diff] [blame] | 57 | /* Simple call site for access decisions */ |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 58 | static inline int fsnotify_perm(struct file *file, int mask) |
| 59 | { |
Matthew Bobrowski | 66917a3 | 2018-11-08 14:12:44 +1100 | [diff] [blame] | 60 | int ret; |
Al Viro | 40212d53 | 2016-11-20 20:24:41 -0500 | [diff] [blame] | 61 | const struct path *path = &file->f_path; |
Miklos Szeredi | 573e178 | 2018-07-18 15:44:44 +0200 | [diff] [blame] | 62 | struct inode *inode = file_inode(file); |
Eric Paris | fb1cfb8 | 2010-05-12 11:42:29 -0400 | [diff] [blame] | 63 | __u32 fsnotify_mask = 0; |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 64 | |
| 65 | if (file->f_mode & FMODE_NONOTIFY) |
| 66 | return 0; |
| 67 | if (!(mask & (MAY_READ | MAY_OPEN))) |
| 68 | return 0; |
Matthew Bobrowski | 66917a3 | 2018-11-08 14:12:44 +1100 | [diff] [blame] | 69 | if (mask & MAY_OPEN) { |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 70 | fsnotify_mask = FS_OPEN_PERM; |
Matthew Bobrowski | 66917a3 | 2018-11-08 14:12:44 +1100 | [diff] [blame] | 71 | |
| 72 | if (file->f_flags & __FMODE_EXEC) { |
| 73 | ret = fsnotify_path(inode, path, FS_OPEN_EXEC_PERM); |
| 74 | |
| 75 | if (ret) |
| 76 | return ret; |
| 77 | } |
| 78 | } else if (mask & MAY_READ) { |
Eric Paris | fb1cfb8 | 2010-05-12 11:42:29 -0400 | [diff] [blame] | 79 | fsnotify_mask = FS_ACCESS_PERM; |
Matthew Bobrowski | 66917a3 | 2018-11-08 14:12:44 +1100 | [diff] [blame] | 80 | } |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 81 | |
Matthew Bobrowski | a704bba | 2018-11-08 14:10:03 +1100 | [diff] [blame] | 82 | return fsnotify_path(inode, path, fsnotify_mask); |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 83 | } |
| 84 | |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 85 | /* |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 86 | * fsnotify_link_count - inode's link count changed |
| 87 | */ |
| 88 | static inline void fsnotify_link_count(struct inode *inode) |
| 89 | { |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 90 | fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | /* |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 94 | * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir |
| 95 | */ |
| 96 | static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir, |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 97 | const unsigned char *old_name, |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 98 | int isdir, struct inode *target, struct dentry *moved) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 99 | { |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 100 | struct inode *source = moved->d_inode; |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 101 | u32 fs_cookie = fsnotify_get_cookie(); |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 102 | __u32 old_dir_mask = FS_MOVED_FROM; |
| 103 | __u32 new_dir_mask = FS_MOVED_TO; |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 104 | const unsigned char *new_name = moved->d_name.name; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 105 | |
Eric Paris | ff52cc2 | 2009-06-11 11:09:47 -0400 | [diff] [blame] | 106 | if (old_dir == new_dir) |
| 107 | old_dir_mask |= FS_DN_RENAME; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 108 | |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 109 | if (isdir) { |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 110 | old_dir_mask |= FS_ISDIR; |
| 111 | new_dir_mask |= FS_ISDIR; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 112 | } |
| 113 | |
Jan Kara | 6ee8e25 | 2015-02-10 14:08:32 -0800 | [diff] [blame] | 114 | fsnotify(old_dir, old_dir_mask, source, FSNOTIFY_EVENT_INODE, old_name, |
| 115 | fs_cookie); |
| 116 | fsnotify(new_dir, new_dir_mask, source, FSNOTIFY_EVENT_INODE, new_name, |
| 117 | fs_cookie); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 118 | |
Eric Paris | 2dfc1ca | 2009-12-17 20:30:52 -0500 | [diff] [blame] | 119 | if (target) |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 120 | fsnotify_link_count(target); |
John McCutchan | 89204c4 | 2005-08-15 12:13:28 -0400 | [diff] [blame] | 121 | |
Eric Paris | 2dfc1ca | 2009-12-17 20:30:52 -0500 | [diff] [blame] | 122 | if (source) |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 123 | fsnotify(source, FS_MOVE_SELF, moved->d_inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 124 | audit_inode_child(new_dir, moved, AUDIT_TYPE_CHILD_CREATE); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | /* |
Eric Paris | 3be25f4 | 2009-05-21 17:01:26 -0400 | [diff] [blame] | 128 | * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed |
| 129 | */ |
| 130 | static inline void fsnotify_inode_delete(struct inode *inode) |
| 131 | { |
| 132 | __fsnotify_inode_delete(inode); |
| 133 | } |
| 134 | |
| 135 | /* |
Andreas Gruenbacher | ca9c726 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 136 | * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed |
| 137 | */ |
| 138 | static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt) |
| 139 | { |
| 140 | __fsnotify_vfsmount_delete(mnt); |
| 141 | } |
| 142 | |
| 143 | /* |
John McCutchan | 7a91bf7 | 2005-08-08 13:52:16 -0400 | [diff] [blame] | 144 | * fsnotify_nameremove - a filename was removed from a directory |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 145 | * |
| 146 | * This is mostly called under parent vfs inode lock so name and |
| 147 | * dentry->d_parent should be stable. However there are some corner cases where |
| 148 | * inode lock is not held. So to be on the safe side and be reselient to future |
| 149 | * callers and out of tree users of d_delete(), we do not assume that d_parent |
| 150 | * and d_name are stable and we use dget_parent() and |
| 151 | * take_dentry_name_snapshot() to grab stable references. |
John McCutchan | 7a91bf7 | 2005-08-08 13:52:16 -0400 | [diff] [blame] | 152 | */ |
| 153 | static inline void fsnotify_nameremove(struct dentry *dentry, int isdir) |
| 154 | { |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 155 | struct dentry *parent; |
| 156 | struct name_snapshot name; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 157 | __u32 mask = FS_DELETE; |
| 158 | |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 159 | /* d_delete() of pseudo inode? (e.g. __ns_get_path() playing tricks) */ |
| 160 | if (IS_ROOT(dentry)) |
| 161 | return; |
| 162 | |
John McCutchan | 7a91bf7 | 2005-08-08 13:52:16 -0400 | [diff] [blame] | 163 | if (isdir) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 164 | mask |= FS_ISDIR; |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 165 | |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 166 | parent = dget_parent(dentry); |
| 167 | take_dentry_name_snapshot(&name, dentry); |
| 168 | |
| 169 | fsnotify(d_inode(parent), mask, d_inode(dentry), FSNOTIFY_EVENT_INODE, |
| 170 | name.name, 0); |
| 171 | |
| 172 | release_dentry_name_snapshot(&name); |
| 173 | dput(parent); |
John McCutchan | 7a91bf7 | 2005-08-08 13:52:16 -0400 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | /* |
| 177 | * fsnotify_inoderemove - an inode is going away |
| 178 | */ |
| 179 | static inline void fsnotify_inoderemove(struct inode *inode) |
| 180 | { |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 181 | fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Eric Paris | 3be25f4 | 2009-05-21 17:01:26 -0400 | [diff] [blame] | 182 | __fsnotify_inode_delete(inode); |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | /* |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 186 | * fsnotify_create - 'name' was linked in |
| 187 | */ |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 188 | static inline void fsnotify_create(struct inode *inode, struct dentry *dentry) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 189 | { |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 190 | audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 191 | |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 192 | fsnotify_dirent(inode, dentry, FS_CREATE); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | /* |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 196 | * fsnotify_link - new hardlink in 'inode' directory |
| 197 | * Note: We have to pass also the linked inode ptr as some filesystems leave |
| 198 | * new_dentry->d_inode NULL and instantiate inode pointer later |
| 199 | */ |
| 200 | static inline void fsnotify_link(struct inode *dir, struct inode *inode, struct dentry *new_dentry) |
| 201 | { |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 202 | fsnotify_link_count(inode); |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 203 | audit_inode_child(dir, new_dentry, AUDIT_TYPE_CHILD_CREATE); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 204 | |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 205 | fsnotify(dir, FS_CREATE, inode, FSNOTIFY_EVENT_INODE, new_dentry->d_name.name, 0); |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | /* |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 209 | * fsnotify_mkdir - directory 'name' was created |
| 210 | */ |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 211 | static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 212 | { |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 213 | audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 214 | |
Amir Goldstein | 5f02a87 | 2019-01-10 19:04:28 +0200 | [diff] [blame] | 215 | fsnotify_dirent(inode, dentry, FS_CREATE | FS_ISDIR); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | /* |
| 219 | * fsnotify_access - file was read |
| 220 | */ |
Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 221 | static inline void fsnotify_access(struct file *file) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 222 | { |
Al Viro | 40212d53 | 2016-11-20 20:24:41 -0500 | [diff] [blame] | 223 | const struct path *path = &file->f_path; |
Miklos Szeredi | 573e178 | 2018-07-18 15:44:44 +0200 | [diff] [blame] | 224 | struct inode *inode = file_inode(file); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 225 | __u32 mask = FS_ACCESS; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 226 | |
| 227 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 228 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 229 | |
Matthew Bobrowski | a704bba | 2018-11-08 14:10:03 +1100 | [diff] [blame] | 230 | if (!(file->f_mode & FMODE_NONOTIFY)) |
| 231 | fsnotify_path(inode, path, mask); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | /* |
| 235 | * fsnotify_modify - file was modified |
| 236 | */ |
Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 237 | static inline void fsnotify_modify(struct file *file) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 238 | { |
Al Viro | 40212d53 | 2016-11-20 20:24:41 -0500 | [diff] [blame] | 239 | const struct path *path = &file->f_path; |
Miklos Szeredi | 573e178 | 2018-07-18 15:44:44 +0200 | [diff] [blame] | 240 | struct inode *inode = file_inode(file); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 241 | __u32 mask = FS_MODIFY; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 242 | |
| 243 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 244 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 245 | |
Matthew Bobrowski | a704bba | 2018-11-08 14:10:03 +1100 | [diff] [blame] | 246 | if (!(file->f_mode & FMODE_NONOTIFY)) |
| 247 | fsnotify_path(inode, path, mask); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | /* |
| 251 | * fsnotify_open - file was opened |
| 252 | */ |
Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 253 | static inline void fsnotify_open(struct file *file) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 254 | { |
Al Viro | 40212d53 | 2016-11-20 20:24:41 -0500 | [diff] [blame] | 255 | const struct path *path = &file->f_path; |
Miklos Szeredi | 573e178 | 2018-07-18 15:44:44 +0200 | [diff] [blame] | 256 | struct inode *inode = file_inode(file); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 257 | __u32 mask = FS_OPEN; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 258 | |
| 259 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 260 | mask |= FS_ISDIR; |
Matthew Bobrowski | 9b076f1 | 2018-11-08 14:07:14 +1100 | [diff] [blame] | 261 | if (file->f_flags & __FMODE_EXEC) |
| 262 | mask |= FS_OPEN_EXEC; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 263 | |
Matthew Bobrowski | a704bba | 2018-11-08 14:10:03 +1100 | [diff] [blame] | 264 | fsnotify_path(inode, path, mask); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | /* |
| 268 | * fsnotify_close - file was closed |
| 269 | */ |
| 270 | static inline void fsnotify_close(struct file *file) |
| 271 | { |
Al Viro | 40212d53 | 2016-11-20 20:24:41 -0500 | [diff] [blame] | 272 | const struct path *path = &file->f_path; |
Miklos Szeredi | 573e178 | 2018-07-18 15:44:44 +0200 | [diff] [blame] | 273 | struct inode *inode = file_inode(file); |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 274 | fmode_t mode = file->f_mode; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 275 | __u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 276 | |
| 277 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 278 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 279 | |
Matthew Bobrowski | a704bba | 2018-11-08 14:10:03 +1100 | [diff] [blame] | 280 | if (!(file->f_mode & FMODE_NONOTIFY)) |
| 281 | fsnotify_path(inode, path, mask); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 282 | } |
| 283 | |
| 284 | /* |
| 285 | * fsnotify_xattr - extended attributes were changed |
| 286 | */ |
| 287 | static inline void fsnotify_xattr(struct dentry *dentry) |
| 288 | { |
| 289 | struct inode *inode = dentry->d_inode; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 290 | __u32 mask = FS_ATTRIB; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 291 | |
| 292 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 293 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 294 | |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 295 | fsnotify_parent(NULL, dentry, mask); |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 296 | fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | /* |
| 300 | * fsnotify_change - notify_change event. file was modified and/or metadata |
| 301 | * was changed. |
| 302 | */ |
| 303 | static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid) |
| 304 | { |
| 305 | struct inode *inode = dentry->d_inode; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 306 | __u32 mask = 0; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 307 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 308 | if (ia_valid & ATTR_UID) |
| 309 | mask |= FS_ATTRIB; |
| 310 | if (ia_valid & ATTR_GID) |
| 311 | mask |= FS_ATTRIB; |
| 312 | if (ia_valid & ATTR_SIZE) |
| 313 | mask |= FS_MODIFY; |
| 314 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 315 | /* both times implies a utime(s) call */ |
| 316 | if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME)) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 317 | mask |= FS_ATTRIB; |
| 318 | else if (ia_valid & ATTR_ATIME) |
| 319 | mask |= FS_ACCESS; |
| 320 | else if (ia_valid & ATTR_MTIME) |
| 321 | mask |= FS_MODIFY; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 322 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 323 | if (ia_valid & ATTR_MODE) |
| 324 | mask |= FS_ATTRIB; |
| 325 | |
| 326 | if (mask) { |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 327 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 328 | mask |= FS_ISDIR; |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 329 | |
| 330 | fsnotify_parent(NULL, dentry, mask); |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 331 | fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 332 | } |
| 333 | } |
| 334 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 335 | #endif /* _LINUX_FS_NOTIFY_H */ |