Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 1 | #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 Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 14 | #include <linux/fsnotify_backend.h> |
Amy Griffis | 73241cc | 2005-11-03 16:00:25 +0000 | [diff] [blame] | 15 | #include <linux/audit.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 17 | #include <linux/bug.h> |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 18 | |
| 19 | /* |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 20 | * fsnotify_d_instantiate - instantiate a dentry for inode |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 21 | */ |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 22 | static inline void fsnotify_d_instantiate(struct dentry *dentry, |
| 23 | struct inode *inode) |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 24 | { |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 25 | __fsnotify_d_instantiate(dentry, inode); |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 26 | } |
| 27 | |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 28 | /* Notify this dentry's parent about a child's events. */ |
Eric Paris | 5242039 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 29 | static inline int fsnotify_parent(struct path *path, struct dentry *dentry, __u32 mask) |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 30 | { |
Andreas Gruenbacher | 72acc85 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 31 | if (!dentry) |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 32 | dentry = path->dentry; |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 33 | |
Eric Paris | 5242039 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 34 | return __fsnotify_parent(path, dentry, mask); |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 35 | } |
| 36 | |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 37 | /* simple call site for access decisions */ |
| 38 | static inline int fsnotify_perm(struct file *file, int mask) |
| 39 | { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 40 | struct path *path = &file->f_path; |
| 41 | struct inode *inode = path->dentry->d_inode; |
Eric Paris | fb1cfb8 | 2010-05-12 11:42:29 -0400 | [diff] [blame] | 42 | __u32 fsnotify_mask = 0; |
Eric Paris | 5242039 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 43 | int ret; |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 44 | |
| 45 | if (file->f_mode & FMODE_NONOTIFY) |
| 46 | return 0; |
| 47 | if (!(mask & (MAY_READ | MAY_OPEN))) |
| 48 | return 0; |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 49 | if (mask & MAY_OPEN) |
| 50 | fsnotify_mask = FS_OPEN_PERM; |
Eric Paris | fb1cfb8 | 2010-05-12 11:42:29 -0400 | [diff] [blame] | 51 | else if (mask & MAY_READ) |
| 52 | fsnotify_mask = FS_ACCESS_PERM; |
| 53 | else |
| 54 | BUG(); |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 55 | |
Eric Paris | 5242039 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 56 | ret = fsnotify_parent(path, NULL, fsnotify_mask); |
| 57 | if (ret) |
| 58 | return ret; |
| 59 | |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 60 | return fsnotify(inode, fsnotify_mask, path, FSNOTIFY_EVENT_PATH, NULL, 0); |
Eric Paris | c4ec54b | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 61 | } |
| 62 | |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 63 | /* |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 64 | * fsnotify_d_move - dentry has been moved |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 65 | */ |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 66 | static inline void fsnotify_d_move(struct dentry *dentry) |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 67 | { |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 68 | /* |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 69 | * On move we need to update dentry->d_flags to indicate if the new parent |
| 70 | * cares about events from this dentry. |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 71 | */ |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 72 | __fsnotify_update_dcache_flags(dentry); |
Nick Piggin | c32ccd8 | 2006-03-25 03:07:09 -0800 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | /* |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 76 | * fsnotify_link_count - inode's link count changed |
| 77 | */ |
| 78 | static inline void fsnotify_link_count(struct inode *inode) |
| 79 | { |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 80 | fsnotify(inode, FS_ATTRIB, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /* |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 84 | * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir |
| 85 | */ |
| 86 | 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] | 87 | const unsigned char *old_name, |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 88 | int isdir, struct inode *target, struct dentry *moved) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 89 | { |
Al Viro | 5a190ae | 2007-06-07 12:19:32 -0400 | [diff] [blame] | 90 | struct inode *source = moved->d_inode; |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 91 | u32 fs_cookie = fsnotify_get_cookie(); |
Eric Paris | ff52cc2 | 2009-06-11 11:09:47 -0400 | [diff] [blame] | 92 | __u32 old_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_FROM); |
| 93 | __u32 new_dir_mask = (FS_EVENT_ON_CHILD | FS_MOVED_TO); |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 94 | const unsigned char *new_name = moved->d_name.name; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 95 | |
Eric Paris | ff52cc2 | 2009-06-11 11:09:47 -0400 | [diff] [blame] | 96 | if (old_dir == new_dir) |
| 97 | old_dir_mask |= FS_DN_RENAME; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 98 | |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 99 | if (isdir) { |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 100 | old_dir_mask |= FS_ISDIR; |
| 101 | new_dir_mask |= FS_ISDIR; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 102 | } |
| 103 | |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 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); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 106 | |
Eric Paris | 2dfc1ca | 2009-12-17 20:30:52 -0500 | [diff] [blame] | 107 | if (target) |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 108 | fsnotify_link_count(target); |
John McCutchan | 89204c4 | 2005-08-15 12:13:28 -0400 | [diff] [blame] | 109 | |
Eric Paris | 2dfc1ca | 2009-12-17 20:30:52 -0500 | [diff] [blame] | 110 | if (source) |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 111 | 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] | 112 | audit_inode_child(new_dir, moved, AUDIT_TYPE_CHILD_CREATE); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /* |
Eric Paris | 3be25f4 | 2009-05-21 17:01:26 -0400 | [diff] [blame] | 116 | * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed |
| 117 | */ |
| 118 | static inline void fsnotify_inode_delete(struct inode *inode) |
| 119 | { |
| 120 | __fsnotify_inode_delete(inode); |
| 121 | } |
| 122 | |
| 123 | /* |
Andreas Gruenbacher | ca9c726 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 124 | * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed |
| 125 | */ |
| 126 | static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt) |
| 127 | { |
| 128 | __fsnotify_vfsmount_delete(mnt); |
| 129 | } |
| 130 | |
| 131 | /* |
John McCutchan | 7a91bf7 | 2005-08-08 13:52:16 -0400 | [diff] [blame] | 132 | * fsnotify_nameremove - a filename was removed from a directory |
| 133 | */ |
| 134 | static inline void fsnotify_nameremove(struct dentry *dentry, int isdir) |
| 135 | { |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 136 | __u32 mask = FS_DELETE; |
| 137 | |
John McCutchan | 7a91bf7 | 2005-08-08 13:52:16 -0400 | [diff] [blame] | 138 | if (isdir) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 139 | mask |= FS_ISDIR; |
Eric Paris | c28f7e5 | 2009-05-21 17:01:29 -0400 | [diff] [blame] | 140 | |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 141 | fsnotify_parent(NULL, dentry, mask); |
John McCutchan | 7a91bf7 | 2005-08-08 13:52:16 -0400 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | /* |
| 145 | * fsnotify_inoderemove - an inode is going away |
| 146 | */ |
| 147 | static inline void fsnotify_inoderemove(struct inode *inode) |
| 148 | { |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 149 | fsnotify(inode, FS_DELETE_SELF, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Eric Paris | 3be25f4 | 2009-05-21 17:01:26 -0400 | [diff] [blame] | 150 | __fsnotify_inode_delete(inode); |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | /* |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 154 | * fsnotify_create - 'name' was linked in |
| 155 | */ |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 156 | static inline void fsnotify_create(struct inode *inode, struct dentry *dentry) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 157 | { |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 158 | audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 159 | |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 160 | fsnotify(inode, FS_CREATE, dentry->d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /* |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 164 | * fsnotify_link - new hardlink in 'inode' directory |
| 165 | * Note: We have to pass also the linked inode ptr as some filesystems leave |
| 166 | * new_dentry->d_inode NULL and instantiate inode pointer later |
| 167 | */ |
| 168 | static inline void fsnotify_link(struct inode *dir, struct inode *inode, struct dentry *new_dentry) |
| 169 | { |
Jan Kara | ece9591 | 2008-02-06 01:37:13 -0800 | [diff] [blame] | 170 | fsnotify_link_count(inode); |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 171 | audit_inode_child(dir, new_dentry, AUDIT_TYPE_CHILD_CREATE); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 172 | |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 173 | 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] | 174 | } |
| 175 | |
| 176 | /* |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 177 | * fsnotify_mkdir - directory 'name' was created |
| 178 | */ |
Amy Griffis | f38aa94 | 2005-11-03 15:57:06 +0000 | [diff] [blame] | 179 | static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 180 | { |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 181 | __u32 mask = (FS_CREATE | FS_ISDIR); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 182 | struct inode *d_inode = dentry->d_inode; |
| 183 | |
Jeff Layton | 4fa6b5e | 2012-10-10 15:25:25 -0400 | [diff] [blame] | 184 | audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE); |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 185 | |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 186 | fsnotify(inode, mask, d_inode, FSNOTIFY_EVENT_INODE, dentry->d_name.name, 0); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | /* |
| 190 | * fsnotify_access - file was read |
| 191 | */ |
Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 192 | static inline void fsnotify_access(struct file *file) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 193 | { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 194 | struct path *path = &file->f_path; |
| 195 | struct inode *inode = path->dentry->d_inode; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 196 | __u32 mask = FS_ACCESS; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 197 | |
| 198 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 199 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 200 | |
Eric Paris | ecf081d | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 201 | if (!(file->f_mode & FMODE_NONOTIFY)) { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 202 | fsnotify_parent(path, NULL, mask); |
| 203 | fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0); |
Eric Paris | ecf081d | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 204 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | /* |
| 208 | * fsnotify_modify - file was modified |
| 209 | */ |
Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 210 | static inline void fsnotify_modify(struct file *file) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 211 | { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 212 | struct path *path = &file->f_path; |
| 213 | struct inode *inode = path->dentry->d_inode; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 214 | __u32 mask = FS_MODIFY; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 215 | |
| 216 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 217 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 218 | |
Eric Paris | ecf081d | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 219 | if (!(file->f_mode & FMODE_NONOTIFY)) { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 220 | fsnotify_parent(path, NULL, mask); |
| 221 | fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0); |
Eric Paris | ecf081d | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 222 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /* |
| 226 | * fsnotify_open - file was opened |
| 227 | */ |
Eric Paris | 2a12a9d | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 228 | static inline void fsnotify_open(struct file *file) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 229 | { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 230 | struct path *path = &file->f_path; |
| 231 | struct inode *inode = path->dentry->d_inode; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 232 | __u32 mask = FS_OPEN; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 233 | |
| 234 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 235 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 236 | |
Lino Sanfilippo | 6bff7ec | 2010-10-29 12:02:17 +0200 | [diff] [blame] | 237 | fsnotify_parent(path, NULL, mask); |
| 238 | fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | /* |
| 242 | * fsnotify_close - file was closed |
| 243 | */ |
| 244 | static inline void fsnotify_close(struct file *file) |
| 245 | { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 246 | struct path *path = &file->f_path; |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 247 | struct inode *inode = file->f_path.dentry->d_inode; |
Al Viro | aeb5d72 | 2008-09-02 15:28:45 -0400 | [diff] [blame] | 248 | fmode_t mode = file->f_mode; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 249 | __u32 mask = (mode & FMODE_WRITE) ? FS_CLOSE_WRITE : FS_CLOSE_NOWRITE; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 250 | |
| 251 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 252 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 253 | |
Eric Paris | ecf081d | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 254 | if (!(file->f_mode & FMODE_NONOTIFY)) { |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 255 | fsnotify_parent(path, NULL, mask); |
| 256 | fsnotify(inode, mask, path, FSNOTIFY_EVENT_PATH, NULL, 0); |
Eric Paris | ecf081d | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 257 | } |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /* |
| 261 | * fsnotify_xattr - extended attributes were changed |
| 262 | */ |
| 263 | static inline void fsnotify_xattr(struct dentry *dentry) |
| 264 | { |
| 265 | struct inode *inode = dentry->d_inode; |
Eric Paris | 9058652 | 2009-05-21 17:01:20 -0400 | [diff] [blame] | 266 | __u32 mask = FS_ATTRIB; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 267 | |
| 268 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 269 | mask |= FS_ISDIR; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 270 | |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 271 | fsnotify_parent(NULL, dentry, mask); |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 272 | fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | /* |
| 276 | * fsnotify_change - notify_change event. file was modified and/or metadata |
| 277 | * was changed. |
| 278 | */ |
| 279 | static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid) |
| 280 | { |
| 281 | struct inode *inode = dentry->d_inode; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 282 | __u32 mask = 0; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 283 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 284 | if (ia_valid & ATTR_UID) |
| 285 | mask |= FS_ATTRIB; |
| 286 | if (ia_valid & ATTR_GID) |
| 287 | mask |= FS_ATTRIB; |
| 288 | if (ia_valid & ATTR_SIZE) |
| 289 | mask |= FS_MODIFY; |
| 290 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 291 | /* both times implies a utime(s) call */ |
| 292 | if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME)) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 293 | mask |= FS_ATTRIB; |
| 294 | else if (ia_valid & ATTR_ATIME) |
| 295 | mask |= FS_ACCESS; |
| 296 | else if (ia_valid & ATTR_MTIME) |
| 297 | mask |= FS_MODIFY; |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 298 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 299 | if (ia_valid & ATTR_MODE) |
| 300 | mask |= FS_ATTRIB; |
| 301 | |
| 302 | if (mask) { |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 303 | if (S_ISDIR(inode->i_mode)) |
Eric Paris | b29866a | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 304 | mask |= FS_ISDIR; |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 305 | |
| 306 | fsnotify_parent(NULL, dentry, mask); |
Eric Paris | 47882c6 | 2009-05-21 17:01:47 -0400 | [diff] [blame] | 307 | fsnotify(inode, mask, inode, FSNOTIFY_EVENT_INODE, NULL, 0); |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 308 | } |
| 309 | } |
| 310 | |
Eric Paris | 2dfc1ca | 2009-12-17 20:30:52 -0500 | [diff] [blame] | 311 | #if defined(CONFIG_FSNOTIFY) /* notify helpers */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 312 | |
| 313 | /* |
| 314 | * fsnotify_oldname_init - save off the old filename before we change it |
| 315 | */ |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 316 | static inline const unsigned char *fsnotify_oldname_init(const unsigned char *name) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 317 | { |
| 318 | return kstrdup(name, GFP_KERNEL); |
| 319 | } |
| 320 | |
| 321 | /* |
| 322 | * fsnotify_oldname_free - free the name we got from fsnotify_oldname_init |
| 323 | */ |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 324 | static inline void fsnotify_oldname_free(const unsigned char *old_name) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 325 | { |
| 326 | kfree(old_name); |
| 327 | } |
| 328 | |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 329 | #else /* CONFIG_FSNOTIFY */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 330 | |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 331 | static inline const char *fsnotify_oldname_init(const unsigned char *name) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 332 | { |
| 333 | return NULL; |
| 334 | } |
| 335 | |
Eric Paris | 59b0df2 | 2010-02-08 12:53:52 -0500 | [diff] [blame] | 336 | static inline void fsnotify_oldname_free(const unsigned char *old_name) |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 337 | { |
| 338 | } |
| 339 | |
Eric Paris | 28c60e3 | 2009-12-17 21:24:21 -0500 | [diff] [blame] | 340 | #endif /* CONFIG_FSNOTIFY */ |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 341 | |
Robert Love | 0eeca28 | 2005-07-12 17:06:03 -0400 | [diff] [blame] | 342 | #endif /* _LINUX_FS_NOTIFY_H */ |