fanotify: do not call fanotify_update_object_mask in fanotify_remove_mark
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / notify / fanotify / fanotify_user.c
blob96d4ffd725193c1c40367252985cb52606e93a14
1 #include <linux/fcntl.h>
2 #include <linux/file.h>
3 #include <linux/fs.h>
4 #include <linux/anon_inodes.h>
5 #include <linux/fsnotify_backend.h>
6 #include <linux/init.h>
7 #include <linux/mount.h>
8 #include <linux/namei.h>
9 #include <linux/poll.h>
10 #include <linux/security.h>
11 #include <linux/syscalls.h>
12 #include <linux/types.h>
13 #include <linux/uaccess.h>
15 #include <asm/ioctls.h>
17 #include "fanotify.h"
19 static struct kmem_cache *fanotify_mark_cache __read_mostly;
22 * Get an fsnotify notification event if one exists and is small
23 * enough to fit in "count". Return an error pointer if the count
24 * is not large enough.
26 * Called with the group->notification_mutex held.
28 static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
29 size_t count)
31 BUG_ON(!mutex_is_locked(&group->notification_mutex));
33 pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
35 if (fsnotify_notify_queue_is_empty(group))
36 return NULL;
38 if (FAN_EVENT_METADATA_LEN > count)
39 return ERR_PTR(-EINVAL);
41 /* held the notification_mutex the whole time, so this is the
42 * same event we peeked above */
43 return fsnotify_remove_notify_event(group);
46 static int create_fd(struct fsnotify_group *group, struct fsnotify_event *event)
48 int client_fd;
49 struct dentry *dentry;
50 struct vfsmount *mnt;
51 struct file *new_file;
53 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
55 client_fd = get_unused_fd();
56 if (client_fd < 0)
57 return client_fd;
59 if (event->data_type != FSNOTIFY_EVENT_PATH) {
60 WARN_ON(1);
61 put_unused_fd(client_fd);
62 return -EINVAL;
66 * we need a new file handle for the userspace program so it can read even if it was
67 * originally opened O_WRONLY.
69 dentry = dget(event->path.dentry);
70 mnt = mntget(event->path.mnt);
71 /* it's possible this event was an overflow event. in that case dentry and mnt
72 * are NULL; That's fine, just don't call dentry open */
73 if (dentry && mnt)
74 new_file = dentry_open(dentry, mnt,
75 O_RDONLY | O_LARGEFILE | FMODE_NONOTIFY,
76 current_cred());
77 else
78 new_file = ERR_PTR(-EOVERFLOW);
79 if (IS_ERR(new_file)) {
81 * we still send an event even if we can't open the file. this
82 * can happen when say tasks are gone and we try to open their
83 * /proc files or we try to open a WRONLY file like in sysfs
84 * we just send the errno to userspace since there isn't much
85 * else we can do.
87 put_unused_fd(client_fd);
88 client_fd = PTR_ERR(new_file);
89 } else {
90 fd_install(client_fd, new_file);
93 return client_fd;
96 static ssize_t fill_event_metadata(struct fsnotify_group *group,
97 struct fanotify_event_metadata *metadata,
98 struct fsnotify_event *event)
100 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
101 group, metadata, event);
103 metadata->event_len = FAN_EVENT_METADATA_LEN;
104 metadata->vers = FANOTIFY_METADATA_VERSION;
105 metadata->mask = fanotify_outgoing_mask(event->mask);
106 metadata->pid = pid_vnr(event->tgid);
107 metadata->fd = create_fd(group, event);
109 return metadata->fd;
112 static ssize_t copy_event_to_user(struct fsnotify_group *group,
113 struct fsnotify_event *event,
114 char __user *buf)
116 struct fanotify_event_metadata fanotify_event_metadata;
117 int ret;
119 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
121 ret = fill_event_metadata(group, &fanotify_event_metadata, event);
122 if (ret < 0)
123 return ret;
125 if (copy_to_user(buf, &fanotify_event_metadata, FAN_EVENT_METADATA_LEN))
126 return -EFAULT;
128 return FAN_EVENT_METADATA_LEN;
131 /* intofiy userspace file descriptor functions */
132 static unsigned int fanotify_poll(struct file *file, poll_table *wait)
134 struct fsnotify_group *group = file->private_data;
135 int ret = 0;
137 poll_wait(file, &group->notification_waitq, wait);
138 mutex_lock(&group->notification_mutex);
139 if (!fsnotify_notify_queue_is_empty(group))
140 ret = POLLIN | POLLRDNORM;
141 mutex_unlock(&group->notification_mutex);
143 return ret;
146 static ssize_t fanotify_read(struct file *file, char __user *buf,
147 size_t count, loff_t *pos)
149 struct fsnotify_group *group;
150 struct fsnotify_event *kevent;
151 char __user *start;
152 int ret;
153 DEFINE_WAIT(wait);
155 start = buf;
156 group = file->private_data;
158 pr_debug("%s: group=%p\n", __func__, group);
160 while (1) {
161 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
163 mutex_lock(&group->notification_mutex);
164 kevent = get_one_event(group, count);
165 mutex_unlock(&group->notification_mutex);
167 if (kevent) {
168 ret = PTR_ERR(kevent);
169 if (IS_ERR(kevent))
170 break;
171 ret = copy_event_to_user(group, kevent, buf);
172 fsnotify_put_event(kevent);
173 if (ret < 0)
174 break;
175 buf += ret;
176 count -= ret;
177 continue;
180 ret = -EAGAIN;
181 if (file->f_flags & O_NONBLOCK)
182 break;
183 ret = -EINTR;
184 if (signal_pending(current))
185 break;
187 if (start != buf)
188 break;
190 schedule();
193 finish_wait(&group->notification_waitq, &wait);
194 if (start != buf && ret != -EFAULT)
195 ret = buf - start;
196 return ret;
199 static int fanotify_release(struct inode *ignored, struct file *file)
201 struct fsnotify_group *group = file->private_data;
203 pr_debug("%s: file=%p group=%p\n", __func__, file, group);
205 /* matches the fanotify_init->fsnotify_alloc_group */
206 fsnotify_put_group(group);
208 return 0;
211 static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
213 struct fsnotify_group *group;
214 struct fsnotify_event_holder *holder;
215 void __user *p;
216 int ret = -ENOTTY;
217 size_t send_len = 0;
219 group = file->private_data;
221 p = (void __user *) arg;
223 switch (cmd) {
224 case FIONREAD:
225 mutex_lock(&group->notification_mutex);
226 list_for_each_entry(holder, &group->notification_list, event_list)
227 send_len += FAN_EVENT_METADATA_LEN;
228 mutex_unlock(&group->notification_mutex);
229 ret = put_user(send_len, (int __user *) p);
230 break;
233 return ret;
236 static const struct file_operations fanotify_fops = {
237 .poll = fanotify_poll,
238 .read = fanotify_read,
239 .fasync = NULL,
240 .release = fanotify_release,
241 .unlocked_ioctl = fanotify_ioctl,
242 .compat_ioctl = fanotify_ioctl,
245 static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
247 kmem_cache_free(fanotify_mark_cache, fsn_mark);
250 static int fanotify_find_path(int dfd, const char __user *filename,
251 struct path *path, unsigned int flags)
253 int ret;
255 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
256 dfd, filename, flags);
258 if (filename == NULL) {
259 struct file *file;
260 int fput_needed;
262 ret = -EBADF;
263 file = fget_light(dfd, &fput_needed);
264 if (!file)
265 goto out;
267 ret = -ENOTDIR;
268 if ((flags & FAN_MARK_ONLYDIR) &&
269 !(S_ISDIR(file->f_path.dentry->d_inode->i_mode))) {
270 fput_light(file, fput_needed);
271 goto out;
274 *path = file->f_path;
275 path_get(path);
276 fput_light(file, fput_needed);
277 } else {
278 unsigned int lookup_flags = 0;
280 if (!(flags & FAN_MARK_DONT_FOLLOW))
281 lookup_flags |= LOOKUP_FOLLOW;
282 if (flags & FAN_MARK_ONLYDIR)
283 lookup_flags |= LOOKUP_DIRECTORY;
285 ret = user_path_at(dfd, filename, lookup_flags, path);
286 if (ret)
287 goto out;
290 /* you can only watch an inode if you have read permissions on it */
291 ret = inode_permission(path->dentry->d_inode, MAY_READ);
292 if (ret)
293 path_put(path);
294 out:
295 return ret;
298 static void fanotify_update_object_mask(struct fsnotify_group *group,
299 struct inode *inode,
300 struct vfsmount *mnt,
301 struct fsnotify_mark *fsn_mark,
302 unsigned int flags,
303 __u32 mask)
305 __u32 old_mask, new_mask;
307 pr_debug("%s: group=%p inode=%p mnt=%p fsn_mark=%p flags=%x mask=%x\n",
308 __func__, group, inode, mnt, fsn_mark, flags, mask);
310 spin_lock(&fsn_mark->lock);
311 old_mask = fsn_mark->mask;
312 if (flags & FAN_MARK_ADD)
313 fsn_mark->mask |= mask;
314 else if (flags & FAN_MARK_REMOVE)
315 fsn_mark->mask &= ~mask;
316 else
317 BUG();
318 new_mask = fsn_mark->mask;
319 spin_unlock(&fsn_mark->lock);
321 if (!new_mask)
322 fsnotify_destroy_mark(fsn_mark);
324 /* we made changes to a mask, update the group mask and the object mask
325 * so things happen quickly. */
326 if (old_mask != new_mask) {
327 __u32 dropped, do_object, do_group;
329 /* more bits in old than in new? */
330 dropped = (old_mask & ~new_mask);
331 /* more bits in this fsn_mark than the group? */
332 do_group = (new_mask & ~group->mask);
334 if (inode) {
335 /* more bits in this fsn_mark than the object's mask? */
336 do_object = (new_mask & ~inode->i_fsnotify_mask);
337 /* update the object with this new fsn_mark */
338 if (dropped || do_object)
339 fsnotify_recalc_inode_mask(inode);
340 } else if (mnt) {
341 /* more bits in this fsn_mark than the object's mask? */
342 do_object = (new_mask & ~mnt->mnt_fsnotify_mask);
343 /* update the object with this new fsn_mark */
344 if (dropped || do_object)
345 fsnotify_recalc_vfsmount_mask(mnt);
346 } else {
347 BUG();
350 /* update the group mask with the new mask */
351 if (dropped || do_group)
352 fsnotify_recalc_group_mask(group);
356 static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark, __u32 mask)
358 __u32 oldmask;
360 spin_lock(&fsn_mark->lock);
361 oldmask = fsn_mark->mask;
362 fsn_mark->mask = oldmask & ~mask;
363 spin_unlock(&fsn_mark->lock);
365 if (!(oldmask & ~mask))
366 fsnotify_destroy_mark(fsn_mark);
368 return mask & oldmask;
371 static int fanotify_remove_mark(struct fsnotify_group *group, struct inode *inode,
372 struct vfsmount *mnt, __u32 mask)
374 struct fsnotify_mark *fsn_mark = NULL;
375 __u32 removed;
377 BUG_ON(inode && mnt);
378 BUG_ON(!inode && !mnt);
380 if (inode)
381 fsn_mark = fsnotify_find_inode_mark(group, inode);
382 else if (mnt)
383 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
384 else
385 BUG();
387 if (!fsn_mark)
388 return -ENOENT;
390 removed = fanotify_mark_remove_from_mask(fsn_mark, mask);
391 /* matches the fsnotify_find_inode_mark() */
392 fsnotify_put_mark(fsn_mark);
394 if (removed & group->mask)
395 fsnotify_recalc_group_mask(group);
396 if (inode) {
397 if (removed & inode->i_fsnotify_mask)
398 fsnotify_recalc_inode_mask(inode);
399 } else if (mnt) {
400 if (removed & mnt->mnt_fsnotify_mask)
401 fsnotify_recalc_vfsmount_mask(mnt);
404 return 0;
407 static struct fsnotify_mark *fanotify_add_vfsmount_mark(struct fsnotify_group *group,
408 struct vfsmount *mnt)
410 struct fsnotify_mark *fsn_mark;
412 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
413 if (!fsn_mark) {
414 struct fsnotify_mark *new_fsn_mark;
415 int ret;
417 fsn_mark = ERR_PTR(-ENOMEM);
418 new_fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
419 if (!new_fsn_mark)
420 goto out;
422 fsnotify_init_mark(new_fsn_mark, fanotify_free_mark);
423 ret = fsnotify_add_mark(new_fsn_mark, group, NULL, mnt, 0);
424 if (ret) {
425 fsn_mark = ERR_PTR(ret);
426 fanotify_free_mark(new_fsn_mark);
427 goto out;
430 fsn_mark = new_fsn_mark;
432 out:
433 return fsn_mark;
436 static struct fsnotify_mark *fanotify_add_inode_mark(struct fsnotify_group *group,
437 struct inode *inode)
439 struct fsnotify_mark *fsn_mark;
441 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
443 fsn_mark = fsnotify_find_inode_mark(group, inode);
444 if (!fsn_mark) {
445 struct fsnotify_mark *new_fsn_mark;
446 int ret;
448 fsn_mark = ERR_PTR(-ENOMEM);
449 new_fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
450 if (!new_fsn_mark)
451 goto out;
453 fsnotify_init_mark(new_fsn_mark, fanotify_free_mark);
454 ret = fsnotify_add_mark(new_fsn_mark, group, inode, NULL, 0);
455 if (ret) {
456 fsn_mark = ERR_PTR(ret);
457 fanotify_free_mark(new_fsn_mark);
458 goto out;
461 fsn_mark = new_fsn_mark;
463 out:
464 return fsn_mark;
467 static int fanotify_add_mark(struct fsnotify_group *group, struct inode *inode,
468 struct vfsmount *mnt, unsigned int flags, __u32 mask)
470 struct fsnotify_mark *fsn_mark;
472 pr_debug("%s: group=%p inode=%p mnt=%p flags=%x mask=%x\n",
473 __func__, group, inode, mnt, flags, mask);
475 BUG_ON(inode && mnt);
476 BUG_ON(!inode && !mnt);
478 if (inode)
479 fsn_mark = fanotify_add_inode_mark(group, inode);
480 else if (mnt)
481 fsn_mark = fanotify_add_vfsmount_mark(group, mnt);
482 else
483 BUG();
485 if (IS_ERR(fsn_mark))
486 goto out;
488 fanotify_update_object_mask(group, inode, mnt, fsn_mark, flags, mask);
490 /* match the init or the find.... */
491 fsnotify_put_mark(fsn_mark);
492 out:
493 return PTR_ERR(fsn_mark);
496 static bool fanotify_mark_validate_input(int flags,
497 __u32 mask)
499 pr_debug("%s: flags=%x mask=%x\n", __func__, flags, mask);
501 /* are flags valid of this operation? */
502 if (!fanotify_mark_flags_valid(flags))
503 return false;
504 /* is the mask valid? */
505 if (!fanotify_mask_valid(mask))
506 return false;
507 return true;
510 /* fanotify syscalls */
511 SYSCALL_DEFINE3(fanotify_init, unsigned int, flags, unsigned int, event_f_flags,
512 unsigned int, priority)
514 struct fsnotify_group *group;
515 int f_flags, fd;
517 pr_debug("%s: flags=%d event_f_flags=%d priority=%d\n",
518 __func__, flags, event_f_flags, priority);
520 if (event_f_flags)
521 return -EINVAL;
522 if (priority)
523 return -EINVAL;
525 if (!capable(CAP_SYS_ADMIN))
526 return -EACCES;
528 if (flags & ~FAN_ALL_INIT_FLAGS)
529 return -EINVAL;
531 f_flags = (O_RDONLY | FMODE_NONOTIFY);
532 if (flags & FAN_CLOEXEC)
533 f_flags |= O_CLOEXEC;
534 if (flags & FAN_NONBLOCK)
535 f_flags |= O_NONBLOCK;
537 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
538 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
539 if (IS_ERR(group))
540 return PTR_ERR(group);
542 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
543 if (fd < 0)
544 goto out_put_group;
546 return fd;
548 out_put_group:
549 fsnotify_put_group(group);
550 return fd;
553 SYSCALL_DEFINE(fanotify_mark)(int fanotify_fd, unsigned int flags,
554 __u64 mask, int dfd,
555 const char __user * pathname)
557 struct inode *inode;
558 struct fsnotify_group *group;
559 struct file *filp;
560 struct path path;
561 int ret, fput_needed;
563 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
564 __func__, fanotify_fd, flags, dfd, pathname, mask);
566 /* we only use the lower 32 bits as of right now. */
567 if (mask & ((__u64)0xffffffff << 32))
568 return -EINVAL;
570 if (!fanotify_mark_validate_input(flags, mask))
571 return -EINVAL;
573 filp = fget_light(fanotify_fd, &fput_needed);
574 if (unlikely(!filp))
575 return -EBADF;
577 /* verify that this is indeed an fanotify instance */
578 ret = -EINVAL;
579 if (unlikely(filp->f_op != &fanotify_fops))
580 goto fput_and_out;
582 ret = fanotify_find_path(dfd, pathname, &path, flags);
583 if (ret)
584 goto fput_and_out;
586 /* inode held in place by reference to path; group by fget on fd */
587 inode = path.dentry->d_inode;
588 group = filp->private_data;
590 /* create/update an inode mark */
591 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE)) {
592 case FAN_MARK_ADD:
593 ret = fanotify_add_mark(group, inode, NULL, flags, mask);
594 break;
595 case FAN_MARK_REMOVE:
596 ret = fanotify_remove_mark(group, inode, NULL, mask);
597 break;
598 default:
599 ret = -EINVAL;
602 path_put(&path);
603 fput_and_out:
604 fput_light(filp, fput_needed);
605 return ret;
608 #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
609 asmlinkage long SyS_fanotify_mark(long fanotify_fd, long flags, __u64 mask,
610 long dfd, long pathname)
612 return SYSC_fanotify_mark((int) fanotify_fd, (unsigned int) flags,
613 mask, (int) dfd,
614 (const char __user *) pathname);
616 SYSCALL_ALIAS(sys_fanotify_mark, SyS_fanotify_mark);
617 #endif
620 * fanotify_user_setup - Our initialization function. Note that we cannnot return
621 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
622 * must result in panic().
624 static int __init fanotify_user_setup(void)
626 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
628 return 0;
630 device_initcall(fanotify_user_setup);