blob: ff231ad23895ea179a5507ace2e4ca5c54db1470 [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() */
32#include <linux/magic.h> /* superblock magic number */
33#include <linux/mount.h> /* mntget */
34#include <linux/namei.h> /* LOOKUP_FOLLOW */
35#include <linux/path.h> /* struct path */
36#include <linux/sched.h> /* struct user */
37#include <linux/slab.h> /* struct kmem_cache */
Amy Griffis2d9048e2006-06-01 13:10:59 -070038#include <linux/syscalls.h>
Eric Paris63c882a2009-05-21 17:02:01 -040039#include <linux/types.h>
40#include <linux/uaccess.h>
41#include <linux/poll.h>
42#include <linux/wait.h>
43
44#include "inotify.h"
Amy Griffis2d9048e2006-06-01 13:10:59 -070045
46#include <asm/ioctls.h>
47
Amy Griffis2d9048e2006-06-01 13:10:59 -070048static struct vfsmount *inotify_mnt __read_mostly;
49
Eric Paris63c882a2009-05-21 17:02:01 -040050/* this just sits here and wastes global memory. used to just pad userspace messages with zeros */
51static struct inotify_event nul_inotify_event;
52
Amy Griffis2d9048e2006-06-01 13:10:59 -070053/* these are configurable via /proc/sys/fs/inotify/ */
Harvey Harrison3c828e42008-02-14 19:31:21 -080054static int inotify_max_user_instances __read_mostly;
Harvey Harrison3c828e42008-02-14 19:31:21 -080055static int inotify_max_queued_events __read_mostly;
Eric Paris63c882a2009-05-21 17:02:01 -040056int inotify_max_user_watches __read_mostly;
57
58static struct kmem_cache *inotify_inode_mark_cachep __read_mostly;
59struct kmem_cache *event_priv_cachep __read_mostly;
60static struct fsnotify_event *inotify_ignored_event;
Amy Griffis2d9048e2006-06-01 13:10:59 -070061
62/*
Eric Paris63c882a2009-05-21 17:02:01 -040063 * When inotify registers a new group it increments this and uses that
64 * value as an offset to set the fsnotify group "name" and priority.
Amy Griffis2d9048e2006-06-01 13:10:59 -070065 */
Eric Paris63c882a2009-05-21 17:02:01 -040066static atomic_t inotify_grp_num;
Amy Griffis2d9048e2006-06-01 13:10:59 -070067
68#ifdef CONFIG_SYSCTL
69
70#include <linux/sysctl.h>
71
72static int zero;
73
74ctl_table inotify_table[] = {
75 {
76 .ctl_name = INOTIFY_MAX_USER_INSTANCES,
77 .procname = "max_user_instances",
78 .data = &inotify_max_user_instances,
79 .maxlen = sizeof(int),
80 .mode = 0644,
81 .proc_handler = &proc_dointvec_minmax,
82 .strategy = &sysctl_intvec,
83 .extra1 = &zero,
84 },
85 {
86 .ctl_name = INOTIFY_MAX_USER_WATCHES,
87 .procname = "max_user_watches",
88 .data = &inotify_max_user_watches,
89 .maxlen = sizeof(int),
90 .mode = 0644,
91 .proc_handler = &proc_dointvec_minmax,
92 .strategy = &sysctl_intvec,
93 .extra1 = &zero,
94 },
95 {
96 .ctl_name = INOTIFY_MAX_QUEUED_EVENTS,
97 .procname = "max_queued_events",
98 .data = &inotify_max_queued_events,
99 .maxlen = sizeof(int),
100 .mode = 0644,
101 .proc_handler = &proc_dointvec_minmax,
102 .strategy = &sysctl_intvec,
103 .extra1 = &zero
104 },
105 { .ctl_name = 0 }
106};
107#endif /* CONFIG_SYSCTL */
108
Eric Paris63c882a2009-05-21 17:02:01 -0400109static inline __u32 inotify_arg_to_mask(u32 arg)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700110{
Eric Paris63c882a2009-05-21 17:02:01 -0400111 __u32 mask;
112
113 /* everything should accept their own ignored and cares about children */
114 mask = (FS_IN_IGNORED | FS_EVENT_ON_CHILD);
115
116 /* mask off the flags used to open the fd */
117 mask |= (arg & (IN_ALL_EVENTS | IN_ONESHOT));
118
119 return mask;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700120}
121
Eric Paris63c882a2009-05-21 17:02:01 -0400122static inline u32 inotify_mask_to_arg(__u32 mask)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700123{
Eric Paris63c882a2009-05-21 17:02:01 -0400124 return mask & (IN_ALL_EVENTS | IN_ISDIR | IN_UNMOUNT | IN_IGNORED |
125 IN_Q_OVERFLOW);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700126}
127
Eric Paris63c882a2009-05-21 17:02:01 -0400128/* intofiy userspace file descriptor functions */
Amy Griffis2d9048e2006-06-01 13:10:59 -0700129static unsigned int inotify_poll(struct file *file, poll_table *wait)
130{
Eric Paris63c882a2009-05-21 17:02:01 -0400131 struct fsnotify_group *group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700132 int ret = 0;
133
Eric Paris63c882a2009-05-21 17:02:01 -0400134 poll_wait(file, &group->notification_waitq, wait);
135 mutex_lock(&group->notification_mutex);
136 if (!fsnotify_notify_queue_is_empty(group))
Amy Griffis2d9048e2006-06-01 13:10:59 -0700137 ret = POLLIN | POLLRDNORM;
Eric Paris63c882a2009-05-21 17:02:01 -0400138 mutex_unlock(&group->notification_mutex);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700139
140 return ret;
141}
142
Vegard Nossum3632dee2009-01-22 15:29:45 +0100143/*
144 * Get an inotify_kernel_event if one exists and is small
145 * enough to fit in "count". Return an error pointer if
146 * not large enough.
147 *
Eric Paris63c882a2009-05-21 17:02:01 -0400148 * Called with the group->notification_mutex held.
Vegard Nossum3632dee2009-01-22 15:29:45 +0100149 */
Eric Paris63c882a2009-05-21 17:02:01 -0400150static struct fsnotify_event *get_one_event(struct fsnotify_group *group,
151 size_t count)
Vegard Nossum3632dee2009-01-22 15:29:45 +0100152{
153 size_t event_size = sizeof(struct inotify_event);
Eric Paris63c882a2009-05-21 17:02:01 -0400154 struct fsnotify_event *event;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100155
Eric Paris63c882a2009-05-21 17:02:01 -0400156 if (fsnotify_notify_queue_is_empty(group))
Vegard Nossum3632dee2009-01-22 15:29:45 +0100157 return NULL;
158
Eric Paris63c882a2009-05-21 17:02:01 -0400159 event = fsnotify_peek_notify_event(group);
160
161 event_size += roundup(event->name_len, event_size);
Vegard Nossum3632dee2009-01-22 15:29:45 +0100162
163 if (event_size > count)
164 return ERR_PTR(-EINVAL);
165
Eric Paris63c882a2009-05-21 17:02:01 -0400166 /* held the notification_mutex the whole time, so this is the
167 * same event we peeked above */
168 fsnotify_remove_notify_event(group);
169
170 return event;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100171}
172
173/*
174 * Copy an event to user space, returning how much we copied.
175 *
176 * We already checked that the event size is smaller than the
177 * buffer we had in "get_one_event()" above.
178 */
Eric Paris63c882a2009-05-21 17:02:01 -0400179static ssize_t copy_event_to_user(struct fsnotify_group *group,
180 struct fsnotify_event *event,
Vegard Nossum3632dee2009-01-22 15:29:45 +0100181 char __user *buf)
182{
Eric Paris63c882a2009-05-21 17:02:01 -0400183 struct inotify_event inotify_event;
184 struct fsnotify_event_private_data *fsn_priv;
185 struct inotify_event_private_data *priv;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100186 size_t event_size = sizeof(struct inotify_event);
Eric Paris63c882a2009-05-21 17:02:01 -0400187 size_t name_len;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100188
Eric Paris63c882a2009-05-21 17:02:01 -0400189 /* we get the inotify watch descriptor from the event private data */
190 spin_lock(&event->lock);
191 fsn_priv = fsnotify_remove_priv_from_event(group, event);
192 spin_unlock(&event->lock);
193
194 if (!fsn_priv)
195 inotify_event.wd = -1;
196 else {
197 priv = container_of(fsn_priv, struct inotify_event_private_data,
198 fsnotify_event_priv_data);
199 inotify_event.wd = priv->wd;
200 inotify_free_event_priv(fsn_priv);
201 }
202
203 /* round up event->name_len so it is a multiple of event_size */
204 name_len = roundup(event->name_len, event_size);
205 inotify_event.len = name_len;
206
207 inotify_event.mask = inotify_mask_to_arg(event->mask);
208 inotify_event.cookie = event->sync_cookie;
209
210 /* send the main event */
211 if (copy_to_user(buf, &inotify_event, event_size))
Vegard Nossum3632dee2009-01-22 15:29:45 +0100212 return -EFAULT;
213
Eric Paris63c882a2009-05-21 17:02:01 -0400214 buf += event_size;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100215
Eric Paris63c882a2009-05-21 17:02:01 -0400216 /*
217 * fsnotify only stores the pathname, so here we have to send the pathname
218 * and then pad that pathname out to a multiple of sizeof(inotify_event)
219 * with zeros. I get my zeros from the nul_inotify_event.
220 */
221 if (name_len) {
222 unsigned int len_to_zero = name_len - event->name_len;
223 /* copy the path name */
224 if (copy_to_user(buf, event->file_name, event->name_len))
Vegard Nossum3632dee2009-01-22 15:29:45 +0100225 return -EFAULT;
Eric Paris63c882a2009-05-21 17:02:01 -0400226 buf += event->name_len;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100227
Eric Paris63c882a2009-05-21 17:02:01 -0400228 /* fill userspace with 0's from nul_inotify_event */
229 if (copy_to_user(buf, &nul_inotify_event, len_to_zero))
230 return -EFAULT;
231 buf += len_to_zero;
232 event_size += name_len;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100233 }
Eric Paris63c882a2009-05-21 17:02:01 -0400234
Vegard Nossum3632dee2009-01-22 15:29:45 +0100235 return event_size;
236}
237
Amy Griffis2d9048e2006-06-01 13:10:59 -0700238static ssize_t inotify_read(struct file *file, char __user *buf,
239 size_t count, loff_t *pos)
240{
Eric Paris63c882a2009-05-21 17:02:01 -0400241 struct fsnotify_group *group;
242 struct fsnotify_event *kevent;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700243 char __user *start;
244 int ret;
245 DEFINE_WAIT(wait);
246
247 start = buf;
Eric Paris63c882a2009-05-21 17:02:01 -0400248 group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700249
250 while (1) {
Eric Paris63c882a2009-05-21 17:02:01 -0400251 prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700252
Eric Paris63c882a2009-05-21 17:02:01 -0400253 mutex_lock(&group->notification_mutex);
254 kevent = get_one_event(group, count);
255 mutex_unlock(&group->notification_mutex);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700256
Vegard Nossum3632dee2009-01-22 15:29:45 +0100257 if (kevent) {
258 ret = PTR_ERR(kevent);
259 if (IS_ERR(kevent))
260 break;
Eric Paris63c882a2009-05-21 17:02:01 -0400261 ret = copy_event_to_user(group, kevent, buf);
262 fsnotify_put_event(kevent);
Vegard Nossum3632dee2009-01-22 15:29:45 +0100263 if (ret < 0)
264 break;
265 buf += ret;
266 count -= ret;
267 continue;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700268 }
269
Vegard Nossum3632dee2009-01-22 15:29:45 +0100270 ret = -EAGAIN;
271 if (file->f_flags & O_NONBLOCK)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700272 break;
Vegard Nossum3632dee2009-01-22 15:29:45 +0100273 ret = -EINTR;
274 if (signal_pending(current))
275 break;
276
277 if (start != buf)
278 break;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700279
280 schedule();
281 }
282
Eric Paris63c882a2009-05-21 17:02:01 -0400283 finish_wait(&group->notification_waitq, &wait);
Vegard Nossum3632dee2009-01-22 15:29:45 +0100284 if (start != buf && ret != -EFAULT)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700285 ret = buf - start;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700286 return ret;
287}
288
Dmitry Antipovbcfbf842008-02-06 01:36:19 -0800289static int inotify_fasync(int fd, struct file *file, int on)
290{
Eric Paris63c882a2009-05-21 17:02:01 -0400291 struct fsnotify_group *group = file->private_data;
Dmitry Antipovbcfbf842008-02-06 01:36:19 -0800292
Eric Paris63c882a2009-05-21 17:02:01 -0400293 return fasync_helper(fd, file, on, &group->inotify_data.fa) >= 0 ? 0 : -EIO;
Dmitry Antipovbcfbf842008-02-06 01:36:19 -0800294}
295
Amy Griffis2d9048e2006-06-01 13:10:59 -0700296static int inotify_release(struct inode *ignored, struct file *file)
297{
Eric Paris63c882a2009-05-21 17:02:01 -0400298 struct fsnotify_group *group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700299
Eric Paris63c882a2009-05-21 17:02:01 -0400300 fsnotify_clear_marks_by_group(group);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700301
Eric Paris63c882a2009-05-21 17:02:01 -0400302 /* free this group, matching get was inotify_init->fsnotify_obtain_group */
303 fsnotify_put_group(group);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700304
305 return 0;
306}
307
308static long inotify_ioctl(struct file *file, unsigned int cmd,
309 unsigned long arg)
310{
Eric Paris63c882a2009-05-21 17:02:01 -0400311 struct fsnotify_group *group;
312 struct fsnotify_event_holder *holder;
313 struct fsnotify_event *event;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700314 void __user *p;
315 int ret = -ENOTTY;
Eric Paris63c882a2009-05-21 17:02:01 -0400316 size_t send_len = 0;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700317
Eric Paris63c882a2009-05-21 17:02:01 -0400318 group = file->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700319 p = (void __user *) arg;
320
321 switch (cmd) {
322 case FIONREAD:
Eric Paris63c882a2009-05-21 17:02:01 -0400323 mutex_lock(&group->notification_mutex);
324 list_for_each_entry(holder, &group->notification_list, event_list) {
325 event = holder->event;
326 send_len += sizeof(struct inotify_event);
327 send_len += roundup(event->name_len,
328 sizeof(struct inotify_event));
329 }
330 mutex_unlock(&group->notification_mutex);
331 ret = put_user(send_len, (int __user *) p);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700332 break;
333 }
334
335 return ret;
336}
337
338static const struct file_operations inotify_fops = {
Eric Paris63c882a2009-05-21 17:02:01 -0400339 .poll = inotify_poll,
340 .read = inotify_read,
341 .fasync = inotify_fasync,
342 .release = inotify_release,
343 .unlocked_ioctl = inotify_ioctl,
Amy Griffis2d9048e2006-06-01 13:10:59 -0700344 .compat_ioctl = inotify_ioctl,
345};
346
Amy Griffis2d9048e2006-06-01 13:10:59 -0700347
Eric Paris63c882a2009-05-21 17:02:01 -0400348/*
349 * find_inode - resolve a user-given path to a specific inode
350 */
351static int inotify_find_inode(const char __user *dirname, struct path *path, unsigned flags)
352{
353 int error;
354
355 error = user_path_at(AT_FDCWD, dirname, flags, path);
356 if (error)
357 return error;
358 /* you can only watch an inode if you have read permissions on it */
359 error = inode_permission(path->dentry->d_inode, MAY_READ);
360 if (error)
361 path_put(path);
362 return error;
363}
364
365/*
Eric Paris528da3e2009-06-12 16:04:26 -0400366 * Send IN_IGNORED for this wd, remove this wd from the idr, and drop the
367 * internal reference help on the mark because it is in the idr.
Eric Paris63c882a2009-05-21 17:02:01 -0400368 */
Eric Paris528da3e2009-06-12 16:04:26 -0400369void inotify_ignored_and_remove_idr(struct fsnotify_mark_entry *entry,
370 struct fsnotify_group *group)
Eric Paris63c882a2009-05-21 17:02:01 -0400371{
372 struct inotify_inode_mark_entry *ientry;
373 struct inotify_event_private_data *event_priv;
374 struct fsnotify_event_private_data *fsn_event_priv;
Eric Paris63c882a2009-05-21 17:02:01 -0400375 struct idr *idr;
376
Eric Paris63c882a2009-05-21 17:02:01 -0400377 ientry = container_of(entry, struct inotify_inode_mark_entry, fsn_entry);
378
379 event_priv = kmem_cache_alloc(event_priv_cachep, GFP_KERNEL);
380 if (unlikely(!event_priv))
381 goto skip_send_ignore;
382
383 fsn_event_priv = &event_priv->fsnotify_event_priv_data;
384
385 fsn_event_priv->group = group;
386 event_priv->wd = ientry->wd;
387
388 fsnotify_add_notify_event(group, inotify_ignored_event, fsn_event_priv);
389
390 /* did the private data get added? */
391 if (list_empty(&fsn_event_priv->event_list))
392 inotify_free_event_priv(fsn_event_priv);
393
394skip_send_ignore:
395
396 /* remove this entry from the idr */
397 spin_lock(&group->inotify_data.idr_lock);
398 idr = &group->inotify_data.idr;
399 idr_remove(idr, ientry->wd);
400 spin_unlock(&group->inotify_data.idr_lock);
401
402 /* removed from idr, drop that reference */
403 fsnotify_put_mark(entry);
404}
405
406/* ding dong the mark is dead */
407static void inotify_free_mark(struct fsnotify_mark_entry *entry)
408{
409 struct inotify_inode_mark_entry *ientry = (struct inotify_inode_mark_entry *)entry;
410
411 kmem_cache_free(inotify_inode_mark_cachep, ientry);
412}
413
414static int inotify_update_watch(struct fsnotify_group *group, struct inode *inode, u32 arg)
415{
416 struct fsnotify_mark_entry *entry = NULL;
417 struct inotify_inode_mark_entry *ientry;
418 int ret = 0;
419 int add = (arg & IN_MASK_ADD);
420 __u32 mask;
421 __u32 old_mask, new_mask;
422
423 /* don't allow invalid bits: we don't want flags set */
424 mask = inotify_arg_to_mask(arg);
425 if (unlikely(!mask))
426 return -EINVAL;
427
428 ientry = kmem_cache_alloc(inotify_inode_mark_cachep, GFP_KERNEL);
429 if (unlikely(!ientry))
430 return -ENOMEM;
431 /* we set the mask at the end after attaching it */
432 fsnotify_init_mark(&ientry->fsn_entry, inotify_free_mark);
433 ientry->wd = 0;
434
435find_entry:
436 spin_lock(&inode->i_lock);
437 entry = fsnotify_find_mark_entry(group, inode);
438 spin_unlock(&inode->i_lock);
439 if (entry) {
440 kmem_cache_free(inotify_inode_mark_cachep, ientry);
441 ientry = container_of(entry, struct inotify_inode_mark_entry, fsn_entry);
442 } else {
443 if (atomic_read(&group->inotify_data.user->inotify_watches) >= inotify_max_user_watches) {
444 ret = -ENOSPC;
445 goto out_err;
446 }
447
448 ret = fsnotify_add_mark(&ientry->fsn_entry, group, inode);
449 if (ret == -EEXIST)
450 goto find_entry;
451 else if (ret)
452 goto out_err;
453
454 entry = &ientry->fsn_entry;
455retry:
456 ret = -ENOMEM;
457 if (unlikely(!idr_pre_get(&group->inotify_data.idr, GFP_KERNEL)))
458 goto out_err;
459
460 spin_lock(&group->inotify_data.idr_lock);
461 /* if entry is added to the idr we keep the reference obtained
462 * through fsnotify_mark_add. remember to drop this reference
463 * when entry is removed from idr */
464 ret = idr_get_new_above(&group->inotify_data.idr, entry,
465 ++group->inotify_data.last_wd,
466 &ientry->wd);
467 spin_unlock(&group->inotify_data.idr_lock);
468 if (ret) {
469 if (ret == -EAGAIN)
470 goto retry;
471 goto out_err;
472 }
473 atomic_inc(&group->inotify_data.user->inotify_watches);
474 }
475
476 spin_lock(&entry->lock);
477
478 old_mask = entry->mask;
479 if (add) {
480 entry->mask |= mask;
481 new_mask = entry->mask;
482 } else {
483 entry->mask = mask;
484 new_mask = entry->mask;
485 }
486
487 spin_unlock(&entry->lock);
488
489 if (old_mask != new_mask) {
490 /* more bits in old than in new? */
491 int dropped = (old_mask & ~new_mask);
492 /* more bits in this entry than the inode's mask? */
493 int do_inode = (new_mask & ~inode->i_fsnotify_mask);
494 /* more bits in this entry than the group? */
495 int do_group = (new_mask & ~group->mask);
496
497 /* update the inode with this new entry */
498 if (dropped || do_inode)
499 fsnotify_recalc_inode_mask(inode);
500
501 /* update the group mask with the new mask */
502 if (dropped || do_group)
503 fsnotify_recalc_group_mask(group);
504 }
505
506 return ientry->wd;
507
508out_err:
509 /* see this isn't supposed to happen, just kill the watch */
510 if (entry) {
511 fsnotify_destroy_mark_by_entry(entry);
512 fsnotify_put_mark(entry);
513 }
514 return ret;
515}
516
517static struct fsnotify_group *inotify_new_group(struct user_struct *user, unsigned int max_events)
518{
519 struct fsnotify_group *group;
520 unsigned int grp_num;
521
522 /* fsnotify_obtain_group took a reference to group, we put this when we kill the file in the end */
523 grp_num = (INOTIFY_GROUP_NUM - atomic_inc_return(&inotify_grp_num));
524 group = fsnotify_obtain_group(grp_num, 0, &inotify_fsnotify_ops);
525 if (IS_ERR(group))
526 return group;
527
528 group->max_events = max_events;
529
530 spin_lock_init(&group->inotify_data.idr_lock);
531 idr_init(&group->inotify_data.idr);
532 group->inotify_data.last_wd = 0;
533 group->inotify_data.user = user;
534 group->inotify_data.fa = NULL;
535
536 return group;
537}
538
539
540/* inotify syscalls */
Heiko Carstens938bb9f2009-01-14 14:14:30 +0100541SYSCALL_DEFINE1(inotify_init1, int, flags)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700542{
Eric Paris63c882a2009-05-21 17:02:01 -0400543 struct fsnotify_group *group;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700544 struct user_struct *user;
545 struct file *filp;
546 int fd, ret;
547
Ulrich Dreppere38b36f2008-07-23 21:29:42 -0700548 /* Check the IN_* constants for consistency. */
549 BUILD_BUG_ON(IN_CLOEXEC != O_CLOEXEC);
550 BUILD_BUG_ON(IN_NONBLOCK != O_NONBLOCK);
551
Ulrich Drepper510df2d2008-07-23 21:29:41 -0700552 if (flags & ~(IN_CLOEXEC | IN_NONBLOCK))
Ulrich Drepper40065532008-07-23 21:29:32 -0700553 return -EINVAL;
554
555 fd = get_unused_fd_flags(flags & O_CLOEXEC);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700556 if (fd < 0)
557 return fd;
558
559 filp = get_empty_filp();
560 if (!filp) {
561 ret = -ENFILE;
562 goto out_put_fd;
563 }
564
David Howellsda9592e2008-11-14 10:39:05 +1100565 user = get_current_user();
Amy Griffis2d9048e2006-06-01 13:10:59 -0700566 if (unlikely(atomic_read(&user->inotify_devs) >=
567 inotify_max_user_instances)) {
568 ret = -EMFILE;
569 goto out_free_uid;
570 }
571
Eric Paris63c882a2009-05-21 17:02:01 -0400572 /* fsnotify_obtain_group took a reference to group, we put this when we kill the file in the end */
573 group = inotify_new_group(user, inotify_max_queued_events);
574 if (IS_ERR(group)) {
575 ret = PTR_ERR(group);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700576 goto out_free_uid;
577 }
578
Amy Griffis2d9048e2006-06-01 13:10:59 -0700579 filp->f_op = &inotify_fops;
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800580 filp->f_path.mnt = mntget(inotify_mnt);
581 filp->f_path.dentry = dget(inotify_mnt->mnt_root);
582 filp->f_mapping = filp->f_path.dentry->d_inode->i_mapping;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700583 filp->f_mode = FMODE_READ;
Ulrich Drepper510df2d2008-07-23 21:29:41 -0700584 filp->f_flags = O_RDONLY | (flags & O_NONBLOCK);
Eric Paris63c882a2009-05-21 17:02:01 -0400585 filp->private_data = group;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700586
Amy Griffis2d9048e2006-06-01 13:10:59 -0700587 atomic_inc(&user->inotify_devs);
Eric Paris63c882a2009-05-21 17:02:01 -0400588
Amy Griffis2d9048e2006-06-01 13:10:59 -0700589 fd_install(fd, filp);
590
591 return fd;
Eric Paris63c882a2009-05-21 17:02:01 -0400592
Amy Griffis2d9048e2006-06-01 13:10:59 -0700593out_free_uid:
594 free_uid(user);
595 put_filp(filp);
596out_put_fd:
597 put_unused_fd(fd);
598 return ret;
599}
600
Heiko Carstens938bb9f2009-01-14 14:14:30 +0100601SYSCALL_DEFINE0(inotify_init)
Ulrich Drepper40065532008-07-23 21:29:32 -0700602{
603 return sys_inotify_init1(0);
604}
605
Heiko Carstens2e4d0922009-01-14 14:14:31 +0100606SYSCALL_DEFINE3(inotify_add_watch, int, fd, const char __user *, pathname,
607 u32, mask)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700608{
Eric Paris63c882a2009-05-21 17:02:01 -0400609 struct fsnotify_group *group;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700610 struct inode *inode;
Al Viro2d8f3032008-07-22 09:59:21 -0400611 struct path path;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700612 struct file *filp;
613 int ret, fput_needed;
614 unsigned flags = 0;
615
616 filp = fget_light(fd, &fput_needed);
617 if (unlikely(!filp))
618 return -EBADF;
619
620 /* verify that this is indeed an inotify instance */
621 if (unlikely(filp->f_op != &inotify_fops)) {
622 ret = -EINVAL;
623 goto fput_and_out;
624 }
625
626 if (!(mask & IN_DONT_FOLLOW))
627 flags |= LOOKUP_FOLLOW;
628 if (mask & IN_ONLYDIR)
629 flags |= LOOKUP_DIRECTORY;
630
Eric Paris63c882a2009-05-21 17:02:01 -0400631 ret = inotify_find_inode(pathname, &path, flags);
632 if (ret)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700633 goto fput_and_out;
634
Eric Paris63c882a2009-05-21 17:02:01 -0400635 /* inode held in place by reference to path; group by fget on fd */
Al Viro2d8f3032008-07-22 09:59:21 -0400636 inode = path.dentry->d_inode;
Eric Paris63c882a2009-05-21 17:02:01 -0400637 group = filp->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700638
Eric Paris63c882a2009-05-21 17:02:01 -0400639 /* create/update an inode mark */
640 ret = inotify_update_watch(group, inode, mask);
641 if (unlikely(ret))
642 goto path_put_and_out;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700643
Eric Paris63c882a2009-05-21 17:02:01 -0400644path_put_and_out:
Al Viro2d8f3032008-07-22 09:59:21 -0400645 path_put(&path);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700646fput_and_out:
647 fput_light(filp, fput_needed);
648 return ret;
649}
650
Heiko Carstens2e4d0922009-01-14 14:14:31 +0100651SYSCALL_DEFINE2(inotify_rm_watch, int, fd, __s32, wd)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700652{
Eric Paris63c882a2009-05-21 17:02:01 -0400653 struct fsnotify_group *group;
654 struct fsnotify_mark_entry *entry;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700655 struct file *filp;
Eric Paris63c882a2009-05-21 17:02:01 -0400656 int ret = 0, fput_needed;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700657
658 filp = fget_light(fd, &fput_needed);
659 if (unlikely(!filp))
660 return -EBADF;
661
662 /* verify that this is indeed an inotify instance */
663 if (unlikely(filp->f_op != &inotify_fops)) {
664 ret = -EINVAL;
665 goto out;
666 }
667
Eric Paris63c882a2009-05-21 17:02:01 -0400668 group = filp->private_data;
Amy Griffis2d9048e2006-06-01 13:10:59 -0700669
Eric Paris63c882a2009-05-21 17:02:01 -0400670 spin_lock(&group->inotify_data.idr_lock);
671 entry = idr_find(&group->inotify_data.idr, wd);
672 if (unlikely(!entry)) {
673 spin_unlock(&group->inotify_data.idr_lock);
674 ret = -EINVAL;
675 goto out;
676 }
677 fsnotify_get_mark(entry);
678 spin_unlock(&group->inotify_data.idr_lock);
679
Eric Paris528da3e2009-06-12 16:04:26 -0400680 fsnotify_destroy_mark_by_entry(entry);
Eric Paris63c882a2009-05-21 17:02:01 -0400681 fsnotify_put_mark(entry);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700682
683out:
684 fput_light(filp, fput_needed);
685 return ret;
686}
687
David Howells454e2392006-06-23 02:02:57 -0700688static int
Amy Griffis2d9048e2006-06-01 13:10:59 -0700689inotify_get_sb(struct file_system_type *fs_type, int flags,
David Howells454e2392006-06-23 02:02:57 -0700690 const char *dev_name, void *data, struct vfsmount *mnt)
Amy Griffis2d9048e2006-06-01 13:10:59 -0700691{
Andrey Mirkinfd5eea42007-10-16 23:30:13 -0700692 return get_sb_pseudo(fs_type, "inotify", NULL,
693 INOTIFYFS_SUPER_MAGIC, mnt);
Amy Griffis2d9048e2006-06-01 13:10:59 -0700694}
695
696static struct file_system_type inotify_fs_type = {
Eric Paris63c882a2009-05-21 17:02:01 -0400697 .name = "inotifyfs",
698 .get_sb = inotify_get_sb,
699 .kill_sb = kill_anon_super,
Amy Griffis2d9048e2006-06-01 13:10:59 -0700700};
701
702/*
703 * inotify_user_setup - Our initialization function. Note that we cannnot return
704 * error because we have compiled-in VFS hooks. So an (unlikely) failure here
705 * must result in panic().
706 */
707static int __init inotify_user_setup(void)
708{
709 int ret;
710
711 ret = register_filesystem(&inotify_fs_type);
712 if (unlikely(ret))
713 panic("inotify: register_filesystem returned %d!\n", ret);
714
715 inotify_mnt = kern_mount(&inotify_fs_type);
716 if (IS_ERR(inotify_mnt))
717 panic("inotify: kern_mount ret %ld!\n", PTR_ERR(inotify_mnt));
718
Eric Paris63c882a2009-05-21 17:02:01 -0400719 inotify_inode_mark_cachep = KMEM_CACHE(inotify_inode_mark_entry, SLAB_PANIC);
720 event_priv_cachep = KMEM_CACHE(inotify_event_private_data, SLAB_PANIC);
721 inotify_ignored_event = fsnotify_create_event(NULL, FS_IN_IGNORED, NULL, FSNOTIFY_EVENT_NONE, NULL, 0);
722 if (!inotify_ignored_event)
723 panic("unable to allocate the inotify ignored event\n");
724
Amy Griffis2d9048e2006-06-01 13:10:59 -0700725 inotify_max_queued_events = 16384;
726 inotify_max_user_instances = 128;
727 inotify_max_user_watches = 8192;
728
Amy Griffis2d9048e2006-06-01 13:10:59 -0700729 return 0;
730}
Amy Griffis2d9048e2006-06-01 13:10:59 -0700731module_init(inotify_user_setup);