blob: ca54957b1f61e986ac2b4793e6be2146607e92eb [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
Eric Paris2529a0d2010-10-28 17:21:57 -040019#define FANOTIFY_DEFAULT_MAX_EVENTS 16384
Eric Parise7099d82010-10-28 17:21:57 -040020#define FANOTIFY_DEFAULT_MAX_MARKS 8192
Eric Paris4afeff82010-10-28 17:21:58 -040021#define FANOTIFY_DEFAULT_MAX_LISTENERS 128
Eric Paris2529a0d2010-10-28 17:21:57 -040022
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -050023extern const struct fsnotify_ops fanotify_fsnotify_ops;
Eric Paris11637e42009-12-17 21:24:25 -050024
Eric Paris2a3edf82009-12-17 21:24:26 -050025static struct kmem_cache *fanotify_mark_cache __read_mostly;
Eric Parisb2d87902009-12-17 21:24:34 -050026static struct kmem_cache *fanotify_response_event_cache __read_mostly;
27
28struct fanotify_response_event {
29 struct list_head list;
30 __s32 fd;
31 struct fsnotify_event *event;
32};
Eric Paris2a3edf82009-12-17 21:24:26 -050033
Eric Parisa1014f12009-12-17 21:24:26 -050034/*
35 * Get an fsnotify notification event if one exists and is small
36 * enough to fit in "count". Return an error pointer if the count
37 * is not large enough.
38 *
39 * Called with the group->notification_mutex held.
40 */
41static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
42 size_t count)
43{
44 BUG_ON(!mutex_is_locked(&group->notification_mutex));
45
46 pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
47
48 if (fsnotify_notify_queue_is_empty(group))
49 return NULL;
50
51 if (FAN_EVENT_METADATA_LEN > count)
52 return ERR_PTR(-EINVAL);
53
54 /* held the notification_mutex the whole time, so this is the
55 * same event we peeked above */
56 return fsnotify_remove_notify_event(group);
57}
58
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -050059static int create_fd(struct fsnotify_group *group, struct fsnotify_event *event)
Eric Parisa1014f12009-12-17 21:24:26 -050060{
61 int client_fd;
62 struct dentry *dentry;
63 struct vfsmount *mnt;
64 struct file *new_file;
65
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -050066 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
Eric Parisa1014f12009-12-17 21:24:26 -050067
68 client_fd = get_unused_fd();
69 if (client_fd < 0)
70 return client_fd;
71
Linus Torvalds20696012010-08-12 14:23:04 -070072 if (event->data_type != FSNOTIFY_EVENT_PATH) {
Eric Parisa1014f12009-12-17 21:24:26 -050073 WARN_ON(1);
74 put_unused_fd(client_fd);
75 return -EINVAL;
76 }
77
78 /*
79 * we need a new file handle for the userspace program so it can read even if it was
80 * originally opened O_WRONLY.
81 */
Linus Torvalds20696012010-08-12 14:23:04 -070082 dentry = dget(event->path.dentry);
83 mnt = mntget(event->path.mnt);
Eric Parisa1014f12009-12-17 21:24:26 -050084 /* it's possible this event was an overflow event. in that case dentry and mnt
85 * are NULL; That's fine, just don't call dentry open */
86 if (dentry && mnt)
87 new_file = dentry_open(dentry, mnt,
Eric Paris80af2582010-07-28 10:18:37 -040088 group->fanotify_data.f_flags | FMODE_NONOTIFY,
Eric Parisa1014f12009-12-17 21:24:26 -050089 current_cred());
90 else
91 new_file = ERR_PTR(-EOVERFLOW);
92 if (IS_ERR(new_file)) {
93 /*
94 * we still send an event even if we can't open the file. this
95 * can happen when say tasks are gone and we try to open their
96 * /proc files or we try to open a WRONLY file like in sysfs
97 * we just send the errno to userspace since there isn't much
98 * else we can do.
99 */
100 put_unused_fd(client_fd);
101 client_fd = PTR_ERR(new_file);
102 } else {
103 fd_install(client_fd, new_file);
104 }
105
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -0500106 return client_fd;
Eric Parisa1014f12009-12-17 21:24:26 -0500107}
108
Eric Parisecf6f5e2010-11-08 18:08:14 -0500109static int fill_event_metadata(struct fsnotify_group *group,
Eric Parisa1014f12009-12-17 21:24:26 -0500110 struct fanotify_event_metadata *metadata,
111 struct fsnotify_event *event)
112{
113 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
114 group, metadata, event);
115
116 metadata->event_len = FAN_EVENT_METADATA_LEN;
117 metadata->vers = FANOTIFY_METADATA_VERSION;
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -0500118 metadata->mask = event->mask & FAN_ALL_OUTGOING_EVENTS;
Andreas Gruenbacher32c32632009-12-17 21:24:27 -0500119 metadata->pid = pid_vnr(event->tgid);
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -0500120 metadata->fd = create_fd(group, event);
Eric Parisa1014f12009-12-17 21:24:26 -0500121
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -0500122 return metadata->fd;
Eric Parisa1014f12009-12-17 21:24:26 -0500123}
124
Eric Parisb2d87902009-12-17 21:24:34 -0500125#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
126static struct fanotify_response_event *dequeue_re(struct fsnotify_group *group,
127 __s32 fd)
128{
129 struct fanotify_response_event *re, *return_re = NULL;
130
131 mutex_lock(&group->fanotify_data.access_mutex);
132 list_for_each_entry(re, &group->fanotify_data.access_list, list) {
133 if (re->fd != fd)
134 continue;
135
136 list_del_init(&re->list);
137 return_re = re;
138 break;
139 }
140 mutex_unlock(&group->fanotify_data.access_mutex);
141
142 pr_debug("%s: found return_re=%p\n", __func__, return_re);
143
144 return return_re;
145}
146
147static int process_access_response(struct fsnotify_group *group,
148 struct fanotify_response *response_struct)
149{
150 struct fanotify_response_event *re;
151 __s32 fd = response_struct->fd;
152 __u32 response = response_struct->response;
153
154 pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group,
155 fd, response);
156 /*
157 * make sure the response is valid, if invalid we do nothing and either
158 * userspace can send a valid responce or we will clean it up after the
159 * timeout
160 */
161 switch (response) {
162 case FAN_ALLOW:
163 case FAN_DENY:
164 break;
165 default:
166 return -EINVAL;
167 }
168
169 if (fd < 0)
170 return -EINVAL;
171
172 re = dequeue_re(group, fd);
173 if (!re)
174 return -ENOENT;
175
176 re->event->response = response;
177
178 wake_up(&group->fanotify_data.access_waitq);
179
180 kmem_cache_free(fanotify_response_event_cache, re);
181
182 return 0;
183}
184
185static int prepare_for_access_response(struct fsnotify_group *group,
186 struct fsnotify_event *event,
187 __s32 fd)
188{
189 struct fanotify_response_event *re;
190
191 if (!(event->mask & FAN_ALL_PERM_EVENTS))
192 return 0;
193
194 re = kmem_cache_alloc(fanotify_response_event_cache, GFP_KERNEL);
195 if (!re)
196 return -ENOMEM;
197
198 re->event = event;
199 re->fd = fd;
200
201 mutex_lock(&group->fanotify_data.access_mutex);
Eric Paris2eebf582010-08-18 12:25:50 -0400202
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100203 if (atomic_read(&group->fanotify_data.bypass_perm)) {
Eric Paris2eebf582010-08-18 12:25:50 -0400204 mutex_unlock(&group->fanotify_data.access_mutex);
205 kmem_cache_free(fanotify_response_event_cache, re);
206 event->response = FAN_ALLOW;
207 return 0;
208 }
209
Eric Parisb2d87902009-12-17 21:24:34 -0500210 list_add_tail(&re->list, &group->fanotify_data.access_list);
211 mutex_unlock(&group->fanotify_data.access_mutex);
212
213 return 0;
214}
215
216static void remove_access_response(struct fsnotify_group *group,
217 struct fsnotify_event *event,
218 __s32 fd)
219{
220 struct fanotify_response_event *re;
221
222 if (!(event->mask & FAN_ALL_PERM_EVENTS))
223 return;
224
225 re = dequeue_re(group, fd);
226 if (!re)
227 return;
228
229 BUG_ON(re->event != event);
230
231 kmem_cache_free(fanotify_response_event_cache, re);
232
233 return;
234}
235#else
236static int prepare_for_access_response(struct fsnotify_group *group,
237 struct fsnotify_event *event,
238 __s32 fd)
239{
240 return 0;
241}
242
243static void remove_access_response(struct fsnotify_group *group,
244 struct fsnotify_event *event,
245 __s32 fd)
246{
Eric Paris8860f062009-12-23 00:10:25 -0500247 return;
Eric Parisb2d87902009-12-17 21:24:34 -0500248}
249#endif
250
Eric Parisa1014f12009-12-17 21:24:26 -0500251static ssize_t copy_event_to_user(struct fsnotify_group *group,
252 struct fsnotify_event *event,
253 char __user *buf)
254{
255 struct fanotify_event_metadata fanotify_event_metadata;
Eric Parisb2d87902009-12-17 21:24:34 -0500256 int fd, ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500257
258 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
259
Eric Parisecf6f5e2010-11-08 18:08:14 -0500260 ret = fill_event_metadata(group, &fanotify_event_metadata, event);
261 if (ret < 0)
262 goto out;
Eric Parisa1014f12009-12-17 21:24:26 -0500263
Eric Parisecf6f5e2010-11-08 18:08:14 -0500264 fd = ret;
Eric Parisb2d87902009-12-17 21:24:34 -0500265 ret = prepare_for_access_response(group, event, fd);
266 if (ret)
267 goto out_close_fd;
268
269 ret = -EFAULT;
Eric Parisa1014f12009-12-17 21:24:26 -0500270 if (copy_to_user(buf, &fanotify_event_metadata, FAN_EVENT_METADATA_LEN))
Eric Parisb2d87902009-12-17 21:24:34 -0500271 goto out_kill_access_response;
Eric Parisa1014f12009-12-17 21:24:26 -0500272
273 return FAN_EVENT_METADATA_LEN;
Eric Parisb2d87902009-12-17 21:24:34 -0500274
275out_kill_access_response:
276 remove_access_response(group, event, fd);
277out_close_fd:
278 sys_close(fd);
Eric Parisecf6f5e2010-11-08 18:08:14 -0500279out:
280#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
281 if (event->mask & FAN_ALL_PERM_EVENTS) {
282 event->response = FAN_DENY;
283 wake_up(&group->fanotify_data.access_waitq);
284 }
285#endif
Eric Parisb2d87902009-12-17 21:24:34 -0500286 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500287}
288
289/* intofiy userspace file descriptor functions */
290static unsigned int fanotify_poll(struct file *file, poll_table *wait)
291{
292 struct fsnotify_group *group = file->private_data;
293 int ret = 0;
294
295 poll_wait(file, &group->notification_waitq, wait);
296 mutex_lock(&group->notification_mutex);
297 if (!fsnotify_notify_queue_is_empty(group))
298 ret = POLLIN | POLLRDNORM;
299 mutex_unlock(&group->notification_mutex);
300
301 return ret;
302}
303
304static ssize_t fanotify_read(struct file *file, char __user *buf,
305 size_t count, loff_t *pos)
306{
307 struct fsnotify_group *group;
308 struct fsnotify_event *kevent;
309 char __user *start;
310 int ret;
311 DEFINE_WAIT(wait);
312
313 start = buf;
314 group = file->private_data;
315
316 pr_debug("%s: group=%p\n", __func__, group);
317
318 while (1) {
319 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
320
321 mutex_lock(&group->notification_mutex);
322 kevent = get_one_event(group, count);
323 mutex_unlock(&group->notification_mutex);
324
325 if (kevent) {
326 ret = PTR_ERR(kevent);
327 if (IS_ERR(kevent))
328 break;
329 ret = copy_event_to_user(group, kevent, buf);
330 fsnotify_put_event(kevent);
331 if (ret < 0)
332 break;
333 buf += ret;
334 count -= ret;
335 continue;
336 }
337
338 ret = -EAGAIN;
339 if (file->f_flags & O_NONBLOCK)
340 break;
Lino Sanfilippo1a5cea72010-10-29 12:06:42 +0200341 ret = -ERESTARTSYS;
Eric Parisa1014f12009-12-17 21:24:26 -0500342 if (signal_pending(current))
343 break;
344
345 if (start != buf)
346 break;
347
348 schedule();
349 }
350
351 finish_wait(&group->notification_waitq, &wait);
352 if (start != buf && ret != -EFAULT)
353 ret = buf - start;
354 return ret;
355}
356
Eric Parisb2d87902009-12-17 21:24:34 -0500357static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
358{
359#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
360 struct fanotify_response response = { .fd = -1, .response = -1 };
361 struct fsnotify_group *group;
362 int ret;
363
364 group = file->private_data;
365
366 if (count > sizeof(response))
367 count = sizeof(response);
368
369 pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
370
371 if (copy_from_user(&response, buf, count))
372 return -EFAULT;
373
374 ret = process_access_response(group, &response);
375 if (ret < 0)
376 count = ret;
377
378 return count;
379#else
380 return -EINVAL;
381#endif
382}
383
Eric Paris52c923d2009-12-17 21:24:26 -0500384static int fanotify_release(struct inode *ignored, struct file *file)
385{
386 struct fsnotify_group *group = file->private_data;
Eric Paris52c923d2009-12-17 21:24:26 -0500387
Eric Paris2eebf582010-08-18 12:25:50 -0400388#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Andrew Morton19ba54f2010-10-28 17:21:59 -0400389 struct fanotify_response_event *re, *lre;
390
Eric Paris2eebf582010-08-18 12:25:50 -0400391 mutex_lock(&group->fanotify_data.access_mutex);
392
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100393 atomic_inc(&group->fanotify_data.bypass_perm);
Eric Paris2eebf582010-08-18 12:25:50 -0400394
395 list_for_each_entry_safe(re, lre, &group->fanotify_data.access_list, list) {
396 pr_debug("%s: found group=%p re=%p event=%p\n", __func__, group,
397 re, re->event);
398
399 list_del_init(&re->list);
400 re->event->response = FAN_ALLOW;
401
402 kmem_cache_free(fanotify_response_event_cache, re);
403 }
404 mutex_unlock(&group->fanotify_data.access_mutex);
405
406 wake_up(&group->fanotify_data.access_waitq);
407#endif
Eric Paris52c923d2009-12-17 21:24:26 -0500408 /* matches the fanotify_init->fsnotify_alloc_group */
409 fsnotify_put_group(group);
410
411 return 0;
412}
413
Eric Parisa1014f12009-12-17 21:24:26 -0500414static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
415{
416 struct fsnotify_group *group;
417 struct fsnotify_event_holder *holder;
418 void __user *p;
419 int ret = -ENOTTY;
420 size_t send_len = 0;
421
422 group = file->private_data;
423
424 p = (void __user *) arg;
425
426 switch (cmd) {
427 case FIONREAD:
428 mutex_lock(&group->notification_mutex);
429 list_for_each_entry(holder, &group->notification_list, event_list)
430 send_len += FAN_EVENT_METADATA_LEN;
431 mutex_unlock(&group->notification_mutex);
432 ret = put_user(send_len, (int __user *) p);
433 break;
434 }
435
436 return ret;
437}
438
Eric Paris52c923d2009-12-17 21:24:26 -0500439static const struct file_operations fanotify_fops = {
Eric Parisa1014f12009-12-17 21:24:26 -0500440 .poll = fanotify_poll,
441 .read = fanotify_read,
Eric Parisb2d87902009-12-17 21:24:34 -0500442 .write = fanotify_write,
Eric Paris52c923d2009-12-17 21:24:26 -0500443 .fasync = NULL,
444 .release = fanotify_release,
Eric Parisa1014f12009-12-17 21:24:26 -0500445 .unlocked_ioctl = fanotify_ioctl,
446 .compat_ioctl = fanotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200447 .llseek = noop_llseek,
Eric Paris52c923d2009-12-17 21:24:26 -0500448};
449
Eric Paris2a3edf82009-12-17 21:24:26 -0500450static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
451{
452 kmem_cache_free(fanotify_mark_cache, fsn_mark);
453}
454
455static int fanotify_find_path(int dfd, const char __user *filename,
456 struct path *path, unsigned int flags)
457{
458 int ret;
459
460 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
461 dfd, filename, flags);
462
463 if (filename == NULL) {
464 struct file *file;
465 int fput_needed;
466
467 ret = -EBADF;
468 file = fget_light(dfd, &fput_needed);
469 if (!file)
470 goto out;
471
472 ret = -ENOTDIR;
473 if ((flags & FAN_MARK_ONLYDIR) &&
474 !(S_ISDIR(file->f_path.dentry->d_inode->i_mode))) {
475 fput_light(file, fput_needed);
476 goto out;
477 }
478
479 *path = file->f_path;
480 path_get(path);
481 fput_light(file, fput_needed);
482 } else {
483 unsigned int lookup_flags = 0;
484
485 if (!(flags & FAN_MARK_DONT_FOLLOW))
486 lookup_flags |= LOOKUP_FOLLOW;
487 if (flags & FAN_MARK_ONLYDIR)
488 lookup_flags |= LOOKUP_DIRECTORY;
489
490 ret = user_path_at(dfd, filename, lookup_flags, path);
491 if (ret)
492 goto out;
493 }
494
495 /* you can only watch an inode if you have read permissions on it */
496 ret = inode_permission(path->dentry->d_inode, MAY_READ);
497 if (ret)
498 path_put(path);
499out:
500 return ret;
501}
502
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500503static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
504 __u32 mask,
505 unsigned int flags)
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500506{
507 __u32 oldmask;
508
509 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500510 if (!(flags & FAN_MARK_IGNORED_MASK)) {
511 oldmask = fsn_mark->mask;
512 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask));
513 } else {
514 oldmask = fsn_mark->ignored_mask;
515 fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask));
516 }
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500517 spin_unlock(&fsn_mark->lock);
518
519 if (!(oldmask & ~mask))
520 fsnotify_destroy_mark(fsn_mark);
521
522 return mask & oldmask;
523}
524
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500525static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500526 struct vfsmount *mnt, __u32 mask,
527 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500528{
529 struct fsnotify_mark *fsn_mark = NULL;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500530 __u32 removed;
Eric Paris88826272009-12-17 21:24:28 -0500531
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500532 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
533 if (!fsn_mark)
534 return -ENOENT;
Eric Paris88826272009-12-17 21:24:28 -0500535
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500536 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500537 fsnotify_put_mark(fsn_mark);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500538 if (removed & mnt->mnt_fsnotify_mask)
539 fsnotify_recalc_vfsmount_mask(mnt);
Eric Paris88826272009-12-17 21:24:28 -0500540
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500541 return 0;
542}
543
544static int fanotify_remove_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500545 struct inode *inode, __u32 mask,
546 unsigned int flags)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500547{
548 struct fsnotify_mark *fsn_mark = NULL;
549 __u32 removed;
550
551 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris88826272009-12-17 21:24:28 -0500552 if (!fsn_mark)
553 return -ENOENT;
554
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500555 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags);
Eric Paris5444e292009-12-17 21:24:27 -0500556 /* matches the fsnotify_find_inode_mark() */
Eric Paris2a3edf82009-12-17 21:24:26 -0500557 fsnotify_put_mark(fsn_mark);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500558 if (removed & inode->i_fsnotify_mask)
559 fsnotify_recalc_inode_mask(inode);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500560
Eric Paris2a3edf82009-12-17 21:24:26 -0500561 return 0;
562}
563
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500564static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
565 __u32 mask,
566 unsigned int flags)
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500567{
Eric Paris192ca4d2010-10-28 17:21:59 -0400568 __u32 oldmask = -1;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500569
570 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500571 if (!(flags & FAN_MARK_IGNORED_MASK)) {
572 oldmask = fsn_mark->mask;
573 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask | mask));
574 } else {
Eric Paris192ca4d2010-10-28 17:21:59 -0400575 __u32 tmask = fsn_mark->ignored_mask | mask;
576 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
Eric Parisc9778a92009-12-17 21:24:33 -0500577 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
578 fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500579 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400580
581 if (!(flags & FAN_MARK_ONDIR)) {
582 __u32 tmask = fsn_mark->ignored_mask | FAN_ONDIR;
583 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
584 }
585
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500586 spin_unlock(&fsn_mark->lock);
587
588 return mask & ~oldmask;
589}
590
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500591static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500592 struct vfsmount *mnt, __u32 mask,
593 unsigned int flags)
Eric Paris2a3edf82009-12-17 21:24:26 -0500594{
595 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500596 __u32 added;
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100597 int ret = 0;
Eric Paris2a3edf82009-12-17 21:24:26 -0500598
Eric Paris88826272009-12-17 21:24:28 -0500599 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
600 if (!fsn_mark) {
Eric Parise7099d82010-10-28 17:21:57 -0400601 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
602 return -ENOSPC;
603
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500604 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
605 if (!fsn_mark)
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500606 return -ENOMEM;
Eric Paris88826272009-12-17 21:24:28 -0500607
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500608 fsnotify_init_mark(fsn_mark, fanotify_free_mark);
609 ret = fsnotify_add_mark(fsn_mark, group, NULL, mnt, 0);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100610 if (ret)
611 goto err;
Eric Paris88826272009-12-17 21:24:28 -0500612 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500613 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100614
Eric Paris43709a22010-07-28 10:18:39 -0400615 if (added & ~mnt->mnt_fsnotify_mask)
616 fsnotify_recalc_vfsmount_mask(mnt);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100617err:
618 fsnotify_put_mark(fsn_mark);
619 return ret;
Eric Paris88826272009-12-17 21:24:28 -0500620}
621
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500622static int fanotify_add_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500623 struct inode *inode, __u32 mask,
624 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500625{
626 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500627 __u32 added;
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100628 int ret = 0;
Eric Paris88826272009-12-17 21:24:28 -0500629
630 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500631
Eric Paris5322a592010-10-28 17:21:57 -0400632 /*
633 * If some other task has this inode open for write we should not add
634 * an ignored mark, unless that ignored mark is supposed to survive
635 * modification changes anyway.
636 */
637 if ((flags & FAN_MARK_IGNORED_MASK) &&
638 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
639 (atomic_read(&inode->i_writecount) > 0))
640 return 0;
641
Eric Paris5444e292009-12-17 21:24:27 -0500642 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500643 if (!fsn_mark) {
Eric Parise7099d82010-10-28 17:21:57 -0400644 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
645 return -ENOSPC;
646
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500647 fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
648 if (!fsn_mark)
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500649 return -ENOMEM;
Eric Paris2a3edf82009-12-17 21:24:26 -0500650
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500651 fsnotify_init_mark(fsn_mark, fanotify_free_mark);
652 ret = fsnotify_add_mark(fsn_mark, group, inode, NULL, 0);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100653 if (ret)
654 goto err;
Eric Paris2a3edf82009-12-17 21:24:26 -0500655 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500656 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100657
Eric Paris43709a22010-07-28 10:18:39 -0400658 if (added & ~inode->i_fsnotify_mask)
659 fsnotify_recalc_inode_mask(inode);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100660err:
661 fsnotify_put_mark(fsn_mark);
662 return ret;
Eric Paris88826272009-12-17 21:24:28 -0500663}
Eric Paris2a3edf82009-12-17 21:24:26 -0500664
Eric Paris52c923d2009-12-17 21:24:26 -0500665/* fanotify syscalls */
Eric Paris08ae8932010-05-27 09:41:40 -0400666SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
Eric Paris11637e42009-12-17 21:24:25 -0500667{
Eric Paris52c923d2009-12-17 21:24:26 -0500668 struct fsnotify_group *group;
669 int f_flags, fd;
Eric Paris4afeff82010-10-28 17:21:58 -0400670 struct user_struct *user;
Eric Paris52c923d2009-12-17 21:24:26 -0500671
Eric Paris08ae8932010-05-27 09:41:40 -0400672 pr_debug("%s: flags=%d event_f_flags=%d\n",
673 __func__, flags, event_f_flags);
Eric Paris52c923d2009-12-17 21:24:26 -0500674
Eric Paris52c923d2009-12-17 21:24:26 -0500675 if (!capable(CAP_SYS_ADMIN))
Andreas Gruenbachera2f13ad2010-08-24 12:58:54 +0200676 return -EPERM;
Eric Paris52c923d2009-12-17 21:24:26 -0500677
678 if (flags & ~FAN_ALL_INIT_FLAGS)
679 return -EINVAL;
680
Eric Paris4afeff82010-10-28 17:21:58 -0400681 user = get_current_user();
682 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
683 free_uid(user);
684 return -EMFILE;
685 }
686
Eric Parisb2d87902009-12-17 21:24:34 -0500687 f_flags = O_RDWR | FMODE_NONOTIFY;
Eric Paris52c923d2009-12-17 21:24:26 -0500688 if (flags & FAN_CLOEXEC)
689 f_flags |= O_CLOEXEC;
690 if (flags & FAN_NONBLOCK)
691 f_flags |= O_NONBLOCK;
692
693 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
694 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
Eric Paris26379192010-11-23 23:48:26 -0500695 if (IS_ERR(group)) {
696 free_uid(user);
Eric Paris52c923d2009-12-17 21:24:26 -0500697 return PTR_ERR(group);
Eric Paris26379192010-11-23 23:48:26 -0500698 }
Eric Paris52c923d2009-12-17 21:24:26 -0500699
Eric Paris4afeff82010-10-28 17:21:58 -0400700 group->fanotify_data.user = user;
701 atomic_inc(&user->fanotify_listeners);
702
Eric Paris80af2582010-07-28 10:18:37 -0400703 group->fanotify_data.f_flags = event_f_flags;
Eric Paris9e66e422009-12-17 21:24:34 -0500704#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
705 mutex_init(&group->fanotify_data.access_mutex);
706 init_waitqueue_head(&group->fanotify_data.access_waitq);
707 INIT_LIST_HEAD(&group->fanotify_data.access_list);
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100708 atomic_set(&group->fanotify_data.bypass_perm, 0);
Eric Paris9e66e422009-12-17 21:24:34 -0500709#endif
Eric Paris4231a232010-10-28 17:21:56 -0400710 switch (flags & FAN_ALL_CLASS_BITS) {
711 case FAN_CLASS_NOTIF:
712 group->priority = FS_PRIO_0;
713 break;
714 case FAN_CLASS_CONTENT:
715 group->priority = FS_PRIO_1;
716 break;
717 case FAN_CLASS_PRE_CONTENT:
718 group->priority = FS_PRIO_2;
719 break;
720 default:
721 fd = -EINVAL;
722 goto out_put_group;
723 }
Eric Pariscb2d4292009-12-17 21:24:34 -0500724
Eric Paris5dd03f52010-10-28 17:21:57 -0400725 if (flags & FAN_UNLIMITED_QUEUE) {
726 fd = -EPERM;
727 if (!capable(CAP_SYS_ADMIN))
728 goto out_put_group;
729 group->max_events = UINT_MAX;
730 } else {
731 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
732 }
Eric Paris2529a0d2010-10-28 17:21:57 -0400733
Eric Parisac7e22d2010-10-28 17:21:58 -0400734 if (flags & FAN_UNLIMITED_MARKS) {
735 fd = -EPERM;
736 if (!capable(CAP_SYS_ADMIN))
737 goto out_put_group;
738 group->fanotify_data.max_marks = UINT_MAX;
739 } else {
740 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
741 }
Eric Parise7099d82010-10-28 17:21:57 -0400742
Eric Paris52c923d2009-12-17 21:24:26 -0500743 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
744 if (fd < 0)
745 goto out_put_group;
746
747 return fd;
748
749out_put_group:
750 fsnotify_put_group(group);
751 return fd;
Eric Paris11637e42009-12-17 21:24:25 -0500752}
Eric Parisbbaa4162009-12-17 21:24:26 -0500753
Heiko Carstens9bbfc962009-12-17 21:24:26 -0500754SYSCALL_DEFINE(fanotify_mark)(int fanotify_fd, unsigned int flags,
755 __u64 mask, int dfd,
756 const char __user * pathname)
Eric Parisbbaa4162009-12-17 21:24:26 -0500757{
Eric Paris0ff21db2009-12-17 21:24:29 -0500758 struct inode *inode = NULL;
759 struct vfsmount *mnt = NULL;
Eric Paris2a3edf82009-12-17 21:24:26 -0500760 struct fsnotify_group *group;
761 struct file *filp;
762 struct path path;
763 int ret, fput_needed;
764
765 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
766 __func__, fanotify_fd, flags, dfd, pathname, mask);
767
768 /* we only use the lower 32 bits as of right now. */
769 if (mask & ((__u64)0xffffffff << 32))
770 return -EINVAL;
771
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500772 if (flags & ~FAN_ALL_MARK_FLAGS)
773 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500774 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100775 case FAN_MARK_ADD: /* fallthrough */
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500776 case FAN_MARK_REMOVE:
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100777 if (!mask)
778 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500779 case FAN_MARK_FLUSH:
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500780 break;
781 default:
782 return -EINVAL;
783 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400784
785 if (mask & FAN_ONDIR) {
786 flags |= FAN_MARK_ONDIR;
787 mask &= ~FAN_ONDIR;
788 }
789
Eric Parisb2d87902009-12-17 21:24:34 -0500790#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
791 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
792#else
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500793 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
Eric Parisb2d87902009-12-17 21:24:34 -0500794#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500795 return -EINVAL;
796
797 filp = fget_light(fanotify_fd, &fput_needed);
798 if (unlikely(!filp))
799 return -EBADF;
800
801 /* verify that this is indeed an fanotify instance */
802 ret = -EINVAL;
803 if (unlikely(filp->f_op != &fanotify_fops))
804 goto fput_and_out;
Eric Paris4231a232010-10-28 17:21:56 -0400805 group = filp->private_data;
806
807 /*
808 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
809 * allowed to set permissions events.
810 */
811 ret = -EINVAL;
812 if (mask & FAN_ALL_PERM_EVENTS &&
813 group->priority == FS_PRIO_0)
814 goto fput_and_out;
Eric Paris2a3edf82009-12-17 21:24:26 -0500815
816 ret = fanotify_find_path(dfd, pathname, &path, flags);
817 if (ret)
818 goto fput_and_out;
819
820 /* inode held in place by reference to path; group by fget on fd */
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500821 if (!(flags & FAN_MARK_MOUNT))
Eric Paris0ff21db2009-12-17 21:24:29 -0500822 inode = path.dentry->d_inode;
823 else
824 mnt = path.mnt;
Eric Paris2a3edf82009-12-17 21:24:26 -0500825
826 /* create/update an inode mark */
Eric Paris4d926042009-12-17 21:24:34 -0500827 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500828 case FAN_MARK_ADD:
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500829 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500830 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
Eric Paris0ff21db2009-12-17 21:24:29 -0500831 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500832 ret = fanotify_add_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500833 break;
834 case FAN_MARK_REMOVE:
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500835 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500836 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500837 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500838 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500839 break;
Eric Paris4d926042009-12-17 21:24:34 -0500840 case FAN_MARK_FLUSH:
841 if (flags & FAN_MARK_MOUNT)
842 fsnotify_clear_vfsmount_marks_by_group(group);
843 else
844 fsnotify_clear_inode_marks_by_group(group);
Eric Paris4d926042009-12-17 21:24:34 -0500845 break;
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500846 default:
847 ret = -EINVAL;
848 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500849
850 path_put(&path);
851fput_and_out:
852 fput_light(filp, fput_needed);
853 return ret;
Eric Parisbbaa4162009-12-17 21:24:26 -0500854}
Eric Paris2a3edf82009-12-17 21:24:26 -0500855
Heiko Carstens9bbfc962009-12-17 21:24:26 -0500856#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
857asmlinkage long SyS_fanotify_mark(long fanotify_fd, long flags, __u64 mask,
858 long dfd, long pathname)
859{
860 return SYSC_fanotify_mark((int) fanotify_fd, (unsigned int) flags,
861 mask, (int) dfd,
862 (const char __user *) pathname);
863}
864SYSCALL_ALIAS(sys_fanotify_mark, SyS_fanotify_mark);
865#endif
866
Eric Paris2a3edf82009-12-17 21:24:26 -0500867/*
868 * fanotify_user_setup - Our initialization function. Note that we cannnot return
869 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
870 * must result in panic().
871 */
872static int __init fanotify_user_setup(void)
873{
874 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
Eric Parisb2d87902009-12-17 21:24:34 -0500875 fanotify_response_event_cache = KMEM_CACHE(fanotify_response_event,
876 SLAB_PANIC);
Eric Paris2a3edf82009-12-17 21:24:26 -0500877
878 return 0;
879}
880device_initcall(fanotify_user_setup);