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