blob: 4e1d8ec77b04017aa4ecfcb2ca45bdc9943221a6 [file] [log] [blame]
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -05001#include <linux/fanotify.h>
Eric Paris11637e42009-12-17 21:24:25 -05002#include <linux/fcntl.h>
Eric Paris2a3edf82009-12-17 21:24:26 -05003#include <linux/file.h>
Eric Paris11637e42009-12-17 21:24:25 -05004#include <linux/fs.h>
Eric Paris52c923d2009-12-17 21:24:26 -05005#include <linux/anon_inodes.h>
Eric Paris11637e42009-12-17 21:24:25 -05006#include <linux/fsnotify_backend.h>
Eric Paris2a3edf82009-12-17 21:24:26 -05007#include <linux/init.h>
Eric Parisa1014f12009-12-17 21:24:26 -05008#include <linux/mount.h>
Eric Paris2a3edf82009-12-17 21:24:26 -05009#include <linux/namei.h>
Eric Parisa1014f12009-12-17 21:24:26 -050010#include <linux/poll.h>
Eric Paris11637e42009-12-17 21:24:25 -050011#include <linux/security.h>
12#include <linux/syscalls.h>
Tejun Heoe4e047a2010-05-20 01:36:28 +100013#include <linux/slab.h>
Eric Paris2a3edf82009-12-17 21:24:26 -050014#include <linux/types.h>
Eric Parisa1014f12009-12-17 21:24:26 -050015#include <linux/uaccess.h>
Al Viro91c2e0b2013-03-05 20:10:59 -050016#include <linux/compat.h>
Eric Parisa1014f12009-12-17 21:24:26 -050017
18#include <asm/ioctls.h>
Eric Paris11637e42009-12-17 21:24:25 -050019
Al Viroc63181e2011-11-25 02:35:16 -050020#include "../../mount.h"
Cyrill Gorcunovbe771962012-12-17 16:05:12 -080021#include "../fdinfo.h"
Al Viroc63181e2011-11-25 02:35:16 -050022
Eric Paris2529a0d2010-10-28 17:21:57 -040023#define FANOTIFY_DEFAULT_MAX_EVENTS 16384
Eric Parise7099d82010-10-28 17:21:57 -040024#define FANOTIFY_DEFAULT_MAX_MARKS 8192
Eric Paris4afeff82010-10-28 17:21:58 -040025#define FANOTIFY_DEFAULT_MAX_LISTENERS 128
Eric Paris2529a0d2010-10-28 17:21:57 -040026
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -050027extern const struct fsnotify_ops fanotify_fsnotify_ops;
Eric Paris11637e42009-12-17 21:24:25 -050028
Eric Paris2a3edf82009-12-17 21:24:26 -050029static struct kmem_cache *fanotify_mark_cache __read_mostly;
Eric Parisb2d87902009-12-17 21:24:34 -050030static struct kmem_cache *fanotify_response_event_cache __read_mostly;
31
32struct fanotify_response_event {
33 struct list_head list;
34 __s32 fd;
35 struct fsnotify_event *event;
36};
Eric Paris2a3edf82009-12-17 21:24:26 -050037
Eric Parisa1014f12009-12-17 21:24:26 -050038/*
39 * Get an fsnotify notification event if one exists and is small
40 * enough to fit in "count". Return an error pointer if the count
41 * is not large enough.
42 *
43 * Called with the group->notification_mutex held.
44 */
45static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
46 size_t count)
47{
48 BUG_ON(!mutex_is_locked(&group->notification_mutex));
49
50 pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
51
52 if (fsnotify_notify_queue_is_empty(group))
53 return NULL;
54
55 if (FAN_EVENT_METADATA_LEN > count)
56 return ERR_PTR(-EINVAL);
57
58 /* held the notification_mutex the whole time, so this is the
59 * same event we peeked above */
60 return fsnotify_remove_notify_event(group);
61}
62
Al Viro352e3b22012-08-19 12:30:45 -040063static int create_fd(struct fsnotify_group *group,
64 struct fsnotify_event *event,
65 struct file **file)
Eric Parisa1014f12009-12-17 21:24:26 -050066{
67 int client_fd;
Eric Parisa1014f12009-12-17 21:24:26 -050068 struct file *new_file;
69
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -050070 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
Eric Parisa1014f12009-12-17 21:24:26 -050071
72 client_fd = get_unused_fd();
73 if (client_fd < 0)
74 return client_fd;
75
Linus Torvalds20696012010-08-12 14:23:04 -070076 if (event->data_type != FSNOTIFY_EVENT_PATH) {
Eric Parisa1014f12009-12-17 21:24:26 -050077 WARN_ON(1);
78 put_unused_fd(client_fd);
79 return -EINVAL;
80 }
81
82 /*
83 * we need a new file handle for the userspace program so it can read even if it was
84 * originally opened O_WRONLY.
85 */
Eric Parisa1014f12009-12-17 21:24:26 -050086 /* it's possible this event was an overflow event. in that case dentry and mnt
87 * are NULL; That's fine, just don't call dentry open */
Al Viro765927b2012-06-26 21:58:53 +040088 if (event->path.dentry && event->path.mnt)
89 new_file = dentry_open(&event->path,
Eric Paris80af2582010-07-28 10:18:37 -040090 group->fanotify_data.f_flags | FMODE_NONOTIFY,
Eric Parisa1014f12009-12-17 21:24:26 -050091 current_cred());
92 else
93 new_file = ERR_PTR(-EOVERFLOW);
94 if (IS_ERR(new_file)) {
95 /*
96 * we still send an event even if we can't open the file. this
97 * can happen when say tasks are gone and we try to open their
98 * /proc files or we try to open a WRONLY file like in sysfs
99 * we just send the errno to userspace since there isn't much
100 * else we can do.
101 */
102 put_unused_fd(client_fd);
103 client_fd = PTR_ERR(new_file);
104 } else {
Al Viro352e3b22012-08-19 12:30:45 -0400105 *file = new_file;
Eric Parisa1014f12009-12-17 21:24:26 -0500106 }
107
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -0500108 return client_fd;
Eric Parisa1014f12009-12-17 21:24:26 -0500109}
110
Eric Parisecf6f5e2010-11-08 18:08:14 -0500111static int fill_event_metadata(struct fsnotify_group *group,
Eric Parisa1014f12009-12-17 21:24:26 -0500112 struct fanotify_event_metadata *metadata,
Al Viro352e3b22012-08-19 12:30:45 -0400113 struct fsnotify_event *event,
114 struct file **file)
Eric Parisa1014f12009-12-17 21:24:26 -0500115{
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100116 int ret = 0;
117
Eric Parisa1014f12009-12-17 21:24:26 -0500118 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
119 group, metadata, event);
120
Al Viro352e3b22012-08-19 12:30:45 -0400121 *file = NULL;
Eric Parisa1014f12009-12-17 21:24:26 -0500122 metadata->event_len = FAN_EVENT_METADATA_LEN;
Eric Paris7d131622010-12-07 15:27:57 -0500123 metadata->metadata_len = FAN_EVENT_METADATA_LEN;
Eric Parisa1014f12009-12-17 21:24:26 -0500124 metadata->vers = FANOTIFY_METADATA_VERSION;
Dan Carpenterde1e0c42013-07-08 15:59:40 -0700125 metadata->reserved = 0;
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -0500126 metadata->mask = event->mask & FAN_ALL_OUTGOING_EVENTS;
Andreas Gruenbacher32c32632009-12-17 21:24:27 -0500127 metadata->pid = pid_vnr(event->tgid);
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100128 if (unlikely(event->mask & FAN_Q_OVERFLOW))
129 metadata->fd = FAN_NOFD;
130 else {
Al Viro352e3b22012-08-19 12:30:45 -0400131 metadata->fd = create_fd(group, event, file);
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100132 if (metadata->fd < 0)
133 ret = metadata->fd;
134 }
Eric Parisa1014f12009-12-17 21:24:26 -0500135
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100136 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500137}
138
Eric Parisb2d87902009-12-17 21:24:34 -0500139#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
140static struct fanotify_response_event *dequeue_re(struct fsnotify_group *group,
141 __s32 fd)
142{
143 struct fanotify_response_event *re, *return_re = NULL;
144
145 mutex_lock(&group->fanotify_data.access_mutex);
146 list_for_each_entry(re, &group->fanotify_data.access_list, list) {
147 if (re->fd != fd)
148 continue;
149
150 list_del_init(&re->list);
151 return_re = re;
152 break;
153 }
154 mutex_unlock(&group->fanotify_data.access_mutex);
155
156 pr_debug("%s: found return_re=%p\n", __func__, return_re);
157
158 return return_re;
159}
160
161static int process_access_response(struct fsnotify_group *group,
162 struct fanotify_response *response_struct)
163{
164 struct fanotify_response_event *re;
165 __s32 fd = response_struct->fd;
166 __u32 response = response_struct->response;
167
168 pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group,
169 fd, response);
170 /*
171 * make sure the response is valid, if invalid we do nothing and either
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300172 * userspace can send a valid response or we will clean it up after the
Eric Parisb2d87902009-12-17 21:24:34 -0500173 * timeout
174 */
175 switch (response) {
176 case FAN_ALLOW:
177 case FAN_DENY:
178 break;
179 default:
180 return -EINVAL;
181 }
182
183 if (fd < 0)
184 return -EINVAL;
185
186 re = dequeue_re(group, fd);
187 if (!re)
188 return -ENOENT;
189
190 re->event->response = response;
191
192 wake_up(&group->fanotify_data.access_waitq);
193
194 kmem_cache_free(fanotify_response_event_cache, re);
195
196 return 0;
197}
198
199static int prepare_for_access_response(struct fsnotify_group *group,
200 struct fsnotify_event *event,
201 __s32 fd)
202{
203 struct fanotify_response_event *re;
204
205 if (!(event->mask & FAN_ALL_PERM_EVENTS))
206 return 0;
207
208 re = kmem_cache_alloc(fanotify_response_event_cache, GFP_KERNEL);
209 if (!re)
210 return -ENOMEM;
211
212 re->event = event;
213 re->fd = fd;
214
215 mutex_lock(&group->fanotify_data.access_mutex);
Eric Paris2eebf582010-08-18 12:25:50 -0400216
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100217 if (atomic_read(&group->fanotify_data.bypass_perm)) {
Eric Paris2eebf582010-08-18 12:25:50 -0400218 mutex_unlock(&group->fanotify_data.access_mutex);
219 kmem_cache_free(fanotify_response_event_cache, re);
220 event->response = FAN_ALLOW;
221 return 0;
222 }
223
Eric Parisb2d87902009-12-17 21:24:34 -0500224 list_add_tail(&re->list, &group->fanotify_data.access_list);
225 mutex_unlock(&group->fanotify_data.access_mutex);
226
227 return 0;
228}
229
Eric Parisb2d87902009-12-17 21:24:34 -0500230#else
231static int prepare_for_access_response(struct fsnotify_group *group,
232 struct fsnotify_event *event,
233 __s32 fd)
234{
235 return 0;
236}
237
Eric Parisb2d87902009-12-17 21:24:34 -0500238#endif
239
Eric Parisa1014f12009-12-17 21:24:26 -0500240static ssize_t copy_event_to_user(struct fsnotify_group *group,
241 struct fsnotify_event *event,
242 char __user *buf)
243{
244 struct fanotify_event_metadata fanotify_event_metadata;
Al Viro352e3b22012-08-19 12:30:45 -0400245 struct file *f;
Eric Parisb2d87902009-12-17 21:24:34 -0500246 int fd, ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500247
248 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
249
Al Viro352e3b22012-08-19 12:30:45 -0400250 ret = fill_event_metadata(group, &fanotify_event_metadata, event, &f);
Eric Parisecf6f5e2010-11-08 18:08:14 -0500251 if (ret < 0)
252 goto out;
Eric Parisa1014f12009-12-17 21:24:26 -0500253
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100254 fd = fanotify_event_metadata.fd;
Al Viro352e3b22012-08-19 12:30:45 -0400255 ret = -EFAULT;
256 if (copy_to_user(buf, &fanotify_event_metadata,
257 fanotify_event_metadata.event_len))
258 goto out_close_fd;
259
Eric Parisb2d87902009-12-17 21:24:34 -0500260 ret = prepare_for_access_response(group, event, fd);
261 if (ret)
262 goto out_close_fd;
263
Al Viro3587b1b2012-11-18 19:19:00 +0000264 if (fd != FAN_NOFD)
265 fd_install(fd, f);
Eric Paris7d131622010-12-07 15:27:57 -0500266 return fanotify_event_metadata.event_len;
Eric Parisb2d87902009-12-17 21:24:34 -0500267
Eric Parisb2d87902009-12-17 21:24:34 -0500268out_close_fd:
Al Viro352e3b22012-08-19 12:30:45 -0400269 if (fd != FAN_NOFD) {
270 put_unused_fd(fd);
271 fput(f);
272 }
Eric Parisecf6f5e2010-11-08 18:08:14 -0500273out:
274#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
275 if (event->mask & FAN_ALL_PERM_EVENTS) {
276 event->response = FAN_DENY;
277 wake_up(&group->fanotify_data.access_waitq);
278 }
279#endif
Eric Parisb2d87902009-12-17 21:24:34 -0500280 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500281}
282
283/* intofiy userspace file descriptor functions */
284static unsigned int fanotify_poll(struct file *file, poll_table *wait)
285{
286 struct fsnotify_group *group = file->private_data;
287 int ret = 0;
288
289 poll_wait(file, &group->notification_waitq, wait);
290 mutex_lock(&group->notification_mutex);
291 if (!fsnotify_notify_queue_is_empty(group))
292 ret = POLLIN | POLLRDNORM;
293 mutex_unlock(&group->notification_mutex);
294
295 return ret;
296}
297
298static ssize_t fanotify_read(struct file *file, char __user *buf,
299 size_t count, loff_t *pos)
300{
301 struct fsnotify_group *group;
302 struct fsnotify_event *kevent;
303 char __user *start;
304 int ret;
305 DEFINE_WAIT(wait);
306
307 start = buf;
308 group = file->private_data;
309
310 pr_debug("%s: group=%p\n", __func__, group);
311
312 while (1) {
313 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
314
315 mutex_lock(&group->notification_mutex);
316 kevent = get_one_event(group, count);
317 mutex_unlock(&group->notification_mutex);
318
319 if (kevent) {
320 ret = PTR_ERR(kevent);
321 if (IS_ERR(kevent))
322 break;
323 ret = copy_event_to_user(group, kevent, buf);
324 fsnotify_put_event(kevent);
325 if (ret < 0)
326 break;
327 buf += ret;
328 count -= ret;
329 continue;
330 }
331
332 ret = -EAGAIN;
333 if (file->f_flags & O_NONBLOCK)
334 break;
Lino Sanfilippo1a5cea72010-10-29 12:06:42 +0200335 ret = -ERESTARTSYS;
Eric Parisa1014f12009-12-17 21:24:26 -0500336 if (signal_pending(current))
337 break;
338
339 if (start != buf)
340 break;
341
342 schedule();
343 }
344
345 finish_wait(&group->notification_waitq, &wait);
346 if (start != buf && ret != -EFAULT)
347 ret = buf - start;
348 return ret;
349}
350
Eric Parisb2d87902009-12-17 21:24:34 -0500351static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
352{
353#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
354 struct fanotify_response response = { .fd = -1, .response = -1 };
355 struct fsnotify_group *group;
356 int ret;
357
358 group = file->private_data;
359
360 if (count > sizeof(response))
361 count = sizeof(response);
362
363 pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
364
365 if (copy_from_user(&response, buf, count))
366 return -EFAULT;
367
368 ret = process_access_response(group, &response);
369 if (ret < 0)
370 count = ret;
371
372 return count;
373#else
374 return -EINVAL;
375#endif
376}
377
Eric Paris52c923d2009-12-17 21:24:26 -0500378static int fanotify_release(struct inode *ignored, struct file *file)
379{
380 struct fsnotify_group *group = file->private_data;
Eric Paris52c923d2009-12-17 21:24:26 -0500381
Eric Paris2eebf582010-08-18 12:25:50 -0400382#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Andrew Morton19ba54f2010-10-28 17:21:59 -0400383 struct fanotify_response_event *re, *lre;
384
Eric Paris2eebf582010-08-18 12:25:50 -0400385 mutex_lock(&group->fanotify_data.access_mutex);
386
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100387 atomic_inc(&group->fanotify_data.bypass_perm);
Eric Paris2eebf582010-08-18 12:25:50 -0400388
389 list_for_each_entry_safe(re, lre, &group->fanotify_data.access_list, list) {
390 pr_debug("%s: found group=%p re=%p event=%p\n", __func__, group,
391 re, re->event);
392
393 list_del_init(&re->list);
394 re->event->response = FAN_ALLOW;
395
396 kmem_cache_free(fanotify_response_event_cache, re);
397 }
398 mutex_unlock(&group->fanotify_data.access_mutex);
399
400 wake_up(&group->fanotify_data.access_waitq);
401#endif
Eric Paris0a6b6bd2011-10-14 17:43:39 -0400402
Eric Paris52c923d2009-12-17 21:24:26 -0500403 /* matches the fanotify_init->fsnotify_alloc_group */
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200404 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500405
406 return 0;
407}
408
Eric Parisa1014f12009-12-17 21:24:26 -0500409static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
410{
411 struct fsnotify_group *group;
412 struct fsnotify_event_holder *holder;
413 void __user *p;
414 int ret = -ENOTTY;
415 size_t send_len = 0;
416
417 group = file->private_data;
418
419 p = (void __user *) arg;
420
421 switch (cmd) {
422 case FIONREAD:
423 mutex_lock(&group->notification_mutex);
424 list_for_each_entry(holder, &group->notification_list, event_list)
425 send_len += FAN_EVENT_METADATA_LEN;
426 mutex_unlock(&group->notification_mutex);
427 ret = put_user(send_len, (int __user *) p);
428 break;
429 }
430
431 return ret;
432}
433
Eric Paris52c923d2009-12-17 21:24:26 -0500434static const struct file_operations fanotify_fops = {
Cyrill Gorcunovbe771962012-12-17 16:05:12 -0800435 .show_fdinfo = fanotify_show_fdinfo,
Eric Parisa1014f12009-12-17 21:24:26 -0500436 .poll = fanotify_poll,
437 .read = fanotify_read,
Eric Parisb2d87902009-12-17 21:24:34 -0500438 .write = fanotify_write,
Eric Paris52c923d2009-12-17 21:24:26 -0500439 .fasync = NULL,
440 .release = fanotify_release,
Eric Parisa1014f12009-12-17 21:24:26 -0500441 .unlocked_ioctl = fanotify_ioctl,
442 .compat_ioctl = fanotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200443 .llseek = noop_llseek,
Eric Paris52c923d2009-12-17 21:24:26 -0500444};
445
Eric Paris2a3edf82009-12-17 21:24:26 -0500446static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
447{
448 kmem_cache_free(fanotify_mark_cache, fsn_mark);
449}
450
451static int fanotify_find_path(int dfd, const char __user *filename,
452 struct path *path, unsigned int flags)
453{
454 int ret;
455
456 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
457 dfd, filename, flags);
458
459 if (filename == NULL) {
Al Viro2903ff02012-08-28 12:52:22 -0400460 struct fd f = fdget(dfd);
Eric Paris2a3edf82009-12-17 21:24:26 -0500461
462 ret = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400463 if (!f.file)
Eric Paris2a3edf82009-12-17 21:24:26 -0500464 goto out;
465
466 ret = -ENOTDIR;
467 if ((flags & FAN_MARK_ONLYDIR) &&
Al Viro496ad9a2013-01-23 17:07:38 -0500468 !(S_ISDIR(file_inode(f.file)->i_mode))) {
Al Viro2903ff02012-08-28 12:52:22 -0400469 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500470 goto out;
471 }
472
Al Viro2903ff02012-08-28 12:52:22 -0400473 *path = f.file->f_path;
Eric Paris2a3edf82009-12-17 21:24:26 -0500474 path_get(path);
Al Viro2903ff02012-08-28 12:52:22 -0400475 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500476 } else {
477 unsigned int lookup_flags = 0;
478
479 if (!(flags & FAN_MARK_DONT_FOLLOW))
480 lookup_flags |= LOOKUP_FOLLOW;
481 if (flags & FAN_MARK_ONLYDIR)
482 lookup_flags |= LOOKUP_DIRECTORY;
483
484 ret = user_path_at(dfd, filename, lookup_flags, path);
485 if (ret)
486 goto out;
487 }
488
489 /* you can only watch an inode if you have read permissions on it */
490 ret = inode_permission(path->dentry->d_inode, MAY_READ);
491 if (ret)
492 path_put(path);
493out:
494 return ret;
495}
496
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500497static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
498 __u32 mask,
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200499 unsigned int flags,
500 int *destroy)
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500501{
502 __u32 oldmask;
503
504 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500505 if (!(flags & FAN_MARK_IGNORED_MASK)) {
506 oldmask = fsn_mark->mask;
507 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask));
508 } else {
509 oldmask = fsn_mark->ignored_mask;
510 fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask));
511 }
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500512 spin_unlock(&fsn_mark->lock);
513
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200514 *destroy = !(oldmask & ~mask);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500515
516 return mask & oldmask;
517}
518
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500519static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500520 struct vfsmount *mnt, __u32 mask,
521 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500522{
523 struct fsnotify_mark *fsn_mark = NULL;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500524 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200525 int destroy_mark;
Eric Paris88826272009-12-17 21:24:28 -0500526
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700527 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500528 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700529 if (!fsn_mark) {
530 mutex_unlock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500531 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700532 }
Eric Paris88826272009-12-17 21:24:28 -0500533
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200534 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
535 &destroy_mark);
536 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700537 fsnotify_destroy_mark_locked(fsn_mark, group);
538 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200539
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500540 fsnotify_put_mark(fsn_mark);
Al Viroc63181e2011-11-25 02:35:16 -0500541 if (removed & real_mount(mnt)->mnt_fsnotify_mask)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500542 fsnotify_recalc_vfsmount_mask(mnt);
Eric Paris88826272009-12-17 21:24:28 -0500543
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500544 return 0;
545}
546
547static int fanotify_remove_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500548 struct inode *inode, __u32 mask,
549 unsigned int flags)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500550{
551 struct fsnotify_mark *fsn_mark = NULL;
552 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200553 int destroy_mark;
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500554
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700555 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500556 fsn_mark = fsnotify_find_inode_mark(group, inode);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700557 if (!fsn_mark) {
558 mutex_unlock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500559 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700560 }
Eric Paris88826272009-12-17 21:24:28 -0500561
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200562 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
563 &destroy_mark);
564 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700565 fsnotify_destroy_mark_locked(fsn_mark, group);
566 mutex_unlock(&group->mark_mutex);
567
Eric Paris5444e292009-12-17 21:24:27 -0500568 /* matches the fsnotify_find_inode_mark() */
Eric Paris2a3edf82009-12-17 21:24:26 -0500569 fsnotify_put_mark(fsn_mark);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500570 if (removed & inode->i_fsnotify_mask)
571 fsnotify_recalc_inode_mask(inode);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500572
Eric Paris2a3edf82009-12-17 21:24:26 -0500573 return 0;
574}
575
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500576static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
577 __u32 mask,
578 unsigned int flags)
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500579{
Eric Paris192ca4d2010-10-28 17:21:59 -0400580 __u32 oldmask = -1;
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500581
582 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500583 if (!(flags & FAN_MARK_IGNORED_MASK)) {
584 oldmask = fsn_mark->mask;
585 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask | mask));
586 } else {
Eric Paris192ca4d2010-10-28 17:21:59 -0400587 __u32 tmask = fsn_mark->ignored_mask | mask;
588 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
Eric Parisc9778a92009-12-17 21:24:33 -0500589 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
590 fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500591 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400592
593 if (!(flags & FAN_MARK_ONDIR)) {
594 __u32 tmask = fsn_mark->ignored_mask | FAN_ONDIR;
595 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
596 }
597
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500598 spin_unlock(&fsn_mark->lock);
599
600 return mask & ~oldmask;
601}
602
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500603static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500604 struct vfsmount *mnt, __u32 mask,
605 unsigned int flags)
Eric Paris2a3edf82009-12-17 21:24:26 -0500606{
607 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500608 __u32 added;
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100609 int ret = 0;
Eric Paris2a3edf82009-12-17 21:24:26 -0500610
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700611 mutex_lock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500612 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
613 if (!fsn_mark) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700614 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks) {
615 mutex_unlock(&group->mark_mutex);
Eric Parise7099d82010-10-28 17:21:57 -0400616 return -ENOSPC;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700617 }
Eric Parise7099d82010-10-28 17:21:57 -0400618
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500619 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700620 if (!fsn_mark) {
621 mutex_unlock(&group->mark_mutex);
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500622 return -ENOMEM;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700623 }
Eric Paris88826272009-12-17 21:24:28 -0500624
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500625 fsnotify_init_mark(fsn_mark, fanotify_free_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700626 ret = fsnotify_add_mark_locked(fsn_mark, group, NULL, mnt, 0);
627 if (ret) {
628 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100629 goto err;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700630 }
Eric Paris88826272009-12-17 21:24:28 -0500631 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500632 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700633 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100634
Al Viroc63181e2011-11-25 02:35:16 -0500635 if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
Eric Paris43709a22010-07-28 10:18:39 -0400636 fsnotify_recalc_vfsmount_mask(mnt);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100637err:
638 fsnotify_put_mark(fsn_mark);
639 return ret;
Eric Paris88826272009-12-17 21:24:28 -0500640}
641
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500642static int fanotify_add_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500643 struct inode *inode, __u32 mask,
644 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500645{
646 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500647 __u32 added;
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100648 int ret = 0;
Eric Paris88826272009-12-17 21:24:28 -0500649
650 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500651
Eric Paris5322a592010-10-28 17:21:57 -0400652 /*
653 * If some other task has this inode open for write we should not add
654 * an ignored mark, unless that ignored mark is supposed to survive
655 * modification changes anyway.
656 */
657 if ((flags & FAN_MARK_IGNORED_MASK) &&
658 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
659 (atomic_read(&inode->i_writecount) > 0))
660 return 0;
661
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700662 mutex_lock(&group->mark_mutex);
Eric Paris5444e292009-12-17 21:24:27 -0500663 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500664 if (!fsn_mark) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700665 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks) {
666 mutex_unlock(&group->mark_mutex);
Eric Parise7099d82010-10-28 17:21:57 -0400667 return -ENOSPC;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700668 }
Eric Parise7099d82010-10-28 17:21:57 -0400669
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500670 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700671 if (!fsn_mark) {
672 mutex_unlock(&group->mark_mutex);
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500673 return -ENOMEM;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700674 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500675
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500676 fsnotify_init_mark(fsn_mark, fanotify_free_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700677 ret = fsnotify_add_mark_locked(fsn_mark, group, inode, NULL, 0);
678 if (ret) {
679 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100680 goto err;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700681 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500682 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500683 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700684 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100685
Eric Paris43709a22010-07-28 10:18:39 -0400686 if (added & ~inode->i_fsnotify_mask)
687 fsnotify_recalc_inode_mask(inode);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100688err:
689 fsnotify_put_mark(fsn_mark);
690 return ret;
Eric Paris88826272009-12-17 21:24:28 -0500691}
Eric Paris2a3edf82009-12-17 21:24:26 -0500692
Eric Paris52c923d2009-12-17 21:24:26 -0500693/* fanotify syscalls */
Eric Paris08ae8932010-05-27 09:41:40 -0400694SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
Eric Paris11637e42009-12-17 21:24:25 -0500695{
Eric Paris52c923d2009-12-17 21:24:26 -0500696 struct fsnotify_group *group;
697 int f_flags, fd;
Eric Paris4afeff82010-10-28 17:21:58 -0400698 struct user_struct *user;
Eric Paris52c923d2009-12-17 21:24:26 -0500699
Eric Paris08ae8932010-05-27 09:41:40 -0400700 pr_debug("%s: flags=%d event_f_flags=%d\n",
701 __func__, flags, event_f_flags);
Eric Paris52c923d2009-12-17 21:24:26 -0500702
Eric Paris52c923d2009-12-17 21:24:26 -0500703 if (!capable(CAP_SYS_ADMIN))
Andreas Gruenbachera2f13ad2010-08-24 12:58:54 +0200704 return -EPERM;
Eric Paris52c923d2009-12-17 21:24:26 -0500705
706 if (flags & ~FAN_ALL_INIT_FLAGS)
707 return -EINVAL;
708
Eric Paris4afeff82010-10-28 17:21:58 -0400709 user = get_current_user();
710 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
711 free_uid(user);
712 return -EMFILE;
713 }
714
Eric Parisb2d87902009-12-17 21:24:34 -0500715 f_flags = O_RDWR | FMODE_NONOTIFY;
Eric Paris52c923d2009-12-17 21:24:26 -0500716 if (flags & FAN_CLOEXEC)
717 f_flags |= O_CLOEXEC;
718 if (flags & FAN_NONBLOCK)
719 f_flags |= O_NONBLOCK;
720
721 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
722 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
Eric Paris263791982010-11-23 23:48:26 -0500723 if (IS_ERR(group)) {
724 free_uid(user);
Eric Paris52c923d2009-12-17 21:24:26 -0500725 return PTR_ERR(group);
Eric Paris263791982010-11-23 23:48:26 -0500726 }
Eric Paris52c923d2009-12-17 21:24:26 -0500727
Eric Paris4afeff82010-10-28 17:21:58 -0400728 group->fanotify_data.user = user;
729 atomic_inc(&user->fanotify_listeners);
730
Eric Paris80af2582010-07-28 10:18:37 -0400731 group->fanotify_data.f_flags = event_f_flags;
Eric Paris9e66e422009-12-17 21:24:34 -0500732#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
733 mutex_init(&group->fanotify_data.access_mutex);
734 init_waitqueue_head(&group->fanotify_data.access_waitq);
735 INIT_LIST_HEAD(&group->fanotify_data.access_list);
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100736 atomic_set(&group->fanotify_data.bypass_perm, 0);
Eric Paris9e66e422009-12-17 21:24:34 -0500737#endif
Eric Paris4231a232010-10-28 17:21:56 -0400738 switch (flags & FAN_ALL_CLASS_BITS) {
739 case FAN_CLASS_NOTIF:
740 group->priority = FS_PRIO_0;
741 break;
742 case FAN_CLASS_CONTENT:
743 group->priority = FS_PRIO_1;
744 break;
745 case FAN_CLASS_PRE_CONTENT:
746 group->priority = FS_PRIO_2;
747 break;
748 default:
749 fd = -EINVAL;
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200750 goto out_destroy_group;
Eric Paris4231a232010-10-28 17:21:56 -0400751 }
Eric Pariscb2d4292009-12-17 21:24:34 -0500752
Eric Paris5dd03f52010-10-28 17:21:57 -0400753 if (flags & FAN_UNLIMITED_QUEUE) {
754 fd = -EPERM;
755 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200756 goto out_destroy_group;
Eric Paris5dd03f52010-10-28 17:21:57 -0400757 group->max_events = UINT_MAX;
758 } else {
759 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
760 }
Eric Paris2529a0d2010-10-28 17:21:57 -0400761
Eric Parisac7e22d2010-10-28 17:21:58 -0400762 if (flags & FAN_UNLIMITED_MARKS) {
763 fd = -EPERM;
764 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200765 goto out_destroy_group;
Eric Parisac7e22d2010-10-28 17:21:58 -0400766 group->fanotify_data.max_marks = UINT_MAX;
767 } else {
768 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
769 }
Eric Parise7099d82010-10-28 17:21:57 -0400770
Eric Paris52c923d2009-12-17 21:24:26 -0500771 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
772 if (fd < 0)
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200773 goto out_destroy_group;
Eric Paris52c923d2009-12-17 21:24:26 -0500774
775 return fd;
776
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200777out_destroy_group:
778 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500779 return fd;
Eric Paris11637e42009-12-17 21:24:25 -0500780}
Eric Parisbbaa4162009-12-17 21:24:26 -0500781
Al Viro4a0fd5b2013-01-21 15:16:58 -0500782SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
783 __u64, mask, int, dfd,
784 const char __user *, pathname)
Eric Parisbbaa4162009-12-17 21:24:26 -0500785{
Eric Paris0ff21db2009-12-17 21:24:29 -0500786 struct inode *inode = NULL;
787 struct vfsmount *mnt = NULL;
Eric Paris2a3edf82009-12-17 21:24:26 -0500788 struct fsnotify_group *group;
Al Viro2903ff02012-08-28 12:52:22 -0400789 struct fd f;
Eric Paris2a3edf82009-12-17 21:24:26 -0500790 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -0400791 int ret;
Eric Paris2a3edf82009-12-17 21:24:26 -0500792
793 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
794 __func__, fanotify_fd, flags, dfd, pathname, mask);
795
796 /* we only use the lower 32 bits as of right now. */
797 if (mask & ((__u64)0xffffffff << 32))
798 return -EINVAL;
799
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500800 if (flags & ~FAN_ALL_MARK_FLAGS)
801 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500802 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100803 case FAN_MARK_ADD: /* fallthrough */
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500804 case FAN_MARK_REMOVE:
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100805 if (!mask)
806 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500807 case FAN_MARK_FLUSH:
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500808 break;
809 default:
810 return -EINVAL;
811 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400812
813 if (mask & FAN_ONDIR) {
814 flags |= FAN_MARK_ONDIR;
815 mask &= ~FAN_ONDIR;
816 }
817
Eric Parisb2d87902009-12-17 21:24:34 -0500818#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
819 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
820#else
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500821 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
Eric Parisb2d87902009-12-17 21:24:34 -0500822#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500823 return -EINVAL;
824
Al Viro2903ff02012-08-28 12:52:22 -0400825 f = fdget(fanotify_fd);
826 if (unlikely(!f.file))
Eric Paris2a3edf82009-12-17 21:24:26 -0500827 return -EBADF;
828
829 /* verify that this is indeed an fanotify instance */
830 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -0400831 if (unlikely(f.file->f_op != &fanotify_fops))
Eric Paris2a3edf82009-12-17 21:24:26 -0500832 goto fput_and_out;
Al Viro2903ff02012-08-28 12:52:22 -0400833 group = f.file->private_data;
Eric Paris4231a232010-10-28 17:21:56 -0400834
835 /*
836 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
837 * allowed to set permissions events.
838 */
839 ret = -EINVAL;
840 if (mask & FAN_ALL_PERM_EVENTS &&
841 group->priority == FS_PRIO_0)
842 goto fput_and_out;
Eric Paris2a3edf82009-12-17 21:24:26 -0500843
844 ret = fanotify_find_path(dfd, pathname, &path, flags);
845 if (ret)
846 goto fput_and_out;
847
848 /* inode held in place by reference to path; group by fget on fd */
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500849 if (!(flags & FAN_MARK_MOUNT))
Eric Paris0ff21db2009-12-17 21:24:29 -0500850 inode = path.dentry->d_inode;
851 else
852 mnt = path.mnt;
Eric Paris2a3edf82009-12-17 21:24:26 -0500853
854 /* create/update an inode mark */
Eric Paris4d926042009-12-17 21:24:34 -0500855 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500856 case FAN_MARK_ADD:
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500857 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500858 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
Eric Paris0ff21db2009-12-17 21:24:29 -0500859 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500860 ret = fanotify_add_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500861 break;
862 case FAN_MARK_REMOVE:
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500863 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500864 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500865 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500866 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500867 break;
Eric Paris4d926042009-12-17 21:24:34 -0500868 case FAN_MARK_FLUSH:
869 if (flags & FAN_MARK_MOUNT)
870 fsnotify_clear_vfsmount_marks_by_group(group);
871 else
872 fsnotify_clear_inode_marks_by_group(group);
Eric Paris4d926042009-12-17 21:24:34 -0500873 break;
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500874 default:
875 ret = -EINVAL;
876 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500877
878 path_put(&path);
879fput_and_out:
Al Viro2903ff02012-08-28 12:52:22 -0400880 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500881 return ret;
Eric Parisbbaa4162009-12-17 21:24:26 -0500882}
Eric Paris2a3edf82009-12-17 21:24:26 -0500883
Al Viro91c2e0b2013-03-05 20:10:59 -0500884#ifdef CONFIG_COMPAT
885COMPAT_SYSCALL_DEFINE6(fanotify_mark,
886 int, fanotify_fd, unsigned int, flags,
887 __u32, mask0, __u32, mask1, int, dfd,
888 const char __user *, pathname)
889{
890 return sys_fanotify_mark(fanotify_fd, flags,
891#ifdef __BIG_ENDIAN
892 ((__u64)mask1 << 32) | mask0,
893#else
894 ((__u64)mask0 << 32) | mask1,
895#endif
896 dfd, pathname);
897}
898#endif
899
Eric Paris2a3edf82009-12-17 21:24:26 -0500900/*
Justin P. Mattockae0e47f2011-03-01 15:06:02 +0100901 * fanotify_user_setup - Our initialization function. Note that we cannot return
Eric Paris2a3edf82009-12-17 21:24:26 -0500902 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
903 * must result in panic().
904 */
905static int __init fanotify_user_setup(void)
906{
907 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
Eric Parisb2d87902009-12-17 21:24:34 -0500908 fanotify_response_event_cache = KMEM_CACHE(fanotify_response_event,
909 SLAB_PANIC);
Eric Paris2a3edf82009-12-17 21:24:26 -0500910
911 return 0;
912}
913device_initcall(fanotify_user_setup);