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