1 /* SPDX-License-Identifier: GPL-2.0 */ 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 15 #include <linux/fsnotify_backend.h> 16 #include <linux/audit.h> 17 #include <linux/slab.h> 18 #include <linux/bug.h> 19 20 /* 21 * Notify this @dir inode about a change in a child directory entry. 22 * The directory entry may have turned positive or negative or its inode may 23 * have changed (i.e. renamed over). 24 * 25 * Unlike fsnotify_parent(), the event will be reported regardless of the 26 * FS_EVENT_ON_CHILD mask on the parent inode and will not be reported if only 27 * the child is interested and not the parent. 28 */ 29 static inline int fsnotify_name(__u32 mask, const void *data, int data_type, 30 struct inode *dir, const struct qstr *name, 31 u32 cookie) 32 { 33 if (atomic_long_read(&dir->i_sb->s_fsnotify_connectors) == 0) 34 return 0; 35 36 return fsnotify(mask, data, data_type, dir, name, NULL, cookie); 37 } 38 39 static inline void fsnotify_dirent(struct inode *dir, struct dentry *dentry, 40 __u32 mask) 41 { 42 fsnotify_name(mask, dentry, FSNOTIFY_EVENT_DENTRY, dir, &dentry->d_name, 0); 43 } 44 45 static inline void fsnotify_inode(struct inode *inode, __u32 mask) 46 { 47 if (atomic_long_read(&inode->i_sb->s_fsnotify_connectors) == 0) 48 return; 49 50 if (S_ISDIR(inode->i_mode)) 51 mask |= FS_ISDIR; 52 53 fsnotify(mask, inode, FSNOTIFY_EVENT_INODE, NULL, NULL, inode, 0); 54 } 55 56 /* Notify this dentry's parent about a child's events. */ 57 static inline int fsnotify_parent(struct dentry *dentry, __u32 mask, 58 const void *data, int data_type) 59 { 60 struct inode *inode = d_inode(dentry); 61 62 if (atomic_long_read(&inode->i_sb->s_fsnotify_connectors) == 0) 63 return 0; 64 65 if (S_ISDIR(inode->i_mode)) { 66 mask |= FS_ISDIR; 67 68 /* sb/mount marks are not interested in name of directory */ 69 if (!(dentry->d_flags & DCACHE_FSNOTIFY_PARENT_WATCHED)) 70 goto notify_child; 71 } 72 73 /* disconnected dentry cannot notify parent */ 74 if (IS_ROOT(dentry)) 75 goto notify_child; 76 77 return __fsnotify_parent(dentry, mask, data, data_type); 78 79 notify_child: 80 return fsnotify(mask, data, data_type, NULL, NULL, inode, 0); 81 } 82 83 /* 84 * Simple wrappers to consolidate calls to fsnotify_parent() when an event 85 * is on a file/dentry. 86 */ 87 static inline void fsnotify_dentry(struct dentry *dentry, __u32 mask) 88 { 89 fsnotify_parent(dentry, mask, dentry, FSNOTIFY_EVENT_DENTRY); 90 } 91 92 static inline int fsnotify_file(struct file *file, __u32 mask) 93 { 94 const struct path *path; 95 96 if (file->f_mode & FMODE_NONOTIFY) 97 return 0; 98 99 path = &file->f_path; 100 return fsnotify_parent(path->dentry, mask, path, FSNOTIFY_EVENT_PATH); 101 } 102 103 /* 104 * fsnotify_file_area_perm - permission hook before access to file range 105 */ 106 static inline int fsnotify_file_area_perm(struct file *file, int perm_mask, 107 const loff_t *ppos, size_t count) 108 { 109 __u32 fsnotify_mask = FS_ACCESS_PERM; 110 111 /* 112 * filesystem may be modified in the context of permission events 113 * (e.g. by HSM filling a file on access), so sb freeze protection 114 * must not be held. 115 */ 116 lockdep_assert_once(file_write_not_started(file)); 117 118 if (!(perm_mask & MAY_READ)) 119 return 0; 120 121 return fsnotify_file(file, fsnotify_mask); 122 } 123 124 /* 125 * fsnotify_file_perm - permission hook before file access 126 */ 127 static inline int fsnotify_file_perm(struct file *file, int perm_mask) 128 { 129 return fsnotify_file_area_perm(file, perm_mask, NULL, 0); 130 } 131 132 /* 133 * fsnotify_open_perm - permission hook before file open 134 */ 135 static inline int fsnotify_open_perm(struct file *file) 136 { 137 int ret; 138 139 if (file->f_flags & __FMODE_EXEC) { 140 ret = fsnotify_file(file, FS_OPEN_EXEC_PERM); 141 if (ret) 142 return ret; 143 } 144 145 return fsnotify_file(file, FS_OPEN_PERM); 146 } 147 148 /* 149 * fsnotify_link_count - inode's link count changed 150 */ 151 static inline void fsnotify_link_count(struct inode *inode) 152 { 153 fsnotify_inode(inode, FS_ATTRIB); 154 } 155 156 /* 157 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir 158 */ 159 static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir, 160 const struct qstr *old_name, 161 int isdir, struct inode *target, 162 struct dentry *moved) 163 { 164 struct inode *source = moved->d_inode; 165 u32 fs_cookie = fsnotify_get_cookie(); 166 __u32 old_dir_mask = FS_MOVED_FROM; 167 __u32 new_dir_mask = FS_MOVED_TO; 168 __u32 rename_mask = FS_RENAME; 169 const struct qstr *new_name = &moved->d_name; 170 171 if (isdir) { 172 old_dir_mask |= FS_ISDIR; 173 new_dir_mask |= FS_ISDIR; 174 rename_mask |= FS_ISDIR; 175 } 176 177 /* Event with information about both old and new parent+name */ 178 fsnotify_name(rename_mask, moved, FSNOTIFY_EVENT_DENTRY, 179 old_dir, old_name, 0); 180 181 fsnotify_name(old_dir_mask, source, FSNOTIFY_EVENT_INODE, 182 old_dir, old_name, fs_cookie); 183 fsnotify_name(new_dir_mask, source, FSNOTIFY_EVENT_INODE, 184 new_dir, new_name, fs_cookie); 185 186 if (target) 187 fsnotify_link_count(target); 188 fsnotify_inode(source, FS_MOVE_SELF); 189 audit_inode_child(new_dir, moved, AUDIT_TYPE_CHILD_CREATE); 190 } 191 192 /* 193 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed 194 */ 195 static inline void fsnotify_inode_delete(struct inode *inode) 196 { 197 __fsnotify_inode_delete(inode); 198 } 199 200 /* 201 * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed 202 */ 203 static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt) 204 { 205 __fsnotify_vfsmount_delete(mnt); 206 } 207 208 /* 209 * fsnotify_inoderemove - an inode is going away 210 */ 211 static inline void fsnotify_inoderemove(struct inode *inode) 212 { 213 fsnotify_inode(inode, FS_DELETE_SELF); 214 __fsnotify_inode_delete(inode); 215 } 216 217 /* 218 * fsnotify_create - 'name' was linked in 219 * 220 * Caller must make sure that dentry->d_name is stable. 221 * Note: some filesystems (e.g. kernfs) leave @dentry negative and instantiate 222 * ->d_inode later 223 */ 224 static inline void fsnotify_create(struct inode *dir, struct dentry *dentry) 225 { 226 audit_inode_child(dir, dentry, AUDIT_TYPE_CHILD_CREATE); 227 228 fsnotify_dirent(dir, dentry, FS_CREATE); 229 } 230 231 /* 232 * fsnotify_link - new hardlink in 'inode' directory 233 * 234 * Caller must make sure that new_dentry->d_name is stable. 235 * Note: We have to pass also the linked inode ptr as some filesystems leave 236 * new_dentry->d_inode NULL and instantiate inode pointer later 237 */ 238 static inline void fsnotify_link(struct inode *dir, struct inode *inode, 239 struct dentry *new_dentry) 240 { 241 fsnotify_link_count(inode); 242 audit_inode_child(dir, new_dentry, AUDIT_TYPE_CHILD_CREATE); 243 244 fsnotify_name(FS_CREATE, inode, FSNOTIFY_EVENT_INODE, 245 dir, &new_dentry->d_name, 0); 246 } 247 248 /* 249 * fsnotify_delete - @dentry was unlinked and unhashed 250 * 251 * Caller must make sure that dentry->d_name is stable. 252 * 253 * Note: unlike fsnotify_unlink(), we have to pass also the unlinked inode 254 * as this may be called after d_delete() and old_dentry may be negative. 255 */ 256 static inline void fsnotify_delete(struct inode *dir, struct inode *inode, 257 struct dentry *dentry) 258 { 259 __u32 mask = FS_DELETE; 260 261 if (S_ISDIR(inode->i_mode)) 262 mask |= FS_ISDIR; 263 264 fsnotify_name(mask, inode, FSNOTIFY_EVENT_INODE, dir, &dentry->d_name, 265 0); 266 } 267 268 /** 269 * d_delete_notify - delete a dentry and call fsnotify_delete() 270 * @dentry: The dentry to delete 271 * 272 * This helper is used to guaranty that the unlinked inode cannot be found 273 * by lookup of this name after fsnotify_delete() event has been delivered. 274 */ 275 static inline void d_delete_notify(struct inode *dir, struct dentry *dentry) 276 { 277 struct inode *inode = d_inode(dentry); 278 279 ihold(inode); 280 d_delete(dentry); 281 fsnotify_delete(dir, inode, dentry); 282 iput(inode); 283 } 284 285 /* 286 * fsnotify_unlink - 'name' was unlinked 287 * 288 * Caller must make sure that dentry->d_name is stable. 289 */ 290 static inline void fsnotify_unlink(struct inode *dir, struct dentry *dentry) 291 { 292 if (WARN_ON_ONCE(d_is_negative(dentry))) 293 return; 294 295 fsnotify_delete(dir, d_inode(dentry), dentry); 296 } 297 298 /* 299 * fsnotify_mkdir - directory 'name' was created 300 * 301 * Caller must make sure that dentry->d_name is stable. 302 * Note: some filesystems (e.g. kernfs) leave @dentry negative and instantiate 303 * ->d_inode later 304 */ 305 static inline void fsnotify_mkdir(struct inode *dir, struct dentry *dentry) 306 { 307 audit_inode_child(dir, dentry, AUDIT_TYPE_CHILD_CREATE); 308 309 fsnotify_dirent(dir, dentry, FS_CREATE | FS_ISDIR); 310 } 311 312 /* 313 * fsnotify_rmdir - directory 'name' was removed 314 * 315 * Caller must make sure that dentry->d_name is stable. 316 */ 317 static inline void fsnotify_rmdir(struct inode *dir, struct dentry *dentry) 318 { 319 if (WARN_ON_ONCE(d_is_negative(dentry))) 320 return; 321 322 fsnotify_delete(dir, d_inode(dentry), dentry); 323 } 324 325 /* 326 * fsnotify_access - file was read 327 */ 328 static inline void fsnotify_access(struct file *file) 329 { 330 fsnotify_file(file, FS_ACCESS); 331 } 332 333 /* 334 * fsnotify_modify - file was modified 335 */ 336 static inline void fsnotify_modify(struct file *file) 337 { 338 fsnotify_file(file, FS_MODIFY); 339 } 340 341 /* 342 * fsnotify_open - file was opened 343 */ 344 static inline void fsnotify_open(struct file *file) 345 { 346 __u32 mask = FS_OPEN; 347 348 if (file->f_flags & __FMODE_EXEC) 349 mask |= FS_OPEN_EXEC; 350 351 fsnotify_file(file, mask); 352 } 353 354 /* 355 * fsnotify_close - file was closed 356 */ 357 static inline void fsnotify_close(struct file *file) 358 { 359 __u32 mask = (file->f_mode & FMODE_WRITE) ? FS_CLOSE_WRITE : 360 FS_CLOSE_NOWRITE; 361 362 fsnotify_file(file, mask); 363 } 364 365 /* 366 * fsnotify_xattr - extended attributes were changed 367 */ 368 static inline void fsnotify_xattr(struct dentry *dentry) 369 { 370 fsnotify_dentry(dentry, FS_ATTRIB); 371 } 372 373 /* 374 * fsnotify_change - notify_change event. file was modified and/or metadata 375 * was changed. 376 */ 377 static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid) 378 { 379 __u32 mask = 0; 380 381 if (ia_valid & ATTR_UID) 382 mask |= FS_ATTRIB; 383 if (ia_valid & ATTR_GID) 384 mask |= FS_ATTRIB; 385 if (ia_valid & ATTR_SIZE) 386 mask |= FS_MODIFY; 387 388 /* both times implies a utime(s) call */ 389 if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME)) 390 mask |= FS_ATTRIB; 391 else if (ia_valid & ATTR_ATIME) 392 mask |= FS_ACCESS; 393 else if (ia_valid & ATTR_MTIME) 394 mask |= FS_MODIFY; 395 396 if (ia_valid & ATTR_MODE) 397 mask |= FS_ATTRIB; 398 399 if (mask) 400 fsnotify_dentry(dentry, mask); 401 } 402 403 static inline int fsnotify_sb_error(struct super_block *sb, struct inode *inode, 404 int error) 405 { 406 struct fs_error_report report = { 407 .error = error, 408 .inode = inode, 409 .sb = sb, 410 }; 411 412 return fsnotify(FS_ERROR, &report, FSNOTIFY_EVENT_ERROR, 413 NULL, NULL, NULL, 0); 414 } 415 416 #endif /* _LINUX_FS_NOTIFY_H */ 417