Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 1 | /* |
| 2 | * (C) 2001 Clemson University and The University of Chicago |
| 3 | * (C) 2011 Omnibond Systems |
| 4 | * |
| 5 | * Changes by Acxiom Corporation to implement generic service_operation() |
| 6 | * function, Copyright Acxiom Corporation, 2005. |
| 7 | * |
| 8 | * See COPYING in top-level directory. |
| 9 | */ |
| 10 | |
| 11 | /* |
| 12 | * In-kernel waitqueue operations. |
| 13 | */ |
| 14 | |
| 15 | #include "protocol.h" |
Mike Marshall | 575e946 | 2015-12-04 12:56:14 -0500 | [diff] [blame] | 16 | #include "orangefs-kernel.h" |
| 17 | #include "orangefs-bufmap.h" |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 18 | |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 19 | static int wait_for_matching_downcall(struct orangefs_kernel_op_s *, long, bool); |
Al Viro | d2d87a3 | 2016-02-13 10:15:22 -0500 | [diff] [blame] | 20 | static void orangefs_clean_up_interrupted_operation(struct orangefs_kernel_op_s *); |
Al Viro | ade3d78 | 2016-01-21 22:58:58 -0500 | [diff] [blame] | 21 | |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 22 | /* |
| 23 | * What we do in this function is to walk the list of operations that are |
| 24 | * present in the request queue and mark them as purged. |
| 25 | * NOTE: This is called from the device close after client-core has |
| 26 | * guaranteed that no new operations could appear on the list since the |
| 27 | * client-core is anyway going to exit. |
| 28 | */ |
| 29 | void purge_waiting_ops(void) |
| 30 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 31 | struct orangefs_kernel_op_s *op; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 32 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 33 | spin_lock(&orangefs_request_list_lock); |
| 34 | list_for_each_entry(op, &orangefs_request_list, list) { |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 35 | gossip_debug(GOSSIP_WAIT_DEBUG, |
| 36 | "pvfs2-client-core: purging op tag %llu %s\n", |
| 37 | llu(op->tag), |
| 38 | get_opname_string(op)); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 39 | set_op_state_purged(op); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 40 | } |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 41 | spin_unlock(&orangefs_request_list_lock); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | /* |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 45 | * submits a ORANGEFS operation and waits for it to complete |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 46 | * |
| 47 | * Note op->downcall.status will contain the status of the operation (in |
| 48 | * errno format), whether provided by pvfs2-client or a result of failure to |
| 49 | * service the operation. If the caller wishes to distinguish, then |
| 50 | * op->state can be checked to see if it was serviced or not. |
| 51 | * |
| 52 | * Returns contents of op->downcall.status for convenience |
| 53 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 54 | int service_operation(struct orangefs_kernel_op_s *op, |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 55 | const char *op_name, |
| 56 | int flags) |
| 57 | { |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 58 | long timeout = MAX_SCHEDULE_TIMEOUT; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 59 | /* flags to modify behavior */ |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 60 | int ret = 0; |
| 61 | |
Mike Marshall | ce6c414 | 2015-12-14 14:54:46 -0500 | [diff] [blame] | 62 | DEFINE_WAIT(wait_entry); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 63 | |
| 64 | op->upcall.tgid = current->tgid; |
| 65 | op->upcall.pid = current->pid; |
| 66 | |
| 67 | retry_servicing: |
| 68 | op->downcall.status = 0; |
| 69 | gossip_debug(GOSSIP_WAIT_DEBUG, |
Mike Marshall | 5253487 | 2016-02-16 17:09:09 -0500 | [diff] [blame] | 70 | "%s: %s op:%p: process:%s: pid:%d:\n", |
| 71 | __func__, |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 72 | op_name, |
Mike Marshall | 5253487 | 2016-02-16 17:09:09 -0500 | [diff] [blame] | 73 | op, |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 74 | current->comm, |
| 75 | current->pid); |
| 76 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 77 | if (!(flags & ORANGEFS_OP_NO_SEMAPHORE)) { |
Al Viro | c72f15b | 2016-02-13 10:49:24 -0500 | [diff] [blame] | 78 | if (flags & ORANGEFS_OP_INTERRUPTIBLE) |
| 79 | ret = mutex_lock_interruptible(&request_mutex); |
| 80 | else |
| 81 | ret = mutex_lock_killable(&request_mutex); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 82 | /* |
| 83 | * check to see if we were interrupted while waiting for |
| 84 | * semaphore |
| 85 | */ |
| 86 | if (ret < 0) { |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 87 | op->downcall.status = ret; |
| 88 | gossip_debug(GOSSIP_WAIT_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 89 | "orangefs: service_operation interrupted.\n"); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 90 | return ret; |
| 91 | } |
| 92 | } |
| 93 | |
Al Viro | 98815ad | 2016-02-13 10:38:23 -0500 | [diff] [blame] | 94 | /* queue up the operation */ |
| 95 | spin_lock(&orangefs_request_list_lock); |
| 96 | spin_lock(&op->lock); |
| 97 | set_op_state_waiting(op); |
| 98 | if (flags & ORANGEFS_OP_PRIORITY) |
| 99 | list_add(&op->list, &orangefs_request_list); |
| 100 | else |
| 101 | list_add_tail(&op->list, &orangefs_request_list); |
| 102 | spin_unlock(&op->lock); |
| 103 | wake_up_interruptible(&orangefs_request_list_waitq); |
| 104 | if (!__is_daemon_in_service()) { |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 105 | gossip_debug(GOSSIP_WAIT_DEBUG, |
Al Viro | 98815ad | 2016-02-13 10:38:23 -0500 | [diff] [blame] | 106 | "%s:client core is NOT in service.\n", |
| 107 | __func__); |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 108 | timeout = op_timeout_secs * HZ; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 109 | } |
Al Viro | 98815ad | 2016-02-13 10:38:23 -0500 | [diff] [blame] | 110 | spin_unlock(&orangefs_request_list_lock); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 111 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 112 | if (!(flags & ORANGEFS_OP_NO_SEMAPHORE)) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 113 | mutex_unlock(&request_mutex); |
| 114 | |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 115 | ret = wait_for_matching_downcall(op, timeout, |
| 116 | flags & ORANGEFS_OP_INTERRUPTIBLE); |
Mike Marshall | 5253487 | 2016-02-16 17:09:09 -0500 | [diff] [blame] | 117 | |
| 118 | gossip_debug(GOSSIP_WAIT_DEBUG, |
| 119 | "%s: wait_for_matching_downcall returned %d for %p\n", |
| 120 | __func__, |
| 121 | ret, |
| 122 | op); |
| 123 | |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 124 | if (!ret) { |
Al Viro | d2d87a3 | 2016-02-13 10:15:22 -0500 | [diff] [blame] | 125 | spin_unlock(&op->lock); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 126 | /* got matching downcall; make sure status is in errno format */ |
| 127 | op->downcall.status = |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 128 | orangefs_normalize_to_errno(op->downcall.status); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 129 | ret = op->downcall.status; |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 130 | goto out; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 131 | } |
| 132 | |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 133 | /* failed to get matching downcall */ |
| 134 | if (ret == -ETIMEDOUT) { |
| 135 | gossip_err("orangefs: %s -- wait timed out; aborting attempt.\n", |
| 136 | op_name); |
| 137 | } |
| 138 | orangefs_clean_up_interrupted_operation(op); |
| 139 | op->downcall.status = ret; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 140 | /* retry if operation has not been serviced and if requested */ |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 141 | if (ret == -EAGAIN) { |
| 142 | op->attempts++; |
| 143 | timeout = op_timeout_secs * HZ; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 144 | gossip_debug(GOSSIP_WAIT_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 145 | "orangefs: tag %llu (%s)" |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 146 | " -- operation to be retried (%d attempt)\n", |
| 147 | llu(op->tag), |
| 148 | op_name, |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 149 | op->attempts); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 150 | |
| 151 | if (!op->uses_shared_memory) |
| 152 | /* |
| 153 | * this operation doesn't use the shared memory |
| 154 | * system |
| 155 | */ |
| 156 | goto retry_servicing; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 157 | } |
| 158 | |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 159 | out: |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 160 | gossip_debug(GOSSIP_WAIT_DEBUG, |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 161 | "orangefs: service_operation %s returning: %d for %p.\n", |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 162 | op_name, |
| 163 | ret, |
| 164 | op); |
| 165 | return ret; |
| 166 | } |
| 167 | |
Al Viro | 78699e2 | 2016-02-11 23:07:19 -0500 | [diff] [blame] | 168 | bool orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op) |
| 169 | { |
| 170 | u64 tag = op->tag; |
| 171 | if (!op_state_in_progress(op)) |
| 172 | return false; |
| 173 | |
| 174 | op->slot_to_free = op->upcall.req.io.buf_index; |
| 175 | memset(&op->upcall, 0, sizeof(op->upcall)); |
| 176 | memset(&op->downcall, 0, sizeof(op->downcall)); |
| 177 | op->upcall.type = ORANGEFS_VFS_OP_CANCEL; |
| 178 | op->upcall.req.cancel.op_tag = tag; |
| 179 | op->downcall.type = ORANGEFS_VFS_OP_INVALID; |
| 180 | op->downcall.status = -1; |
| 181 | orangefs_new_tag(op); |
| 182 | |
| 183 | spin_lock(&orangefs_request_list_lock); |
| 184 | /* orangefs_request_list_lock is enough of a barrier here */ |
| 185 | if (!__is_daemon_in_service()) { |
| 186 | spin_unlock(&orangefs_request_list_lock); |
| 187 | return false; |
| 188 | } |
Al Viro | 98815ad | 2016-02-13 10:38:23 -0500 | [diff] [blame] | 189 | spin_lock(&op->lock); |
| 190 | set_op_state_waiting(op); |
| 191 | list_add(&op->list, &orangefs_request_list); |
| 192 | spin_unlock(&op->lock); |
Al Viro | 78699e2 | 2016-02-11 23:07:19 -0500 | [diff] [blame] | 193 | spin_unlock(&orangefs_request_list_lock); |
| 194 | |
| 195 | gossip_debug(GOSSIP_UTILS_DEBUG, |
| 196 | "Attempting ORANGEFS operation cancellation of tag %llu\n", |
| 197 | llu(tag)); |
| 198 | return true; |
| 199 | } |
| 200 | |
Al Viro | e07db0a | 2016-01-21 22:21:41 -0500 | [diff] [blame] | 201 | static void orangefs_clean_up_interrupted_operation(struct orangefs_kernel_op_s *op) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 202 | { |
| 203 | /* |
| 204 | * handle interrupted cases depending on what state we were in when |
| 205 | * the interruption is detected. there is a coarse grained lock |
| 206 | * across the operation. |
| 207 | * |
Al Viro | eab9b38 | 2016-01-23 13:09:05 -0500 | [diff] [blame] | 208 | * Called with op->lock held. |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 209 | */ |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 210 | op->op_state |= OP_VFS_STATE_GIVEN_UP; |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame^] | 211 | /* from that point on it can't be moved by anybody else */ |
| 212 | if (list_empty(&op->list)) { |
| 213 | /* caught copying to/from daemon */ |
| 214 | BUG_ON(op_state_serviced(op)); |
| 215 | spin_unlock(&op->lock); |
| 216 | wait_for_completion(&op->waitq); |
| 217 | } else if (op_state_waiting(op)) { |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 218 | /* |
| 219 | * upcall hasn't been read; remove op from upcall request |
| 220 | * list. |
| 221 | */ |
| 222 | spin_unlock(&op->lock); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 223 | spin_lock(&orangefs_request_list_lock); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame^] | 224 | list_del_init(&op->list); |
Al Viro | ed42fe0 | 2016-01-22 19:47:47 -0500 | [diff] [blame] | 225 | spin_unlock(&orangefs_request_list_lock); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 226 | gossip_debug(GOSSIP_WAIT_DEBUG, |
| 227 | "Interrupted: Removed op %p from request_list\n", |
| 228 | op); |
| 229 | } else if (op_state_in_progress(op)) { |
| 230 | /* op must be removed from the in progress htable */ |
| 231 | spin_unlock(&op->lock); |
| 232 | spin_lock(&htable_ops_in_progress_lock); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame^] | 233 | list_del_init(&op->list); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 234 | spin_unlock(&htable_ops_in_progress_lock); |
| 235 | gossip_debug(GOSSIP_WAIT_DEBUG, |
| 236 | "Interrupted: Removed op %p" |
| 237 | " from htable_ops_in_progress\n", |
| 238 | op); |
Al Viro | 05a50a5 | 2016-02-18 18:59:44 -0500 | [diff] [blame^] | 239 | } else { |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 240 | spin_unlock(&op->lock); |
| 241 | gossip_err("interrupted operation is in a weird state 0x%x\n", |
| 242 | op->op_state); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 243 | } |
Al Viro | d2d87a3 | 2016-02-13 10:15:22 -0500 | [diff] [blame] | 244 | reinit_completion(&op->waitq); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | /* |
| 248 | * sleeps on waitqueue waiting for matching downcall. |
| 249 | * if client-core finishes servicing, then we are good to go. |
| 250 | * else if client-core exits, we get woken up here, and retry with a timeout |
| 251 | * |
| 252 | * Post when this call returns to the caller, the specified op will no |
| 253 | * longer be on any list or htable. |
| 254 | * |
| 255 | * Returns 0 on success and -errno on failure |
| 256 | * Errors are: |
| 257 | * EAGAIN in case we want the caller to requeue and try again.. |
| 258 | * EINTR/EIO/ETIMEDOUT indicating we are done trying to service this |
| 259 | * operation since client-core seems to be exiting too often |
| 260 | * or if we were interrupted. |
Al Viro | d2d87a3 | 2016-02-13 10:15:22 -0500 | [diff] [blame] | 261 | * |
| 262 | * Returns with op->lock taken. |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 263 | */ |
Al Viro | c72f15b | 2016-02-13 10:49:24 -0500 | [diff] [blame] | 264 | static int wait_for_matching_downcall(struct orangefs_kernel_op_s *op, |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 265 | long timeout, |
Al Viro | c72f15b | 2016-02-13 10:49:24 -0500 | [diff] [blame] | 266 | bool interruptible) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 267 | { |
Al Viro | 05b39a8 | 2016-02-13 11:04:19 -0500 | [diff] [blame] | 268 | long n; |
Al Viro | c72f15b | 2016-02-13 10:49:24 -0500 | [diff] [blame] | 269 | |
| 270 | if (interruptible) |
| 271 | n = wait_for_completion_interruptible_timeout(&op->waitq, timeout); |
| 272 | else |
| 273 | n = wait_for_completion_killable_timeout(&op->waitq, timeout); |
| 274 | |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 275 | spin_lock(&op->lock); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 276 | |
Al Viro | d2d87a3 | 2016-02-13 10:15:22 -0500 | [diff] [blame] | 277 | if (op_state_serviced(op)) |
| 278 | return 0; |
| 279 | |
| 280 | if (unlikely(n < 0)) { |
| 281 | gossip_debug(GOSSIP_WAIT_DEBUG, |
| 282 | "*** %s:" |
| 283 | " operation interrupted by a signal (tag " |
| 284 | "%llu, op %p)\n", |
| 285 | __func__, |
| 286 | llu(op->tag), |
| 287 | op); |
| 288 | return -EINTR; |
| 289 | } |
Al Viro | d2d87a3 | 2016-02-13 10:15:22 -0500 | [diff] [blame] | 290 | if (op_state_purged(op)) { |
| 291 | gossip_debug(GOSSIP_WAIT_DEBUG, |
| 292 | "*** %s:" |
| 293 | " operation purged (tag " |
| 294 | "%llu, %p, att %d)\n", |
| 295 | __func__, |
| 296 | llu(op->tag), |
| 297 | op, |
| 298 | op->attempts); |
| 299 | return (op->attempts < ORANGEFS_PURGE_RETRY_COUNT) ? |
| 300 | -EAGAIN : |
| 301 | -EIO; |
| 302 | } |
| 303 | /* must have timed out, then... */ |
| 304 | gossip_debug(GOSSIP_WAIT_DEBUG, |
| 305 | "*** %s:" |
| 306 | " operation timed out (tag" |
| 307 | " %llu, %p, att %d)\n", |
| 308 | __func__, |
| 309 | llu(op->tag), |
| 310 | op, |
| 311 | op->attempts); |
| 312 | return -ETIMEDOUT; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 313 | } |