• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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  */
fsnotify_name(struct inode * dir,__u32 mask,struct inode * child,const struct qstr * name,u32 cookie)29 static inline void fsnotify_name(struct inode *dir, __u32 mask,
30 				 struct inode *child,
31 				 const struct qstr *name, u32 cookie)
32 {
33 	if (atomic_long_read(&dir->i_sb->s_fsnotify_connectors) == 0)
34 		return;
35 
36 	fsnotify(mask, child, FSNOTIFY_EVENT_INODE, dir, name, NULL, cookie);
37 }
38 
fsnotify_dirent(struct inode * dir,struct dentry * dentry,__u32 mask)39 static inline void fsnotify_dirent(struct inode *dir, struct dentry *dentry,
40 				   __u32 mask)
41 {
42 	fsnotify_name(dir, mask, d_inode(dentry), &dentry->d_name, 0);
43 }
44 
fsnotify_inode(struct inode * inode,__u32 mask)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. */
fsnotify_parent(struct dentry * dentry,__u32 mask,const void * data,int data_type)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  */
fsnotify_dentry(struct dentry * dentry,__u32 mask)87 static inline void fsnotify_dentry(struct dentry *dentry, __u32 mask)
88 {
89 	fsnotify_parent(dentry, mask, d_inode(dentry), FSNOTIFY_EVENT_INODE);
90 }
91 
fsnotify_file(struct file * file,__u32 mask)92 static inline int fsnotify_file(struct file *file, __u32 mask)
93 {
94 	const struct path *path = &file->f_path;
95 
96 	if (file->f_mode & FMODE_NONOTIFY)
97 		return 0;
98 
99 	/*
100 	 * Open calls notify early on, so lower file system must be notified
101 	 */
102 	if (mask & FS_OPEN) {
103 		if (path->dentry->d_op &&
104 		    path->dentry->d_op->d_canonical_path) {
105 			struct path lower_path = {};
106 			int ret;
107 
108 			path->dentry->d_op->d_canonical_path(path, &lower_path);
109 			if (IS_ERR(lower_path.dentry))
110 				return PTR_ERR(lower_path.dentry);
111 
112 			ret = fsnotify_parent(lower_path.dentry, mask,
113 					      &lower_path, FSNOTIFY_EVENT_PATH);
114 			path_put(&lower_path);
115 
116 			if (ret)
117 				return ret;
118 		}
119 	}
120 
121 	return fsnotify_parent(path->dentry, mask, path, FSNOTIFY_EVENT_PATH);
122 }
123 
124 /* Simple call site for access decisions */
fsnotify_perm(struct file * file,int mask)125 static inline int fsnotify_perm(struct file *file, int mask)
126 {
127 	int ret;
128 	__u32 fsnotify_mask = 0;
129 
130 	if (!(mask & (MAY_READ | MAY_OPEN)))
131 		return 0;
132 
133 	if (mask & MAY_OPEN) {
134 		fsnotify_mask = FS_OPEN_PERM;
135 
136 		if (file->f_flags & __FMODE_EXEC) {
137 			ret = fsnotify_file(file, FS_OPEN_EXEC_PERM);
138 
139 			if (ret)
140 				return ret;
141 		}
142 	} else if (mask & MAY_READ) {
143 		fsnotify_mask = FS_ACCESS_PERM;
144 	}
145 
146 	return fsnotify_file(file, fsnotify_mask);
147 }
148 
149 /*
150  * fsnotify_link_count - inode's link count changed
151  */
fsnotify_link_count(struct inode * inode)152 static inline void fsnotify_link_count(struct inode *inode)
153 {
154 	fsnotify_inode(inode, FS_ATTRIB);
155 }
156 
157 /*
158  * fsnotify_move - file old_name at old_dir was moved to new_name at new_dir
159  */
fsnotify_move(struct inode * old_dir,struct inode * new_dir,const struct qstr * old_name,int isdir,struct inode * target,struct dentry * moved)160 static inline void fsnotify_move(struct inode *old_dir, struct inode *new_dir,
161 				 const struct qstr *old_name,
162 				 int isdir, struct inode *target,
163 				 struct dentry *moved)
164 {
165 	struct inode *source = moved->d_inode;
166 	u32 fs_cookie = fsnotify_get_cookie();
167 	__u32 old_dir_mask = FS_MOVED_FROM;
168 	__u32 new_dir_mask = FS_MOVED_TO;
169 	const struct qstr *new_name = &moved->d_name;
170 
171 	if (old_dir == new_dir)
172 		old_dir_mask |= FS_DN_RENAME;
173 
174 	if (isdir) {
175 		old_dir_mask |= FS_ISDIR;
176 		new_dir_mask |= FS_ISDIR;
177 	}
178 
179 	fsnotify_name(old_dir, old_dir_mask, source, old_name, fs_cookie);
180 	fsnotify_name(new_dir, new_dir_mask, source, new_name, fs_cookie);
181 
182 	if (target)
183 		fsnotify_link_count(target);
184 	fsnotify_inode(source, FS_MOVE_SELF);
185 	audit_inode_child(new_dir, moved, AUDIT_TYPE_CHILD_CREATE);
186 }
187 
188 /*
189  * fsnotify_inode_delete - and inode is being evicted from cache, clean up is needed
190  */
fsnotify_inode_delete(struct inode * inode)191 static inline void fsnotify_inode_delete(struct inode *inode)
192 {
193 	__fsnotify_inode_delete(inode);
194 }
195 
196 /*
197  * fsnotify_vfsmount_delete - a vfsmount is being destroyed, clean up is needed
198  */
fsnotify_vfsmount_delete(struct vfsmount * mnt)199 static inline void fsnotify_vfsmount_delete(struct vfsmount *mnt)
200 {
201 	__fsnotify_vfsmount_delete(mnt);
202 }
203 
204 /*
205  * fsnotify_inoderemove - an inode is going away
206  */
fsnotify_inoderemove(struct inode * inode)207 static inline void fsnotify_inoderemove(struct inode *inode)
208 {
209 	fsnotify_inode(inode, FS_DELETE_SELF);
210 	__fsnotify_inode_delete(inode);
211 }
212 
213 /*
214  * fsnotify_create - 'name' was linked in
215  */
fsnotify_create(struct inode * inode,struct dentry * dentry)216 static inline void fsnotify_create(struct inode *inode, struct dentry *dentry)
217 {
218 	audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE);
219 
220 	fsnotify_dirent(inode, dentry, FS_CREATE);
221 }
222 
223 /*
224  * fsnotify_link - new hardlink in 'inode' directory
225  * Note: We have to pass also the linked inode ptr as some filesystems leave
226  *   new_dentry->d_inode NULL and instantiate inode pointer later
227  */
fsnotify_link(struct inode * dir,struct inode * inode,struct dentry * new_dentry)228 static inline void fsnotify_link(struct inode *dir, struct inode *inode,
229 				 struct dentry *new_dentry)
230 {
231 	fsnotify_link_count(inode);
232 	audit_inode_child(dir, new_dentry, AUDIT_TYPE_CHILD_CREATE);
233 
234 	fsnotify_name(dir, FS_CREATE, inode, &new_dentry->d_name, 0);
235 }
236 
237 /*
238  * fsnotify_delete - @dentry was unlinked and unhashed
239  *
240  * Caller must make sure that dentry->d_name is stable.
241  *
242  * Note: unlike fsnotify_unlink(), we have to pass also the unlinked inode
243  * as this may be called after d_delete() and old_dentry may be negative.
244  */
fsnotify_delete(struct inode * dir,struct inode * inode,struct dentry * dentry)245 static inline void fsnotify_delete(struct inode *dir, struct inode *inode,
246 				   struct dentry *dentry)
247 {
248 	__u32 mask = FS_DELETE;
249 
250 	if (S_ISDIR(inode->i_mode))
251 		mask |= FS_ISDIR;
252 
253 	fsnotify_name(dir, mask, inode, &dentry->d_name, 0);
254 }
255 
256 /**
257  * d_delete_notify - delete a dentry and call fsnotify_delete()
258  * @dentry: The dentry to delete
259  *
260  * This helper is used to guaranty that the unlinked inode cannot be found
261  * by lookup of this name after fsnotify_delete() event has been delivered.
262  */
d_delete_notify(struct inode * dir,struct dentry * dentry)263 static inline void d_delete_notify(struct inode *dir, struct dentry *dentry)
264 {
265 	struct inode *inode = d_inode(dentry);
266 
267 	ihold(inode);
268 	d_delete(dentry);
269 	fsnotify_delete(dir, inode, dentry);
270 	iput(inode);
271 }
272 
273 /*
274  * fsnotify_unlink - 'name' was unlinked
275  *
276  * Caller must make sure that dentry->d_name is stable.
277  */
fsnotify_unlink(struct inode * dir,struct dentry * dentry)278 static inline void fsnotify_unlink(struct inode *dir, struct dentry *dentry)
279 {
280 	if (WARN_ON_ONCE(d_is_negative(dentry)))
281 		return;
282 
283 	fsnotify_delete(dir, d_inode(dentry), dentry);
284 }
285 
286 /*
287  * fsnotify_mkdir - directory 'name' was created
288  */
fsnotify_mkdir(struct inode * inode,struct dentry * dentry)289 static inline void fsnotify_mkdir(struct inode *inode, struct dentry *dentry)
290 {
291 	audit_inode_child(inode, dentry, AUDIT_TYPE_CHILD_CREATE);
292 
293 	fsnotify_dirent(inode, dentry, FS_CREATE | FS_ISDIR);
294 }
295 
296 /*
297  * fsnotify_rmdir - directory 'name' was removed
298  *
299  * Caller must make sure that dentry->d_name is stable.
300  */
fsnotify_rmdir(struct inode * dir,struct dentry * dentry)301 static inline void fsnotify_rmdir(struct inode *dir, struct dentry *dentry)
302 {
303 	if (WARN_ON_ONCE(d_is_negative(dentry)))
304 		return;
305 
306 	fsnotify_delete(dir, d_inode(dentry), dentry);
307 }
308 
309 /*
310  * fsnotify_access - file was read
311  */
fsnotify_access(struct file * file)312 static inline void fsnotify_access(struct file *file)
313 {
314 	fsnotify_file(file, FS_ACCESS);
315 }
316 
317 /*
318  * fsnotify_modify - file was modified
319  */
fsnotify_modify(struct file * file)320 static inline void fsnotify_modify(struct file *file)
321 {
322 	fsnotify_file(file, FS_MODIFY);
323 }
324 
325 /*
326  * fsnotify_open - file was opened
327  */
fsnotify_open(struct file * file)328 static inline void fsnotify_open(struct file *file)
329 {
330 	__u32 mask = FS_OPEN;
331 
332 	if (file->f_flags & __FMODE_EXEC)
333 		mask |= FS_OPEN_EXEC;
334 
335 	fsnotify_file(file, mask);
336 }
337 
338 /*
339  * fsnotify_close - file was closed
340  */
fsnotify_close(struct file * file)341 static inline void fsnotify_close(struct file *file)
342 {
343 	__u32 mask = (file->f_mode & FMODE_WRITE) ? FS_CLOSE_WRITE :
344 						    FS_CLOSE_NOWRITE;
345 
346 	fsnotify_file(file, mask);
347 }
348 
349 /*
350  * fsnotify_xattr - extended attributes were changed
351  */
fsnotify_xattr(struct dentry * dentry)352 static inline void fsnotify_xattr(struct dentry *dentry)
353 {
354 	fsnotify_dentry(dentry, FS_ATTRIB);
355 }
356 
357 /*
358  * fsnotify_change - notify_change event.  file was modified and/or metadata
359  * was changed.
360  */
fsnotify_change(struct dentry * dentry,unsigned int ia_valid)361 static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
362 {
363 	__u32 mask = 0;
364 
365 	if (ia_valid & ATTR_UID)
366 		mask |= FS_ATTRIB;
367 	if (ia_valid & ATTR_GID)
368 		mask |= FS_ATTRIB;
369 	if (ia_valid & ATTR_SIZE)
370 		mask |= FS_MODIFY;
371 
372 	/* both times implies a utime(s) call */
373 	if ((ia_valid & (ATTR_ATIME | ATTR_MTIME)) == (ATTR_ATIME | ATTR_MTIME))
374 		mask |= FS_ATTRIB;
375 	else if (ia_valid & ATTR_ATIME)
376 		mask |= FS_ACCESS;
377 	else if (ia_valid & ATTR_MTIME)
378 		mask |= FS_MODIFY;
379 
380 	if (ia_valid & ATTR_MODE)
381 		mask |= FS_ATTRIB;
382 
383 	if (mask)
384 		fsnotify_dentry(dentry, mask);
385 }
386 
387 #endif	/* _LINUX_FS_NOTIFY_H */
388