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