Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / include / linux / fsnotify.h
blob278620e063ab2239f996069458c0adbb97a3c36b
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_FS_NOTIFY_H
3 #define _LINUX_FS_NOTIFY_H
5 /*
6 * include/linux/fsnotify.h - generic hooks for filesystem notification, to
7 * reduce in-source duplication from both dnotify and inotify.
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.
12 * (C) Copyright 2005 Robert Love
15 #include <linux/fsnotify_backend.h>
16 #include <linux/audit.h>
17 #include <linux/slab.h>
18 #include <linux/bug.h>
20 /* Are there any inode/mount/sb objects watched with priority prio or above? */
21 static inline bool fsnotify_sb_has_priority_watchers(struct super_block *sb,
22 int prio)
24 struct fsnotify_sb_info *sbinfo = fsnotify_sb_info(sb);
26 /* Were any marks ever added to any object on this sb? */
27 if (!sbinfo)
28 return false;
30 return atomic_long_read(&sbinfo->watched_objects[prio]);
33 /* Are there any inode/mount/sb objects that are being watched at all? */
34 static inline bool fsnotify_sb_has_watchers(struct super_block *sb)
36 return fsnotify_sb_has_priority_watchers(sb, 0);
40 * Notify this @dir inode about a change in a child directory entry.
41 * The directory entry may have turned positive or negative or its inode may
42 * have changed (i.e. renamed over).
44 * Unlike fsnotify_parent(), the event will be reported regardless of the
45 * FS_EVENT_ON_CHILD mask on the parent inode and will not be reported if only
46 * the child is interested and not the parent.
48 static inline int fsnotify_name(__u32 mask, const void *data, int data_type,
49 struct inode *dir, const struct qstr *name,
50 u32 cookie)
52 if (!fsnotify_sb_has_watchers(dir->i_sb))
53 return 0;
55 return fsnotify(mask, data, data_type, dir, name, NULL, cookie);
58 static inline void fsnotify_dirent(struct inode *dir, struct dentry *dentry,
59 __u32 mask)
61 fsnotify_name(mask, dentry, FSNOTIFY_EVENT_DENTRY, dir, &dentry->d_name, 0);
64 static inline void fsnotify_inode(struct inode *inode, __u32 mask)
66 if (!fsnotify_sb_has_watchers(inode->i_sb))
67 return;
69 if (S_ISDIR(inode->i_mode))
70 mask |= FS_ISDIR;
72 fsnotify(mask, inode, FSNOTIFY_EVENT_INODE, NULL, NULL, inode, 0);
75 /* Notify this dentry's parent about a child's events. */
76 static inline int fsnotify_parent(struct dentry *dentry, __u32 mask,
77 const void *data, int data_type)
79 struct inode *inode = d_inode(dentry);
81 if (!fsnotify_sb_has_watchers(inode->i_sb))
82 return 0;
84 if (S_ISDIR(inode->i_mode)) {
85 mask |= FS_ISDIR;
87 /* sb/mount marks are not interested in name of directory */
88 if (!(dentry->d_flags & DCACHE_FSNOTIFY_PARENT_WATCHED))
89 goto notify_child;
92 /* disconnected dentry cannot notify parent */
93 if (IS_ROOT(dentry))
94 goto notify_child;
96 return __fsnotify_parent(dentry, mask, data, data_type);
98 notify_child:
99 return fsnotify(mask, data, data_type, NULL, NULL, inode, 0);
103 * Simple wrappers to consolidate calls to fsnotify_parent() when an event
104 * is on a file/dentry.
106 static inline void fsnotify_dentry(struct dentry *dentry, __u32 mask)
108 fsnotify_parent(dentry, mask, dentry, FSNOTIFY_EVENT_DENTRY);
111 static inline int fsnotify_file(struct file *file, __u32 mask)
113 const struct path *path;
116 * FMODE_NONOTIFY are fds generated by fanotify itself which should not
117 * generate new events. We also don't want to generate events for
118 * FMODE_PATH fds (involves open & close events) as they are just
119 * handle creation / destruction events and not "real" file events.
121 if (file->f_mode & (FMODE_NONOTIFY | FMODE_PATH))
122 return 0;
124 path = &file->f_path;
125 /* Permission events require group prio >= FSNOTIFY_PRIO_CONTENT */
126 if (mask & ALL_FSNOTIFY_PERM_EVENTS &&
127 !fsnotify_sb_has_priority_watchers(path->dentry->d_sb,
128 FSNOTIFY_PRIO_CONTENT))
129 return 0;
131 return fsnotify_parent(path->dentry, mask, path, FSNOTIFY_EVENT_PATH);
134 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
136 * fsnotify_file_area_perm - permission hook before access to file range
138 static inline int fsnotify_file_area_perm(struct file *file, int perm_mask,
139 const loff_t *ppos, size_t count)
141 __u32 fsnotify_mask = FS_ACCESS_PERM;
144 * filesystem may be modified in the context of permission events
145 * (e.g. by HSM filling a file on access), so sb freeze protection
146 * must not be held.
148 lockdep_assert_once(file_write_not_started(file));
150 if (!(perm_mask & MAY_READ))
151 return 0;
153 return fsnotify_file(file, fsnotify_mask);
157 * fsnotify_file_perm - permission hook before file access
159 static inline int fsnotify_file_perm(struct file *file, int perm_mask)
161 return fsnotify_file_area_perm(file, perm_mask, NULL, 0);
165 * fsnotify_open_perm - permission hook before file open
167 static inline int fsnotify_open_perm(struct file *file)
169 int ret;
171 if (file->f_flags & __FMODE_EXEC) {
172 ret = fsnotify_file(file, FS_OPEN_EXEC_PERM);
173 if (ret)
174 return ret;
177 return fsnotify_file(file, FS_OPEN_PERM);
180 #else
181 static inline int fsnotify_file_area_perm(struct file *file, int perm_mask,
182 const loff_t *ppos, size_t count)
184 return 0;
187 static inline int fsnotify_file_perm(struct file *file, int perm_mask)
189 return 0;
192 static inline int fsnotify_open_perm(struct file *file)
194 return 0;
196 #endif
199 * fsnotify_link_count - inode's link count changed
201 static inline void fsnotify_link_count(struct inode *inode)
203 fsnotify_inode(inode, FS_ATTRIB);
207 * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
209 static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir,
210 const struct qstr *old_name,
211 int isdir, struct inode *target,
212 struct dentry *moved)
214 struct inode *source = moved->d_inode;
215 u32 fs_cookie = fsnotify_get_cookie();
216 __u32 old_dir_mask = FS_MOVED_FROM;
217 __u32 new_dir_mask = FS_MOVED_TO;
218 __u32 rename_mask = FS_RENAME;
219 const struct qstr *new_name = &moved->d_name;
221 if (isdir) {
222 old_dir_mask |= FS_ISDIR;
223 new_dir_mask |= FS_ISDIR;
224 rename_mask |= FS_ISDIR;
227 /* Event with information about both old and new parent+name */
228 fsnotify_name(rename_mask, moved, FSNOTIFY_EVENT_DENTRY,
229 old_dir, old_name, 0);
231 fsnotify_name(old_dir_mask, source, FSNOTIFY_EVENT_INODE,
232 old_dir, old_name, fs_cookie);
233 fsnotify_name(new_dir_mask, source, FSNOTIFY_EVENT_INODE,
234 new_dir, new_name, fs_cookie);
236 if (target)
237 fsnotify_link_count(target);
238 fsnotify_inode(source, FS_MOVE_SELF);
239 audit_inode_child(new_dir, moved, AUDIT_TYPE_CHILD_CREATE);
243 * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
245 static inline void fsnotify_inode_delete(struct inode *inode)
247 __fsnotify_inode_delete(inode);
251 * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed
253 static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt)
255 __fsnotify_vfsmount_delete(mnt);
259 * fsnotify_inoderemove - an inode is going away
261 static inline void fsnotify_inoderemove(struct inode *inode)
263 fsnotify_inode(inode, FS_DELETE_SELF);
264 __fsnotify_inode_delete(inode);
268 * fsnotify_create - 'name' was linked in
270 * Caller must make sure that dentry->d_name is stable.
271 * Note: some filesystems (e.g. kernfs) leave @dentry negative and instantiate
272 * ->d_inode later
274 static inline void fsnotify_create(struct inode *dir, struct dentry *dentry)
276 audit_inode_child(dir, dentry, AUDIT_TYPE_CHILD_CREATE);
278 fsnotify_dirent(dir, dentry, FS_CREATE);
282 * fsnotify_link - new hardlink in 'inode' directory
284 * Caller must make sure that new_dentry->d_name is stable.
285 * Note: We have to pass also the linked inode ptr as some filesystems leave
286 * new_dentry->d_inode NULL and instantiate inode pointer later
288 static inline void fsnotify_link(struct inode *dir, struct inode *inode,
289 struct dentry *new_dentry)
291 fsnotify_link_count(inode);
292 audit_inode_child(dir, new_dentry, AUDIT_TYPE_CHILD_CREATE);
294 fsnotify_name(FS_CREATE, inode, FSNOTIFY_EVENT_INODE,
295 dir, &new_dentry->d_name, 0);
299 * fsnotify_delete - @dentry was unlinked and unhashed
301 * Caller must make sure that dentry->d_name is stable.
303 * Note: unlike fsnotify_unlink(), we have to pass also the unlinked inode
304 * as this may be called after d_delete() and old_dentry may be negative.
306 static inline void fsnotify_delete(struct inode *dir, struct inode *inode,
307 struct dentry *dentry)
309 __u32 mask = FS_DELETE;
311 if (S_ISDIR(inode->i_mode))
312 mask |= FS_ISDIR;
314 fsnotify_name(mask, inode, FSNOTIFY_EVENT_INODE, dir, &dentry->d_name,
319 * d_delete_notify - delete a dentry and call fsnotify_delete()
320 * @dentry: The dentry to delete
322 * This helper is used to guaranty that the unlinked inode cannot be found
323 * by lookup of this name after fsnotify_delete() event has been delivered.
325 static inline void d_delete_notify(struct inode *dir, struct dentry *dentry)
327 struct inode *inode = d_inode(dentry);
329 ihold(inode);
330 d_delete(dentry);
331 fsnotify_delete(dir, inode, dentry);
332 iput(inode);
336 * fsnotify_unlink - 'name' was unlinked
338 * Caller must make sure that dentry->d_name is stable.
340 static inline void fsnotify_unlink(struct inode *dir, struct dentry *dentry)
342 if (WARN_ON_ONCE(d_is_negative(dentry)))
343 return;
345 fsnotify_delete(dir, d_inode(dentry), dentry);
349 * fsnotify_mkdir - directory 'name' was created
351 * Caller must make sure that dentry->d_name is stable.
352 * Note: some filesystems (e.g. kernfs) leave @dentry negative and instantiate
353 * ->d_inode later
355 static inline void fsnotify_mkdir(struct inode *dir, struct dentry *dentry)
357 audit_inode_child(dir, dentry, AUDIT_TYPE_CHILD_CREATE);
359 fsnotify_dirent(dir, dentry, FS_CREATE | FS_ISDIR);
363 * fsnotify_rmdir - directory 'name' was removed
365 * Caller must make sure that dentry->d_name is stable.
367 static inline void fsnotify_rmdir(struct inode *dir, struct dentry *dentry)
369 if (WARN_ON_ONCE(d_is_negative(dentry)))
370 return;
372 fsnotify_delete(dir, d_inode(dentry), dentry);
376 * fsnotify_access - file was read
378 static inline void fsnotify_access(struct file *file)
380 fsnotify_file(file, FS_ACCESS);
384 * fsnotify_modify - file was modified
386 static inline void fsnotify_modify(struct file *file)
388 fsnotify_file(file, FS_MODIFY);
392 * fsnotify_open - file was opened
394 static inline void fsnotify_open(struct file *file)
396 __u32 mask = FS_OPEN;
398 if (file->f_flags & __FMODE_EXEC)
399 mask |= FS_OPEN_EXEC;
401 fsnotify_file(file, mask);
405 * fsnotify_close - file was closed
407 static inline void fsnotify_close(struct file *file)
409 __u32 mask = (file->f_mode & FMODE_WRITE) ? FS_CLOSE_WRITE :
410 FS_CLOSE_NOWRITE;
412 fsnotify_file(file, mask);
416 * fsnotify_xattr - extended attributes were changed
418 static inline void fsnotify_xattr(struct dentry *dentry)
420 fsnotify_dentry(dentry, FS_ATTRIB);
424 * fsnotify_change - notify_change event. file was modified and/or metadata
425 * was changed.
427 static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
429 __u32 mask = 0;
431 if (ia_valid & ATTR_UID)
432 mask |= FS_ATTRIB;
433 if (ia_valid & ATTR_GID)
434 mask |= FS_ATTRIB;
435 if (ia_valid & ATTR_SIZE)
436 mask |= FS_MODIFY;
438 /* both times implies a utime(s) call */
439 if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
440 mask |= FS_ATTRIB;
441 else if (ia_valid & ATTR_ATIME)
442 mask |= FS_ACCESS;
443 else if (ia_valid & ATTR_MTIME)
444 mask |= FS_MODIFY;
446 if (ia_valid & ATTR_MODE)
447 mask |= FS_ATTRIB;
449 if (mask)
450 fsnotify_dentry(dentry, mask);
453 static inline int fsnotify_sb_error(struct super_block *sb, struct inode *inode,
454 int error)
456 struct fs_error_report report = {
457 .error = error,
458 .inode = inode,
459 .sb = sb,
462 return fsnotify(FS_ERROR, &report, FSNOTIFY_EVENT_ERROR,
463 NULL, NULL, NULL, 0);
466 #endif /* _LINUX_FS_NOTIFY_H */