1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/fanotify.h>
3 #include <linux/fcntl.h>
4 #include <linux/file.h>
6 #include <linux/anon_inodes.h>
7 #include <linux/fsnotify_backend.h>
8 #include <linux/init.h>
9 #include <linux/mount.h>
10 #include <linux/namei.h>
11 #include <linux/poll.h>
12 #include <linux/security.h>
13 #include <linux/syscalls.h>
14 #include <linux/slab.h>
15 #include <linux/types.h>
16 #include <linux/uaccess.h>
17 #include <linux/compat.h>
18 #include <linux/sched/signal.h>
19 #include <linux/memcontrol.h>
20 #include <linux/statfs.h>
21 #include <linux/exportfs.h>
23 #include <asm/ioctls.h>
25 #include "../../mount.h"
26 #include "../fdinfo.h"
29 #define FANOTIFY_DEFAULT_MAX_EVENTS 16384
30 #define FANOTIFY_DEFAULT_MAX_MARKS 8192
31 #define FANOTIFY_DEFAULT_MAX_LISTENERS 128
34 * All flags that may be specified in parameter event_f_flags of fanotify_init.
36 * Internal and external open flags are stored together in field f_flags of
37 * struct file. Only external open flags shall be allowed in event_f_flags.
38 * Internal flags like FMODE_NONOTIFY, FMODE_EXEC, FMODE_NOCMTIME shall be
41 #define FANOTIFY_INIT_ALL_EVENT_F_BITS ( \
42 O_ACCMODE | O_APPEND | O_NONBLOCK | \
43 __O_SYNC | O_DSYNC | O_CLOEXEC | \
44 O_LARGEFILE | O_NOATIME )
46 extern const struct fsnotify_ops fanotify_fsnotify_ops
;
48 struct kmem_cache
*fanotify_mark_cache __read_mostly
;
49 struct kmem_cache
*fanotify_fid_event_cachep __read_mostly
;
50 struct kmem_cache
*fanotify_path_event_cachep __read_mostly
;
51 struct kmem_cache
*fanotify_perm_event_cachep __read_mostly
;
53 #define FANOTIFY_EVENT_ALIGN 4
54 #define FANOTIFY_INFO_HDR_LEN \
55 (sizeof(struct fanotify_event_info_fid) + sizeof(struct file_handle))
57 static int fanotify_fid_info_len(int fh_len
, int name_len
)
59 int info_len
= fh_len
;
62 info_len
+= name_len
+ 1;
64 return roundup(FANOTIFY_INFO_HDR_LEN
+ info_len
, FANOTIFY_EVENT_ALIGN
);
67 static int fanotify_event_info_len(unsigned int fid_mode
,
68 struct fanotify_event
*event
)
70 struct fanotify_info
*info
= fanotify_event_info(event
);
71 int dir_fh_len
= fanotify_event_dir_fh_len(event
);
72 int fh_len
= fanotify_event_object_fh_len(event
);
77 info_len
+= fanotify_fid_info_len(dir_fh_len
, info
->name_len
);
78 } else if ((fid_mode
& FAN_REPORT_NAME
) && (event
->mask
& FAN_ONDIR
)) {
80 * With group flag FAN_REPORT_NAME, if name was not recorded in
81 * event on a directory, we will report the name ".".
87 info_len
+= fanotify_fid_info_len(fh_len
, dot_len
);
93 * Get an fanotify notification event if one exists and is small
94 * enough to fit in "count". Return an error pointer if the count
95 * is not large enough. When permission event is dequeued, its state is
96 * updated accordingly.
98 static struct fanotify_event
*get_one_event(struct fsnotify_group
*group
,
101 size_t event_size
= FAN_EVENT_METADATA_LEN
;
102 struct fanotify_event
*event
= NULL
;
103 unsigned int fid_mode
= FAN_GROUP_FLAG(group
, FANOTIFY_FID_BITS
);
105 pr_debug("%s: group=%p count=%zd\n", __func__
, group
, count
);
107 spin_lock(&group
->notification_lock
);
108 if (fsnotify_notify_queue_is_empty(group
))
112 event_size
+= fanotify_event_info_len(fid_mode
,
113 FANOTIFY_E(fsnotify_peek_first_event(group
)));
116 if (event_size
> count
) {
117 event
= ERR_PTR(-EINVAL
);
120 event
= FANOTIFY_E(fsnotify_remove_first_event(group
));
121 if (fanotify_is_perm_event(event
->mask
))
122 FANOTIFY_PERM(event
)->state
= FAN_EVENT_REPORTED
;
124 spin_unlock(&group
->notification_lock
);
128 static int create_fd(struct fsnotify_group
*group
, struct path
*path
,
132 struct file
*new_file
;
134 client_fd
= get_unused_fd_flags(group
->fanotify_data
.f_flags
);
139 * we need a new file handle for the userspace program so it can read even if it was
140 * originally opened O_WRONLY.
142 new_file
= dentry_open(path
,
143 group
->fanotify_data
.f_flags
| FMODE_NONOTIFY
,
145 if (IS_ERR(new_file
)) {
147 * we still send an event even if we can't open the file. this
148 * can happen when say tasks are gone and we try to open their
149 * /proc files or we try to open a WRONLY file like in sysfs
150 * we just send the errno to userspace since there isn't much
153 put_unused_fd(client_fd
);
154 client_fd
= PTR_ERR(new_file
);
163 * Finish processing of permission event by setting it to ANSWERED state and
164 * drop group->notification_lock.
166 static void finish_permission_event(struct fsnotify_group
*group
,
167 struct fanotify_perm_event
*event
,
168 unsigned int response
)
169 __releases(&group
->notification_lock
)
171 bool destroy
= false;
173 assert_spin_locked(&group
->notification_lock
);
174 event
->response
= response
;
175 if (event
->state
== FAN_EVENT_CANCELED
)
178 event
->state
= FAN_EVENT_ANSWERED
;
179 spin_unlock(&group
->notification_lock
);
181 fsnotify_destroy_event(group
, &event
->fae
.fse
);
184 static int process_access_response(struct fsnotify_group
*group
,
185 struct fanotify_response
*response_struct
)
187 struct fanotify_perm_event
*event
;
188 int fd
= response_struct
->fd
;
189 int response
= response_struct
->response
;
191 pr_debug("%s: group=%p fd=%d response=%d\n", __func__
, group
,
194 * make sure the response is valid, if invalid we do nothing and either
195 * userspace can send a valid response or we will clean it up after the
198 switch (response
& ~FAN_AUDIT
) {
209 if ((response
& FAN_AUDIT
) && !FAN_GROUP_FLAG(group
, FAN_ENABLE_AUDIT
))
212 spin_lock(&group
->notification_lock
);
213 list_for_each_entry(event
, &group
->fanotify_data
.access_list
,
218 list_del_init(&event
->fae
.fse
.list
);
219 finish_permission_event(group
, event
, response
);
220 wake_up(&group
->fanotify_data
.access_waitq
);
223 spin_unlock(&group
->notification_lock
);
228 static int copy_info_to_user(__kernel_fsid_t
*fsid
, struct fanotify_fh
*fh
,
229 int info_type
, const char *name
, size_t name_len
,
230 char __user
*buf
, size_t count
)
232 struct fanotify_event_info_fid info
= { };
233 struct file_handle handle
= { };
234 unsigned char bounce
[FANOTIFY_INLINE_FH_LEN
], *fh_buf
;
235 size_t fh_len
= fh
? fh
->len
: 0;
236 size_t info_len
= fanotify_fid_info_len(fh_len
, name_len
);
237 size_t len
= info_len
;
239 pr_debug("%s: fh_len=%zu name_len=%zu, info_len=%zu, count=%zu\n",
240 __func__
, fh_len
, name_len
, info_len
, count
);
245 if (WARN_ON_ONCE(len
< sizeof(info
) || len
> count
))
249 * Copy event info fid header followed by variable sized file handle
250 * and optionally followed by variable sized filename.
253 case FAN_EVENT_INFO_TYPE_FID
:
254 case FAN_EVENT_INFO_TYPE_DFID
:
255 if (WARN_ON_ONCE(name_len
))
258 case FAN_EVENT_INFO_TYPE_DFID_NAME
:
259 if (WARN_ON_ONCE(!name
|| !name_len
))
266 info
.hdr
.info_type
= info_type
;
269 if (copy_to_user(buf
, &info
, sizeof(info
)))
274 if (WARN_ON_ONCE(len
< sizeof(handle
)))
277 handle
.handle_type
= fh
->type
;
278 handle
.handle_bytes
= fh_len
;
279 if (copy_to_user(buf
, &handle
, sizeof(handle
)))
282 buf
+= sizeof(handle
);
283 len
-= sizeof(handle
);
284 if (WARN_ON_ONCE(len
< fh_len
))
288 * For an inline fh and inline file name, copy through stack to exclude
289 * the copy from usercopy hardening protections.
291 fh_buf
= fanotify_fh_buf(fh
);
292 if (fh_len
<= FANOTIFY_INLINE_FH_LEN
) {
293 memcpy(bounce
, fh_buf
, fh_len
);
296 if (copy_to_user(buf
, fh_buf
, fh_len
))
303 /* Copy the filename with terminating null */
305 if (WARN_ON_ONCE(len
< name_len
))
308 if (copy_to_user(buf
, name
, name_len
))
316 WARN_ON_ONCE(len
< 0 || len
>= FANOTIFY_EVENT_ALIGN
);
317 if (len
> 0 && clear_user(buf
, len
))
323 static ssize_t
copy_event_to_user(struct fsnotify_group
*group
,
324 struct fanotify_event
*event
,
325 char __user
*buf
, size_t count
)
327 struct fanotify_event_metadata metadata
;
328 struct path
*path
= fanotify_event_path(event
);
329 struct fanotify_info
*info
= fanotify_event_info(event
);
330 unsigned int fid_mode
= FAN_GROUP_FLAG(group
, FANOTIFY_FID_BITS
);
331 struct file
*f
= NULL
;
332 int ret
, fd
= FAN_NOFD
;
335 pr_debug("%s: group=%p event=%p\n", __func__
, group
, event
);
337 metadata
.event_len
= FAN_EVENT_METADATA_LEN
+
338 fanotify_event_info_len(fid_mode
, event
);
339 metadata
.metadata_len
= FAN_EVENT_METADATA_LEN
;
340 metadata
.vers
= FANOTIFY_METADATA_VERSION
;
341 metadata
.reserved
= 0;
342 metadata
.mask
= event
->mask
& FANOTIFY_OUTGOING_EVENTS
;
343 metadata
.pid
= pid_vnr(event
->pid
);
345 if (path
&& path
->mnt
&& path
->dentry
) {
346 fd
= create_fd(group
, path
, &f
);
354 * Sanity check copy size in case get_one_event() and
355 * event_len sizes ever get out of sync.
357 if (WARN_ON_ONCE(metadata
.event_len
> count
))
360 if (copy_to_user(buf
, &metadata
, FAN_EVENT_METADATA_LEN
))
363 buf
+= FAN_EVENT_METADATA_LEN
;
364 count
-= FAN_EVENT_METADATA_LEN
;
366 if (fanotify_is_perm_event(event
->mask
))
367 FANOTIFY_PERM(event
)->fd
= fd
;
372 /* Event info records order is: dir fid + name, child fid */
373 if (fanotify_event_dir_fh_len(event
)) {
374 info_type
= info
->name_len
? FAN_EVENT_INFO_TYPE_DFID_NAME
:
375 FAN_EVENT_INFO_TYPE_DFID
;
376 ret
= copy_info_to_user(fanotify_event_fsid(event
),
377 fanotify_info_dir_fh(info
),
378 info_type
, fanotify_info_name(info
),
379 info
->name_len
, buf
, count
);
387 if (fanotify_event_object_fh_len(event
)) {
388 const char *dot
= NULL
;
391 if (fid_mode
== FAN_REPORT_FID
|| info_type
) {
393 * With only group flag FAN_REPORT_FID only type FID is
394 * reported. Second info record type is always FID.
396 info_type
= FAN_EVENT_INFO_TYPE_FID
;
397 } else if ((fid_mode
& FAN_REPORT_NAME
) &&
398 (event
->mask
& FAN_ONDIR
)) {
400 * With group flag FAN_REPORT_NAME, if name was not
401 * recorded in an event on a directory, report the
402 * name "." with info type DFID_NAME.
404 info_type
= FAN_EVENT_INFO_TYPE_DFID_NAME
;
407 } else if ((event
->mask
& ALL_FSNOTIFY_DIRENT_EVENTS
) ||
408 (event
->mask
& FAN_ONDIR
)) {
410 * With group flag FAN_REPORT_DIR_FID, a single info
411 * record has type DFID for directory entry modification
412 * event and for event on a directory.
414 info_type
= FAN_EVENT_INFO_TYPE_DFID
;
417 * With group flags FAN_REPORT_DIR_FID|FAN_REPORT_FID,
418 * a single info record has type FID for event on a
419 * non-directory, when there is no directory to report.
420 * For example, on FAN_DELETE_SELF event.
422 info_type
= FAN_EVENT_INFO_TYPE_FID
;
425 ret
= copy_info_to_user(fanotify_event_fsid(event
),
426 fanotify_event_object_fh(event
),
427 info_type
, dot
, dot_len
, buf
, count
);
435 return metadata
.event_len
;
438 if (fd
!= FAN_NOFD
) {
445 /* intofiy userspace file descriptor functions */
446 static __poll_t
fanotify_poll(struct file
*file
, poll_table
*wait
)
448 struct fsnotify_group
*group
= file
->private_data
;
451 poll_wait(file
, &group
->notification_waitq
, wait
);
452 spin_lock(&group
->notification_lock
);
453 if (!fsnotify_notify_queue_is_empty(group
))
454 ret
= EPOLLIN
| EPOLLRDNORM
;
455 spin_unlock(&group
->notification_lock
);
460 static ssize_t
fanotify_read(struct file
*file
, char __user
*buf
,
461 size_t count
, loff_t
*pos
)
463 struct fsnotify_group
*group
;
464 struct fanotify_event
*event
;
467 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
470 group
= file
->private_data
;
472 pr_debug("%s: group=%p\n", __func__
, group
);
474 add_wait_queue(&group
->notification_waitq
, &wait
);
477 * User can supply arbitrarily large buffer. Avoid softlockups
478 * in case there are lots of available events.
481 event
= get_one_event(group
, count
);
483 ret
= PTR_ERR(event
);
489 if (file
->f_flags
& O_NONBLOCK
)
493 if (signal_pending(current
))
499 wait_woken(&wait
, TASK_INTERRUPTIBLE
, MAX_SCHEDULE_TIMEOUT
);
503 ret
= copy_event_to_user(group
, event
, buf
, count
);
504 if (unlikely(ret
== -EOPENSTALE
)) {
506 * We cannot report events with stale fd so drop it.
507 * Setting ret to 0 will continue the event loop and
508 * do the right thing if there are no more events to
509 * read (i.e. return bytes read, -EAGAIN or wait).
515 * Permission events get queued to wait for response. Other
516 * events can be destroyed now.
518 if (!fanotify_is_perm_event(event
->mask
)) {
519 fsnotify_destroy_event(group
, &event
->fse
);
522 spin_lock(&group
->notification_lock
);
523 finish_permission_event(group
,
524 FANOTIFY_PERM(event
), FAN_DENY
);
525 wake_up(&group
->fanotify_data
.access_waitq
);
527 spin_lock(&group
->notification_lock
);
528 list_add_tail(&event
->fse
.list
,
529 &group
->fanotify_data
.access_list
);
530 spin_unlock(&group
->notification_lock
);
538 remove_wait_queue(&group
->notification_waitq
, &wait
);
540 if (start
!= buf
&& ret
!= -EFAULT
)
545 static ssize_t
fanotify_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*pos
)
547 struct fanotify_response response
= { .fd
= -1, .response
= -1 };
548 struct fsnotify_group
*group
;
551 if (!IS_ENABLED(CONFIG_FANOTIFY_ACCESS_PERMISSIONS
))
554 group
= file
->private_data
;
556 if (count
< sizeof(response
))
559 count
= sizeof(response
);
561 pr_debug("%s: group=%p count=%zu\n", __func__
, group
, count
);
563 if (copy_from_user(&response
, buf
, count
))
566 ret
= process_access_response(group
, &response
);
573 static int fanotify_release(struct inode
*ignored
, struct file
*file
)
575 struct fsnotify_group
*group
= file
->private_data
;
578 * Stop new events from arriving in the notification queue. since
579 * userspace cannot use fanotify fd anymore, no event can enter or
580 * leave access_list by now either.
582 fsnotify_group_stop_queueing(group
);
585 * Process all permission events on access_list and notification queue
586 * and simulate reply from userspace.
588 spin_lock(&group
->notification_lock
);
589 while (!list_empty(&group
->fanotify_data
.access_list
)) {
590 struct fanotify_perm_event
*event
;
592 event
= list_first_entry(&group
->fanotify_data
.access_list
,
593 struct fanotify_perm_event
, fae
.fse
.list
);
594 list_del_init(&event
->fae
.fse
.list
);
595 finish_permission_event(group
, event
, FAN_ALLOW
);
596 spin_lock(&group
->notification_lock
);
600 * Destroy all non-permission events. For permission events just
601 * dequeue them and set the response. They will be freed once the
602 * response is consumed and fanotify_get_response() returns.
604 while (!fsnotify_notify_queue_is_empty(group
)) {
605 struct fanotify_event
*event
;
607 event
= FANOTIFY_E(fsnotify_remove_first_event(group
));
608 if (!(event
->mask
& FANOTIFY_PERM_EVENTS
)) {
609 spin_unlock(&group
->notification_lock
);
610 fsnotify_destroy_event(group
, &event
->fse
);
612 finish_permission_event(group
, FANOTIFY_PERM(event
),
615 spin_lock(&group
->notification_lock
);
617 spin_unlock(&group
->notification_lock
);
619 /* Response for all permission events it set, wakeup waiters */
620 wake_up(&group
->fanotify_data
.access_waitq
);
622 /* matches the fanotify_init->fsnotify_alloc_group */
623 fsnotify_destroy_group(group
);
628 static long fanotify_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
630 struct fsnotify_group
*group
;
631 struct fsnotify_event
*fsn_event
;
636 group
= file
->private_data
;
638 p
= (void __user
*) arg
;
642 spin_lock(&group
->notification_lock
);
643 list_for_each_entry(fsn_event
, &group
->notification_list
, list
)
644 send_len
+= FAN_EVENT_METADATA_LEN
;
645 spin_unlock(&group
->notification_lock
);
646 ret
= put_user(send_len
, (int __user
*) p
);
653 static const struct file_operations fanotify_fops
= {
654 .show_fdinfo
= fanotify_show_fdinfo
,
655 .poll
= fanotify_poll
,
656 .read
= fanotify_read
,
657 .write
= fanotify_write
,
659 .release
= fanotify_release
,
660 .unlocked_ioctl
= fanotify_ioctl
,
661 .compat_ioctl
= compat_ptr_ioctl
,
662 .llseek
= noop_llseek
,
665 static int fanotify_find_path(int dfd
, const char __user
*filename
,
666 struct path
*path
, unsigned int flags
, __u64 mask
,
667 unsigned int obj_type
)
671 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__
,
672 dfd
, filename
, flags
);
674 if (filename
== NULL
) {
675 struct fd f
= fdget(dfd
);
682 if ((flags
& FAN_MARK_ONLYDIR
) &&
683 !(S_ISDIR(file_inode(f
.file
)->i_mode
))) {
688 *path
= f
.file
->f_path
;
692 unsigned int lookup_flags
= 0;
694 if (!(flags
& FAN_MARK_DONT_FOLLOW
))
695 lookup_flags
|= LOOKUP_FOLLOW
;
696 if (flags
& FAN_MARK_ONLYDIR
)
697 lookup_flags
|= LOOKUP_DIRECTORY
;
699 ret
= user_path_at(dfd
, filename
, lookup_flags
, path
);
704 /* you can only watch an inode if you have read permissions on it */
705 ret
= inode_permission(path
->dentry
->d_inode
, MAY_READ
);
711 ret
= security_path_notify(path
, mask
, obj_type
);
719 static __u32
fanotify_mark_remove_from_mask(struct fsnotify_mark
*fsn_mark
,
720 __u32 mask
, unsigned int flags
,
721 __u32 umask
, int *destroy
)
725 /* umask bits cannot be removed by user */
727 spin_lock(&fsn_mark
->lock
);
728 if (!(flags
& FAN_MARK_IGNORED_MASK
)) {
729 oldmask
= fsn_mark
->mask
;
730 fsn_mark
->mask
&= ~mask
;
732 fsn_mark
->ignored_mask
&= ~mask
;
735 * We need to keep the mark around even if remaining mask cannot
736 * result in any events (e.g. mask == FAN_ONDIR) to support incremenal
737 * changes to the mask.
738 * Destroy mark when only umask bits remain.
740 *destroy
= !((fsn_mark
->mask
| fsn_mark
->ignored_mask
) & ~umask
);
741 spin_unlock(&fsn_mark
->lock
);
743 return mask
& oldmask
;
746 static int fanotify_remove_mark(struct fsnotify_group
*group
,
747 fsnotify_connp_t
*connp
, __u32 mask
,
748 unsigned int flags
, __u32 umask
)
750 struct fsnotify_mark
*fsn_mark
= NULL
;
754 mutex_lock(&group
->mark_mutex
);
755 fsn_mark
= fsnotify_find_mark(connp
, group
);
757 mutex_unlock(&group
->mark_mutex
);
761 removed
= fanotify_mark_remove_from_mask(fsn_mark
, mask
, flags
,
762 umask
, &destroy_mark
);
763 if (removed
& fsnotify_conn_mask(fsn_mark
->connector
))
764 fsnotify_recalc_mask(fsn_mark
->connector
);
766 fsnotify_detach_mark(fsn_mark
);
767 mutex_unlock(&group
->mark_mutex
);
769 fsnotify_free_mark(fsn_mark
);
771 /* matches the fsnotify_find_mark() */
772 fsnotify_put_mark(fsn_mark
);
776 static int fanotify_remove_vfsmount_mark(struct fsnotify_group
*group
,
777 struct vfsmount
*mnt
, __u32 mask
,
778 unsigned int flags
, __u32 umask
)
780 return fanotify_remove_mark(group
, &real_mount(mnt
)->mnt_fsnotify_marks
,
784 static int fanotify_remove_sb_mark(struct fsnotify_group
*group
,
785 struct super_block
*sb
, __u32 mask
,
786 unsigned int flags
, __u32 umask
)
788 return fanotify_remove_mark(group
, &sb
->s_fsnotify_marks
, mask
,
792 static int fanotify_remove_inode_mark(struct fsnotify_group
*group
,
793 struct inode
*inode
, __u32 mask
,
794 unsigned int flags
, __u32 umask
)
796 return fanotify_remove_mark(group
, &inode
->i_fsnotify_marks
, mask
,
800 static __u32
fanotify_mark_add_to_mask(struct fsnotify_mark
*fsn_mark
,
806 spin_lock(&fsn_mark
->lock
);
807 if (!(flags
& FAN_MARK_IGNORED_MASK
)) {
808 oldmask
= fsn_mark
->mask
;
809 fsn_mark
->mask
|= mask
;
811 fsn_mark
->ignored_mask
|= mask
;
812 if (flags
& FAN_MARK_IGNORED_SURV_MODIFY
)
813 fsn_mark
->flags
|= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY
;
815 spin_unlock(&fsn_mark
->lock
);
817 return mask
& ~oldmask
;
820 static struct fsnotify_mark
*fanotify_add_new_mark(struct fsnotify_group
*group
,
821 fsnotify_connp_t
*connp
,
823 __kernel_fsid_t
*fsid
)
825 struct fsnotify_mark
*mark
;
828 if (atomic_read(&group
->num_marks
) > group
->fanotify_data
.max_marks
)
829 return ERR_PTR(-ENOSPC
);
831 mark
= kmem_cache_alloc(fanotify_mark_cache
, GFP_KERNEL
);
833 return ERR_PTR(-ENOMEM
);
835 fsnotify_init_mark(mark
, group
);
836 ret
= fsnotify_add_mark_locked(mark
, connp
, type
, 0, fsid
);
838 fsnotify_put_mark(mark
);
846 static int fanotify_add_mark(struct fsnotify_group
*group
,
847 fsnotify_connp_t
*connp
, unsigned int type
,
848 __u32 mask
, unsigned int flags
,
849 __kernel_fsid_t
*fsid
)
851 struct fsnotify_mark
*fsn_mark
;
854 mutex_lock(&group
->mark_mutex
);
855 fsn_mark
= fsnotify_find_mark(connp
, group
);
857 fsn_mark
= fanotify_add_new_mark(group
, connp
, type
, fsid
);
858 if (IS_ERR(fsn_mark
)) {
859 mutex_unlock(&group
->mark_mutex
);
860 return PTR_ERR(fsn_mark
);
863 added
= fanotify_mark_add_to_mask(fsn_mark
, mask
, flags
);
864 if (added
& ~fsnotify_conn_mask(fsn_mark
->connector
))
865 fsnotify_recalc_mask(fsn_mark
->connector
);
866 mutex_unlock(&group
->mark_mutex
);
868 fsnotify_put_mark(fsn_mark
);
872 static int fanotify_add_vfsmount_mark(struct fsnotify_group
*group
,
873 struct vfsmount
*mnt
, __u32 mask
,
874 unsigned int flags
, __kernel_fsid_t
*fsid
)
876 return fanotify_add_mark(group
, &real_mount(mnt
)->mnt_fsnotify_marks
,
877 FSNOTIFY_OBJ_TYPE_VFSMOUNT
, mask
, flags
, fsid
);
880 static int fanotify_add_sb_mark(struct fsnotify_group
*group
,
881 struct super_block
*sb
, __u32 mask
,
882 unsigned int flags
, __kernel_fsid_t
*fsid
)
884 return fanotify_add_mark(group
, &sb
->s_fsnotify_marks
,
885 FSNOTIFY_OBJ_TYPE_SB
, mask
, flags
, fsid
);
888 static int fanotify_add_inode_mark(struct fsnotify_group
*group
,
889 struct inode
*inode
, __u32 mask
,
890 unsigned int flags
, __kernel_fsid_t
*fsid
)
892 pr_debug("%s: group=%p inode=%p\n", __func__
, group
, inode
);
895 * If some other task has this inode open for write we should not add
896 * an ignored mark, unless that ignored mark is supposed to survive
897 * modification changes anyway.
899 if ((flags
& FAN_MARK_IGNORED_MASK
) &&
900 !(flags
& FAN_MARK_IGNORED_SURV_MODIFY
) &&
901 inode_is_open_for_write(inode
))
904 return fanotify_add_mark(group
, &inode
->i_fsnotify_marks
,
905 FSNOTIFY_OBJ_TYPE_INODE
, mask
, flags
, fsid
);
908 static struct fsnotify_event
*fanotify_alloc_overflow_event(void)
910 struct fanotify_event
*oevent
;
912 oevent
= kmalloc(sizeof(*oevent
), GFP_KERNEL_ACCOUNT
);
916 fanotify_init_event(oevent
, 0, FS_Q_OVERFLOW
);
917 oevent
->type
= FANOTIFY_EVENT_TYPE_OVERFLOW
;
922 /* fanotify syscalls */
923 SYSCALL_DEFINE2(fanotify_init
, unsigned int, flags
, unsigned int, event_f_flags
)
925 struct fsnotify_group
*group
;
927 struct user_struct
*user
;
928 unsigned int fid_mode
= flags
& FANOTIFY_FID_BITS
;
929 unsigned int class = flags
& FANOTIFY_CLASS_BITS
;
931 pr_debug("%s: flags=%x event_f_flags=%x\n",
932 __func__
, flags
, event_f_flags
);
934 if (!capable(CAP_SYS_ADMIN
))
937 #ifdef CONFIG_AUDITSYSCALL
938 if (flags
& ~(FANOTIFY_INIT_FLAGS
| FAN_ENABLE_AUDIT
))
940 if (flags
& ~FANOTIFY_INIT_FLAGS
)
944 if (event_f_flags
& ~FANOTIFY_INIT_ALL_EVENT_F_BITS
)
947 switch (event_f_flags
& O_ACCMODE
) {
956 if (fid_mode
&& class != FAN_CLASS_NOTIF
)
960 * Child name is reported with parent fid so requires dir fid.
961 * We can report both child fid and dir fid with or without name.
963 if ((fid_mode
& FAN_REPORT_NAME
) && !(fid_mode
& FAN_REPORT_DIR_FID
))
966 user
= get_current_user();
967 if (atomic_read(&user
->fanotify_listeners
) > FANOTIFY_DEFAULT_MAX_LISTENERS
) {
972 f_flags
= O_RDWR
| FMODE_NONOTIFY
;
973 if (flags
& FAN_CLOEXEC
)
974 f_flags
|= O_CLOEXEC
;
975 if (flags
& FAN_NONBLOCK
)
976 f_flags
|= O_NONBLOCK
;
978 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
979 group
= fsnotify_alloc_group(&fanotify_fsnotify_ops
);
982 return PTR_ERR(group
);
985 group
->fanotify_data
.user
= user
;
986 group
->fanotify_data
.flags
= flags
;
987 atomic_inc(&user
->fanotify_listeners
);
988 group
->memcg
= get_mem_cgroup_from_mm(current
->mm
);
990 group
->overflow_event
= fanotify_alloc_overflow_event();
991 if (unlikely(!group
->overflow_event
)) {
993 goto out_destroy_group
;
996 if (force_o_largefile())
997 event_f_flags
|= O_LARGEFILE
;
998 group
->fanotify_data
.f_flags
= event_f_flags
;
999 init_waitqueue_head(&group
->fanotify_data
.access_waitq
);
1000 INIT_LIST_HEAD(&group
->fanotify_data
.access_list
);
1002 case FAN_CLASS_NOTIF
:
1003 group
->priority
= FS_PRIO_0
;
1005 case FAN_CLASS_CONTENT
:
1006 group
->priority
= FS_PRIO_1
;
1008 case FAN_CLASS_PRE_CONTENT
:
1009 group
->priority
= FS_PRIO_2
;
1013 goto out_destroy_group
;
1016 if (flags
& FAN_UNLIMITED_QUEUE
) {
1018 if (!capable(CAP_SYS_ADMIN
))
1019 goto out_destroy_group
;
1020 group
->max_events
= UINT_MAX
;
1022 group
->max_events
= FANOTIFY_DEFAULT_MAX_EVENTS
;
1025 if (flags
& FAN_UNLIMITED_MARKS
) {
1027 if (!capable(CAP_SYS_ADMIN
))
1028 goto out_destroy_group
;
1029 group
->fanotify_data
.max_marks
= UINT_MAX
;
1031 group
->fanotify_data
.max_marks
= FANOTIFY_DEFAULT_MAX_MARKS
;
1034 if (flags
& FAN_ENABLE_AUDIT
) {
1036 if (!capable(CAP_AUDIT_WRITE
))
1037 goto out_destroy_group
;
1040 fd
= anon_inode_getfd("[fanotify]", &fanotify_fops
, group
, f_flags
);
1042 goto out_destroy_group
;
1047 fsnotify_destroy_group(group
);
1051 /* Check if filesystem can encode a unique fid */
1052 static int fanotify_test_fid(struct path
*path
, __kernel_fsid_t
*fsid
)
1054 __kernel_fsid_t root_fsid
;
1058 * Make sure path is not in filesystem with zero fsid (e.g. tmpfs).
1060 err
= vfs_get_fsid(path
->dentry
, fsid
);
1064 if (!fsid
->val
[0] && !fsid
->val
[1])
1068 * Make sure path is not inside a filesystem subvolume (e.g. btrfs)
1069 * which uses a different fsid than sb root.
1071 err
= vfs_get_fsid(path
->dentry
->d_sb
->s_root
, &root_fsid
);
1075 if (root_fsid
.val
[0] != fsid
->val
[0] ||
1076 root_fsid
.val
[1] != fsid
->val
[1])
1080 * We need to make sure that the file system supports at least
1081 * encoding a file handle so user can use name_to_handle_at() to
1082 * compare fid returned with event to the file handle of watched
1083 * objects. However, name_to_handle_at() requires that the
1084 * filesystem also supports decoding file handles.
1086 if (!path
->dentry
->d_sb
->s_export_op
||
1087 !path
->dentry
->d_sb
->s_export_op
->fh_to_dentry
)
1093 static int fanotify_events_supported(struct path
*path
, __u64 mask
)
1096 * Some filesystems such as 'proc' acquire unusual locks when opening
1097 * files. For them fanotify permission events have high chances of
1098 * deadlocking the system - open done when reporting fanotify event
1099 * blocks on this "unusual" lock while another process holding the lock
1100 * waits for fanotify permission event to be answered. Just disallow
1101 * permission events for such filesystems.
1103 if (mask
& FANOTIFY_PERM_EVENTS
&&
1104 path
->mnt
->mnt_sb
->s_type
->fs_flags
& FS_DISALLOW_NOTIFY_PERM
)
1109 static int do_fanotify_mark(int fanotify_fd
, unsigned int flags
, __u64 mask
,
1110 int dfd
, const char __user
*pathname
)
1112 struct inode
*inode
= NULL
;
1113 struct vfsmount
*mnt
= NULL
;
1114 struct fsnotify_group
*group
;
1117 __kernel_fsid_t __fsid
, *fsid
= NULL
;
1118 u32 valid_mask
= FANOTIFY_EVENTS
| FANOTIFY_EVENT_FLAGS
;
1119 unsigned int mark_type
= flags
& FANOTIFY_MARK_TYPE_BITS
;
1120 bool ignored
= flags
& FAN_MARK_IGNORED_MASK
;
1121 unsigned int obj_type
, fid_mode
;
1125 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
1126 __func__
, fanotify_fd
, flags
, dfd
, pathname
, mask
);
1128 /* we only use the lower 32 bits as of right now. */
1129 if (mask
& ((__u64
)0xffffffff << 32))
1132 if (flags
& ~FANOTIFY_MARK_FLAGS
)
1135 switch (mark_type
) {
1136 case FAN_MARK_INODE
:
1137 obj_type
= FSNOTIFY_OBJ_TYPE_INODE
;
1139 case FAN_MARK_MOUNT
:
1140 obj_type
= FSNOTIFY_OBJ_TYPE_VFSMOUNT
;
1142 case FAN_MARK_FILESYSTEM
:
1143 obj_type
= FSNOTIFY_OBJ_TYPE_SB
;
1149 switch (flags
& (FAN_MARK_ADD
| FAN_MARK_REMOVE
| FAN_MARK_FLUSH
)) {
1151 case FAN_MARK_REMOVE
:
1155 case FAN_MARK_FLUSH
:
1156 if (flags
& ~(FANOTIFY_MARK_TYPE_BITS
| FAN_MARK_FLUSH
))
1163 if (IS_ENABLED(CONFIG_FANOTIFY_ACCESS_PERMISSIONS
))
1164 valid_mask
|= FANOTIFY_PERM_EVENTS
;
1166 if (mask
& ~valid_mask
)
1169 /* Event flags (ONDIR, ON_CHILD) are meaningless in ignored mask */
1171 mask
&= ~FANOTIFY_EVENT_FLAGS
;
1173 f
= fdget(fanotify_fd
);
1174 if (unlikely(!f
.file
))
1177 /* verify that this is indeed an fanotify instance */
1179 if (unlikely(f
.file
->f_op
!= &fanotify_fops
))
1181 group
= f
.file
->private_data
;
1184 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
1185 * allowed to set permissions events.
1188 if (mask
& FANOTIFY_PERM_EVENTS
&&
1189 group
->priority
== FS_PRIO_0
)
1193 * Events with data type inode do not carry enough information to report
1194 * event->fd, so we do not allow setting a mask for inode events unless
1195 * group supports reporting fid.
1196 * inode events are not supported on a mount mark, because they do not
1197 * carry enough information (i.e. path) to be filtered by mount point.
1199 fid_mode
= FAN_GROUP_FLAG(group
, FANOTIFY_FID_BITS
);
1200 if (mask
& FANOTIFY_INODE_EVENTS
&&
1201 (!fid_mode
|| mark_type
== FAN_MARK_MOUNT
))
1204 if (flags
& FAN_MARK_FLUSH
) {
1206 if (mark_type
== FAN_MARK_MOUNT
)
1207 fsnotify_clear_vfsmount_marks_by_group(group
);
1208 else if (mark_type
== FAN_MARK_FILESYSTEM
)
1209 fsnotify_clear_sb_marks_by_group(group
);
1211 fsnotify_clear_inode_marks_by_group(group
);
1215 ret
= fanotify_find_path(dfd
, pathname
, &path
, flags
,
1216 (mask
& ALL_FSNOTIFY_EVENTS
), obj_type
);
1220 if (flags
& FAN_MARK_ADD
) {
1221 ret
= fanotify_events_supported(&path
, mask
);
1223 goto path_put_and_out
;
1227 ret
= fanotify_test_fid(&path
, &__fsid
);
1229 goto path_put_and_out
;
1234 /* inode held in place by reference to path; group by fget on fd */
1235 if (mark_type
== FAN_MARK_INODE
)
1236 inode
= path
.dentry
->d_inode
;
1240 /* Mask out FAN_EVENT_ON_CHILD flag for sb/mount/non-dir marks */
1241 if (mnt
|| !S_ISDIR(inode
->i_mode
)) {
1242 mask
&= ~FAN_EVENT_ON_CHILD
;
1243 umask
= FAN_EVENT_ON_CHILD
;
1245 * If group needs to report parent fid, register for getting
1246 * events with parent/name info for non-directory.
1248 if ((fid_mode
& FAN_REPORT_DIR_FID
) &&
1249 (flags
& FAN_MARK_ADD
) && !ignored
)
1250 mask
|= FAN_EVENT_ON_CHILD
;
1253 /* create/update an inode mark */
1254 switch (flags
& (FAN_MARK_ADD
| FAN_MARK_REMOVE
)) {
1256 if (mark_type
== FAN_MARK_MOUNT
)
1257 ret
= fanotify_add_vfsmount_mark(group
, mnt
, mask
,
1259 else if (mark_type
== FAN_MARK_FILESYSTEM
)
1260 ret
= fanotify_add_sb_mark(group
, mnt
->mnt_sb
, mask
,
1263 ret
= fanotify_add_inode_mark(group
, inode
, mask
,
1266 case FAN_MARK_REMOVE
:
1267 if (mark_type
== FAN_MARK_MOUNT
)
1268 ret
= fanotify_remove_vfsmount_mark(group
, mnt
, mask
,
1270 else if (mark_type
== FAN_MARK_FILESYSTEM
)
1271 ret
= fanotify_remove_sb_mark(group
, mnt
->mnt_sb
, mask
,
1274 ret
= fanotify_remove_inode_mark(group
, inode
, mask
,
1288 #ifndef CONFIG_ARCH_SPLIT_ARG64
1289 SYSCALL_DEFINE5(fanotify_mark
, int, fanotify_fd
, unsigned int, flags
,
1290 __u64
, mask
, int, dfd
,
1291 const char __user
*, pathname
)
1293 return do_fanotify_mark(fanotify_fd
, flags
, mask
, dfd
, pathname
);
1297 #if defined(CONFIG_ARCH_SPLIT_ARG64) || defined(CONFIG_COMPAT)
1298 SYSCALL32_DEFINE6(fanotify_mark
,
1299 int, fanotify_fd
, unsigned int, flags
,
1300 SC_ARG64(mask
), int, dfd
,
1301 const char __user
*, pathname
)
1303 return do_fanotify_mark(fanotify_fd
, flags
, SC_VAL64(__u64
, mask
),
1309 * fanotify_user_setup - Our initialization function. Note that we cannot return
1310 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
1311 * must result in panic().
1313 static int __init
fanotify_user_setup(void)
1315 BUILD_BUG_ON(HWEIGHT32(FANOTIFY_INIT_FLAGS
) != 10);
1316 BUILD_BUG_ON(HWEIGHT32(FANOTIFY_MARK_FLAGS
) != 9);
1318 fanotify_mark_cache
= KMEM_CACHE(fsnotify_mark
,
1319 SLAB_PANIC
|SLAB_ACCOUNT
);
1320 fanotify_fid_event_cachep
= KMEM_CACHE(fanotify_fid_event
,
1322 fanotify_path_event_cachep
= KMEM_CACHE(fanotify_path_event
,
1324 if (IS_ENABLED(CONFIG_FANOTIFY_ACCESS_PERMISSIONS
)) {
1325 fanotify_perm_event_cachep
=
1326 KMEM_CACHE(fanotify_perm_event
, SLAB_PANIC
);
1331 device_initcall(fanotify_user_setup
);