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