Andreas Gruenbacher | 33d3dff | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 1 | #include <linux/fanotify.h> |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 2 | #include <linux/fcntl.h> |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 3 | #include <linux/file.h> |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 4 | #include <linux/fs.h> |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 5 | #include <linux/anon_inodes.h> |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 6 | #include <linux/fsnotify_backend.h> |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 7 | #include <linux/init.h> |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 8 | #include <linux/mount.h> |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 9 | #include <linux/namei.h> |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 10 | #include <linux/poll.h> |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 11 | #include <linux/security.h> |
| 12 | #include <linux/syscalls.h> |
Tejun Heo | e4e047a | 2010-05-20 01:36:28 +1000 | [diff] [blame] | 13 | #include <linux/slab.h> |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 14 | #include <linux/types.h> |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 15 | #include <linux/uaccess.h> |
| 16 | |
| 17 | #include <asm/ioctls.h> |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 18 | |
Eric Paris | 2529a0d | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 19 | #define FANOTIFY_DEFAULT_MAX_EVENTS 16384 |
Eric Paris | e7099d8 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 20 | #define FANOTIFY_DEFAULT_MAX_MARKS 8192 |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame^] | 21 | #define FANOTIFY_DEFAULT_MAX_LISTENERS 128 |
Eric Paris | 2529a0d | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 22 | |
Andreas Gruenbacher | 33d3dff | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 23 | extern const struct fsnotify_ops fanotify_fsnotify_ops; |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 24 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 25 | static struct kmem_cache *fanotify_mark_cache __read_mostly; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 26 | static struct kmem_cache *fanotify_response_event_cache __read_mostly; |
| 27 | |
| 28 | struct fanotify_response_event { |
| 29 | struct list_head list; |
| 30 | __s32 fd; |
| 31 | struct fsnotify_event *event; |
| 32 | }; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 33 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 34 | /* |
| 35 | * Get an fsnotify notification event if one exists and is small |
| 36 | * enough to fit in "count". Return an error pointer if the count |
| 37 | * is not large enough. |
| 38 | * |
| 39 | * Called with the group->notification_mutex held. |
| 40 | */ |
| 41 | static struct fsnotify_event *get_one_event(struct fsnotify_group *group, |
| 42 | size_t count) |
| 43 | { |
| 44 | BUG_ON(!mutex_is_locked(&group->notification_mutex)); |
| 45 | |
| 46 | pr_debug("%s: group=%p count=%zd\n", __func__, group, count); |
| 47 | |
| 48 | if (fsnotify_notify_queue_is_empty(group)) |
| 49 | return NULL; |
| 50 | |
| 51 | if (FAN_EVENT_METADATA_LEN > count) |
| 52 | return ERR_PTR(-EINVAL); |
| 53 | |
| 54 | /* held the notification_mutex the whole time, so this is the |
| 55 | * same event we peeked above */ |
| 56 | return fsnotify_remove_notify_event(group); |
| 57 | } |
| 58 | |
Andreas Gruenbacher | 22aa425 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 59 | static int create_fd(struct fsnotify_group *group, struct fsnotify_event *event) |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 60 | { |
| 61 | int client_fd; |
| 62 | struct dentry *dentry; |
| 63 | struct vfsmount *mnt; |
| 64 | struct file *new_file; |
| 65 | |
Andreas Gruenbacher | 22aa425 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 66 | pr_debug("%s: group=%p event=%p\n", __func__, group, event); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 67 | |
| 68 | client_fd = get_unused_fd(); |
| 69 | if (client_fd < 0) |
| 70 | return client_fd; |
| 71 | |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 72 | if (event->data_type != FSNOTIFY_EVENT_PATH) { |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 73 | WARN_ON(1); |
| 74 | put_unused_fd(client_fd); |
| 75 | return -EINVAL; |
| 76 | } |
| 77 | |
| 78 | /* |
| 79 | * we need a new file handle for the userspace program so it can read even if it was |
| 80 | * originally opened O_WRONLY. |
| 81 | */ |
Linus Torvalds | 2069601 | 2010-08-12 14:23:04 -0700 | [diff] [blame] | 82 | dentry = dget(event->path.dentry); |
| 83 | mnt = mntget(event->path.mnt); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 84 | /* it's possible this event was an overflow event. in that case dentry and mnt |
| 85 | * are NULL; That's fine, just don't call dentry open */ |
| 86 | if (dentry && mnt) |
| 87 | new_file = dentry_open(dentry, mnt, |
Eric Paris | 80af258 | 2010-07-28 10:18:37 -0400 | [diff] [blame] | 88 | group->fanotify_data.f_flags | FMODE_NONOTIFY, |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 89 | current_cred()); |
| 90 | else |
| 91 | new_file = ERR_PTR(-EOVERFLOW); |
| 92 | if (IS_ERR(new_file)) { |
| 93 | /* |
| 94 | * we still send an event even if we can't open the file. this |
| 95 | * can happen when say tasks are gone and we try to open their |
| 96 | * /proc files or we try to open a WRONLY file like in sysfs |
| 97 | * we just send the errno to userspace since there isn't much |
| 98 | * else we can do. |
| 99 | */ |
| 100 | put_unused_fd(client_fd); |
| 101 | client_fd = PTR_ERR(new_file); |
| 102 | } else { |
| 103 | fd_install(client_fd, new_file); |
| 104 | } |
| 105 | |
Andreas Gruenbacher | 22aa425 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 106 | return client_fd; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | static ssize_t fill_event_metadata(struct fsnotify_group *group, |
| 110 | struct fanotify_event_metadata *metadata, |
| 111 | struct fsnotify_event *event) |
| 112 | { |
| 113 | pr_debug("%s: group=%p metadata=%p event=%p\n", __func__, |
| 114 | group, metadata, event); |
| 115 | |
| 116 | metadata->event_len = FAN_EVENT_METADATA_LEN; |
| 117 | metadata->vers = FANOTIFY_METADATA_VERSION; |
Andreas Gruenbacher | 33d3dff | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 118 | metadata->mask = event->mask & FAN_ALL_OUTGOING_EVENTS; |
Andreas Gruenbacher | 32c3263 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 119 | metadata->pid = pid_vnr(event->tgid); |
Andreas Gruenbacher | 22aa425 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 120 | metadata->fd = create_fd(group, event); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 121 | |
Andreas Gruenbacher | 22aa425 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 122 | return metadata->fd; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 123 | } |
| 124 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 125 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 126 | static struct fanotify_response_event *dequeue_re(struct fsnotify_group *group, |
| 127 | __s32 fd) |
| 128 | { |
| 129 | struct fanotify_response_event *re, *return_re = NULL; |
| 130 | |
| 131 | mutex_lock(&group->fanotify_data.access_mutex); |
| 132 | list_for_each_entry(re, &group->fanotify_data.access_list, list) { |
| 133 | if (re->fd != fd) |
| 134 | continue; |
| 135 | |
| 136 | list_del_init(&re->list); |
| 137 | return_re = re; |
| 138 | break; |
| 139 | } |
| 140 | mutex_unlock(&group->fanotify_data.access_mutex); |
| 141 | |
| 142 | pr_debug("%s: found return_re=%p\n", __func__, return_re); |
| 143 | |
| 144 | return return_re; |
| 145 | } |
| 146 | |
| 147 | static int process_access_response(struct fsnotify_group *group, |
| 148 | struct fanotify_response *response_struct) |
| 149 | { |
| 150 | struct fanotify_response_event *re; |
| 151 | __s32 fd = response_struct->fd; |
| 152 | __u32 response = response_struct->response; |
| 153 | |
| 154 | pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group, |
| 155 | fd, response); |
| 156 | /* |
| 157 | * make sure the response is valid, if invalid we do nothing and either |
| 158 | * userspace can send a valid responce or we will clean it up after the |
| 159 | * timeout |
| 160 | */ |
| 161 | switch (response) { |
| 162 | case FAN_ALLOW: |
| 163 | case FAN_DENY: |
| 164 | break; |
| 165 | default: |
| 166 | return -EINVAL; |
| 167 | } |
| 168 | |
| 169 | if (fd < 0) |
| 170 | return -EINVAL; |
| 171 | |
| 172 | re = dequeue_re(group, fd); |
| 173 | if (!re) |
| 174 | return -ENOENT; |
| 175 | |
| 176 | re->event->response = response; |
| 177 | |
| 178 | wake_up(&group->fanotify_data.access_waitq); |
| 179 | |
| 180 | kmem_cache_free(fanotify_response_event_cache, re); |
| 181 | |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | static int prepare_for_access_response(struct fsnotify_group *group, |
| 186 | struct fsnotify_event *event, |
| 187 | __s32 fd) |
| 188 | { |
| 189 | struct fanotify_response_event *re; |
| 190 | |
| 191 | if (!(event->mask & FAN_ALL_PERM_EVENTS)) |
| 192 | return 0; |
| 193 | |
| 194 | re = kmem_cache_alloc(fanotify_response_event_cache, GFP_KERNEL); |
| 195 | if (!re) |
| 196 | return -ENOMEM; |
| 197 | |
| 198 | re->event = event; |
| 199 | re->fd = fd; |
| 200 | |
| 201 | mutex_lock(&group->fanotify_data.access_mutex); |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 202 | |
| 203 | if (group->fanotify_data.bypass_perm) { |
| 204 | mutex_unlock(&group->fanotify_data.access_mutex); |
| 205 | kmem_cache_free(fanotify_response_event_cache, re); |
| 206 | event->response = FAN_ALLOW; |
| 207 | return 0; |
| 208 | } |
| 209 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 210 | list_add_tail(&re->list, &group->fanotify_data.access_list); |
| 211 | mutex_unlock(&group->fanotify_data.access_mutex); |
| 212 | |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | static void remove_access_response(struct fsnotify_group *group, |
| 217 | struct fsnotify_event *event, |
| 218 | __s32 fd) |
| 219 | { |
| 220 | struct fanotify_response_event *re; |
| 221 | |
| 222 | if (!(event->mask & FAN_ALL_PERM_EVENTS)) |
| 223 | return; |
| 224 | |
| 225 | re = dequeue_re(group, fd); |
| 226 | if (!re) |
| 227 | return; |
| 228 | |
| 229 | BUG_ON(re->event != event); |
| 230 | |
| 231 | kmem_cache_free(fanotify_response_event_cache, re); |
| 232 | |
| 233 | return; |
| 234 | } |
| 235 | #else |
| 236 | static int prepare_for_access_response(struct fsnotify_group *group, |
| 237 | struct fsnotify_event *event, |
| 238 | __s32 fd) |
| 239 | { |
| 240 | return 0; |
| 241 | } |
| 242 | |
| 243 | static void remove_access_response(struct fsnotify_group *group, |
| 244 | struct fsnotify_event *event, |
| 245 | __s32 fd) |
| 246 | { |
Eric Paris | 8860f06 | 2009-12-23 00:10:25 -0500 | [diff] [blame] | 247 | return; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 248 | } |
| 249 | #endif |
| 250 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 251 | static ssize_t copy_event_to_user(struct fsnotify_group *group, |
| 252 | struct fsnotify_event *event, |
| 253 | char __user *buf) |
| 254 | { |
| 255 | struct fanotify_event_metadata fanotify_event_metadata; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 256 | int fd, ret; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 257 | |
| 258 | pr_debug("%s: group=%p event=%p\n", __func__, group, event); |
| 259 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 260 | fd = fill_event_metadata(group, &fanotify_event_metadata, event); |
| 261 | if (fd < 0) |
| 262 | return fd; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 263 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 264 | ret = prepare_for_access_response(group, event, fd); |
| 265 | if (ret) |
| 266 | goto out_close_fd; |
| 267 | |
| 268 | ret = -EFAULT; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 269 | if (copy_to_user(buf, &fanotify_event_metadata, FAN_EVENT_METADATA_LEN)) |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 270 | goto out_kill_access_response; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 271 | |
| 272 | return FAN_EVENT_METADATA_LEN; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 273 | |
| 274 | out_kill_access_response: |
| 275 | remove_access_response(group, event, fd); |
| 276 | out_close_fd: |
| 277 | sys_close(fd); |
| 278 | return ret; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | /* intofiy userspace file descriptor functions */ |
| 282 | static unsigned int fanotify_poll(struct file *file, poll_table *wait) |
| 283 | { |
| 284 | struct fsnotify_group *group = file->private_data; |
| 285 | int ret = 0; |
| 286 | |
| 287 | poll_wait(file, &group->notification_waitq, wait); |
| 288 | mutex_lock(&group->notification_mutex); |
| 289 | if (!fsnotify_notify_queue_is_empty(group)) |
| 290 | ret = POLLIN | POLLRDNORM; |
| 291 | mutex_unlock(&group->notification_mutex); |
| 292 | |
| 293 | return ret; |
| 294 | } |
| 295 | |
| 296 | static ssize_t fanotify_read(struct file *file, char __user *buf, |
| 297 | size_t count, loff_t *pos) |
| 298 | { |
| 299 | struct fsnotify_group *group; |
| 300 | struct fsnotify_event *kevent; |
| 301 | char __user *start; |
| 302 | int ret; |
| 303 | DEFINE_WAIT(wait); |
| 304 | |
| 305 | start = buf; |
| 306 | group = file->private_data; |
| 307 | |
| 308 | pr_debug("%s: group=%p\n", __func__, group); |
| 309 | |
| 310 | while (1) { |
| 311 | prepare_to_wait(&group->notification_waitq, &wait, TASK_INTERRUPTIBLE); |
| 312 | |
| 313 | mutex_lock(&group->notification_mutex); |
| 314 | kevent = get_one_event(group, count); |
| 315 | mutex_unlock(&group->notification_mutex); |
| 316 | |
| 317 | if (kevent) { |
| 318 | ret = PTR_ERR(kevent); |
| 319 | if (IS_ERR(kevent)) |
| 320 | break; |
| 321 | ret = copy_event_to_user(group, kevent, buf); |
| 322 | fsnotify_put_event(kevent); |
| 323 | if (ret < 0) |
| 324 | break; |
| 325 | buf += ret; |
| 326 | count -= ret; |
| 327 | continue; |
| 328 | } |
| 329 | |
| 330 | ret = -EAGAIN; |
| 331 | if (file->f_flags & O_NONBLOCK) |
| 332 | break; |
| 333 | ret = -EINTR; |
| 334 | if (signal_pending(current)) |
| 335 | break; |
| 336 | |
| 337 | if (start != buf) |
| 338 | break; |
| 339 | |
| 340 | schedule(); |
| 341 | } |
| 342 | |
| 343 | finish_wait(&group->notification_waitq, &wait); |
| 344 | if (start != buf && ret != -EFAULT) |
| 345 | ret = buf - start; |
| 346 | return ret; |
| 347 | } |
| 348 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 349 | static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos) |
| 350 | { |
| 351 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 352 | struct fanotify_response response = { .fd = -1, .response = -1 }; |
| 353 | struct fsnotify_group *group; |
| 354 | int ret; |
| 355 | |
| 356 | group = file->private_data; |
| 357 | |
| 358 | if (count > sizeof(response)) |
| 359 | count = sizeof(response); |
| 360 | |
| 361 | pr_debug("%s: group=%p count=%zu\n", __func__, group, count); |
| 362 | |
| 363 | if (copy_from_user(&response, buf, count)) |
| 364 | return -EFAULT; |
| 365 | |
| 366 | ret = process_access_response(group, &response); |
| 367 | if (ret < 0) |
| 368 | count = ret; |
| 369 | |
| 370 | return count; |
| 371 | #else |
| 372 | return -EINVAL; |
| 373 | #endif |
| 374 | } |
| 375 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 376 | static int fanotify_release(struct inode *ignored, struct file *file) |
| 377 | { |
| 378 | struct fsnotify_group *group = file->private_data; |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 379 | struct fanotify_response_event *re, *lre; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 380 | |
| 381 | pr_debug("%s: file=%p group=%p\n", __func__, file, group); |
| 382 | |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 383 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 384 | mutex_lock(&group->fanotify_data.access_mutex); |
| 385 | |
| 386 | group->fanotify_data.bypass_perm = true; |
| 387 | |
| 388 | list_for_each_entry_safe(re, lre, &group->fanotify_data.access_list, list) { |
| 389 | pr_debug("%s: found group=%p re=%p event=%p\n", __func__, group, |
| 390 | re, re->event); |
| 391 | |
| 392 | list_del_init(&re->list); |
| 393 | re->event->response = FAN_ALLOW; |
| 394 | |
| 395 | kmem_cache_free(fanotify_response_event_cache, re); |
| 396 | } |
| 397 | mutex_unlock(&group->fanotify_data.access_mutex); |
| 398 | |
| 399 | wake_up(&group->fanotify_data.access_waitq); |
| 400 | #endif |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 401 | /* matches the fanotify_init->fsnotify_alloc_group */ |
| 402 | fsnotify_put_group(group); |
| 403 | |
| 404 | return 0; |
| 405 | } |
| 406 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 407 | static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 408 | { |
| 409 | struct fsnotify_group *group; |
| 410 | struct fsnotify_event_holder *holder; |
| 411 | void __user *p; |
| 412 | int ret = -ENOTTY; |
| 413 | size_t send_len = 0; |
| 414 | |
| 415 | group = file->private_data; |
| 416 | |
| 417 | p = (void __user *) arg; |
| 418 | |
| 419 | switch (cmd) { |
| 420 | case FIONREAD: |
| 421 | mutex_lock(&group->notification_mutex); |
| 422 | list_for_each_entry(holder, &group->notification_list, event_list) |
| 423 | send_len += FAN_EVENT_METADATA_LEN; |
| 424 | mutex_unlock(&group->notification_mutex); |
| 425 | ret = put_user(send_len, (int __user *) p); |
| 426 | break; |
| 427 | } |
| 428 | |
| 429 | return ret; |
| 430 | } |
| 431 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 432 | static const struct file_operations fanotify_fops = { |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 433 | .poll = fanotify_poll, |
| 434 | .read = fanotify_read, |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 435 | .write = fanotify_write, |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 436 | .fasync = NULL, |
| 437 | .release = fanotify_release, |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 438 | .unlocked_ioctl = fanotify_ioctl, |
| 439 | .compat_ioctl = fanotify_ioctl, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 440 | .llseek = noop_llseek, |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 441 | }; |
| 442 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 443 | static void fanotify_free_mark(struct fsnotify_mark *fsn_mark) |
| 444 | { |
| 445 | kmem_cache_free(fanotify_mark_cache, fsn_mark); |
| 446 | } |
| 447 | |
| 448 | static int fanotify_find_path(int dfd, const char __user *filename, |
| 449 | struct path *path, unsigned int flags) |
| 450 | { |
| 451 | int ret; |
| 452 | |
| 453 | pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__, |
| 454 | dfd, filename, flags); |
| 455 | |
| 456 | if (filename == NULL) { |
| 457 | struct file *file; |
| 458 | int fput_needed; |
| 459 | |
| 460 | ret = -EBADF; |
| 461 | file = fget_light(dfd, &fput_needed); |
| 462 | if (!file) |
| 463 | goto out; |
| 464 | |
| 465 | ret = -ENOTDIR; |
| 466 | if ((flags & FAN_MARK_ONLYDIR) && |
| 467 | !(S_ISDIR(file->f_path.dentry->d_inode->i_mode))) { |
| 468 | fput_light(file, fput_needed); |
| 469 | goto out; |
| 470 | } |
| 471 | |
| 472 | *path = file->f_path; |
| 473 | path_get(path); |
| 474 | fput_light(file, fput_needed); |
| 475 | } else { |
| 476 | unsigned int lookup_flags = 0; |
| 477 | |
| 478 | if (!(flags & FAN_MARK_DONT_FOLLOW)) |
| 479 | lookup_flags |= LOOKUP_FOLLOW; |
| 480 | if (flags & FAN_MARK_ONLYDIR) |
| 481 | lookup_flags |= LOOKUP_DIRECTORY; |
| 482 | |
| 483 | ret = user_path_at(dfd, filename, lookup_flags, path); |
| 484 | if (ret) |
| 485 | goto out; |
| 486 | } |
| 487 | |
| 488 | /* you can only watch an inode if you have read permissions on it */ |
| 489 | ret = inode_permission(path->dentry->d_inode, MAY_READ); |
| 490 | if (ret) |
| 491 | path_put(path); |
| 492 | out: |
| 493 | return ret; |
| 494 | } |
| 495 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 496 | static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark, |
| 497 | __u32 mask, |
| 498 | unsigned int flags) |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 499 | { |
| 500 | __u32 oldmask; |
| 501 | |
| 502 | spin_lock(&fsn_mark->lock); |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 503 | if (!(flags & FAN_MARK_IGNORED_MASK)) { |
| 504 | oldmask = fsn_mark->mask; |
| 505 | fsnotify_set_mark_mask_locked(fsn_mark, (oldmask & ~mask)); |
| 506 | } else { |
| 507 | oldmask = fsn_mark->ignored_mask; |
| 508 | fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask & ~mask)); |
| 509 | } |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 510 | spin_unlock(&fsn_mark->lock); |
| 511 | |
| 512 | if (!(oldmask & ~mask)) |
| 513 | fsnotify_destroy_mark(fsn_mark); |
| 514 | |
| 515 | return mask & oldmask; |
| 516 | } |
| 517 | |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 518 | static int fanotify_remove_vfsmount_mark(struct fsnotify_group *group, |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 519 | struct vfsmount *mnt, __u32 mask, |
| 520 | unsigned int flags) |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 521 | { |
| 522 | struct fsnotify_mark *fsn_mark = NULL; |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 523 | __u32 removed; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 524 | |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 525 | fsn_mark = fsnotify_find_vfsmount_mark(group, mnt); |
| 526 | if (!fsn_mark) |
| 527 | return -ENOENT; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 528 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 529 | removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 530 | fsnotify_put_mark(fsn_mark); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 531 | if (removed & mnt->mnt_fsnotify_mask) |
| 532 | fsnotify_recalc_vfsmount_mask(mnt); |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 533 | |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 534 | return 0; |
| 535 | } |
| 536 | |
| 537 | static int fanotify_remove_inode_mark(struct fsnotify_group *group, |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 538 | struct inode *inode, __u32 mask, |
| 539 | unsigned int flags) |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 540 | { |
| 541 | struct fsnotify_mark *fsn_mark = NULL; |
| 542 | __u32 removed; |
| 543 | |
| 544 | fsn_mark = fsnotify_find_inode_mark(group, inode); |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 545 | if (!fsn_mark) |
| 546 | return -ENOENT; |
| 547 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 548 | removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 549 | /* matches the fsnotify_find_inode_mark() */ |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 550 | fsnotify_put_mark(fsn_mark); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 551 | if (removed & inode->i_fsnotify_mask) |
| 552 | fsnotify_recalc_inode_mask(inode); |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 553 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 554 | return 0; |
| 555 | } |
| 556 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 557 | static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark, |
| 558 | __u32 mask, |
| 559 | unsigned int flags) |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 560 | { |
| 561 | __u32 oldmask; |
| 562 | |
| 563 | spin_lock(&fsn_mark->lock); |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 564 | if (!(flags & FAN_MARK_IGNORED_MASK)) { |
| 565 | oldmask = fsn_mark->mask; |
| 566 | fsnotify_set_mark_mask_locked(fsn_mark, (oldmask | mask)); |
| 567 | } else { |
| 568 | oldmask = fsn_mark->ignored_mask; |
| 569 | fsnotify_set_mark_ignored_mask_locked(fsn_mark, (oldmask | mask)); |
Eric Paris | c9778a9 | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 570 | if (flags & FAN_MARK_IGNORED_SURV_MODIFY) |
| 571 | fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY; |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 572 | } |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 573 | spin_unlock(&fsn_mark->lock); |
| 574 | |
| 575 | return mask & ~oldmask; |
| 576 | } |
| 577 | |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 578 | static int fanotify_add_vfsmount_mark(struct fsnotify_group *group, |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 579 | struct vfsmount *mnt, __u32 mask, |
| 580 | unsigned int flags) |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 581 | { |
| 582 | struct fsnotify_mark *fsn_mark; |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 583 | __u32 added; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 584 | |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 585 | fsn_mark = fsnotify_find_vfsmount_mark(group, mnt); |
| 586 | if (!fsn_mark) { |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 587 | int ret; |
| 588 | |
Eric Paris | e7099d8 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 589 | if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks) |
| 590 | return -ENOSPC; |
| 591 | |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 592 | fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL); |
| 593 | if (!fsn_mark) |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 594 | return -ENOMEM; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 595 | |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 596 | fsnotify_init_mark(fsn_mark, fanotify_free_mark); |
| 597 | ret = fsnotify_add_mark(fsn_mark, group, NULL, mnt, 0); |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 598 | if (ret) { |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 599 | fanotify_free_mark(fsn_mark); |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 600 | return ret; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 601 | } |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 602 | } |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 603 | added = fanotify_mark_add_to_mask(fsn_mark, mask, flags); |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 604 | fsnotify_put_mark(fsn_mark); |
Eric Paris | 43709a2 | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 605 | if (added & ~mnt->mnt_fsnotify_mask) |
| 606 | fsnotify_recalc_vfsmount_mask(mnt); |
| 607 | |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 608 | return 0; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 609 | } |
| 610 | |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 611 | static int fanotify_add_inode_mark(struct fsnotify_group *group, |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 612 | struct inode *inode, __u32 mask, |
| 613 | unsigned int flags) |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 614 | { |
| 615 | struct fsnotify_mark *fsn_mark; |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 616 | __u32 added; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 617 | |
| 618 | pr_debug("%s: group=%p inode=%p\n", __func__, group, inode); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 619 | |
Eric Paris | 5322a59 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 620 | /* |
| 621 | * If some other task has this inode open for write we should not add |
| 622 | * an ignored mark, unless that ignored mark is supposed to survive |
| 623 | * modification changes anyway. |
| 624 | */ |
| 625 | if ((flags & FAN_MARK_IGNORED_MASK) && |
| 626 | !(flags & FAN_MARK_IGNORED_SURV_MODIFY) && |
| 627 | (atomic_read(&inode->i_writecount) > 0)) |
| 628 | return 0; |
| 629 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 630 | fsn_mark = fsnotify_find_inode_mark(group, inode); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 631 | if (!fsn_mark) { |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 632 | int ret; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 633 | |
Eric Paris | e7099d8 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 634 | if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks) |
| 635 | return -ENOSPC; |
| 636 | |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 637 | fsn_mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL); |
| 638 | if (!fsn_mark) |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 639 | return -ENOMEM; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 640 | |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 641 | fsnotify_init_mark(fsn_mark, fanotify_free_mark); |
| 642 | ret = fsnotify_add_mark(fsn_mark, group, inode, NULL, 0); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 643 | if (ret) { |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 644 | fanotify_free_mark(fsn_mark); |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 645 | return ret; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 646 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 647 | } |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 648 | added = fanotify_mark_add_to_mask(fsn_mark, mask, flags); |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 649 | fsnotify_put_mark(fsn_mark); |
Eric Paris | 43709a2 | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 650 | if (added & ~inode->i_fsnotify_mask) |
| 651 | fsnotify_recalc_inode_mask(inode); |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 652 | return 0; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 653 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 654 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 655 | /* fanotify syscalls */ |
Eric Paris | 08ae893 | 2010-05-27 09:41:40 -0400 | [diff] [blame] | 656 | SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags) |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 657 | { |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 658 | struct fsnotify_group *group; |
| 659 | int f_flags, fd; |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame^] | 660 | struct user_struct *user; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 661 | |
Eric Paris | 08ae893 | 2010-05-27 09:41:40 -0400 | [diff] [blame] | 662 | pr_debug("%s: flags=%d event_f_flags=%d\n", |
| 663 | __func__, flags, event_f_flags); |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 664 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 665 | if (!capable(CAP_SYS_ADMIN)) |
Andreas Gruenbacher | a2f13ad | 2010-08-24 12:58:54 +0200 | [diff] [blame] | 666 | return -EPERM; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 667 | |
| 668 | if (flags & ~FAN_ALL_INIT_FLAGS) |
| 669 | return -EINVAL; |
| 670 | |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame^] | 671 | user = get_current_user(); |
| 672 | if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) { |
| 673 | free_uid(user); |
| 674 | return -EMFILE; |
| 675 | } |
| 676 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 677 | f_flags = O_RDWR | FMODE_NONOTIFY; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 678 | if (flags & FAN_CLOEXEC) |
| 679 | f_flags |= O_CLOEXEC; |
| 680 | if (flags & FAN_NONBLOCK) |
| 681 | f_flags |= O_NONBLOCK; |
| 682 | |
| 683 | /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */ |
| 684 | group = fsnotify_alloc_group(&fanotify_fsnotify_ops); |
| 685 | if (IS_ERR(group)) |
| 686 | return PTR_ERR(group); |
| 687 | |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame^] | 688 | group->fanotify_data.user = user; |
| 689 | atomic_inc(&user->fanotify_listeners); |
| 690 | |
Eric Paris | 80af258 | 2010-07-28 10:18:37 -0400 | [diff] [blame] | 691 | group->fanotify_data.f_flags = event_f_flags; |
Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 692 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 693 | mutex_init(&group->fanotify_data.access_mutex); |
| 694 | init_waitqueue_head(&group->fanotify_data.access_waitq); |
| 695 | INIT_LIST_HEAD(&group->fanotify_data.access_list); |
| 696 | #endif |
Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 697 | switch (flags & FAN_ALL_CLASS_BITS) { |
| 698 | case FAN_CLASS_NOTIF: |
| 699 | group->priority = FS_PRIO_0; |
| 700 | break; |
| 701 | case FAN_CLASS_CONTENT: |
| 702 | group->priority = FS_PRIO_1; |
| 703 | break; |
| 704 | case FAN_CLASS_PRE_CONTENT: |
| 705 | group->priority = FS_PRIO_2; |
| 706 | break; |
| 707 | default: |
| 708 | fd = -EINVAL; |
| 709 | goto out_put_group; |
| 710 | } |
Eric Paris | cb2d429 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 711 | |
Eric Paris | 5dd03f5 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 712 | if (flags & FAN_UNLIMITED_QUEUE) { |
| 713 | fd = -EPERM; |
| 714 | if (!capable(CAP_SYS_ADMIN)) |
| 715 | goto out_put_group; |
| 716 | group->max_events = UINT_MAX; |
| 717 | } else { |
| 718 | group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS; |
| 719 | } |
Eric Paris | 2529a0d | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 720 | |
Eric Paris | ac7e22d | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 721 | if (flags & FAN_UNLIMITED_MARKS) { |
| 722 | fd = -EPERM; |
| 723 | if (!capable(CAP_SYS_ADMIN)) |
| 724 | goto out_put_group; |
| 725 | group->fanotify_data.max_marks = UINT_MAX; |
| 726 | } else { |
| 727 | group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS; |
| 728 | } |
Eric Paris | e7099d8 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 729 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 730 | fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags); |
| 731 | if (fd < 0) |
| 732 | goto out_put_group; |
| 733 | |
| 734 | return fd; |
| 735 | |
| 736 | out_put_group: |
| 737 | fsnotify_put_group(group); |
| 738 | return fd; |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 739 | } |
Eric Paris | bbaa416 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 740 | |
Heiko Carstens | 9bbfc96 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 741 | SYSCALL_DEFINE(fanotify_mark)(int fanotify_fd, unsigned int flags, |
| 742 | __u64 mask, int dfd, |
| 743 | const char __user * pathname) |
Eric Paris | bbaa416 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 744 | { |
Eric Paris | 0ff21db | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 745 | struct inode *inode = NULL; |
| 746 | struct vfsmount *mnt = NULL; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 747 | struct fsnotify_group *group; |
| 748 | struct file *filp; |
| 749 | struct path path; |
| 750 | int ret, fput_needed; |
| 751 | |
| 752 | pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n", |
| 753 | __func__, fanotify_fd, flags, dfd, pathname, mask); |
| 754 | |
| 755 | /* we only use the lower 32 bits as of right now. */ |
| 756 | if (mask & ((__u64)0xffffffff << 32)) |
| 757 | return -EINVAL; |
| 758 | |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 759 | if (flags & ~FAN_ALL_MARK_FLAGS) |
| 760 | return -EINVAL; |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 761 | switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) { |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 762 | case FAN_MARK_ADD: |
| 763 | case FAN_MARK_REMOVE: |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 764 | case FAN_MARK_FLUSH: |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 765 | break; |
| 766 | default: |
| 767 | return -EINVAL; |
| 768 | } |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 769 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 770 | if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD)) |
| 771 | #else |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 772 | if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD)) |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 773 | #endif |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 774 | return -EINVAL; |
| 775 | |
| 776 | filp = fget_light(fanotify_fd, &fput_needed); |
| 777 | if (unlikely(!filp)) |
| 778 | return -EBADF; |
| 779 | |
| 780 | /* verify that this is indeed an fanotify instance */ |
| 781 | ret = -EINVAL; |
| 782 | if (unlikely(filp->f_op != &fanotify_fops)) |
| 783 | goto fput_and_out; |
Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 784 | group = filp->private_data; |
| 785 | |
| 786 | /* |
| 787 | * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not |
| 788 | * allowed to set permissions events. |
| 789 | */ |
| 790 | ret = -EINVAL; |
| 791 | if (mask & FAN_ALL_PERM_EVENTS && |
| 792 | group->priority == FS_PRIO_0) |
| 793 | goto fput_and_out; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 794 | |
| 795 | ret = fanotify_find_path(dfd, pathname, &path, flags); |
| 796 | if (ret) |
| 797 | goto fput_and_out; |
| 798 | |
| 799 | /* inode held in place by reference to path; group by fget on fd */ |
Andreas Gruenbacher | eac8e9e | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 800 | if (!(flags & FAN_MARK_MOUNT)) |
Eric Paris | 0ff21db | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 801 | inode = path.dentry->d_inode; |
| 802 | else |
| 803 | mnt = path.mnt; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 804 | |
| 805 | /* create/update an inode mark */ |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 806 | switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) { |
Andreas Gruenbacher | c6223f4 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 807 | case FAN_MARK_ADD: |
Andreas Gruenbacher | eac8e9e | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 808 | if (flags & FAN_MARK_MOUNT) |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 809 | ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags); |
Eric Paris | 0ff21db | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 810 | else |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 811 | ret = fanotify_add_inode_mark(group, inode, mask, flags); |
Andreas Gruenbacher | c6223f4 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 812 | break; |
| 813 | case FAN_MARK_REMOVE: |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 814 | if (flags & FAN_MARK_MOUNT) |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 815 | ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 816 | else |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 817 | ret = fanotify_remove_inode_mark(group, inode, mask, flags); |
Andreas Gruenbacher | c6223f4 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 818 | break; |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 819 | case FAN_MARK_FLUSH: |
| 820 | if (flags & FAN_MARK_MOUNT) |
| 821 | fsnotify_clear_vfsmount_marks_by_group(group); |
| 822 | else |
| 823 | fsnotify_clear_inode_marks_by_group(group); |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 824 | break; |
Andreas Gruenbacher | c6223f4 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 825 | default: |
| 826 | ret = -EINVAL; |
| 827 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 828 | |
| 829 | path_put(&path); |
| 830 | fput_and_out: |
| 831 | fput_light(filp, fput_needed); |
| 832 | return ret; |
Eric Paris | bbaa416 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 833 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 834 | |
Heiko Carstens | 9bbfc96 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 835 | #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS |
| 836 | asmlinkage long SyS_fanotify_mark(long fanotify_fd, long flags, __u64 mask, |
| 837 | long dfd, long pathname) |
| 838 | { |
| 839 | return SYSC_fanotify_mark((int) fanotify_fd, (unsigned int) flags, |
| 840 | mask, (int) dfd, |
| 841 | (const char __user *) pathname); |
| 842 | } |
| 843 | SYSCALL_ALIAS(sys_fanotify_mark, SyS_fanotify_mark); |
| 844 | #endif |
| 845 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 846 | /* |
| 847 | * fanotify_user_setup - Our initialization function. Note that we cannnot return |
| 848 | * error because we have compiled-in VFS hooks. So an (unlikely) failure here |
| 849 | * must result in panic(). |
| 850 | */ |
| 851 | static int __init fanotify_user_setup(void) |
| 852 | { |
| 853 | fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC); |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 854 | fanotify_response_event_cache = KMEM_CACHE(fanotify_response_event, |
| 855 | SLAB_PANIC); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 856 | |
| 857 | return 0; |
| 858 | } |
| 859 | device_initcall(fanotify_user_setup); |