Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 1 | /* |
| 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 Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 11 | * Copyright (C) 2009 Eric Paris <Red Hat Inc> |
| 12 | * inotify was largely rewriten to make use of the fsnotify infrastructure |
| 13 | * |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 14 | * 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 Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 25 | #include <linux/file.h> |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 26 | #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 Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 30 | #include <linux/inotify.h> |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 31 | #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 Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 38 | #include <linux/syscalls.h> |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 39 | #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 Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 45 | |
| 46 | #include <asm/ioctls.h> |
| 47 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 48 | static struct vfsmount *inotify_mnt __read_mostly; |
| 49 | |
| 50 | /* these are configurable via /proc/sys/fs/inotify/ */ |
Harvey Harrison | 3c828e4 | 2008-02-14 19:31:21 -0800 | [diff] [blame] | 51 | static int inotify_max_user_instances __read_mostly; |
Harvey Harrison | 3c828e4 | 2008-02-14 19:31:21 -0800 | [diff] [blame] | 52 | static int inotify_max_queued_events __read_mostly; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 53 | int inotify_max_user_watches __read_mostly; |
| 54 | |
| 55 | static struct kmem_cache *inotify_inode_mark_cachep __read_mostly; |
| 56 | struct kmem_cache *event_priv_cachep __read_mostly; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 57 | |
| 58 | /* |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 59 | * When inotify registers a new group it increments this and uses that |
| 60 | * value as an offset to set the fsnotify group "name" and priority. |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 61 | */ |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 62 | static atomic_t inotify_grp_num; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 63 | |
| 64 | #ifdef CONFIG_SYSCTL |
| 65 | |
| 66 | #include <linux/sysctl.h> |
| 67 | |
| 68 | static int zero; |
| 69 | |
| 70 | ctl_table inotify_table[] = { |
| 71 | { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 72 | .procname = "max_user_instances", |
| 73 | .data = &inotify_max_user_instances, |
| 74 | .maxlen = sizeof(int), |
| 75 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 76 | .proc_handler = proc_dointvec_minmax, |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 77 | .extra1 = &zero, |
| 78 | }, |
| 79 | { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 80 | .procname = "max_user_watches", |
| 81 | .data = &inotify_max_user_watches, |
| 82 | .maxlen = sizeof(int), |
| 83 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 84 | .proc_handler = proc_dointvec_minmax, |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 85 | .extra1 = &zero, |
| 86 | }, |
| 87 | { |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 88 | .procname = "max_queued_events", |
| 89 | .data = &inotify_max_queued_events, |
| 90 | .maxlen = sizeof(int), |
| 91 | .mode = 0644, |
Eric W. Biederman | 6d45611 | 2009-11-16 03:11:48 -0800 | [diff] [blame] | 92 | .proc_handler = proc_dointvec_minmax, |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 93 | .extra1 = &zero |
| 94 | }, |
Eric W. Biederman | ab09203 | 2009-11-05 14:25:10 -0800 | [diff] [blame] | 95 | { } |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 96 | }; |
| 97 | #endif /* CONFIG_SYSCTL */ |
| 98 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 99 | static inline __u32 inotify_arg_to_mask(u32 arg) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 100 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 101 | __u32 mask; |
| 102 | |
| 103 | /* everything should accept their own ignored and cares about children */ |
| 104 | mask = (FS_IN_IGNORED | FS_EVENT_ON_CHILD); |
| 105 | |
| 106 | /* mask off the flags used to open the fd */ |
| 107 | mask |= (arg & (IN_ALL_EVENTS | IN_ONESHOT)); |
| 108 | |
| 109 | return mask; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 112 | static inline u32 inotify_mask_to_arg(__u32 mask) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 113 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 114 | return mask & (IN_ALL_EVENTS | IN_ISDIR | IN_UNMOUNT | IN_IGNORED | |
| 115 | IN_Q_OVERFLOW); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 116 | } |
| 117 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 118 | /* intofiy userspace file descriptor functions */ |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 119 | static unsigned int inotify_poll(struct file *file, poll_table *wait) |
| 120 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 121 | struct fsnotify_group *group = file->private_data; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 122 | int ret = 0; |
| 123 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 124 | poll_wait(file, &group->notification_waitq, wait); |
| 125 | mutex_lock(&group->notification_mutex); |
| 126 | if (!fsnotify_notify_queue_is_empty(group)) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 127 | ret = POLLIN | POLLRDNORM; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 128 | mutex_unlock(&group->notification_mutex); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 129 | |
| 130 | return ret; |
| 131 | } |
| 132 | |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 133 | /* |
| 134 | * Get an inotify_kernel_event if one exists and is small |
| 135 | * enough to fit in "count". Return an error pointer if |
| 136 | * not large enough. |
| 137 | * |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 138 | * Called with the group->notification_mutex held. |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 139 | */ |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 140 | static struct fsnotify_event *get_one_event(struct fsnotify_group *group, |
| 141 | size_t count) |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 142 | { |
| 143 | size_t event_size = sizeof(struct inotify_event); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 144 | struct fsnotify_event *event; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 145 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 146 | if (fsnotify_notify_queue_is_empty(group)) |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 147 | return NULL; |
| 148 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 149 | event = fsnotify_peek_notify_event(group); |
| 150 | |
Eric Paris | 83cb10f | 2009-08-28 11:57:55 -0400 | [diff] [blame] | 151 | if (event->name_len) |
| 152 | event_size += roundup(event->name_len + 1, event_size); |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 153 | |
| 154 | if (event_size > count) |
| 155 | return ERR_PTR(-EINVAL); |
| 156 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 157 | /* held the notification_mutex the whole time, so this is the |
| 158 | * same event we peeked above */ |
| 159 | fsnotify_remove_notify_event(group); |
| 160 | |
| 161 | return event; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | /* |
| 165 | * Copy an event to user space, returning how much we copied. |
| 166 | * |
| 167 | * We already checked that the event size is smaller than the |
| 168 | * buffer we had in "get_one_event()" above. |
| 169 | */ |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 170 | static ssize_t copy_event_to_user(struct fsnotify_group *group, |
| 171 | struct fsnotify_event *event, |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 172 | char __user *buf) |
| 173 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 174 | struct inotify_event inotify_event; |
| 175 | struct fsnotify_event_private_data *fsn_priv; |
| 176 | struct inotify_event_private_data *priv; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 177 | size_t event_size = sizeof(struct inotify_event); |
Brian Rogers | b962e73 | 2009-08-28 10:00:05 -0400 | [diff] [blame] | 178 | size_t name_len = 0; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 179 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 180 | /* we get the inotify watch descriptor from the event private data */ |
| 181 | spin_lock(&event->lock); |
| 182 | fsn_priv = fsnotify_remove_priv_from_event(group, event); |
| 183 | spin_unlock(&event->lock); |
| 184 | |
| 185 | if (!fsn_priv) |
| 186 | inotify_event.wd = -1; |
| 187 | else { |
| 188 | priv = container_of(fsn_priv, struct inotify_event_private_data, |
| 189 | fsnotify_event_priv_data); |
| 190 | inotify_event.wd = priv->wd; |
| 191 | inotify_free_event_priv(fsn_priv); |
| 192 | } |
| 193 | |
Brian Rogers | b962e73 | 2009-08-28 10:00:05 -0400 | [diff] [blame] | 194 | /* |
| 195 | * round up event->name_len so it is a multiple of event_size |
Eric W. Biederman | 0db501b | 2009-08-27 03:20:04 -0700 | [diff] [blame] | 196 | * plus an extra byte for the terminating '\0'. |
| 197 | */ |
Brian Rogers | b962e73 | 2009-08-28 10:00:05 -0400 | [diff] [blame] | 198 | if (event->name_len) |
| 199 | name_len = roundup(event->name_len + 1, event_size); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 200 | inotify_event.len = name_len; |
| 201 | |
| 202 | inotify_event.mask = inotify_mask_to_arg(event->mask); |
| 203 | inotify_event.cookie = event->sync_cookie; |
| 204 | |
| 205 | /* send the main event */ |
| 206 | if (copy_to_user(buf, &inotify_event, event_size)) |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 207 | return -EFAULT; |
| 208 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 209 | buf += event_size; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 210 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 211 | /* |
| 212 | * fsnotify only stores the pathname, so here we have to send the pathname |
| 213 | * and then pad that pathname out to a multiple of sizeof(inotify_event) |
| 214 | * with zeros. I get my zeros from the nul_inotify_event. |
| 215 | */ |
| 216 | if (name_len) { |
| 217 | unsigned int len_to_zero = name_len - event->name_len; |
| 218 | /* copy the path name */ |
| 219 | if (copy_to_user(buf, event->file_name, event->name_len)) |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 220 | return -EFAULT; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 221 | buf += event->name_len; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 222 | |
Eric W. Biederman | 0db501b | 2009-08-27 03:20:04 -0700 | [diff] [blame] | 223 | /* fill userspace with 0's */ |
| 224 | if (clear_user(buf, len_to_zero)) |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 225 | return -EFAULT; |
| 226 | buf += len_to_zero; |
| 227 | event_size += name_len; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 228 | } |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 229 | |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 230 | return event_size; |
| 231 | } |
| 232 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 233 | static ssize_t inotify_read(struct file *file, char __user *buf, |
| 234 | size_t count, loff_t *pos) |
| 235 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 236 | struct fsnotify_group *group; |
| 237 | struct fsnotify_event *kevent; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 238 | char __user *start; |
| 239 | int ret; |
| 240 | DEFINE_WAIT(wait); |
| 241 | |
| 242 | start = buf; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 243 | group = file->private_data; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 244 | |
| 245 | while (1) { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 246 | prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 247 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 248 | mutex_lock(&group->notification_mutex); |
| 249 | kevent = get_one_event(group, count); |
| 250 | mutex_unlock(&group->notification_mutex); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 251 | |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 252 | if (kevent) { |
| 253 | ret = PTR_ERR(kevent); |
| 254 | if (IS_ERR(kevent)) |
| 255 | break; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 256 | ret = copy_event_to_user(group, kevent, buf); |
| 257 | fsnotify_put_event(kevent); |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 258 | if (ret < 0) |
| 259 | break; |
| 260 | buf += ret; |
| 261 | count -= ret; |
| 262 | continue; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 263 | } |
| 264 | |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 265 | ret = -EAGAIN; |
| 266 | if (file->f_flags & O_NONBLOCK) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 267 | break; |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 268 | ret = -EINTR; |
| 269 | if (signal_pending(current)) |
| 270 | break; |
| 271 | |
| 272 | if (start != buf) |
| 273 | break; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 274 | |
| 275 | schedule(); |
| 276 | } |
| 277 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 278 | finish_wait(&group->notification_waitq, &wait); |
Vegard Nossum | 3632dee | 2009-01-22 15:29:45 +0100 | [diff] [blame] | 279 | if (start != buf && ret != -EFAULT) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 280 | ret = buf - start; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 281 | return ret; |
| 282 | } |
| 283 | |
Dmitry Antipov | bcfbf84 | 2008-02-06 01:36:19 -0800 | [diff] [blame] | 284 | static int inotify_fasync(int fd, struct file *file, int on) |
| 285 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 286 | struct fsnotify_group *group = file->private_data; |
Dmitry Antipov | bcfbf84 | 2008-02-06 01:36:19 -0800 | [diff] [blame] | 287 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 288 | return fasync_helper(fd, file, on, &group->inotify_data.fa) >= 0 ? 0 : -EIO; |
Dmitry Antipov | bcfbf84 | 2008-02-06 01:36:19 -0800 | [diff] [blame] | 289 | } |
| 290 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 291 | static int inotify_release(struct inode *ignored, struct file *file) |
| 292 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 293 | struct fsnotify_group *group = file->private_data; |
Keith Packard | bdae997 | 2009-07-01 21:56:38 -0700 | [diff] [blame] | 294 | struct user_struct *user = group->inotify_data.user; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 295 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 296 | fsnotify_clear_marks_by_group(group); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 297 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 298 | /* free this group, matching get was inotify_init->fsnotify_obtain_group */ |
| 299 | fsnotify_put_group(group); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 300 | |
Keith Packard | bdae997 | 2009-07-01 21:56:38 -0700 | [diff] [blame] | 301 | atomic_dec(&user->inotify_devs); |
| 302 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | static long inotify_ioctl(struct file *file, unsigned int cmd, |
| 307 | unsigned long arg) |
| 308 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 309 | struct fsnotify_group *group; |
| 310 | struct fsnotify_event_holder *holder; |
| 311 | struct fsnotify_event *event; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 312 | void __user *p; |
| 313 | int ret = -ENOTTY; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 314 | size_t send_len = 0; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 315 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 316 | group = file->private_data; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 317 | p = (void __user *) arg; |
| 318 | |
| 319 | switch (cmd) { |
| 320 | case FIONREAD: |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 321 | mutex_lock(&group->notification_mutex); |
| 322 | list_for_each_entry(holder, &group->notification_list, event_list) { |
| 323 | event = holder->event; |
| 324 | send_len += sizeof(struct inotify_event); |
Eric Paris | 83cb10f | 2009-08-28 11:57:55 -0400 | [diff] [blame] | 325 | if (event->name_len) |
| 326 | send_len += roundup(event->name_len + 1, |
| 327 | sizeof(struct inotify_event)); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 328 | } |
| 329 | mutex_unlock(&group->notification_mutex); |
| 330 | ret = put_user(send_len, (int __user *) p); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 331 | break; |
| 332 | } |
| 333 | |
| 334 | return ret; |
| 335 | } |
| 336 | |
| 337 | static const struct file_operations inotify_fops = { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 338 | .poll = inotify_poll, |
| 339 | .read = inotify_read, |
| 340 | .fasync = inotify_fasync, |
| 341 | .release = inotify_release, |
| 342 | .unlocked_ioctl = inotify_ioctl, |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 343 | .compat_ioctl = inotify_ioctl, |
| 344 | }; |
| 345 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 346 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 347 | /* |
| 348 | * find_inode - resolve a user-given path to a specific inode |
| 349 | */ |
| 350 | static int inotify_find_inode(const char __user *dirname, struct path *path, unsigned flags) |
| 351 | { |
| 352 | int error; |
| 353 | |
| 354 | error = user_path_at(AT_FDCWD, dirname, flags, path); |
| 355 | if (error) |
| 356 | return error; |
| 357 | /* you can only watch an inode if you have read permissions on it */ |
| 358 | error = inode_permission(path->dentry->d_inode, MAY_READ); |
| 359 | if (error) |
| 360 | path_put(path); |
| 361 | return error; |
| 362 | } |
| 363 | |
Eric Paris | dead537 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 364 | /* |
| 365 | * Remove the mark from the idr (if present) and drop the reference |
| 366 | * on the mark because it was in the idr. |
| 367 | */ |
Eric Paris | 7e790dd | 2009-07-07 10:28:24 -0400 | [diff] [blame] | 368 | static void inotify_remove_from_idr(struct fsnotify_group *group, |
| 369 | struct inotify_inode_mark_entry *ientry) |
| 370 | { |
| 371 | struct idr *idr; |
Eric Paris | dead537 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 372 | struct fsnotify_mark_entry *entry; |
| 373 | struct inotify_inode_mark_entry *found_ientry; |
| 374 | int wd; |
Eric Paris | 7e790dd | 2009-07-07 10:28:24 -0400 | [diff] [blame] | 375 | |
| 376 | spin_lock(&group->inotify_data.idr_lock); |
| 377 | idr = &group->inotify_data.idr; |
Eric Paris | dead537 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 378 | wd = ientry->wd; |
| 379 | |
| 380 | if (wd == -1) |
| 381 | goto out; |
| 382 | |
| 383 | entry = idr_find(&group->inotify_data.idr, wd); |
| 384 | if (unlikely(!entry)) |
| 385 | goto out; |
| 386 | |
| 387 | found_ientry = container_of(entry, struct inotify_inode_mark_entry, fsn_entry); |
| 388 | if (unlikely(found_ientry != ientry)) { |
| 389 | /* We found an entry in the idr with the right wd, but it's |
| 390 | * not the entry we were told to remove. eparis seriously |
| 391 | * fucked up somewhere. */ |
| 392 | WARN_ON(1); |
| 393 | ientry->wd = -1; |
| 394 | goto out; |
| 395 | } |
| 396 | |
| 397 | /* One ref for being in the idr, one ref held by the caller */ |
| 398 | BUG_ON(atomic_read(&entry->refcnt) < 2); |
| 399 | |
| 400 | idr_remove(idr, wd); |
Eric Paris | 7e790dd | 2009-07-07 10:28:24 -0400 | [diff] [blame] | 401 | ientry->wd = -1; |
Eric Paris | dead537 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 402 | |
| 403 | /* removed from the idr, drop that ref */ |
| 404 | fsnotify_put_mark(entry); |
| 405 | out: |
| 406 | spin_unlock(&group->inotify_data.idr_lock); |
Eric Paris | 7e790dd | 2009-07-07 10:28:24 -0400 | [diff] [blame] | 407 | } |
Eric Paris | dead537 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 408 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 409 | /* |
Eric Paris | dead537 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 410 | * Send IN_IGNORED for this wd, remove this wd from the idr. |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 411 | */ |
Eric Paris | 528da3e | 2009-06-12 16:04:26 -0400 | [diff] [blame] | 412 | void inotify_ignored_and_remove_idr(struct fsnotify_mark_entry *entry, |
| 413 | struct fsnotify_group *group) |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 414 | { |
| 415 | struct inotify_inode_mark_entry *ientry; |
Eric Paris | f44aebc | 2009-07-15 15:49:52 -0400 | [diff] [blame] | 416 | struct fsnotify_event *ignored_event; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 417 | struct inotify_event_private_data *event_priv; |
| 418 | struct fsnotify_event_private_data *fsn_event_priv; |
Eric Paris | eef3a11 | 2009-08-16 21:51:44 -0400 | [diff] [blame] | 419 | int ret; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 420 | |
Eric Paris | f44aebc | 2009-07-15 15:49:52 -0400 | [diff] [blame] | 421 | ignored_event = fsnotify_create_event(NULL, FS_IN_IGNORED, NULL, |
| 422 | FSNOTIFY_EVENT_NONE, NULL, 0, |
| 423 | GFP_NOFS); |
| 424 | if (!ignored_event) |
| 425 | return; |
| 426 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 427 | ientry = container_of(entry, struct inotify_inode_mark_entry, fsn_entry); |
| 428 | |
Eric Paris | f44aebc | 2009-07-15 15:49:52 -0400 | [diff] [blame] | 429 | event_priv = kmem_cache_alloc(event_priv_cachep, GFP_NOFS); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 430 | if (unlikely(!event_priv)) |
| 431 | goto skip_send_ignore; |
| 432 | |
| 433 | fsn_event_priv = &event_priv->fsnotify_event_priv_data; |
| 434 | |
| 435 | fsn_event_priv->group = group; |
| 436 | event_priv->wd = ientry->wd; |
| 437 | |
Eric Paris | eef3a11 | 2009-08-16 21:51:44 -0400 | [diff] [blame] | 438 | ret = fsnotify_add_notify_event(group, ignored_event, fsn_event_priv); |
| 439 | if (ret) |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 440 | inotify_free_event_priv(fsn_event_priv); |
| 441 | |
| 442 | skip_send_ignore: |
| 443 | |
Eric Paris | f44aebc | 2009-07-15 15:49:52 -0400 | [diff] [blame] | 444 | /* matches the reference taken when the event was created */ |
| 445 | fsnotify_put_event(ignored_event); |
| 446 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 447 | /* remove this entry from the idr */ |
Eric Paris | 7e790dd | 2009-07-07 10:28:24 -0400 | [diff] [blame] | 448 | inotify_remove_from_idr(group, ientry); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 449 | |
Eric Paris | 5549f7c | 2009-07-07 10:28:23 -0400 | [diff] [blame] | 450 | atomic_dec(&group->inotify_data.user->inotify_watches); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | /* ding dong the mark is dead */ |
| 454 | static void inotify_free_mark(struct fsnotify_mark_entry *entry) |
| 455 | { |
| 456 | struct inotify_inode_mark_entry *ientry = (struct inotify_inode_mark_entry *)entry; |
| 457 | |
| 458 | kmem_cache_free(inotify_inode_mark_cachep, ientry); |
| 459 | } |
| 460 | |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 461 | static int inotify_update_existing_watch(struct fsnotify_group *group, |
| 462 | struct inode *inode, |
| 463 | u32 arg) |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 464 | { |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 465 | struct fsnotify_mark_entry *entry; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 466 | struct inotify_inode_mark_entry *ientry; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 467 | __u32 old_mask, new_mask; |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 468 | __u32 mask; |
| 469 | int add = (arg & IN_MASK_ADD); |
| 470 | int ret; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 471 | |
| 472 | /* don't allow invalid bits: we don't want flags set */ |
| 473 | mask = inotify_arg_to_mask(arg); |
| 474 | if (unlikely(!mask)) |
| 475 | return -EINVAL; |
| 476 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 477 | spin_lock(&inode->i_lock); |
| 478 | entry = fsnotify_find_mark_entry(group, inode); |
| 479 | spin_unlock(&inode->i_lock); |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 480 | if (!entry) |
| 481 | return -ENOENT; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 482 | |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 483 | ientry = container_of(entry, struct inotify_inode_mark_entry, fsn_entry); |
Eric Paris | 75fe2b2 | 2009-07-07 10:28:23 -0400 | [diff] [blame] | 484 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 485 | spin_lock(&entry->lock); |
| 486 | |
| 487 | old_mask = entry->mask; |
| 488 | if (add) { |
| 489 | entry->mask |= mask; |
| 490 | new_mask = entry->mask; |
| 491 | } else { |
| 492 | entry->mask = mask; |
| 493 | new_mask = entry->mask; |
| 494 | } |
| 495 | |
| 496 | spin_unlock(&entry->lock); |
| 497 | |
| 498 | if (old_mask != new_mask) { |
| 499 | /* more bits in old than in new? */ |
| 500 | int dropped = (old_mask & ~new_mask); |
| 501 | /* more bits in this entry than the inode's mask? */ |
| 502 | int do_inode = (new_mask & ~inode->i_fsnotify_mask); |
| 503 | /* more bits in this entry than the group? */ |
| 504 | int do_group = (new_mask & ~group->mask); |
| 505 | |
| 506 | /* update the inode with this new entry */ |
| 507 | if (dropped || do_inode) |
| 508 | fsnotify_recalc_inode_mask(inode); |
| 509 | |
| 510 | /* update the group mask with the new mask */ |
| 511 | if (dropped || do_group) |
| 512 | fsnotify_recalc_group_mask(group); |
| 513 | } |
| 514 | |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 515 | /* return the wd */ |
| 516 | ret = ientry->wd; |
| 517 | |
| 518 | /* match the get from fsnotify_find_mark_entry() */ |
Eric Paris | 75fe2b2 | 2009-07-07 10:28:23 -0400 | [diff] [blame] | 519 | fsnotify_put_mark(entry); |
| 520 | |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 521 | return ret; |
| 522 | } |
| 523 | |
| 524 | static int inotify_new_watch(struct fsnotify_group *group, |
| 525 | struct inode *inode, |
| 526 | u32 arg) |
| 527 | { |
| 528 | struct inotify_inode_mark_entry *tmp_ientry; |
| 529 | __u32 mask; |
| 530 | int ret; |
| 531 | |
| 532 | /* don't allow invalid bits: we don't want flags set */ |
| 533 | mask = inotify_arg_to_mask(arg); |
| 534 | if (unlikely(!mask)) |
| 535 | return -EINVAL; |
| 536 | |
| 537 | tmp_ientry = kmem_cache_alloc(inotify_inode_mark_cachep, GFP_KERNEL); |
| 538 | if (unlikely(!tmp_ientry)) |
| 539 | return -ENOMEM; |
| 540 | |
| 541 | fsnotify_init_mark(&tmp_ientry->fsn_entry, inotify_free_mark); |
| 542 | tmp_ientry->fsn_entry.mask = mask; |
| 543 | tmp_ientry->wd = -1; |
| 544 | |
| 545 | ret = -ENOSPC; |
| 546 | if (atomic_read(&group->inotify_data.user->inotify_watches) >= inotify_max_user_watches) |
| 547 | goto out_err; |
| 548 | retry: |
| 549 | ret = -ENOMEM; |
| 550 | if (unlikely(!idr_pre_get(&group->inotify_data.idr, GFP_KERNEL))) |
| 551 | goto out_err; |
| 552 | |
| 553 | spin_lock(&group->inotify_data.idr_lock); |
| 554 | ret = idr_get_new_above(&group->inotify_data.idr, &tmp_ientry->fsn_entry, |
Eric Paris | 9e572cc | 2010-01-15 12:12:24 -0500 | [diff] [blame^] | 555 | group->inotify_data.last_wd+1, |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 556 | &tmp_ientry->wd); |
| 557 | spin_unlock(&group->inotify_data.idr_lock); |
| 558 | if (ret) { |
| 559 | /* idr was out of memory allocate and try again */ |
| 560 | if (ret == -EAGAIN) |
| 561 | goto retry; |
| 562 | goto out_err; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 563 | } |
Eric Paris | 7e790dd | 2009-07-07 10:28:24 -0400 | [diff] [blame] | 564 | |
Eric Paris | dead537 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 565 | /* we put the mark on the idr, take a reference */ |
| 566 | fsnotify_get_mark(&tmp_ientry->fsn_entry); |
| 567 | |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 568 | /* we are on the idr, now get on the inode */ |
| 569 | ret = fsnotify_add_mark(&tmp_ientry->fsn_entry, group, inode); |
| 570 | if (ret) { |
| 571 | /* we failed to get on the inode, get off the idr */ |
| 572 | inotify_remove_from_idr(group, tmp_ientry); |
| 573 | goto out_err; |
| 574 | } |
| 575 | |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 576 | /* update the idr hint, who cares about races, it's just a hint */ |
| 577 | group->inotify_data.last_wd = tmp_ientry->wd; |
| 578 | |
| 579 | /* increment the number of watches the user has */ |
| 580 | atomic_inc(&group->inotify_data.user->inotify_watches); |
| 581 | |
| 582 | /* return the watch descriptor for this new entry */ |
| 583 | ret = tmp_ientry->wd; |
| 584 | |
| 585 | /* match the ref from fsnotify_init_markentry() */ |
| 586 | fsnotify_put_mark(&tmp_ientry->fsn_entry); |
| 587 | |
Eric Paris | 750a887 | 2009-08-28 12:50:47 -0400 | [diff] [blame] | 588 | /* if this mark added a new event update the group mask */ |
| 589 | if (mask & ~group->mask) |
| 590 | fsnotify_recalc_group_mask(group); |
| 591 | |
Eric Paris | 52cef75 | 2009-08-24 16:03:35 -0400 | [diff] [blame] | 592 | out_err: |
| 593 | if (ret < 0) |
| 594 | kmem_cache_free(inotify_inode_mark_cachep, tmp_ientry); |
| 595 | |
| 596 | return ret; |
| 597 | } |
| 598 | |
| 599 | static int inotify_update_watch(struct fsnotify_group *group, struct inode *inode, u32 arg) |
| 600 | { |
| 601 | int ret = 0; |
| 602 | |
| 603 | retry: |
| 604 | /* try to update and existing watch with the new arg */ |
| 605 | ret = inotify_update_existing_watch(group, inode, arg); |
| 606 | /* no mark present, try to add a new one */ |
| 607 | if (ret == -ENOENT) |
| 608 | ret = inotify_new_watch(group, inode, arg); |
| 609 | /* |
| 610 | * inotify_new_watch could race with another thread which did an |
| 611 | * inotify_new_watch between the update_existing and the add watch |
| 612 | * here, go back and try to update an existing mark again. |
| 613 | */ |
| 614 | if (ret == -EEXIST) |
| 615 | goto retry; |
| 616 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 617 | return ret; |
| 618 | } |
| 619 | |
| 620 | static struct fsnotify_group *inotify_new_group(struct user_struct *user, unsigned int max_events) |
| 621 | { |
| 622 | struct fsnotify_group *group; |
| 623 | unsigned int grp_num; |
| 624 | |
| 625 | /* fsnotify_obtain_group took a reference to group, we put this when we kill the file in the end */ |
| 626 | grp_num = (INOTIFY_GROUP_NUM - atomic_inc_return(&inotify_grp_num)); |
| 627 | group = fsnotify_obtain_group(grp_num, 0, &inotify_fsnotify_ops); |
| 628 | if (IS_ERR(group)) |
| 629 | return group; |
| 630 | |
| 631 | group->max_events = max_events; |
| 632 | |
| 633 | spin_lock_init(&group->inotify_data.idr_lock); |
| 634 | idr_init(&group->inotify_data.idr); |
Eric Paris | 9e572cc | 2010-01-15 12:12:24 -0500 | [diff] [blame^] | 635 | group->inotify_data.last_wd = 0; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 636 | group->inotify_data.user = user; |
| 637 | group->inotify_data.fa = NULL; |
| 638 | |
| 639 | return group; |
| 640 | } |
| 641 | |
| 642 | |
| 643 | /* inotify syscalls */ |
Heiko Carstens | 938bb9f | 2009-01-14 14:14:30 +0100 | [diff] [blame] | 644 | SYSCALL_DEFINE1(inotify_init1, int, flags) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 645 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 646 | struct fsnotify_group *group; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 647 | struct user_struct *user; |
| 648 | struct file *filp; |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 649 | struct path path; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 650 | int fd, ret; |
| 651 | |
Ulrich Drepper | e38b36f | 2008-07-23 21:29:42 -0700 | [diff] [blame] | 652 | /* Check the IN_* constants for consistency. */ |
| 653 | BUILD_BUG_ON(IN_CLOEXEC != O_CLOEXEC); |
| 654 | BUILD_BUG_ON(IN_NONBLOCK != O_NONBLOCK); |
| 655 | |
Ulrich Drepper | 510df2d | 2008-07-23 21:29:41 -0700 | [diff] [blame] | 656 | if (flags & ~(IN_CLOEXEC | IN_NONBLOCK)) |
Ulrich Drepper | 4006553 | 2008-07-23 21:29:32 -0700 | [diff] [blame] | 657 | return -EINVAL; |
| 658 | |
| 659 | fd = get_unused_fd_flags(flags & O_CLOEXEC); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 660 | if (fd < 0) |
| 661 | return fd; |
| 662 | |
David Howells | da9592e | 2008-11-14 10:39:05 +1100 | [diff] [blame] | 663 | user = get_current_user(); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 664 | if (unlikely(atomic_read(&user->inotify_devs) >= |
| 665 | inotify_max_user_instances)) { |
| 666 | ret = -EMFILE; |
| 667 | goto out_free_uid; |
| 668 | } |
| 669 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 670 | /* fsnotify_obtain_group took a reference to group, we put this when we kill the file in the end */ |
| 671 | group = inotify_new_group(user, inotify_max_queued_events); |
| 672 | if (IS_ERR(group)) { |
| 673 | ret = PTR_ERR(group); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 674 | goto out_free_uid; |
| 675 | } |
| 676 | |
Al Viro | 825f969 | 2009-08-05 18:35:21 +0400 | [diff] [blame] | 677 | atomic_inc(&user->inotify_devs); |
| 678 | |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 679 | path.mnt = inotify_mnt; |
| 680 | path.dentry = inotify_mnt->mnt_root; |
| 681 | path_get(&path); |
| 682 | filp = alloc_file(&path, FMODE_READ, &inotify_fops); |
Al Viro | 825f969 | 2009-08-05 18:35:21 +0400 | [diff] [blame] | 683 | if (!filp) |
| 684 | goto Enfile; |
| 685 | |
Ulrich Drepper | 510df2d | 2008-07-23 21:29:41 -0700 | [diff] [blame] | 686 | filp->f_flags = O_RDONLY | (flags & O_NONBLOCK); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 687 | filp->private_data = group; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 688 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 689 | fd_install(fd, filp); |
| 690 | |
| 691 | return fd; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 692 | |
Al Viro | 825f969 | 2009-08-05 18:35:21 +0400 | [diff] [blame] | 693 | Enfile: |
| 694 | ret = -ENFILE; |
Al Viro | 2c48b9c | 2009-08-09 00:52:35 +0400 | [diff] [blame] | 695 | path_put(&path); |
Al Viro | 825f969 | 2009-08-05 18:35:21 +0400 | [diff] [blame] | 696 | atomic_dec(&user->inotify_devs); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 697 | out_free_uid: |
| 698 | free_uid(user); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 699 | put_unused_fd(fd); |
| 700 | return ret; |
| 701 | } |
| 702 | |
Heiko Carstens | 938bb9f | 2009-01-14 14:14:30 +0100 | [diff] [blame] | 703 | SYSCALL_DEFINE0(inotify_init) |
Ulrich Drepper | 4006553 | 2008-07-23 21:29:32 -0700 | [diff] [blame] | 704 | { |
| 705 | return sys_inotify_init1(0); |
| 706 | } |
| 707 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 708 | SYSCALL_DEFINE3(inotify_add_watch, int, fd, const char __user *, pathname, |
| 709 | u32, mask) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 710 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 711 | struct fsnotify_group *group; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 712 | struct inode *inode; |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 713 | struct path path; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 714 | struct file *filp; |
| 715 | int ret, fput_needed; |
| 716 | unsigned flags = 0; |
| 717 | |
| 718 | filp = fget_light(fd, &fput_needed); |
| 719 | if (unlikely(!filp)) |
| 720 | return -EBADF; |
| 721 | |
| 722 | /* verify that this is indeed an inotify instance */ |
| 723 | if (unlikely(filp->f_op != &inotify_fops)) { |
| 724 | ret = -EINVAL; |
| 725 | goto fput_and_out; |
| 726 | } |
| 727 | |
| 728 | if (!(mask & IN_DONT_FOLLOW)) |
| 729 | flags |= LOOKUP_FOLLOW; |
| 730 | if (mask & IN_ONLYDIR) |
| 731 | flags |= LOOKUP_DIRECTORY; |
| 732 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 733 | ret = inotify_find_inode(pathname, &path, flags); |
| 734 | if (ret) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 735 | goto fput_and_out; |
| 736 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 737 | /* inode held in place by reference to path; group by fget on fd */ |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 738 | inode = path.dentry->d_inode; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 739 | group = filp->private_data; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 740 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 741 | /* create/update an inode mark */ |
| 742 | ret = inotify_update_watch(group, inode, mask); |
Al Viro | 2d8f303 | 2008-07-22 09:59:21 -0400 | [diff] [blame] | 743 | path_put(&path); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 744 | fput_and_out: |
| 745 | fput_light(filp, fput_needed); |
| 746 | return ret; |
| 747 | } |
| 748 | |
Heiko Carstens | 2e4d092 | 2009-01-14 14:14:31 +0100 | [diff] [blame] | 749 | SYSCALL_DEFINE2(inotify_rm_watch, int, fd, __s32, wd) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 750 | { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 751 | struct fsnotify_group *group; |
| 752 | struct fsnotify_mark_entry *entry; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 753 | struct file *filp; |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 754 | int ret = 0, fput_needed; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 755 | |
| 756 | filp = fget_light(fd, &fput_needed); |
| 757 | if (unlikely(!filp)) |
| 758 | return -EBADF; |
| 759 | |
| 760 | /* verify that this is indeed an inotify instance */ |
| 761 | if (unlikely(filp->f_op != &inotify_fops)) { |
| 762 | ret = -EINVAL; |
| 763 | goto out; |
| 764 | } |
| 765 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 766 | group = filp->private_data; |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 767 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 768 | spin_lock(&group->inotify_data.idr_lock); |
| 769 | entry = idr_find(&group->inotify_data.idr, wd); |
| 770 | if (unlikely(!entry)) { |
| 771 | spin_unlock(&group->inotify_data.idr_lock); |
| 772 | ret = -EINVAL; |
| 773 | goto out; |
| 774 | } |
| 775 | fsnotify_get_mark(entry); |
| 776 | spin_unlock(&group->inotify_data.idr_lock); |
| 777 | |
Eric Paris | 528da3e | 2009-06-12 16:04:26 -0400 | [diff] [blame] | 778 | fsnotify_destroy_mark_by_entry(entry); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 779 | fsnotify_put_mark(entry); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 780 | |
| 781 | out: |
| 782 | fput_light(filp, fput_needed); |
| 783 | return ret; |
| 784 | } |
| 785 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 786 | static int |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 787 | inotify_get_sb(struct file_system_type *fs_type, int flags, |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 788 | const char *dev_name, void *data, struct vfsmount *mnt) |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 789 | { |
Andrey Mirkin | fd5eea4 | 2007-10-16 23:30:13 -0700 | [diff] [blame] | 790 | return get_sb_pseudo(fs_type, "inotify", NULL, |
| 791 | INOTIFYFS_SUPER_MAGIC, mnt); |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | static struct file_system_type inotify_fs_type = { |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 795 | .name = "inotifyfs", |
| 796 | .get_sb = inotify_get_sb, |
| 797 | .kill_sb = kill_anon_super, |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 798 | }; |
| 799 | |
| 800 | /* |
| 801 | * inotify_user_setup - Our initialization function. Note that we cannnot return |
| 802 | * error because we have compiled-in VFS hooks. So an (unlikely) failure here |
| 803 | * must result in panic(). |
| 804 | */ |
| 805 | static int __init inotify_user_setup(void) |
| 806 | { |
| 807 | int ret; |
| 808 | |
| 809 | ret = register_filesystem(&inotify_fs_type); |
| 810 | if (unlikely(ret)) |
| 811 | panic("inotify: register_filesystem returned %d!\n", ret); |
| 812 | |
| 813 | inotify_mnt = kern_mount(&inotify_fs_type); |
| 814 | if (IS_ERR(inotify_mnt)) |
| 815 | panic("inotify: kern_mount ret %ld!\n", PTR_ERR(inotify_mnt)); |
| 816 | |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 817 | inotify_inode_mark_cachep = KMEM_CACHE(inotify_inode_mark_entry, SLAB_PANIC); |
| 818 | event_priv_cachep = KMEM_CACHE(inotify_event_private_data, SLAB_PANIC); |
Eric Paris | 63c882a | 2009-05-21 17:02:01 -0400 | [diff] [blame] | 819 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 820 | inotify_max_queued_events = 16384; |
| 821 | inotify_max_user_instances = 128; |
| 822 | inotify_max_user_watches = 8192; |
| 823 | |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 824 | return 0; |
| 825 | } |
Amy Griffis | 2d9048e | 2006-06-01 13:10:59 -0700 | [diff] [blame] | 826 | module_init(inotify_user_setup); |