blob: cef9885de214cdf9d7ea933cb0b650d2dabde2d7 [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 *
Jan Karac21dbe22016-10-07 16:56:52 -070052 * Called with the group->notification_lock held.
Eric Parisa1014f12009-12-17 21:24:26 -050053 */
54static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
55 size_t count)
56{
Jan Karaed272642016-10-07 16:57:01 -070057 assert_spin_locked(&group->notification_lock);
Eric Parisa1014f12009-12-17 21:24:26 -050058
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
Jan Karac21dbe22016-10-07 16:56:52 -070067 /* held the notification_lock the whole time, so this is the
Eric Parisa1014f12009-12-17 21:24:26 -050068 * 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
Yann Droneaud0b37e092014-10-09 15:24:40 -070081 client_fd = get_unused_fd_flags(group->fanotify_data.f_flags);
Eric Parisa1014f12009-12-17 21:24:26 -050082 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 Kara073f6552016-10-07 16:56:55 -0700150 spin_lock(&group->notification_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 Kara073f6552016-10-07 16:56:55 -0700160 spin_unlock(&group->notification_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);
Jan Karac21dbe22016-10-07 16:56:52 -0700247 spin_lock(&group->notification_lock);
Eric Parisa1014f12009-12-17 21:24:26 -0500248 if (!fsnotify_notify_queue_is_empty(group))
249 ret = POLLIN | POLLRDNORM;
Jan Karac21dbe22016-10-07 16:56:52 -0700250 spin_unlock(&group->notification_lock);
Eric Parisa1014f12009-12-17 21:24:26 -0500251
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;
Peter Zijlstra536ebe9ca2014-12-16 16:28:38 +0100262 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric Parisa1014f12009-12-17 21:24:26 -0500263
264 start = buf;
265 group = file->private_data;
266
267 pr_debug("%s: group=%p\n", __func__, group);
268
Peter Zijlstra536ebe9ca2014-12-16 16:28:38 +0100269 add_wait_queue(&group->notification_waitq, &wait);
Eric Parisa1014f12009-12-17 21:24:26 -0500270 while (1) {
Jan Karac21dbe22016-10-07 16:56:52 -0700271 spin_lock(&group->notification_lock);
Eric Parisa1014f12009-12-17 21:24:26 -0500272 kevent = get_one_event(group, count);
Jan Karac21dbe22016-10-07 16:56:52 -0700273 spin_unlock(&group->notification_lock);
Eric Parisa1014f12009-12-17 21:24:26 -0500274
Jan Karad8aaab42014-04-03 14:46:35 -0700275 if (IS_ERR(kevent)) {
Eric Parisa1014f12009-12-17 21:24:26 -0500276 ret = PTR_ERR(kevent);
Jan Karad8aaab42014-04-03 14:46:35 -0700277 break;
278 }
279
280 if (!kevent) {
281 ret = -EAGAIN;
282 if (file->f_flags & O_NONBLOCK)
Eric Parisa1014f12009-12-17 21:24:26 -0500283 break;
Jan Karad8aaab42014-04-03 14:46:35 -0700284
285 ret = -ERESTARTSYS;
286 if (signal_pending(current))
Eric Parisa1014f12009-12-17 21:24:26 -0500287 break;
Jan Karad8aaab42014-04-03 14:46:35 -0700288
289 if (start != buf)
290 break;
Peter Zijlstra536ebe9ca2014-12-16 16:28:38 +0100291
292 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
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);
Amir Goldsteincc0f9942017-04-25 14:29:35 +0300297 if (unlikely(ret == -EOPENSTALE)) {
298 /*
299 * We cannot report events with stale fd so drop it.
300 * Setting ret to 0 will continue the event loop and
301 * do the right thing if there are no more events to
302 * read (i.e. return bytes read, -EAGAIN or wait).
303 */
304 ret = 0;
305 }
306
Jan Karad8aaab42014-04-03 14:46:35 -0700307 /*
308 * Permission events get queued to wait for response. Other
309 * events can be destroyed now.
310 */
Jan Karad5078162014-04-03 14:46:36 -0700311 if (!(kevent->mask & FAN_ALL_PERM_EVENTS)) {
Jan Karad8aaab42014-04-03 14:46:35 -0700312 fsnotify_destroy_event(group, kevent);
Jan Karad5078162014-04-03 14:46:36 -0700313 } else {
314#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Amir Goldsteincc0f9942017-04-25 14:29:35 +0300315 if (ret <= 0) {
Jan Karad5078162014-04-03 14:46:36 -0700316 FANOTIFY_PE(kevent)->response = FAN_DENY;
317 wake_up(&group->fanotify_data.access_waitq);
Amir Goldsteincc0f9942017-04-25 14:29:35 +0300318 } else {
319 spin_lock(&group->notification_lock);
320 list_add_tail(&kevent->list,
321 &group->fanotify_data.access_list);
322 spin_unlock(&group->notification_lock);
Jan Karad5078162014-04-03 14:46:36 -0700323 }
Jan Karad5078162014-04-03 14:46:36 -0700324#endif
325 }
Amir Goldsteincc0f9942017-04-25 14:29:35 +0300326 if (ret < 0)
327 break;
Jan Karad8aaab42014-04-03 14:46:35 -0700328 buf += ret;
329 count -= ret;
Eric Parisa1014f12009-12-17 21:24:26 -0500330 }
Peter Zijlstra536ebe9ca2014-12-16 16:28:38 +0100331 remove_wait_queue(&group->notification_waitq, &wait);
Eric Parisa1014f12009-12-17 21:24:26 -0500332
Eric Parisa1014f12009-12-17 21:24:26 -0500333 if (start != buf && ret != -EFAULT)
334 ret = buf - start;
335 return ret;
336}
337
Eric Parisb2d87902009-12-17 21:24:34 -0500338static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos)
339{
340#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
341 struct fanotify_response response = { .fd = -1, .response = -1 };
342 struct fsnotify_group *group;
343 int ret;
344
345 group = file->private_data;
346
347 if (count > sizeof(response))
348 count = sizeof(response);
349
350 pr_debug("%s: group=%p count=%zu\n", __func__, group, count);
351
352 if (copy_from_user(&response, buf, count))
353 return -EFAULT;
354
355 ret = process_access_response(group, &response);
356 if (ret < 0)
357 count = ret;
358
359 return count;
360#else
361 return -EINVAL;
362#endif
363}
364
Eric Paris52c923d2009-12-17 21:24:26 -0500365static int fanotify_release(struct inode *ignored, struct file *file)
366{
367 struct fsnotify_group *group = file->private_data;
Eric Paris52c923d2009-12-17 21:24:26 -0500368
Eric Paris2eebf582010-08-18 12:25:50 -0400369#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Karaf0834412014-04-03 14:46:33 -0700370 struct fanotify_perm_event_info *event, *next;
Jan Kara96d41012016-09-19 14:44:30 -0700371 struct fsnotify_event *fsn_event;
Andrew Morton19ba54f2010-10-28 17:21:59 -0400372
Jan Kara5838d442014-08-06 16:03:28 -0700373 /*
Jan Kara96d41012016-09-19 14:44:30 -0700374 * Stop new events from arriving in the notification queue. since
375 * userspace cannot use fanotify fd anymore, no event can enter or
376 * leave access_list by now either.
377 */
378 fsnotify_group_stop_queueing(group);
379
380 /*
381 * Process all permission events on access_list and notification queue
382 * and simulate reply from userspace.
Jan Kara5838d442014-08-06 16:03:28 -0700383 */
Jan Kara073f6552016-10-07 16:56:55 -0700384 spin_lock(&group->notification_lock);
Jan Karaf0834412014-04-03 14:46:33 -0700385 list_for_each_entry_safe(event, next, &group->fanotify_data.access_list,
386 fae.fse.list) {
387 pr_debug("%s: found group=%p event=%p\n", __func__, group,
388 event);
Eric Paris2eebf582010-08-18 12:25:50 -0400389
Jan Karaf0834412014-04-03 14:46:33 -0700390 list_del_init(&event->fae.fse.list);
391 event->response = FAN_ALLOW;
Eric Paris2eebf582010-08-18 12:25:50 -0400392 }
Eric Paris2eebf582010-08-18 12:25:50 -0400393
Jan Kara5838d442014-08-06 16:03:28 -0700394 /*
Jan Kara96d41012016-09-19 14:44:30 -0700395 * Destroy all non-permission events. For permission events just
396 * dequeue them and set the response. They will be freed once the
397 * response is consumed and fanotify_get_response() returns.
Jan Kara5838d442014-08-06 16:03:28 -0700398 */
Jan Kara96d41012016-09-19 14:44:30 -0700399 while (!fsnotify_notify_queue_is_empty(group)) {
400 fsn_event = fsnotify_remove_first_event(group);
Jan Kara1404ff32016-10-07 16:56:49 -0700401 if (!(fsn_event->mask & FAN_ALL_PERM_EVENTS)) {
Jan Karac21dbe22016-10-07 16:56:52 -0700402 spin_unlock(&group->notification_lock);
Jan Kara96d41012016-09-19 14:44:30 -0700403 fsnotify_destroy_event(group, fsn_event);
Jan Karac21dbe22016-10-07 16:56:52 -0700404 spin_lock(&group->notification_lock);
Jan Kara1404ff32016-10-07 16:56:49 -0700405 } else
Jan Kara96d41012016-09-19 14:44:30 -0700406 FANOTIFY_PE(fsn_event)->response = FAN_ALLOW;
407 }
Jan Karac21dbe22016-10-07 16:56:52 -0700408 spin_unlock(&group->notification_lock);
Jan Kara96d41012016-09-19 14:44:30 -0700409
410 /* Response for all permission events it set, wakeup waiters */
Eric Paris2eebf582010-08-18 12:25:50 -0400411 wake_up(&group->fanotify_data.access_waitq);
412#endif
Eric Paris0a6b6bd2011-10-14 17:43:39 -0400413
Eric Paris52c923d2009-12-17 21:24:26 -0500414 /* matches the fanotify_init->fsnotify_alloc_group */
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200415 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500416
417 return 0;
418}
419
Eric Parisa1014f12009-12-17 21:24:26 -0500420static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
421{
422 struct fsnotify_group *group;
Jan Kara7053aee2014-01-21 15:48:14 -0800423 struct fsnotify_event *fsn_event;
Eric Parisa1014f12009-12-17 21:24:26 -0500424 void __user *p;
425 int ret = -ENOTTY;
426 size_t send_len = 0;
427
428 group = file->private_data;
429
430 p = (void __user *) arg;
431
432 switch (cmd) {
433 case FIONREAD:
Jan Karac21dbe22016-10-07 16:56:52 -0700434 spin_lock(&group->notification_lock);
Jan Kara7053aee2014-01-21 15:48:14 -0800435 list_for_each_entry(fsn_event, &group->notification_list, list)
Eric Parisa1014f12009-12-17 21:24:26 -0500436 send_len += FAN_EVENT_METADATA_LEN;
Jan Karac21dbe22016-10-07 16:56:52 -0700437 spin_unlock(&group->notification_lock);
Eric Parisa1014f12009-12-17 21:24:26 -0500438 ret = put_user(send_len, (int __user *) p);
439 break;
440 }
441
442 return ret;
443}
444
Eric Paris52c923d2009-12-17 21:24:26 -0500445static const struct file_operations fanotify_fops = {
Cyrill Gorcunovbe771962012-12-17 16:05:12 -0800446 .show_fdinfo = fanotify_show_fdinfo,
Eric Parisa1014f12009-12-17 21:24:26 -0500447 .poll = fanotify_poll,
448 .read = fanotify_read,
Eric Parisb2d87902009-12-17 21:24:34 -0500449 .write = fanotify_write,
Eric Paris52c923d2009-12-17 21:24:26 -0500450 .fasync = NULL,
451 .release = fanotify_release,
Eric Parisa1014f12009-12-17 21:24:26 -0500452 .unlocked_ioctl = fanotify_ioctl,
453 .compat_ioctl = fanotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200454 .llseek = noop_llseek,
Eric Paris52c923d2009-12-17 21:24:26 -0500455};
456
Eric Paris2a3edf82009-12-17 21:24:26 -0500457static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
458{
459 kmem_cache_free(fanotify_mark_cache, fsn_mark);
460}
461
462static int fanotify_find_path(int dfd, const char __user *filename,
463 struct path *path, unsigned int flags)
464{
465 int ret;
466
467 pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__,
468 dfd, filename, flags);
469
470 if (filename == NULL) {
Al Viro2903ff02012-08-28 12:52:22 -0400471 struct fd f = fdget(dfd);
Eric Paris2a3edf82009-12-17 21:24:26 -0500472
473 ret = -EBADF;
Al Viro2903ff02012-08-28 12:52:22 -0400474 if (!f.file)
Eric Paris2a3edf82009-12-17 21:24:26 -0500475 goto out;
476
477 ret = -ENOTDIR;
478 if ((flags & FAN_MARK_ONLYDIR) &&
Al Viro496ad9a2013-01-23 17:07:38 -0500479 !(S_ISDIR(file_inode(f.file)->i_mode))) {
Al Viro2903ff02012-08-28 12:52:22 -0400480 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500481 goto out;
482 }
483
Al Viro2903ff02012-08-28 12:52:22 -0400484 *path = f.file->f_path;
Eric Paris2a3edf82009-12-17 21:24:26 -0500485 path_get(path);
Al Viro2903ff02012-08-28 12:52:22 -0400486 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500487 } else {
488 unsigned int lookup_flags = 0;
489
490 if (!(flags & FAN_MARK_DONT_FOLLOW))
491 lookup_flags |= LOOKUP_FOLLOW;
492 if (flags & FAN_MARK_ONLYDIR)
493 lookup_flags |= LOOKUP_DIRECTORY;
494
495 ret = user_path_at(dfd, filename, lookup_flags, path);
496 if (ret)
497 goto out;
498 }
499
500 /* you can only watch an inode if you have read permissions on it */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700501 ret = inode_permission2(path->mnt, path->dentry->d_inode, MAY_READ);
Eric Paris2a3edf82009-12-17 21:24:26 -0500502 if (ret)
503 path_put(path);
504out:
505 return ret;
506}
507
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500508static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark,
509 __u32 mask,
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200510 unsigned int flags,
511 int *destroy)
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500512{
Lino Sanfilippod2c18742015-02-10 14:08:24 -0800513 __u32 oldmask = 0;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500514
515 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500516 if (!(flags & FAN_MARK_IGNORED_MASK)) {
Lino Sanfilippo66ba93c2015-02-10 14:08:27 -0800517 __u32 tmask = fsn_mark->mask & ~mask;
518
519 if (flags & FAN_MARK_ONDIR)
520 tmask &= ~FAN_ONDIR;
521
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500522 oldmask = fsn_mark->mask;
Lino Sanfilippo66ba93c2015-02-10 14:08:27 -0800523 fsnotify_set_mark_mask_locked(fsn_mark, tmask);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500524 } else {
Lino Sanfilippod2c18742015-02-10 14:08:24 -0800525 __u32 tmask = fsn_mark->ignored_mask & ~mask;
Lino Sanfilippo66ba93c2015-02-10 14:08:27 -0800526 if (flags & FAN_MARK_ONDIR)
527 tmask &= ~FAN_ONDIR;
Lino Sanfilippod2c18742015-02-10 14:08:24 -0800528
529 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500530 }
Lino Sanfilippoa1184492015-02-10 14:08:21 -0800531 *destroy = !(fsn_mark->mask | fsn_mark->ignored_mask);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500532 spin_unlock(&fsn_mark->lock);
533
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500534 return mask & oldmask;
535}
536
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500537static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500538 struct vfsmount *mnt, __u32 mask,
539 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500540{
541 struct fsnotify_mark *fsn_mark = NULL;
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500542 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200543 int destroy_mark;
Eric Paris88826272009-12-17 21:24:28 -0500544
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700545 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500546 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700547 if (!fsn_mark) {
548 mutex_unlock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500549 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700550 }
Eric Paris88826272009-12-17 21:24:28 -0500551
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200552 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
553 &destroy_mark);
554 if (destroy_mark)
Jan Kara4712e7222015-09-04 15:43:12 -0700555 fsnotify_detach_mark(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700556 mutex_unlock(&group->mark_mutex);
Jan Kara4712e7222015-09-04 15:43:12 -0700557 if (destroy_mark)
558 fsnotify_free_mark(fsn_mark);
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200559
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500560 fsnotify_put_mark(fsn_mark);
Al Viroc63181e2011-11-25 02:35:16 -0500561 if (removed & real_mount(mnt)->mnt_fsnotify_mask)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500562 fsnotify_recalc_vfsmount_mask(mnt);
Eric Paris88826272009-12-17 21:24:28 -0500563
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500564 return 0;
565}
566
567static int fanotify_remove_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500568 struct inode *inode, __u32 mask,
569 unsigned int flags)
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500570{
571 struct fsnotify_mark *fsn_mark = NULL;
572 __u32 removed;
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200573 int destroy_mark;
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500574
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700575 mutex_lock(&group->mark_mutex);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500576 fsn_mark = fsnotify_find_inode_mark(group, inode);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700577 if (!fsn_mark) {
578 mutex_unlock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500579 return -ENOENT;
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700580 }
Eric Paris88826272009-12-17 21:24:28 -0500581
Lino Sanfilippo6dfbd142011-06-14 17:29:49 +0200582 removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags,
583 &destroy_mark);
584 if (destroy_mark)
Jan Kara4712e7222015-09-04 15:43:12 -0700585 fsnotify_detach_mark(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700586 mutex_unlock(&group->mark_mutex);
Jan Kara4712e7222015-09-04 15:43:12 -0700587 if (destroy_mark)
588 fsnotify_free_mark(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700589
Eric Paris5444e292009-12-17 21:24:27 -0500590 /* matches the fsnotify_find_inode_mark() */
Eric Paris2a3edf82009-12-17 21:24:26 -0500591 fsnotify_put_mark(fsn_mark);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500592 if (removed & inode->i_fsnotify_mask)
593 fsnotify_recalc_inode_mask(inode);
Andreas Gruenbacher088b09b2009-12-17 21:24:28 -0500594
Eric Paris2a3edf82009-12-17 21:24:26 -0500595 return 0;
596}
597
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500598static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark,
599 __u32 mask,
600 unsigned int flags)
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500601{
Eric Paris192ca4d2010-10-28 17:21:59 -0400602 __u32 oldmask = -1;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500603
604 spin_lock(&fsn_mark->lock);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500605 if (!(flags & FAN_MARK_IGNORED_MASK)) {
Lino Sanfilippo66ba93c2015-02-10 14:08:27 -0800606 __u32 tmask = fsn_mark->mask | mask;
607
608 if (flags & FAN_MARK_ONDIR)
609 tmask |= FAN_ONDIR;
610
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500611 oldmask = fsn_mark->mask;
Lino Sanfilippo66ba93c2015-02-10 14:08:27 -0800612 fsnotify_set_mark_mask_locked(fsn_mark, tmask);
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500613 } else {
Eric Paris192ca4d2010-10-28 17:21:59 -0400614 __u32 tmask = fsn_mark->ignored_mask | mask;
Lino Sanfilippo66ba93c2015-02-10 14:08:27 -0800615 if (flags & FAN_MARK_ONDIR)
616 tmask |= FAN_ONDIR;
617
Eric Paris192ca4d2010-10-28 17:21:59 -0400618 fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask);
Eric Parisc9778a92009-12-17 21:24:33 -0500619 if (flags & FAN_MARK_IGNORED_SURV_MODIFY)
620 fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY;
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500621 }
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500622 spin_unlock(&fsn_mark->lock);
623
624 return mask & ~oldmask;
625}
626
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700627static struct fsnotify_mark *fanotify_add_new_mark(struct fsnotify_group *group,
628 struct inode *inode,
629 struct vfsmount *mnt)
630{
631 struct fsnotify_mark *mark;
632 int ret;
633
634 if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks)
635 return ERR_PTR(-ENOSPC);
636
637 mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL);
638 if (!mark)
639 return ERR_PTR(-ENOMEM);
640
641 fsnotify_init_mark(mark, fanotify_free_mark);
642 ret = fsnotify_add_mark_locked(mark, group, inode, mnt, 0);
643 if (ret) {
644 fsnotify_put_mark(mark);
645 return ERR_PTR(ret);
646 }
647
648 return mark;
649}
650
651
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500652static int fanotify_add_vfsmount_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500653 struct vfsmount *mnt, __u32 mask,
654 unsigned int flags)
Eric Paris2a3edf82009-12-17 21:24:26 -0500655{
656 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500657 __u32 added;
Eric Paris2a3edf82009-12-17 21:24:26 -0500658
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700659 mutex_lock(&group->mark_mutex);
Eric Paris88826272009-12-17 21:24:28 -0500660 fsn_mark = fsnotify_find_vfsmount_mark(group, mnt);
661 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700662 fsn_mark = fanotify_add_new_mark(group, NULL, mnt);
663 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700664 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700665 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700666 }
Eric Paris88826272009-12-17 21:24:28 -0500667 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500668 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700669 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100670
Al Viroc63181e2011-11-25 02:35:16 -0500671 if (added & ~real_mount(mnt)->mnt_fsnotify_mask)
Eric Paris43709a22010-07-28 10:18:39 -0400672 fsnotify_recalc_vfsmount_mask(mnt);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700673
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100674 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700675 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500676}
677
Andreas Gruenbacher52202df2009-12-17 21:24:28 -0500678static int fanotify_add_inode_mark(struct fsnotify_group *group,
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500679 struct inode *inode, __u32 mask,
680 unsigned int flags)
Eric Paris88826272009-12-17 21:24:28 -0500681{
682 struct fsnotify_mark *fsn_mark;
Andreas Gruenbacher912ee39462009-12-17 21:24:28 -0500683 __u32 added;
Eric Paris88826272009-12-17 21:24:28 -0500684
685 pr_debug("%s: group=%p inode=%p\n", __func__, group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500686
Eric Paris5322a592010-10-28 17:21:57 -0400687 /*
688 * If some other task has this inode open for write we should not add
689 * an ignored mark, unless that ignored mark is supposed to survive
690 * modification changes anyway.
691 */
692 if ((flags & FAN_MARK_IGNORED_MASK) &&
693 !(flags & FAN_MARK_IGNORED_SURV_MODIFY) &&
694 (atomic_read(&inode->i_writecount) > 0))
695 return 0;
696
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700697 mutex_lock(&group->mark_mutex);
Eric Paris5444e292009-12-17 21:24:27 -0500698 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris2a3edf82009-12-17 21:24:26 -0500699 if (!fsn_mark) {
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700700 fsn_mark = fanotify_add_new_mark(group, inode, NULL);
701 if (IS_ERR(fsn_mark)) {
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700702 mutex_unlock(&group->mark_mutex);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700703 return PTR_ERR(fsn_mark);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700704 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500705 }
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500706 added = fanotify_mark_add_to_mask(fsn_mark, mask, flags);
Lino Sanfilippo7b185272013-07-08 15:59:42 -0700707 mutex_unlock(&group->mark_mutex);
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100708
Eric Paris43709a22010-07-28 10:18:39 -0400709 if (added & ~inode->i_fsnotify_mask)
710 fsnotify_recalc_inode_mask(inode);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700711
Lino Sanfilippofa218ab2010-11-09 18:18:16 +0100712 fsnotify_put_mark(fsn_mark);
Lino Sanfilippo5e9c070c2013-07-08 15:59:43 -0700713 return 0;
Eric Paris88826272009-12-17 21:24:28 -0500714}
Eric Paris2a3edf82009-12-17 21:24:26 -0500715
Eric Paris52c923d2009-12-17 21:24:26 -0500716/* fanotify syscalls */
Eric Paris08ae8932010-05-27 09:41:40 -0400717SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags)
Eric Paris11637e42009-12-17 21:24:25 -0500718{
Eric Paris52c923d2009-12-17 21:24:26 -0500719 struct fsnotify_group *group;
720 int f_flags, fd;
Eric Paris4afeff82010-10-28 17:21:58 -0400721 struct user_struct *user;
Jan Karaff57cd52014-02-21 19:14:11 +0100722 struct fanotify_event_info *oevent;
Eric Paris52c923d2009-12-17 21:24:26 -0500723
Eric Paris08ae8932010-05-27 09:41:40 -0400724 pr_debug("%s: flags=%d event_f_flags=%d\n",
725 __func__, flags, event_f_flags);
Eric Paris52c923d2009-12-17 21:24:26 -0500726
Eric Paris52c923d2009-12-17 21:24:26 -0500727 if (!capable(CAP_SYS_ADMIN))
Andreas Gruenbachera2f13ad2010-08-24 12:58:54 +0200728 return -EPERM;
Eric Paris52c923d2009-12-17 21:24:26 -0500729
730 if (flags & ~FAN_ALL_INIT_FLAGS)
731 return -EINVAL;
732
Heinrich Schuchardt48149e92014-06-04 16:05:44 -0700733 if (event_f_flags & ~FANOTIFY_INIT_ALL_EVENT_F_BITS)
734 return -EINVAL;
735
736 switch (event_f_flags & O_ACCMODE) {
737 case O_RDONLY:
738 case O_RDWR:
739 case O_WRONLY:
740 break;
741 default:
742 return -EINVAL;
743 }
744
Eric Paris4afeff82010-10-28 17:21:58 -0400745 user = get_current_user();
746 if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) {
747 free_uid(user);
748 return -EMFILE;
749 }
750
Eric Parisb2d87902009-12-17 21:24:34 -0500751 f_flags = O_RDWR | FMODE_NONOTIFY;
Eric Paris52c923d2009-12-17 21:24:26 -0500752 if (flags & FAN_CLOEXEC)
753 f_flags |= O_CLOEXEC;
754 if (flags & FAN_NONBLOCK)
755 f_flags |= O_NONBLOCK;
756
757 /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */
758 group = fsnotify_alloc_group(&fanotify_fsnotify_ops);
Eric Paris26379192010-11-23 23:48:26 -0500759 if (IS_ERR(group)) {
760 free_uid(user);
Eric Paris52c923d2009-12-17 21:24:26 -0500761 return PTR_ERR(group);
Eric Paris26379192010-11-23 23:48:26 -0500762 }
Eric Paris52c923d2009-12-17 21:24:26 -0500763
Eric Paris4afeff82010-10-28 17:21:58 -0400764 group->fanotify_data.user = user;
765 atomic_inc(&user->fanotify_listeners);
766
Jan Karaf0834412014-04-03 14:46:33 -0700767 oevent = fanotify_alloc_event(NULL, FS_Q_OVERFLOW, NULL);
Jan Karaff57cd52014-02-21 19:14:11 +0100768 if (unlikely(!oevent)) {
769 fd = -ENOMEM;
770 goto out_destroy_group;
771 }
772 group->overflow_event = &oevent->fse;
Jan Karaff57cd52014-02-21 19:14:11 +0100773
Will Woods1e2ee492014-05-06 12:50:10 -0700774 if (force_o_largefile())
775 event_f_flags |= O_LARGEFILE;
Eric Paris80af2582010-07-28 10:18:37 -0400776 group->fanotify_data.f_flags = event_f_flags;
Eric Paris9e66e422009-12-17 21:24:34 -0500777#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Eric Paris9e66e422009-12-17 21:24:34 -0500778 init_waitqueue_head(&group->fanotify_data.access_waitq);
779 INIT_LIST_HEAD(&group->fanotify_data.access_list);
780#endif
Eric Paris4231a232010-10-28 17:21:56 -0400781 switch (flags & FAN_ALL_CLASS_BITS) {
782 case FAN_CLASS_NOTIF:
783 group->priority = FS_PRIO_0;
784 break;
785 case FAN_CLASS_CONTENT:
786 group->priority = FS_PRIO_1;
787 break;
788 case FAN_CLASS_PRE_CONTENT:
789 group->priority = FS_PRIO_2;
790 break;
791 default:
792 fd = -EINVAL;
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200793 goto out_destroy_group;
Eric Paris4231a232010-10-28 17:21:56 -0400794 }
Eric Pariscb2d4292009-12-17 21:24:34 -0500795
Eric Paris5dd03f52010-10-28 17:21:57 -0400796 if (flags & FAN_UNLIMITED_QUEUE) {
797 fd = -EPERM;
798 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200799 goto out_destroy_group;
Eric Paris5dd03f52010-10-28 17:21:57 -0400800 group->max_events = UINT_MAX;
801 } else {
802 group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS;
803 }
Eric Paris2529a0d2010-10-28 17:21:57 -0400804
Eric Parisac7e22d2010-10-28 17:21:58 -0400805 if (flags & FAN_UNLIMITED_MARKS) {
806 fd = -EPERM;
807 if (!capable(CAP_SYS_ADMIN))
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200808 goto out_destroy_group;
Eric Parisac7e22d2010-10-28 17:21:58 -0400809 group->fanotify_data.max_marks = UINT_MAX;
810 } else {
811 group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS;
812 }
Eric Parise7099d82010-10-28 17:21:57 -0400813
Eric Paris52c923d2009-12-17 21:24:26 -0500814 fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags);
815 if (fd < 0)
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200816 goto out_destroy_group;
Eric Paris52c923d2009-12-17 21:24:26 -0500817
818 return fd;
819
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200820out_destroy_group:
821 fsnotify_destroy_group(group);
Eric Paris52c923d2009-12-17 21:24:26 -0500822 return fd;
Eric Paris11637e42009-12-17 21:24:25 -0500823}
Eric Parisbbaa4162009-12-17 21:24:26 -0500824
Al Viro4a0fd5b2013-01-21 15:16:58 -0500825SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
826 __u64, mask, int, dfd,
827 const char __user *, pathname)
Eric Parisbbaa4162009-12-17 21:24:26 -0500828{
Eric Paris0ff21db2009-12-17 21:24:29 -0500829 struct inode *inode = NULL;
830 struct vfsmount *mnt = NULL;
Eric Paris2a3edf82009-12-17 21:24:26 -0500831 struct fsnotify_group *group;
Al Viro2903ff02012-08-28 12:52:22 -0400832 struct fd f;
Eric Paris2a3edf82009-12-17 21:24:26 -0500833 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -0400834 int ret;
Eric Paris2a3edf82009-12-17 21:24:26 -0500835
836 pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n",
837 __func__, fanotify_fd, flags, dfd, pathname, mask);
838
839 /* we only use the lower 32 bits as of right now. */
840 if (mask & ((__u64)0xffffffff << 32))
841 return -EINVAL;
842
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500843 if (flags & ~FAN_ALL_MARK_FLAGS)
844 return -EINVAL;
Eric Paris4d926042009-12-17 21:24:34 -0500845 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) {
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100846 case FAN_MARK_ADD: /* fallthrough */
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500847 case FAN_MARK_REMOVE:
Lino Sanfilippo1734dee2010-11-22 18:46:33 +0100848 if (!mask)
849 return -EINVAL;
Heinrich Schuchardtcc299a92014-06-04 16:05:43 -0700850 break;
Eric Paris4d926042009-12-17 21:24:34 -0500851 case FAN_MARK_FLUSH:
Heinrich Schuchardtcc299a92014-06-04 16:05:43 -0700852 if (flags & ~(FAN_MARK_MOUNT | FAN_MARK_FLUSH))
853 return -EINVAL;
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500854 break;
855 default:
856 return -EINVAL;
857 }
Eric Paris8fcd6522010-10-28 17:21:59 -0400858
859 if (mask & FAN_ONDIR) {
860 flags |= FAN_MARK_ONDIR;
861 mask &= ~FAN_ONDIR;
862 }
863
Eric Parisb2d87902009-12-17 21:24:34 -0500864#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
865 if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD))
866#else
Andreas Gruenbacher88380fe2009-12-17 21:24:29 -0500867 if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD))
Eric Parisb2d87902009-12-17 21:24:34 -0500868#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500869 return -EINVAL;
870
Al Viro2903ff02012-08-28 12:52:22 -0400871 f = fdget(fanotify_fd);
872 if (unlikely(!f.file))
Eric Paris2a3edf82009-12-17 21:24:26 -0500873 return -EBADF;
874
875 /* verify that this is indeed an fanotify instance */
876 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -0400877 if (unlikely(f.file->f_op != &fanotify_fops))
Eric Paris2a3edf82009-12-17 21:24:26 -0500878 goto fput_and_out;
Al Viro2903ff02012-08-28 12:52:22 -0400879 group = f.file->private_data;
Eric Paris4231a232010-10-28 17:21:56 -0400880
881 /*
882 * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not
883 * allowed to set permissions events.
884 */
885 ret = -EINVAL;
886 if (mask & FAN_ALL_PERM_EVENTS &&
887 group->priority == FS_PRIO_0)
888 goto fput_and_out;
Eric Paris2a3edf82009-12-17 21:24:26 -0500889
Heinrich Schuchardt0a8dd2d2014-06-04 16:05:40 -0700890 if (flags & FAN_MARK_FLUSH) {
891 ret = 0;
892 if (flags & FAN_MARK_MOUNT)
893 fsnotify_clear_vfsmount_marks_by_group(group);
894 else
895 fsnotify_clear_inode_marks_by_group(group);
896 goto fput_and_out;
897 }
898
Eric Paris2a3edf82009-12-17 21:24:26 -0500899 ret = fanotify_find_path(dfd, pathname, &path, flags);
900 if (ret)
901 goto fput_and_out;
902
903 /* inode held in place by reference to path; group by fget on fd */
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500904 if (!(flags & FAN_MARK_MOUNT))
Eric Paris0ff21db2009-12-17 21:24:29 -0500905 inode = path.dentry->d_inode;
906 else
907 mnt = path.mnt;
Eric Paris2a3edf82009-12-17 21:24:26 -0500908
909 /* create/update an inode mark */
Heinrich Schuchardt0a8dd2d2014-06-04 16:05:40 -0700910 switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE)) {
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500911 case FAN_MARK_ADD:
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -0500912 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500913 ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags);
Eric Paris0ff21db2009-12-17 21:24:29 -0500914 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500915 ret = fanotify_add_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500916 break;
917 case FAN_MARK_REMOVE:
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500918 if (flags & FAN_MARK_MOUNT)
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500919 ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags);
Andreas Gruenbacherf3640192009-12-17 21:24:29 -0500920 else
Eric Parisb9e4e3b2009-12-17 21:24:33 -0500921 ret = fanotify_remove_inode_mark(group, inode, mask, flags);
Andreas Gruenbacherc6223f42009-12-17 21:24:28 -0500922 break;
923 default:
924 ret = -EINVAL;
925 }
Eric Paris2a3edf82009-12-17 21:24:26 -0500926
927 path_put(&path);
928fput_and_out:
Al Viro2903ff02012-08-28 12:52:22 -0400929 fdput(f);
Eric Paris2a3edf82009-12-17 21:24:26 -0500930 return ret;
Eric Parisbbaa4162009-12-17 21:24:26 -0500931}
Eric Paris2a3edf82009-12-17 21:24:26 -0500932
Al Viro91c2e0b2013-03-05 20:10:59 -0500933#ifdef CONFIG_COMPAT
934COMPAT_SYSCALL_DEFINE6(fanotify_mark,
935 int, fanotify_fd, unsigned int, flags,
936 __u32, mask0, __u32, mask1, int, dfd,
937 const char __user *, pathname)
938{
939 return sys_fanotify_mark(fanotify_fd, flags,
940#ifdef __BIG_ENDIAN
Al Viro91c2e0b2013-03-05 20:10:59 -0500941 ((__u64)mask0 << 32) | mask1,
Heiko Carstens592f6b82014-01-27 17:07:19 -0800942#else
943 ((__u64)mask1 << 32) | mask0,
Al Viro91c2e0b2013-03-05 20:10:59 -0500944#endif
945 dfd, pathname);
946}
947#endif
948
Eric Paris2a3edf82009-12-17 21:24:26 -0500949/*
Justin P. Mattockae0e47f2011-03-01 15:06:02 +0100950 * fanotify_user_setup - Our initialization function. Note that we cannot return
Eric Paris2a3edf82009-12-17 21:24:26 -0500951 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
952 * must result in panic().
953 */
954static int __init fanotify_user_setup(void)
955{
956 fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC);
Jan Kara7053aee2014-01-21 15:48:14 -0800957 fanotify_event_cachep = KMEM_CACHE(fanotify_event_info, SLAB_PANIC);
Jan Karaf0834412014-04-03 14:46:33 -0700958#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
959 fanotify_perm_event_cachep = KMEM_CACHE(fanotify_perm_event_info,
960 SLAB_PANIC);
961#endif
Eric Paris2a3edf82009-12-17 21:24:26 -0500962
963 return 0;
964}
965device_initcall(fanotify_user_setup);