fsnotify: Remove fsnotify_set_mark_{,ignored_}mask_locked()
[sfrench/cifs-2.6.git] / fs / notify / fanotify / fanotify_user.c
1 #include <linux/fanotify.h>
2 #include <linux/fcntl.h>
3 #include <linux/file.h>
4 #include <linux/fs.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>
17 #include <linux/sched/signal.h>
18
19 #include <asm/ioctls.h>
20
21 #include "../../mount.h"
22 #include "../fdinfo.h"
23 #include "fanotify.h"
24
25 #define FANOTIFY_DEFAULT_MAX_EVENTS     16384
26 #define FANOTIFY_DEFAULT_MAX_MARKS      8192
27 #define FANOTIFY_DEFAULT_MAX_LISTENERS  128
28
29 /*
30  * All flags that may be specified in parameter event_f_flags of fanotify_init.
31  *
32  * Internal and external open flags are stored together in field f_flags of
33  * struct file. Only external open flags shall be allowed in event_f_flags.
34  * Internal flags like FMODE_NONOTIFY, FMODE_EXEC, FMODE_NOCMTIME shall be
35  * excluded.
36  */
37 #define FANOTIFY_INIT_ALL_EVENT_F_BITS                          ( \
38                 O_ACCMODE       | O_APPEND      | O_NONBLOCK    | \
39                 __O_SYNC        | O_DSYNC       | O_CLOEXEC     | \
40                 O_LARGEFILE     | O_NOATIME     )
41
42 extern const struct fsnotify_ops fanotify_fsnotify_ops;
43
44 static struct kmem_cache *fanotify_mark_cache __read_mostly;
45 struct kmem_cache *fanotify_event_cachep __read_mostly;
46 struct kmem_cache *fanotify_perm_event_cachep __read_mostly;
47
48 /*
49  * Get an fsnotify notification event if one exists and is small
50  * enough to fit in "count". Return an error pointer if the count
51  * is not large enough.
52  *
53  * Called with the group->notification_lock held.
54  */
55 static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
56                                             size_t count)
57 {
58         assert_spin_locked(&group->notification_lock);
59
60         pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
61
62         if (fsnotify_notify_queue_is_empty(group))
63                 return NULL;
64
65         if (FAN_EVENT_METADATA_LEN > count)
66                 return ERR_PTR(-EINVAL);
67
68         /* held the notification_lock the whole time, so this is the
69          * same event we peeked above */
70         return fsnotify_remove_first_event(group);
71 }
72
73 static int create_fd(struct fsnotify_group *group,
74                      struct fanotify_event_info *event,
75                      struct file **file)
76 {
77         int client_fd;
78         struct file *new_file;
79
80         pr_debug("%s: group=%p event=%p\n", __func__, group, event);
81
82         client_fd = get_unused_fd_flags(group->fanotify_data.f_flags);
83         if (client_fd < 0)
84                 return client_fd;
85
86         /*
87          * we need a new file handle for the userspace program so it can read even if it was
88          * originally opened O_WRONLY.
89          */
90         /* it's possible this event was an overflow event.  in that case dentry and mnt
91          * are NULL;  That's fine, just don't call dentry open */
92         if (event->path.dentry && event->path.mnt)
93                 new_file = dentry_open(&event->path,
94                                        group->fanotify_data.f_flags | FMODE_NONOTIFY,
95                                        current_cred());
96         else
97                 new_file = ERR_PTR(-EOVERFLOW);
98         if (IS_ERR(new_file)) {
99                 /*
100                  * we still send an event even if we can't open the file.  this
101                  * can happen when say tasks are gone and we try to open their
102                  * /proc files or we try to open a WRONLY file like in sysfs
103                  * we just send the errno to userspace since there isn't much
104                  * else we can do.
105                  */
106                 put_unused_fd(client_fd);
107                 client_fd = PTR_ERR(new_file);
108         } else {
109                 *file = new_file;
110         }
111
112         return client_fd;
113 }
114
115 static int fill_event_metadata(struct fsnotify_group *group,
116                                struct fanotify_event_metadata *metadata,
117                                struct fsnotify_event *fsn_event,
118                                struct file **file)
119 {
120         int ret = 0;
121         struct fanotify_event_info *event;
122
123         pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
124                  group, metadata, fsn_event);
125
126         *file = NULL;
127         event = container_of(fsn_event, struct fanotify_event_info, fse);
128         metadata->event_len = FAN_EVENT_METADATA_LEN;
129         metadata->metadata_len = FAN_EVENT_METADATA_LEN;
130         metadata->vers = FANOTIFY_METADATA_VERSION;
131         metadata->reserved = 0;
132         metadata->mask = fsn_event->mask & FAN_ALL_OUTGOING_EVENTS;
133         metadata->pid = pid_vnr(event->tgid);
134         if (unlikely(fsn_event->mask & FAN_Q_OVERFLOW))
135                 metadata->fd = FAN_NOFD;
136         else {
137                 metadata->fd = create_fd(group, event, file);
138                 if (metadata->fd < 0)
139                         ret = metadata->fd;
140         }
141
142         return ret;
143 }
144
145 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
146 static struct fanotify_perm_event_info *dequeue_event(
147                                 struct fsnotify_group *group, int fd)
148 {
149         struct fanotify_perm_event_info *event, *return_e = NULL;
150
151         spin_lock(&group->notification_lock);
152         list_for_each_entry(event, &group->fanotify_data.access_list,
153                             fae.fse.list) {
154                 if (event->fd != fd)
155                         continue;
156
157                 list_del_init(&event->fae.fse.list);
158                 return_e = event;
159                 break;
160         }
161         spin_unlock(&group->notification_lock);
162
163         pr_debug("%s: found return_re=%p\n", __func__, return_e);
164
165         return return_e;
166 }
167
168 static int process_access_response(struct fsnotify_group *group,
169                                    struct fanotify_response *response_struct)
170 {
171         struct fanotify_perm_event_info *event;
172         int fd = response_struct->fd;
173         int response = response_struct->response;
174
175         pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group,
176                  fd, response);
177         /*
178          * make sure the response is valid, if invalid we do nothing and either
179          * userspace can send a valid response or we will clean it up after the
180          * timeout
181          */
182         switch (response) {
183         case FAN_ALLOW:
184         case FAN_DENY:
185                 break;
186         default:
187                 return -EINVAL;
188         }
189
190         if (fd < 0)
191                 return -EINVAL;
192
193         event = dequeue_event(group, fd);
194         if (!event)
195                 return -ENOENT;
196
197         event->response = response;
198         wake_up(&group->fanotify_data.access_waitq);
199
200         return 0;
201 }
202 #endif
203
204 static ssize_t copy_event_to_user(struct fsnotify_group *group,
205                                   struct fsnotify_event *event,
206                                   char __user *buf)
207 {
208         struct fanotify_event_metadata fanotify_event_metadata;
209         struct file *f;
210         int fd, ret;
211
212         pr_debug("%s: group=%p event=%p\n", __func__, group, event);
213
214         ret = fill_event_metadata(group, &fanotify_event_metadata, event, &f);
215         if (ret < 0)
216                 return ret;
217
218         fd = fanotify_event_metadata.fd;
219         ret = -EFAULT;
220         if (copy_to_user(buf, &fanotify_event_metadata,
221                          fanotify_event_metadata.event_len))
222                 goto out_close_fd;
223
224 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
225         if (event->mask & FAN_ALL_PERM_EVENTS)
226                 FANOTIFY_PE(event)->fd = fd;
227 #endif
228
229         if (fd != FAN_NOFD)
230                 fd_install(fd, f);
231         return fanotify_event_metadata.event_len;
232
233 out_close_fd:
234         if (fd != FAN_NOFD) {
235                 put_unused_fd(fd);
236                 fput(f);
237         }
238         return ret;
239 }
240
241 /* intofiy userspace file descriptor functions */
242 static unsigned int fanotify_poll(struct file *file, poll_table *wait)
243 {
244         struct fsnotify_group *group = file->private_data;
245         int ret = 0;
246
247         poll_wait(file, &group->notification_waitq, wait);
248         spin_lock(&group->notification_lock);
249         if (!fsnotify_notify_queue_is_empty(group))
250                 ret = POLLIN | POLLRDNORM;
251         spin_unlock(&group->notification_lock);
252
253         return ret;
254 }
255
256 static ssize_t fanotify_read(struct file *file, char __user *buf,
257                              size_t count, loff_t *pos)
258 {
259         struct fsnotify_group *group;
260         struct fsnotify_event *kevent;
261         char __user *start;
262         int ret;
263         DEFINE_WAIT_FUNC(wait, woken_wake_function);
264
265         start = buf;
266         group = file->private_data;
267
268         pr_debug("%s: group=%p\n", __func__, group);
269
270         add_wait_queue(&group->notification_waitq, &wait);
271         while (1) {
272                 spin_lock(&group->notification_lock);
273                 kevent = get_one_event(group, count);
274                 spin_unlock(&group->notification_lock);
275
276                 if (IS_ERR(kevent)) {
277                         ret = PTR_ERR(kevent);
278                         break;
279                 }
280
281                 if (!kevent) {
282                         ret = -EAGAIN;
283                         if (file->f_flags & O_NONBLOCK)
284                                 break;
285
286                         ret = -ERESTARTSYS;
287                         if (signal_pending(current))
288                                 break;
289
290                         if (start != buf)
291                                 break;
292
293                         wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
294                         continue;
295                 }
296
297                 ret = copy_event_to_user(group, kevent, buf);
298                 /*
299                  * Permission events get queued to wait for response.  Other
300                  * events can be destroyed now.
301                  */
302                 if (!(kevent->mask & FAN_ALL_PERM_EVENTS)) {
303                         fsnotify_destroy_event(group, kevent);
304                         if (ret < 0)
305                                 break;
306                 } else {
307 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
308                         if (ret < 0) {
309                                 FANOTIFY_PE(kevent)->response = FAN_DENY;
310                                 wake_up(&group->fanotify_data.access_waitq);
311                                 break;
312                         }
313                         spin_lock(&group->notification_lock);
314                         list_add_tail(&kevent->list,
315                                       &group->fanotify_data.access_list);
316                         spin_unlock(&group->notification_lock);
317 #endif
318                 }
319                 buf += ret;
320                 count -= ret;
321         }
322         remove_wait_queue(&group->notification_waitq, &wait);
323
324         if (start != buf && ret != -EFAULT)
325                 ret = buf - start;
326         return ret;
327 }
328
329 static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
330 {
331 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
332         struct fanotify_response response = { .fd = -1, .response = -1 };
333         struct fsnotify_group *group;
334         int ret;
335
336         group = file->private_data;
337
338         if (count > sizeof(response))
339                 count = sizeof(response);
340
341         pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
342
343         if (copy_from_user(&response, buf, count))
344                 return -EFAULT;
345
346         ret = process_access_response(group, &response);
347         if (ret < 0)
348                 count = ret;
349
350         return count;
351 #else
352         return -EINVAL;
353 #endif
354 }
355
356 static int fanotify_release(struct inode *ignored, struct file *file)
357 {
358         struct fsnotify_group *group = file->private_data;
359
360 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
361         struct fanotify_perm_event_info *event, *next;
362         struct fsnotify_event *fsn_event;
363
364         /*
365          * Stop new events from arriving in the notification queue. since
366          * userspace cannot use fanotify fd anymore, no event can enter or
367          * leave access_list by now either.
368          */
369         fsnotify_group_stop_queueing(group);
370
371         /*
372          * Process all permission events on access_list and notification queue
373          * and simulate reply from userspace.
374          */
375         spin_lock(&group->notification_lock);
376         list_for_each_entry_safe(event, next, &group->fanotify_data.access_list,
377                                  fae.fse.list) {
378                 pr_debug("%s: found group=%p event=%p\n", __func__, group,
379                          event);
380
381                 list_del_init(&event->fae.fse.list);
382                 event->response = FAN_ALLOW;
383         }
384
385         /*
386          * Destroy all non-permission events. For permission events just
387          * dequeue them and set the response. They will be freed once the
388          * response is consumed and fanotify_get_response() returns.
389          */
390         while (!fsnotify_notify_queue_is_empty(group)) {
391                 fsn_event = fsnotify_remove_first_event(group);
392                 if (!(fsn_event->mask & FAN_ALL_PERM_EVENTS)) {
393                         spin_unlock(&group->notification_lock);
394                         fsnotify_destroy_event(group, fsn_event);
395                         spin_lock(&group->notification_lock);
396                 } else
397                         FANOTIFY_PE(fsn_event)->response = FAN_ALLOW;
398         }
399         spin_unlock(&group->notification_lock);
400
401         /* Response for all permission events it set, wakeup waiters */
402         wake_up(&group->fanotify_data.access_waitq);
403 #endif
404
405         /* matches the fanotify_init->fsnotify_alloc_group */
406         fsnotify_destroy_group(group);
407
408         return 0;
409 }
410
411 static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
412 {
413         struct fsnotify_group *group;
414         struct fsnotify_event *fsn_event;
415         void __user *p;
416         int ret = -ENOTTY;
417         size_t send_len = 0;
418
419         group = file->private_data;
420
421         p = (void __user *) arg;
422
423         switch (cmd) {
424         case FIONREAD:
425                 spin_lock(&group->notification_lock);
426                 list_for_each_entry(fsn_event, &group->notification_list, list)
427                         send_len += FAN_EVENT_METADATA_LEN;
428                 spin_unlock(&group->notification_lock);
429                 ret = put_user(send_len, (int __user *) p);
430                 break;
431         }
432
433         return ret;
434 }
435
436 static const struct file_operations fanotify_fops = {
437         .show_fdinfo    = fanotify_show_fdinfo,
438         .poll           = fanotify_poll,
439         .read           = fanotify_read,
440         .write          = fanotify_write,
441         .fasync         = NULL,
442         .release        = fanotify_release,
443         .unlocked_ioctl = fanotify_ioctl,
444         .compat_ioctl   = fanotify_ioctl,
445         .llseek         = noop_llseek,
446 };
447
448 static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
449 {
450         kmem_cache_free(fanotify_mark_cache, fsn_mark);
451 }
452
453 static int fanotify_find_path(int dfd, const char __user *filename,
454                               struct path *path, unsigned int flags)
455 {
456         int ret;
457
458         pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
459                  dfd, filename, flags);
460
461         if (filename == NULL) {
462                 struct fd f = fdget(dfd);
463
464                 ret = -EBADF;
465                 if (!f.file)
466                         goto out;
467
468                 ret = -ENOTDIR;
469                 if ((flags & FAN_MARK_ONLYDIR) &&
470                     !(S_ISDIR(file_inode(f.file)->i_mode))) {
471                         fdput(f);
472                         goto out;
473                 }
474
475                 *path = f.file->f_path;
476                 path_get(path);
477                 fdput(f);
478         } else {
479                 unsigned int lookup_flags = 0;
480
481                 if (!(flags & FAN_MARK_DONT_FOLLOW))
482                         lookup_flags |= LOOKUP_FOLLOW;
483                 if (flags & FAN_MARK_ONLYDIR)
484                         lookup_flags |= LOOKUP_DIRECTORY;
485
486                 ret = user_path_at(dfd, filename, lookup_flags, path);
487                 if (ret)
488                         goto out;
489         }
490
491         /* you can only watch an inode if you have read permissions on it */
492         ret = inode_permission(path->dentry->d_inode, MAY_READ);
493         if (ret)
494                 path_put(path);
495 out:
496         return ret;
497 }
498
499 static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
500                                             __u32 mask,
501                                             unsigned int flags,
502                                             int *destroy)
503 {
504         __u32 oldmask = 0;
505
506         spin_lock(&fsn_mark->lock);
507         if (!(flags & FAN_MARK_IGNORED_MASK)) {
508                 __u32 tmask = fsn_mark->mask & ~mask;
509
510                 if (flags & FAN_MARK_ONDIR)
511                         tmask &= ~FAN_ONDIR;
512
513                 oldmask = fsn_mark->mask;
514                 fsn_mark->mask = tmask;
515         } else {
516                 __u32 tmask = fsn_mark->ignored_mask & ~mask;
517                 if (flags & FAN_MARK_ONDIR)
518                         tmask &= ~FAN_ONDIR;
519                 fsn_mark->ignored_mask = tmask;
520         }
521         *destroy = !(fsn_mark->mask | fsn_mark->ignored_mask);
522         spin_unlock(&fsn_mark->lock);
523
524         return mask & oldmask;
525 }
526
527 static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
528                                          struct vfsmount *mnt, __u32 mask,
529                                          unsigned int flags)
530 {
531         struct fsnotify_mark *fsn_mark = NULL;
532         __u32 removed;
533         int destroy_mark;
534
535         mutex_lock(&group->mark_mutex);
536         fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
537         if (!fsn_mark) {
538                 mutex_unlock(&group->mark_mutex);
539                 return -ENOENT;
540         }
541
542         removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
543                                                  &destroy_mark);
544         if (removed & real_mount(mnt)->mnt_fsnotify_mask)
545                 fsnotify_recalc_vfsmount_mask(mnt);
546         if (destroy_mark)
547                 fsnotify_detach_mark(fsn_mark);
548         mutex_unlock(&group->mark_mutex);
549         if (destroy_mark)
550                 fsnotify_free_mark(fsn_mark);
551
552         fsnotify_put_mark(fsn_mark);
553         return 0;
554 }
555
556 static int fanotify_remove_inode_mark(struct fsnotify_group *group,
557                                       struct inode *inode, __u32 mask,
558                                       unsigned int flags)
559 {
560         struct fsnotify_mark *fsn_mark = NULL;
561         __u32 removed;
562         int destroy_mark;
563
564         mutex_lock(&group->mark_mutex);
565         fsn_mark = fsnotify_find_inode_mark(group, inode);
566         if (!fsn_mark) {
567                 mutex_unlock(&group->mark_mutex);
568                 return -ENOENT;
569         }
570
571         removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
572                                                  &destroy_mark);
573         if (removed & inode->i_fsnotify_mask)
574                 fsnotify_recalc_inode_mask(inode);
575         if (destroy_mark)
576                 fsnotify_detach_mark(fsn_mark);
577         mutex_unlock(&group->mark_mutex);
578         if (destroy_mark)
579                 fsnotify_free_mark(fsn_mark);
580
581         /* matches the fsnotify_find_inode_mark() */
582         fsnotify_put_mark(fsn_mark);
583
584         return 0;
585 }
586
587 static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
588                                        __u32 mask,
589                                        unsigned int flags)
590 {
591         __u32 oldmask = -1;
592
593         spin_lock(&fsn_mark->lock);
594         if (!(flags & FAN_MARK_IGNORED_MASK)) {
595                 __u32 tmask = fsn_mark->mask | mask;
596
597                 if (flags & FAN_MARK_ONDIR)
598                         tmask |= FAN_ONDIR;
599
600                 oldmask = fsn_mark->mask;
601                 fsn_mark->mask = tmask;
602         } else {
603                 __u32 tmask = fsn_mark->ignored_mask | mask;
604                 if (flags & FAN_MARK_ONDIR)
605                         tmask |= FAN_ONDIR;
606
607                 fsn_mark->ignored_mask = tmask;
608                 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
609                         fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
610         }
611         spin_unlock(&fsn_mark->lock);
612
613         return mask & ~oldmask;
614 }
615
616 static struct fsnotify_mark *fanotify_add_new_mark(struct fsnotify_group *group,
617                                                    struct inode *inode,
618                                                    struct vfsmount *mnt)
619 {
620         struct fsnotify_mark *mark;
621         int ret;
622
623         if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
624                 return ERR_PTR(-ENOSPC);
625
626         mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
627         if (!mark)
628                 return ERR_PTR(-ENOMEM);
629
630         fsnotify_init_mark(mark, fanotify_free_mark);
631         ret = fsnotify_add_mark_locked(mark, group, inode, mnt, 0);
632         if (ret) {
633                 fsnotify_put_mark(mark);
634                 return ERR_PTR(ret);
635         }
636
637         return mark;
638 }
639
640
641 static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
642                                       struct vfsmount *mnt, __u32 mask,
643                                       unsigned int flags)
644 {
645         struct fsnotify_mark *fsn_mark;
646         __u32 added;
647
648         mutex_lock(&group->mark_mutex);
649         fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
650         if (!fsn_mark) {
651                 fsn_mark = fanotify_add_new_mark(group, NULL, mnt);
652                 if (IS_ERR(fsn_mark)) {
653                         mutex_unlock(&group->mark_mutex);
654                         return PTR_ERR(fsn_mark);
655                 }
656         }
657         added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
658         if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
659                 fsnotify_recalc_vfsmount_mask(mnt);
660         mutex_unlock(&group->mark_mutex);
661
662         fsnotify_put_mark(fsn_mark);
663         return 0;
664 }
665
666 static int fanotify_add_inode_mark(struct fsnotify_group *group,
667                                    struct inode *inode, __u32 mask,
668                                    unsigned int flags)
669 {
670         struct fsnotify_mark *fsn_mark;
671         __u32 added;
672
673         pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
674
675         /*
676          * If some other task has this inode open for write we should not add
677          * an ignored mark, unless that ignored mark is supposed to survive
678          * modification changes anyway.
679          */
680         if ((flags & FAN_MARK_IGNORED_MASK) &&
681             !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
682             (atomic_read(&inode->i_writecount) > 0))
683                 return 0;
684
685         mutex_lock(&group->mark_mutex);
686         fsn_mark = fsnotify_find_inode_mark(group, inode);
687         if (!fsn_mark) {
688                 fsn_mark = fanotify_add_new_mark(group, inode, NULL);
689                 if (IS_ERR(fsn_mark)) {
690                         mutex_unlock(&group->mark_mutex);
691                         return PTR_ERR(fsn_mark);
692                 }
693         }
694         added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
695         if (added & ~inode->i_fsnotify_mask)
696                 fsnotify_recalc_inode_mask(inode);
697         mutex_unlock(&group->mark_mutex);
698
699         fsnotify_put_mark(fsn_mark);
700         return 0;
701 }
702
703 /* fanotify syscalls */
704 SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
705 {
706         struct fsnotify_group *group;
707         int f_flags, fd;
708         struct user_struct *user;
709         struct fanotify_event_info *oevent;
710
711         pr_debug("%s: flags=%d event_f_flags=%d\n",
712                 __func__, flags, event_f_flags);
713
714         if (!capable(CAP_SYS_ADMIN))
715                 return -EPERM;
716
717         if (flags & ~FAN_ALL_INIT_FLAGS)
718                 return -EINVAL;
719
720         if (event_f_flags & ~FANOTIFY_INIT_ALL_EVENT_F_BITS)
721                 return -EINVAL;
722
723         switch (event_f_flags & O_ACCMODE) {
724         case O_RDONLY:
725         case O_RDWR:
726         case O_WRONLY:
727                 break;
728         default:
729                 return -EINVAL;
730         }
731
732         user = get_current_user();
733         if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
734                 free_uid(user);
735                 return -EMFILE;
736         }
737
738         f_flags = O_RDWR | FMODE_NONOTIFY;
739         if (flags & FAN_CLOEXEC)
740                 f_flags |= O_CLOEXEC;
741         if (flags & FAN_NONBLOCK)
742                 f_flags |= O_NONBLOCK;
743
744         /* fsnotify_alloc_group takes a ref.  Dropped in fanotify_release */
745         group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
746         if (IS_ERR(group)) {
747                 free_uid(user);
748                 return PTR_ERR(group);
749         }
750
751         group->fanotify_data.user = user;
752         atomic_inc(&user->fanotify_listeners);
753
754         oevent = fanotify_alloc_event(NULL, FS_Q_OVERFLOW, NULL);
755         if (unlikely(!oevent)) {
756                 fd = -ENOMEM;
757                 goto out_destroy_group;
758         }
759         group->overflow_event = &oevent->fse;
760
761         if (force_o_largefile())
762                 event_f_flags |= O_LARGEFILE;
763         group->fanotify_data.f_flags = event_f_flags;
764 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
765         init_waitqueue_head(&group->fanotify_data.access_waitq);
766         INIT_LIST_HEAD(&group->fanotify_data.access_list);
767 #endif
768         switch (flags & FAN_ALL_CLASS_BITS) {
769         case FAN_CLASS_NOTIF:
770                 group->priority = FS_PRIO_0;
771                 break;
772         case FAN_CLASS_CONTENT:
773                 group->priority = FS_PRIO_1;
774                 break;
775         case FAN_CLASS_PRE_CONTENT:
776                 group->priority = FS_PRIO_2;
777                 break;
778         default:
779                 fd = -EINVAL;
780                 goto out_destroy_group;
781         }
782
783         if (flags & FAN_UNLIMITED_QUEUE) {
784                 fd = -EPERM;
785                 if (!capable(CAP_SYS_ADMIN))
786                         goto out_destroy_group;
787                 group->max_events = UINT_MAX;
788         } else {
789                 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
790         }
791
792         if (flags & FAN_UNLIMITED_MARKS) {
793                 fd = -EPERM;
794                 if (!capable(CAP_SYS_ADMIN))
795                         goto out_destroy_group;
796                 group->fanotify_data.max_marks = UINT_MAX;
797         } else {
798                 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
799         }
800
801         fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
802         if (fd < 0)
803                 goto out_destroy_group;
804
805         return fd;
806
807 out_destroy_group:
808         fsnotify_destroy_group(group);
809         return fd;
810 }
811
812 SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
813                               __u64, mask, int, dfd,
814                               const char  __user *, pathname)
815 {
816         struct inode *inode = NULL;
817         struct vfsmount *mnt = NULL;
818         struct fsnotify_group *group;
819         struct fd f;
820         struct path path;
821         int ret;
822
823         pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
824                  __func__, fanotify_fd, flags, dfd, pathname, mask);
825
826         /* we only use the lower 32 bits as of right now. */
827         if (mask & ((__u64)0xffffffff << 32))
828                 return -EINVAL;
829
830         if (flags & ~FAN_ALL_MARK_FLAGS)
831                 return -EINVAL;
832         switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
833         case FAN_MARK_ADD:              /* fallthrough */
834         case FAN_MARK_REMOVE:
835                 if (!mask)
836                         return -EINVAL;
837                 break;
838         case FAN_MARK_FLUSH:
839                 if (flags & ~(FAN_MARK_MOUNT | FAN_MARK_FLUSH))
840                         return -EINVAL;
841                 break;
842         default:
843                 return -EINVAL;
844         }
845
846         if (mask & FAN_ONDIR) {
847                 flags |= FAN_MARK_ONDIR;
848                 mask &= ~FAN_ONDIR;
849         }
850
851 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
852         if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
853 #else
854         if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
855 #endif
856                 return -EINVAL;
857
858         f = fdget(fanotify_fd);
859         if (unlikely(!f.file))
860                 return -EBADF;
861
862         /* verify that this is indeed an fanotify instance */
863         ret = -EINVAL;
864         if (unlikely(f.file->f_op != &fanotify_fops))
865                 goto fput_and_out;
866         group = f.file->private_data;
867
868         /*
869          * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF.  These are not
870          * allowed to set permissions events.
871          */
872         ret = -EINVAL;
873         if (mask & FAN_ALL_PERM_EVENTS &&
874             group->priority == FS_PRIO_0)
875                 goto fput_and_out;
876
877         if (flags & FAN_MARK_FLUSH) {
878                 ret = 0;
879                 if (flags & FAN_MARK_MOUNT)
880                         fsnotify_clear_vfsmount_marks_by_group(group);
881                 else
882                         fsnotify_clear_inode_marks_by_group(group);
883                 goto fput_and_out;
884         }
885
886         ret = fanotify_find_path(dfd, pathname, &path, flags);
887         if (ret)
888                 goto fput_and_out;
889
890         /* inode held in place by reference to path; group by fget on fd */
891         if (!(flags & FAN_MARK_MOUNT))
892                 inode = path.dentry->d_inode;
893         else
894                 mnt = path.mnt;
895
896         /* create/update an inode mark */
897         switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE)) {
898         case FAN_MARK_ADD:
899                 if (flags & FAN_MARK_MOUNT)
900                         ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
901                 else
902                         ret = fanotify_add_inode_mark(group, inode, mask, flags);
903                 break;
904         case FAN_MARK_REMOVE:
905                 if (flags & FAN_MARK_MOUNT)
906                         ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
907                 else
908                         ret = fanotify_remove_inode_mark(group, inode, mask, flags);
909                 break;
910         default:
911                 ret = -EINVAL;
912         }
913
914         path_put(&path);
915 fput_and_out:
916         fdput(f);
917         return ret;
918 }
919
920 #ifdef CONFIG_COMPAT
921 COMPAT_SYSCALL_DEFINE6(fanotify_mark,
922                                 int, fanotify_fd, unsigned int, flags,
923                                 __u32, mask0, __u32, mask1, int, dfd,
924                                 const char  __user *, pathname)
925 {
926         return sys_fanotify_mark(fanotify_fd, flags,
927 #ifdef __BIG_ENDIAN
928                                 ((__u64)mask0 << 32) | mask1,
929 #else
930                                 ((__u64)mask1 << 32) | mask0,
931 #endif
932                                  dfd, pathname);
933 }
934 #endif
935
936 /*
937  * fanotify_user_setup - Our initialization function.  Note that we cannot return
938  * error because we have compiled-in VFS hooks.  So an (unlikely) failure here
939  * must result in panic().
940  */
941 static int __init fanotify_user_setup(void)
942 {
943         fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
944         fanotify_event_cachep = KMEM_CACHE(fanotify_event_info, SLAB_PANIC);
945 #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
946         fanotify_perm_event_cachep = KMEM_CACHE(fanotify_perm_event_info,
947                                                 SLAB_PANIC);
948 #endif
949
950         return 0;
951 }
952 device_initcall(fanotify_user_setup);