blob: 70fe65437d21ba6ce1ef10620ce5094fc5ca2897 [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);
214 list_add_tail(&re->list, &group->fanotify_data.access_list);
215 mutex_unlock(&group->fanotify_data.access_mutex);
216
217 return 0;
218}
219
Eric Parisb2d87902009-12-17 21:24:34 -0500220#else
221static int prepare_for_access_response(struct fsnotify_group *group,
222 struct fsnotify_event *event,
223 __s32 fd)
224{
225 return 0;
226}
227
Eric Parisb2d87902009-12-17 21:24:34 -0500228#endif
229
Eric Parisa1014f12009-12-17 21:24:26 -0500230static ssize_t copy_event_to_user(struct fsnotify_group *group,
231 struct fsnotify_event *event,
232 char __user *buf)
233{
234 struct fanotify_event_metadata fanotify_event_metadata;
Al Viro352e3b22012-08-19 12:30:45 -0400235 struct file *f;
Eric Parisb2d87902009-12-17 21:24:34 -0500236 int fd, ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500237
238 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
239
Al Viro352e3b22012-08-19 12:30:45 -0400240 ret = fill_event_metadata(group, &fanotify_event_metadata, event, &f);
Eric Parisecf6f5e2010-11-08 18:08:14 -0500241 if (ret < 0)
242 goto out;
Eric Parisa1014f12009-12-17 21:24:26 -0500243
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100244 fd = fanotify_event_metadata.fd;
Al Viro352e3b22012-08-19 12:30:45 -0400245 ret = -EFAULT;
246 if (copy_to_user(buf, &fanotify_event_metadata,
247 fanotify_event_metadata.event_len))
248 goto out_close_fd;
249
Eric Parisb2d87902009-12-17 21:24:34 -0500250 ret = prepare_for_access_response(group, event, fd);
251 if (ret)
252 goto out_close_fd;
253
Al Viro3587b1b2012-11-18 19:19:00 +0000254 if (fd != FAN_NOFD)
255 fd_install(fd, f);
Eric Paris7d131622010-12-07 15:27:57 -0500256 return fanotify_event_metadata.event_len;
Eric Parisb2d87902009-12-17 21:24:34 -0500257
Eric Parisb2d87902009-12-17 21:24:34 -0500258out_close_fd:
Al Viro352e3b22012-08-19 12:30:45 -0400259 if (fd != FAN_NOFD) {
260 put_unused_fd(fd);
261 fput(f);
262 }
Eric Parisecf6f5e2010-11-08 18:08:14 -0500263out:
264#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
265 if (event->mask & FAN_ALL_PERM_EVENTS) {
Jan Kara7053aee2014-01-21 15:48:14 -0800266 FANOTIFY_E(event)->response = FAN_DENY;
Eric Parisecf6f5e2010-11-08 18:08:14 -0500267 wake_up(&group->fanotify_data.access_waitq);
268 }
269#endif
Eric Parisb2d87902009-12-17 21:24:34 -0500270 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500271}
272
273/* intofiy userspace file descriptor functions */
274static unsigned int fanotify_poll(struct file *file, poll_table *wait)
275{
276 struct fsnotify_group *group = file->private_data;
277 int ret = 0;
278
279 poll_wait(file, &group->notification_waitq, wait);
280 mutex_lock(&group->notification_mutex);
281 if (!fsnotify_notify_queue_is_empty(group))
282 ret = POLLIN | POLLRDNORM;
283 mutex_unlock(&group->notification_mutex);
284
285 return ret;
286}
287
288static ssize_t fanotify_read(struct file *file, char __user *buf,
289 size_t count, loff_t *pos)
290{
291 struct fsnotify_group *group;
292 struct fsnotify_event *kevent;
293 char __user *start;
294 int ret;
295 DEFINE_WAIT(wait);
296
297 start = buf;
298 group = file->private_data;
299
300 pr_debug("%s: group=%p\n", __func__, group);
301
302 while (1) {
303 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
304
305 mutex_lock(&group->notification_mutex);
306 kevent = get_one_event(group, count);
307 mutex_unlock(&group->notification_mutex);
308
309 if (kevent) {
310 ret = PTR_ERR(kevent);
311 if (IS_ERR(kevent))
312 break;
313 ret = copy_event_to_user(group, kevent, buf);
Jan Kara85816792014-01-28 21:38:06 +0100314 /*
315 * Permission events get destroyed after we
316 * receive response
317 */
318 if (!(kevent->mask & FAN_ALL_PERM_EVENTS))
319 fsnotify_destroy_event(group, kevent);
Eric Parisa1014f12009-12-17 21:24:26 -0500320 if (ret < 0)
321 break;
322 buf += ret;
323 count -= ret;
324 continue;
325 }
326
327 ret = -EAGAIN;
328 if (file->f_flags & O_NONBLOCK)
329 break;
Lino Sanfilippo1a5cea72010-10-29 12:06:42 +0200330 ret = -ERESTARTSYS;
Eric Parisa1014f12009-12-17 21:24:26 -0500331 if (signal_pending(current))
332 break;
333
334 if (start != buf)
335 break;
336
337 schedule();
338 }
339
340 finish_wait(&group->notification_waitq, &wait);
341 if (start != buf && ret != -EFAULT)
342 ret = buf - start;
343 return ret;
344}
345
Eric Parisb2d87902009-12-17 21:24:34 -0500346static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
347{
348#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
349 struct fanotify_response response = { .fd = -1, .response = -1 };
350 struct fsnotify_group *group;
351 int ret;
352
353 group = file->private_data;
354
355 if (count > sizeof(response))
356 count = sizeof(response);
357
358 pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
359
360 if (copy_from_user(&response, buf, count))
361 return -EFAULT;
362
363 ret = process_access_response(group, &response);
364 if (ret < 0)
365 count = ret;
366
367 return count;
368#else
369 return -EINVAL;
370#endif
371}
372
Eric Paris52c923d2009-12-17 21:24:26 -0500373static int fanotify_release(struct inode *ignored, struct file *file)
374{
375 struct fsnotify_group *group = file->private_data;
Eric Paris52c923d2009-12-17 21:24:26 -0500376
Eric Paris2eebf582010-08-18 12:25:50 -0400377#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Andrew Morton19ba54f2010-10-28 17:21:59 -0400378 struct fanotify_response_event *re, *lre;
379
Eric Paris2eebf582010-08-18 12:25:50 -0400380 mutex_lock(&group->fanotify_data.access_mutex);
381
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100382 atomic_inc(&group->fanotify_data.bypass_perm);
Eric Paris2eebf582010-08-18 12:25:50 -0400383
384 list_for_each_entry_safe(re, lre, &group->fanotify_data.access_list, list) {
385 pr_debug("%s: found group=%p re=%p event=%p\n", __func__, group,
386 re, re->event);
387
388 list_del_init(&re->list);
389 re->event->response = FAN_ALLOW;
390
391 kmem_cache_free(fanotify_response_event_cache, re);
392 }
393 mutex_unlock(&group->fanotify_data.access_mutex);
394
395 wake_up(&group->fanotify_data.access_waitq);
396#endif
Eric Paris0a6b6bd2011-10-14 17:43:39 -0400397
Eric Paris52c923d2009-12-17 21:24:26 -0500398 /* matches the fanotify_init->fsnotify_alloc_group */
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200399 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500400
401 return 0;
402}
403
Eric Parisa1014f12009-12-17 21:24:26 -0500404static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
405{
406 struct fsnotify_group *group;
Jan Kara7053aee2014-01-21 15:48:14 -0800407 struct fsnotify_event *fsn_event;
Eric Parisa1014f12009-12-17 21:24:26 -0500408 void __user *p;
409 int ret = -ENOTTY;
410 size_t send_len = 0;
411
412 group = file->private_data;
413
414 p = (void __user *) arg;
415
416 switch (cmd) {
417 case FIONREAD:
418 mutex_lock(&group->notification_mutex);
Jan Kara7053aee2014-01-21 15:48:14 -0800419 list_for_each_entry(fsn_event, &group->notification_list, list)
Eric Parisa1014f12009-12-17 21:24:26 -0500420 send_len += FAN_EVENT_METADATA_LEN;
421 mutex_unlock(&group->notification_mutex);
422 ret = put_user(send_len, (int __user *) p);
423 break;
424 }
425
426 return ret;
427}
428
Eric Paris52c923d2009-12-17 21:24:26 -0500429static const struct file_operations fanotify_fops = {
Cyrill Gorcunovbe771962012-12-17 16:05:12 -0800430 .show_fdinfo = fanotify_show_fdinfo,
Eric Parisa1014f12009-12-17 21:24:26 -0500431 .poll = fanotify_poll,
432 .read = fanotify_read,
Eric Parisb2d87902009-12-17 21:24:34 -0500433 .write = fanotify_write,
Eric Paris52c923d2009-12-17 21:24:26 -0500434 .fasync = NULL,
435 .release = fanotify_release,
Eric Parisa1014f12009-12-17 21:24:26 -0500436 .unlocked_ioctl = fanotify_ioctl,
437 .compat_ioctl = fanotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200438 .llseek = noop_llseek,
Eric Paris52c923d2009-12-17 21:24:26 -0500439};
440
Eric Paris2a3edf82009-12-17 21:24:26 -0500441static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
442{
443 kmem_cache_free(fanotify_mark_cache, fsn_mark);
444}
445
446static int fanotify_find_path(int dfd, const char __user *filename,
447 struct path *path, unsigned int flags)
448{
449 int ret;
450
451 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
452 dfd, filename, flags);
453
454 if (filename == NULL) {
Al Viro2903ff02012-08-28 12:52:22 -0400455 struct fd f = fdget(dfd);
Eric Paris2a3edf82009-12-17 21:24:26 -0500456
457 ret = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400458 if (!f.file)
Eric Paris2a3edf82009-12-17 21:24:26 -0500459 goto out;
460
461 ret = -ENOTDIR;
462 if ((flags & FAN_MARK_ONLYDIR) &&
Al Viro496ad9a2013-01-23 17:07:38 -0500463 !(S_ISDIR(file_inode(f.file)->i_mode))) {
Al Viro2903ff02012-08-28 12:52:22 -0400464 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500465 goto out;
466 }
467
Al Viro2903ff02012-08-28 12:52:22 -0400468 *path = f.file->f_path;
Eric Paris2a3edf82009-12-17 21:24:26 -0500469 path_get(path);
Al Viro2903ff02012-08-28 12:52:22 -0400470 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500471 } else {
472 unsigned int lookup_flags = 0;
473
474 if (!(flags & FAN_MARK_DONT_FOLLOW))
475 lookup_flags |= LOOKUP_FOLLOW;
476 if (flags & FAN_MARK_ONLYDIR)
477 lookup_flags |= LOOKUP_DIRECTORY;
478
479 ret = user_path_at(dfd, filename, lookup_flags, path);
480 if (ret)
481 goto out;
482 }
483
484 /* you can only watch an inode if you have read permissions on it */
485 ret = inode_permission(path->dentry->d_inode, MAY_READ);
486 if (ret)
487 path_put(path);
488out:
489 return ret;
490}
491
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500492static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
493 __u32 mask,
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200494 unsigned int flags,
495 int *destroy)
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500496{
497 __u32 oldmask;
498
499 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500500 if (!(flags & FAN_MARK_IGNORED_MASK)) {
501 oldmask = fsn_mark->mask;
502 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask));
503 } else {
504 oldmask = fsn_mark->ignored_mask;
505 fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask));
506 }
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500507 spin_unlock(&fsn_mark->lock);
508
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200509 *destroy = !(oldmask & ~mask);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500510
511 return mask & oldmask;
512}
513
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500514static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500515 struct vfsmount *mnt, __u32 mask,
516 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500517{
518 struct fsnotify_mark *fsn_mark = NULL;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500519 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200520 int destroy_mark;
Eric Paris88826272009-12-17 21:24:28 -0500521
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700522 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500523 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700524 if (!fsn_mark) {
525 mutex_unlock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500526 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700527 }
Eric Paris88826272009-12-17 21:24:28 -0500528
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200529 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
530 &destroy_mark);
531 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700532 fsnotify_destroy_mark_locked(fsn_mark, group);
533 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200534
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500535 fsnotify_put_mark(fsn_mark);
Al Viroc63181e2011-11-25 02:35:16 -0500536 if (removed & real_mount(mnt)->mnt_fsnotify_mask)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500537 fsnotify_recalc_vfsmount_mask(mnt);
Eric Paris88826272009-12-17 21:24:28 -0500538
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500539 return 0;
540}
541
542static int fanotify_remove_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500543 struct inode *inode, __u32 mask,
544 unsigned int flags)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500545{
546 struct fsnotify_mark *fsn_mark = NULL;
547 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200548 int destroy_mark;
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500549
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700550 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500551 fsn_mark = fsnotify_find_inode_mark(group, inode);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700552 if (!fsn_mark) {
553 mutex_unlock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500554 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700555 }
Eric Paris88826272009-12-17 21:24:28 -0500556
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200557 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
558 &destroy_mark);
559 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700560 fsnotify_destroy_mark_locked(fsn_mark, group);
561 mutex_unlock(&group->mark_mutex);
562
Eric Paris5444e292009-12-17 21:24:27 -0500563 /* matches the fsnotify_find_inode_mark() */
Eric Paris2a3edf82009-12-17 21:24:26 -0500564 fsnotify_put_mark(fsn_mark);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500565 if (removed & inode->i_fsnotify_mask)
566 fsnotify_recalc_inode_mask(inode);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500567
Eric Paris2a3edf82009-12-17 21:24:26 -0500568 return 0;
569}
570
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500571static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
572 __u32 mask,
573 unsigned int flags)
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500574{
Eric Paris192ca4d2010-10-28 17:21:59 -0400575 __u32 oldmask = -1;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500576
577 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500578 if (!(flags & FAN_MARK_IGNORED_MASK)) {
579 oldmask = fsn_mark->mask;
580 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask | mask));
581 } else {
Eric Paris192ca4d2010-10-28 17:21:59 -0400582 __u32 tmask = fsn_mark->ignored_mask | mask;
583 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
Eric Parisc9778a92009-12-17 21:24:33 -0500584 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
585 fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500586 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400587
588 if (!(flags & FAN_MARK_ONDIR)) {
589 __u32 tmask = fsn_mark->ignored_mask | FAN_ONDIR;
590 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
591 }
592
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500593 spin_unlock(&fsn_mark->lock);
594
595 return mask & ~oldmask;
596}
597
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700598static struct fsnotify_mark *fanotify_add_new_mark(struct fsnotify_group *group,
599 struct inode *inode,
600 struct vfsmount *mnt)
601{
602 struct fsnotify_mark *mark;
603 int ret;
604
605 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
606 return ERR_PTR(-ENOSPC);
607
608 mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
609 if (!mark)
610 return ERR_PTR(-ENOMEM);
611
612 fsnotify_init_mark(mark, fanotify_free_mark);
613 ret = fsnotify_add_mark_locked(mark, group, inode, mnt, 0);
614 if (ret) {
615 fsnotify_put_mark(mark);
616 return ERR_PTR(ret);
617 }
618
619 return mark;
620}
621
622
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500623static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500624 struct vfsmount *mnt, __u32 mask,
625 unsigned int flags)
Eric Paris2a3edf82009-12-17 21:24:26 -0500626{
627 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500628 __u32 added;
Eric Paris2a3edf82009-12-17 21:24:26 -0500629
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700630 mutex_lock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500631 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
632 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700633 fsn_mark = fanotify_add_new_mark(group, NULL, mnt);
634 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700635 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700636 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700637 }
Eric Paris88826272009-12-17 21:24:28 -0500638 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500639 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700640 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100641
Al Viroc63181e2011-11-25 02:35:16 -0500642 if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
Eric Paris43709a22010-07-28 10:18:39 -0400643 fsnotify_recalc_vfsmount_mask(mnt);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700644
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100645 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700646 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500647}
648
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500649static int fanotify_add_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500650 struct inode *inode, __u32 mask,
651 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500652{
653 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500654 __u32 added;
Eric Paris88826272009-12-17 21:24:28 -0500655
656 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500657
Eric Paris5322a592010-10-28 17:21:57 -0400658 /*
659 * If some other task has this inode open for write we should not add
660 * an ignored mark, unless that ignored mark is supposed to survive
661 * modification changes anyway.
662 */
663 if ((flags & FAN_MARK_IGNORED_MASK) &&
664 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
665 (atomic_read(&inode->i_writecount) > 0))
666 return 0;
667
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700668 mutex_lock(&group->mark_mutex);
Eric Paris5444e292009-12-17 21:24:27 -0500669 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500670 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700671 fsn_mark = fanotify_add_new_mark(group, inode, NULL);
672 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700673 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700674 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700675 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500676 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500677 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700678 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100679
Eric Paris43709a22010-07-28 10:18:39 -0400680 if (added & ~inode->i_fsnotify_mask)
681 fsnotify_recalc_inode_mask(inode);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700682
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100683 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700684 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500685}
Eric Paris2a3edf82009-12-17 21:24:26 -0500686
Eric Paris52c923d2009-12-17 21:24:26 -0500687/* fanotify syscalls */
Eric Paris08ae8932010-05-27 09:41:40 -0400688SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
Eric Paris11637e42009-12-17 21:24:25 -0500689{
Eric Paris52c923d2009-12-17 21:24:26 -0500690 struct fsnotify_group *group;
691 int f_flags, fd;
Eric Paris4afeff82010-10-28 17:21:58 -0400692 struct user_struct *user;
Jan Karaff57cd52014-02-21 19:14:11 +0100693 struct fanotify_event_info *oevent;
Eric Paris52c923d2009-12-17 21:24:26 -0500694
Eric Paris08ae8932010-05-27 09:41:40 -0400695 pr_debug("%s: flags=%d event_f_flags=%d\n",
696 __func__, flags, event_f_flags);
Eric Paris52c923d2009-12-17 21:24:26 -0500697
Eric Paris52c923d2009-12-17 21:24:26 -0500698 if (!capable(CAP_SYS_ADMIN))
Andreas Gruenbachera2f13ad2010-08-24 12:58:54 +0200699 return -EPERM;
Eric Paris52c923d2009-12-17 21:24:26 -0500700
701 if (flags & ~FAN_ALL_INIT_FLAGS)
702 return -EINVAL;
703
Eric Paris4afeff82010-10-28 17:21:58 -0400704 user = get_current_user();
705 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
706 free_uid(user);
707 return -EMFILE;
708 }
709
Eric Parisb2d87902009-12-17 21:24:34 -0500710 f_flags = O_RDWR | FMODE_NONOTIFY;
Eric Paris52c923d2009-12-17 21:24:26 -0500711 if (flags & FAN_CLOEXEC)
712 f_flags |= O_CLOEXEC;
713 if (flags & FAN_NONBLOCK)
714 f_flags |= O_NONBLOCK;
715
716 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
717 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
Eric Paris26379192010-11-23 23:48:26 -0500718 if (IS_ERR(group)) {
719 free_uid(user);
Eric Paris52c923d2009-12-17 21:24:26 -0500720 return PTR_ERR(group);
Eric Paris26379192010-11-23 23:48:26 -0500721 }
Eric Paris52c923d2009-12-17 21:24:26 -0500722
Eric Paris4afeff82010-10-28 17:21:58 -0400723 group->fanotify_data.user = user;
724 atomic_inc(&user->fanotify_listeners);
725
Jan Karaff57cd52014-02-21 19:14:11 +0100726 oevent = kmem_cache_alloc(fanotify_event_cachep, GFP_KERNEL);
727 if (unlikely(!oevent)) {
728 fd = -ENOMEM;
729 goto out_destroy_group;
730 }
731 group->overflow_event = &oevent->fse;
732 fsnotify_init_event(group->overflow_event, NULL, FS_Q_OVERFLOW);
733 oevent->tgid = get_pid(task_tgid(current));
734 oevent->path.mnt = NULL;
735 oevent->path.dentry = NULL;
736
Eric Paris80af2582010-07-28 10:18:37 -0400737 group->fanotify_data.f_flags = event_f_flags;
Eric Paris9e66e422009-12-17 21:24:34 -0500738#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Karaff57cd52014-02-21 19:14:11 +0100739 oevent->response = 0;
Eric Paris9e66e422009-12-17 21:24:34 -0500740 mutex_init(&group->fanotify_data.access_mutex);
741 init_waitqueue_head(&group->fanotify_data.access_waitq);
742 INIT_LIST_HEAD(&group->fanotify_data.access_list);
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100743 atomic_set(&group->fanotify_data.bypass_perm, 0);
Eric Paris9e66e422009-12-17 21:24:34 -0500744#endif
Eric Paris4231a232010-10-28 17:21:56 -0400745 switch (flags & FAN_ALL_CLASS_BITS) {
746 case FAN_CLASS_NOTIF:
747 group->priority = FS_PRIO_0;
748 break;
749 case FAN_CLASS_CONTENT:
750 group->priority = FS_PRIO_1;
751 break;
752 case FAN_CLASS_PRE_CONTENT:
753 group->priority = FS_PRIO_2;
754 break;
755 default:
756 fd = -EINVAL;
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200757 goto out_destroy_group;
Eric Paris4231a232010-10-28 17:21:56 -0400758 }
Eric Pariscb2d4292009-12-17 21:24:34 -0500759
Eric Paris5dd03f52010-10-28 17:21:57 -0400760 if (flags & FAN_UNLIMITED_QUEUE) {
761 fd = -EPERM;
762 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200763 goto out_destroy_group;
Eric Paris5dd03f52010-10-28 17:21:57 -0400764 group->max_events = UINT_MAX;
765 } else {
766 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
767 }
Eric Paris2529a0d2010-10-28 17:21:57 -0400768
Eric Parisac7e22d2010-10-28 17:21:58 -0400769 if (flags & FAN_UNLIMITED_MARKS) {
770 fd = -EPERM;
771 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200772 goto out_destroy_group;
Eric Parisac7e22d2010-10-28 17:21:58 -0400773 group->fanotify_data.max_marks = UINT_MAX;
774 } else {
775 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
776 }
Eric Parise7099d82010-10-28 17:21:57 -0400777
Eric Paris52c923d2009-12-17 21:24:26 -0500778 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
779 if (fd < 0)
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200780 goto out_destroy_group;
Eric Paris52c923d2009-12-17 21:24:26 -0500781
782 return fd;
783
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200784out_destroy_group:
785 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500786 return fd;
Eric Paris11637e42009-12-17 21:24:25 -0500787}
Eric Parisbbaa4162009-12-17 21:24:26 -0500788
Al Viro4a0fd5b2013-01-21 15:16:58 -0500789SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
790 __u64, mask, int, dfd,
791 const char __user *, pathname)
Eric Parisbbaa4162009-12-17 21:24:26 -0500792{
Eric Paris0ff21db2009-12-17 21:24:29 -0500793 struct inode *inode = NULL;
794 struct vfsmount *mnt = NULL;
Eric Paris2a3edf82009-12-17 21:24:26 -0500795 struct fsnotify_group *group;
Al Viro2903ff02012-08-28 12:52:22 -0400796 struct fd f;
Eric Paris2a3edf82009-12-17 21:24:26 -0500797 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -0400798 int ret;
Eric Paris2a3edf82009-12-17 21:24:26 -0500799
800 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
801 __func__, fanotify_fd, flags, dfd, pathname, mask);
802
803 /* we only use the lower 32 bits as of right now. */
804 if (mask & ((__u64)0xffffffff << 32))
805 return -EINVAL;
806
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500807 if (flags & ~FAN_ALL_MARK_FLAGS)
808 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500809 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100810 case FAN_MARK_ADD: /* fallthrough */
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500811 case FAN_MARK_REMOVE:
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100812 if (!mask)
813 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500814 case FAN_MARK_FLUSH:
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500815 break;
816 default:
817 return -EINVAL;
818 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400819
820 if (mask & FAN_ONDIR) {
821 flags |= FAN_MARK_ONDIR;
822 mask &= ~FAN_ONDIR;
823 }
824
Eric Parisb2d87902009-12-17 21:24:34 -0500825#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
826 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
827#else
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500828 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
Eric Parisb2d87902009-12-17 21:24:34 -0500829#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500830 return -EINVAL;
831
Al Viro2903ff02012-08-28 12:52:22 -0400832 f = fdget(fanotify_fd);
833 if (unlikely(!f.file))
Eric Paris2a3edf82009-12-17 21:24:26 -0500834 return -EBADF;
835
836 /* verify that this is indeed an fanotify instance */
837 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -0400838 if (unlikely(f.file->f_op != &fanotify_fops))
Eric Paris2a3edf82009-12-17 21:24:26 -0500839 goto fput_and_out;
Al Viro2903ff02012-08-28 12:52:22 -0400840 group = f.file->private_data;
Eric Paris4231a232010-10-28 17:21:56 -0400841
842 /*
843 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
844 * allowed to set permissions events.
845 */
846 ret = -EINVAL;
847 if (mask & FAN_ALL_PERM_EVENTS &&
848 group->priority == FS_PRIO_0)
849 goto fput_and_out;
Eric Paris2a3edf82009-12-17 21:24:26 -0500850
851 ret = fanotify_find_path(dfd, pathname, &path, flags);
852 if (ret)
853 goto fput_and_out;
854
855 /* inode held in place by reference to path; group by fget on fd */
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500856 if (!(flags & FAN_MARK_MOUNT))
Eric Paris0ff21db2009-12-17 21:24:29 -0500857 inode = path.dentry->d_inode;
858 else
859 mnt = path.mnt;
Eric Paris2a3edf82009-12-17 21:24:26 -0500860
861 /* create/update an inode mark */
Eric Paris4d926042009-12-17 21:24:34 -0500862 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500863 case FAN_MARK_ADD:
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500864 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500865 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
Eric Paris0ff21db2009-12-17 21:24:29 -0500866 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500867 ret = fanotify_add_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500868 break;
869 case FAN_MARK_REMOVE:
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500870 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500871 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500872 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500873 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500874 break;
Eric Paris4d926042009-12-17 21:24:34 -0500875 case FAN_MARK_FLUSH:
876 if (flags & FAN_MARK_MOUNT)
877 fsnotify_clear_vfsmount_marks_by_group(group);
878 else
879 fsnotify_clear_inode_marks_by_group(group);
Eric Paris4d926042009-12-17 21:24:34 -0500880 break;
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500881 default:
882 ret = -EINVAL;
883 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500884
885 path_put(&path);
886fput_and_out:
Al Viro2903ff02012-08-28 12:52:22 -0400887 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500888 return ret;
Eric Parisbbaa4162009-12-17 21:24:26 -0500889}
Eric Paris2a3edf82009-12-17 21:24:26 -0500890
Al Viro91c2e0b2013-03-05 20:10:59 -0500891#ifdef CONFIG_COMPAT
892COMPAT_SYSCALL_DEFINE6(fanotify_mark,
893 int, fanotify_fd, unsigned int, flags,
894 __u32, mask0, __u32, mask1, int, dfd,
895 const char __user *, pathname)
896{
897 return sys_fanotify_mark(fanotify_fd, flags,
898#ifdef __BIG_ENDIAN
Al Viro91c2e0b2013-03-05 20:10:59 -0500899 ((__u64)mask0 << 32) | mask1,
Heiko Carstens592f6b82014-01-27 17:07:19 -0800900#else
901 ((__u64)mask1 << 32) | mask0,
Al Viro91c2e0b2013-03-05 20:10:59 -0500902#endif
903 dfd, pathname);
904}
905#endif
906
Eric Paris2a3edf82009-12-17 21:24:26 -0500907/*
Justin P. Mattockae0e47f2011-03-01 15:06:02 +0100908 * fanotify_user_setup - Our initialization function. Note that we cannot return
Eric Paris2a3edf82009-12-17 21:24:26 -0500909 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
910 * must result in panic().
911 */
912static int __init fanotify_user_setup(void)
913{
914 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
Eric Parisb2d87902009-12-17 21:24:34 -0500915 fanotify_response_event_cache = KMEM_CACHE(fanotify_response_event,
916 SLAB_PANIC);
Jan Kara7053aee2014-01-21 15:48:14 -0800917 fanotify_event_cachep = KMEM_CACHE(fanotify_event_info, SLAB_PANIC);
Eric Paris2a3edf82009-12-17 21:24:26 -0500918
919 return 0;
920}
921device_initcall(fanotify_user_setup);