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> |
Al Viro | 91c2e0b | 2013-03-05 20:10:59 -0500 | [diff] [blame] | 16 | #include <linux/compat.h> |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 17 | |
| 18 | #include <asm/ioctls.h> |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 19 | |
Al Viro | c63181e | 2011-11-25 02:35:16 -0500 | [diff] [blame] | 20 | #include "../../mount.h" |
Cyrill Gorcunov | be77196 | 2012-12-17 16:05:12 -0800 | [diff] [blame] | 21 | #include "../fdinfo.h" |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 22 | #include "fanotify.h" |
Al Viro | c63181e | 2011-11-25 02:35:16 -0500 | [diff] [blame] | 23 | |
Eric Paris | 2529a0d | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 24 | #define FANOTIFY_DEFAULT_MAX_EVENTS 16384 |
Eric Paris | e7099d8 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 25 | #define FANOTIFY_DEFAULT_MAX_MARKS 8192 |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 26 | #define FANOTIFY_DEFAULT_MAX_LISTENERS 128 |
Eric Paris | 2529a0d | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 27 | |
Heinrich Schuchardt | 48149e9 | 2014-06-04 16:05:44 -0700 | [diff] [blame] | 28 | /* |
| 29 | * All flags that may be specified in parameter event_f_flags of fanotify_init. |
| 30 | * |
| 31 | * Internal and external open flags are stored together in field f_flags of |
| 32 | * struct file. Only external open flags shall be allowed in event_f_flags. |
| 33 | * Internal flags like FMODE_NONOTIFY, FMODE_EXEC, FMODE_NOCMTIME shall be |
| 34 | * excluded. |
| 35 | */ |
| 36 | #define FANOTIFY_INIT_ALL_EVENT_F_BITS ( \ |
| 37 | O_ACCMODE | O_APPEND | O_NONBLOCK | \ |
| 38 | __O_SYNC | O_DSYNC | O_CLOEXEC | \ |
| 39 | O_LARGEFILE | O_NOATIME ) |
| 40 | |
Andreas Gruenbacher | 33d3dff | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 41 | extern const struct fsnotify_ops fanotify_fsnotify_ops; |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 42 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 43 | static struct kmem_cache *fanotify_mark_cache __read_mostly; |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 44 | struct kmem_cache *fanotify_event_cachep __read_mostly; |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 45 | struct kmem_cache *fanotify_perm_event_cachep __read_mostly; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 46 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 47 | /* |
| 48 | * Get an fsnotify notification event if one exists and is small |
| 49 | * enough to fit in "count". Return an error pointer if the count |
| 50 | * is not large enough. |
| 51 | * |
| 52 | * Called with the group->notification_mutex held. |
| 53 | */ |
| 54 | static struct fsnotify_event *get_one_event(struct fsnotify_group *group, |
| 55 | size_t count) |
| 56 | { |
| 57 | BUG_ON(!mutex_is_locked(&group->notification_mutex)); |
| 58 | |
| 59 | pr_debug("%s: group=%p count=%zd\n", __func__, group, count); |
| 60 | |
| 61 | if (fsnotify_notify_queue_is_empty(group)) |
| 62 | return NULL; |
| 63 | |
| 64 | if (FAN_EVENT_METADATA_LEN > count) |
| 65 | return ERR_PTR(-EINVAL); |
| 66 | |
| 67 | /* held the notification_mutex the whole time, so this is the |
| 68 | * same event we peeked above */ |
Jan Kara | 8ba8fa91 | 2014-08-06 16:03:26 -0700 | [diff] [blame] | 69 | return fsnotify_remove_first_event(group); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 70 | } |
| 71 | |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 72 | static int create_fd(struct fsnotify_group *group, |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 73 | struct fanotify_event_info *event, |
| 74 | struct file **file) |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 75 | { |
| 76 | int client_fd; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 77 | struct file *new_file; |
| 78 | |
Andreas Gruenbacher | 22aa425 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 79 | pr_debug("%s: group=%p event=%p\n", __func__, group, event); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 80 | |
Yann Droneaud | 0b37e09 | 2014-10-09 15:24:40 -0700 | [diff] [blame] | 81 | client_fd = get_unused_fd_flags(group->fanotify_data.f_flags); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 82 | if (client_fd < 0) |
| 83 | return client_fd; |
| 84 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 85 | /* |
| 86 | * we need a new file handle for the userspace program so it can read even if it was |
| 87 | * originally opened O_WRONLY. |
| 88 | */ |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 89 | /* it's possible this event was an overflow event. in that case dentry and mnt |
| 90 | * are NULL; That's fine, just don't call dentry open */ |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 91 | if (event->path.dentry && event->path.mnt) |
| 92 | new_file = dentry_open(&event->path, |
Eric Paris | 80af258 | 2010-07-28 10:18:37 -0400 | [diff] [blame] | 93 | group->fanotify_data.f_flags | FMODE_NONOTIFY, |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 94 | current_cred()); |
| 95 | else |
| 96 | new_file = ERR_PTR(-EOVERFLOW); |
| 97 | if (IS_ERR(new_file)) { |
| 98 | /* |
| 99 | * we still send an event even if we can't open the file. this |
| 100 | * can happen when say tasks are gone and we try to open their |
| 101 | * /proc files or we try to open a WRONLY file like in sysfs |
| 102 | * we just send the errno to userspace since there isn't much |
| 103 | * else we can do. |
| 104 | */ |
| 105 | put_unused_fd(client_fd); |
| 106 | client_fd = PTR_ERR(new_file); |
| 107 | } else { |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 108 | *file = new_file; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 109 | } |
| 110 | |
Andreas Gruenbacher | 22aa425 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 111 | return client_fd; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 112 | } |
| 113 | |
Eric Paris | ecf6f5e | 2010-11-08 18:08:14 -0500 | [diff] [blame] | 114 | static int fill_event_metadata(struct fsnotify_group *group, |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 115 | struct fanotify_event_metadata *metadata, |
| 116 | struct fsnotify_event *fsn_event, |
| 117 | struct file **file) |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 118 | { |
Lino Sanfilippo | fdbf3ce | 2010-11-24 18:26:04 +0100 | [diff] [blame] | 119 | int ret = 0; |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 120 | struct fanotify_event_info *event; |
Lino Sanfilippo | fdbf3ce | 2010-11-24 18:26:04 +0100 | [diff] [blame] | 121 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 122 | pr_debug("%s: group=%p metadata=%p event=%p\n", __func__, |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 123 | group, metadata, fsn_event); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 124 | |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 125 | *file = NULL; |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 126 | event = container_of(fsn_event, struct fanotify_event_info, fse); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 127 | metadata->event_len = FAN_EVENT_METADATA_LEN; |
Eric Paris | 7d13162 | 2010-12-07 15:27:57 -0500 | [diff] [blame] | 128 | metadata->metadata_len = FAN_EVENT_METADATA_LEN; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 129 | metadata->vers = FANOTIFY_METADATA_VERSION; |
Dan Carpenter | de1e0c4 | 2013-07-08 15:59:40 -0700 | [diff] [blame] | 130 | metadata->reserved = 0; |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 131 | metadata->mask = fsn_event->mask & FAN_ALL_OUTGOING_EVENTS; |
Andreas Gruenbacher | 32c3263 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 132 | metadata->pid = pid_vnr(event->tgid); |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 133 | if (unlikely(fsn_event->mask & FAN_Q_OVERFLOW)) |
Lino Sanfilippo | fdbf3ce | 2010-11-24 18:26:04 +0100 | [diff] [blame] | 134 | metadata->fd = FAN_NOFD; |
| 135 | else { |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 136 | metadata->fd = create_fd(group, event, file); |
Lino Sanfilippo | fdbf3ce | 2010-11-24 18:26:04 +0100 | [diff] [blame] | 137 | if (metadata->fd < 0) |
| 138 | ret = metadata->fd; |
| 139 | } |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 140 | |
Lino Sanfilippo | fdbf3ce | 2010-11-24 18:26:04 +0100 | [diff] [blame] | 141 | return ret; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 142 | } |
| 143 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 144 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 145 | static struct fanotify_perm_event_info *dequeue_event( |
| 146 | struct fsnotify_group *group, int fd) |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 147 | { |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 148 | struct fanotify_perm_event_info *event, *return_e = NULL; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 149 | |
Jan Kara | 9573f79 | 2014-04-03 14:46:34 -0700 | [diff] [blame] | 150 | spin_lock(&group->fanotify_data.access_lock); |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 151 | list_for_each_entry(event, &group->fanotify_data.access_list, |
| 152 | fae.fse.list) { |
| 153 | if (event->fd != fd) |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 154 | continue; |
| 155 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 156 | list_del_init(&event->fae.fse.list); |
| 157 | return_e = event; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 158 | break; |
| 159 | } |
Jan Kara | 9573f79 | 2014-04-03 14:46:34 -0700 | [diff] [blame] | 160 | spin_unlock(&group->fanotify_data.access_lock); |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 161 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 162 | pr_debug("%s: found return_re=%p\n", __func__, return_e); |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 163 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 164 | return return_e; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | static int process_access_response(struct fsnotify_group *group, |
| 168 | struct fanotify_response *response_struct) |
| 169 | { |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 170 | struct fanotify_perm_event_info *event; |
| 171 | int fd = response_struct->fd; |
| 172 | int response = response_struct->response; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 173 | |
| 174 | pr_debug("%s: group=%p fd=%d response=%d\n", __func__, group, |
| 175 | fd, response); |
| 176 | /* |
| 177 | * make sure the response is valid, if invalid we do nothing and either |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 178 | * userspace can send a valid response or we will clean it up after the |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 179 | * timeout |
| 180 | */ |
| 181 | switch (response) { |
| 182 | case FAN_ALLOW: |
| 183 | case FAN_DENY: |
| 184 | break; |
| 185 | default: |
| 186 | return -EINVAL; |
| 187 | } |
| 188 | |
| 189 | if (fd < 0) |
| 190 | return -EINVAL; |
| 191 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 192 | event = dequeue_event(group, fd); |
| 193 | if (!event) |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 194 | return -ENOENT; |
| 195 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 196 | event->response = response; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 197 | wake_up(&group->fanotify_data.access_waitq); |
| 198 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 199 | return 0; |
| 200 | } |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 201 | #endif |
| 202 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 203 | static ssize_t copy_event_to_user(struct fsnotify_group *group, |
| 204 | struct fsnotify_event *event, |
| 205 | char __user *buf) |
| 206 | { |
| 207 | struct fanotify_event_metadata fanotify_event_metadata; |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 208 | struct file *f; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 209 | int fd, ret; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 210 | |
| 211 | pr_debug("%s: group=%p event=%p\n", __func__, group, event); |
| 212 | |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 213 | ret = fill_event_metadata(group, &fanotify_event_metadata, event, &f); |
Eric Paris | ecf6f5e | 2010-11-08 18:08:14 -0500 | [diff] [blame] | 214 | if (ret < 0) |
Jan Kara | d507816 | 2014-04-03 14:46:36 -0700 | [diff] [blame] | 215 | return ret; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 216 | |
Lino Sanfilippo | fdbf3ce | 2010-11-24 18:26:04 +0100 | [diff] [blame] | 217 | fd = fanotify_event_metadata.fd; |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 218 | ret = -EFAULT; |
| 219 | if (copy_to_user(buf, &fanotify_event_metadata, |
| 220 | fanotify_event_metadata.event_len)) |
| 221 | goto out_close_fd; |
| 222 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 223 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
Jan Kara | d507816 | 2014-04-03 14:46:36 -0700 | [diff] [blame] | 224 | if (event->mask & FAN_ALL_PERM_EVENTS) |
| 225 | FANOTIFY_PE(event)->fd = fd; |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 226 | #endif |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 227 | |
Al Viro | 3587b1b | 2012-11-18 19:19:00 +0000 | [diff] [blame] | 228 | if (fd != FAN_NOFD) |
| 229 | fd_install(fd, f); |
Eric Paris | 7d13162 | 2010-12-07 15:27:57 -0500 | [diff] [blame] | 230 | return fanotify_event_metadata.event_len; |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 231 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 232 | out_close_fd: |
Al Viro | 352e3b2 | 2012-08-19 12:30:45 -0400 | [diff] [blame] | 233 | if (fd != FAN_NOFD) { |
| 234 | put_unused_fd(fd); |
| 235 | fput(f); |
| 236 | } |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 237 | return ret; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | /* intofiy userspace file descriptor functions */ |
| 241 | static unsigned int fanotify_poll(struct file *file, poll_table *wait) |
| 242 | { |
| 243 | struct fsnotify_group *group = file->private_data; |
| 244 | int ret = 0; |
| 245 | |
| 246 | poll_wait(file, &group->notification_waitq, wait); |
| 247 | mutex_lock(&group->notification_mutex); |
| 248 | if (!fsnotify_notify_queue_is_empty(group)) |
| 249 | ret = POLLIN | POLLRDNORM; |
| 250 | mutex_unlock(&group->notification_mutex); |
| 251 | |
| 252 | return ret; |
| 253 | } |
| 254 | |
| 255 | static ssize_t fanotify_read(struct file *file, char __user *buf, |
| 256 | size_t count, loff_t *pos) |
| 257 | { |
| 258 | struct fsnotify_group *group; |
| 259 | struct fsnotify_event *kevent; |
| 260 | char __user *start; |
| 261 | int ret; |
Peter Zijlstra | 536ebe9ca | 2014-12-16 16:28:38 +0100 | [diff] [blame] | 262 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 263 | |
| 264 | start = buf; |
| 265 | group = file->private_data; |
| 266 | |
| 267 | pr_debug("%s: group=%p\n", __func__, group); |
| 268 | |
Peter Zijlstra | 536ebe9ca | 2014-12-16 16:28:38 +0100 | [diff] [blame] | 269 | add_wait_queue(&group->notification_waitq, &wait); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 270 | while (1) { |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 271 | mutex_lock(&group->notification_mutex); |
| 272 | kevent = get_one_event(group, count); |
| 273 | mutex_unlock(&group->notification_mutex); |
| 274 | |
Jan Kara | d8aaab4 | 2014-04-03 14:46:35 -0700 | [diff] [blame] | 275 | if (IS_ERR(kevent)) { |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 276 | ret = PTR_ERR(kevent); |
Jan Kara | d8aaab4 | 2014-04-03 14:46:35 -0700 | [diff] [blame] | 277 | break; |
| 278 | } |
| 279 | |
| 280 | if (!kevent) { |
| 281 | ret = -EAGAIN; |
| 282 | if (file->f_flags & O_NONBLOCK) |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 283 | break; |
Jan Kara | d8aaab4 | 2014-04-03 14:46:35 -0700 | [diff] [blame] | 284 | |
| 285 | ret = -ERESTARTSYS; |
| 286 | if (signal_pending(current)) |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 287 | break; |
Jan Kara | d8aaab4 | 2014-04-03 14:46:35 -0700 | [diff] [blame] | 288 | |
| 289 | if (start != buf) |
| 290 | break; |
Peter Zijlstra | 536ebe9ca | 2014-12-16 16:28:38 +0100 | [diff] [blame] | 291 | |
| 292 | wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 293 | continue; |
| 294 | } |
| 295 | |
Jan Kara | d8aaab4 | 2014-04-03 14:46:35 -0700 | [diff] [blame] | 296 | ret = copy_event_to_user(group, kevent, buf); |
| 297 | /* |
| 298 | * Permission events get queued to wait for response. Other |
| 299 | * events can be destroyed now. |
| 300 | */ |
Jan Kara | d507816 | 2014-04-03 14:46:36 -0700 | [diff] [blame] | 301 | if (!(kevent->mask & FAN_ALL_PERM_EVENTS)) { |
Jan Kara | d8aaab4 | 2014-04-03 14:46:35 -0700 | [diff] [blame] | 302 | fsnotify_destroy_event(group, kevent); |
Jan Kara | d507816 | 2014-04-03 14:46:36 -0700 | [diff] [blame] | 303 | if (ret < 0) |
| 304 | break; |
| 305 | } else { |
| 306 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 307 | if (ret < 0) { |
| 308 | FANOTIFY_PE(kevent)->response = FAN_DENY; |
| 309 | wake_up(&group->fanotify_data.access_waitq); |
| 310 | break; |
| 311 | } |
| 312 | spin_lock(&group->fanotify_data.access_lock); |
| 313 | list_add_tail(&kevent->list, |
| 314 | &group->fanotify_data.access_list); |
| 315 | spin_unlock(&group->fanotify_data.access_lock); |
| 316 | #endif |
| 317 | } |
Jan Kara | d8aaab4 | 2014-04-03 14:46:35 -0700 | [diff] [blame] | 318 | buf += ret; |
| 319 | count -= ret; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 320 | } |
Peter Zijlstra | 536ebe9ca | 2014-12-16 16:28:38 +0100 | [diff] [blame] | 321 | remove_wait_queue(&group->notification_waitq, &wait); |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 322 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 323 | if (start != buf && ret != -EFAULT) |
| 324 | ret = buf - start; |
| 325 | return ret; |
| 326 | } |
| 327 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 328 | static ssize_t fanotify_write(struct file *file, const char __user *buf, size_t count, loff_t *pos) |
| 329 | { |
| 330 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 331 | struct fanotify_response response = { .fd = -1, .response = -1 }; |
| 332 | struct fsnotify_group *group; |
| 333 | int ret; |
| 334 | |
| 335 | group = file->private_data; |
| 336 | |
| 337 | if (count > sizeof(response)) |
| 338 | count = sizeof(response); |
| 339 | |
| 340 | pr_debug("%s: group=%p count=%zu\n", __func__, group, count); |
| 341 | |
| 342 | if (copy_from_user(&response, buf, count)) |
| 343 | return -EFAULT; |
| 344 | |
| 345 | ret = process_access_response(group, &response); |
| 346 | if (ret < 0) |
| 347 | count = ret; |
| 348 | |
| 349 | return count; |
| 350 | #else |
| 351 | return -EINVAL; |
| 352 | #endif |
| 353 | } |
| 354 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 355 | static int fanotify_release(struct inode *ignored, struct file *file) |
| 356 | { |
| 357 | struct fsnotify_group *group = file->private_data; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 358 | |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 359 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 360 | struct fanotify_perm_event_info *event, *next; |
Andrew Morton | 19ba54f | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 361 | |
Jan Kara | 5838d44 | 2014-08-06 16:03:28 -0700 | [diff] [blame] | 362 | /* |
| 363 | * There may be still new events arriving in the notification queue |
| 364 | * but since userspace cannot use fanotify fd anymore, no event can |
| 365 | * enter or leave access_list by now. |
| 366 | */ |
Jan Kara | 9573f79 | 2014-04-03 14:46:34 -0700 | [diff] [blame] | 367 | spin_lock(&group->fanotify_data.access_lock); |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 368 | |
Lino Sanfilippo | 09e5f14 | 2010-11-19 10:58:07 +0100 | [diff] [blame] | 369 | atomic_inc(&group->fanotify_data.bypass_perm); |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 370 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 371 | list_for_each_entry_safe(event, next, &group->fanotify_data.access_list, |
| 372 | fae.fse.list) { |
| 373 | pr_debug("%s: found group=%p event=%p\n", __func__, group, |
| 374 | event); |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 375 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 376 | list_del_init(&event->fae.fse.list); |
| 377 | event->response = FAN_ALLOW; |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 378 | } |
Jan Kara | 9573f79 | 2014-04-03 14:46:34 -0700 | [diff] [blame] | 379 | spin_unlock(&group->fanotify_data.access_lock); |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 380 | |
Jan Kara | 5838d44 | 2014-08-06 16:03:28 -0700 | [diff] [blame] | 381 | /* |
| 382 | * Since bypass_perm is set, newly queued events will not wait for |
| 383 | * access response. Wake up the already sleeping ones now. |
| 384 | * synchronize_srcu() in fsnotify_destroy_group() will wait for all |
| 385 | * processes sleeping in fanotify_handle_event() waiting for access |
| 386 | * response and thus also for all permission events to be freed. |
| 387 | */ |
Eric Paris | 2eebf58 | 2010-08-18 12:25:50 -0400 | [diff] [blame] | 388 | wake_up(&group->fanotify_data.access_waitq); |
| 389 | #endif |
Eric Paris | 0a6b6bd | 2011-10-14 17:43:39 -0400 | [diff] [blame] | 390 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 391 | /* matches the fanotify_init->fsnotify_alloc_group */ |
Lino Sanfilippo | d8153d4 | 2011-06-14 17:29:45 +0200 | [diff] [blame] | 392 | fsnotify_destroy_group(group); |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 393 | |
| 394 | return 0; |
| 395 | } |
| 396 | |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 397 | static long fanotify_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
| 398 | { |
| 399 | struct fsnotify_group *group; |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 400 | struct fsnotify_event *fsn_event; |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 401 | void __user *p; |
| 402 | int ret = -ENOTTY; |
| 403 | size_t send_len = 0; |
| 404 | |
| 405 | group = file->private_data; |
| 406 | |
| 407 | p = (void __user *) arg; |
| 408 | |
| 409 | switch (cmd) { |
| 410 | case FIONREAD: |
| 411 | mutex_lock(&group->notification_mutex); |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 412 | list_for_each_entry(fsn_event, &group->notification_list, list) |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 413 | send_len += FAN_EVENT_METADATA_LEN; |
| 414 | mutex_unlock(&group->notification_mutex); |
| 415 | ret = put_user(send_len, (int __user *) p); |
| 416 | break; |
| 417 | } |
| 418 | |
| 419 | return ret; |
| 420 | } |
| 421 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 422 | static const struct file_operations fanotify_fops = { |
Cyrill Gorcunov | be77196 | 2012-12-17 16:05:12 -0800 | [diff] [blame] | 423 | .show_fdinfo = fanotify_show_fdinfo, |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 424 | .poll = fanotify_poll, |
| 425 | .read = fanotify_read, |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 426 | .write = fanotify_write, |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 427 | .fasync = NULL, |
| 428 | .release = fanotify_release, |
Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 429 | .unlocked_ioctl = fanotify_ioctl, |
| 430 | .compat_ioctl = fanotify_ioctl, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 431 | .llseek = noop_llseek, |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 432 | }; |
| 433 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 434 | static void fanotify_free_mark(struct fsnotify_mark *fsn_mark) |
| 435 | { |
| 436 | kmem_cache_free(fanotify_mark_cache, fsn_mark); |
| 437 | } |
| 438 | |
| 439 | static int fanotify_find_path(int dfd, const char __user *filename, |
| 440 | struct path *path, unsigned int flags) |
| 441 | { |
| 442 | int ret; |
| 443 | |
| 444 | pr_debug("%s: dfd=%d filename=%p flags=%x\n", __func__, |
| 445 | dfd, filename, flags); |
| 446 | |
| 447 | if (filename == NULL) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 448 | struct fd f = fdget(dfd); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 449 | |
| 450 | ret = -EBADF; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 451 | if (!f.file) |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 452 | goto out; |
| 453 | |
| 454 | ret = -ENOTDIR; |
| 455 | if ((flags & FAN_MARK_ONLYDIR) && |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 456 | !(S_ISDIR(file_inode(f.file)->i_mode))) { |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 457 | fdput(f); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 458 | goto out; |
| 459 | } |
| 460 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 461 | *path = f.file->f_path; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 462 | path_get(path); |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 463 | fdput(f); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 464 | } else { |
| 465 | unsigned int lookup_flags = 0; |
| 466 | |
| 467 | if (!(flags & FAN_MARK_DONT_FOLLOW)) |
| 468 | lookup_flags |= LOOKUP_FOLLOW; |
| 469 | if (flags & FAN_MARK_ONLYDIR) |
| 470 | lookup_flags |= LOOKUP_DIRECTORY; |
| 471 | |
| 472 | ret = user_path_at(dfd, filename, lookup_flags, path); |
| 473 | if (ret) |
| 474 | goto out; |
| 475 | } |
| 476 | |
| 477 | /* you can only watch an inode if you have read permissions on it */ |
| 478 | ret = inode_permission(path->dentry->d_inode, MAY_READ); |
| 479 | if (ret) |
| 480 | path_put(path); |
| 481 | out: |
| 482 | return ret; |
| 483 | } |
| 484 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 485 | static __u32 fanotify_mark_remove_from_mask(struct fsnotify_mark *fsn_mark, |
| 486 | __u32 mask, |
Lino Sanfilippo | 6dfbd14 | 2011-06-14 17:29:49 +0200 | [diff] [blame] | 487 | unsigned int flags, |
| 488 | int *destroy) |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 489 | { |
Lino Sanfilippo | d2c1874 | 2015-02-10 14:08:24 -0800 | [diff] [blame] | 490 | __u32 oldmask = 0; |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 491 | |
| 492 | spin_lock(&fsn_mark->lock); |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 493 | if (!(flags & FAN_MARK_IGNORED_MASK)) { |
Lino Sanfilippo | 66ba93c | 2015-02-10 14:08:27 -0800 | [diff] [blame] | 494 | __u32 tmask = fsn_mark->mask & ~mask; |
| 495 | |
| 496 | if (flags & FAN_MARK_ONDIR) |
| 497 | tmask &= ~FAN_ONDIR; |
| 498 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 499 | oldmask = fsn_mark->mask; |
Lino Sanfilippo | 66ba93c | 2015-02-10 14:08:27 -0800 | [diff] [blame] | 500 | fsnotify_set_mark_mask_locked(fsn_mark, tmask); |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 501 | } else { |
Lino Sanfilippo | d2c1874 | 2015-02-10 14:08:24 -0800 | [diff] [blame] | 502 | __u32 tmask = fsn_mark->ignored_mask & ~mask; |
Lino Sanfilippo | 66ba93c | 2015-02-10 14:08:27 -0800 | [diff] [blame] | 503 | if (flags & FAN_MARK_ONDIR) |
| 504 | tmask &= ~FAN_ONDIR; |
Lino Sanfilippo | d2c1874 | 2015-02-10 14:08:24 -0800 | [diff] [blame] | 505 | |
| 506 | fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask); |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 507 | } |
Lino Sanfilippo | a118449 | 2015-02-10 14:08:21 -0800 | [diff] [blame] | 508 | *destroy = !(fsn_mark->mask | fsn_mark->ignored_mask); |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 509 | spin_unlock(&fsn_mark->lock); |
| 510 | |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 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; |
Lino Sanfilippo | 6dfbd14 | 2011-06-14 17:29:49 +0200 | [diff] [blame] | 520 | int destroy_mark; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 521 | |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 522 | mutex_lock(&group->mark_mutex); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 523 | fsn_mark = fsnotify_find_vfsmount_mark(group, mnt); |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 524 | if (!fsn_mark) { |
| 525 | mutex_unlock(&group->mark_mutex); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 526 | return -ENOENT; |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 527 | } |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 528 | |
Lino Sanfilippo | 6dfbd14 | 2011-06-14 17:29:49 +0200 | [diff] [blame] | 529 | removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags, |
| 530 | &destroy_mark); |
| 531 | if (destroy_mark) |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 532 | fsnotify_destroy_mark_locked(fsn_mark, group); |
| 533 | mutex_unlock(&group->mark_mutex); |
Lino Sanfilippo | 6dfbd14 | 2011-06-14 17:29:49 +0200 | [diff] [blame] | 534 | |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 535 | fsnotify_put_mark(fsn_mark); |
Al Viro | c63181e | 2011-11-25 02:35:16 -0500 | [diff] [blame] | 536 | if (removed & real_mount(mnt)->mnt_fsnotify_mask) |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 537 | fsnotify_recalc_vfsmount_mask(mnt); |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 538 | |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 539 | return 0; |
| 540 | } |
| 541 | |
| 542 | static int fanotify_remove_inode_mark(struct fsnotify_group *group, |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 543 | struct inode *inode, __u32 mask, |
| 544 | unsigned int flags) |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 545 | { |
| 546 | struct fsnotify_mark *fsn_mark = NULL; |
| 547 | __u32 removed; |
Lino Sanfilippo | 6dfbd14 | 2011-06-14 17:29:49 +0200 | [diff] [blame] | 548 | int destroy_mark; |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 549 | |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 550 | mutex_lock(&group->mark_mutex); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 551 | fsn_mark = fsnotify_find_inode_mark(group, inode); |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 552 | if (!fsn_mark) { |
| 553 | mutex_unlock(&group->mark_mutex); |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 554 | return -ENOENT; |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 555 | } |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 556 | |
Lino Sanfilippo | 6dfbd14 | 2011-06-14 17:29:49 +0200 | [diff] [blame] | 557 | removed = fanotify_mark_remove_from_mask(fsn_mark, mask, flags, |
| 558 | &destroy_mark); |
| 559 | if (destroy_mark) |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 560 | fsnotify_destroy_mark_locked(fsn_mark, group); |
| 561 | mutex_unlock(&group->mark_mutex); |
| 562 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 563 | /* matches the fsnotify_find_inode_mark() */ |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 564 | fsnotify_put_mark(fsn_mark); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 565 | if (removed & inode->i_fsnotify_mask) |
| 566 | fsnotify_recalc_inode_mask(inode); |
Andreas Gruenbacher | 088b09b | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 567 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 568 | return 0; |
| 569 | } |
| 570 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 571 | static __u32 fanotify_mark_add_to_mask(struct fsnotify_mark *fsn_mark, |
| 572 | __u32 mask, |
| 573 | unsigned int flags) |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 574 | { |
Eric Paris | 192ca4d | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 575 | __u32 oldmask = -1; |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 576 | |
| 577 | spin_lock(&fsn_mark->lock); |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 578 | if (!(flags & FAN_MARK_IGNORED_MASK)) { |
Lino Sanfilippo | 66ba93c | 2015-02-10 14:08:27 -0800 | [diff] [blame] | 579 | __u32 tmask = fsn_mark->mask | mask; |
| 580 | |
| 581 | if (flags & FAN_MARK_ONDIR) |
| 582 | tmask |= FAN_ONDIR; |
| 583 | |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 584 | oldmask = fsn_mark->mask; |
Lino Sanfilippo | 66ba93c | 2015-02-10 14:08:27 -0800 | [diff] [blame] | 585 | fsnotify_set_mark_mask_locked(fsn_mark, tmask); |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 586 | } else { |
Eric Paris | 192ca4d | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 587 | __u32 tmask = fsn_mark->ignored_mask | mask; |
Lino Sanfilippo | 66ba93c | 2015-02-10 14:08:27 -0800 | [diff] [blame] | 588 | if (flags & FAN_MARK_ONDIR) |
| 589 | tmask |= FAN_ONDIR; |
| 590 | |
Eric Paris | 192ca4d | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 591 | fsnotify_set_mark_ignored_mask_locked(fsn_mark, tmask); |
Eric Paris | c9778a9 | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 592 | if (flags & FAN_MARK_IGNORED_SURV_MODIFY) |
| 593 | fsn_mark->flags |= FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY; |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 594 | } |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 595 | spin_unlock(&fsn_mark->lock); |
| 596 | |
| 597 | return mask & ~oldmask; |
| 598 | } |
| 599 | |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 600 | static struct fsnotify_mark *fanotify_add_new_mark(struct fsnotify_group *group, |
| 601 | struct inode *inode, |
| 602 | struct vfsmount *mnt) |
| 603 | { |
| 604 | struct fsnotify_mark *mark; |
| 605 | int ret; |
| 606 | |
| 607 | if (atomic_read(&group->num_marks) > group->fanotify_data.max_marks) |
| 608 | return ERR_PTR(-ENOSPC); |
| 609 | |
| 610 | mark = kmem_cache_alloc(fanotify_mark_cache, GFP_KERNEL); |
| 611 | if (!mark) |
| 612 | return ERR_PTR(-ENOMEM); |
| 613 | |
| 614 | fsnotify_init_mark(mark, fanotify_free_mark); |
| 615 | ret = fsnotify_add_mark_locked(mark, group, inode, mnt, 0); |
| 616 | if (ret) { |
| 617 | fsnotify_put_mark(mark); |
| 618 | return ERR_PTR(ret); |
| 619 | } |
| 620 | |
| 621 | return mark; |
| 622 | } |
| 623 | |
| 624 | |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 625 | static int fanotify_add_vfsmount_mark(struct fsnotify_group *group, |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 626 | struct vfsmount *mnt, __u32 mask, |
| 627 | unsigned int flags) |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 628 | { |
| 629 | struct fsnotify_mark *fsn_mark; |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 630 | __u32 added; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 631 | |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 632 | mutex_lock(&group->mark_mutex); |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 633 | fsn_mark = fsnotify_find_vfsmount_mark(group, mnt); |
| 634 | if (!fsn_mark) { |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 635 | fsn_mark = fanotify_add_new_mark(group, NULL, mnt); |
| 636 | if (IS_ERR(fsn_mark)) { |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 637 | mutex_unlock(&group->mark_mutex); |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 638 | return PTR_ERR(fsn_mark); |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 639 | } |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 640 | } |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 641 | added = fanotify_mark_add_to_mask(fsn_mark, mask, flags); |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 642 | mutex_unlock(&group->mark_mutex); |
Lino Sanfilippo | fa218ab | 2010-11-09 18:18:16 +0100 | [diff] [blame] | 643 | |
Al Viro | c63181e | 2011-11-25 02:35:16 -0500 | [diff] [blame] | 644 | if (added & ~real_mount(mnt)->mnt_fsnotify_mask) |
Eric Paris | 43709a2 | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 645 | fsnotify_recalc_vfsmount_mask(mnt); |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 646 | |
Lino Sanfilippo | fa218ab | 2010-11-09 18:18:16 +0100 | [diff] [blame] | 647 | fsnotify_put_mark(fsn_mark); |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 648 | return 0; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 649 | } |
| 650 | |
Andreas Gruenbacher | 52202df | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 651 | static int fanotify_add_inode_mark(struct fsnotify_group *group, |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 652 | struct inode *inode, __u32 mask, |
| 653 | unsigned int flags) |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 654 | { |
| 655 | struct fsnotify_mark *fsn_mark; |
Andreas Gruenbacher | 912ee3946 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 656 | __u32 added; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 657 | |
| 658 | pr_debug("%s: group=%p inode=%p\n", __func__, group, inode); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 659 | |
Eric Paris | 5322a59 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 660 | /* |
| 661 | * If some other task has this inode open for write we should not add |
| 662 | * an ignored mark, unless that ignored mark is supposed to survive |
| 663 | * modification changes anyway. |
| 664 | */ |
| 665 | if ((flags & FAN_MARK_IGNORED_MASK) && |
| 666 | !(flags & FAN_MARK_IGNORED_SURV_MODIFY) && |
| 667 | (atomic_read(&inode->i_writecount) > 0)) |
| 668 | return 0; |
| 669 | |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 670 | mutex_lock(&group->mark_mutex); |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 671 | fsn_mark = fsnotify_find_inode_mark(group, inode); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 672 | if (!fsn_mark) { |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 673 | fsn_mark = fanotify_add_new_mark(group, inode, NULL); |
| 674 | if (IS_ERR(fsn_mark)) { |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 675 | mutex_unlock(&group->mark_mutex); |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 676 | return PTR_ERR(fsn_mark); |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 677 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 678 | } |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 679 | added = fanotify_mark_add_to_mask(fsn_mark, mask, flags); |
Lino Sanfilippo | 7b18527 | 2013-07-08 15:59:42 -0700 | [diff] [blame] | 680 | mutex_unlock(&group->mark_mutex); |
Lino Sanfilippo | fa218ab | 2010-11-09 18:18:16 +0100 | [diff] [blame] | 681 | |
Eric Paris | 43709a2 | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 682 | if (added & ~inode->i_fsnotify_mask) |
| 683 | fsnotify_recalc_inode_mask(inode); |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 684 | |
Lino Sanfilippo | fa218ab | 2010-11-09 18:18:16 +0100 | [diff] [blame] | 685 | fsnotify_put_mark(fsn_mark); |
Lino Sanfilippo | 5e9c070c | 2013-07-08 15:59:43 -0700 | [diff] [blame] | 686 | return 0; |
Eric Paris | 8882627 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 687 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 688 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 689 | /* fanotify syscalls */ |
Eric Paris | 08ae893 | 2010-05-27 09:41:40 -0400 | [diff] [blame] | 690 | SYSCALL_DEFINE2(fanotify_init, unsigned int, flags, unsigned int, event_f_flags) |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 691 | { |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 692 | struct fsnotify_group *group; |
| 693 | int f_flags, fd; |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 694 | struct user_struct *user; |
Jan Kara | ff57cd5 | 2014-02-21 19:14:11 +0100 | [diff] [blame] | 695 | struct fanotify_event_info *oevent; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 696 | |
Eric Paris | 08ae893 | 2010-05-27 09:41:40 -0400 | [diff] [blame] | 697 | pr_debug("%s: flags=%d event_f_flags=%d\n", |
| 698 | __func__, flags, event_f_flags); |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 699 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 700 | if (!capable(CAP_SYS_ADMIN)) |
Andreas Gruenbacher | a2f13ad | 2010-08-24 12:58:54 +0200 | [diff] [blame] | 701 | return -EPERM; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 702 | |
| 703 | if (flags & ~FAN_ALL_INIT_FLAGS) |
| 704 | return -EINVAL; |
| 705 | |
Heinrich Schuchardt | 48149e9 | 2014-06-04 16:05:44 -0700 | [diff] [blame] | 706 | if (event_f_flags & ~FANOTIFY_INIT_ALL_EVENT_F_BITS) |
| 707 | return -EINVAL; |
| 708 | |
| 709 | switch (event_f_flags & O_ACCMODE) { |
| 710 | case O_RDONLY: |
| 711 | case O_RDWR: |
| 712 | case O_WRONLY: |
| 713 | break; |
| 714 | default: |
| 715 | return -EINVAL; |
| 716 | } |
| 717 | |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 718 | user = get_current_user(); |
| 719 | if (atomic_read(&user->fanotify_listeners) > FANOTIFY_DEFAULT_MAX_LISTENERS) { |
| 720 | free_uid(user); |
| 721 | return -EMFILE; |
| 722 | } |
| 723 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 724 | f_flags = O_RDWR | FMODE_NONOTIFY; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 725 | if (flags & FAN_CLOEXEC) |
| 726 | f_flags |= O_CLOEXEC; |
| 727 | if (flags & FAN_NONBLOCK) |
| 728 | f_flags |= O_NONBLOCK; |
| 729 | |
| 730 | /* fsnotify_alloc_group takes a ref. Dropped in fanotify_release */ |
| 731 | group = fsnotify_alloc_group(&fanotify_fsnotify_ops); |
Eric Paris | 2637919 | 2010-11-23 23:48:26 -0500 | [diff] [blame] | 732 | if (IS_ERR(group)) { |
| 733 | free_uid(user); |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 734 | return PTR_ERR(group); |
Eric Paris | 2637919 | 2010-11-23 23:48:26 -0500 | [diff] [blame] | 735 | } |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 736 | |
Eric Paris | 4afeff8 | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 737 | group->fanotify_data.user = user; |
| 738 | atomic_inc(&user->fanotify_listeners); |
| 739 | |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 740 | oevent = fanotify_alloc_event(NULL, FS_Q_OVERFLOW, NULL); |
Jan Kara | ff57cd5 | 2014-02-21 19:14:11 +0100 | [diff] [blame] | 741 | if (unlikely(!oevent)) { |
| 742 | fd = -ENOMEM; |
| 743 | goto out_destroy_group; |
| 744 | } |
| 745 | group->overflow_event = &oevent->fse; |
Jan Kara | ff57cd5 | 2014-02-21 19:14:11 +0100 | [diff] [blame] | 746 | |
Will Woods | 1e2ee49 | 2014-05-06 12:50:10 -0700 | [diff] [blame] | 747 | if (force_o_largefile()) |
| 748 | event_f_flags |= O_LARGEFILE; |
Eric Paris | 80af258 | 2010-07-28 10:18:37 -0400 | [diff] [blame] | 749 | group->fanotify_data.f_flags = event_f_flags; |
Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 750 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
Jan Kara | 9573f79 | 2014-04-03 14:46:34 -0700 | [diff] [blame] | 751 | spin_lock_init(&group->fanotify_data.access_lock); |
Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 752 | init_waitqueue_head(&group->fanotify_data.access_waitq); |
| 753 | INIT_LIST_HEAD(&group->fanotify_data.access_list); |
Lino Sanfilippo | 09e5f14 | 2010-11-19 10:58:07 +0100 | [diff] [blame] | 754 | atomic_set(&group->fanotify_data.bypass_perm, 0); |
Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 755 | #endif |
Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 756 | switch (flags & FAN_ALL_CLASS_BITS) { |
| 757 | case FAN_CLASS_NOTIF: |
| 758 | group->priority = FS_PRIO_0; |
| 759 | break; |
| 760 | case FAN_CLASS_CONTENT: |
| 761 | group->priority = FS_PRIO_1; |
| 762 | break; |
| 763 | case FAN_CLASS_PRE_CONTENT: |
| 764 | group->priority = FS_PRIO_2; |
| 765 | break; |
| 766 | default: |
| 767 | fd = -EINVAL; |
Lino Sanfilippo | d8153d4 | 2011-06-14 17:29:45 +0200 | [diff] [blame] | 768 | goto out_destroy_group; |
Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 769 | } |
Eric Paris | cb2d429 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 770 | |
Eric Paris | 5dd03f5 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 771 | if (flags & FAN_UNLIMITED_QUEUE) { |
| 772 | fd = -EPERM; |
| 773 | if (!capable(CAP_SYS_ADMIN)) |
Lino Sanfilippo | d8153d4 | 2011-06-14 17:29:45 +0200 | [diff] [blame] | 774 | goto out_destroy_group; |
Eric Paris | 5dd03f5 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 775 | group->max_events = UINT_MAX; |
| 776 | } else { |
| 777 | group->max_events = FANOTIFY_DEFAULT_MAX_EVENTS; |
| 778 | } |
Eric Paris | 2529a0d | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 779 | |
Eric Paris | ac7e22d | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 780 | if (flags & FAN_UNLIMITED_MARKS) { |
| 781 | fd = -EPERM; |
| 782 | if (!capable(CAP_SYS_ADMIN)) |
Lino Sanfilippo | d8153d4 | 2011-06-14 17:29:45 +0200 | [diff] [blame] | 783 | goto out_destroy_group; |
Eric Paris | ac7e22d | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 784 | group->fanotify_data.max_marks = UINT_MAX; |
| 785 | } else { |
| 786 | group->fanotify_data.max_marks = FANOTIFY_DEFAULT_MAX_MARKS; |
| 787 | } |
Eric Paris | e7099d8 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 788 | |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 789 | fd = anon_inode_getfd("[fanotify]", &fanotify_fops, group, f_flags); |
| 790 | if (fd < 0) |
Lino Sanfilippo | d8153d4 | 2011-06-14 17:29:45 +0200 | [diff] [blame] | 791 | goto out_destroy_group; |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 792 | |
| 793 | return fd; |
| 794 | |
Lino Sanfilippo | d8153d4 | 2011-06-14 17:29:45 +0200 | [diff] [blame] | 795 | out_destroy_group: |
| 796 | fsnotify_destroy_group(group); |
Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 797 | return fd; |
Eric Paris | 11637e4 | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 798 | } |
Eric Paris | bbaa416 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 799 | |
Al Viro | 4a0fd5b | 2013-01-21 15:16:58 -0500 | [diff] [blame] | 800 | SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags, |
| 801 | __u64, mask, int, dfd, |
| 802 | const char __user *, pathname) |
Eric Paris | bbaa416 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 803 | { |
Eric Paris | 0ff21db | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 804 | struct inode *inode = NULL; |
| 805 | struct vfsmount *mnt = NULL; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 806 | struct fsnotify_group *group; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 807 | struct fd f; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 808 | struct path path; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 809 | int ret; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 810 | |
| 811 | pr_debug("%s: fanotify_fd=%d flags=%x dfd=%d pathname=%p mask=%llx\n", |
| 812 | __func__, fanotify_fd, flags, dfd, pathname, mask); |
| 813 | |
| 814 | /* we only use the lower 32 bits as of right now. */ |
| 815 | if (mask & ((__u64)0xffffffff << 32)) |
| 816 | return -EINVAL; |
| 817 | |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 818 | if (flags & ~FAN_ALL_MARK_FLAGS) |
| 819 | return -EINVAL; |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 820 | switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE | FAN_MARK_FLUSH)) { |
Lino Sanfilippo | 1734dee | 2010-11-22 18:46:33 +0100 | [diff] [blame] | 821 | case FAN_MARK_ADD: /* fallthrough */ |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 822 | case FAN_MARK_REMOVE: |
Lino Sanfilippo | 1734dee | 2010-11-22 18:46:33 +0100 | [diff] [blame] | 823 | if (!mask) |
| 824 | return -EINVAL; |
Heinrich Schuchardt | cc299a9 | 2014-06-04 16:05:43 -0700 | [diff] [blame] | 825 | break; |
Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 826 | case FAN_MARK_FLUSH: |
Heinrich Schuchardt | cc299a9 | 2014-06-04 16:05:43 -0700 | [diff] [blame] | 827 | if (flags & ~(FAN_MARK_MOUNT | FAN_MARK_FLUSH)) |
| 828 | return -EINVAL; |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 829 | break; |
| 830 | default: |
| 831 | return -EINVAL; |
| 832 | } |
Eric Paris | 8fcd652 | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 833 | |
| 834 | if (mask & FAN_ONDIR) { |
| 835 | flags |= FAN_MARK_ONDIR; |
| 836 | mask &= ~FAN_ONDIR; |
| 837 | } |
| 838 | |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 839 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 840 | if (mask & ~(FAN_ALL_EVENTS | FAN_ALL_PERM_EVENTS | FAN_EVENT_ON_CHILD)) |
| 841 | #else |
Andreas Gruenbacher | 88380fe | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 842 | if (mask & ~(FAN_ALL_EVENTS | FAN_EVENT_ON_CHILD)) |
Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 843 | #endif |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 844 | return -EINVAL; |
| 845 | |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 846 | f = fdget(fanotify_fd); |
| 847 | if (unlikely(!f.file)) |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 848 | return -EBADF; |
| 849 | |
| 850 | /* verify that this is indeed an fanotify instance */ |
| 851 | ret = -EINVAL; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 852 | if (unlikely(f.file->f_op != &fanotify_fops)) |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 853 | goto fput_and_out; |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 854 | group = f.file->private_data; |
Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 855 | |
| 856 | /* |
| 857 | * group->priority == FS_PRIO_0 == FAN_CLASS_NOTIF. These are not |
| 858 | * allowed to set permissions events. |
| 859 | */ |
| 860 | ret = -EINVAL; |
| 861 | if (mask & FAN_ALL_PERM_EVENTS && |
| 862 | group->priority == FS_PRIO_0) |
| 863 | goto fput_and_out; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 864 | |
Heinrich Schuchardt | 0a8dd2d | 2014-06-04 16:05:40 -0700 | [diff] [blame] | 865 | if (flags & FAN_MARK_FLUSH) { |
| 866 | ret = 0; |
| 867 | if (flags & FAN_MARK_MOUNT) |
| 868 | fsnotify_clear_vfsmount_marks_by_group(group); |
| 869 | else |
| 870 | fsnotify_clear_inode_marks_by_group(group); |
| 871 | goto fput_and_out; |
| 872 | } |
| 873 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 874 | ret = fanotify_find_path(dfd, pathname, &path, flags); |
| 875 | if (ret) |
| 876 | goto fput_and_out; |
| 877 | |
| 878 | /* 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] | 879 | if (!(flags & FAN_MARK_MOUNT)) |
Eric Paris | 0ff21db | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 880 | inode = path.dentry->d_inode; |
| 881 | else |
| 882 | mnt = path.mnt; |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 883 | |
| 884 | /* create/update an inode mark */ |
Heinrich Schuchardt | 0a8dd2d | 2014-06-04 16:05:40 -0700 | [diff] [blame] | 885 | switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE)) { |
Andreas Gruenbacher | c6223f4 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 886 | case FAN_MARK_ADD: |
Andreas Gruenbacher | eac8e9e | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 887 | if (flags & FAN_MARK_MOUNT) |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 888 | ret = fanotify_add_vfsmount_mark(group, mnt, mask, flags); |
Eric Paris | 0ff21db | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 889 | else |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 890 | ret = fanotify_add_inode_mark(group, inode, mask, flags); |
Andreas Gruenbacher | c6223f4 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 891 | break; |
| 892 | case FAN_MARK_REMOVE: |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 893 | if (flags & FAN_MARK_MOUNT) |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 894 | ret = fanotify_remove_vfsmount_mark(group, mnt, mask, flags); |
Andreas Gruenbacher | f364019 | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 895 | else |
Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 896 | ret = fanotify_remove_inode_mark(group, inode, mask, flags); |
Andreas Gruenbacher | c6223f4 | 2009-12-17 21:24:28 -0500 | [diff] [blame] | 897 | break; |
| 898 | default: |
| 899 | ret = -EINVAL; |
| 900 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 901 | |
| 902 | path_put(&path); |
| 903 | fput_and_out: |
Al Viro | 2903ff0 | 2012-08-28 12:52:22 -0400 | [diff] [blame] | 904 | fdput(f); |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 905 | return ret; |
Eric Paris | bbaa416 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 906 | } |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 907 | |
Al Viro | 91c2e0b | 2013-03-05 20:10:59 -0500 | [diff] [blame] | 908 | #ifdef CONFIG_COMPAT |
| 909 | COMPAT_SYSCALL_DEFINE6(fanotify_mark, |
| 910 | int, fanotify_fd, unsigned int, flags, |
| 911 | __u32, mask0, __u32, mask1, int, dfd, |
| 912 | const char __user *, pathname) |
| 913 | { |
| 914 | return sys_fanotify_mark(fanotify_fd, flags, |
| 915 | #ifdef __BIG_ENDIAN |
Al Viro | 91c2e0b | 2013-03-05 20:10:59 -0500 | [diff] [blame] | 916 | ((__u64)mask0 << 32) | mask1, |
Heiko Carstens | 592f6b8 | 2014-01-27 17:07:19 -0800 | [diff] [blame] | 917 | #else |
| 918 | ((__u64)mask1 << 32) | mask0, |
Al Viro | 91c2e0b | 2013-03-05 20:10:59 -0500 | [diff] [blame] | 919 | #endif |
| 920 | dfd, pathname); |
| 921 | } |
| 922 | #endif |
| 923 | |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 924 | /* |
Justin P. Mattock | ae0e47f | 2011-03-01 15:06:02 +0100 | [diff] [blame] | 925 | * fanotify_user_setup - Our initialization function. Note that we cannot return |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 926 | * error because we have compiled-in VFS hooks. So an (unlikely) failure here |
| 927 | * must result in panic(). |
| 928 | */ |
| 929 | static int __init fanotify_user_setup(void) |
| 930 | { |
| 931 | fanotify_mark_cache = KMEM_CACHE(fsnotify_mark, SLAB_PANIC); |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame] | 932 | fanotify_event_cachep = KMEM_CACHE(fanotify_event_info, SLAB_PANIC); |
Jan Kara | f083441 | 2014-04-03 14:46:33 -0700 | [diff] [blame] | 933 | #ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS |
| 934 | fanotify_perm_event_cachep = KMEM_CACHE(fanotify_perm_event_info, |
| 935 | SLAB_PANIC); |
| 936 | #endif |
Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 937 | |
| 938 | return 0; |
| 939 | } |
| 940 | device_initcall(fanotify_user_setup); |