blob: b13992a41bd94312eeecd59b4e0841a58d1d85c0 [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
Heinrich Schuchardt48149e92014-06-04 16:05:44 -070028/*
29 * All flags that may be specified in parameter event_f_flags of fanotify_init.
30 *
31 * Internal and external open flags are stored together in field f_flags of
32 * struct file. Only external open flags shall be allowed in event_f_flags.
33 * Internal flags like FMODE_NONOTIFY, FMODE_EXEC, FMODE_NOCMTIME shall be
34 * excluded.
35 */
36#define FANOTIFY_INIT_ALL_EVENT_F_BITS ( \
37 O_ACCMODE | O_APPEND | O_NONBLOCK | \
38 __O_SYNC | O_DSYNC | O_CLOEXEC | \
39 O_LARGEFILE | O_NOATIME )
40
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -050041extern const struct fsnotify_ops fanotify_fsnotify_ops;
Eric Paris11637e42009-12-17 21:24:25 -050042
Eric Paris2a3edf82009-12-17 21:24:26 -050043static struct kmem_cache *fanotify_mark_cache __read_mostly;
Jan Kara7053aee2014-01-21 15:48:14 -080044struct kmem_cache *fanotify_event_cachep __read_mostly;
Jan Karaf0834412014-04-03 14:46:33 -070045struct kmem_cache *fanotify_perm_event_cachep __read_mostly;
Eric Paris2a3edf82009-12-17 21:24:26 -050046
Eric Parisa1014f12009-12-17 21:24:26 -050047/*
48 * Get an fsnotify notification event if one exists and is small
49 * enough to fit in "count". Return an error pointer if the count
50 * is not large enough.
51 *
52 * Called with the group->notification_mutex held.
53 */
54static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
55 size_t count)
56{
57 BUG_ON(!mutex_is_locked(&group->notification_mutex));
58
59 pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
60
61 if (fsnotify_notify_queue_is_empty(group))
62 return NULL;
63
64 if (FAN_EVENT_METADATA_LEN > count)
65 return ERR_PTR(-EINVAL);
66
67 /* held the notification_mutex the whole time, so this is the
68 * same event we peeked above */
Jan Kara8ba8fa912014-08-06 16:03:26 -070069 return fsnotify_remove_first_event(group);
Eric Parisa1014f12009-12-17 21:24:26 -050070}
71
Al Viro352e3b22012-08-19 12:30:45 -040072static int create_fd(struct fsnotify_group *group,
Jan Kara7053aee2014-01-21 15:48:14 -080073 struct fanotify_event_info *event,
74 struct file **file)
Eric Parisa1014f12009-12-17 21:24:26 -050075{
76 int client_fd;
Eric Parisa1014f12009-12-17 21:24:26 -050077 struct file *new_file;
78
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -050079 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
Eric Parisa1014f12009-12-17 21:24:26 -050080
81 client_fd = get_unused_fd();
82 if (client_fd < 0)
83 return client_fd;
84
Eric Parisa1014f12009-12-17 21:24:26 -050085 /*
86 * we need a new file handle for the userspace program so it can read even if it was
87 * originally opened O_WRONLY.
88 */
Eric Parisa1014f12009-12-17 21:24:26 -050089 /* it's possible this event was an overflow event. in that case dentry and mnt
90 * are NULL; That's fine, just don't call dentry open */
Al Viro765927b2012-06-26 21:58:53 +040091 if (event->path.dentry && event->path.mnt)
92 new_file = dentry_open(&event->path,
Eric Paris80af2582010-07-28 10:18:37 -040093 group->fanotify_data.f_flags | FMODE_NONOTIFY,
Eric Parisa1014f12009-12-17 21:24:26 -050094 current_cred());
95 else
96 new_file = ERR_PTR(-EOVERFLOW);
97 if (IS_ERR(new_file)) {
98 /*
99 * we still send an event even if we can't open the file. this
100 * can happen when say tasks are gone and we try to open their
101 * /proc files or we try to open a WRONLY file like in sysfs
102 * we just send the errno to userspace since there isn't much
103 * else we can do.
104 */
105 put_unused_fd(client_fd);
106 client_fd = PTR_ERR(new_file);
107 } else {
Al Viro352e3b22012-08-19 12:30:45 -0400108 *file = new_file;
Eric Parisa1014f12009-12-17 21:24:26 -0500109 }
110
Andreas Gruenbacher22aa4252009-12-17 21:24:26 -0500111 return client_fd;
Eric Parisa1014f12009-12-17 21:24:26 -0500112}
113
Eric Parisecf6f5e2010-11-08 18:08:14 -0500114static int fill_event_metadata(struct fsnotify_group *group,
Jan Kara7053aee2014-01-21 15:48:14 -0800115 struct fanotify_event_metadata *metadata,
116 struct fsnotify_event *fsn_event,
117 struct file **file)
Eric Parisa1014f12009-12-17 21:24:26 -0500118{
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100119 int ret = 0;
Jan Kara7053aee2014-01-21 15:48:14 -0800120 struct fanotify_event_info *event;
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100121
Eric Parisa1014f12009-12-17 21:24:26 -0500122 pr_debug("%s: group=%p metadata=%p event=%p\n", __func__,
Jan Kara7053aee2014-01-21 15:48:14 -0800123 group, metadata, fsn_event);
Eric Parisa1014f12009-12-17 21:24:26 -0500124
Al Viro352e3b22012-08-19 12:30:45 -0400125 *file = NULL;
Jan Kara7053aee2014-01-21 15:48:14 -0800126 event = container_of(fsn_event, struct fanotify_event_info, fse);
Eric Parisa1014f12009-12-17 21:24:26 -0500127 metadata->event_len = FAN_EVENT_METADATA_LEN;
Eric Paris7d131622010-12-07 15:27:57 -0500128 metadata->metadata_len = FAN_EVENT_METADATA_LEN;
Eric Parisa1014f12009-12-17 21:24:26 -0500129 metadata->vers = FANOTIFY_METADATA_VERSION;
Dan Carpenterde1e0c42013-07-08 15:59:40 -0700130 metadata->reserved = 0;
Jan Kara7053aee2014-01-21 15:48:14 -0800131 metadata->mask = fsn_event->mask & FAN_ALL_OUTGOING_EVENTS;
Andreas Gruenbacher32c32632009-12-17 21:24:27 -0500132 metadata->pid = pid_vnr(event->tgid);
Jan Kara7053aee2014-01-21 15:48:14 -0800133 if (unlikely(fsn_event->mask & FAN_Q_OVERFLOW))
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100134 metadata->fd = FAN_NOFD;
135 else {
Al Viro352e3b22012-08-19 12:30:45 -0400136 metadata->fd = create_fd(group, event, file);
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100137 if (metadata->fd < 0)
138 ret = metadata->fd;
139 }
Eric Parisa1014f12009-12-17 21:24:26 -0500140
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100141 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500142}
143
Eric Parisb2d87902009-12-17 21:24:34 -0500144#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Karaf0834412014-04-03 14:46:33 -0700145static struct fanotify_perm_event_info *dequeue_event(
146 struct fsnotify_group *group, int fd)
Eric Parisb2d87902009-12-17 21:24:34 -0500147{
Jan Karaf0834412014-04-03 14:46:33 -0700148 struct fanotify_perm_event_info *event, *return_e = NULL;
Eric Parisb2d87902009-12-17 21:24:34 -0500149
Jan Kara9573f792014-04-03 14:46:34 -0700150 spin_lock(&group->fanotify_data.access_lock);
Jan Karaf0834412014-04-03 14:46:33 -0700151 list_for_each_entry(event, &group->fanotify_data.access_list,
152 fae.fse.list) {
153 if (event->fd != fd)
Eric Parisb2d87902009-12-17 21:24:34 -0500154 continue;
155
Jan Karaf0834412014-04-03 14:46:33 -0700156 list_del_init(&event->fae.fse.list);
157 return_e = event;
Eric Parisb2d87902009-12-17 21:24:34 -0500158 break;
159 }
Jan Kara9573f792014-04-03 14:46:34 -0700160 spin_unlock(&group->fanotify_data.access_lock);
Eric Parisb2d87902009-12-17 21:24:34 -0500161
Jan Karaf0834412014-04-03 14:46:33 -0700162 pr_debug("%s: found return_re=%p\n", __func__, return_e);
Eric Parisb2d87902009-12-17 21:24:34 -0500163
Jan Karaf0834412014-04-03 14:46:33 -0700164 return return_e;
Eric Parisb2d87902009-12-17 21:24:34 -0500165}
166
167static int process_access_response(struct fsnotify_group *group,
168 struct fanotify_response *response_struct)
169{
Jan Karaf0834412014-04-03 14:46:33 -0700170 struct fanotify_perm_event_info *event;
171 int fd = response_struct->fd;
172 int response = response_struct->response;
Eric Parisb2d87902009-12-17 21:24:34 -0500173
174 pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group,
175 fd, response);
176 /*
177 * make sure the response is valid, if invalid we do nothing and either
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300178 * userspace can send a valid response or we will clean it up after the
Eric Parisb2d87902009-12-17 21:24:34 -0500179 * timeout
180 */
181 switch (response) {
182 case FAN_ALLOW:
183 case FAN_DENY:
184 break;
185 default:
186 return -EINVAL;
187 }
188
189 if (fd < 0)
190 return -EINVAL;
191
Jan Karaf0834412014-04-03 14:46:33 -0700192 event = dequeue_event(group, fd);
193 if (!event)
Eric Parisb2d87902009-12-17 21:24:34 -0500194 return -ENOENT;
195
Jan Karaf0834412014-04-03 14:46:33 -0700196 event->response = response;
Eric Parisb2d87902009-12-17 21:24:34 -0500197 wake_up(&group->fanotify_data.access_waitq);
198
Eric Parisb2d87902009-12-17 21:24:34 -0500199 return 0;
200}
Eric Parisb2d87902009-12-17 21:24:34 -0500201#endif
202
Eric Parisa1014f12009-12-17 21:24:26 -0500203static ssize_t copy_event_to_user(struct fsnotify_group *group,
204 struct fsnotify_event *event,
205 char __user *buf)
206{
207 struct fanotify_event_metadata fanotify_event_metadata;
Al Viro352e3b22012-08-19 12:30:45 -0400208 struct file *f;
Eric Parisb2d87902009-12-17 21:24:34 -0500209 int fd, ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500210
211 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
212
Al Viro352e3b22012-08-19 12:30:45 -0400213 ret = fill_event_metadata(group, &fanotify_event_metadata, event, &f);
Eric Parisecf6f5e2010-11-08 18:08:14 -0500214 if (ret < 0)
Jan Karad5078162014-04-03 14:46:36 -0700215 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500216
Lino Sanfilippofdbf3ce2010-11-24 18:26:04 +0100217 fd = fanotify_event_metadata.fd;
Al Viro352e3b22012-08-19 12:30:45 -0400218 ret = -EFAULT;
219 if (copy_to_user(buf, &fanotify_event_metadata,
220 fanotify_event_metadata.event_len))
221 goto out_close_fd;
222
Jan Karaf0834412014-04-03 14:46:33 -0700223#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Karad5078162014-04-03 14:46:36 -0700224 if (event->mask & FAN_ALL_PERM_EVENTS)
225 FANOTIFY_PE(event)->fd = fd;
Jan Karaf0834412014-04-03 14:46:33 -0700226#endif
Eric Parisb2d87902009-12-17 21:24:34 -0500227
Al Viro3587b1b2012-11-18 19:19:00 +0000228 if (fd != FAN_NOFD)
229 fd_install(fd, f);
Eric Paris7d131622010-12-07 15:27:57 -0500230 return fanotify_event_metadata.event_len;
Eric Parisb2d87902009-12-17 21:24:34 -0500231
Eric Parisb2d87902009-12-17 21:24:34 -0500232out_close_fd:
Al Viro352e3b22012-08-19 12:30:45 -0400233 if (fd != FAN_NOFD) {
234 put_unused_fd(fd);
235 fput(f);
236 }
Eric Parisb2d87902009-12-17 21:24:34 -0500237 return ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500238}
239
240/* intofiy userspace file descriptor functions */
241static unsigned int fanotify_poll(struct file *file, poll_table *wait)
242{
243 struct fsnotify_group *group = file->private_data;
244 int ret = 0;
245
246 poll_wait(file, &group->notification_waitq, wait);
247 mutex_lock(&group->notification_mutex);
248 if (!fsnotify_notify_queue_is_empty(group))
249 ret = POLLIN | POLLRDNORM;
250 mutex_unlock(&group->notification_mutex);
251
252 return ret;
253}
254
255static ssize_t fanotify_read(struct file *file, char __user *buf,
256 size_t count, loff_t *pos)
257{
258 struct fsnotify_group *group;
259 struct fsnotify_event *kevent;
260 char __user *start;
261 int ret;
262 DEFINE_WAIT(wait);
263
264 start = buf;
265 group = file->private_data;
266
267 pr_debug("%s: group=%p\n", __func__, group);
268
269 while (1) {
270 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
271
272 mutex_lock(&group->notification_mutex);
273 kevent = get_one_event(group, count);
274 mutex_unlock(&group->notification_mutex);
275
Jan Karad8aaab42014-04-03 14:46:35 -0700276 if (IS_ERR(kevent)) {
Eric Parisa1014f12009-12-17 21:24:26 -0500277 ret = PTR_ERR(kevent);
Jan Karad8aaab42014-04-03 14:46:35 -0700278 break;
279 }
280
281 if (!kevent) {
282 ret = -EAGAIN;
283 if (file->f_flags & O_NONBLOCK)
Eric Parisa1014f12009-12-17 21:24:26 -0500284 break;
Jan Karad8aaab42014-04-03 14:46:35 -0700285
286 ret = -ERESTARTSYS;
287 if (signal_pending(current))
Eric Parisa1014f12009-12-17 21:24:26 -0500288 break;
Jan Karad8aaab42014-04-03 14:46:35 -0700289
290 if (start != buf)
291 break;
292 schedule();
Eric Parisa1014f12009-12-17 21:24:26 -0500293 continue;
294 }
295
Jan Karad8aaab42014-04-03 14:46:35 -0700296 ret = copy_event_to_user(group, kevent, buf);
297 /*
298 * Permission events get queued to wait for response. Other
299 * events can be destroyed now.
300 */
Jan Karad5078162014-04-03 14:46:36 -0700301 if (!(kevent->mask & FAN_ALL_PERM_EVENTS)) {
Jan Karad8aaab42014-04-03 14:46:35 -0700302 fsnotify_destroy_event(group, kevent);
Jan Karad5078162014-04-03 14:46:36 -0700303 if (ret < 0)
304 break;
305 } else {
306#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
307 if (ret < 0) {
308 FANOTIFY_PE(kevent)->response = FAN_DENY;
309 wake_up(&group->fanotify_data.access_waitq);
310 break;
311 }
312 spin_lock(&group->fanotify_data.access_lock);
313 list_add_tail(&kevent->list,
314 &group->fanotify_data.access_list);
315 spin_unlock(&group->fanotify_data.access_lock);
316#endif
317 }
Jan Karad8aaab42014-04-03 14:46:35 -0700318 buf += ret;
319 count -= ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500320 }
321
322 finish_wait(&group->notification_waitq, &wait);
323 if (start != buf && ret != -EFAULT)
324 ret = buf - start;
325 return ret;
326}
327
Eric Parisb2d87902009-12-17 21:24:34 -0500328static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
329{
330#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
331 struct fanotify_response response = { .fd = -1, .response = -1 };
332 struct fsnotify_group *group;
333 int ret;
334
335 group = file->private_data;
336
337 if (count > sizeof(response))
338 count = sizeof(response);
339
340 pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
341
342 if (copy_from_user(&response, buf, count))
343 return -EFAULT;
344
345 ret = process_access_response(group, &response);
346 if (ret < 0)
347 count = ret;
348
349 return count;
350#else
351 return -EINVAL;
352#endif
353}
354
Eric Paris52c923d2009-12-17 21:24:26 -0500355static int fanotify_release(struct inode *ignored, struct file *file)
356{
357 struct fsnotify_group *group = file->private_data;
Eric Paris52c923d2009-12-17 21:24:26 -0500358
Eric Paris2eebf582010-08-18 12:25:50 -0400359#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Karaf0834412014-04-03 14:46:33 -0700360 struct fanotify_perm_event_info *event, *next;
Andrew Morton19ba54f2010-10-28 17:21:59 -0400361
Jan Kara5838d442014-08-06 16:03:28 -0700362 /*
363 * There may be still new events arriving in the notification queue
364 * but since userspace cannot use fanotify fd anymore, no event can
365 * enter or leave access_list by now.
366 */
Jan Kara9573f792014-04-03 14:46:34 -0700367 spin_lock(&group->fanotify_data.access_lock);
Eric Paris2eebf582010-08-18 12:25:50 -0400368
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100369 atomic_inc(&group->fanotify_data.bypass_perm);
Eric Paris2eebf582010-08-18 12:25:50 -0400370
Jan Karaf0834412014-04-03 14:46:33 -0700371 list_for_each_entry_safe(event, next, &group->fanotify_data.access_list,
372 fae.fse.list) {
373 pr_debug("%s: found group=%p event=%p\n", __func__, group,
374 event);
Eric Paris2eebf582010-08-18 12:25:50 -0400375
Jan Karaf0834412014-04-03 14:46:33 -0700376 list_del_init(&event->fae.fse.list);
377 event->response = FAN_ALLOW;
Eric Paris2eebf582010-08-18 12:25:50 -0400378 }
Jan Kara9573f792014-04-03 14:46:34 -0700379 spin_unlock(&group->fanotify_data.access_lock);
Eric Paris2eebf582010-08-18 12:25:50 -0400380
Jan Kara5838d442014-08-06 16:03:28 -0700381 /*
382 * Since bypass_perm is set, newly queued events will not wait for
383 * access response. Wake up the already sleeping ones now.
384 * synchronize_srcu() in fsnotify_destroy_group() will wait for all
385 * processes sleeping in fanotify_handle_event() waiting for access
386 * response and thus also for all permission events to be freed.
387 */
Eric Paris2eebf582010-08-18 12:25:50 -0400388 wake_up(&group->fanotify_data.access_waitq);
389#endif
Eric Paris0a6b6bd2011-10-14 17:43:39 -0400390
Eric Paris52c923d2009-12-17 21:24:26 -0500391 /* matches the fanotify_init->fsnotify_alloc_group */
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200392 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500393
394 return 0;
395}
396
Eric Parisa1014f12009-12-17 21:24:26 -0500397static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
398{
399 struct fsnotify_group *group;
Jan Kara7053aee2014-01-21 15:48:14 -0800400 struct fsnotify_event *fsn_event;
Eric Parisa1014f12009-12-17 21:24:26 -0500401 void __user *p;
402 int ret = -ENOTTY;
403 size_t send_len = 0;
404
405 group = file->private_data;
406
407 p = (void __user *) arg;
408
409 switch (cmd) {
410 case FIONREAD:
411 mutex_lock(&group->notification_mutex);
Jan Kara7053aee2014-01-21 15:48:14 -0800412 list_for_each_entry(fsn_event, &group->notification_list, list)
Eric Parisa1014f12009-12-17 21:24:26 -0500413 send_len += FAN_EVENT_METADATA_LEN;
414 mutex_unlock(&group->notification_mutex);
415 ret = put_user(send_len, (int __user *) p);
416 break;
417 }
418
419 return ret;
420}
421
Eric Paris52c923d2009-12-17 21:24:26 -0500422static const struct file_operations fanotify_fops = {
Cyrill Gorcunovbe771962012-12-17 16:05:12 -0800423 .show_fdinfo = fanotify_show_fdinfo,
Eric Parisa1014f12009-12-17 21:24:26 -0500424 .poll = fanotify_poll,
425 .read = fanotify_read,
Eric Parisb2d87902009-12-17 21:24:34 -0500426 .write = fanotify_write,
Eric Paris52c923d2009-12-17 21:24:26 -0500427 .fasync = NULL,
428 .release = fanotify_release,
Eric Parisa1014f12009-12-17 21:24:26 -0500429 .unlocked_ioctl = fanotify_ioctl,
430 .compat_ioctl = fanotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200431 .llseek = noop_llseek,
Eric Paris52c923d2009-12-17 21:24:26 -0500432};
433
Eric Paris2a3edf82009-12-17 21:24:26 -0500434static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
435{
436 kmem_cache_free(fanotify_mark_cache, fsn_mark);
437}
438
439static int fanotify_find_path(int dfd, const char __user *filename,
440 struct path *path, unsigned int flags)
441{
442 int ret;
443
444 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
445 dfd, filename, flags);
446
447 if (filename == NULL) {
Al Viro2903ff02012-08-28 12:52:22 -0400448 struct fd f = fdget(dfd);
Eric Paris2a3edf82009-12-17 21:24:26 -0500449
450 ret = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400451 if (!f.file)
Eric Paris2a3edf82009-12-17 21:24:26 -0500452 goto out;
453
454 ret = -ENOTDIR;
455 if ((flags & FAN_MARK_ONLYDIR) &&
Al Viro496ad9a2013-01-23 17:07:38 -0500456 !(S_ISDIR(file_inode(f.file)->i_mode))) {
Al Viro2903ff02012-08-28 12:52:22 -0400457 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500458 goto out;
459 }
460
Al Viro2903ff02012-08-28 12:52:22 -0400461 *path = f.file->f_path;
Eric Paris2a3edf82009-12-17 21:24:26 -0500462 path_get(path);
Al Viro2903ff02012-08-28 12:52:22 -0400463 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500464 } else {
465 unsigned int lookup_flags = 0;
466
467 if (!(flags & FAN_MARK_DONT_FOLLOW))
468 lookup_flags |= LOOKUP_FOLLOW;
469 if (flags & FAN_MARK_ONLYDIR)
470 lookup_flags |= LOOKUP_DIRECTORY;
471
472 ret = user_path_at(dfd, filename, lookup_flags, path);
473 if (ret)
474 goto out;
475 }
476
477 /* you can only watch an inode if you have read permissions on it */
478 ret = inode_permission(path->dentry->d_inode, MAY_READ);
479 if (ret)
480 path_put(path);
481out:
482 return ret;
483}
484
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500485static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
486 __u32 mask,
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200487 unsigned int flags,
488 int *destroy)
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500489{
490 __u32 oldmask;
491
492 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500493 if (!(flags & FAN_MARK_IGNORED_MASK)) {
494 oldmask = fsn_mark->mask;
495 fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask));
496 } else {
497 oldmask = fsn_mark->ignored_mask;
498 fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask));
499 }
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500500 spin_unlock(&fsn_mark->lock);
501
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200502 *destroy = !(oldmask & ~mask);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500503
504 return mask & oldmask;
505}
506
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500507static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500508 struct vfsmount *mnt, __u32 mask,
509 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500510{
511 struct fsnotify_mark *fsn_mark = NULL;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500512 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200513 int destroy_mark;
Eric Paris88826272009-12-17 21:24:28 -0500514
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700515 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500516 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700517 if (!fsn_mark) {
518 mutex_unlock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500519 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700520 }
Eric Paris88826272009-12-17 21:24:28 -0500521
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200522 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
523 &destroy_mark);
524 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700525 fsnotify_destroy_mark_locked(fsn_mark, group);
526 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200527
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500528 fsnotify_put_mark(fsn_mark);
Al Viroc63181e2011-11-25 02:35:16 -0500529 if (removed & real_mount(mnt)->mnt_fsnotify_mask)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500530 fsnotify_recalc_vfsmount_mask(mnt);
Eric Paris88826272009-12-17 21:24:28 -0500531
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500532 return 0;
533}
534
535static int fanotify_remove_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500536 struct inode *inode, __u32 mask,
537 unsigned int flags)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500538{
539 struct fsnotify_mark *fsn_mark = NULL;
540 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200541 int destroy_mark;
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500542
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700543 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500544 fsn_mark = fsnotify_find_inode_mark(group, inode);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700545 if (!fsn_mark) {
546 mutex_unlock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500547 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700548 }
Eric Paris88826272009-12-17 21:24:28 -0500549
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200550 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
551 &destroy_mark);
552 if (destroy_mark)
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700553 fsnotify_destroy_mark_locked(fsn_mark, group);
554 mutex_unlock(&group->mark_mutex);
555
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
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700591static struct fsnotify_mark *fanotify_add_new_mark(struct fsnotify_group *group,
592 struct inode *inode,
593 struct vfsmount *mnt)
594{
595 struct fsnotify_mark *mark;
596 int ret;
597
598 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
599 return ERR_PTR(-ENOSPC);
600
601 mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
602 if (!mark)
603 return ERR_PTR(-ENOMEM);
604
605 fsnotify_init_mark(mark, fanotify_free_mark);
606 ret = fsnotify_add_mark_locked(mark, group, inode, mnt, 0);
607 if (ret) {
608 fsnotify_put_mark(mark);
609 return ERR_PTR(ret);
610 }
611
612 return mark;
613}
614
615
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500616static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500617 struct vfsmount *mnt, __u32 mask,
618 unsigned int flags)
Eric Paris2a3edf82009-12-17 21:24:26 -0500619{
620 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500621 __u32 added;
Eric Paris2a3edf82009-12-17 21:24:26 -0500622
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700623 mutex_lock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500624 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
625 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700626 fsn_mark = fanotify_add_new_mark(group, NULL, mnt);
627 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700628 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700629 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700630 }
Eric Paris88826272009-12-17 21:24:28 -0500631 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500632 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700633 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100634
Al Viroc63181e2011-11-25 02:35:16 -0500635 if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
Eric Paris43709a22010-07-28 10:18:39 -0400636 fsnotify_recalc_vfsmount_mask(mnt);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700637
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100638 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700639 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500640}
641
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500642static int fanotify_add_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500643 struct inode *inode, __u32 mask,
644 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500645{
646 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500647 __u32 added;
Eric Paris88826272009-12-17 21:24:28 -0500648
649 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500650
Eric Paris5322a592010-10-28 17:21:57 -0400651 /*
652 * If some other task has this inode open for write we should not add
653 * an ignored mark, unless that ignored mark is supposed to survive
654 * modification changes anyway.
655 */
656 if ((flags & FAN_MARK_IGNORED_MASK) &&
657 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
658 (atomic_read(&inode->i_writecount) > 0))
659 return 0;
660
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700661 mutex_lock(&group->mark_mutex);
Eric Paris5444e292009-12-17 21:24:27 -0500662 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500663 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700664 fsn_mark = fanotify_add_new_mark(group, inode, NULL);
665 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700666 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700667 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700668 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500669 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500670 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700671 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100672
Eric Paris43709a22010-07-28 10:18:39 -0400673 if (added & ~inode->i_fsnotify_mask)
674 fsnotify_recalc_inode_mask(inode);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700675
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100676 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700677 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500678}
Eric Paris2a3edf82009-12-17 21:24:26 -0500679
Eric Paris52c923d2009-12-17 21:24:26 -0500680/* fanotify syscalls */
Eric Paris08ae8932010-05-27 09:41:40 -0400681SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
Eric Paris11637e42009-12-17 21:24:25 -0500682{
Eric Paris52c923d2009-12-17 21:24:26 -0500683 struct fsnotify_group *group;
684 int f_flags, fd;
Eric Paris4afeff82010-10-28 17:21:58 -0400685 struct user_struct *user;
Jan Karaff57cd52014-02-21 19:14:11 +0100686 struct fanotify_event_info *oevent;
Eric Paris52c923d2009-12-17 21:24:26 -0500687
Eric Paris08ae8932010-05-27 09:41:40 -0400688 pr_debug("%s: flags=%d event_f_flags=%d\n",
689 __func__, flags, event_f_flags);
Eric Paris52c923d2009-12-17 21:24:26 -0500690
Eric Paris52c923d2009-12-17 21:24:26 -0500691 if (!capable(CAP_SYS_ADMIN))
Andreas Gruenbachera2f13ad2010-08-24 12:58:54 +0200692 return -EPERM;
Eric Paris52c923d2009-12-17 21:24:26 -0500693
694 if (flags & ~FAN_ALL_INIT_FLAGS)
695 return -EINVAL;
696
Heinrich Schuchardt48149e92014-06-04 16:05:44 -0700697 if (event_f_flags & ~FANOTIFY_INIT_ALL_EVENT_F_BITS)
698 return -EINVAL;
699
700 switch (event_f_flags & O_ACCMODE) {
701 case O_RDONLY:
702 case O_RDWR:
703 case O_WRONLY:
704 break;
705 default:
706 return -EINVAL;
707 }
708
Eric Paris4afeff82010-10-28 17:21:58 -0400709 user = get_current_user();
710 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
711 free_uid(user);
712 return -EMFILE;
713 }
714
Eric Parisb2d87902009-12-17 21:24:34 -0500715 f_flags = O_RDWR | FMODE_NONOTIFY;
Eric Paris52c923d2009-12-17 21:24:26 -0500716 if (flags & FAN_CLOEXEC)
717 f_flags |= O_CLOEXEC;
718 if (flags & FAN_NONBLOCK)
719 f_flags |= O_NONBLOCK;
720
721 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
722 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
Eric Paris26379192010-11-23 23:48:26 -0500723 if (IS_ERR(group)) {
724 free_uid(user);
Eric Paris52c923d2009-12-17 21:24:26 -0500725 return PTR_ERR(group);
Eric Paris26379192010-11-23 23:48:26 -0500726 }
Eric Paris52c923d2009-12-17 21:24:26 -0500727
Eric Paris4afeff82010-10-28 17:21:58 -0400728 group->fanotify_data.user = user;
729 atomic_inc(&user->fanotify_listeners);
730
Jan Karaf0834412014-04-03 14:46:33 -0700731 oevent = fanotify_alloc_event(NULL, FS_Q_OVERFLOW, NULL);
Jan Karaff57cd52014-02-21 19:14:11 +0100732 if (unlikely(!oevent)) {
733 fd = -ENOMEM;
734 goto out_destroy_group;
735 }
736 group->overflow_event = &oevent->fse;
Jan Karaff57cd52014-02-21 19:14:11 +0100737
Will Woods1e2ee492014-05-06 12:50:10 -0700738 if (force_o_largefile())
739 event_f_flags |= O_LARGEFILE;
Eric Paris80af2582010-07-28 10:18:37 -0400740 group->fanotify_data.f_flags = event_f_flags;
Eric Paris9e66e422009-12-17 21:24:34 -0500741#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Kara9573f792014-04-03 14:46:34 -0700742 spin_lock_init(&group->fanotify_data.access_lock);
Eric Paris9e66e422009-12-17 21:24:34 -0500743 init_waitqueue_head(&group->fanotify_data.access_waitq);
744 INIT_LIST_HEAD(&group->fanotify_data.access_list);
Lino Sanfilippo09e5f142010-11-19 10:58:07 +0100745 atomic_set(&group->fanotify_data.bypass_perm, 0);
Eric Paris9e66e422009-12-17 21:24:34 -0500746#endif
Eric Paris4231a232010-10-28 17:21:56 -0400747 switch (flags & FAN_ALL_CLASS_BITS) {
748 case FAN_CLASS_NOTIF:
749 group->priority = FS_PRIO_0;
750 break;
751 case FAN_CLASS_CONTENT:
752 group->priority = FS_PRIO_1;
753 break;
754 case FAN_CLASS_PRE_CONTENT:
755 group->priority = FS_PRIO_2;
756 break;
757 default:
758 fd = -EINVAL;
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200759 goto out_destroy_group;
Eric Paris4231a232010-10-28 17:21:56 -0400760 }
Eric Pariscb2d4292009-12-17 21:24:34 -0500761
Eric Paris5dd03f52010-10-28 17:21:57 -0400762 if (flags & FAN_UNLIMITED_QUEUE) {
763 fd = -EPERM;
764 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200765 goto out_destroy_group;
Eric Paris5dd03f52010-10-28 17:21:57 -0400766 group->max_events = UINT_MAX;
767 } else {
768 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
769 }
Eric Paris2529a0d2010-10-28 17:21:57 -0400770
Eric Parisac7e22d2010-10-28 17:21:58 -0400771 if (flags & FAN_UNLIMITED_MARKS) {
772 fd = -EPERM;
773 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200774 goto out_destroy_group;
Eric Parisac7e22d2010-10-28 17:21:58 -0400775 group->fanotify_data.max_marks = UINT_MAX;
776 } else {
777 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
778 }
Eric Parise7099d82010-10-28 17:21:57 -0400779
Eric Paris52c923d2009-12-17 21:24:26 -0500780 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
781 if (fd < 0)
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200782 goto out_destroy_group;
Eric Paris52c923d2009-12-17 21:24:26 -0500783
784 return fd;
785
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200786out_destroy_group:
787 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500788 return fd;
Eric Paris11637e42009-12-17 21:24:25 -0500789}
Eric Parisbbaa4162009-12-17 21:24:26 -0500790
Al Viro4a0fd5b2013-01-21 15:16:58 -0500791SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
792 __u64, mask, int, dfd,
793 const char __user *, pathname)
Eric Parisbbaa4162009-12-17 21:24:26 -0500794{
Eric Paris0ff21db2009-12-17 21:24:29 -0500795 struct inode *inode = NULL;
796 struct vfsmount *mnt = NULL;
Eric Paris2a3edf82009-12-17 21:24:26 -0500797 struct fsnotify_group *group;
Al Viro2903ff02012-08-28 12:52:22 -0400798 struct fd f;
Eric Paris2a3edf82009-12-17 21:24:26 -0500799 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -0400800 int ret;
Eric Paris2a3edf82009-12-17 21:24:26 -0500801
802 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
803 __func__, fanotify_fd, flags, dfd, pathname, mask);
804
805 /* we only use the lower 32 bits as of right now. */
806 if (mask & ((__u64)0xffffffff << 32))
807 return -EINVAL;
808
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500809 if (flags & ~FAN_ALL_MARK_FLAGS)
810 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500811 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100812 case FAN_MARK_ADD: /* fallthrough */
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500813 case FAN_MARK_REMOVE:
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100814 if (!mask)
815 return -EINVAL;
Heinrich Schuchardtcc299a92014-06-04 16:05:43 -0700816 break;
Eric Paris4d926042009-12-17 21:24:34 -0500817 case FAN_MARK_FLUSH:
Heinrich Schuchardtcc299a92014-06-04 16:05:43 -0700818 if (flags & ~(FAN_MARK_MOUNT | FAN_MARK_FLUSH))
819 return -EINVAL;
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500820 break;
821 default:
822 return -EINVAL;
823 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400824
825 if (mask & FAN_ONDIR) {
826 flags |= FAN_MARK_ONDIR;
827 mask &= ~FAN_ONDIR;
828 }
829
Eric Parisb2d87902009-12-17 21:24:34 -0500830#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
831 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
832#else
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500833 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
Eric Parisb2d87902009-12-17 21:24:34 -0500834#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500835 return -EINVAL;
836
Al Viro2903ff02012-08-28 12:52:22 -0400837 f = fdget(fanotify_fd);
838 if (unlikely(!f.file))
Eric Paris2a3edf82009-12-17 21:24:26 -0500839 return -EBADF;
840
841 /* verify that this is indeed an fanotify instance */
842 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -0400843 if (unlikely(f.file->f_op != &fanotify_fops))
Eric Paris2a3edf82009-12-17 21:24:26 -0500844 goto fput_and_out;
Al Viro2903ff02012-08-28 12:52:22 -0400845 group = f.file->private_data;
Eric Paris4231a232010-10-28 17:21:56 -0400846
847 /*
848 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
849 * allowed to set permissions events.
850 */
851 ret = -EINVAL;
852 if (mask & FAN_ALL_PERM_EVENTS &&
853 group->priority == FS_PRIO_0)
854 goto fput_and_out;
Eric Paris2a3edf82009-12-17 21:24:26 -0500855
Heinrich Schuchardt0a8dd2d2014-06-04 16:05:40 -0700856 if (flags & FAN_MARK_FLUSH) {
857 ret = 0;
858 if (flags & FAN_MARK_MOUNT)
859 fsnotify_clear_vfsmount_marks_by_group(group);
860 else
861 fsnotify_clear_inode_marks_by_group(group);
862 goto fput_and_out;
863 }
864
Eric Paris2a3edf82009-12-17 21:24:26 -0500865 ret = fanotify_find_path(dfd, pathname, &path, flags);
866 if (ret)
867 goto fput_and_out;
868
869 /* inode held in place by reference to path; group by fget on fd */
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500870 if (!(flags & FAN_MARK_MOUNT))
Eric Paris0ff21db2009-12-17 21:24:29 -0500871 inode = path.dentry->d_inode;
872 else
873 mnt = path.mnt;
Eric Paris2a3edf82009-12-17 21:24:26 -0500874
875 /* create/update an inode mark */
Heinrich Schuchardt0a8dd2d2014-06-04 16:05:40 -0700876 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE)) {
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500877 case FAN_MARK_ADD:
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500878 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500879 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
Eric Paris0ff21db2009-12-17 21:24:29 -0500880 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500881 ret = fanotify_add_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500882 break;
883 case FAN_MARK_REMOVE:
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500884 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500885 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500886 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500887 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500888 break;
889 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);
Jan Kara7053aee2014-01-21 15:48:14 -0800923 fanotify_event_cachep = KMEM_CACHE(fanotify_event_info, SLAB_PANIC);
Jan Karaf0834412014-04-03 14:46:33 -0700924#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
925 fanotify_perm_event_cachep = KMEM_CACHE(fanotify_perm_event_info,
926 SLAB_PANIC);
927#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500928
929 return 0;
930}
931device_initcall(fanotify_user_setup);