blob: 48bc91d60fcea768811a0e0f21f46920f280a2e5 [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>
16
17#include <asm/ioctls.h>
Eric Paris11637e42009-12-17 21:24:25 -050018
Al Viroc63181e2011-11-25 02:35:16 -050019#include "../../mount.h"
20
Eric Paris2529a0d2010-10-28 17:21:57 -040021#define FANOTIFY_DEFAULT_MAX_EVENTS 16384
Eric Parise7099d82010-10-28 17:21:57 -040022#define FANOTIFY_DEFAULT_MAX_MARKS 8192
Eric Paris4afeff82010-10-28 17:21:58 -040023#define FANOTIFY_DEFAULT_MAX_LISTENERS 128
Eric Paris2529a0d2010-10-28 17:21:57 -040024
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -050025extern const struct fsnotify_ops fanotify_fsnotify_ops;
Eric Paris11637e42009-12-17 21:24:25 -050026
Eric Paris2a3edf82009-12-17 21:24:26 -050027static struct kmem_cache *fanotify_mark_cache __read_mostly;
Eric Parisb2d87902009-12-17 21:24:34 -050028static struct kmem_cache *fanotify_response_event_cache __read_mostly;
29
30struct fanotify_response_event {
31 struct list_head list;
32 __s32 fd;
33 struct fsnotify_event *event;
34};
Eric Paris2a3edf82009-12-17 21:24:26 -050035
Eric Parisa1014f12009-12-17 21:24:26 -050036/*
37 * Get an fsnotify notification event if one exists and is small
38 * enough to fit in "count". Return an error pointer if the count
39 * is not large enough.
40 *
41 * Called with the group->notification_mutex held.
42 */
43static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
44 size_t count)
45{
46 BUG_ON(!mutex_is_locked(&group->notification_mutex));
47
48 pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
49
50 if (fsnotify_notify_queue_is_empty(group))
51 return NULL;
52
53 if (FAN_EVENT_METADATA_LEN > count)
54 return ERR_PTR(-EINVAL);
55
56 /* held the notification_mutex the whole time, so this is the
57 * same event we peeked above */
58 return fsnotify_remove_notify_event(group);
59}
60
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -050061static int create_fd(struct fsnotify_group *group, struct fsnotify_event *event)
Eric Parisa1014f12009-12-17 21:24:26 -050062{
63 int client_fd;
64 struct dentry *dentry;
65 struct vfsmount *mnt;
66 struct file *new_file;
67
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -050068 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
Eric Parisa1014f12009-12-17 21:24:26 -050069
70 client_fd = get_unused_fd();
71 if (client_fd < 0)
72 return client_fd;
73
Linus Torvalds20696012010-08-12 14:23:04 -070074 if (event->data_type != FSNOTIFY_EVENT_PATH) {
Eric Parisa1014f12009-12-17 21:24:26 -050075 WARN_ON(1);
76 put_unused_fd(client_fd);
77 return -EINVAL;
78 }
79
80 /*
81 * we need a new file handle for the userspace program so it can read even if it was
82 * originally opened O_WRONLY.
83 */
Linus Torvalds20696012010-08-12 14:23:04 -070084 dentry = dget(event->path.dentry);
85 mnt = mntget(event->path.mnt);
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 */
88 if (dentry && mnt)
89 new_file = dentry_open(dentry, mnt,
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 {
105 fd_install(client_fd, new_file);
106 }
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,
113 struct fsnotify_event *event)
114{
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100115 int ret = 0;
116
Eric Parisa1014f12009-12-17 21:24:26 -0500117 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
118 group, metadata, event);
119
120 metadata->event_len = FAN_EVENT_METADATA_LEN;
Eric Paris7d131622010-12-07 15:27:57 -0500121 metadata->metadata_len = FAN_EVENT_METADATA_LEN;
Eric Parisa1014f12009-12-17 21:24:26 -0500122 metadata->vers = FANOTIFY_METADATA_VERSION;
Dan Carpenter6c9ef832013-07-08 15:59:40 -0700123 metadata->reserved = 0;
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -0500124 metadata->mask = event->mask & FAN_ALL_OUTGOING_EVENTS;
Andreas Gruenbacher32c32632009-12-17 21:24:27 -0500125 metadata->pid = pid_vnr(event->tgid);
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100126 if (unlikely(event->mask & FAN_Q_OVERFLOW))
127 metadata->fd = FAN_NOFD;
128 else {
129 metadata->fd = create_fd(group, event);
130 if (metadata->fd < 0)
131 ret = metadata->fd;
132 }
Eric Parisa1014f12009-12-17 21:24:26 -0500133
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100134 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500135}
136
Eric Parisb2d87902009-12-17 21:24:34 -0500137#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
138static struct fanotify_response_event *dequeue_re(struct fsnotify_group *group,
139 __s32 fd)
140{
141 struct fanotify_response_event *re, *return_re = NULL;
142
143 mutex_lock(&group->fanotify_data.access_mutex);
144 list_for_each_entry(re, &group->fanotify_data.access_list, list) {
145 if (re->fd != fd)
146 continue;
147
148 list_del_init(&re->list);
149 return_re = re;
150 break;
151 }
152 mutex_unlock(&group->fanotify_data.access_mutex);
153
154 pr_debug("%s: found return_re=%p\n", __func__, return_re);
155
156 return return_re;
157}
158
159static int process_access_response(struct fsnotify_group *group,
160 struct fanotify_response *response_struct)
161{
162 struct fanotify_response_event *re;
163 __s32 fd = response_struct->fd;
164 __u32 response = response_struct->response;
165
166 pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group,
167 fd, response);
168 /*
169 * make sure the response is valid, if invalid we do nothing and either
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300170 * userspace can send a valid response or we will clean it up after the
Eric Parisb2d87902009-12-17 21:24:34 -0500171 * timeout
172 */
173 switch (response) {
174 case FAN_ALLOW:
175 case FAN_DENY:
176 break;
177 default:
178 return -EINVAL;
179 }
180
181 if (fd < 0)
182 return -EINVAL;
183
184 re = dequeue_re(group, fd);
185 if (!re)
186 return -ENOENT;
187
188 re->event->response = response;
189
190 wake_up(&group->fanotify_data.access_waitq);
191
192 kmem_cache_free(fanotify_response_event_cache, re);
193
194 return 0;
195}
196
197static int prepare_for_access_response(struct fsnotify_group *group,
198 struct fsnotify_event *event,
199 __s32 fd)
200{
201 struct fanotify_response_event *re;
202
203 if (!(event->mask & FAN_ALL_PERM_EVENTS))
204 return 0;
205
206 re = kmem_cache_alloc(fanotify_response_event_cache, GFP_KERNEL);
207 if (!re)
208 return -ENOMEM;
209
210 re->event = event;
211 re->fd = fd;
212
213 mutex_lock(&group->fanotify_data.access_mutex);
Eric Paris2eebf582010-08-18 12:25:50 -0400214
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100215 if (atomic_read(&group->fanotify_data.bypass_perm)) {
Eric Paris2eebf582010-08-18 12:25:50 -0400216 mutex_unlock(&group->fanotify_data.access_mutex);
217 kmem_cache_free(fanotify_response_event_cache, re);
218 event->response = FAN_ALLOW;
219 return 0;
220 }
221
Eric Parisb2d87902009-12-17 21:24:34 -0500222 list_add_tail(&re->list, &group->fanotify_data.access_list);
223 mutex_unlock(&group->fanotify_data.access_mutex);
224
225 return 0;
226}
227
228static void remove_access_response(struct fsnotify_group *group,
229 struct fsnotify_event *event,
230 __s32 fd)
231{
232 struct fanotify_response_event *re;
233
234 if (!(event->mask & FAN_ALL_PERM_EVENTS))
235 return;
236
237 re = dequeue_re(group, fd);
238 if (!re)
239 return;
240
241 BUG_ON(re->event != event);
242
243 kmem_cache_free(fanotify_response_event_cache, re);
244
245 return;
246}
247#else
248static int prepare_for_access_response(struct fsnotify_group *group,
249 struct fsnotify_event *event,
250 __s32 fd)
251{
252 return 0;
253}
254
255static void remove_access_response(struct fsnotify_group *group,
256 struct fsnotify_event *event,
257 __s32 fd)
258{
Eric Paris8860f062009-12-23 00:10:25 -0500259 return;
Eric Parisb2d87902009-12-17 21:24:34 -0500260}
261#endif
262
Eric Parisa1014f12009-12-17 21:24:26 -0500263static ssize_t copy_event_to_user(struct fsnotify_group *group,
264 struct fsnotify_event *event,
265 char __user *buf)
266{
267 struct fanotify_event_metadata fanotify_event_metadata;
Eric Parisb2d87902009-12-17 21:24:34 -0500268 int fd, ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500269
270 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
271
Eric Parisecf6f5e2010-11-08 18:08:14 -0500272 ret = fill_event_metadata(group, &fanotify_event_metadata, event);
273 if (ret < 0)
274 goto out;
Eric Parisa1014f12009-12-17 21:24:26 -0500275
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100276 fd = fanotify_event_metadata.fd;
Eric Parisb2d87902009-12-17 21:24:34 -0500277 ret = prepare_for_access_response(group, event, fd);
278 if (ret)
279 goto out_close_fd;
280
281 ret = -EFAULT;
Eric Paris7d131622010-12-07 15:27:57 -0500282 if (copy_to_user(buf, &fanotify_event_metadata,
283 fanotify_event_metadata.event_len))
Eric Parisb2d87902009-12-17 21:24:34 -0500284 goto out_kill_access_response;
Eric Parisa1014f12009-12-17 21:24:26 -0500285
Eric Paris7d131622010-12-07 15:27:57 -0500286 return fanotify_event_metadata.event_len;
Eric Parisb2d87902009-12-17 21:24:34 -0500287
288out_kill_access_response:
289 remove_access_response(group, event, fd);
290out_close_fd:
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100291 if (fd != FAN_NOFD)
292 sys_close(fd);
Eric Parisecf6f5e2010-11-08 18:08:14 -0500293out:
294#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
295 if (event->mask & FAN_ALL_PERM_EVENTS) {
296 event->response = FAN_DENY;
297 wake_up(&group->fanotify_data.access_waitq);
298 }
299#endif
Eric Parisb2d87902009-12-17 21:24:34 -0500300 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500301}
302
303/* intofiy userspace file descriptor functions */
304static unsigned int fanotify_poll(struct file *file, poll_table *wait)
305{
306 struct fsnotify_group *group = file->private_data;
307 int ret = 0;
308
309 poll_wait(file, &group->notification_waitq, wait);
310 mutex_lock(&group->notification_mutex);
311 if (!fsnotify_notify_queue_is_empty(group))
312 ret = POLLIN | POLLRDNORM;
313 mutex_unlock(&group->notification_mutex);
314
315 return ret;
316}
317
318static ssize_t fanotify_read(struct file *file, char __user *buf,
319 size_t count, loff_t *pos)
320{
321 struct fsnotify_group *group;
322 struct fsnotify_event *kevent;
323 char __user *start;
324 int ret;
325 DEFINE_WAIT(wait);
326
327 start = buf;
328 group = file->private_data;
329
330 pr_debug("%s: group=%p\n", __func__, group);
331
332 while (1) {
333 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
334
335 mutex_lock(&group->notification_mutex);
336 kevent = get_one_event(group, count);
337 mutex_unlock(&group->notification_mutex);
338
339 if (kevent) {
340 ret = PTR_ERR(kevent);
341 if (IS_ERR(kevent))
342 break;
343 ret = copy_event_to_user(group, kevent, buf);
344 fsnotify_put_event(kevent);
345 if (ret < 0)
346 break;
347 buf += ret;
348 count -= ret;
349 continue;
350 }
351
352 ret = -EAGAIN;
353 if (file->f_flags & O_NONBLOCK)
354 break;
Lino Sanfilippo1a5cea72010-10-29 12:06:42 +0200355 ret = -ERESTARTSYS;
Eric Parisa1014f12009-12-17 21:24:26 -0500356 if (signal_pending(current))
357 break;
358
359 if (start != buf)
360 break;
361
362 schedule();
363 }
364
365 finish_wait(&group->notification_waitq, &wait);
366 if (start != buf && ret != -EFAULT)
367 ret = buf - start;
368 return ret;
369}
370
Eric Parisb2d87902009-12-17 21:24:34 -0500371static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
372{
373#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
374 struct fanotify_response response = { .fd = -1, .response = -1 };
375 struct fsnotify_group *group;
376 int ret;
377
378 group = file->private_data;
379
380 if (count > sizeof(response))
381 count = sizeof(response);
382
383 pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
384
385 if (copy_from_user(&response, buf, count))
386 return -EFAULT;
387
388 ret = process_access_response(group, &response);
389 if (ret < 0)
390 count = ret;
391
392 return count;
393#else
394 return -EINVAL;
395#endif
396}
397
Eric Paris52c923d2009-12-17 21:24:26 -0500398static int fanotify_release(struct inode *ignored, struct file *file)
399{
400 struct fsnotify_group *group = file->private_data;
Eric Paris52c923d2009-12-17 21:24:26 -0500401
Eric Paris2eebf582010-08-18 12:25:50 -0400402#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Andrew Morton19ba54f2010-10-28 17:21:59 -0400403 struct fanotify_response_event *re, *lre;
404
Eric Paris2eebf582010-08-18 12:25:50 -0400405 mutex_lock(&group->fanotify_data.access_mutex);
406
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100407 atomic_inc(&group->fanotify_data.bypass_perm);
Eric Paris2eebf582010-08-18 12:25:50 -0400408
409 list_for_each_entry_safe(re, lre, &group->fanotify_data.access_list, list) {
410 pr_debug("%s: found group=%p re=%p event=%p\n", __func__, group,
411 re, re->event);
412
413 list_del_init(&re->list);
414 re->event->response = FAN_ALLOW;
415
416 kmem_cache_free(fanotify_response_event_cache, re);
417 }
418 mutex_unlock(&group->fanotify_data.access_mutex);
419
420 wake_up(&group->fanotify_data.access_waitq);
421#endif
Eric Paris52c923d2009-12-17 21:24:26 -0500422 /* matches the fanotify_init->fsnotify_alloc_group */
423 fsnotify_put_group(group);
424
425 return 0;
426}
427
Eric Parisa1014f12009-12-17 21:24:26 -0500428static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
429{
430 struct fsnotify_group *group;
431 struct fsnotify_event_holder *holder;
432 void __user *p;
433 int ret = -ENOTTY;
434 size_t send_len = 0;
435
436 group = file->private_data;
437
438 p = (void __user *) arg;
439
440 switch (cmd) {
441 case FIONREAD:
442 mutex_lock(&group->notification_mutex);
443 list_for_each_entry(holder, &group->notification_list, event_list)
444 send_len += FAN_EVENT_METADATA_LEN;
445 mutex_unlock(&group->notification_mutex);
446 ret = put_user(send_len, (int __user *) p);
447 break;
448 }
449
450 return ret;
451}
452
Eric Paris52c923d2009-12-17 21:24:26 -0500453static const struct file_operations fanotify_fops = {
Eric Parisa1014f12009-12-17 21:24:26 -0500454 .poll = fanotify_poll,
455 .read = fanotify_read,
Eric Parisb2d87902009-12-17 21:24:34 -0500456 .write = fanotify_write,
Eric Paris52c923d2009-12-17 21:24:26 -0500457 .fasync = NULL,
458 .release = fanotify_release,
Eric Parisa1014f12009-12-17 21:24:26 -0500459 .unlocked_ioctl = fanotify_ioctl,
460 .compat_ioctl = fanotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200461 .llseek = noop_llseek,
Eric Paris52c923d2009-12-17 21:24:26 -0500462};
463
Eric Paris2a3edf82009-12-17 21:24:26 -0500464static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
465{
466 kmem_cache_free(fanotify_mark_cache, fsn_mark);
467}
468
469static int fanotify_find_path(int dfd, const char __user *filename,
470 struct path *path, unsigned int flags)
471{
472 int ret;
473
474 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
475 dfd, filename, flags);
476
477 if (filename == NULL) {
478 struct file *file;
479 int fput_needed;
480
481 ret = -EBADF;
482 file = fget_light(dfd, &fput_needed);
483 if (!file)
484 goto out;
485
486 ret = -ENOTDIR;
487 if ((flags & FAN_MARK_ONLYDIR) &&
488 !(S_ISDIR(file->f_path.dentry->d_inode->i_mode))) {
489 fput_light(file, fput_needed);
490 goto out;
491 }
492
493 *path = file->f_path;
494 path_get(path);
495 fput_light(file, fput_needed);
496 } else {
497 unsigned int lookup_flags = 0;
498
499 if (!(flags & FAN_MARK_DONT_FOLLOW))
500 lookup_flags |= LOOKUP_FOLLOW;
501 if (flags & FAN_MARK_ONLYDIR)
502 lookup_flags |= LOOKUP_DIRECTORY;
503
504 ret = user_path_at(dfd, filename, lookup_flags, path);
505 if (ret)
506 goto out;
507 }
508
509 /* you can only watch an inode if you have read permissions on it */
510 ret = inode_permission(path->dentry->d_inode, MAY_READ);
511 if (ret)
512 path_put(path);
513out:
514 return ret;
515}
516
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500517static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
518 __u32 mask,
519 unsigned int flags)
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500520{
521 __u32 oldmask;
522
523 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500524 if (!(flags & FAN_MARK_IGNORED_MASK)) {
525 oldmask = fsn_mark->mask;
526 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask));
527 } else {
528 oldmask = fsn_mark->ignored_mask;
529 fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask));
530 }
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500531 spin_unlock(&fsn_mark->lock);
532
533 if (!(oldmask & ~mask))
534 fsnotify_destroy_mark(fsn_mark);
535
536 return mask & oldmask;
537}
538
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500539static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500540 struct vfsmount *mnt, __u32 mask,
541 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500542{
543 struct fsnotify_mark *fsn_mark = NULL;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500544 __u32 removed;
Eric Paris88826272009-12-17 21:24:28 -0500545
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500546 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
547 if (!fsn_mark)
548 return -ENOENT;
Eric Paris88826272009-12-17 21:24:28 -0500549
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500550 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500551 fsnotify_put_mark(fsn_mark);
Al Viroc63181e2011-11-25 02:35:16 -0500552 if (removed & real_mount(mnt)->mnt_fsnotify_mask)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500553 fsnotify_recalc_vfsmount_mask(mnt);
Eric Paris88826272009-12-17 21:24:28 -0500554
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500555 return 0;
556}
557
558static int fanotify_remove_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500559 struct inode *inode, __u32 mask,
560 unsigned int flags)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500561{
562 struct fsnotify_mark *fsn_mark = NULL;
563 __u32 removed;
564
565 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris88826272009-12-17 21:24:28 -0500566 if (!fsn_mark)
567 return -ENOENT;
568
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500569 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags);
Eric Paris5444e292009-12-17 21:24:27 -0500570 /* matches the fsnotify_find_inode_mark() */
Eric Paris2a3edf82009-12-17 21:24:26 -0500571 fsnotify_put_mark(fsn_mark);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500572 if (removed & inode->i_fsnotify_mask)
573 fsnotify_recalc_inode_mask(inode);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500574
Eric Paris2a3edf82009-12-17 21:24:26 -0500575 return 0;
576}
577
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500578static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
579 __u32 mask,
580 unsigned int flags)
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500581{
Eric Paris192ca4d2010-10-28 17:21:59 -0400582 __u32 oldmask = -1;
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500583
584 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500585 if (!(flags & FAN_MARK_IGNORED_MASK)) {
586 oldmask = fsn_mark->mask;
587 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask | mask));
588 } else {
Eric Paris192ca4d2010-10-28 17:21:59 -0400589 __u32 tmask = fsn_mark->ignored_mask | mask;
590 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
Eric Parisc9778a92009-12-17 21:24:33 -0500591 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
592 fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500593 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400594
595 if (!(flags & FAN_MARK_ONDIR)) {
596 __u32 tmask = fsn_mark->ignored_mask | FAN_ONDIR;
597 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
598 }
599
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500600 spin_unlock(&fsn_mark->lock);
601
602 return mask & ~oldmask;
603}
604
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500605static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500606 struct vfsmount *mnt, __u32 mask,
607 unsigned int flags)
Eric Paris2a3edf82009-12-17 21:24:26 -0500608{
609 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500610 __u32 added;
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100611 int ret = 0;
Eric Paris2a3edf82009-12-17 21:24:26 -0500612
Eric Paris88826272009-12-17 21:24:28 -0500613 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
614 if (!fsn_mark) {
Eric Parise7099d82010-10-28 17:21:57 -0400615 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
616 return -ENOSPC;
617
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500618 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
619 if (!fsn_mark)
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500620 return -ENOMEM;
Eric Paris88826272009-12-17 21:24:28 -0500621
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500622 fsnotify_init_mark(fsn_mark, fanotify_free_mark);
623 ret = fsnotify_add_mark(fsn_mark, group, NULL, mnt, 0);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100624 if (ret)
625 goto err;
Eric Paris88826272009-12-17 21:24:28 -0500626 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500627 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100628
Al Viroc63181e2011-11-25 02:35:16 -0500629 if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
Eric Paris43709a22010-07-28 10:18:39 -0400630 fsnotify_recalc_vfsmount_mask(mnt);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100631err:
632 fsnotify_put_mark(fsn_mark);
633 return ret;
Eric Paris88826272009-12-17 21:24:28 -0500634}
635
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500636static int fanotify_add_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500637 struct inode *inode, __u32 mask,
638 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500639{
640 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500641 __u32 added;
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100642 int ret = 0;
Eric Paris88826272009-12-17 21:24:28 -0500643
644 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500645
Eric Paris5322a592010-10-28 17:21:57 -0400646 /*
647 * If some other task has this inode open for write we should not add
648 * an ignored mark, unless that ignored mark is supposed to survive
649 * modification changes anyway.
650 */
651 if ((flags & FAN_MARK_IGNORED_MASK) &&
652 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
653 (atomic_read(&inode->i_writecount) > 0))
654 return 0;
655
Eric Paris5444e292009-12-17 21:24:27 -0500656 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500657 if (!fsn_mark) {
Eric Parise7099d82010-10-28 17:21:57 -0400658 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
659 return -ENOSPC;
660
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500661 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
662 if (!fsn_mark)
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500663 return -ENOMEM;
Eric Paris2a3edf82009-12-17 21:24:26 -0500664
Andreas Gruenbacher912ee392009-12-17 21:24:28 -0500665 fsnotify_init_mark(fsn_mark, fanotify_free_mark);
666 ret = fsnotify_add_mark(fsn_mark, group, inode, NULL, 0);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100667 if (ret)
668 goto err;
Eric Paris2a3edf82009-12-17 21:24:26 -0500669 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500670 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100671
Eric Paris43709a22010-07-28 10:18:39 -0400672 if (added & ~inode->i_fsnotify_mask)
673 fsnotify_recalc_inode_mask(inode);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100674err:
675 fsnotify_put_mark(fsn_mark);
676 return ret;
Eric Paris88826272009-12-17 21:24:28 -0500677}
Eric Paris2a3edf82009-12-17 21:24:26 -0500678
Eric Paris52c923d2009-12-17 21:24:26 -0500679/* fanotify syscalls */
Eric Paris08ae8932010-05-27 09:41:40 -0400680SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
Eric Paris11637e42009-12-17 21:24:25 -0500681{
Eric Paris52c923d2009-12-17 21:24:26 -0500682 struct fsnotify_group *group;
683 int f_flags, fd;
Eric Paris4afeff82010-10-28 17:21:58 -0400684 struct user_struct *user;
Eric Paris52c923d2009-12-17 21:24:26 -0500685
Eric Paris08ae8932010-05-27 09:41:40 -0400686 pr_debug("%s: flags=%d event_f_flags=%d\n",
687 __func__, flags, event_f_flags);
Eric Paris52c923d2009-12-17 21:24:26 -0500688
Eric Paris52c923d2009-12-17 21:24:26 -0500689 if (!capable(CAP_SYS_ADMIN))
Andreas Gruenbachera2f13ad2010-08-24 12:58:54 +0200690 return -EPERM;
Eric Paris52c923d2009-12-17 21:24:26 -0500691
692 if (flags & ~FAN_ALL_INIT_FLAGS)
693 return -EINVAL;
694
Eric Paris4afeff82010-10-28 17:21:58 -0400695 user = get_current_user();
696 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
697 free_uid(user);
698 return -EMFILE;
699 }
700
Eric Parisb2d87902009-12-17 21:24:34 -0500701 f_flags = O_RDWR | FMODE_NONOTIFY;
Eric Paris52c923d2009-12-17 21:24:26 -0500702 if (flags & FAN_CLOEXEC)
703 f_flags |= O_CLOEXEC;
704 if (flags & FAN_NONBLOCK)
705 f_flags |= O_NONBLOCK;
706
707 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
708 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
Eric Paris26379192010-11-23 23:48:26 -0500709 if (IS_ERR(group)) {
710 free_uid(user);
Eric Paris52c923d2009-12-17 21:24:26 -0500711 return PTR_ERR(group);
Eric Paris26379192010-11-23 23:48:26 -0500712 }
Eric Paris52c923d2009-12-17 21:24:26 -0500713
Eric Paris4afeff82010-10-28 17:21:58 -0400714 group->fanotify_data.user = user;
715 atomic_inc(&user->fanotify_listeners);
716
Eric Paris80af2582010-07-28 10:18:37 -0400717 group->fanotify_data.f_flags = event_f_flags;
Eric Paris9e66e422009-12-17 21:24:34 -0500718#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
719 mutex_init(&group->fanotify_data.access_mutex);
720 init_waitqueue_head(&group->fanotify_data.access_waitq);
721 INIT_LIST_HEAD(&group->fanotify_data.access_list);
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100722 atomic_set(&group->fanotify_data.bypass_perm, 0);
Eric Paris9e66e422009-12-17 21:24:34 -0500723#endif
Eric Paris4231a232010-10-28 17:21:56 -0400724 switch (flags & FAN_ALL_CLASS_BITS) {
725 case FAN_CLASS_NOTIF:
726 group->priority = FS_PRIO_0;
727 break;
728 case FAN_CLASS_CONTENT:
729 group->priority = FS_PRIO_1;
730 break;
731 case FAN_CLASS_PRE_CONTENT:
732 group->priority = FS_PRIO_2;
733 break;
734 default:
735 fd = -EINVAL;
736 goto out_put_group;
737 }
Eric Pariscb2d4292009-12-17 21:24:34 -0500738
Eric Paris5dd03f52010-10-28 17:21:57 -0400739 if (flags & FAN_UNLIMITED_QUEUE) {
740 fd = -EPERM;
741 if (!capable(CAP_SYS_ADMIN))
742 goto out_put_group;
743 group->max_events = UINT_MAX;
744 } else {
745 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
746 }
Eric Paris2529a0d2010-10-28 17:21:57 -0400747
Eric Parisac7e22d2010-10-28 17:21:58 -0400748 if (flags & FAN_UNLIMITED_MARKS) {
749 fd = -EPERM;
750 if (!capable(CAP_SYS_ADMIN))
751 goto out_put_group;
752 group->fanotify_data.max_marks = UINT_MAX;
753 } else {
754 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
755 }
Eric Parise7099d82010-10-28 17:21:57 -0400756
Eric Paris52c923d2009-12-17 21:24:26 -0500757 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
758 if (fd < 0)
759 goto out_put_group;
760
761 return fd;
762
763out_put_group:
764 fsnotify_put_group(group);
765 return fd;
Eric Paris11637e42009-12-17 21:24:25 -0500766}
Eric Parisbbaa4162009-12-17 21:24:26 -0500767
Heiko Carstens9bbfc962009-12-17 21:24:26 -0500768SYSCALL_DEFINE(fanotify_mark)(int fanotify_fd, unsigned int flags,
769 __u64 mask, int dfd,
770 const char __user * pathname)
Eric Parisbbaa4162009-12-17 21:24:26 -0500771{
Eric Paris0ff21db2009-12-17 21:24:29 -0500772 struct inode *inode = NULL;
773 struct vfsmount *mnt = NULL;
Eric Paris2a3edf82009-12-17 21:24:26 -0500774 struct fsnotify_group *group;
775 struct file *filp;
776 struct path path;
777 int ret, fput_needed;
778
779 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
780 __func__, fanotify_fd, flags, dfd, pathname, mask);
781
782 /* we only use the lower 32 bits as of right now. */
783 if (mask & ((__u64)0xffffffff << 32))
784 return -EINVAL;
785
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500786 if (flags & ~FAN_ALL_MARK_FLAGS)
787 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500788 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100789 case FAN_MARK_ADD: /* fallthrough */
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500790 case FAN_MARK_REMOVE:
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100791 if (!mask)
792 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500793 case FAN_MARK_FLUSH:
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500794 break;
795 default:
796 return -EINVAL;
797 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400798
799 if (mask & FAN_ONDIR) {
800 flags |= FAN_MARK_ONDIR;
801 mask &= ~FAN_ONDIR;
802 }
803
Eric Parisb2d87902009-12-17 21:24:34 -0500804#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
805 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
806#else
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500807 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
Eric Parisb2d87902009-12-17 21:24:34 -0500808#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500809 return -EINVAL;
810
811 filp = fget_light(fanotify_fd, &fput_needed);
812 if (unlikely(!filp))
813 return -EBADF;
814
815 /* verify that this is indeed an fanotify instance */
816 ret = -EINVAL;
817 if (unlikely(filp->f_op != &fanotify_fops))
818 goto fput_and_out;
Eric Paris4231a232010-10-28 17:21:56 -0400819 group = filp->private_data;
820
821 /*
822 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
823 * allowed to set permissions events.
824 */
825 ret = -EINVAL;
826 if (mask & FAN_ALL_PERM_EVENTS &&
827 group->priority == FS_PRIO_0)
828 goto fput_and_out;
Eric Paris2a3edf82009-12-17 21:24:26 -0500829
830 ret = fanotify_find_path(dfd, pathname, &path, flags);
831 if (ret)
832 goto fput_and_out;
833
834 /* inode held in place by reference to path; group by fget on fd */
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500835 if (!(flags & FAN_MARK_MOUNT))
Eric Paris0ff21db2009-12-17 21:24:29 -0500836 inode = path.dentry->d_inode;
837 else
838 mnt = path.mnt;
Eric Paris2a3edf82009-12-17 21:24:26 -0500839
840 /* create/update an inode mark */
Eric Paris4d926042009-12-17 21:24:34 -0500841 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500842 case FAN_MARK_ADD:
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500843 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500844 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
Eric Paris0ff21db2009-12-17 21:24:29 -0500845 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500846 ret = fanotify_add_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500847 break;
848 case FAN_MARK_REMOVE:
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500849 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500850 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500851 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500852 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500853 break;
Eric Paris4d926042009-12-17 21:24:34 -0500854 case FAN_MARK_FLUSH:
855 if (flags & FAN_MARK_MOUNT)
856 fsnotify_clear_vfsmount_marks_by_group(group);
857 else
858 fsnotify_clear_inode_marks_by_group(group);
Eric Paris4d926042009-12-17 21:24:34 -0500859 break;
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500860 default:
861 ret = -EINVAL;
862 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500863
864 path_put(&path);
865fput_and_out:
866 fput_light(filp, fput_needed);
867 return ret;
Eric Parisbbaa4162009-12-17 21:24:26 -0500868}
Eric Paris2a3edf82009-12-17 21:24:26 -0500869
Heiko Carstens9bbfc962009-12-17 21:24:26 -0500870#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
871asmlinkage long SyS_fanotify_mark(long fanotify_fd, long flags, __u64 mask,
872 long dfd, long pathname)
873{
874 return SYSC_fanotify_mark((int) fanotify_fd, (unsigned int) flags,
875 mask, (int) dfd,
876 (const char __user *) pathname);
877}
878SYSCALL_ALIAS(sys_fanotify_mark, SyS_fanotify_mark);
879#endif
880
Eric Paris2a3edf82009-12-17 21:24:26 -0500881/*
Justin P. Mattockae0e47f2011-03-01 15:06:02 +0100882 * fanotify_user_setup - Our initialization function. Note that we cannot return
Eric Paris2a3edf82009-12-17 21:24:26 -0500883 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
884 * must result in panic().
885 */
886static int __init fanotify_user_setup(void)
887{
888 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
Eric Parisb2d87902009-12-17 21:24:34 -0500889 fanotify_response_event_cache = KMEM_CACHE(fanotify_response_event,
890 SLAB_PANIC);
Eric Paris2a3edf82009-12-17 21:24:26 -0500891
892 return 0;
893}
894device_initcall(fanotify_user_setup);