fanotify: only destroy mark when both mask and ignored_mask are cleared
[deliverable/linux.git] / fs / notify / fanotify / fanotify_user.c
CommitLineData
33d3dfff 1#include <linux/fanotify.h>
11637e4b 2#include <linux/fcntl.h>
2a3edf86 3#include <linux/file.h>
11637e4b 4#include <linux/fs.h>
52c923dd 5#include <linux/anon_inodes.h>
11637e4b 6#include <linux/fsnotify_backend.h>
2a3edf86 7#include <linux/init.h>
a1014f10 8#include <linux/mount.h>
2a3edf86 9#include <linux/namei.h>
a1014f10 10#include <linux/poll.h>
11637e4b
EP
11#include <linux/security.h>
12#include <linux/syscalls.h>
e4e047a2 13#include <linux/slab.h>
2a3edf86 14#include <linux/types.h>
a1014f10 15#include <linux/uaccess.h>
91c2e0bc 16#include <linux/compat.h>
a1014f10
EP
17
18#include <asm/ioctls.h>
11637e4b 19
c63181e6 20#include "../../mount.h"
be77196b 21#include "../fdinfo.h"
7053aee2 22#include "fanotify.h"
c63181e6 23
2529a0df 24#define FANOTIFY_DEFAULT_MAX_EVENTS 16384
e7099d8a 25#define FANOTIFY_DEFAULT_MAX_MARKS 8192
4afeff85 26#define FANOTIFY_DEFAULT_MAX_LISTENERS 128
2529a0df 27
48149e9d
HS
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
33d3dfff 41extern const struct fsnotify_ops fanotify_fsnotify_ops;
11637e4b 42
2a3edf86 43static struct kmem_cache *fanotify_mark_cache __read_mostly;
7053aee2 44struct kmem_cache *fanotify_event_cachep __read_mostly;
f083441b 45struct kmem_cache *fanotify_perm_event_cachep __read_mostly;
2a3edf86 46
a1014f10
EP
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 */
54static 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 */
8ba8fa91 69 return fsnotify_remove_first_event(group);
a1014f10
EP
70}
71
352e3b24 72static int create_fd(struct fsnotify_group *group,
7053aee2
JK
73 struct fanotify_event_info *event,
74 struct file **file)
a1014f10
EP
75{
76 int client_fd;
a1014f10
EP
77 struct file *new_file;
78
22aa425d 79 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
a1014f10 80
0b37e097 81 client_fd = get_unused_fd_flags(group->fanotify_data.f_flags);
a1014f10
EP
82 if (client_fd < 0)
83 return client_fd;
84
a1014f10
EP
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 */
a1014f10
EP
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 */
765927b2
AV
91 if (event->path.dentry && event->path.mnt)
92 new_file = dentry_open(&event->path,
80af2588 93 group->fanotify_data.f_flags | FMODE_NONOTIFY,
a1014f10
EP
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 {
352e3b24 108 *file = new_file;
a1014f10
EP
109 }
110
22aa425d 111 return client_fd;
a1014f10
EP
112}
113
ecf6f5e7 114static int fill_event_metadata(struct fsnotify_group *group,
7053aee2
JK
115 struct fanotify_event_metadata *metadata,
116 struct fsnotify_event *fsn_event,
117 struct file **file)
a1014f10 118{
fdbf3cee 119 int ret = 0;
7053aee2 120 struct fanotify_event_info *event;
fdbf3cee 121
a1014f10 122 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
7053aee2 123 group, metadata, fsn_event);
a1014f10 124
352e3b24 125 *file = NULL;
7053aee2 126 event = container_of(fsn_event, struct fanotify_event_info, fse);
a1014f10 127 metadata->event_len = FAN_EVENT_METADATA_LEN;
7d131623 128 metadata->metadata_len = FAN_EVENT_METADATA_LEN;
a1014f10 129 metadata->vers = FANOTIFY_METADATA_VERSION;
de1e0c40 130 metadata->reserved = 0;
7053aee2 131 metadata->mask = fsn_event->mask & FAN_ALL_OUTGOING_EVENTS;
32c32632 132 metadata->pid = pid_vnr(event->tgid);
7053aee2 133 if (unlikely(fsn_event->mask & FAN_Q_OVERFLOW))
fdbf3cee
LS
134 metadata->fd = FAN_NOFD;
135 else {
352e3b24 136 metadata->fd = create_fd(group, event, file);
fdbf3cee
LS
137 if (metadata->fd < 0)
138 ret = metadata->fd;
139 }
a1014f10 140
fdbf3cee 141 return ret;
a1014f10
EP
142}
143
b2d87909 144#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
f083441b
JK
145static struct fanotify_perm_event_info *dequeue_event(
146 struct fsnotify_group *group, int fd)
b2d87909 147{
f083441b 148 struct fanotify_perm_event_info *event, *return_e = NULL;
b2d87909 149
9573f793 150 spin_lock(&group->fanotify_data.access_lock);
f083441b
JK
151 list_for_each_entry(event, &group->fanotify_data.access_list,
152 fae.fse.list) {
153 if (event->fd != fd)
b2d87909
EP
154 continue;
155
f083441b
JK
156 list_del_init(&event->fae.fse.list);
157 return_e = event;
b2d87909
EP
158 break;
159 }
9573f793 160 spin_unlock(&group->fanotify_data.access_lock);
b2d87909 161
f083441b 162 pr_debug("%s: found return_re=%p\n", __func__, return_e);
b2d87909 163
f083441b 164 return return_e;
b2d87909
EP
165}
166
167static int process_access_response(struct fsnotify_group *group,
168 struct fanotify_response *response_struct)
169{
f083441b
JK
170 struct fanotify_perm_event_info *event;
171 int fd = response_struct->fd;
172 int response = response_struct->response;
b2d87909
EP
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
25985edc 178 * userspace can send a valid response or we will clean it up after the
b2d87909
EP
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
f083441b
JK
192 event = dequeue_event(group, fd);
193 if (!event)
b2d87909
EP
194 return -ENOENT;
195
f083441b 196 event->response = response;
b2d87909
EP
197 wake_up(&group->fanotify_data.access_waitq);
198
b2d87909
EP
199 return 0;
200}
b2d87909
EP
201#endif
202
a1014f10
EP
203static 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;
352e3b24 208 struct file *f;
b2d87909 209 int fd, ret;
a1014f10
EP
210
211 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
212
352e3b24 213 ret = fill_event_metadata(group, &fanotify_event_metadata, event, &f);
ecf6f5e7 214 if (ret < 0)
d507816b 215 return ret;
b2d87909 216
fdbf3cee 217 fd = fanotify_event_metadata.fd;
b2d87909 218 ret = -EFAULT;
7d131623
EP
219 if (copy_to_user(buf, &fanotify_event_metadata,
220 fanotify_event_metadata.event_len))
352e3b24
AV
221 goto out_close_fd;
222
f083441b 223#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
d507816b
JK
224 if (event->mask & FAN_ALL_PERM_EVENTS)
225 FANOTIFY_PE(event)->fd = fd;
f083441b 226#endif
a1014f10 227
3587b1b0
AV
228 if (fd != FAN_NOFD)
229 fd_install(fd, f);
7d131623 230 return fanotify_event_metadata.event_len;
b2d87909 231
b2d87909 232out_close_fd:
352e3b24
AV
233 if (fd != FAN_NOFD) {
234 put_unused_fd(fd);
235 fput(f);
236 }
b2d87909 237 return ret;
a1014f10
EP
238}
239
240/* intofiy userspace file descriptor functions */
241static 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
255static 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;
536ebe9c 262 DEFINE_WAIT_FUNC(wait, woken_wake_function);
a1014f10
EP
263
264 start = buf;
265 group = file->private_data;
266
267 pr_debug("%s: group=%p\n", __func__, group);
268
536ebe9c 269 add_wait_queue(&group->notification_waitq, &wait);
a1014f10 270 while (1) {
a1014f10
EP
271 mutex_lock(&group->notification_mutex);
272 kevent = get_one_event(group, count);
273 mutex_unlock(&group->notification_mutex);
274
d8aaab4f 275 if (IS_ERR(kevent)) {
a1014f10 276 ret = PTR_ERR(kevent);
d8aaab4f
JK
277 break;
278 }
279
280 if (!kevent) {
281 ret = -EAGAIN;
282 if (file->f_flags & O_NONBLOCK)
a1014f10 283 break;
d8aaab4f
JK
284
285 ret = -ERESTARTSYS;
286 if (signal_pending(current))
287 break;
288
289 if (start != buf)
a1014f10 290 break;
536ebe9c
PZ
291
292 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
a1014f10
EP
293 continue;
294 }
295
d8aaab4f
JK
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 */
d507816b 301 if (!(kevent->mask & FAN_ALL_PERM_EVENTS)) {
d8aaab4f 302 fsnotify_destroy_event(group, kevent);
d507816b
JK
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 }
d8aaab4f
JK
318 buf += ret;
319 count -= ret;
a1014f10 320 }
536ebe9c 321 remove_wait_queue(&group->notification_waitq, &wait);
a1014f10 322
a1014f10
EP
323 if (start != buf && ret != -EFAULT)
324 ret = buf - start;
325 return ret;
326}
327
b2d87909
EP
328static 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
52c923dd
EP
355static int fanotify_release(struct inode *ignored, struct file *file)
356{
357 struct fsnotify_group *group = file->private_data;
52c923dd 358
2eebf582 359#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
f083441b 360 struct fanotify_perm_event_info *event, *next;
19ba54f4 361
5838d444
JK
362 /*
363 * There may be still new events arriving in the notification queue
364 * but since userspace cannot use fanotify fd anymore, no event can
365 * enter or leave access_list by now.
366 */
9573f793 367 spin_lock(&group->fanotify_data.access_lock);
2eebf582 368
09e5f14e 369 atomic_inc(&group->fanotify_data.bypass_perm);
2eebf582 370
f083441b
JK
371 list_for_each_entry_safe(event, next, &group->fanotify_data.access_list,
372 fae.fse.list) {
373 pr_debug("%s: found group=%p event=%p\n", __func__, group,
374 event);
2eebf582 375
f083441b
JK
376 list_del_init(&event->fae.fse.list);
377 event->response = FAN_ALLOW;
2eebf582 378 }
9573f793 379 spin_unlock(&group->fanotify_data.access_lock);
2eebf582 380
5838d444
JK
381 /*
382 * Since bypass_perm is set, newly queued events will not wait for
383 * access response. Wake up the already sleeping ones now.
384 * synchronize_srcu() in fsnotify_destroy_group() will wait for all
385 * processes sleeping in fanotify_handle_event() waiting for access
386 * response and thus also for all permission events to be freed.
387 */
2eebf582
EP
388 wake_up(&group->fanotify_data.access_waitq);
389#endif
0a6b6bd5 390
52c923dd 391 /* matches the fanotify_init->fsnotify_alloc_group */
d8153d4d 392 fsnotify_destroy_group(group);
52c923dd
EP
393
394 return 0;
395}
396
a1014f10
EP
397static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
398{
399 struct fsnotify_group *group;
7053aee2 400 struct fsnotify_event *fsn_event;
a1014f10
EP
401 void __user *p;
402 int ret = -ENOTTY;
403 size_t send_len = 0;
404
405 group = file->private_data;
406
407 p = (void __user *) arg;
408
409 switch (cmd) {
410 case FIONREAD:
411 mutex_lock(&group->notification_mutex);
7053aee2 412 list_for_each_entry(fsn_event, &group->notification_list, list)
a1014f10
EP
413 send_len += FAN_EVENT_METADATA_LEN;
414 mutex_unlock(&group->notification_mutex);
415 ret = put_user(send_len, (int __user *) p);
416 break;
417 }
418
419 return ret;
420}
421
52c923dd 422static const struct file_operations fanotify_fops = {
be77196b 423 .show_fdinfo = fanotify_show_fdinfo,
a1014f10
EP
424 .poll = fanotify_poll,
425 .read = fanotify_read,
b2d87909 426 .write = fanotify_write,
52c923dd
EP
427 .fasync = NULL,
428 .release = fanotify_release,
a1014f10
EP
429 .unlocked_ioctl = fanotify_ioctl,
430 .compat_ioctl = fanotify_ioctl,
6038f373 431 .llseek = noop_llseek,
52c923dd
EP
432};
433
2a3edf86
EP
434static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
435{
436 kmem_cache_free(fanotify_mark_cache, fsn_mark);
437}
438
439static int fanotify_find_path(int dfd, const char __user *filename,
440 struct path *path, unsigned int flags)
441{
442 int ret;
443
444 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
445 dfd, filename, flags);
446
447 if (filename == NULL) {
2903ff01 448 struct fd f = fdget(dfd);
2a3edf86
EP
449
450 ret = -EBADF;
2903ff01 451 if (!f.file)
2a3edf86
EP
452 goto out;
453
454 ret = -ENOTDIR;
455 if ((flags & FAN_MARK_ONLYDIR) &&
496ad9aa 456 !(S_ISDIR(file_inode(f.file)->i_mode))) {
2903ff01 457 fdput(f);
2a3edf86
EP
458 goto out;
459 }
460
2903ff01 461 *path = f.file->f_path;
2a3edf86 462 path_get(path);
2903ff01 463 fdput(f);
2a3edf86
EP
464 } else {
465 unsigned int lookup_flags = 0;
466
467 if (!(flags & FAN_MARK_DONT_FOLLOW))
468 lookup_flags |= LOOKUP_FOLLOW;
469 if (flags & FAN_MARK_ONLYDIR)
470 lookup_flags |= LOOKUP_DIRECTORY;
471
472 ret = user_path_at(dfd, filename, lookup_flags, path);
473 if (ret)
474 goto out;
475 }
476
477 /* you can only watch an inode if you have read permissions on it */
478 ret = inode_permission(path->dentry->d_inode, MAY_READ);
479 if (ret)
480 path_put(path);
481out:
482 return ret;
483}
484
b9e4e3bd
EP
485static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
486 __u32 mask,
6dfbd149
LS
487 unsigned int flags,
488 int *destroy)
088b09b0
AG
489{
490 __u32 oldmask;
491
492 spin_lock(&fsn_mark->lock);
b9e4e3bd
EP
493 if (!(flags & FAN_MARK_IGNORED_MASK)) {
494 oldmask = fsn_mark->mask;
495 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask));
496 } else {
497 oldmask = fsn_mark->ignored_mask;
498 fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask));
499 }
a118449a 500 *destroy = !(fsn_mark->mask | fsn_mark->ignored_mask);
088b09b0
AG
501 spin_unlock(&fsn_mark->lock);
502
088b09b0
AG
503 return mask & oldmask;
504}
505
f3640192 506static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
b9e4e3bd
EP
507 struct vfsmount *mnt, __u32 mask,
508 unsigned int flags)
88826276
EP
509{
510 struct fsnotify_mark *fsn_mark = NULL;
088b09b0 511 __u32 removed;
6dfbd149 512 int destroy_mark;
88826276 513
7b18527c 514 mutex_lock(&group->mark_mutex);
f3640192 515 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
7b18527c
LS
516 if (!fsn_mark) {
517 mutex_unlock(&group->mark_mutex);
f3640192 518 return -ENOENT;
7b18527c 519 }
88826276 520
6dfbd149
LS
521 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
522 &destroy_mark);
523 if (destroy_mark)
7b18527c
LS
524 fsnotify_destroy_mark_locked(fsn_mark, group);
525 mutex_unlock(&group->mark_mutex);
6dfbd149 526
f3640192 527 fsnotify_put_mark(fsn_mark);
c63181e6 528 if (removed & real_mount(mnt)->mnt_fsnotify_mask)
f3640192
AG
529 fsnotify_recalc_vfsmount_mask(mnt);
530
531 return 0;
532}
2a3edf86 533
f3640192 534static int fanotify_remove_inode_mark(struct fsnotify_group *group,
b9e4e3bd
EP
535 struct inode *inode, __u32 mask,
536 unsigned int flags)
f3640192
AG
537{
538 struct fsnotify_mark *fsn_mark = NULL;
539 __u32 removed;
6dfbd149 540 int destroy_mark;
f3640192 541
7b18527c 542 mutex_lock(&group->mark_mutex);
f3640192 543 fsn_mark = fsnotify_find_inode_mark(group, inode);
7b18527c
LS
544 if (!fsn_mark) {
545 mutex_unlock(&group->mark_mutex);
88826276 546 return -ENOENT;
7b18527c 547 }
88826276 548
6dfbd149
LS
549 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
550 &destroy_mark);
551 if (destroy_mark)
7b18527c
LS
552 fsnotify_destroy_mark_locked(fsn_mark, group);
553 mutex_unlock(&group->mark_mutex);
554
5444e298 555 /* matches the fsnotify_find_inode_mark() */
2a3edf86 556 fsnotify_put_mark(fsn_mark);
f3640192
AG
557 if (removed & inode->i_fsnotify_mask)
558 fsnotify_recalc_inode_mask(inode);
088b09b0 559
2a3edf86
EP
560 return 0;
561}
562
b9e4e3bd
EP
563static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
564 __u32 mask,
565 unsigned int flags)
912ee394 566{
192ca4d1 567 __u32 oldmask = -1;
912ee394
AG
568
569 spin_lock(&fsn_mark->lock);
b9e4e3bd
EP
570 if (!(flags & FAN_MARK_IGNORED_MASK)) {
571 oldmask = fsn_mark->mask;
572 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask | mask));
573 } else {
192ca4d1
EP
574 __u32 tmask = fsn_mark->ignored_mask | mask;
575 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
c9778a98
EP
576 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
577 fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
b9e4e3bd 578 }
8fcd6528
EP
579
580 if (!(flags & FAN_MARK_ONDIR)) {
581 __u32 tmask = fsn_mark->ignored_mask | FAN_ONDIR;
582 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
583 }
584
912ee394
AG
585 spin_unlock(&fsn_mark->lock);
586
587 return mask & ~oldmask;
588}
589
5e9c070c
LS
590static struct fsnotify_mark *fanotify_add_new_mark(struct fsnotify_group *group,
591 struct inode *inode,
592 struct vfsmount *mnt)
593{
594 struct fsnotify_mark *mark;
595 int ret;
596
597 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
598 return ERR_PTR(-ENOSPC);
599
600 mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
601 if (!mark)
602 return ERR_PTR(-ENOMEM);
603
604 fsnotify_init_mark(mark, fanotify_free_mark);
605 ret = fsnotify_add_mark_locked(mark, group, inode, mnt, 0);
606 if (ret) {
607 fsnotify_put_mark(mark);
608 return ERR_PTR(ret);
609 }
610
611 return mark;
612}
613
614
52202dfb 615static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
b9e4e3bd
EP
616 struct vfsmount *mnt, __u32 mask,
617 unsigned int flags)
2a3edf86
EP
618{
619 struct fsnotify_mark *fsn_mark;
912ee394 620 __u32 added;
2a3edf86 621
7b18527c 622 mutex_lock(&group->mark_mutex);
88826276
EP
623 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
624 if (!fsn_mark) {
5e9c070c
LS
625 fsn_mark = fanotify_add_new_mark(group, NULL, mnt);
626 if (IS_ERR(fsn_mark)) {
7b18527c 627 mutex_unlock(&group->mark_mutex);
5e9c070c 628 return PTR_ERR(fsn_mark);
7b18527c 629 }
88826276 630 }
b9e4e3bd 631 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
7b18527c 632 mutex_unlock(&group->mark_mutex);
fa218ab9 633
c63181e6 634 if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
43709a28 635 fsnotify_recalc_vfsmount_mask(mnt);
5e9c070c 636
fa218ab9 637 fsnotify_put_mark(fsn_mark);
5e9c070c 638 return 0;
88826276
EP
639}
640
52202dfb 641static int fanotify_add_inode_mark(struct fsnotify_group *group,
b9e4e3bd
EP
642 struct inode *inode, __u32 mask,
643 unsigned int flags)
88826276
EP
644{
645 struct fsnotify_mark *fsn_mark;
912ee394 646 __u32 added;
88826276
EP
647
648 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
2a3edf86 649
5322a59f
EP
650 /*
651 * If some other task has this inode open for write we should not add
652 * an ignored mark, unless that ignored mark is supposed to survive
653 * modification changes anyway.
654 */
655 if ((flags & FAN_MARK_IGNORED_MASK) &&
656 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
657 (atomic_read(&inode->i_writecount) > 0))
658 return 0;
659
7b18527c 660 mutex_lock(&group->mark_mutex);
5444e298 661 fsn_mark = fsnotify_find_inode_mark(group, inode);
2a3edf86 662 if (!fsn_mark) {
5e9c070c
LS
663 fsn_mark = fanotify_add_new_mark(group, inode, NULL);
664 if (IS_ERR(fsn_mark)) {
7b18527c 665 mutex_unlock(&group->mark_mutex);
5e9c070c 666 return PTR_ERR(fsn_mark);
7b18527c 667 }
2a3edf86 668 }
b9e4e3bd 669 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
7b18527c 670 mutex_unlock(&group->mark_mutex);
fa218ab9 671
43709a28
EP
672 if (added & ~inode->i_fsnotify_mask)
673 fsnotify_recalc_inode_mask(inode);
5e9c070c 674
fa218ab9 675 fsnotify_put_mark(fsn_mark);
5e9c070c 676 return 0;
88826276 677}
2a3edf86 678
52c923dd 679/* fanotify syscalls */
08ae8938 680SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
11637e4b 681{
52c923dd
EP
682 struct fsnotify_group *group;
683 int f_flags, fd;
4afeff85 684 struct user_struct *user;
ff57cd58 685 struct fanotify_event_info *oevent;
52c923dd 686
08ae8938
EP
687 pr_debug("%s: flags=%d event_f_flags=%d\n",
688 __func__, flags, event_f_flags);
52c923dd 689
52c923dd 690 if (!capable(CAP_SYS_ADMIN))
a2f13ad0 691 return -EPERM;
52c923dd
EP
692
693 if (flags & ~FAN_ALL_INIT_FLAGS)
694 return -EINVAL;
695
48149e9d
HS
696 if (event_f_flags & ~FANOTIFY_INIT_ALL_EVENT_F_BITS)
697 return -EINVAL;
698
699 switch (event_f_flags & O_ACCMODE) {
700 case O_RDONLY:
701 case O_RDWR:
702 case O_WRONLY:
703 break;
704 default:
705 return -EINVAL;
706 }
707
4afeff85
EP
708 user = get_current_user();
709 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
710 free_uid(user);
711 return -EMFILE;
712 }
713
b2d87909 714 f_flags = O_RDWR | FMODE_NONOTIFY;
52c923dd
EP
715 if (flags & FAN_CLOEXEC)
716 f_flags |= O_CLOEXEC;
717 if (flags & FAN_NONBLOCK)
718 f_flags |= O_NONBLOCK;
719
720 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
721 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
26379198
EP
722 if (IS_ERR(group)) {
723 free_uid(user);
52c923dd 724 return PTR_ERR(group);
26379198 725 }
52c923dd 726
4afeff85
EP
727 group->fanotify_data.user = user;
728 atomic_inc(&user->fanotify_listeners);
729
f083441b 730 oevent = fanotify_alloc_event(NULL, FS_Q_OVERFLOW, NULL);
ff57cd58
JK
731 if (unlikely(!oevent)) {
732 fd = -ENOMEM;
733 goto out_destroy_group;
734 }
735 group->overflow_event = &oevent->fse;
ff57cd58 736
1e2ee49f
WW
737 if (force_o_largefile())
738 event_f_flags |= O_LARGEFILE;
80af2588 739 group->fanotify_data.f_flags = event_f_flags;
9e66e423 740#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
9573f793 741 spin_lock_init(&group->fanotify_data.access_lock);
9e66e423
EP
742 init_waitqueue_head(&group->fanotify_data.access_waitq);
743 INIT_LIST_HEAD(&group->fanotify_data.access_list);
09e5f14e 744 atomic_set(&group->fanotify_data.bypass_perm, 0);
9e66e423 745#endif
4231a235
EP
746 switch (flags & FAN_ALL_CLASS_BITS) {
747 case FAN_CLASS_NOTIF:
748 group->priority = FS_PRIO_0;
749 break;
750 case FAN_CLASS_CONTENT:
751 group->priority = FS_PRIO_1;
752 break;
753 case FAN_CLASS_PRE_CONTENT:
754 group->priority = FS_PRIO_2;
755 break;
756 default:
757 fd = -EINVAL;
d8153d4d 758 goto out_destroy_group;
4231a235 759 }
cb2d429f 760
5dd03f55
EP
761 if (flags & FAN_UNLIMITED_QUEUE) {
762 fd = -EPERM;
763 if (!capable(CAP_SYS_ADMIN))
d8153d4d 764 goto out_destroy_group;
5dd03f55
EP
765 group->max_events = UINT_MAX;
766 } else {
767 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
768 }
2529a0df 769
ac7e22dc
EP
770 if (flags & FAN_UNLIMITED_MARKS) {
771 fd = -EPERM;
772 if (!capable(CAP_SYS_ADMIN))
d8153d4d 773 goto out_destroy_group;
ac7e22dc
EP
774 group->fanotify_data.max_marks = UINT_MAX;
775 } else {
776 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
777 }
e7099d8a 778
52c923dd
EP
779 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
780 if (fd < 0)
d8153d4d 781 goto out_destroy_group;
52c923dd
EP
782
783 return fd;
784
d8153d4d
LS
785out_destroy_group:
786 fsnotify_destroy_group(group);
52c923dd 787 return fd;
11637e4b 788}
bbaa4168 789
4a0fd5bf
AV
790SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
791 __u64, mask, int, dfd,
792 const char __user *, pathname)
bbaa4168 793{
0ff21db9
EP
794 struct inode *inode = NULL;
795 struct vfsmount *mnt = NULL;
2a3edf86 796 struct fsnotify_group *group;
2903ff01 797 struct fd f;
2a3edf86 798 struct path path;
2903ff01 799 int ret;
2a3edf86
EP
800
801 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
802 __func__, fanotify_fd, flags, dfd, pathname, mask);
803
804 /* we only use the lower 32 bits as of right now. */
805 if (mask & ((__u64)0xffffffff << 32))
806 return -EINVAL;
807
88380fe6
AG
808 if (flags & ~FAN_ALL_MARK_FLAGS)
809 return -EINVAL;
4d92604c 810 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
1734dee4 811 case FAN_MARK_ADD: /* fallthrough */
88380fe6 812 case FAN_MARK_REMOVE:
1734dee4
LS
813 if (!mask)
814 return -EINVAL;
cc299a98 815 break;
4d92604c 816 case FAN_MARK_FLUSH:
cc299a98
HS
817 if (flags & ~(FAN_MARK_MOUNT | FAN_MARK_FLUSH))
818 return -EINVAL;
88380fe6
AG
819 break;
820 default:
821 return -EINVAL;
822 }
8fcd6528
EP
823
824 if (mask & FAN_ONDIR) {
825 flags |= FAN_MARK_ONDIR;
826 mask &= ~FAN_ONDIR;
827 }
828
b2d87909
EP
829#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
830 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
831#else
88380fe6 832 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
b2d87909 833#endif
2a3edf86
EP
834 return -EINVAL;
835
2903ff01
AV
836 f = fdget(fanotify_fd);
837 if (unlikely(!f.file))
2a3edf86
EP
838 return -EBADF;
839
840 /* verify that this is indeed an fanotify instance */
841 ret = -EINVAL;
2903ff01 842 if (unlikely(f.file->f_op != &fanotify_fops))
2a3edf86 843 goto fput_and_out;
2903ff01 844 group = f.file->private_data;
4231a235
EP
845
846 /*
847 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
848 * allowed to set permissions events.
849 */
850 ret = -EINVAL;
851 if (mask & FAN_ALL_PERM_EVENTS &&
852 group->priority == FS_PRIO_0)
853 goto fput_and_out;
2a3edf86 854
0a8dd2db
HS
855 if (flags & FAN_MARK_FLUSH) {
856 ret = 0;
857 if (flags & FAN_MARK_MOUNT)
858 fsnotify_clear_vfsmount_marks_by_group(group);
859 else
860 fsnotify_clear_inode_marks_by_group(group);
861 goto fput_and_out;
862 }
863
2a3edf86
EP
864 ret = fanotify_find_path(dfd, pathname, &path, flags);
865 if (ret)
866 goto fput_and_out;
867
868 /* inode held in place by reference to path; group by fget on fd */
eac8e9e8 869 if (!(flags & FAN_MARK_MOUNT))
0ff21db9
EP
870 inode = path.dentry->d_inode;
871 else
872 mnt = path.mnt;
2a3edf86
EP
873
874 /* create/update an inode mark */
0a8dd2db 875 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE)) {
c6223f46 876 case FAN_MARK_ADD:
eac8e9e8 877 if (flags & FAN_MARK_MOUNT)
b9e4e3bd 878 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
0ff21db9 879 else
b9e4e3bd 880 ret = fanotify_add_inode_mark(group, inode, mask, flags);
c6223f46
AG
881 break;
882 case FAN_MARK_REMOVE:
f3640192 883 if (flags & FAN_MARK_MOUNT)
b9e4e3bd 884 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
f3640192 885 else
b9e4e3bd 886 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
c6223f46
AG
887 break;
888 default:
889 ret = -EINVAL;
890 }
2a3edf86
EP
891
892 path_put(&path);
893fput_and_out:
2903ff01 894 fdput(f);
2a3edf86
EP
895 return ret;
896}
897
91c2e0bc
AV
898#ifdef CONFIG_COMPAT
899COMPAT_SYSCALL_DEFINE6(fanotify_mark,
900 int, fanotify_fd, unsigned int, flags,
901 __u32, mask0, __u32, mask1, int, dfd,
902 const char __user *, pathname)
903{
904 return sys_fanotify_mark(fanotify_fd, flags,
905#ifdef __BIG_ENDIAN
91c2e0bc 906 ((__u64)mask0 << 32) | mask1,
592f6b84
HC
907#else
908 ((__u64)mask1 << 32) | mask0,
91c2e0bc
AV
909#endif
910 dfd, pathname);
911}
912#endif
913
2a3edf86 914/*
ae0e47f0 915 * fanotify_user_setup - Our initialization function. Note that we cannot return
2a3edf86
EP
916 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
917 * must result in panic().
918 */
919static int __init fanotify_user_setup(void)
920{
921 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
7053aee2 922 fanotify_event_cachep = KMEM_CACHE(fanotify_event_info, SLAB_PANIC);
f083441b
JK
923#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
924 fanotify_perm_event_cachep = KMEM_CACHE(fanotify_perm_event_info,
925 SLAB_PANIC);
926#endif
2a3edf86
EP
927
928 return 0;
bbaa4168 929}
2a3edf86 930device_initcall(fanotify_user_setup);
This page took 0.301745 seconds and 5 git commands to generate.