blob: 287a22c041496a206d94daa299be55a20b4786a2 [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"
Jan Kara7053aee2014-01-21 15:48:14 -080022#include "fanotify.h"
Al Viroc63181e2011-11-25 02:35:16 -050023
Eric Paris2529a0d2010-10-28 17:21:57 -040024#define FANOTIFY_DEFAULT_MAX_EVENTS 16384
Eric Parise7099d82010-10-28 17:21:57 -040025#define FANOTIFY_DEFAULT_MAX_MARKS 8192
Eric Paris4afeff82010-10-28 17:21:58 -040026#define FANOTIFY_DEFAULT_MAX_LISTENERS 128
Eric Paris2529a0d2010-10-28 17:21:57 -040027
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -050028extern const struct fsnotify_ops fanotify_fsnotify_ops;
Eric Paris11637e42009-12-17 21:24:25 -050029
Eric Paris2a3edf82009-12-17 21:24:26 -050030static struct kmem_cache *fanotify_mark_cache __read_mostly;
Eric Parisb2d87902009-12-17 21:24:34 -050031static struct kmem_cache *fanotify_response_event_cache __read_mostly;
Jan Kara7053aee2014-01-21 15:48:14 -080032struct kmem_cache *fanotify_event_cachep __read_mostly;
Eric Parisb2d87902009-12-17 21:24:34 -050033
34struct fanotify_response_event {
35 struct list_head list;
36 __s32 fd;
Jan Kara7053aee2014-01-21 15:48:14 -080037 struct fanotify_event_info *event;
Eric Parisb2d87902009-12-17 21:24:34 -050038};
Eric Paris2a3edf82009-12-17 21:24:26 -050039
Eric Parisa1014f12009-12-17 21:24:26 -050040/*
41 * Get an fsnotify notification event if one exists and is small
42 * enough to fit in "count". Return an error pointer if the count
43 * is not large enough.
44 *
45 * Called with the group->notification_mutex held.
46 */
47static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
48 size_t count)
49{
50 BUG_ON(!mutex_is_locked(&group->notification_mutex));
51
52 pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
53
54 if (fsnotify_notify_queue_is_empty(group))
55 return NULL;
56
57 if (FAN_EVENT_METADATA_LEN > count)
58 return ERR_PTR(-EINVAL);
59
60 /* held the notification_mutex the whole time, so this is the
61 * same event we peeked above */
62 return fsnotify_remove_notify_event(group);
63}
64
Al Viro352e3b22012-08-19 12:30:45 -040065static int create_fd(struct fsnotify_group *group,
Jan Kara7053aee2014-01-21 15:48:14 -080066 struct fanotify_event_info *event,
67 struct file **file)
Eric Parisa1014f12009-12-17 21:24:26 -050068{
69 int client_fd;
Eric Parisa1014f12009-12-17 21:24:26 -050070 struct file *new_file;
71
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -050072 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
Eric Parisa1014f12009-12-17 21:24:26 -050073
74 client_fd = get_unused_fd();
75 if (client_fd < 0)
76 return client_fd;
77
Eric Parisa1014f12009-12-17 21:24:26 -050078 /*
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 */
Eric Parisa1014f12009-12-17 21:24:26 -050082 /* it's possible this event was an overflow event. in that case dentry and mnt
83 * are NULL; That's fine, just don't call dentry open */
Al Viro765927b2012-06-26 21:58:53 +040084 if (event->path.dentry && event->path.mnt)
85 new_file = dentry_open(&event->path,
Eric Paris80af2582010-07-28 10:18:37 -040086 group->fanotify_data.f_flags | FMODE_NONOTIFY,
Eric Parisa1014f12009-12-17 21:24:26 -050087 current_cred());
88 else
89 new_file = ERR_PTR(-EOVERFLOW);
90 if (IS_ERR(new_file)) {
91 /*
92 * we still send an event even if we can't open the file. this
93 * can happen when say tasks are gone and we try to open their
94 * /proc files or we try to open a WRONLY file like in sysfs
95 * we just send the errno to userspace since there isn't much
96 * else we can do.
97 */
98 put_unused_fd(client_fd);
99 client_fd = PTR_ERR(new_file);
100 } else {
Al Viro352e3b22012-08-19 12:30:45 -0400101 *file = new_file;
Eric Parisa1014f12009-12-17 21:24:26 -0500102 }
103
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -0500104 return client_fd;
Eric Parisa1014f12009-12-17 21:24:26 -0500105}
106
Eric Parisecf6f5e2010-11-08 18:08:14 -0500107static int fill_event_metadata(struct fsnotify_group *group,
Jan Kara7053aee2014-01-21 15:48:14 -0800108 struct fanotify_event_metadata *metadata,
109 struct fsnotify_event *fsn_event,
110 struct file **file)
Eric Parisa1014f12009-12-17 21:24:26 -0500111{
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100112 int ret = 0;
Jan Kara7053aee2014-01-21 15:48:14 -0800113 struct fanotify_event_info *event;
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100114
Eric Parisa1014f12009-12-17 21:24:26 -0500115 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
Jan Kara7053aee2014-01-21 15:48:14 -0800116 group, metadata, fsn_event);
Eric Parisa1014f12009-12-17 21:24:26 -0500117
Al Viro352e3b22012-08-19 12:30:45 -0400118 *file = NULL;
Jan Kara7053aee2014-01-21 15:48:14 -0800119 event = container_of(fsn_event, struct fanotify_event_info, fse);
Eric Parisa1014f12009-12-17 21:24:26 -0500120 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 Carpenterde1e0c42013-07-08 15:59:40 -0700123 metadata->reserved = 0;
Jan Kara7053aee2014-01-21 15:48:14 -0800124 metadata->mask = fsn_event->mask & FAN_ALL_OUTGOING_EVENTS;
Andreas Gruenbacher32c32632009-12-17 21:24:27 -0500125 metadata->pid = pid_vnr(event->tgid);
Jan Kara7053aee2014-01-21 15:48:14 -0800126 if (unlikely(fsn_event->mask & FAN_Q_OVERFLOW))
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100127 metadata->fd = FAN_NOFD;
128 else {
Al Viro352e3b22012-08-19 12:30:45 -0400129 metadata->fd = create_fd(group, event, file);
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100130 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
Jan Kara7053aee2014-01-21 15:48:14 -0800210 re->event = FANOTIFY_E(event);
Eric Parisb2d87902009-12-17 21:24:34 -0500211 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);
Jan Kara7053aee2014-01-21 15:48:14 -0800218 FANOTIFY_E(event)->response = FAN_ALLOW;
Eric Paris2eebf582010-08-18 12:25:50 -0400219 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
Eric Parisb2d87902009-12-17 21:24:34 -0500228#else
229static int prepare_for_access_response(struct fsnotify_group *group,
230 struct fsnotify_event *event,
231 __s32 fd)
232{
233 return 0;
234}
235
Eric Parisb2d87902009-12-17 21:24:34 -0500236#endif
237
Eric Parisa1014f12009-12-17 21:24:26 -0500238static ssize_t copy_event_to_user(struct fsnotify_group *group,
239 struct fsnotify_event *event,
240 char __user *buf)
241{
242 struct fanotify_event_metadata fanotify_event_metadata;
Al Viro352e3b22012-08-19 12:30:45 -0400243 struct file *f;
Eric Parisb2d87902009-12-17 21:24:34 -0500244 int fd, ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500245
246 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
247
Al Viro352e3b22012-08-19 12:30:45 -0400248 ret = fill_event_metadata(group, &fanotify_event_metadata, event, &f);
Eric Parisecf6f5e2010-11-08 18:08:14 -0500249 if (ret < 0)
250 goto out;
Eric Parisa1014f12009-12-17 21:24:26 -0500251
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100252 fd = fanotify_event_metadata.fd;
Al Viro352e3b22012-08-19 12:30:45 -0400253 ret = -EFAULT;
254 if (copy_to_user(buf, &fanotify_event_metadata,
255 fanotify_event_metadata.event_len))
256 goto out_close_fd;
257
Eric Parisb2d87902009-12-17 21:24:34 -0500258 ret = prepare_for_access_response(group, event, fd);
259 if (ret)
260 goto out_close_fd;
261
Al Viro3587b1b2012-11-18 19:19:00 +0000262 if (fd != FAN_NOFD)
263 fd_install(fd, f);
Eric Paris7d131622010-12-07 15:27:57 -0500264 return fanotify_event_metadata.event_len;
Eric Parisb2d87902009-12-17 21:24:34 -0500265
Eric Parisb2d87902009-12-17 21:24:34 -0500266out_close_fd:
Al Viro352e3b22012-08-19 12:30:45 -0400267 if (fd != FAN_NOFD) {
268 put_unused_fd(fd);
269 fput(f);
270 }
Eric Parisecf6f5e2010-11-08 18:08:14 -0500271out:
272#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
273 if (event->mask & FAN_ALL_PERM_EVENTS) {
Jan Kara7053aee2014-01-21 15:48:14 -0800274 FANOTIFY_E(event)->response = FAN_DENY;
Eric Parisecf6f5e2010-11-08 18:08:14 -0500275 wake_up(&group->fanotify_data.access_waitq);
276 }
277#endif
Eric Parisb2d87902009-12-17 21:24:34 -0500278 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500279}
280
281/* intofiy userspace file descriptor functions */
282static unsigned int fanotify_poll(struct file *file, poll_table *wait)
283{
284 struct fsnotify_group *group = file->private_data;
285 int ret = 0;
286
287 poll_wait(file, &group->notification_waitq, wait);
288 mutex_lock(&group->notification_mutex);
289 if (!fsnotify_notify_queue_is_empty(group))
290 ret = POLLIN | POLLRDNORM;
291 mutex_unlock(&group->notification_mutex);
292
293 return ret;
294}
295
296static ssize_t fanotify_read(struct file *file, char __user *buf,
297 size_t count, loff_t *pos)
298{
299 struct fsnotify_group *group;
300 struct fsnotify_event *kevent;
301 char __user *start;
302 int ret;
303 DEFINE_WAIT(wait);
304
305 start = buf;
306 group = file->private_data;
307
308 pr_debug("%s: group=%p\n", __func__, group);
309
310 while (1) {
311 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
312
313 mutex_lock(&group->notification_mutex);
314 kevent = get_one_event(group, count);
315 mutex_unlock(&group->notification_mutex);
316
317 if (kevent) {
318 ret = PTR_ERR(kevent);
319 if (IS_ERR(kevent))
320 break;
321 ret = copy_event_to_user(group, kevent, buf);
Jan Kara85816792014-01-28 21:38:06 +0100322 /*
323 * Permission events get destroyed after we
324 * receive response
325 */
326 if (!(kevent->mask & FAN_ALL_PERM_EVENTS))
327 fsnotify_destroy_event(group, kevent);
Eric Parisa1014f12009-12-17 21:24:26 -0500328 if (ret < 0)
329 break;
330 buf += ret;
331 count -= ret;
332 continue;
333 }
334
335 ret = -EAGAIN;
336 if (file->f_flags & O_NONBLOCK)
337 break;
Lino Sanfilippo1a5cea72010-10-29 12:06:42 +0200338 ret = -ERESTARTSYS;
Eric Parisa1014f12009-12-17 21:24:26 -0500339 if (signal_pending(current))
340 break;
341
342 if (start != buf)
343 break;
344
345 schedule();
346 }
347
348 finish_wait(&group->notification_waitq, &wait);
349 if (start != buf && ret != -EFAULT)
350 ret = buf - start;
351 return ret;
352}
353
Eric Parisb2d87902009-12-17 21:24:34 -0500354static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
355{
356#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
357 struct fanotify_response response = { .fd = -1, .response = -1 };
358 struct fsnotify_group *group;
359 int ret;
360
361 group = file->private_data;
362
363 if (count > sizeof(response))
364 count = sizeof(response);
365
366 pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
367
368 if (copy_from_user(&response, buf, count))
369 return -EFAULT;
370
371 ret = process_access_response(group, &response);
372 if (ret < 0)
373 count = ret;
374
375 return count;
376#else
377 return -EINVAL;
378#endif
379}
380
Eric Paris52c923d2009-12-17 21:24:26 -0500381static int fanotify_release(struct inode *ignored, struct file *file)
382{
383 struct fsnotify_group *group = file->private_data;
Eric Paris52c923d2009-12-17 21:24:26 -0500384
Eric Paris2eebf582010-08-18 12:25:50 -0400385#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Andrew Morton19ba54f2010-10-28 17:21:59 -0400386 struct fanotify_response_event *re, *lre;
387
Eric Paris2eebf582010-08-18 12:25:50 -0400388 mutex_lock(&group->fanotify_data.access_mutex);
389
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100390 atomic_inc(&group->fanotify_data.bypass_perm);
Eric Paris2eebf582010-08-18 12:25:50 -0400391
392 list_for_each_entry_safe(re, lre, &group->fanotify_data.access_list, list) {
393 pr_debug("%s: found group=%p re=%p event=%p\n", __func__, group,
394 re, re->event);
395
396 list_del_init(&re->list);
397 re->event->response = FAN_ALLOW;
398
399 kmem_cache_free(fanotify_response_event_cache, re);
400 }
401 mutex_unlock(&group->fanotify_data.access_mutex);
402
403 wake_up(&group->fanotify_data.access_waitq);
404#endif
Eric Paris0a6b6bd2011-10-14 17:43:39 -0400405
Eric Paris52c923d2009-12-17 21:24:26 -0500406 /* matches the fanotify_init->fsnotify_alloc_group */
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200407 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500408
409 return 0;
410}
411
Eric Parisa1014f12009-12-17 21:24:26 -0500412static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
413{
414 struct fsnotify_group *group;
Jan Kara7053aee2014-01-21 15:48:14 -0800415 struct fsnotify_event *fsn_event;
Eric Parisa1014f12009-12-17 21:24:26 -0500416 void __user *p;
417 int ret = -ENOTTY;
418 size_t send_len = 0;
419
420 group = file->private_data;
421
422 p = (void __user *) arg;
423
424 switch (cmd) {
425 case FIONREAD:
426 mutex_lock(&group->notification_mutex);
Jan Kara7053aee2014-01-21 15:48:14 -0800427 list_for_each_entry(fsn_event, &group->notification_list, list)
Eric Parisa1014f12009-12-17 21:24:26 -0500428 send_len += FAN_EVENT_METADATA_LEN;
429 mutex_unlock(&group->notification_mutex);
430 ret = put_user(send_len, (int __user *) p);
431 break;
432 }
433
434 return ret;
435}
436
Eric Paris52c923d2009-12-17 21:24:26 -0500437static const struct file_operations fanotify_fops = {
Cyrill Gorcunovbe771962012-12-17 16:05:12 -0800438 .show_fdinfo = fanotify_show_fdinfo,
Eric Parisa1014f12009-12-17 21:24:26 -0500439 .poll = fanotify_poll,
440 .read = fanotify_read,
Eric Parisb2d87902009-12-17 21:24:34 -0500441 .write = fanotify_write,
Eric Paris52c923d2009-12-17 21:24:26 -0500442 .fasync = NULL,
443 .release = fanotify_release,
Eric Parisa1014f12009-12-17 21:24:26 -0500444 .unlocked_ioctl = fanotify_ioctl,
445 .compat_ioctl = fanotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200446 .llseek = noop_llseek,
Eric Paris52c923d2009-12-17 21:24:26 -0500447};
448
Eric Paris2a3edf82009-12-17 21:24:26 -0500449static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
450{
451 kmem_cache_free(fanotify_mark_cache, fsn_mark);
452}
453
454static int fanotify_find_path(int dfd, const char __user *filename,
455 struct path *path, unsigned int flags)
456{
457 int ret;
458
459 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
460 dfd, filename, flags);
461
462 if (filename == NULL) {
Al Viro2903ff02012-08-28 12:52:22 -0400463 struct fd f = fdget(dfd);
Eric Paris2a3edf82009-12-17 21:24:26 -0500464
465 ret = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400466 if (!f.file)
Eric Paris2a3edf82009-12-17 21:24:26 -0500467 goto out;
468
469 ret = -ENOTDIR;
470 if ((flags & FAN_MARK_ONLYDIR) &&
Al Viro496ad9a2013-01-23 17:07:38 -0500471 !(S_ISDIR(file_inode(f.file)->i_mode))) {
Al Viro2903ff02012-08-28 12:52:22 -0400472 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500473 goto out;
474 }
475
Al Viro2903ff02012-08-28 12:52:22 -0400476 *path = f.file->f_path;
Eric Paris2a3edf82009-12-17 21:24:26 -0500477 path_get(path);
Al Viro2903ff02012-08-28 12:52:22 -0400478 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500479 } else {
480 unsigned int lookup_flags = 0;
481
482 if (!(flags & FAN_MARK_DONT_FOLLOW))
483 lookup_flags |= LOOKUP_FOLLOW;
484 if (flags & FAN_MARK_ONLYDIR)
485 lookup_flags |= LOOKUP_DIRECTORY;
486
487 ret = user_path_at(dfd, filename, lookup_flags, path);
488 if (ret)
489 goto out;
490 }
491
492 /* you can only watch an inode if you have read permissions on it */
493 ret = inode_permission(path->dentry->d_inode, MAY_READ);
494 if (ret)
495 path_put(path);
496out:
497 return ret;
498}
499
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500500static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
501 __u32 mask,
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200502 unsigned int flags,
503 int *destroy)
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500504{
505 __u32 oldmask;
506
507 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500508 if (!(flags & FAN_MARK_IGNORED_MASK)) {
509 oldmask = fsn_mark->mask;
510 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask));
511 } else {
512 oldmask = fsn_mark->ignored_mask;
513 fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask));
514 }
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500515 spin_unlock(&fsn_mark->lock);
516
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200517 *destroy = !(oldmask & ~mask);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500518
519 return mask & oldmask;
520}
521
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500522static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500523 struct vfsmount *mnt, __u32 mask,
524 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500525{
526 struct fsnotify_mark *fsn_mark = NULL;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500527 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200528 int destroy_mark;
Eric Paris88826272009-12-17 21:24:28 -0500529
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700530 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500531 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700532 if (!fsn_mark) {
533 mutex_unlock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500534 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700535 }
Eric Paris88826272009-12-17 21:24:28 -0500536
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200537 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
538 &destroy_mark);
539 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700540 fsnotify_destroy_mark_locked(fsn_mark, group);
541 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200542
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500543 fsnotify_put_mark(fsn_mark);
Al Viroc63181e2011-11-25 02:35:16 -0500544 if (removed & real_mount(mnt)->mnt_fsnotify_mask)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500545 fsnotify_recalc_vfsmount_mask(mnt);
Eric Paris88826272009-12-17 21:24:28 -0500546
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500547 return 0;
548}
549
550static int fanotify_remove_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500551 struct inode *inode, __u32 mask,
552 unsigned int flags)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500553{
554 struct fsnotify_mark *fsn_mark = NULL;
555 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200556 int destroy_mark;
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500557
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700558 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500559 fsn_mark = fsnotify_find_inode_mark(group, inode);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700560 if (!fsn_mark) {
561 mutex_unlock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500562 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700563 }
Eric Paris88826272009-12-17 21:24:28 -0500564
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200565 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
566 &destroy_mark);
567 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700568 fsnotify_destroy_mark_locked(fsn_mark, group);
569 mutex_unlock(&group->mark_mutex);
570
Eric Paris5444e292009-12-17 21:24:27 -0500571 /* matches the fsnotify_find_inode_mark() */
Eric Paris2a3edf82009-12-17 21:24:26 -0500572 fsnotify_put_mark(fsn_mark);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500573 if (removed & inode->i_fsnotify_mask)
574 fsnotify_recalc_inode_mask(inode);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500575
Eric Paris2a3edf82009-12-17 21:24:26 -0500576 return 0;
577}
578
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500579static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
580 __u32 mask,
581 unsigned int flags)
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500582{
Eric Paris192ca4d2010-10-28 17:21:59 -0400583 __u32 oldmask = -1;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500584
585 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500586 if (!(flags & FAN_MARK_IGNORED_MASK)) {
587 oldmask = fsn_mark->mask;
588 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask | mask));
589 } else {
Eric Paris192ca4d2010-10-28 17:21:59 -0400590 __u32 tmask = fsn_mark->ignored_mask | mask;
591 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
Eric Parisc9778a92009-12-17 21:24:33 -0500592 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
593 fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500594 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400595
596 if (!(flags & FAN_MARK_ONDIR)) {
597 __u32 tmask = fsn_mark->ignored_mask | FAN_ONDIR;
598 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
599 }
600
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500601 spin_unlock(&fsn_mark->lock);
602
603 return mask & ~oldmask;
604}
605
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700606static struct fsnotify_mark *fanotify_add_new_mark(struct fsnotify_group *group,
607 struct inode *inode,
608 struct vfsmount *mnt)
609{
610 struct fsnotify_mark *mark;
611 int ret;
612
613 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
614 return ERR_PTR(-ENOSPC);
615
616 mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
617 if (!mark)
618 return ERR_PTR(-ENOMEM);
619
620 fsnotify_init_mark(mark, fanotify_free_mark);
621 ret = fsnotify_add_mark_locked(mark, group, inode, mnt, 0);
622 if (ret) {
623 fsnotify_put_mark(mark);
624 return ERR_PTR(ret);
625 }
626
627 return mark;
628}
629
630
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500631static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500632 struct vfsmount *mnt, __u32 mask,
633 unsigned int flags)
Eric Paris2a3edf82009-12-17 21:24:26 -0500634{
635 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500636 __u32 added;
Eric Paris2a3edf82009-12-17 21:24:26 -0500637
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700638 mutex_lock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500639 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
640 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700641 fsn_mark = fanotify_add_new_mark(group, NULL, mnt);
642 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700643 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700644 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700645 }
Eric Paris88826272009-12-17 21:24:28 -0500646 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500647 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700648 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100649
Al Viroc63181e2011-11-25 02:35:16 -0500650 if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
Eric Paris43709a22010-07-28 10:18:39 -0400651 fsnotify_recalc_vfsmount_mask(mnt);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700652
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100653 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700654 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500655}
656
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500657static int fanotify_add_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500658 struct inode *inode, __u32 mask,
659 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500660{
661 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500662 __u32 added;
Eric Paris88826272009-12-17 21:24:28 -0500663
664 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500665
Eric Paris5322a592010-10-28 17:21:57 -0400666 /*
667 * If some other task has this inode open for write we should not add
668 * an ignored mark, unless that ignored mark is supposed to survive
669 * modification changes anyway.
670 */
671 if ((flags & FAN_MARK_IGNORED_MASK) &&
672 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
673 (atomic_read(&inode->i_writecount) > 0))
674 return 0;
675
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700676 mutex_lock(&group->mark_mutex);
Eric Paris5444e292009-12-17 21:24:27 -0500677 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500678 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700679 fsn_mark = fanotify_add_new_mark(group, inode, NULL);
680 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700681 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700682 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700683 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500684 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500685 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700686 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100687
Eric Paris43709a22010-07-28 10:18:39 -0400688 if (added & ~inode->i_fsnotify_mask)
689 fsnotify_recalc_inode_mask(inode);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700690
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100691 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700692 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500693}
Eric Paris2a3edf82009-12-17 21:24:26 -0500694
Eric Paris52c923d2009-12-17 21:24:26 -0500695/* fanotify syscalls */
Eric Paris08ae8932010-05-27 09:41:40 -0400696SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
Eric Paris11637e42009-12-17 21:24:25 -0500697{
Eric Paris52c923d2009-12-17 21:24:26 -0500698 struct fsnotify_group *group;
699 int f_flags, fd;
Eric Paris4afeff82010-10-28 17:21:58 -0400700 struct user_struct *user;
Jan Karaff57cd52014-02-21 19:14:11 +0100701 struct fanotify_event_info *oevent;
Eric Paris52c923d2009-12-17 21:24:26 -0500702
Eric Paris08ae8932010-05-27 09:41:40 -0400703 pr_debug("%s: flags=%d event_f_flags=%d\n",
704 __func__, flags, event_f_flags);
Eric Paris52c923d2009-12-17 21:24:26 -0500705
Eric Paris52c923d2009-12-17 21:24:26 -0500706 if (!capable(CAP_SYS_ADMIN))
Andreas Gruenbachera2f13ad2010-08-24 12:58:54 +0200707 return -EPERM;
Eric Paris52c923d2009-12-17 21:24:26 -0500708
709 if (flags & ~FAN_ALL_INIT_FLAGS)
710 return -EINVAL;
711
Eric Paris4afeff82010-10-28 17:21:58 -0400712 user = get_current_user();
713 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
714 free_uid(user);
715 return -EMFILE;
716 }
717
Eric Parisb2d87902009-12-17 21:24:34 -0500718 f_flags = O_RDWR | FMODE_NONOTIFY;
Eric Paris52c923d2009-12-17 21:24:26 -0500719 if (flags & FAN_CLOEXEC)
720 f_flags |= O_CLOEXEC;
721 if (flags & FAN_NONBLOCK)
722 f_flags |= O_NONBLOCK;
723
724 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
725 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
Eric Paris26379192010-11-23 23:48:26 -0500726 if (IS_ERR(group)) {
727 free_uid(user);
Eric Paris52c923d2009-12-17 21:24:26 -0500728 return PTR_ERR(group);
Eric Paris26379192010-11-23 23:48:26 -0500729 }
Eric Paris52c923d2009-12-17 21:24:26 -0500730
Eric Paris4afeff82010-10-28 17:21:58 -0400731 group->fanotify_data.user = user;
732 atomic_inc(&user->fanotify_listeners);
733
Jan Karaff57cd52014-02-21 19:14:11 +0100734 oevent = kmem_cache_alloc(fanotify_event_cachep, GFP_KERNEL);
735 if (unlikely(!oevent)) {
736 fd = -ENOMEM;
737 goto out_destroy_group;
738 }
739 group->overflow_event = &oevent->fse;
740 fsnotify_init_event(group->overflow_event, NULL, FS_Q_OVERFLOW);
741 oevent->tgid = get_pid(task_tgid(current));
742 oevent->path.mnt = NULL;
743 oevent->path.dentry = NULL;
744
Eric Paris80af2582010-07-28 10:18:37 -0400745 group->fanotify_data.f_flags = event_f_flags;
Eric Paris9e66e422009-12-17 21:24:34 -0500746#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Karaff57cd52014-02-21 19:14:11 +0100747 oevent->response = 0;
Eric Paris9e66e422009-12-17 21:24:34 -0500748 mutex_init(&group->fanotify_data.access_mutex);
749 init_waitqueue_head(&group->fanotify_data.access_waitq);
750 INIT_LIST_HEAD(&group->fanotify_data.access_list);
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100751 atomic_set(&group->fanotify_data.bypass_perm, 0);
Eric Paris9e66e422009-12-17 21:24:34 -0500752#endif
Eric Paris4231a232010-10-28 17:21:56 -0400753 switch (flags & FAN_ALL_CLASS_BITS) {
754 case FAN_CLASS_NOTIF:
755 group->priority = FS_PRIO_0;
756 break;
757 case FAN_CLASS_CONTENT:
758 group->priority = FS_PRIO_1;
759 break;
760 case FAN_CLASS_PRE_CONTENT:
761 group->priority = FS_PRIO_2;
762 break;
763 default:
764 fd = -EINVAL;
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200765 goto out_destroy_group;
Eric Paris4231a232010-10-28 17:21:56 -0400766 }
Eric Pariscb2d4292009-12-17 21:24:34 -0500767
Eric Paris5dd03f52010-10-28 17:21:57 -0400768 if (flags & FAN_UNLIMITED_QUEUE) {
769 fd = -EPERM;
770 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200771 goto out_destroy_group;
Eric Paris5dd03f52010-10-28 17:21:57 -0400772 group->max_events = UINT_MAX;
773 } else {
774 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
775 }
Eric Paris2529a0d2010-10-28 17:21:57 -0400776
Eric Parisac7e22d2010-10-28 17:21:58 -0400777 if (flags & FAN_UNLIMITED_MARKS) {
778 fd = -EPERM;
779 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200780 goto out_destroy_group;
Eric Parisac7e22d2010-10-28 17:21:58 -0400781 group->fanotify_data.max_marks = UINT_MAX;
782 } else {
783 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
784 }
Eric Parise7099d82010-10-28 17:21:57 -0400785
Eric Paris52c923d2009-12-17 21:24:26 -0500786 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
787 if (fd < 0)
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200788 goto out_destroy_group;
Eric Paris52c923d2009-12-17 21:24:26 -0500789
790 return fd;
791
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200792out_destroy_group:
793 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500794 return fd;
Eric Paris11637e42009-12-17 21:24:25 -0500795}
Eric Parisbbaa4162009-12-17 21:24:26 -0500796
Al Viro4a0fd5b2013-01-21 15:16:58 -0500797SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
798 __u64, mask, int, dfd,
799 const char __user *, pathname)
Eric Parisbbaa4162009-12-17 21:24:26 -0500800{
Eric Paris0ff21db2009-12-17 21:24:29 -0500801 struct inode *inode = NULL;
802 struct vfsmount *mnt = NULL;
Eric Paris2a3edf82009-12-17 21:24:26 -0500803 struct fsnotify_group *group;
Al Viro2903ff02012-08-28 12:52:22 -0400804 struct fd f;
Eric Paris2a3edf82009-12-17 21:24:26 -0500805 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -0400806 int ret;
Eric Paris2a3edf82009-12-17 21:24:26 -0500807
808 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
809 __func__, fanotify_fd, flags, dfd, pathname, mask);
810
811 /* we only use the lower 32 bits as of right now. */
812 if (mask & ((__u64)0xffffffff << 32))
813 return -EINVAL;
814
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500815 if (flags & ~FAN_ALL_MARK_FLAGS)
816 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500817 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100818 case FAN_MARK_ADD: /* fallthrough */
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500819 case FAN_MARK_REMOVE:
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100820 if (!mask)
821 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500822 case FAN_MARK_FLUSH:
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500823 break;
824 default:
825 return -EINVAL;
826 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400827
828 if (mask & FAN_ONDIR) {
829 flags |= FAN_MARK_ONDIR;
830 mask &= ~FAN_ONDIR;
831 }
832
Eric Parisb2d87902009-12-17 21:24:34 -0500833#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
834 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
835#else
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500836 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
Eric Parisb2d87902009-12-17 21:24:34 -0500837#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500838 return -EINVAL;
839
Al Viro2903ff02012-08-28 12:52:22 -0400840 f = fdget(fanotify_fd);
841 if (unlikely(!f.file))
Eric Paris2a3edf82009-12-17 21:24:26 -0500842 return -EBADF;
843
844 /* verify that this is indeed an fanotify instance */
845 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -0400846 if (unlikely(f.file->f_op != &fanotify_fops))
Eric Paris2a3edf82009-12-17 21:24:26 -0500847 goto fput_and_out;
Al Viro2903ff02012-08-28 12:52:22 -0400848 group = f.file->private_data;
Eric Paris4231a232010-10-28 17:21:56 -0400849
850 /*
851 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
852 * allowed to set permissions events.
853 */
854 ret = -EINVAL;
855 if (mask & FAN_ALL_PERM_EVENTS &&
856 group->priority == FS_PRIO_0)
857 goto fput_and_out;
Eric Paris2a3edf82009-12-17 21:24:26 -0500858
859 ret = fanotify_find_path(dfd, pathname, &path, flags);
860 if (ret)
861 goto fput_and_out;
862
863 /* inode held in place by reference to path; group by fget on fd */
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500864 if (!(flags & FAN_MARK_MOUNT))
Eric Paris0ff21db2009-12-17 21:24:29 -0500865 inode = path.dentry->d_inode;
866 else
867 mnt = path.mnt;
Eric Paris2a3edf82009-12-17 21:24:26 -0500868
869 /* create/update an inode mark */
Eric Paris4d926042009-12-17 21:24:34 -0500870 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500871 case FAN_MARK_ADD:
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500872 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500873 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
Eric Paris0ff21db2009-12-17 21:24:29 -0500874 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500875 ret = fanotify_add_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500876 break;
877 case FAN_MARK_REMOVE:
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500878 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500879 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500880 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500881 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500882 break;
Eric Paris4d926042009-12-17 21:24:34 -0500883 case FAN_MARK_FLUSH:
884 if (flags & FAN_MARK_MOUNT)
885 fsnotify_clear_vfsmount_marks_by_group(group);
886 else
887 fsnotify_clear_inode_marks_by_group(group);
Eric Paris4d926042009-12-17 21:24:34 -0500888 break;
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500889 default:
890 ret = -EINVAL;
891 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500892
893 path_put(&path);
894fput_and_out:
Al Viro2903ff02012-08-28 12:52:22 -0400895 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500896 return ret;
Eric Parisbbaa4162009-12-17 21:24:26 -0500897}
Eric Paris2a3edf82009-12-17 21:24:26 -0500898
Al Viro91c2e0b2013-03-05 20:10:59 -0500899#ifdef CONFIG_COMPAT
900COMPAT_SYSCALL_DEFINE6(fanotify_mark,
901 int, fanotify_fd, unsigned int, flags,
902 __u32, mask0, __u32, mask1, int, dfd,
903 const char __user *, pathname)
904{
905 return sys_fanotify_mark(fanotify_fd, flags,
906#ifdef __BIG_ENDIAN
Al Viro91c2e0b2013-03-05 20:10:59 -0500907 ((__u64)mask0 << 32) | mask1,
Heiko Carstens592f6b82014-01-27 17:07:19 -0800908#else
909 ((__u64)mask1 << 32) | mask0,
Al Viro91c2e0b2013-03-05 20:10:59 -0500910#endif
911 dfd, pathname);
912}
913#endif
914
Eric Paris2a3edf82009-12-17 21:24:26 -0500915/*
Justin P. Mattockae0e47f2011-03-01 15:06:02 +0100916 * fanotify_user_setup - Our initialization function. Note that we cannot return
Eric Paris2a3edf82009-12-17 21:24:26 -0500917 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
918 * must result in panic().
919 */
920static int __init fanotify_user_setup(void)
921{
922 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
Eric Parisb2d87902009-12-17 21:24:34 -0500923 fanotify_response_event_cache = KMEM_CACHE(fanotify_response_event,
924 SLAB_PANIC);
Jan Kara7053aee2014-01-21 15:48:14 -0800925 fanotify_event_cachep = KMEM_CACHE(fanotify_event_info, SLAB_PANIC);
Eric Paris2a3edf82009-12-17 21:24:26 -0500926
927 return 0;
928}
929device_initcall(fanotify_user_setup);