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