blob: 1bb6dc8eaf1cd3c88cbced4b8fd8b4b0b8f6d331 [file] [log] [blame]
Amy Griffis2d9048e2006-06-01 13:10:59 -07001/*
2 * fs/inotify_user.c - inotify support for userspace
3 *
4 * Authors:
5 * John McCutchan <ttb@tentacle.dhs.org>
6 * Robert Love <rml@novell.com>
7 *
8 * Copyright (C) 2005 John McCutchan
9 * Copyright 2006 Hewlett-Packard Development Company, L.P.
10 *
Eric Paris63c882a2009-05-21 17:02:01 -040011 * Copyright (C) 2009 Eric Paris <Red Hat Inc>
12 * inotify was largely rewriten to make use of the fsnotify infrastructure
13 *
Amy Griffis2d9048e2006-06-01 13:10:59 -070014 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2, or (at your option) any
17 * later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
23 */
24
Amy Griffis2d9048e2006-06-01 13:10:59 -070025#include <linux/file.h>
Eric Paris63c882a2009-05-21 17:02:01 -040026#include <linux/fs.h> /* struct inode */
27#include <linux/fsnotify_backend.h>
28#include <linux/idr.h>
29#include <linux/init.h> /* module_init */
Amy Griffis2d9048e2006-06-01 13:10:59 -070030#include <linux/inotify.h>
Eric Paris63c882a2009-05-21 17:02:01 -040031#include <linux/kernel.h> /* roundup() */
Eric Paris63c882a2009-05-21 17:02:01 -040032#include <linux/namei.h> /* LOOKUP_FOLLOW */
Eric Paris63c882a2009-05-21 17:02:01 -040033#include <linux/sched.h> /* struct user */
34#include <linux/slab.h> /* struct kmem_cache */
Amy Griffis2d9048e2006-06-01 13:10:59 -070035#include <linux/syscalls.h>
Eric Paris63c882a2009-05-21 17:02:01 -040036#include <linux/types.h>
Al Viroc44dcc52010-02-11 02:24:46 -050037#include <linux/anon_inodes.h>
Eric Paris63c882a2009-05-21 17:02:01 -040038#include <linux/uaccess.h>
39#include <linux/poll.h>
40#include <linux/wait.h>
41
42#include "inotify.h"
Cyrill Gorcunovbe771962012-12-17 16:05:12 -080043#include "../fdinfo.h"
Amy Griffis2d9048e2006-06-01 13:10:59 -070044
45#include <asm/ioctls.h>
46
Amy Griffis2d9048e2006-06-01 13:10:59 -070047/* these are configurable via /proc/sys/fs/inotify/ */
Harvey Harrison3c828e42008-02-14 19:31:21 -080048static int inotify_max_user_instances __read_mostly;
Harvey Harrison3c828e42008-02-14 19:31:21 -080049static int inotify_max_queued_events __read_mostly;
H Hartley Sweeten0a24887a2010-05-14 15:35:21 -050050static int inotify_max_user_watches __read_mostly;
Eric Paris63c882a2009-05-21 17:02:01 -040051
52static struct kmem_cache *inotify_inode_mark_cachep __read_mostly;
53struct kmem_cache *event_priv_cachep __read_mostly;
Amy Griffis2d9048e2006-06-01 13:10:59 -070054
Amy Griffis2d9048e2006-06-01 13:10:59 -070055#ifdef CONFIG_SYSCTL
56
57#include <linux/sysctl.h>
58
59static int zero;
60
61ctl_table inotify_table[] = {
62 {
Amy Griffis2d9048e2006-06-01 13:10:59 -070063 .procname = "max_user_instances",
64 .data = &inotify_max_user_instances,
65 .maxlen = sizeof(int),
66 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080067 .proc_handler = proc_dointvec_minmax,
Amy Griffis2d9048e2006-06-01 13:10:59 -070068 .extra1 = &zero,
69 },
70 {
Amy Griffis2d9048e2006-06-01 13:10:59 -070071 .procname = "max_user_watches",
72 .data = &inotify_max_user_watches,
73 .maxlen = sizeof(int),
74 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080075 .proc_handler = proc_dointvec_minmax,
Amy Griffis2d9048e2006-06-01 13:10:59 -070076 .extra1 = &zero,
77 },
78 {
Amy Griffis2d9048e2006-06-01 13:10:59 -070079 .procname = "max_queued_events",
80 .data = &inotify_max_queued_events,
81 .maxlen = sizeof(int),
82 .mode = 0644,
Eric W. Biederman6d456112009-11-16 03:11:48 -080083 .proc_handler = proc_dointvec_minmax,
Amy Griffis2d9048e2006-06-01 13:10:59 -070084 .extra1 = &zero
85 },
Eric W. Biedermanab092032009-11-05 14:25:10 -080086 { }
Amy Griffis2d9048e2006-06-01 13:10:59 -070087};
88#endif /* CONFIG_SYSCTL */
89
Eric Paris63c882a2009-05-21 17:02:01 -040090static inline __u32 inotify_arg_to_mask(u32 arg)
Amy Griffis2d9048e2006-06-01 13:10:59 -070091{
Eric Paris63c882a2009-05-21 17:02:01 -040092 __u32 mask;
93
Eric Paris611da042010-07-28 10:18:37 -040094 /*
95 * everything should accept their own ignored, cares about children,
96 * and should receive events when the inode is unmounted
97 */
98 mask = (FS_IN_IGNORED | FS_EVENT_ON_CHILD | FS_UNMOUNT);
Eric Paris63c882a2009-05-21 17:02:01 -040099
100 /* mask off the flags used to open the fd */
Eric Paris8c1934c2010-07-28 10:18:37 -0400101 mask |= (arg & (IN_ALL_EVENTS | IN_ONESHOT | IN_EXCL_UNLINK));
Eric Paris63c882a2009-05-21 17:02:01 -0400102
103 return mask;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700104}
105
Eric Paris63c882a2009-05-21 17:02:01 -0400106static inline u32 inotify_mask_to_arg(__u32 mask)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700107{
Eric Paris63c882a2009-05-21 17:02:01 -0400108 return mask & (IN_ALL_EVENTS | IN_ISDIR | IN_UNMOUNT | IN_IGNORED |
109 IN_Q_OVERFLOW);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700110}
111
Eric Paris63c882a2009-05-21 17:02:01 -0400112/* intofiy userspace file descriptor functions */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700113static unsigned int inotify_poll(struct file *file, poll_table *wait)
114{
Eric Paris63c882a2009-05-21 17:02:01 -0400115 struct fsnotify_group *group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700116 int ret = 0;
117
Eric Paris63c882a2009-05-21 17:02:01 -0400118 poll_wait(file, &group->notification_waitq, wait);
119 mutex_lock(&group->notification_mutex);
120 if (!fsnotify_notify_queue_is_empty(group))
Amy Griffis2d9048e2006-06-01 13:10:59 -0700121 ret = POLLIN | POLLRDNORM;
Eric Paris63c882a2009-05-21 17:02:01 -0400122 mutex_unlock(&group->notification_mutex);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700123
124 return ret;
125}
126
Jan Karae9fe6902014-01-21 15:48:13 -0800127static int round_event_name_len(struct fsnotify_event *event)
128{
129 if (!event->name_len)
130 return 0;
131 return roundup(event->name_len + 1, sizeof(struct inotify_event));
132}
133
Vegard Nossum3632dee2009-01-22 15:29:45 +0100134/*
135 * Get an inotify_kernel_event if one exists and is small
136 * enough to fit in "count". Return an error pointer if
137 * not large enough.
138 *
Eric Paris63c882a2009-05-21 17:02:01 -0400139 * Called with the group->notification_mutex held.
Vegard Nossum3632dee2009-01-22 15:29:45 +0100140 */
Eric Paris63c882a2009-05-21 17:02:01 -0400141static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
142 size_t count)
Vegard Nossum3632dee2009-01-22 15:29:45 +0100143{
144 size_t event_size = sizeof(struct inotify_event);
Eric Paris63c882a2009-05-21 17:02:01 -0400145 struct fsnotify_event *event;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100146
Eric Paris63c882a2009-05-21 17:02:01 -0400147 if (fsnotify_notify_queue_is_empty(group))
Vegard Nossum3632dee2009-01-22 15:29:45 +0100148 return NULL;
149
Eric Paris63c882a2009-05-21 17:02:01 -0400150 event = fsnotify_peek_notify_event(group);
151
Eric Paris5ba08e22010-07-28 10:18:37 -0400152 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
153
Jan Karae9fe6902014-01-21 15:48:13 -0800154 event_size += round_event_name_len(event);
Vegard Nossum3632dee2009-01-22 15:29:45 +0100155 if (event_size > count)
156 return ERR_PTR(-EINVAL);
157
Eric Paris63c882a2009-05-21 17:02:01 -0400158 /* held the notification_mutex the whole time, so this is the
159 * same event we peeked above */
160 fsnotify_remove_notify_event(group);
161
162 return event;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100163}
164
165/*
166 * Copy an event to user space, returning how much we copied.
167 *
168 * We already checked that the event size is smaller than the
169 * buffer we had in "get_one_event()" above.
170 */
Eric Paris63c882a2009-05-21 17:02:01 -0400171static ssize_t copy_event_to_user(struct fsnotify_group *group,
172 struct fsnotify_event *event,
Vegard Nossum3632dee2009-01-22 15:29:45 +0100173 char __user *buf)
174{
Eric Paris63c882a2009-05-21 17:02:01 -0400175 struct inotify_event inotify_event;
176 struct fsnotify_event_private_data *fsn_priv;
177 struct inotify_event_private_data *priv;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100178 size_t event_size = sizeof(struct inotify_event);
Jan Karae9fe6902014-01-21 15:48:13 -0800179 size_t name_len;
180 size_t pad_name_len;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100181
Eric Paris5ba08e22010-07-28 10:18:37 -0400182 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
183
Eric Paris63c882a2009-05-21 17:02:01 -0400184 /* we get the inotify watch descriptor from the event private data */
185 spin_lock(&event->lock);
186 fsn_priv = fsnotify_remove_priv_from_event(group, event);
187 spin_unlock(&event->lock);
188
189 if (!fsn_priv)
190 inotify_event.wd = -1;
191 else {
192 priv = container_of(fsn_priv, struct inotify_event_private_data,
193 fsnotify_event_priv_data);
194 inotify_event.wd = priv->wd;
195 inotify_free_event_priv(fsn_priv);
196 }
197
Jan Karae9fe6902014-01-21 15:48:13 -0800198 name_len = event->name_len;
Brian Rogersb962e732009-08-28 10:00:05 -0400199 /*
Jan Karae9fe6902014-01-21 15:48:13 -0800200 * round up name length so it is a multiple of event_size
Eric W. Biederman0db501b2009-08-27 03:20:04 -0700201 * plus an extra byte for the terminating '\0'.
202 */
Jan Karae9fe6902014-01-21 15:48:13 -0800203 pad_name_len = round_event_name_len(event);
204 inotify_event.len = pad_name_len;
Eric Paris63c882a2009-05-21 17:02:01 -0400205 inotify_event.mask = inotify_mask_to_arg(event->mask);
206 inotify_event.cookie = event->sync_cookie;
207
208 /* send the main event */
209 if (copy_to_user(buf, &inotify_event, event_size))
Vegard Nossum3632dee2009-01-22 15:29:45 +0100210 return -EFAULT;
211
Eric Paris63c882a2009-05-21 17:02:01 -0400212 buf += event_size;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100213
Eric Paris63c882a2009-05-21 17:02:01 -0400214 /*
215 * fsnotify only stores the pathname, so here we have to send the pathname
216 * and then pad that pathname out to a multiple of sizeof(inotify_event)
Jan Karae9fe6902014-01-21 15:48:13 -0800217 * with zeros.
Eric Paris63c882a2009-05-21 17:02:01 -0400218 */
Jan Karae9fe6902014-01-21 15:48:13 -0800219 if (pad_name_len) {
Eric Paris63c882a2009-05-21 17:02:01 -0400220 /* copy the path name */
Jan Karae9fe6902014-01-21 15:48:13 -0800221 if (copy_to_user(buf, event->file_name, name_len))
Vegard Nossum3632dee2009-01-22 15:29:45 +0100222 return -EFAULT;
Jan Karae9fe6902014-01-21 15:48:13 -0800223 buf += name_len;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100224
Eric W. Biederman0db501b2009-08-27 03:20:04 -0700225 /* fill userspace with 0's */
Jan Karae9fe6902014-01-21 15:48:13 -0800226 if (clear_user(buf, pad_name_len - name_len))
Eric Paris63c882a2009-05-21 17:02:01 -0400227 return -EFAULT;
Jan Karae9fe6902014-01-21 15:48:13 -0800228 event_size += pad_name_len;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100229 }
Eric Paris63c882a2009-05-21 17:02:01 -0400230
Vegard Nossum3632dee2009-01-22 15:29:45 +0100231 return event_size;
232}
233
Amy Griffis2d9048e2006-06-01 13:10:59 -0700234static ssize_t inotify_read(struct file *file, char __user *buf,
235 size_t count, loff_t *pos)
236{
Eric Paris63c882a2009-05-21 17:02:01 -0400237 struct fsnotify_group *group;
238 struct fsnotify_event *kevent;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700239 char __user *start;
240 int ret;
241 DEFINE_WAIT(wait);
242
243 start = buf;
Eric Paris63c882a2009-05-21 17:02:01 -0400244 group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700245
246 while (1) {
Eric Paris63c882a2009-05-21 17:02:01 -0400247 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700248
Eric Paris63c882a2009-05-21 17:02:01 -0400249 mutex_lock(&group->notification_mutex);
250 kevent = get_one_event(group, count);
251 mutex_unlock(&group->notification_mutex);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700252
Eric Paris5ba08e22010-07-28 10:18:37 -0400253 pr_debug("%s: group=%p kevent=%p\n", __func__, group, kevent);
254
Vegard Nossum3632dee2009-01-22 15:29:45 +0100255 if (kevent) {
256 ret = PTR_ERR(kevent);
257 if (IS_ERR(kevent))
258 break;
Eric Paris63c882a2009-05-21 17:02:01 -0400259 ret = copy_event_to_user(group, kevent, buf);
260 fsnotify_put_event(kevent);
Vegard Nossum3632dee2009-01-22 15:29:45 +0100261 if (ret < 0)
262 break;
263 buf += ret;
264 count -= ret;
265 continue;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700266 }
267
Vegard Nossum3632dee2009-01-22 15:29:45 +0100268 ret = -EAGAIN;
269 if (file->f_flags & O_NONBLOCK)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700270 break;
Eric Paris1ca39ab2012-03-26 13:07:59 -0400271 ret = -ERESTARTSYS;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100272 if (signal_pending(current))
273 break;
274
275 if (start != buf)
276 break;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700277
278 schedule();
279 }
280
Eric Paris63c882a2009-05-21 17:02:01 -0400281 finish_wait(&group->notification_waitq, &wait);
Vegard Nossum3632dee2009-01-22 15:29:45 +0100282 if (start != buf && ret != -EFAULT)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700283 ret = buf - start;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700284 return ret;
285}
286
287static int inotify_release(struct inode *ignored, struct file *file)
288{
Eric Paris63c882a2009-05-21 17:02:01 -0400289 struct fsnotify_group *group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700290
Eric Paris5ba08e22010-07-28 10:18:37 -0400291 pr_debug("%s: group=%p\n", __func__, group);
292
Eric Paris63c882a2009-05-21 17:02:01 -0400293 /* free this group, matching get was inotify_init->fsnotify_obtain_group */
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200294 fsnotify_destroy_group(group);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700295
296 return 0;
297}
298
299static long inotify_ioctl(struct file *file, unsigned int cmd,
300 unsigned long arg)
301{
Eric Paris63c882a2009-05-21 17:02:01 -0400302 struct fsnotify_group *group;
303 struct fsnotify_event_holder *holder;
304 struct fsnotify_event *event;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700305 void __user *p;
306 int ret = -ENOTTY;
Eric Paris63c882a2009-05-21 17:02:01 -0400307 size_t send_len = 0;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700308
Eric Paris63c882a2009-05-21 17:02:01 -0400309 group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700310 p = (void __user *) arg;
311
Eric Paris5ba08e22010-07-28 10:18:37 -0400312 pr_debug("%s: group=%p cmd=%u\n", __func__, group, cmd);
313
Amy Griffis2d9048e2006-06-01 13:10:59 -0700314 switch (cmd) {
315 case FIONREAD:
Eric Paris63c882a2009-05-21 17:02:01 -0400316 mutex_lock(&group->notification_mutex);
317 list_for_each_entry(holder, &group->notification_list, event_list) {
318 event = holder->event;
319 send_len += sizeof(struct inotify_event);
Jan Karae9fe6902014-01-21 15:48:13 -0800320 send_len += round_event_name_len(event);
Eric Paris63c882a2009-05-21 17:02:01 -0400321 }
322 mutex_unlock(&group->notification_mutex);
323 ret = put_user(send_len, (int __user *) p);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700324 break;
325 }
326
327 return ret;
328}
329
330static const struct file_operations inotify_fops = {
Cyrill Gorcunovbe771962012-12-17 16:05:12 -0800331 .show_fdinfo = inotify_show_fdinfo,
Eric Paris63c882a2009-05-21 17:02:01 -0400332 .poll = inotify_poll,
333 .read = inotify_read,
Eric Paris0a6b6bd2011-10-14 17:43:39 -0400334 .fasync = fsnotify_fasync,
Eric Paris63c882a2009-05-21 17:02:01 -0400335 .release = inotify_release,
336 .unlocked_ioctl = inotify_ioctl,
Amy Griffis2d9048e2006-06-01 13:10:59 -0700337 .compat_ioctl = inotify_ioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200338 .llseek = noop_llseek,
Amy Griffis2d9048e2006-06-01 13:10:59 -0700339};
340
Amy Griffis2d9048e2006-06-01 13:10:59 -0700341
Eric Paris63c882a2009-05-21 17:02:01 -0400342/*
343 * find_inode - resolve a user-given path to a specific inode
344 */
345static int inotify_find_inode(const char __user *dirname, struct path *path, unsigned flags)
346{
347 int error;
348
349 error = user_path_at(AT_FDCWD, dirname, flags, path);
350 if (error)
351 return error;
352 /* you can only watch an inode if you have read permissions on it */
353 error = inode_permission(path->dentry->d_inode, MAY_READ);
354 if (error)
355 path_put(path);
356 return error;
357}
358
Eric Parisb7ba8372009-12-17 20:12:04 -0500359static int inotify_add_to_idr(struct idr *idr, spinlock_t *idr_lock,
Eric Paris000285d2009-12-17 21:24:24 -0500360 struct inotify_inode_mark *i_mark)
Eric Parisb7ba8372009-12-17 20:12:04 -0500361{
362 int ret;
363
Tejun Heo4542da62013-02-27 17:04:50 -0800364 idr_preload(GFP_KERNEL);
365 spin_lock(idr_lock);
Eric Parisb7ba8372009-12-17 20:12:04 -0500366
Jeff Laytona66c04b2013-04-29 16:21:21 -0700367 ret = idr_alloc_cyclic(idr, i_mark, 1, 0, GFP_NOWAIT);
Tejun Heo4542da62013-02-27 17:04:50 -0800368 if (ret >= 0) {
Eric Parisb7ba8372009-12-17 20:12:04 -0500369 /* we added the mark to the idr, take a reference */
Tejun Heo4542da62013-02-27 17:04:50 -0800370 i_mark->wd = ret;
Tejun Heo4542da62013-02-27 17:04:50 -0800371 fsnotify_get_mark(&i_mark->fsn_mark);
372 }
Eric Parisb7ba8372009-12-17 20:12:04 -0500373
Tejun Heo4542da62013-02-27 17:04:50 -0800374 spin_unlock(idr_lock);
375 idr_preload_end();
376 return ret < 0 ? ret : 0;
Eric Parisb7ba8372009-12-17 20:12:04 -0500377}
378
Eric Paris000285d2009-12-17 21:24:24 -0500379static struct inotify_inode_mark *inotify_idr_find_locked(struct fsnotify_group *group,
Eric Parisb7ba8372009-12-17 20:12:04 -0500380 int wd)
381{
382 struct idr *idr = &group->inotify_data.idr;
383 spinlock_t *idr_lock = &group->inotify_data.idr_lock;
Eric Paris000285d2009-12-17 21:24:24 -0500384 struct inotify_inode_mark *i_mark;
Eric Parisb7ba8372009-12-17 20:12:04 -0500385
386 assert_spin_locked(idr_lock);
387
Eric Paris000285d2009-12-17 21:24:24 -0500388 i_mark = idr_find(idr, wd);
389 if (i_mark) {
390 struct fsnotify_mark *fsn_mark = &i_mark->fsn_mark;
Eric Parisb7ba8372009-12-17 20:12:04 -0500391
Eric Paris000285d2009-12-17 21:24:24 -0500392 fsnotify_get_mark(fsn_mark);
Eric Parisb7ba8372009-12-17 20:12:04 -0500393 /* One ref for being in the idr, one ref we just took */
Eric Paris000285d2009-12-17 21:24:24 -0500394 BUG_ON(atomic_read(&fsn_mark->refcnt) < 2);
Eric Parisb7ba8372009-12-17 20:12:04 -0500395 }
396
Eric Paris000285d2009-12-17 21:24:24 -0500397 return i_mark;
Eric Parisb7ba8372009-12-17 20:12:04 -0500398}
399
Eric Paris000285d2009-12-17 21:24:24 -0500400static struct inotify_inode_mark *inotify_idr_find(struct fsnotify_group *group,
Eric Parisb7ba8372009-12-17 20:12:04 -0500401 int wd)
402{
Eric Paris000285d2009-12-17 21:24:24 -0500403 struct inotify_inode_mark *i_mark;
Eric Parisb7ba8372009-12-17 20:12:04 -0500404 spinlock_t *idr_lock = &group->inotify_data.idr_lock;
405
406 spin_lock(idr_lock);
Eric Paris000285d2009-12-17 21:24:24 -0500407 i_mark = inotify_idr_find_locked(group, wd);
Eric Parisb7ba8372009-12-17 20:12:04 -0500408 spin_unlock(idr_lock);
409
Eric Paris000285d2009-12-17 21:24:24 -0500410 return i_mark;
Eric Parisb7ba8372009-12-17 20:12:04 -0500411}
412
413static void do_inotify_remove_from_idr(struct fsnotify_group *group,
Eric Paris000285d2009-12-17 21:24:24 -0500414 struct inotify_inode_mark *i_mark)
Eric Parisb7ba8372009-12-17 20:12:04 -0500415{
416 struct idr *idr = &group->inotify_data.idr;
417 spinlock_t *idr_lock = &group->inotify_data.idr_lock;
Eric Paris000285d2009-12-17 21:24:24 -0500418 int wd = i_mark->wd;
Eric Parisb7ba8372009-12-17 20:12:04 -0500419
420 assert_spin_locked(idr_lock);
421
422 idr_remove(idr, wd);
423
424 /* removed from the idr, drop that ref */
Eric Paris000285d2009-12-17 21:24:24 -0500425 fsnotify_put_mark(&i_mark->fsn_mark);
Eric Parisb7ba8372009-12-17 20:12:04 -0500426}
427
Eric Parisdead5372009-08-24 16:03:35 -0400428/*
429 * Remove the mark from the idr (if present) and drop the reference
430 * on the mark because it was in the idr.
431 */
Eric Paris7e790dd2009-07-07 10:28:24 -0400432static void inotify_remove_from_idr(struct fsnotify_group *group,
Eric Paris000285d2009-12-17 21:24:24 -0500433 struct inotify_inode_mark *i_mark)
Eric Paris7e790dd2009-07-07 10:28:24 -0400434{
Eric Parisb7ba8372009-12-17 20:12:04 -0500435 spinlock_t *idr_lock = &group->inotify_data.idr_lock;
Eric Paris000285d2009-12-17 21:24:24 -0500436 struct inotify_inode_mark *found_i_mark = NULL;
Eric Parisdead5372009-08-24 16:03:35 -0400437 int wd;
Eric Paris7e790dd2009-07-07 10:28:24 -0400438
Eric Parisb7ba8372009-12-17 20:12:04 -0500439 spin_lock(idr_lock);
Eric Paris000285d2009-12-17 21:24:24 -0500440 wd = i_mark->wd;
Eric Parisdead5372009-08-24 16:03:35 -0400441
Eric Parisb7ba8372009-12-17 20:12:04 -0500442 /*
Eric Paris000285d2009-12-17 21:24:24 -0500443 * does this i_mark think it is in the idr? we shouldn't get called
Eric Parisb7ba8372009-12-17 20:12:04 -0500444 * if it wasn't....
445 */
446 if (wd == -1) {
Eric Paris000285d2009-12-17 21:24:24 -0500447 WARN_ONCE(1, "%s: i_mark=%p i_mark->wd=%d i_mark->group=%p"
448 " i_mark->inode=%p\n", __func__, i_mark, i_mark->wd,
449 i_mark->fsn_mark.group, i_mark->fsn_mark.i.inode);
Eric Parisdead5372009-08-24 16:03:35 -0400450 goto out;
451 }
452
Eric Parisb7ba8372009-12-17 20:12:04 -0500453 /* Lets look in the idr to see if we find it */
Eric Paris000285d2009-12-17 21:24:24 -0500454 found_i_mark = inotify_idr_find_locked(group, wd);
455 if (unlikely(!found_i_mark)) {
456 WARN_ONCE(1, "%s: i_mark=%p i_mark->wd=%d i_mark->group=%p"
457 " i_mark->inode=%p\n", __func__, i_mark, i_mark->wd,
458 i_mark->fsn_mark.group, i_mark->fsn_mark.i.inode);
Eric Parisb7ba8372009-12-17 20:12:04 -0500459 goto out;
460 }
Eric Parisdead5372009-08-24 16:03:35 -0400461
Eric Parisb7ba8372009-12-17 20:12:04 -0500462 /*
Eric Paris000285d2009-12-17 21:24:24 -0500463 * We found an mark in the idr at the right wd, but it's
464 * not the mark we were told to remove. eparis seriously
Eric Parisb7ba8372009-12-17 20:12:04 -0500465 * fucked up somewhere.
466 */
Eric Paris000285d2009-12-17 21:24:24 -0500467 if (unlikely(found_i_mark != i_mark)) {
468 WARN_ONCE(1, "%s: i_mark=%p i_mark->wd=%d i_mark->group=%p "
469 "mark->inode=%p found_i_mark=%p found_i_mark->wd=%d "
470 "found_i_mark->group=%p found_i_mark->inode=%p\n",
471 __func__, i_mark, i_mark->wd, i_mark->fsn_mark.group,
472 i_mark->fsn_mark.i.inode, found_i_mark, found_i_mark->wd,
473 found_i_mark->fsn_mark.group,
474 found_i_mark->fsn_mark.i.inode);
Eric Parisb7ba8372009-12-17 20:12:04 -0500475 goto out;
476 }
Eric Parisdead5372009-08-24 16:03:35 -0400477
Eric Parisb7ba8372009-12-17 20:12:04 -0500478 /*
479 * One ref for being in the idr
480 * one ref held by the caller trying to kill us
481 * one ref grabbed by inotify_idr_find
482 */
Eric Paris000285d2009-12-17 21:24:24 -0500483 if (unlikely(atomic_read(&i_mark->fsn_mark.refcnt) < 3)) {
484 printk(KERN_ERR "%s: i_mark=%p i_mark->wd=%d i_mark->group=%p"
485 " i_mark->inode=%p\n", __func__, i_mark, i_mark->wd,
486 i_mark->fsn_mark.group, i_mark->fsn_mark.i.inode);
Eric Parisb7ba8372009-12-17 20:12:04 -0500487 /* we can't really recover with bad ref cnting.. */
488 BUG();
489 }
490
Eric Paris000285d2009-12-17 21:24:24 -0500491 do_inotify_remove_from_idr(group, i_mark);
Eric Parisdead5372009-08-24 16:03:35 -0400492out:
Eric Parisb7ba8372009-12-17 20:12:04 -0500493 /* match the ref taken by inotify_idr_find_locked() */
Eric Paris000285d2009-12-17 21:24:24 -0500494 if (found_i_mark)
495 fsnotify_put_mark(&found_i_mark->fsn_mark);
496 i_mark->wd = -1;
Eric Parisb7ba8372009-12-17 20:12:04 -0500497 spin_unlock(idr_lock);
Eric Paris7e790dd2009-07-07 10:28:24 -0400498}
Eric Parisdead5372009-08-24 16:03:35 -0400499
Eric Paris63c882a2009-05-21 17:02:01 -0400500/*
Eric Parisdead5372009-08-24 16:03:35 -0400501 * Send IN_IGNORED for this wd, remove this wd from the idr.
Eric Paris63c882a2009-05-21 17:02:01 -0400502 */
Eric Paris000285d2009-12-17 21:24:24 -0500503void inotify_ignored_and_remove_idr(struct fsnotify_mark *fsn_mark,
Eric Paris528da3e2009-06-12 16:04:26 -0400504 struct fsnotify_group *group)
Eric Paris63c882a2009-05-21 17:02:01 -0400505{
Eric Paris000285d2009-12-17 21:24:24 -0500506 struct inotify_inode_mark *i_mark;
Eric Parisf70ab542010-07-28 10:18:37 -0400507 struct fsnotify_event *ignored_event, *notify_event;
Eric Paris63c882a2009-05-21 17:02:01 -0400508 struct inotify_event_private_data *event_priv;
509 struct fsnotify_event_private_data *fsn_event_priv;
Eric Pariseef3a112009-08-16 21:51:44 -0400510 int ret;
Eric Paris63c882a2009-05-21 17:02:01 -0400511
Lino Sanfilippo8b99c3c2012-03-24 23:44:19 +0100512 i_mark = container_of(fsn_mark, struct inotify_inode_mark, fsn_mark);
513
Eric Parisf44aebc2009-07-15 15:49:52 -0400514 ignored_event = fsnotify_create_event(NULL, FS_IN_IGNORED, NULL,
515 FSNOTIFY_EVENT_NONE, NULL, 0,
516 GFP_NOFS);
517 if (!ignored_event)
Lino Sanfilippo8b99c3c2012-03-24 23:44:19 +0100518 goto skip_send_ignore;
Eric Paris63c882a2009-05-21 17:02:01 -0400519
Eric Parisf44aebc2009-07-15 15:49:52 -0400520 event_priv = kmem_cache_alloc(event_priv_cachep, GFP_NOFS);
Eric Paris63c882a2009-05-21 17:02:01 -0400521 if (unlikely(!event_priv))
522 goto skip_send_ignore;
523
524 fsn_event_priv = &event_priv->fsnotify_event_priv_data;
525
Lino Sanfilippo23e964c2011-06-14 17:29:47 +0200526 fsnotify_get_group(group);
Eric Paris63c882a2009-05-21 17:02:01 -0400527 fsn_event_priv->group = group;
Eric Paris000285d2009-12-17 21:24:24 -0500528 event_priv->wd = i_mark->wd;
Eric Paris63c882a2009-05-21 17:02:01 -0400529
Eric Parisf70ab542010-07-28 10:18:37 -0400530 notify_event = fsnotify_add_notify_event(group, ignored_event, fsn_event_priv, NULL);
531 if (notify_event) {
532 if (IS_ERR(notify_event))
533 ret = PTR_ERR(notify_event);
534 else
535 fsnotify_put_event(notify_event);
Eric Paris63c882a2009-05-21 17:02:01 -0400536 inotify_free_event_priv(fsn_event_priv);
Eric Parisf70ab542010-07-28 10:18:37 -0400537 }
Eric Paris63c882a2009-05-21 17:02:01 -0400538
539skip_send_ignore:
Eric Parisf44aebc2009-07-15 15:49:52 -0400540 /* matches the reference taken when the event was created */
Lino Sanfilippo8b99c3c2012-03-24 23:44:19 +0100541 if (ignored_event)
542 fsnotify_put_event(ignored_event);
Eric Parisf44aebc2009-07-15 15:49:52 -0400543
Eric Paris000285d2009-12-17 21:24:24 -0500544 /* remove this mark from the idr */
545 inotify_remove_from_idr(group, i_mark);
Eric Paris63c882a2009-05-21 17:02:01 -0400546
Eric Paris5549f7c2009-07-07 10:28:23 -0400547 atomic_dec(&group->inotify_data.user->inotify_watches);
Eric Paris63c882a2009-05-21 17:02:01 -0400548}
549
550/* ding dong the mark is dead */
Eric Paris000285d2009-12-17 21:24:24 -0500551static void inotify_free_mark(struct fsnotify_mark *fsn_mark)
Eric Paris63c882a2009-05-21 17:02:01 -0400552{
Eric Paris000285d2009-12-17 21:24:24 -0500553 struct inotify_inode_mark *i_mark;
Eric Paris31ddd322009-12-17 20:12:06 -0500554
Eric Paris000285d2009-12-17 21:24:24 -0500555 i_mark = container_of(fsn_mark, struct inotify_inode_mark, fsn_mark);
Eric Paris63c882a2009-05-21 17:02:01 -0400556
Eric Paris000285d2009-12-17 21:24:24 -0500557 kmem_cache_free(inotify_inode_mark_cachep, i_mark);
Eric Paris63c882a2009-05-21 17:02:01 -0400558}
559
Eric Paris52cef752009-08-24 16:03:35 -0400560static int inotify_update_existing_watch(struct fsnotify_group *group,
561 struct inode *inode,
562 u32 arg)
Eric Paris63c882a2009-05-21 17:02:01 -0400563{
Eric Paris000285d2009-12-17 21:24:24 -0500564 struct fsnotify_mark *fsn_mark;
565 struct inotify_inode_mark *i_mark;
Eric Paris63c882a2009-05-21 17:02:01 -0400566 __u32 old_mask, new_mask;
Eric Paris52cef752009-08-24 16:03:35 -0400567 __u32 mask;
568 int add = (arg & IN_MASK_ADD);
569 int ret;
Eric Paris63c882a2009-05-21 17:02:01 -0400570
Eric Paris63c882a2009-05-21 17:02:01 -0400571 mask = inotify_arg_to_mask(arg);
Eric Paris63c882a2009-05-21 17:02:01 -0400572
Eric Paris5444e292009-12-17 21:24:27 -0500573 fsn_mark = fsnotify_find_inode_mark(group, inode);
Eric Paris000285d2009-12-17 21:24:24 -0500574 if (!fsn_mark)
Eric Paris52cef752009-08-24 16:03:35 -0400575 return -ENOENT;
Eric Paris63c882a2009-05-21 17:02:01 -0400576
Eric Paris000285d2009-12-17 21:24:24 -0500577 i_mark = container_of(fsn_mark, struct inotify_inode_mark, fsn_mark);
Eric Paris75fe2b262009-07-07 10:28:23 -0400578
Eric Paris000285d2009-12-17 21:24:24 -0500579 spin_lock(&fsn_mark->lock);
Eric Paris63c882a2009-05-21 17:02:01 -0400580
Eric Paris000285d2009-12-17 21:24:24 -0500581 old_mask = fsn_mark->mask;
Eric Paris90b1e7a2009-12-17 21:24:33 -0500582 if (add)
583 fsnotify_set_mark_mask_locked(fsn_mark, (fsn_mark->mask | mask));
584 else
585 fsnotify_set_mark_mask_locked(fsn_mark, mask);
586 new_mask = fsn_mark->mask;
Eric Paris63c882a2009-05-21 17:02:01 -0400587
Eric Paris000285d2009-12-17 21:24:24 -0500588 spin_unlock(&fsn_mark->lock);
Eric Paris63c882a2009-05-21 17:02:01 -0400589
590 if (old_mask != new_mask) {
591 /* more bits in old than in new? */
592 int dropped = (old_mask & ~new_mask);
Eric Paris000285d2009-12-17 21:24:24 -0500593 /* more bits in this fsn_mark than the inode's mask? */
Eric Paris63c882a2009-05-21 17:02:01 -0400594 int do_inode = (new_mask & ~inode->i_fsnotify_mask);
Eric Paris63c882a2009-05-21 17:02:01 -0400595
Eric Paris000285d2009-12-17 21:24:24 -0500596 /* update the inode with this new fsn_mark */
Eric Paris63c882a2009-05-21 17:02:01 -0400597 if (dropped || do_inode)
598 fsnotify_recalc_inode_mask(inode);
599
Eric Paris63c882a2009-05-21 17:02:01 -0400600 }
601
Eric Paris52cef752009-08-24 16:03:35 -0400602 /* return the wd */
Eric Paris000285d2009-12-17 21:24:24 -0500603 ret = i_mark->wd;
Eric Paris52cef752009-08-24 16:03:35 -0400604
Eric Parisd0775442009-12-17 21:24:24 -0500605 /* match the get from fsnotify_find_mark() */
Eric Paris000285d2009-12-17 21:24:24 -0500606 fsnotify_put_mark(fsn_mark);
Eric Paris75fe2b262009-07-07 10:28:23 -0400607
Eric Paris52cef752009-08-24 16:03:35 -0400608 return ret;
609}
610
611static int inotify_new_watch(struct fsnotify_group *group,
612 struct inode *inode,
613 u32 arg)
614{
Eric Paris000285d2009-12-17 21:24:24 -0500615 struct inotify_inode_mark *tmp_i_mark;
Eric Paris52cef752009-08-24 16:03:35 -0400616 __u32 mask;
617 int ret;
Eric Parisb7ba8372009-12-17 20:12:04 -0500618 struct idr *idr = &group->inotify_data.idr;
619 spinlock_t *idr_lock = &group->inotify_data.idr_lock;
Eric Paris52cef752009-08-24 16:03:35 -0400620
Eric Paris52cef752009-08-24 16:03:35 -0400621 mask = inotify_arg_to_mask(arg);
Eric Paris52cef752009-08-24 16:03:35 -0400622
Eric Paris000285d2009-12-17 21:24:24 -0500623 tmp_i_mark = kmem_cache_alloc(inotify_inode_mark_cachep, GFP_KERNEL);
624 if (unlikely(!tmp_i_mark))
Eric Paris52cef752009-08-24 16:03:35 -0400625 return -ENOMEM;
626
Eric Paris000285d2009-12-17 21:24:24 -0500627 fsnotify_init_mark(&tmp_i_mark->fsn_mark, inotify_free_mark);
628 tmp_i_mark->fsn_mark.mask = mask;
629 tmp_i_mark->wd = -1;
Eric Paris52cef752009-08-24 16:03:35 -0400630
631 ret = -ENOSPC;
632 if (atomic_read(&group->inotify_data.user->inotify_watches) >= inotify_max_user_watches)
633 goto out_err;
Eric Parisb7ba8372009-12-17 20:12:04 -0500634
Jeff Laytona66c04b2013-04-29 16:21:21 -0700635 ret = inotify_add_to_idr(idr, idr_lock, tmp_i_mark);
Eric Parisb7ba8372009-12-17 20:12:04 -0500636 if (ret)
Eric Paris52cef752009-08-24 16:03:35 -0400637 goto out_err;
638
Eric Paris52cef752009-08-24 16:03:35 -0400639 /* we are on the idr, now get on the inode */
Lino Sanfilippoe1e5a9f2013-07-08 15:59:45 -0700640 ret = fsnotify_add_mark_locked(&tmp_i_mark->fsn_mark, group, inode,
641 NULL, 0);
Eric Paris52cef752009-08-24 16:03:35 -0400642 if (ret) {
643 /* we failed to get on the inode, get off the idr */
Eric Paris000285d2009-12-17 21:24:24 -0500644 inotify_remove_from_idr(group, tmp_i_mark);
Eric Paris52cef752009-08-24 16:03:35 -0400645 goto out_err;
646 }
647
Eric Paris52cef752009-08-24 16:03:35 -0400648 /* increment the number of watches the user has */
649 atomic_inc(&group->inotify_data.user->inotify_watches);
650
Eric Paris000285d2009-12-17 21:24:24 -0500651 /* return the watch descriptor for this new mark */
652 ret = tmp_i_mark->wd;
Eric Paris52cef752009-08-24 16:03:35 -0400653
Eric Paris52cef752009-08-24 16:03:35 -0400654out_err:
Eric Paris000285d2009-12-17 21:24:24 -0500655 /* match the ref from fsnotify_init_mark() */
656 fsnotify_put_mark(&tmp_i_mark->fsn_mark);
Eric Paris52cef752009-08-24 16:03:35 -0400657
658 return ret;
659}
660
661static int inotify_update_watch(struct fsnotify_group *group, struct inode *inode, u32 arg)
662{
663 int ret = 0;
664
Lino Sanfilippoe1e5a9f2013-07-08 15:59:45 -0700665 mutex_lock(&group->mark_mutex);
Eric Paris52cef752009-08-24 16:03:35 -0400666 /* try to update and existing watch with the new arg */
667 ret = inotify_update_existing_watch(group, inode, arg);
668 /* no mark present, try to add a new one */
669 if (ret == -ENOENT)
670 ret = inotify_new_watch(group, inode, arg);
Lino Sanfilippoe1e5a9f2013-07-08 15:59:45 -0700671 mutex_unlock(&group->mark_mutex);
Eric Paris52cef752009-08-24 16:03:35 -0400672
Eric Paris63c882a2009-05-21 17:02:01 -0400673 return ret;
674}
675
Eric Parisd0de4dc2011-04-05 17:20:50 -0400676static struct fsnotify_group *inotify_new_group(unsigned int max_events)
Eric Paris63c882a2009-05-21 17:02:01 -0400677{
678 struct fsnotify_group *group;
Eric Paris63c882a2009-05-21 17:02:01 -0400679
Eric Paris0d2e2a12009-12-17 21:24:22 -0500680 group = fsnotify_alloc_group(&inotify_fsnotify_ops);
Eric Paris63c882a2009-05-21 17:02:01 -0400681 if (IS_ERR(group))
682 return group;
683
684 group->max_events = max_events;
685
686 spin_lock_init(&group->inotify_data.idr_lock);
687 idr_init(&group->inotify_data.idr);
Eric Parisd0de4dc2011-04-05 17:20:50 -0400688 group->inotify_data.user = get_current_user();
689
690 if (atomic_inc_return(&group->inotify_data.user->inotify_devs) >
691 inotify_max_user_instances) {
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200692 fsnotify_destroy_group(group);
Eric Parisd0de4dc2011-04-05 17:20:50 -0400693 return ERR_PTR(-EMFILE);
694 }
Eric Paris63c882a2009-05-21 17:02:01 -0400695
696 return group;
697}
698
699
700/* inotify syscalls */
Heiko Carstens938bb9f2009-01-14 14:14:30 +0100701SYSCALL_DEFINE1(inotify_init1, int, flags)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700702{
Eric Paris63c882a2009-05-21 17:02:01 -0400703 struct fsnotify_group *group;
Al Viroc44dcc52010-02-11 02:24:46 -0500704 int ret;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700705
Ulrich Dreppere38b36f2008-07-23 21:29:42 -0700706 /* Check the IN_* constants for consistency. */
707 BUILD_BUG_ON(IN_CLOEXEC != O_CLOEXEC);
708 BUILD_BUG_ON(IN_NONBLOCK != O_NONBLOCK);
709
Ulrich Drepper510df2d2008-07-23 21:29:41 -0700710 if (flags & ~(IN_CLOEXEC | IN_NONBLOCK))
Ulrich Drepper40065532008-07-23 21:29:32 -0700711 return -EINVAL;
712
Eric Paris63c882a2009-05-21 17:02:01 -0400713 /* fsnotify_obtain_group took a reference to group, we put this when we kill the file in the end */
Eric Parisd0de4dc2011-04-05 17:20:50 -0400714 group = inotify_new_group(inotify_max_queued_events);
715 if (IS_ERR(group))
716 return PTR_ERR(group);
Al Viro825f9692009-08-05 18:35:21 +0400717
Al Viroc44dcc52010-02-11 02:24:46 -0500718 ret = anon_inode_getfd("inotify", &inotify_fops, group,
719 O_RDONLY | flags);
Eric Parisd0de4dc2011-04-05 17:20:50 -0400720 if (ret < 0)
Lino Sanfilippod8153d42011-06-14 17:29:45 +0200721 fsnotify_destroy_group(group);
Al Viro825f9692009-08-05 18:35:21 +0400722
Amy Griffis2d9048e2006-06-01 13:10:59 -0700723 return ret;
724}
725
Heiko Carstens938bb9f2009-01-14 14:14:30 +0100726SYSCALL_DEFINE0(inotify_init)
Ulrich Drepper40065532008-07-23 21:29:32 -0700727{
728 return sys_inotify_init1(0);
729}
730
Heiko Carstens2e4d0922009-01-14 14:14:31 +0100731SYSCALL_DEFINE3(inotify_add_watch, int, fd, const char __user *, pathname,
732 u32, mask)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700733{
Eric Paris63c882a2009-05-21 17:02:01 -0400734 struct fsnotify_group *group;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700735 struct inode *inode;
Al Viro2d8f3032008-07-22 09:59:21 -0400736 struct path path;
Al Viro2903ff02012-08-28 12:52:22 -0400737 struct fd f;
738 int ret;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700739 unsigned flags = 0;
740
Zhao Hongjiang04df32f2013-04-30 15:26:46 -0700741 /* don't allow invalid bits: we don't want flags set */
742 if (unlikely(!(mask & ALL_INOTIFY_BITS)))
743 return -EINVAL;
744
Al Viro2903ff02012-08-28 12:52:22 -0400745 f = fdget(fd);
746 if (unlikely(!f.file))
Amy Griffis2d9048e2006-06-01 13:10:59 -0700747 return -EBADF;
748
749 /* verify that this is indeed an inotify instance */
Al Viro2903ff02012-08-28 12:52:22 -0400750 if (unlikely(f.file->f_op != &inotify_fops)) {
Amy Griffis2d9048e2006-06-01 13:10:59 -0700751 ret = -EINVAL;
752 goto fput_and_out;
753 }
754
755 if (!(mask & IN_DONT_FOLLOW))
756 flags |= LOOKUP_FOLLOW;
757 if (mask & IN_ONLYDIR)
758 flags |= LOOKUP_DIRECTORY;
759
Eric Paris63c882a2009-05-21 17:02:01 -0400760 ret = inotify_find_inode(pathname, &path, flags);
761 if (ret)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700762 goto fput_and_out;
763
Eric Paris63c882a2009-05-21 17:02:01 -0400764 /* inode held in place by reference to path; group by fget on fd */
Al Viro2d8f3032008-07-22 09:59:21 -0400765 inode = path.dentry->d_inode;
Al Viro2903ff02012-08-28 12:52:22 -0400766 group = f.file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700767
Eric Paris63c882a2009-05-21 17:02:01 -0400768 /* create/update an inode mark */
769 ret = inotify_update_watch(group, inode, mask);
Al Viro2d8f3032008-07-22 09:59:21 -0400770 path_put(&path);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700771fput_and_out:
Al Viro2903ff02012-08-28 12:52:22 -0400772 fdput(f);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700773 return ret;
774}
775
Heiko Carstens2e4d0922009-01-14 14:14:31 +0100776SYSCALL_DEFINE2(inotify_rm_watch, int, fd, __s32, wd)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700777{
Eric Paris63c882a2009-05-21 17:02:01 -0400778 struct fsnotify_group *group;
Eric Paris000285d2009-12-17 21:24:24 -0500779 struct inotify_inode_mark *i_mark;
Al Viro2903ff02012-08-28 12:52:22 -0400780 struct fd f;
781 int ret = 0;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700782
Al Viro2903ff02012-08-28 12:52:22 -0400783 f = fdget(fd);
784 if (unlikely(!f.file))
Amy Griffis2d9048e2006-06-01 13:10:59 -0700785 return -EBADF;
786
787 /* verify that this is indeed an inotify instance */
Eric Parisb7ba8372009-12-17 20:12:04 -0500788 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -0400789 if (unlikely(f.file->f_op != &inotify_fops))
Amy Griffis2d9048e2006-06-01 13:10:59 -0700790 goto out;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700791
Al Viro2903ff02012-08-28 12:52:22 -0400792 group = f.file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700793
Eric Parisb7ba8372009-12-17 20:12:04 -0500794 ret = -EINVAL;
Eric Paris000285d2009-12-17 21:24:24 -0500795 i_mark = inotify_idr_find(group, wd);
796 if (unlikely(!i_mark))
Eric Paris63c882a2009-05-21 17:02:01 -0400797 goto out;
Eric Paris63c882a2009-05-21 17:02:01 -0400798
Eric Parisb7ba8372009-12-17 20:12:04 -0500799 ret = 0;
800
Lino Sanfilippoe2a29942011-06-14 17:29:51 +0200801 fsnotify_destroy_mark(&i_mark->fsn_mark, group);
Eric Parisb7ba8372009-12-17 20:12:04 -0500802
803 /* match ref taken by inotify_idr_find */
Eric Paris000285d2009-12-17 21:24:24 -0500804 fsnotify_put_mark(&i_mark->fsn_mark);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700805
806out:
Al Viro2903ff02012-08-28 12:52:22 -0400807 fdput(f);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700808 return ret;
809}
810
Amy Griffis2d9048e2006-06-01 13:10:59 -0700811/*
Justin P. Mattockae0e47f2011-03-01 15:06:02 +0100812 * inotify_user_setup - Our initialization function. Note that we cannot return
Amy Griffis2d9048e2006-06-01 13:10:59 -0700813 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
814 * must result in panic().
815 */
816static int __init inotify_user_setup(void)
817{
Eric Parisf874e1a2010-07-28 10:18:37 -0400818 BUILD_BUG_ON(IN_ACCESS != FS_ACCESS);
819 BUILD_BUG_ON(IN_MODIFY != FS_MODIFY);
820 BUILD_BUG_ON(IN_ATTRIB != FS_ATTRIB);
821 BUILD_BUG_ON(IN_CLOSE_WRITE != FS_CLOSE_WRITE);
822 BUILD_BUG_ON(IN_CLOSE_NOWRITE != FS_CLOSE_NOWRITE);
823 BUILD_BUG_ON(IN_OPEN != FS_OPEN);
824 BUILD_BUG_ON(IN_MOVED_FROM != FS_MOVED_FROM);
825 BUILD_BUG_ON(IN_MOVED_TO != FS_MOVED_TO);
826 BUILD_BUG_ON(IN_CREATE != FS_CREATE);
827 BUILD_BUG_ON(IN_DELETE != FS_DELETE);
828 BUILD_BUG_ON(IN_DELETE_SELF != FS_DELETE_SELF);
829 BUILD_BUG_ON(IN_MOVE_SELF != FS_MOVE_SELF);
830 BUILD_BUG_ON(IN_UNMOUNT != FS_UNMOUNT);
831 BUILD_BUG_ON(IN_Q_OVERFLOW != FS_Q_OVERFLOW);
832 BUILD_BUG_ON(IN_IGNORED != FS_IN_IGNORED);
833 BUILD_BUG_ON(IN_EXCL_UNLINK != FS_EXCL_UNLINK);
Eric Parisb29866a2010-10-28 17:21:58 -0400834 BUILD_BUG_ON(IN_ISDIR != FS_ISDIR);
Eric Parisf874e1a2010-07-28 10:18:37 -0400835 BUILD_BUG_ON(IN_ONESHOT != FS_IN_ONESHOT);
836
837 BUG_ON(hweight32(ALL_INOTIFY_BITS) != 21);
838
Eric Paris000285d2009-12-17 21:24:24 -0500839 inotify_inode_mark_cachep = KMEM_CACHE(inotify_inode_mark, SLAB_PANIC);
Eric Paris63c882a2009-05-21 17:02:01 -0400840 event_priv_cachep = KMEM_CACHE(inotify_event_private_data, SLAB_PANIC);
Eric Paris63c882a2009-05-21 17:02:01 -0400841
Amy Griffis2d9048e2006-06-01 13:10:59 -0700842 inotify_max_queued_events = 16384;
843 inotify_max_user_instances = 128;
844 inotify_max_user_watches = 8192;
845
Amy Griffis2d9048e2006-06-01 13:10:59 -0700846 return 0;
847}
Amy Griffis2d9048e2006-06-01 13:10:59 -0700848module_init(inotify_user_setup);