Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 2 | /* |
| 3 | * (C) 2001 Clemson University and The University of Chicago |
| 4 | * |
| 5 | * Changes by Acxiom Corporation to add protocol version to kernel |
| 6 | * communication, Copyright Acxiom Corporation, 2005. |
| 7 | * |
| 8 | * See COPYING in top-level directory. |
| 9 | */ |
| 10 | |
| 11 | #include "protocol.h" |
Mike Marshall | 575e946 | 2015-12-04 12:56:14 -0500 | [diff] [blame] | 12 | #include "orangefs-kernel.h" |
| 13 | #include "orangefs-dev-proto.h" |
| 14 | #include "orangefs-bufmap.h" |
Martin Brandenburg | 44f4641 | 2016-08-15 11:38:36 -0400 | [diff] [blame] | 15 | #include "orangefs-debugfs.h" |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 16 | |
| 17 | #include <linux/debugfs.h> |
| 18 | #include <linux/slab.h> |
| 19 | |
| 20 | /* this file implements the /dev/pvfs2-req device node */ |
| 21 | |
Martin Brandenburg | 482664d | 2016-08-12 12:02:31 -0400 | [diff] [blame] | 22 | uint32_t orangefs_userspace_version; |
Martin Brandenburg | f2ee3b7 | 2016-08-09 15:59:26 -0400 | [diff] [blame] | 23 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 24 | static int open_access_count; |
| 25 | |
Martin Brandenburg | a0fe051 | 2016-08-15 15:21:16 -0400 | [diff] [blame] | 26 | static DEFINE_MUTEX(devreq_mutex); |
| 27 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 28 | #define DUMP_DEVICE_ERROR() \ |
| 29 | do { \ |
| 30 | gossip_err("*****************************************************\n");\ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 31 | gossip_err("ORANGEFS Device Error: You cannot open the device file "); \ |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 32 | gossip_err("\n/dev/%s more than once. Please make sure that\nthere " \ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 33 | "are no ", ORANGEFS_REQDEVICE_NAME); \ |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 34 | gossip_err("instances of a program using this device\ncurrently " \ |
| 35 | "running. (You must verify this!)\n"); \ |
| 36 | gossip_err("For example, you can use the lsof program as follows:\n");\ |
| 37 | gossip_err("'lsof | grep %s' (run this as root)\n", \ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 38 | ORANGEFS_REQDEVICE_NAME); \ |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 39 | gossip_err(" open_access_count = %d\n", open_access_count); \ |
| 40 | gossip_err("*****************************************************\n");\ |
| 41 | } while (0) |
| 42 | |
| 43 | static int hash_func(__u64 tag, int table_size) |
| 44 | { |
Mike Marshall | 2c590d5 | 2015-07-24 10:37:15 -0400 | [diff] [blame] | 45 | return do_div(tag, (unsigned int)table_size); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 46 | } |
| 47 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 48 | static void orangefs_devreq_add_op(struct orangefs_kernel_op_s *op) |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 49 | { |
| 50 | int index = hash_func(op->tag, hash_table_size); |
| 51 | |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 52 | list_add_tail(&op->list, &orangefs_htable_ops_in_progress[index]); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 53 | } |
| 54 | |
Mike Marshall | ca9f518 | 2016-02-26 10:21:12 -0500 | [diff] [blame] | 55 | /* |
| 56 | * find the op with this tag and remove it from the in progress |
| 57 | * hash table. |
| 58 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 59 | static struct orangefs_kernel_op_s *orangefs_devreq_remove_op(__u64 tag) |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 60 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 61 | struct orangefs_kernel_op_s *op, *next; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 62 | int index; |
| 63 | |
| 64 | index = hash_func(tag, hash_table_size); |
| 65 | |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 66 | spin_lock(&orangefs_htable_ops_in_progress_lock); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 67 | list_for_each_entry_safe(op, |
| 68 | next, |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 69 | &orangefs_htable_ops_in_progress[index], |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 70 | list) { |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame] | 71 | if (op->tag == tag && !op_state_purged(op) && |
| 72 | !op_state_given_up(op)) { |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 73 | list_del_init(&op->list); |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 74 | spin_unlock(&orangefs_htable_ops_in_progress_lock); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 75 | return op; |
| 76 | } |
| 77 | } |
| 78 | |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 79 | spin_unlock(&orangefs_htable_ops_in_progress_lock); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 80 | return NULL; |
| 81 | } |
| 82 | |
Martin Brandenburg | acfcbaf | 2016-03-05 13:17:39 -0500 | [diff] [blame] | 83 | /* Returns whether any FS are still pending remounted */ |
| 84 | static int mark_all_pending_mounts(void) |
| 85 | { |
| 86 | int unmounted = 1; |
| 87 | struct orangefs_sb_info_s *orangefs_sb = NULL; |
| 88 | |
| 89 | spin_lock(&orangefs_superblocks_lock); |
| 90 | list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) { |
| 91 | /* All of these file system require a remount */ |
| 92 | orangefs_sb->mount_pending = 1; |
| 93 | unmounted = 0; |
| 94 | } |
| 95 | spin_unlock(&orangefs_superblocks_lock); |
| 96 | return unmounted; |
| 97 | } |
| 98 | |
| 99 | /* |
| 100 | * Determine if a given file system needs to be remounted or not |
| 101 | * Returns -1 on error |
| 102 | * 0 if already mounted |
| 103 | * 1 if needs remount |
| 104 | */ |
| 105 | static int fs_mount_pending(__s32 fsid) |
| 106 | { |
| 107 | int mount_pending = -1; |
| 108 | struct orangefs_sb_info_s *orangefs_sb = NULL; |
| 109 | |
| 110 | spin_lock(&orangefs_superblocks_lock); |
| 111 | list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) { |
| 112 | if (orangefs_sb->fs_id == fsid) { |
| 113 | mount_pending = orangefs_sb->mount_pending; |
| 114 | break; |
| 115 | } |
| 116 | } |
| 117 | spin_unlock(&orangefs_superblocks_lock); |
| 118 | return mount_pending; |
| 119 | } |
| 120 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 121 | static int orangefs_devreq_open(struct inode *inode, struct file *file) |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 122 | { |
| 123 | int ret = -EINVAL; |
| 124 | |
Jann Horn | 78fee0b | 2016-06-25 01:51:52 +0200 | [diff] [blame] | 125 | /* in order to ensure that the filesystem driver sees correct UIDs */ |
| 126 | if (file->f_cred->user_ns != &init_user_ns) { |
| 127 | gossip_err("%s: device cannot be opened outside init_user_ns\n", |
| 128 | __func__); |
| 129 | goto out; |
| 130 | } |
| 131 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 132 | if (!(file->f_flags & O_NONBLOCK)) { |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 133 | gossip_err("%s: device cannot be opened in blocking mode\n", |
| 134 | __func__); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 135 | goto out; |
| 136 | } |
| 137 | ret = -EACCES; |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 138 | gossip_debug(GOSSIP_DEV_DEBUG, "client-core: opening device\n"); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 139 | mutex_lock(&devreq_mutex); |
| 140 | |
| 141 | if (open_access_count == 0) { |
Al Viro | fee25ce | 2016-01-22 19:46:08 -0500 | [diff] [blame] | 142 | open_access_count = 1; |
Al Viro | fb6d252 | 2016-01-19 12:00:26 -0500 | [diff] [blame] | 143 | ret = 0; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 144 | } else { |
| 145 | DUMP_DEVICE_ERROR(); |
| 146 | } |
| 147 | mutex_unlock(&devreq_mutex); |
| 148 | |
| 149 | out: |
| 150 | |
| 151 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 152 | "pvfs2-client-core: open device complete (ret = %d)\n", |
| 153 | ret); |
| 154 | return ret; |
| 155 | } |
| 156 | |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 157 | /* Function for read() callers into the device */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 158 | static ssize_t orangefs_devreq_read(struct file *file, |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 159 | char __user *buf, |
| 160 | size_t count, loff_t *offset) |
| 161 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 162 | struct orangefs_kernel_op_s *op, *temp; |
| 163 | __s32 proto_ver = ORANGEFS_KERNEL_PROTO_VERSION; |
| 164 | static __s32 magic = ORANGEFS_DEVREQ_MAGIC; |
Martin Brandenburg | a0ec1de | 2018-01-22 15:44:52 -0500 | [diff] [blame] | 165 | struct orangefs_kernel_op_s *cur_op; |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 166 | unsigned long ret; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 167 | |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 168 | /* We do not support blocking IO. */ |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 169 | if (!(file->f_flags & O_NONBLOCK)) { |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 170 | gossip_err("%s: blocking read from client-core.\n", |
| 171 | __func__); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 172 | return -EINVAL; |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /* |
Martin Brandenburg | a762ae6 | 2015-12-15 14:22:06 -0500 | [diff] [blame] | 176 | * The client will do an ioctl to find MAX_DEV_REQ_UPSIZE, then |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 177 | * always read with that size buffer. |
| 178 | */ |
Martin Brandenburg | a762ae6 | 2015-12-15 14:22:06 -0500 | [diff] [blame] | 179 | if (count != MAX_DEV_REQ_UPSIZE) { |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 180 | gossip_err("orangefs: client-core tried to read wrong size\n"); |
| 181 | return -EINVAL; |
| 182 | } |
| 183 | |
Martin Brandenburg | b7a57cc | 2017-04-25 15:38:06 -0400 | [diff] [blame] | 184 | /* Check for an empty list before locking. */ |
| 185 | if (list_empty(&orangefs_request_list)) |
| 186 | return -EAGAIN; |
| 187 | |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 188 | restart: |
Martin Brandenburg | a0ec1de | 2018-01-22 15:44:52 -0500 | [diff] [blame] | 189 | cur_op = NULL; |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 190 | /* Get next op (if any) from top of list. */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 191 | spin_lock(&orangefs_request_list_lock); |
| 192 | list_for_each_entry_safe(op, temp, &orangefs_request_list, list) { |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 193 | __s32 fsid; |
| 194 | /* This lock is held past the end of the loop when we break. */ |
| 195 | spin_lock(&op->lock); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame] | 196 | if (unlikely(op_state_purged(op) || op_state_given_up(op))) { |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 197 | spin_unlock(&op->lock); |
| 198 | continue; |
| 199 | } |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 200 | |
| 201 | fsid = fsid_of_op(op); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 202 | if (fsid != ORANGEFS_FS_ID_NULL) { |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 203 | int ret; |
| 204 | /* Skip ops whose filesystem needs to be mounted. */ |
| 205 | ret = fs_mount_pending(fsid); |
| 206 | if (ret == 1) { |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 207 | gossip_debug(GOSSIP_DEV_DEBUG, |
Mike Marshall | 5090c96 | 2016-02-04 13:29:27 -0500 | [diff] [blame] | 208 | "%s: mount pending, skipping op tag " |
| 209 | "%llu %s\n", |
| 210 | __func__, |
| 211 | llu(op->tag), |
| 212 | get_opname_string(op)); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 213 | spin_unlock(&op->lock); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 214 | continue; |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 215 | /* |
| 216 | * Skip ops whose filesystem we don't know about unless |
Martin Brandenburg | 1ec1688 | 2017-04-14 14:22:41 -0400 | [diff] [blame] | 217 | * it is being mounted or unmounted. It is possible for |
| 218 | * a filesystem we don't know about to be unmounted if |
| 219 | * it fails to mount in the kernel after userspace has |
| 220 | * been sent the mount request. |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 221 | */ |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 222 | /* XXX: is there a better way to detect this? */ |
| 223 | } else if (ret == -1 && |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 224 | !(op->upcall.type == |
| 225 | ORANGEFS_VFS_OP_FS_MOUNT || |
| 226 | op->upcall.type == |
Martin Brandenburg | 1ec1688 | 2017-04-14 14:22:41 -0400 | [diff] [blame] | 227 | ORANGEFS_VFS_OP_GETATTR || |
| 228 | op->upcall.type == |
| 229 | ORANGEFS_VFS_OP_FS_UMOUNT)) { |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 230 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 231 | "orangefs: skipping op tag %llu %s\n", |
| 232 | llu(op->tag), get_opname_string(op)); |
| 233 | gossip_err( |
| 234 | "orangefs: ERROR: fs_mount_pending %d\n", |
| 235 | fsid); |
| 236 | spin_unlock(&op->lock); |
| 237 | continue; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 238 | } |
| 239 | } |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 240 | /* |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 241 | * Either this op does not pertain to a filesystem, is mounting |
| 242 | * a filesystem, or pertains to a mounted filesystem. Let it |
| 243 | * through. |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 244 | */ |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 245 | cur_op = op; |
| 246 | break; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 247 | } |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 248 | |
| 249 | /* |
| 250 | * At this point we either have a valid op and can continue or have not |
| 251 | * found an op and must ask the client to try again later. |
| 252 | */ |
| 253 | if (!cur_op) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 254 | spin_unlock(&orangefs_request_list_lock); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 255 | return -EAGAIN; |
| 256 | } |
| 257 | |
Mike Marshall | ca9f518 | 2016-02-26 10:21:12 -0500 | [diff] [blame] | 258 | gossip_debug(GOSSIP_DEV_DEBUG, "%s: reading op tag %llu %s\n", |
| 259 | __func__, |
| 260 | llu(cur_op->tag), |
| 261 | get_opname_string(cur_op)); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 262 | |
| 263 | /* |
| 264 | * Such an op should never be on the list in the first place. If so, we |
| 265 | * will abort. |
| 266 | */ |
| 267 | if (op_state_in_progress(cur_op) || op_state_serviced(cur_op)) { |
| 268 | gossip_err("orangefs: ERROR: Current op already queued.\n"); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame] | 269 | list_del_init(&cur_op->list); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 270 | spin_unlock(&cur_op->lock); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 271 | spin_unlock(&orangefs_request_list_lock); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 272 | return -EAGAIN; |
| 273 | } |
Mike Marshall | ca9f518 | 2016-02-26 10:21:12 -0500 | [diff] [blame] | 274 | |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 275 | list_del_init(&cur_op->list); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 276 | spin_unlock(&orangefs_request_list_lock); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 277 | |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 278 | spin_unlock(&cur_op->lock); |
| 279 | |
| 280 | /* Push the upcall out. */ |
| 281 | ret = copy_to_user(buf, &proto_ver, sizeof(__s32)); |
| 282 | if (ret != 0) |
| 283 | goto error; |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 284 | ret = copy_to_user(buf + sizeof(__s32), &magic, sizeof(__s32)); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 285 | if (ret != 0) |
| 286 | goto error; |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 287 | ret = copy_to_user(buf + 2 * sizeof(__s32), |
| 288 | &cur_op->tag, |
| 289 | sizeof(__u64)); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 290 | if (ret != 0) |
| 291 | goto error; |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 292 | ret = copy_to_user(buf + 2 * sizeof(__s32) + sizeof(__u64), |
| 293 | &cur_op->upcall, |
| 294 | sizeof(struct orangefs_upcall_s)); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 295 | if (ret != 0) |
| 296 | goto error; |
| 297 | |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 298 | spin_lock(&orangefs_htable_ops_in_progress_lock); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 299 | spin_lock(&cur_op->lock); |
| 300 | if (unlikely(op_state_given_up(cur_op))) { |
| 301 | spin_unlock(&cur_op->lock); |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 302 | spin_unlock(&orangefs_htable_ops_in_progress_lock); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame] | 303 | complete(&cur_op->waitq); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 304 | goto restart; |
| 305 | } |
| 306 | |
| 307 | /* |
| 308 | * Set the operation to be in progress and move it between lists since |
| 309 | * it has been sent to the client. |
| 310 | */ |
| 311 | set_op_state_inprogress(cur_op); |
Mike Marshall | 9d9e7ba | 2016-03-03 13:46:48 -0500 | [diff] [blame] | 312 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 313 | "%s: 1 op:%s: op_state:%d: process:%s:\n", |
| 314 | __func__, |
| 315 | get_opname_string(cur_op), |
| 316 | cur_op->op_state, |
| 317 | current->comm); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 318 | orangefs_devreq_add_op(cur_op); |
| 319 | spin_unlock(&cur_op->lock); |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 320 | spin_unlock(&orangefs_htable_ops_in_progress_lock); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 321 | |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 322 | /* The client only asks to read one size buffer. */ |
Martin Brandenburg | a762ae6 | 2015-12-15 14:22:06 -0500 | [diff] [blame] | 323 | return MAX_DEV_REQ_UPSIZE; |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 324 | error: |
| 325 | /* |
| 326 | * We were unable to copy the op data to the client. Put the op back in |
| 327 | * list. If client has crashed, the op will be purged later when the |
| 328 | * device is released. |
| 329 | */ |
| 330 | gossip_err("orangefs: Failed to copy data to user space\n"); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 331 | spin_lock(&orangefs_request_list_lock); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 332 | spin_lock(&cur_op->lock); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 333 | if (likely(!op_state_given_up(cur_op))) { |
| 334 | set_op_state_waiting(cur_op); |
Mike Marshall | 9d9e7ba | 2016-03-03 13:46:48 -0500 | [diff] [blame] | 335 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 336 | "%s: 2 op:%s: op_state:%d: process:%s:\n", |
| 337 | __func__, |
| 338 | get_opname_string(cur_op), |
| 339 | cur_op->op_state, |
| 340 | current->comm); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 341 | list_add(&cur_op->list, &orangefs_request_list); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame] | 342 | spin_unlock(&cur_op->lock); |
| 343 | } else { |
| 344 | spin_unlock(&cur_op->lock); |
| 345 | complete(&cur_op->waitq); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 346 | } |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 347 | spin_unlock(&orangefs_request_list_lock); |
Martin Brandenburg | 24c8d08 | 2015-11-13 14:26:10 -0500 | [diff] [blame] | 348 | return -EFAULT; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 349 | } |
| 350 | |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 351 | /* |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 352 | * Function for writev() callers into the device. |
| 353 | * |
| 354 | * Userspace should have written: |
| 355 | * - __u32 version |
| 356 | * - __u32 magic |
| 357 | * - __u64 tag |
| 358 | * - struct orangefs_downcall_s |
| 359 | * - trailer buffer (in the case of READDIR operations) |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 360 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 361 | static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb, |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 362 | struct iov_iter *iter) |
| 363 | { |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 364 | ssize_t ret; |
| 365 | struct orangefs_kernel_op_s *op = NULL; |
| 366 | struct { |
| 367 | __u32 version; |
| 368 | __u32 magic; |
| 369 | __u64 tag; |
| 370 | } head; |
| 371 | int total = ret = iov_iter_count(iter); |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 372 | int downcall_size = sizeof(struct orangefs_downcall_s); |
| 373 | int head_size = sizeof(head); |
| 374 | |
| 375 | gossip_debug(GOSSIP_DEV_DEBUG, "%s: total:%d: ret:%zd:\n", |
| 376 | __func__, |
| 377 | total, |
| 378 | ret); |
| 379 | |
| 380 | if (total < MAX_DEV_REQ_DOWNSIZE) { |
Mike Marshall | cf0c277 | 2016-01-19 12:04:40 -0500 | [diff] [blame] | 381 | gossip_err("%s: total:%d: must be at least:%u:\n", |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 382 | __func__, |
| 383 | total, |
Mike Marshall | cf0c277 | 2016-01-19 12:04:40 -0500 | [diff] [blame] | 384 | (unsigned int) MAX_DEV_REQ_DOWNSIZE); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 385 | return -EFAULT; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 386 | } |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 387 | |
Al Viro | cbbd26b | 2016-11-01 22:09:04 -0400 | [diff] [blame] | 388 | if (!copy_from_iter_full(&head, head_size, iter)) { |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 389 | gossip_err("%s: failed to copy head.\n", __func__); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 390 | return -EFAULT; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | if (head.version < ORANGEFS_MINIMUM_USERSPACE_VERSION) { |
| 394 | gossip_err("%s: userspace claims version" |
| 395 | "%d, minimum version required: %d.\n", |
| 396 | __func__, |
| 397 | head.version, |
| 398 | ORANGEFS_MINIMUM_USERSPACE_VERSION); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 399 | return -EPROTO; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | if (head.magic != ORANGEFS_DEVREQ_MAGIC) { |
| 403 | gossip_err("Error: Device magic number does not match.\n"); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 404 | return -EPROTO; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 405 | } |
| 406 | |
Martin Brandenburg | 482664d | 2016-08-12 12:02:31 -0400 | [diff] [blame] | 407 | if (!orangefs_userspace_version) { |
| 408 | orangefs_userspace_version = head.version; |
| 409 | } else if (orangefs_userspace_version != head.version) { |
Martin Brandenburg | f2ee3b7 | 2016-08-09 15:59:26 -0400 | [diff] [blame] | 410 | gossip_err("Error: userspace version changes\n"); |
| 411 | return -EPROTO; |
| 412 | } |
| 413 | |
Mike Marshall | ca9f518 | 2016-02-26 10:21:12 -0500 | [diff] [blame] | 414 | /* remove the op from the in progress hash table */ |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 415 | op = orangefs_devreq_remove_op(head.tag); |
| 416 | if (!op) { |
Mike Marshall | 05973c2 | 2017-02-09 14:38:50 -0500 | [diff] [blame] | 417 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 418 | "%s: No one's waiting for tag %llu\n", |
| 419 | __func__, llu(head.tag)); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 420 | return ret; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 421 | } |
| 422 | |
Al Viro | cbbd26b | 2016-11-01 22:09:04 -0400 | [diff] [blame] | 423 | if (!copy_from_iter_full(&op->downcall, downcall_size, iter)) { |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 424 | gossip_err("%s: failed to copy downcall.\n", __func__); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 425 | goto Efault; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | if (op->downcall.status) |
| 429 | goto wakeup; |
| 430 | |
| 431 | /* |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 432 | * We've successfully peeled off the head and the downcall. |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 433 | * Something has gone awry if total doesn't equal the |
| 434 | * sum of head_size, downcall_size and trailer_size. |
| 435 | */ |
| 436 | if ((head_size + downcall_size + op->downcall.trailer_size) != total) { |
| 437 | gossip_err("%s: funky write, head_size:%d" |
| 438 | ": downcall_size:%d: trailer_size:%lld" |
| 439 | ": total size:%d:\n", |
| 440 | __func__, |
| 441 | head_size, |
| 442 | downcall_size, |
| 443 | op->downcall.trailer_size, |
| 444 | total); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 445 | goto Efault; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | /* Only READDIR operations should have trailers. */ |
| 449 | if ((op->downcall.type != ORANGEFS_VFS_OP_READDIR) && |
| 450 | (op->downcall.trailer_size != 0)) { |
| 451 | gossip_err("%s: %x operation with trailer.", |
| 452 | __func__, |
| 453 | op->downcall.type); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 454 | goto Efault; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | /* READDIR operations should always have trailers. */ |
| 458 | if ((op->downcall.type == ORANGEFS_VFS_OP_READDIR) && |
| 459 | (op->downcall.trailer_size == 0)) { |
| 460 | gossip_err("%s: %x operation with no trailer.", |
| 461 | __func__, |
| 462 | op->downcall.type); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 463 | goto Efault; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | if (op->downcall.type != ORANGEFS_VFS_OP_READDIR) |
| 467 | goto wakeup; |
| 468 | |
Colin Ian King | 81e3d02 | 2018-01-26 19:42:47 +0000 | [diff] [blame] | 469 | op->downcall.trailer_buf = vzalloc(op->downcall.trailer_size); |
Markus Elfring | 07a2585 | 2017-08-17 21:00:07 +0200 | [diff] [blame] | 470 | if (!op->downcall.trailer_buf) |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 471 | goto Enomem; |
Markus Elfring | 07a2585 | 2017-08-17 21:00:07 +0200 | [diff] [blame] | 472 | |
Al Viro | cbbd26b | 2016-11-01 22:09:04 -0400 | [diff] [blame] | 473 | if (!copy_from_iter_full(op->downcall.trailer_buf, |
| 474 | op->downcall.trailer_size, iter)) { |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 475 | gossip_err("%s: failed to copy trailer.\n", __func__); |
| 476 | vfree(op->downcall.trailer_buf); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 477 | goto Efault; |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | wakeup: |
Al Viro | 2a9e5c2 | 2016-01-23 13:45:46 -0500 | [diff] [blame] | 481 | /* |
Mike Marshall | 9f08cfe | 2016-02-26 14:39:08 -0500 | [diff] [blame] | 482 | * Return to vfs waitqueue, and back to service_operation |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 483 | * through wait_for_matching_downcall. |
Al Viro | 2a9e5c2 | 2016-01-23 13:45:46 -0500 | [diff] [blame] | 484 | */ |
| 485 | spin_lock(&op->lock); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 486 | if (unlikely(op_is_cancel(op))) { |
Al Viro | 2a9e5c2 | 2016-01-23 13:45:46 -0500 | [diff] [blame] | 487 | spin_unlock(&op->lock); |
Al Viro | 78699e2 | 2016-02-11 23:07:19 -0500 | [diff] [blame] | 488 | put_cancel(op); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 489 | } else if (unlikely(op_state_given_up(op))) { |
| 490 | spin_unlock(&op->lock); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame] | 491 | complete(&op->waitq); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 492 | } else { |
| 493 | set_op_state_serviced(op); |
Mike Marshall | 9d9e7ba | 2016-03-03 13:46:48 -0500 | [diff] [blame] | 494 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 495 | "%s: op:%s: op_state:%d: process:%s:\n", |
| 496 | __func__, |
| 497 | get_opname_string(op), |
| 498 | op->op_state, |
| 499 | current->comm); |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 500 | spin_unlock(&op->lock); |
| 501 | } |
Mike Marshall | b3ae475 | 2016-01-13 11:18:12 -0500 | [diff] [blame] | 502 | return ret; |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 503 | |
Al Viro | 5964c1b | 2016-02-18 18:53:41 -0500 | [diff] [blame] | 504 | Efault: |
| 505 | op->downcall.status = -(ORANGEFS_ERROR_BIT | 9); |
| 506 | ret = -EFAULT; |
| 507 | goto wakeup; |
| 508 | |
| 509 | Enomem: |
| 510 | op->downcall.status = -(ORANGEFS_ERROR_BIT | 8); |
| 511 | ret = -ENOMEM; |
| 512 | goto wakeup; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 513 | } |
| 514 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 515 | /* |
| 516 | * NOTE: gets called when the last reference to this device is dropped. |
| 517 | * Using the open_access_count variable, we enforce a reference count |
| 518 | * on this file so that it can be opened by only one process at a time. |
| 519 | * the devreq_mutex is used to make sure all i/o has completed |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 520 | * before we call orangefs_bufmap_finalize, and similar such tricky |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 521 | * situations |
| 522 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 523 | static int orangefs_devreq_release(struct inode *inode, struct file *file) |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 524 | { |
| 525 | int unmounted = 0; |
| 526 | |
| 527 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 528 | "%s:pvfs2-client-core: exiting, closing device\n", |
| 529 | __func__); |
| 530 | |
| 531 | mutex_lock(&devreq_mutex); |
Al Viro | ea2c9c9 | 2016-02-13 21:01:21 -0500 | [diff] [blame] | 532 | orangefs_bufmap_finalize(); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 533 | |
Al Viro | fee25ce | 2016-01-22 19:46:08 -0500 | [diff] [blame] | 534 | open_access_count = -1; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 535 | |
| 536 | unmounted = mark_all_pending_mounts(); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 537 | gossip_debug(GOSSIP_DEV_DEBUG, "ORANGEFS Device Close: Filesystem(s) %s\n", |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 538 | (unmounted ? "UNMOUNTED" : "MOUNTED")); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 539 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 540 | purge_waiting_ops(); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 541 | purge_inprogress_ops(); |
Al Viro | ea2c9c9 | 2016-02-13 21:01:21 -0500 | [diff] [blame] | 542 | |
| 543 | orangefs_bufmap_run_down(); |
| 544 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 545 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 546 | "pvfs2-client-core: device close complete\n"); |
Al Viro | fee25ce | 2016-01-22 19:46:08 -0500 | [diff] [blame] | 547 | open_access_count = 0; |
Martin Brandenburg | 482664d | 2016-08-12 12:02:31 -0400 | [diff] [blame] | 548 | orangefs_userspace_version = 0; |
Al Viro | fee25ce | 2016-01-22 19:46:08 -0500 | [diff] [blame] | 549 | mutex_unlock(&devreq_mutex); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 550 | return 0; |
| 551 | } |
| 552 | |
| 553 | int is_daemon_in_service(void) |
| 554 | { |
| 555 | int in_service; |
| 556 | |
| 557 | /* |
| 558 | * What this function does is checks if client-core is alive |
| 559 | * based on the access count we maintain on the device. |
| 560 | */ |
| 561 | mutex_lock(&devreq_mutex); |
| 562 | in_service = open_access_count == 1 ? 0 : -EIO; |
| 563 | mutex_unlock(&devreq_mutex); |
| 564 | return in_service; |
| 565 | } |
| 566 | |
Al Viro | 78699e2 | 2016-02-11 23:07:19 -0500 | [diff] [blame] | 567 | bool __is_daemon_in_service(void) |
| 568 | { |
| 569 | return open_access_count == 1; |
| 570 | } |
| 571 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 572 | static inline long check_ioctl_command(unsigned int command) |
| 573 | { |
| 574 | /* Check for valid ioctl codes */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 575 | if (_IOC_TYPE(command) != ORANGEFS_DEV_MAGIC) { |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 576 | gossip_err("device ioctl magic numbers don't match! Did you rebuild pvfs2-client-core/libpvfs2? [cmd %x, magic %x != %x]\n", |
| 577 | command, |
| 578 | _IOC_TYPE(command), |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 579 | ORANGEFS_DEV_MAGIC); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 580 | return -EINVAL; |
| 581 | } |
| 582 | /* and valid ioctl commands */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 583 | if (_IOC_NR(command) >= ORANGEFS_DEV_MAXNR || _IOC_NR(command) <= 0) { |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 584 | gossip_err("Invalid ioctl command number [%d >= %d]\n", |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 585 | _IOC_NR(command), ORANGEFS_DEV_MAXNR); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 586 | return -ENOIOCTLCMD; |
| 587 | } |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | static long dispatch_ioctl_command(unsigned int command, unsigned long arg) |
| 592 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 593 | static __s32 magic = ORANGEFS_DEVREQ_MAGIC; |
Martin Brandenburg | a762ae6 | 2015-12-15 14:22:06 -0500 | [diff] [blame] | 594 | static __s32 max_up_size = MAX_DEV_REQ_UPSIZE; |
| 595 | static __s32 max_down_size = MAX_DEV_REQ_DOWNSIZE; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 596 | struct ORANGEFS_dev_map_desc user_desc; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 597 | int ret = 0; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 598 | int upstream_kmod = 1; |
Al Viro | 4599649 | 2016-03-25 19:56:34 -0400 | [diff] [blame] | 599 | struct orangefs_sb_info_s *orangefs_sb; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 600 | |
| 601 | /* mtmoore: add locking here */ |
| 602 | |
| 603 | switch (command) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 604 | case ORANGEFS_DEV_GET_MAGIC: |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 605 | return ((put_user(magic, (__s32 __user *) arg) == -EFAULT) ? |
| 606 | -EIO : |
| 607 | 0); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 608 | case ORANGEFS_DEV_GET_MAX_UPSIZE: |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 609 | return ((put_user(max_up_size, |
| 610 | (__s32 __user *) arg) == -EFAULT) ? |
| 611 | -EIO : |
| 612 | 0); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 613 | case ORANGEFS_DEV_GET_MAX_DOWNSIZE: |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 614 | return ((put_user(max_down_size, |
| 615 | (__s32 __user *) arg) == -EFAULT) ? |
| 616 | -EIO : |
| 617 | 0); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 618 | case ORANGEFS_DEV_MAP: |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 619 | ret = copy_from_user(&user_desc, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 620 | (struct ORANGEFS_dev_map_desc __user *) |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 621 | arg, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 622 | sizeof(struct ORANGEFS_dev_map_desc)); |
Al Viro | ea2c9c9 | 2016-02-13 21:01:21 -0500 | [diff] [blame] | 623 | /* WTF -EIO and not -EFAULT? */ |
| 624 | return ret ? -EIO : orangefs_bufmap_initialize(&user_desc); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 625 | case ORANGEFS_DEV_REMOUNT_ALL: |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 626 | gossip_debug(GOSSIP_DEV_DEBUG, |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 627 | "%s: got ORANGEFS_DEV_REMOUNT_ALL\n", |
| 628 | __func__); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 629 | |
| 630 | /* |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 631 | * remount all mounted orangefs volumes to regain the lost |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 632 | * dynamic mount tables (if any) -- NOTE: this is done |
| 633 | * without keeping the superblock list locked due to the |
Mike Marshall | adcf34a | 2016-02-24 16:54:27 -0500 | [diff] [blame] | 634 | * upcall/downcall waiting. also, the request mutex is |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 635 | * used to ensure that no operations will be serviced until |
| 636 | * all of the remounts are serviced (to avoid ops between |
| 637 | * mounts to fail) |
| 638 | */ |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 639 | ret = mutex_lock_interruptible(&orangefs_request_mutex); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 640 | if (ret < 0) |
| 641 | return ret; |
| 642 | gossip_debug(GOSSIP_DEV_DEBUG, |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 643 | "%s: priority remount in progress\n", |
| 644 | __func__); |
Al Viro | 4599649 | 2016-03-25 19:56:34 -0400 | [diff] [blame] | 645 | spin_lock(&orangefs_superblocks_lock); |
| 646 | list_for_each_entry(orangefs_sb, &orangefs_superblocks, list) { |
| 647 | /* |
| 648 | * We have to drop the spinlock, so entries can be |
| 649 | * removed. They can't be freed, though, so we just |
| 650 | * keep the forward pointers and zero the back ones - |
| 651 | * that way we can get to the rest of the list. |
| 652 | */ |
| 653 | if (!orangefs_sb->list.prev) |
| 654 | continue; |
| 655 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 656 | "%s: Remounting SB %p\n", |
| 657 | __func__, |
| 658 | orangefs_sb); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 659 | |
Al Viro | 4599649 | 2016-03-25 19:56:34 -0400 | [diff] [blame] | 660 | spin_unlock(&orangefs_superblocks_lock); |
| 661 | ret = orangefs_remount(orangefs_sb); |
| 662 | spin_lock(&orangefs_superblocks_lock); |
| 663 | if (ret) { |
| 664 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 665 | "SB %p remount failed\n", |
| 666 | orangefs_sb); |
| 667 | break; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 668 | } |
| 669 | } |
Al Viro | 4599649 | 2016-03-25 19:56:34 -0400 | [diff] [blame] | 670 | spin_unlock(&orangefs_superblocks_lock); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 671 | gossip_debug(GOSSIP_DEV_DEBUG, |
Mike Marshall | 97f1002 | 2015-12-11 16:45:03 -0500 | [diff] [blame] | 672 | "%s: priority remount complete\n", |
| 673 | __func__); |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 674 | mutex_unlock(&orangefs_request_mutex); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 675 | return ret; |
| 676 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 677 | case ORANGEFS_DEV_UPSTREAM: |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 678 | ret = copy_to_user((void __user *)arg, |
| 679 | &upstream_kmod, |
| 680 | sizeof(upstream_kmod)); |
| 681 | |
| 682 | if (ret != 0) |
| 683 | return -EIO; |
| 684 | else |
| 685 | return ret; |
| 686 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 687 | case ORANGEFS_DEV_CLIENT_MASK: |
Martin Brandenburg | 44f4641 | 2016-08-15 11:38:36 -0400 | [diff] [blame] | 688 | return orangefs_debugfs_new_client_mask((void __user *)arg); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 689 | case ORANGEFS_DEV_CLIENT_STRING: |
Martin Brandenburg | 44f4641 | 2016-08-15 11:38:36 -0400 | [diff] [blame] | 690 | return orangefs_debugfs_new_client_string((void __user *)arg); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 691 | case ORANGEFS_DEV_DEBUG: |
Martin Brandenburg | 44f4641 | 2016-08-15 11:38:36 -0400 | [diff] [blame] | 692 | return orangefs_debugfs_new_debug((void __user *)arg); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 693 | default: |
| 694 | return -ENOIOCTLCMD; |
| 695 | } |
| 696 | return -ENOIOCTLCMD; |
| 697 | } |
| 698 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 699 | static long orangefs_devreq_ioctl(struct file *file, |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 700 | unsigned int command, unsigned long arg) |
| 701 | { |
| 702 | long ret; |
| 703 | |
| 704 | /* Check for properly constructed commands */ |
| 705 | ret = check_ioctl_command(command); |
| 706 | if (ret < 0) |
| 707 | return (int)ret; |
| 708 | |
| 709 | return (int)dispatch_ioctl_command(command, arg); |
| 710 | } |
| 711 | |
| 712 | #ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */ |
| 713 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 714 | /* Compat structure for the ORANGEFS_DEV_MAP ioctl */ |
| 715 | struct ORANGEFS_dev_map_desc32 { |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 716 | compat_uptr_t ptr; |
| 717 | __s32 total_size; |
| 718 | __s32 size; |
| 719 | __s32 count; |
| 720 | }; |
| 721 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 722 | /* |
| 723 | * 32 bit user-space apps' ioctl handlers when kernel modules |
| 724 | * is compiled as a 64 bit one |
| 725 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 726 | static long orangefs_devreq_compat_ioctl(struct file *filp, unsigned int cmd, |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 727 | unsigned long args) |
| 728 | { |
| 729 | long ret; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 730 | |
| 731 | /* Check for properly constructed commands */ |
| 732 | ret = check_ioctl_command(cmd); |
| 733 | if (ret < 0) |
| 734 | return ret; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 735 | if (cmd == ORANGEFS_DEV_MAP) { |
Al Viro | 430ff79 | 2018-05-27 08:52:48 -0400 | [diff] [blame] | 736 | struct ORANGEFS_dev_map_desc desc; |
| 737 | struct ORANGEFS_dev_map_desc32 d32; |
| 738 | |
| 739 | if (copy_from_user(&d32, (void __user *)args, sizeof(d32))) |
| 740 | return -EFAULT; |
| 741 | |
| 742 | desc.ptr = compat_ptr(d32.ptr); |
| 743 | desc.total_size = d32.total_size; |
| 744 | desc.size = d32.size; |
| 745 | desc.count = d32.count; |
| 746 | return orangefs_bufmap_initialize(&desc); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 747 | } |
| 748 | /* no other ioctl requires translation */ |
Al Viro | 430ff79 | 2018-05-27 08:52:48 -0400 | [diff] [blame] | 749 | return dispatch_ioctl_command(cmd, args); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 750 | } |
| 751 | |
Mike Marshall | 2c590d5 | 2015-07-24 10:37:15 -0400 | [diff] [blame] | 752 | #endif /* CONFIG_COMPAT is in .config */ |
| 753 | |
Martin Brandenburg | bdd6f08 | 2018-04-03 16:27:13 +0000 | [diff] [blame] | 754 | static __poll_t orangefs_devreq_poll(struct file *file, |
| 755 | struct poll_table_struct *poll_table) |
| 756 | { |
| 757 | __poll_t poll_revent_mask = 0; |
| 758 | |
| 759 | poll_wait(file, &orangefs_request_list_waitq, poll_table); |
| 760 | |
| 761 | if (!list_empty(&orangefs_request_list)) |
| 762 | poll_revent_mask |= EPOLLIN; |
| 763 | return poll_revent_mask; |
| 764 | } |
| 765 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 766 | /* the assigned character device major number */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 767 | static int orangefs_dev_major; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 768 | |
Martin Brandenburg | bdd6f08 | 2018-04-03 16:27:13 +0000 | [diff] [blame] | 769 | static const struct file_operations orangefs_devreq_file_operations = { |
| 770 | .owner = THIS_MODULE, |
| 771 | .read = orangefs_devreq_read, |
| 772 | .write_iter = orangefs_devreq_write_iter, |
| 773 | .open = orangefs_devreq_open, |
| 774 | .release = orangefs_devreq_release, |
| 775 | .unlocked_ioctl = orangefs_devreq_ioctl, |
| 776 | |
| 777 | #ifdef CONFIG_COMPAT /* CONFIG_COMPAT is in .config */ |
| 778 | .compat_ioctl = orangefs_devreq_compat_ioctl, |
| 779 | #endif |
| 780 | .poll = orangefs_devreq_poll |
| 781 | }; |
| 782 | |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 783 | /* |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 784 | * Initialize orangefs device specific state: |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 785 | * Must be called at module load time only |
| 786 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 787 | int orangefs_dev_init(void) |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 788 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 789 | /* register orangefs-req device */ |
| 790 | orangefs_dev_major = register_chrdev(0, |
| 791 | ORANGEFS_REQDEVICE_NAME, |
| 792 | &orangefs_devreq_file_operations); |
| 793 | if (orangefs_dev_major < 0) { |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 794 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 795 | "Failed to register /dev/%s (error %d)\n", |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 796 | ORANGEFS_REQDEVICE_NAME, orangefs_dev_major); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 797 | return orangefs_dev_major; |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 801 | "*** /dev/%s character device registered ***\n", |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 802 | ORANGEFS_REQDEVICE_NAME); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 803 | gossip_debug(GOSSIP_DEV_DEBUG, "'mknod /dev/%s c %d 0'.\n", |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 804 | ORANGEFS_REQDEVICE_NAME, orangefs_dev_major); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 805 | return 0; |
| 806 | } |
| 807 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 808 | void orangefs_dev_cleanup(void) |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 809 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 810 | unregister_chrdev(orangefs_dev_major, ORANGEFS_REQDEVICE_NAME); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 811 | gossip_debug(GOSSIP_DEV_DEBUG, |
| 812 | "*** /dev/%s character device unregistered ***\n", |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 813 | ORANGEFS_REQDEVICE_NAME); |
Mike Marshall | 5db11c2 | 2015-07-17 10:38:12 -0400 | [diff] [blame] | 814 | } |