aboutsummaryrefslogtreecommitdiffstats
path: root/fs/notify
diff options
context:
space:
mode:
Diffstat (limited to 'fs/notify')
-rw-r--r--fs/notify/fanotify/fanotify_user.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c
index 43d66d9b2eff..1d33d7db277a 100644
--- a/fs/notify/fanotify/fanotify_user.c
+++ b/fs/notify/fanotify/fanotify_user.c
@@ -17,6 +17,7 @@
17#include <asm/ioctls.h> 17#include <asm/ioctls.h>
18 18
19#define FANOTIFY_DEFAULT_MAX_EVENTS 16384 19#define FANOTIFY_DEFAULT_MAX_EVENTS 16384
20#define FANOTIFY_DEFAULT_MAX_MARKS 8192
20 21
21extern const struct fsnotify_ops fanotify_fsnotify_ops; 22extern const struct fsnotify_ops fanotify_fsnotify_ops;
22 23
@@ -584,6 +585,9 @@ static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
584 if (!fsn_mark) { 585 if (!fsn_mark) {
585 int ret; 586 int ret;
586 587
588 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
589 return -ENOSPC;
590
587 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL); 591 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
588 if (!fsn_mark) 592 if (!fsn_mark)
589 return -ENOMEM; 593 return -ENOMEM;
@@ -626,6 +630,9 @@ static int fanotify_add_inode_mark(struct fsnotify_group *group,
626 if (!fsn_mark) { 630 if (!fsn_mark) {
627 int ret; 631 int ret;
628 632
633 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
634 return -ENOSPC;
635
629 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL); 636 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
630 if (!fsn_mark) 637 if (!fsn_mark)
631 return -ENOMEM; 638 return -ENOMEM;
@@ -700,6 +707,8 @@ SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
700 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS; 707 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
701 } 708 }
702 709
710 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
711
703 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags); 712 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
704 if (fd < 0) 713 if (fd < 0)
705 goto out_put_group; 714 goto out_put_group;