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