1 #include <linux/fanotify.h>
2 #include <linux/fcntl.h>
3 #include <linux/file.h>
5 #include <linux/anon_inodes.h>
6 #include <linux/fsnotify_backend.h>
7 #include <linux/init.h>
8 #include <linux/mount.h>
9 #include <linux/namei.h>
10 #include <linux/poll.h>
11 #include <linux/security.h>
12 #include <linux/syscalls.h>
13 #include <linux/slab.h>
14 #include <linux/types.h>
15 #include <linux/uaccess.h>
16 #include <linux/compat.h>
18 #include <asm/ioctls.h>
20 #include "../../mount.h"
21 #include "../fdinfo.h"
24 #define FANOTIFY_DEFAULT_MAX_EVENTS 16384
25 #define FANOTIFY_DEFAULT_MAX_MARKS 8192
26 #define FANOTIFY_DEFAULT_MAX_LISTENERS 128
28 extern const struct fsnotify_ops fanotify_fsnotify_ops
;
30 static struct kmem_cache
*fanotify_mark_cache __read_mostly
;
31 static struct kmem_cache
*fanotify_response_event_cache __read_mostly
;
32 struct kmem_cache
*fanotify_event_cachep __read_mostly
;
34 struct fanotify_response_event
{
35 struct list_head list
;
37 struct fanotify_event_info
*event
;
41 * Get an fsnotify notification event if one exists and is small
42 * enough to fit in "count". Return an error pointer if the count
43 * is not large enough.
45 * Called with the group->notification_mutex held.
47 static struct fsnotify_event
*get_one_event(struct fsnotify_group
*group
,
50 BUG_ON(!mutex_is_locked(&group
->notification_mutex
));
52 pr_debug("%s: group=%p count=%zd\n", __func__
, group
, count
);
54 if (fsnotify_notify_queue_is_empty(group
))
57 if (FAN_EVENT_METADATA_LEN
> count
)
58 return ERR_PTR(-EINVAL
);
60 /* held the notification_mutex the whole time, so this is the
61 * same event we peeked above */
62 return fsnotify_remove_notify_event(group
);
65 static int create_fd(struct fsnotify_group
*group
,
66 struct fanotify_event_info
*event
,
70 struct file
*new_file
;
72 pr_debug("%s: group=%p event=%p\n", __func__
, group
, event
);
74 client_fd
= get_unused_fd();
79 * we need a new file handle for the userspace program so it can read even if it was
80 * originally opened O_WRONLY.
82 /* it's possible this event was an overflow event. in that case dentry and mnt
83 * are NULL; That's fine, just don't call dentry open */
84 if (event
->path
.dentry
&& event
->path
.mnt
)
85 new_file
= dentry_open(&event
->path
,
86 group
->fanotify_data
.f_flags
| FMODE_NONOTIFY
,
89 new_file
= ERR_PTR(-EOVERFLOW
);
90 if (IS_ERR(new_file
)) {
92 * we still send an event even if we can't open the file. this
93 * can happen when say tasks are gone and we try to open their
94 * /proc files or we try to open a WRONLY file like in sysfs
95 * we just send the errno to userspace since there isn't much
98 put_unused_fd(client_fd
);
99 client_fd
= PTR_ERR(new_file
);
107 static int fill_event_metadata(struct fsnotify_group
*group
,
108 struct fanotify_event_metadata
*metadata
,
109 struct fsnotify_event
*fsn_event
,
113 struct fanotify_event_info
*event
;
115 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__
,
116 group
, metadata
, fsn_event
);
119 event
= container_of(fsn_event
, struct fanotify_event_info
, fse
);
120 metadata
->event_len
= FAN_EVENT_METADATA_LEN
;
121 metadata
->metadata_len
= FAN_EVENT_METADATA_LEN
;
122 metadata
->vers
= FANOTIFY_METADATA_VERSION
;
123 metadata
->reserved
= 0;
124 metadata
->mask
= fsn_event
->mask
& FAN_ALL_OUTGOING_EVENTS
;
125 metadata
->pid
= pid_vnr(event
->tgid
);
126 if (unlikely(fsn_event
->mask
& FAN_Q_OVERFLOW
))
127 metadata
->fd
= FAN_NOFD
;
129 metadata
->fd
= create_fd(group
, event
, file
);
130 if (metadata
->fd
< 0)
137 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
138 static struct fanotify_response_event
*dequeue_re(struct fsnotify_group
*group
,
141 struct fanotify_response_event
*re
, *return_re
= NULL
;
143 mutex_lock(&group
->fanotify_data
.access_mutex
);
144 list_for_each_entry(re
, &group
->fanotify_data
.access_list
, list
) {
148 list_del_init(&re
->list
);
152 mutex_unlock(&group
->fanotify_data
.access_mutex
);
154 pr_debug("%s: found return_re=%p\n", __func__
, return_re
);
159 static int process_access_response(struct fsnotify_group
*group
,
160 struct fanotify_response
*response_struct
)
162 struct fanotify_response_event
*re
;
163 __s32 fd
= response_struct
->fd
;
164 __u32 response
= response_struct
->response
;
166 pr_debug("%s: group=%p fd=%d response=%d\n", __func__
, group
,
169 * make sure the response is valid, if invalid we do nothing and either
170 * userspace can send a valid response or we will clean it up after the
184 re
= dequeue_re(group
, fd
);
188 re
->event
->response
= response
;
190 wake_up(&group
->fanotify_data
.access_waitq
);
192 kmem_cache_free(fanotify_response_event_cache
, re
);
197 static int prepare_for_access_response(struct fsnotify_group
*group
,
198 struct fsnotify_event
*event
,
201 struct fanotify_response_event
*re
;
203 if (!(event
->mask
& FAN_ALL_PERM_EVENTS
))
206 re
= kmem_cache_alloc(fanotify_response_event_cache
, GFP_KERNEL
);
210 re
->event
= FANOTIFY_E(event
);
213 mutex_lock(&group
->fanotify_data
.access_mutex
);
215 if (atomic_read(&group
->fanotify_data
.bypass_perm
)) {
216 mutex_unlock(&group
->fanotify_data
.access_mutex
);
217 kmem_cache_free(fanotify_response_event_cache
, re
);
218 FANOTIFY_E(event
)->response
= FAN_ALLOW
;
222 list_add_tail(&re
->list
, &group
->fanotify_data
.access_list
);
223 mutex_unlock(&group
->fanotify_data
.access_mutex
);
229 static int prepare_for_access_response(struct fsnotify_group
*group
,
230 struct fsnotify_event
*event
,
238 static ssize_t
copy_event_to_user(struct fsnotify_group
*group
,
239 struct fsnotify_event
*event
,
242 struct fanotify_event_metadata fanotify_event_metadata
;
246 pr_debug("%s: group=%p event=%p\n", __func__
, group
, event
);
248 ret
= fill_event_metadata(group
, &fanotify_event_metadata
, event
, &f
);
252 fd
= fanotify_event_metadata
.fd
;
254 if (copy_to_user(buf
, &fanotify_event_metadata
,
255 fanotify_event_metadata
.event_len
))
258 ret
= prepare_for_access_response(group
, event
, fd
);
264 return fanotify_event_metadata
.event_len
;
267 if (fd
!= FAN_NOFD
) {
272 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
273 if (event
->mask
& FAN_ALL_PERM_EVENTS
) {
274 FANOTIFY_E(event
)->response
= FAN_DENY
;
275 wake_up(&group
->fanotify_data
.access_waitq
);
281 /* intofiy userspace file descriptor functions */
282 static unsigned int fanotify_poll(struct file
*file
, poll_table
*wait
)
284 struct fsnotify_group
*group
= file
->private_data
;
287 poll_wait(file
, &group
->notification_waitq
, wait
);
288 mutex_lock(&group
->notification_mutex
);
289 if (!fsnotify_notify_queue_is_empty(group
))
290 ret
= POLLIN
| POLLRDNORM
;
291 mutex_unlock(&group
->notification_mutex
);
296 static ssize_t
fanotify_read(struct file
*file
, char __user
*buf
,
297 size_t count
, loff_t
*pos
)
299 struct fsnotify_group
*group
;
300 struct fsnotify_event
*kevent
;
306 group
= file
->private_data
;
308 pr_debug("%s: group=%p\n", __func__
, group
);
311 prepare_to_wait(&group
->notification_waitq
, &wait
, TASK_INTERRUPTIBLE
);
313 mutex_lock(&group
->notification_mutex
);
314 kevent
= get_one_event(group
, count
);
315 mutex_unlock(&group
->notification_mutex
);
318 ret
= PTR_ERR(kevent
);
321 ret
= copy_event_to_user(group
, kevent
, buf
);
323 * Permission events get destroyed after we
326 if (!(kevent
->mask
& FAN_ALL_PERM_EVENTS
))
327 fsnotify_destroy_event(group
, kevent
);
336 if (file
->f_flags
& O_NONBLOCK
)
339 if (signal_pending(current
))
348 finish_wait(&group
->notification_waitq
, &wait
);
349 if (start
!= buf
&& ret
!= -EFAULT
)
354 static ssize_t
fanotify_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*pos
)
356 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
357 struct fanotify_response response
= { .fd
= -1, .response
= -1 };
358 struct fsnotify_group
*group
;
361 group
= file
->private_data
;
363 if (count
> sizeof(response
))
364 count
= sizeof(response
);
366 pr_debug("%s: group=%p count=%zu\n", __func__
, group
, count
);
368 if (copy_from_user(&response
, buf
, count
))
371 ret
= process_access_response(group
, &response
);
381 static int fanotify_release(struct inode
*ignored
, struct file
*file
)
383 struct fsnotify_group
*group
= file
->private_data
;
385 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
386 struct fanotify_response_event
*re
, *lre
;
388 mutex_lock(&group
->fanotify_data
.access_mutex
);
390 atomic_inc(&group
->fanotify_data
.bypass_perm
);
392 list_for_each_entry_safe(re
, lre
, &group
->fanotify_data
.access_list
, list
) {
393 pr_debug("%s: found group=%p re=%p event=%p\n", __func__
, group
,
396 list_del_init(&re
->list
);
397 re
->event
->response
= FAN_ALLOW
;
399 kmem_cache_free(fanotify_response_event_cache
, re
);
401 mutex_unlock(&group
->fanotify_data
.access_mutex
);
403 wake_up(&group
->fanotify_data
.access_waitq
);
406 /* matches the fanotify_init->fsnotify_alloc_group */
407 fsnotify_destroy_group(group
);
412 static long fanotify_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
414 struct fsnotify_group
*group
;
415 struct fsnotify_event
*fsn_event
;
420 group
= file
->private_data
;
422 p
= (void __user
*) arg
;
426 mutex_lock(&group
->notification_mutex
);
427 list_for_each_entry(fsn_event
, &group
->notification_list
, list
)
428 send_len
+= FAN_EVENT_METADATA_LEN
;
429 mutex_unlock(&group
->notification_mutex
);
430 ret
= put_user(send_len
, (int __user
*) p
);
437 static const struct file_operations fanotify_fops
= {
438 .show_fdinfo
= fanotify_show_fdinfo
,
439 .poll
= fanotify_poll
,
440 .read
= fanotify_read
,
441 .write
= fanotify_write
,
443 .release
= fanotify_release
,
444 .unlocked_ioctl
= fanotify_ioctl
,
445 .compat_ioctl
= fanotify_ioctl
,
446 .llseek
= noop_llseek
,
449 static void fanotify_free_mark(struct fsnotify_mark
*fsn_mark
)
451 kmem_cache_free(fanotify_mark_cache
, fsn_mark
);
454 static int fanotify_find_path(int dfd
, const char __user
*filename
,
455 struct path
*path
, unsigned int flags
)
459 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__
,
460 dfd
, filename
, flags
);
462 if (filename
== NULL
) {
463 struct fd f
= fdget(dfd
);
470 if ((flags
& FAN_MARK_ONLYDIR
) &&
471 !(S_ISDIR(file_inode(f
.file
)->i_mode
))) {
476 *path
= f
.file
->f_path
;
480 unsigned int lookup_flags
= 0;
482 if (!(flags
& FAN_MARK_DONT_FOLLOW
))
483 lookup_flags
|= LOOKUP_FOLLOW
;
484 if (flags
& FAN_MARK_ONLYDIR
)
485 lookup_flags
|= LOOKUP_DIRECTORY
;
487 ret
= user_path_at(dfd
, filename
, lookup_flags
, path
);
492 /* you can only watch an inode if you have read permissions on it */
493 ret
= inode_permission(path
->dentry
->d_inode
, MAY_READ
);
500 static __u32
fanotify_mark_remove_from_mask(struct fsnotify_mark
*fsn_mark
,
507 spin_lock(&fsn_mark
->lock
);
508 if (!(flags
& FAN_MARK_IGNORED_MASK
)) {
509 oldmask
= fsn_mark
->mask
;
510 fsnotify_set_mark_mask_locked(fsn_mark
, (oldmask
& ~mask
));
512 oldmask
= fsn_mark
->ignored_mask
;
513 fsnotify_set_mark_ignored_mask_locked(fsn_mark
, (oldmask
& ~mask
));
515 spin_unlock(&fsn_mark
->lock
);
517 *destroy
= !(oldmask
& ~mask
);
519 return mask
& oldmask
;
522 static int fanotify_remove_vfsmount_mark(struct fsnotify_group
*group
,
523 struct vfsmount
*mnt
, __u32 mask
,
526 struct fsnotify_mark
*fsn_mark
= NULL
;
530 mutex_lock(&group
->mark_mutex
);
531 fsn_mark
= fsnotify_find_vfsmount_mark(group
, mnt
);
533 mutex_unlock(&group
->mark_mutex
);
537 removed
= fanotify_mark_remove_from_mask(fsn_mark
, mask
, flags
,
540 fsnotify_destroy_mark_locked(fsn_mark
, group
);
541 mutex_unlock(&group
->mark_mutex
);
543 fsnotify_put_mark(fsn_mark
);
544 if (removed
& real_mount(mnt
)->mnt_fsnotify_mask
)
545 fsnotify_recalc_vfsmount_mask(mnt
);
550 static int fanotify_remove_inode_mark(struct fsnotify_group
*group
,
551 struct inode
*inode
, __u32 mask
,
554 struct fsnotify_mark
*fsn_mark
= NULL
;
558 mutex_lock(&group
->mark_mutex
);
559 fsn_mark
= fsnotify_find_inode_mark(group
, inode
);
561 mutex_unlock(&group
->mark_mutex
);
565 removed
= fanotify_mark_remove_from_mask(fsn_mark
, mask
, flags
,
568 fsnotify_destroy_mark_locked(fsn_mark
, group
);
569 mutex_unlock(&group
->mark_mutex
);
571 /* matches the fsnotify_find_inode_mark() */
572 fsnotify_put_mark(fsn_mark
);
573 if (removed
& inode
->i_fsnotify_mask
)
574 fsnotify_recalc_inode_mask(inode
);
579 static __u32
fanotify_mark_add_to_mask(struct fsnotify_mark
*fsn_mark
,
585 spin_lock(&fsn_mark
->lock
);
586 if (!(flags
& FAN_MARK_IGNORED_MASK
)) {
587 oldmask
= fsn_mark
->mask
;
588 fsnotify_set_mark_mask_locked(fsn_mark
, (oldmask
| mask
));
590 __u32 tmask
= fsn_mark
->ignored_mask
| mask
;
591 fsnotify_set_mark_ignored_mask_locked(fsn_mark
, tmask
);
592 if (flags
& FAN_MARK_IGNORED_SURV_MODIFY
)
593 fsn_mark
->flags
|= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY
;
596 if (!(flags
& FAN_MARK_ONDIR
)) {
597 __u32 tmask
= fsn_mark
->ignored_mask
| FAN_ONDIR
;
598 fsnotify_set_mark_ignored_mask_locked(fsn_mark
, tmask
);
601 spin_unlock(&fsn_mark
->lock
);
603 return mask
& ~oldmask
;
606 static struct fsnotify_mark
*fanotify_add_new_mark(struct fsnotify_group
*group
,
608 struct vfsmount
*mnt
)
610 struct fsnotify_mark
*mark
;
613 if (atomic_read(&group
->num_marks
) > group
->fanotify_data
.max_marks
)
614 return ERR_PTR(-ENOSPC
);
616 mark
= kmem_cache_alloc(fanotify_mark_cache
, GFP_KERNEL
);
618 return ERR_PTR(-ENOMEM
);
620 fsnotify_init_mark(mark
, fanotify_free_mark
);
621 ret
= fsnotify_add_mark_locked(mark
, group
, inode
, mnt
, 0);
623 fsnotify_put_mark(mark
);
631 static int fanotify_add_vfsmount_mark(struct fsnotify_group
*group
,
632 struct vfsmount
*mnt
, __u32 mask
,
635 struct fsnotify_mark
*fsn_mark
;
638 mutex_lock(&group
->mark_mutex
);
639 fsn_mark
= fsnotify_find_vfsmount_mark(group
, mnt
);
641 fsn_mark
= fanotify_add_new_mark(group
, NULL
, mnt
);
642 if (IS_ERR(fsn_mark
)) {
643 mutex_unlock(&group
->mark_mutex
);
644 return PTR_ERR(fsn_mark
);
647 added
= fanotify_mark_add_to_mask(fsn_mark
, mask
, flags
);
648 mutex_unlock(&group
->mark_mutex
);
650 if (added
& ~real_mount(mnt
)->mnt_fsnotify_mask
)
651 fsnotify_recalc_vfsmount_mask(mnt
);
653 fsnotify_put_mark(fsn_mark
);
657 static int fanotify_add_inode_mark(struct fsnotify_group
*group
,
658 struct inode
*inode
, __u32 mask
,
661 struct fsnotify_mark
*fsn_mark
;
664 pr_debug("%s: group=%p inode=%p\n", __func__
, group
, inode
);
667 * If some other task has this inode open for write we should not add
668 * an ignored mark, unless that ignored mark is supposed to survive
669 * modification changes anyway.
671 if ((flags
& FAN_MARK_IGNORED_MASK
) &&
672 !(flags
& FAN_MARK_IGNORED_SURV_MODIFY
) &&
673 (atomic_read(&inode
->i_writecount
) > 0))
676 mutex_lock(&group
->mark_mutex
);
677 fsn_mark
= fsnotify_find_inode_mark(group
, inode
);
679 fsn_mark
= fanotify_add_new_mark(group
, inode
, NULL
);
680 if (IS_ERR(fsn_mark
)) {
681 mutex_unlock(&group
->mark_mutex
);
682 return PTR_ERR(fsn_mark
);
685 added
= fanotify_mark_add_to_mask(fsn_mark
, mask
, flags
);
686 mutex_unlock(&group
->mark_mutex
);
688 if (added
& ~inode
->i_fsnotify_mask
)
689 fsnotify_recalc_inode_mask(inode
);
691 fsnotify_put_mark(fsn_mark
);
695 /* fanotify syscalls */
696 SYSCALL_DEFINE2(fanotify_init
, unsigned int, flags
, unsigned int, event_f_flags
)
698 struct fsnotify_group
*group
;
700 struct user_struct
*user
;
701 struct fanotify_event_info
*oevent
;
703 pr_debug("%s: flags=%d event_f_flags=%d\n",
704 __func__
, flags
, event_f_flags
);
706 if (!capable(CAP_SYS_ADMIN
))
709 if (flags
& ~FAN_ALL_INIT_FLAGS
)
712 user
= get_current_user();
713 if (atomic_read(&user
->fanotify_listeners
) > FANOTIFY_DEFAULT_MAX_LISTENERS
) {
718 f_flags
= O_RDWR
| FMODE_NONOTIFY
;
719 if (flags
& FAN_CLOEXEC
)
720 f_flags
|= O_CLOEXEC
;
721 if (flags
& FAN_NONBLOCK
)
722 f_flags
|= O_NONBLOCK
;
724 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
725 group
= fsnotify_alloc_group(&fanotify_fsnotify_ops
);
728 return PTR_ERR(group
);
731 group
->fanotify_data
.user
= user
;
732 atomic_inc(&user
->fanotify_listeners
);
734 oevent
= kmem_cache_alloc(fanotify_event_cachep
, GFP_KERNEL
);
735 if (unlikely(!oevent
)) {
737 goto out_destroy_group
;
739 group
->overflow_event
= &oevent
->fse
;
740 fsnotify_init_event(group
->overflow_event
, NULL
, FS_Q_OVERFLOW
);
741 oevent
->tgid
= get_pid(task_tgid(current
));
742 oevent
->path
.mnt
= NULL
;
743 oevent
->path
.dentry
= NULL
;
745 group
->fanotify_data
.f_flags
= event_f_flags
;
746 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
747 oevent
->response
= 0;
748 mutex_init(&group
->fanotify_data
.access_mutex
);
749 init_waitqueue_head(&group
->fanotify_data
.access_waitq
);
750 INIT_LIST_HEAD(&group
->fanotify_data
.access_list
);
751 atomic_set(&group
->fanotify_data
.bypass_perm
, 0);
753 switch (flags
& FAN_ALL_CLASS_BITS
) {
754 case FAN_CLASS_NOTIF
:
755 group
->priority
= FS_PRIO_0
;
757 case FAN_CLASS_CONTENT
:
758 group
->priority
= FS_PRIO_1
;
760 case FAN_CLASS_PRE_CONTENT
:
761 group
->priority
= FS_PRIO_2
;
765 goto out_destroy_group
;
768 if (flags
& FAN_UNLIMITED_QUEUE
) {
770 if (!capable(CAP_SYS_ADMIN
))
771 goto out_destroy_group
;
772 group
->max_events
= UINT_MAX
;
774 group
->max_events
= FANOTIFY_DEFAULT_MAX_EVENTS
;
777 if (flags
& FAN_UNLIMITED_MARKS
) {
779 if (!capable(CAP_SYS_ADMIN
))
780 goto out_destroy_group
;
781 group
->fanotify_data
.max_marks
= UINT_MAX
;
783 group
->fanotify_data
.max_marks
= FANOTIFY_DEFAULT_MAX_MARKS
;
786 fd
= anon_inode_getfd("[fanotify]", &fanotify_fops
, group
, f_flags
);
788 goto out_destroy_group
;
793 fsnotify_destroy_group(group
);
797 SYSCALL_DEFINE5(fanotify_mark
, int, fanotify_fd
, unsigned int, flags
,
798 __u64
, mask
, int, dfd
,
799 const char __user
*, pathname
)
801 struct inode
*inode
= NULL
;
802 struct vfsmount
*mnt
= NULL
;
803 struct fsnotify_group
*group
;
808 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
809 __func__
, fanotify_fd
, flags
, dfd
, pathname
, mask
);
811 /* we only use the lower 32 bits as of right now. */
812 if (mask
& ((__u64
)0xffffffff << 32))
815 if (flags
& ~FAN_ALL_MARK_FLAGS
)
817 switch (flags
& (FAN_MARK_ADD
| FAN_MARK_REMOVE
| FAN_MARK_FLUSH
)) {
818 case FAN_MARK_ADD
: /* fallthrough */
819 case FAN_MARK_REMOVE
:
828 if (mask
& FAN_ONDIR
) {
829 flags
|= FAN_MARK_ONDIR
;
833 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
834 if (mask
& ~(FAN_ALL_EVENTS
| FAN_ALL_PERM_EVENTS
| FAN_EVENT_ON_CHILD
))
836 if (mask
& ~(FAN_ALL_EVENTS
| FAN_EVENT_ON_CHILD
))
840 f
= fdget(fanotify_fd
);
841 if (unlikely(!f
.file
))
844 /* verify that this is indeed an fanotify instance */
846 if (unlikely(f
.file
->f_op
!= &fanotify_fops
))
848 group
= f
.file
->private_data
;
851 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
852 * allowed to set permissions events.
855 if (mask
& FAN_ALL_PERM_EVENTS
&&
856 group
->priority
== FS_PRIO_0
)
859 ret
= fanotify_find_path(dfd
, pathname
, &path
, flags
);
863 /* inode held in place by reference to path; group by fget on fd */
864 if (!(flags
& FAN_MARK_MOUNT
))
865 inode
= path
.dentry
->d_inode
;
869 /* create/update an inode mark */
870 switch (flags
& (FAN_MARK_ADD
| FAN_MARK_REMOVE
| FAN_MARK_FLUSH
)) {
872 if (flags
& FAN_MARK_MOUNT
)
873 ret
= fanotify_add_vfsmount_mark(group
, mnt
, mask
, flags
);
875 ret
= fanotify_add_inode_mark(group
, inode
, mask
, flags
);
877 case FAN_MARK_REMOVE
:
878 if (flags
& FAN_MARK_MOUNT
)
879 ret
= fanotify_remove_vfsmount_mark(group
, mnt
, mask
, flags
);
881 ret
= fanotify_remove_inode_mark(group
, inode
, mask
, flags
);
884 if (flags
& FAN_MARK_MOUNT
)
885 fsnotify_clear_vfsmount_marks_by_group(group
);
887 fsnotify_clear_inode_marks_by_group(group
);
900 COMPAT_SYSCALL_DEFINE6(fanotify_mark
,
901 int, fanotify_fd
, unsigned int, flags
,
902 __u32
, mask0
, __u32
, mask1
, int, dfd
,
903 const char __user
*, pathname
)
905 return sys_fanotify_mark(fanotify_fd
, flags
,
907 ((__u64
)mask0
<< 32) | mask1
,
909 ((__u64
)mask1
<< 32) | mask0
,
916 * fanotify_user_setup - Our initialization function. Note that we cannot return
917 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
918 * must result in panic().
920 static int __init
fanotify_user_setup(void)
922 fanotify_mark_cache
= KMEM_CACHE(fsnotify_mark
, SLAB_PANIC
);
923 fanotify_response_event_cache
= KMEM_CACHE(fanotify_response_event
,
925 fanotify_event_cachep
= KMEM_CACHE(fanotify_event_info
, SLAB_PANIC
);
929 device_initcall(fanotify_user_setup
);