Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright(c) 2007 Intel Corporation. All rights reserved. |
| 3 | * Copyright(c) 2008 Red Hat, Inc. All rights reserved. |
| 4 | * Copyright(c) 2008 Mike Christie |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms and conditions of the GNU General Public License, |
| 8 | * version 2, as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | * more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License along with |
| 16 | * this program; if not, write to the Free Software Foundation, Inc., |
| 17 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | * |
| 19 | * Maintained at www.Open-FCoE.org |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * Fibre Channel exchange and sequence handling. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/timer.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 28 | #include <linux/err.h> |
| 29 | |
| 30 | #include <scsi/fc/fc_fc2.h> |
| 31 | |
| 32 | #include <scsi/libfc.h> |
| 33 | #include <scsi/fc_encode.h> |
| 34 | |
Robert Love | 8866a5d | 2009-11-03 11:45:58 -0800 | [diff] [blame] | 35 | #include "fc_libfc.h" |
| 36 | |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 37 | u16 fc_cpu_mask; /* cpu mask for possible cpus */ |
| 38 | EXPORT_SYMBOL(fc_cpu_mask); |
| 39 | static u16 fc_cpu_order; /* 2's power to represent total possible cpus */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 40 | static struct kmem_cache *fc_em_cachep; /* cache for exchanges */ |
Vasu Dev | 4ae1e19 | 2009-11-03 11:50:10 -0800 | [diff] [blame] | 41 | struct workqueue_struct *fc_exch_workqueue; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 42 | |
| 43 | /* |
| 44 | * Structure and function definitions for managing Fibre Channel Exchanges |
| 45 | * and Sequences. |
| 46 | * |
| 47 | * The three primary structures used here are fc_exch_mgr, fc_exch, and fc_seq. |
| 48 | * |
| 49 | * fc_exch_mgr holds the exchange state for an N port |
| 50 | * |
| 51 | * fc_exch holds state for one exchange and links to its active sequence. |
| 52 | * |
| 53 | * fc_seq holds the state for an individual sequence. |
| 54 | */ |
| 55 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 56 | /** |
| 57 | * struct fc_exch_pool - Per cpu exchange pool |
| 58 | * @next_index: Next possible free exchange index |
| 59 | * @total_exches: Total allocated exchanges |
| 60 | * @lock: Exch pool lock |
| 61 | * @ex_list: List of exchanges |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 62 | * |
| 63 | * This structure manages per cpu exchanges in array of exchange pointers. |
| 64 | * This array is allocated followed by struct fc_exch_pool memory for |
| 65 | * assigned range of exchanges to per cpu pool. |
| 66 | */ |
| 67 | struct fc_exch_pool { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 68 | u16 next_index; |
| 69 | u16 total_exches; |
| 70 | spinlock_t lock; |
| 71 | struct list_head ex_list; |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 72 | }; |
| 73 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 74 | /** |
| 75 | * struct fc_exch_mgr - The Exchange Manager (EM). |
| 76 | * @class: Default class for new sequences |
| 77 | * @kref: Reference counter |
| 78 | * @min_xid: Minimum exchange ID |
| 79 | * @max_xid: Maximum exchange ID |
| 80 | * @ep_pool: Reserved exchange pointers |
| 81 | * @pool_max_index: Max exch array index in exch pool |
| 82 | * @pool: Per cpu exch pool |
| 83 | * @stats: Statistics structure |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 84 | * |
| 85 | * This structure is the center for creating exchanges and sequences. |
| 86 | * It manages the allocation of exchange IDs. |
| 87 | */ |
| 88 | struct fc_exch_mgr { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 89 | enum fc_class class; |
| 90 | struct kref kref; |
| 91 | u16 min_xid; |
| 92 | u16 max_xid; |
| 93 | mempool_t *ep_pool; |
| 94 | u16 pool_max_index; |
| 95 | struct fc_exch_pool *pool; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 96 | |
| 97 | /* |
| 98 | * currently exchange mgr stats are updated but not used. |
| 99 | * either stats can be expose via sysfs or remove them |
| 100 | * all together if not used XXX |
| 101 | */ |
| 102 | struct { |
| 103 | atomic_t no_free_exch; |
| 104 | atomic_t no_free_exch_xid; |
| 105 | atomic_t xid_not_found; |
| 106 | atomic_t xid_busy; |
| 107 | atomic_t seq_not_found; |
| 108 | atomic_t non_bls_resp; |
| 109 | } stats; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 110 | }; |
| 111 | #define fc_seq_exch(sp) container_of(sp, struct fc_exch, seq) |
| 112 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 113 | /** |
| 114 | * struct fc_exch_mgr_anchor - primary structure for list of EMs |
| 115 | * @ema_list: Exchange Manager Anchor list |
| 116 | * @mp: Exchange Manager associated with this anchor |
| 117 | * @match: Routine to determine if this anchor's EM should be used |
| 118 | * |
| 119 | * When walking the list of anchors the match routine will be called |
| 120 | * for each anchor to determine if that EM should be used. The last |
| 121 | * anchor in the list will always match to handle any exchanges not |
| 122 | * handled by other EMs. The non-default EMs would be added to the |
| 123 | * anchor list by HW that provides FCoE offloads. |
| 124 | */ |
Vasu Dev | 9631609 | 2009-07-29 17:05:00 -0700 | [diff] [blame] | 125 | struct fc_exch_mgr_anchor { |
| 126 | struct list_head ema_list; |
| 127 | struct fc_exch_mgr *mp; |
| 128 | bool (*match)(struct fc_frame *); |
| 129 | }; |
| 130 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 131 | static void fc_exch_rrq(struct fc_exch *); |
| 132 | static void fc_seq_ls_acc(struct fc_seq *); |
| 133 | static void fc_seq_ls_rjt(struct fc_seq *, enum fc_els_rjt_reason, |
| 134 | enum fc_els_rjt_explan); |
| 135 | static void fc_exch_els_rec(struct fc_seq *, struct fc_frame *); |
| 136 | static void fc_exch_els_rrq(struct fc_seq *, struct fc_frame *); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 137 | |
| 138 | /* |
| 139 | * Internal implementation notes. |
| 140 | * |
| 141 | * The exchange manager is one by default in libfc but LLD may choose |
| 142 | * to have one per CPU. The sequence manager is one per exchange manager |
| 143 | * and currently never separated. |
| 144 | * |
| 145 | * Section 9.8 in FC-FS-2 specifies: "The SEQ_ID is a one-byte field |
| 146 | * assigned by the Sequence Initiator that shall be unique for a specific |
| 147 | * D_ID and S_ID pair while the Sequence is open." Note that it isn't |
| 148 | * qualified by exchange ID, which one might think it would be. |
| 149 | * In practice this limits the number of open sequences and exchanges to 256 |
| 150 | * per session. For most targets we could treat this limit as per exchange. |
| 151 | * |
| 152 | * The exchange and its sequence are freed when the last sequence is received. |
| 153 | * It's possible for the remote port to leave an exchange open without |
| 154 | * sending any sequences. |
| 155 | * |
| 156 | * Notes on reference counts: |
| 157 | * |
| 158 | * Exchanges are reference counted and exchange gets freed when the reference |
| 159 | * count becomes zero. |
| 160 | * |
| 161 | * Timeouts: |
| 162 | * Sequences are timed out for E_D_TOV and R_A_TOV. |
| 163 | * |
| 164 | * Sequence event handling: |
| 165 | * |
| 166 | * The following events may occur on initiator sequences: |
| 167 | * |
| 168 | * Send. |
| 169 | * For now, the whole thing is sent. |
| 170 | * Receive ACK |
| 171 | * This applies only to class F. |
| 172 | * The sequence is marked complete. |
| 173 | * ULP completion. |
| 174 | * The upper layer calls fc_exch_done() when done |
| 175 | * with exchange and sequence tuple. |
| 176 | * RX-inferred completion. |
| 177 | * When we receive the next sequence on the same exchange, we can |
| 178 | * retire the previous sequence ID. (XXX not implemented). |
| 179 | * Timeout. |
| 180 | * R_A_TOV frees the sequence ID. If we're waiting for ACK, |
| 181 | * E_D_TOV causes abort and calls upper layer response handler |
| 182 | * with FC_EX_TIMEOUT error. |
| 183 | * Receive RJT |
| 184 | * XXX defer. |
| 185 | * Send ABTS |
| 186 | * On timeout. |
| 187 | * |
| 188 | * The following events may occur on recipient sequences: |
| 189 | * |
| 190 | * Receive |
| 191 | * Allocate sequence for first frame received. |
| 192 | * Hold during receive handler. |
| 193 | * Release when final frame received. |
| 194 | * Keep status of last N of these for the ELS RES command. XXX TBD. |
| 195 | * Receive ABTS |
| 196 | * Deallocate sequence |
| 197 | * Send RJT |
| 198 | * Deallocate |
| 199 | * |
| 200 | * For now, we neglect conditions where only part of a sequence was |
| 201 | * received or transmitted, or where out-of-order receipt is detected. |
| 202 | */ |
| 203 | |
| 204 | /* |
| 205 | * Locking notes: |
| 206 | * |
| 207 | * The EM code run in a per-CPU worker thread. |
| 208 | * |
| 209 | * To protect against concurrency between a worker thread code and timers, |
| 210 | * sequence allocation and deallocation must be locked. |
| 211 | * - exchange refcnt can be done atomicly without locks. |
| 212 | * - sequence allocation must be locked by exch lock. |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 213 | * - If the EM pool lock and ex_lock must be taken at the same time, then the |
| 214 | * EM pool lock must be taken before the ex_lock. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 215 | */ |
| 216 | |
| 217 | /* |
| 218 | * opcode names for debugging. |
| 219 | */ |
| 220 | static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT; |
| 221 | |
| 222 | #define FC_TABLE_SIZE(x) (sizeof(x) / sizeof(x[0])) |
| 223 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 224 | /** |
| 225 | * fc_exch_name_lookup() - Lookup name by opcode |
| 226 | * @op: Opcode to be looked up |
| 227 | * @table: Opcode/name table |
| 228 | * @max_index: Index not to be exceeded |
| 229 | * |
| 230 | * This routine is used to determine a human-readable string identifying |
| 231 | * a R_CTL opcode. |
| 232 | */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 233 | static inline const char *fc_exch_name_lookup(unsigned int op, char **table, |
| 234 | unsigned int max_index) |
| 235 | { |
| 236 | const char *name = NULL; |
| 237 | |
| 238 | if (op < max_index) |
| 239 | name = table[op]; |
| 240 | if (!name) |
| 241 | name = "unknown"; |
| 242 | return name; |
| 243 | } |
| 244 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 245 | /** |
| 246 | * fc_exch_rctl_name() - Wrapper routine for fc_exch_name_lookup() |
| 247 | * @op: The opcode to be looked up |
| 248 | */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 249 | static const char *fc_exch_rctl_name(unsigned int op) |
| 250 | { |
| 251 | return fc_exch_name_lookup(op, fc_exch_rctl_names, |
| 252 | FC_TABLE_SIZE(fc_exch_rctl_names)); |
| 253 | } |
| 254 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 255 | /** |
| 256 | * fc_exch_hold() - Increment an exchange's reference count |
| 257 | * @ep: Echange to be held |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 258 | */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 259 | static inline void fc_exch_hold(struct fc_exch *ep) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 260 | { |
| 261 | atomic_inc(&ep->ex_refcnt); |
| 262 | } |
| 263 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 264 | /** |
| 265 | * fc_exch_setup_hdr() - Initialize a FC header by initializing some fields |
| 266 | * and determine SOF and EOF. |
| 267 | * @ep: The exchange to that will use the header |
| 268 | * @fp: The frame whose header is to be modified |
| 269 | * @f_ctl: F_CTL bits that will be used for the frame header |
| 270 | * |
| 271 | * The fields initialized by this routine are: fh_ox_id, fh_rx_id, |
| 272 | * fh_seq_id, fh_seq_cnt and the SOF and EOF. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 273 | */ |
| 274 | static void fc_exch_setup_hdr(struct fc_exch *ep, struct fc_frame *fp, |
| 275 | u32 f_ctl) |
| 276 | { |
| 277 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
| 278 | u16 fill; |
| 279 | |
| 280 | fr_sof(fp) = ep->class; |
| 281 | if (ep->seq.cnt) |
| 282 | fr_sof(fp) = fc_sof_normal(ep->class); |
| 283 | |
| 284 | if (f_ctl & FC_FC_END_SEQ) { |
| 285 | fr_eof(fp) = FC_EOF_T; |
| 286 | if (fc_sof_needs_ack(ep->class)) |
| 287 | fr_eof(fp) = FC_EOF_N; |
| 288 | /* |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 289 | * From F_CTL. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 290 | * The number of fill bytes to make the length a 4-byte |
| 291 | * multiple is the low order 2-bits of the f_ctl. |
| 292 | * The fill itself will have been cleared by the frame |
| 293 | * allocation. |
| 294 | * After this, the length will be even, as expected by |
| 295 | * the transport. |
| 296 | */ |
| 297 | fill = fr_len(fp) & 3; |
| 298 | if (fill) { |
| 299 | fill = 4 - fill; |
| 300 | /* TODO, this may be a problem with fragmented skb */ |
| 301 | skb_put(fp_skb(fp), fill); |
| 302 | hton24(fh->fh_f_ctl, f_ctl | fill); |
| 303 | } |
| 304 | } else { |
| 305 | WARN_ON(fr_len(fp) % 4 != 0); /* no pad to non last frame */ |
| 306 | fr_eof(fp) = FC_EOF_N; |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * Initialize remainig fh fields |
| 311 | * from fc_fill_fc_hdr |
| 312 | */ |
| 313 | fh->fh_ox_id = htons(ep->oxid); |
| 314 | fh->fh_rx_id = htons(ep->rxid); |
| 315 | fh->fh_seq_id = ep->seq.id; |
| 316 | fh->fh_seq_cnt = htons(ep->seq.cnt); |
| 317 | } |
| 318 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 319 | /** |
| 320 | * fc_exch_release() - Decrement an exchange's reference count |
| 321 | * @ep: Exchange to be released |
| 322 | * |
| 323 | * If the reference count reaches zero and the exchange is complete, |
| 324 | * it is freed. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 325 | */ |
| 326 | static void fc_exch_release(struct fc_exch *ep) |
| 327 | { |
| 328 | struct fc_exch_mgr *mp; |
| 329 | |
| 330 | if (atomic_dec_and_test(&ep->ex_refcnt)) { |
| 331 | mp = ep->em; |
| 332 | if (ep->destructor) |
| 333 | ep->destructor(&ep->seq, ep->arg); |
Julia Lawall | aa6cd29 | 2009-02-04 22:17:29 +0100 | [diff] [blame] | 334 | WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE)); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 335 | mempool_free(ep, mp->ep_pool); |
| 336 | } |
| 337 | } |
| 338 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 339 | /** |
| 340 | * fc_exch_done_locked() - Complete an exchange with the exchange lock held |
| 341 | * @ep: The exchange that is complete |
| 342 | */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 343 | static int fc_exch_done_locked(struct fc_exch *ep) |
| 344 | { |
| 345 | int rc = 1; |
| 346 | |
| 347 | /* |
| 348 | * We must check for completion in case there are two threads |
| 349 | * tyring to complete this. But the rrq code will reuse the |
| 350 | * ep, and in that case we only clear the resp and set it as |
| 351 | * complete, so it can be reused by the timer to send the rrq. |
| 352 | */ |
| 353 | ep->resp = NULL; |
| 354 | if (ep->state & FC_EX_DONE) |
| 355 | return rc; |
| 356 | ep->esb_stat |= ESB_ST_COMPLETE; |
| 357 | |
| 358 | if (!(ep->esb_stat & ESB_ST_REC_QUAL)) { |
| 359 | ep->state |= FC_EX_DONE; |
| 360 | if (cancel_delayed_work(&ep->timeout_work)) |
| 361 | atomic_dec(&ep->ex_refcnt); /* drop hold for timer */ |
| 362 | rc = 0; |
| 363 | } |
| 364 | return rc; |
| 365 | } |
| 366 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 367 | /** |
| 368 | * fc_exch_ptr_get() - Return an exchange from an exchange pool |
| 369 | * @pool: Exchange Pool to get an exchange from |
| 370 | * @index: Index of the exchange within the pool |
| 371 | * |
| 372 | * Use the index to get an exchange from within an exchange pool. exches |
| 373 | * will point to an array of exchange pointers. The index will select |
| 374 | * the exchange within the array. |
| 375 | */ |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 376 | static inline struct fc_exch *fc_exch_ptr_get(struct fc_exch_pool *pool, |
| 377 | u16 index) |
| 378 | { |
| 379 | struct fc_exch **exches = (struct fc_exch **)(pool + 1); |
| 380 | return exches[index]; |
| 381 | } |
| 382 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 383 | /** |
| 384 | * fc_exch_ptr_set() - Assign an exchange to a slot in an exchange pool |
| 385 | * @pool: The pool to assign the exchange to |
| 386 | * @index: The index in the pool where the exchange will be assigned |
| 387 | * @ep: The exchange to assign to the pool |
| 388 | */ |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 389 | static inline void fc_exch_ptr_set(struct fc_exch_pool *pool, u16 index, |
| 390 | struct fc_exch *ep) |
| 391 | { |
| 392 | ((struct fc_exch **)(pool + 1))[index] = ep; |
| 393 | } |
| 394 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 395 | /** |
| 396 | * fc_exch_delete() - Delete an exchange |
| 397 | * @ep: The exchange to be deleted |
| 398 | */ |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 399 | static void fc_exch_delete(struct fc_exch *ep) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 400 | { |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 401 | struct fc_exch_pool *pool; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 402 | |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 403 | pool = ep->pool; |
| 404 | spin_lock_bh(&pool->lock); |
| 405 | WARN_ON(pool->total_exches <= 0); |
| 406 | pool->total_exches--; |
| 407 | fc_exch_ptr_set(pool, (ep->xid - ep->em->min_xid) >> fc_cpu_order, |
| 408 | NULL); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 409 | list_del(&ep->ex_list); |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 410 | spin_unlock_bh(&pool->lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 411 | fc_exch_release(ep); /* drop hold for exch in mp */ |
| 412 | } |
| 413 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 414 | /** |
| 415 | * fc_exch_timer_set_locked() - Start a timer for an exchange w/ the |
| 416 | * the exchange lock held |
| 417 | * @ep: The exchange whose timer will start |
| 418 | * @timer_msec: The timeout period |
| 419 | * |
| 420 | * Used for upper level protocols to time out the exchange. |
| 421 | * The timer is cancelled when it fires or when the exchange completes. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 422 | */ |
| 423 | static inline void fc_exch_timer_set_locked(struct fc_exch *ep, |
| 424 | unsigned int timer_msec) |
| 425 | { |
| 426 | if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) |
| 427 | return; |
| 428 | |
Robert Love | cd305ce | 2009-08-25 13:58:37 -0700 | [diff] [blame] | 429 | FC_EXCH_DBG(ep, "Exchange timer armed\n"); |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 430 | |
Vasu Dev | 4ae1e19 | 2009-11-03 11:50:10 -0800 | [diff] [blame] | 431 | if (queue_delayed_work(fc_exch_workqueue, &ep->timeout_work, |
| 432 | msecs_to_jiffies(timer_msec))) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 433 | fc_exch_hold(ep); /* hold for timer */ |
| 434 | } |
| 435 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 436 | /** |
| 437 | * fc_exch_timer_set() - Lock the exchange and set the timer |
| 438 | * @ep: The exchange whose timer will start |
| 439 | * @timer_msec: The timeout period |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 440 | */ |
| 441 | static void fc_exch_timer_set(struct fc_exch *ep, unsigned int timer_msec) |
| 442 | { |
| 443 | spin_lock_bh(&ep->ex_lock); |
| 444 | fc_exch_timer_set_locked(ep, timer_msec); |
| 445 | spin_unlock_bh(&ep->ex_lock); |
| 446 | } |
| 447 | |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 448 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 449 | * fc_seq_send() - Send a frame using existing sequence/exchange pair |
| 450 | * @lport: The local port that the exchange will be sent on |
| 451 | * @sp: The sequence to be sent |
| 452 | * @fp: The frame to be sent on the exchange |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 453 | */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 454 | static int fc_seq_send(struct fc_lport *lport, struct fc_seq *sp, |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 455 | struct fc_frame *fp) |
| 456 | { |
| 457 | struct fc_exch *ep; |
| 458 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
| 459 | int error; |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 460 | u32 f_ctl; |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 461 | |
| 462 | ep = fc_seq_exch(sp); |
| 463 | WARN_ON((ep->esb_stat & ESB_ST_SEQ_INIT) != ESB_ST_SEQ_INIT); |
| 464 | |
| 465 | f_ctl = ntoh24(fh->fh_f_ctl); |
| 466 | fc_exch_setup_hdr(ep, fp, f_ctl); |
Joe Eykholt | f60e12e | 2010-07-20 15:20:14 -0700 | [diff] [blame] | 467 | fr_encaps(fp) = ep->encaps; |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 468 | |
| 469 | /* |
| 470 | * update sequence count if this frame is carrying |
| 471 | * multiple FC frames when sequence offload is enabled |
| 472 | * by LLD. |
| 473 | */ |
| 474 | if (fr_max_payload(fp)) |
| 475 | sp->cnt += DIV_ROUND_UP((fr_len(fp) - sizeof(*fh)), |
| 476 | fr_max_payload(fp)); |
| 477 | else |
| 478 | sp->cnt++; |
| 479 | |
| 480 | /* |
| 481 | * Send the frame. |
| 482 | */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 483 | error = lport->tt.frame_send(lport, fp); |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 484 | |
| 485 | /* |
| 486 | * Update the exchange and sequence flags, |
| 487 | * assuming all frames for the sequence have been sent. |
| 488 | * We can only be called to send once for each sequence. |
| 489 | */ |
| 490 | spin_lock_bh(&ep->ex_lock); |
| 491 | ep->f_ctl = f_ctl & ~FC_FC_FIRST_SEQ; /* not first seq */ |
Joe Eykholt | cc3593d | 2010-03-12 16:08:29 -0800 | [diff] [blame] | 492 | if (f_ctl & FC_FC_SEQ_INIT) |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 493 | ep->esb_stat &= ~ESB_ST_SEQ_INIT; |
| 494 | spin_unlock_bh(&ep->ex_lock); |
| 495 | return error; |
| 496 | } |
| 497 | |
| 498 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 499 | * fc_seq_alloc() - Allocate a sequence for a given exchange |
| 500 | * @ep: The exchange to allocate a new sequence for |
| 501 | * @seq_id: The sequence ID to be used |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 502 | * |
| 503 | * We don't support multiple originated sequences on the same exchange. |
| 504 | * By implication, any previously originated sequence on this exchange |
| 505 | * is complete, and we reallocate the same sequence. |
| 506 | */ |
| 507 | static struct fc_seq *fc_seq_alloc(struct fc_exch *ep, u8 seq_id) |
| 508 | { |
| 509 | struct fc_seq *sp; |
| 510 | |
| 511 | sp = &ep->seq; |
| 512 | sp->ssb_stat = 0; |
| 513 | sp->cnt = 0; |
| 514 | sp->id = seq_id; |
| 515 | return sp; |
| 516 | } |
| 517 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 518 | /** |
| 519 | * fc_seq_start_next_locked() - Allocate a new sequence on the same |
| 520 | * exchange as the supplied sequence |
| 521 | * @sp: The sequence/exchange to get a new sequence for |
| 522 | */ |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 523 | static struct fc_seq *fc_seq_start_next_locked(struct fc_seq *sp) |
| 524 | { |
| 525 | struct fc_exch *ep = fc_seq_exch(sp); |
| 526 | |
| 527 | sp = fc_seq_alloc(ep, ep->seq_id++); |
| 528 | FC_EXCH_DBG(ep, "f_ctl %6x seq %2x\n", |
| 529 | ep->f_ctl, sp->id); |
| 530 | return sp; |
| 531 | } |
| 532 | |
| 533 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 534 | * fc_seq_start_next() - Lock the exchange and get a new sequence |
| 535 | * for a given sequence/exchange pair |
| 536 | * @sp: The sequence/exchange to get a new exchange for |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 537 | */ |
| 538 | static struct fc_seq *fc_seq_start_next(struct fc_seq *sp) |
| 539 | { |
| 540 | struct fc_exch *ep = fc_seq_exch(sp); |
| 541 | |
| 542 | spin_lock_bh(&ep->ex_lock); |
| 543 | sp = fc_seq_start_next_locked(sp); |
| 544 | spin_unlock_bh(&ep->ex_lock); |
| 545 | |
| 546 | return sp; |
| 547 | } |
| 548 | |
| 549 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 550 | * fc_seq_exch_abort() - Abort an exchange and sequence |
| 551 | * @req_sp: The sequence to be aborted |
| 552 | * @timer_msec: The period of time to wait before aborting |
| 553 | * |
| 554 | * Generally called because of a timeout or an abort from the upper layer. |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 555 | */ |
| 556 | static int fc_seq_exch_abort(const struct fc_seq *req_sp, |
| 557 | unsigned int timer_msec) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 558 | { |
| 559 | struct fc_seq *sp; |
| 560 | struct fc_exch *ep; |
| 561 | struct fc_frame *fp; |
| 562 | int error; |
| 563 | |
| 564 | ep = fc_seq_exch(req_sp); |
| 565 | |
| 566 | spin_lock_bh(&ep->ex_lock); |
| 567 | if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL) || |
| 568 | ep->state & (FC_EX_DONE | FC_EX_RST_CLEANUP)) { |
| 569 | spin_unlock_bh(&ep->ex_lock); |
| 570 | return -ENXIO; |
| 571 | } |
| 572 | |
| 573 | /* |
| 574 | * Send the abort on a new sequence if possible. |
| 575 | */ |
| 576 | sp = fc_seq_start_next_locked(&ep->seq); |
| 577 | if (!sp) { |
| 578 | spin_unlock_bh(&ep->ex_lock); |
| 579 | return -ENOMEM; |
| 580 | } |
| 581 | |
| 582 | ep->esb_stat |= ESB_ST_SEQ_INIT | ESB_ST_ABNORMAL; |
| 583 | if (timer_msec) |
| 584 | fc_exch_timer_set_locked(ep, timer_msec); |
| 585 | spin_unlock_bh(&ep->ex_lock); |
| 586 | |
| 587 | /* |
| 588 | * If not logged into the fabric, don't send ABTS but leave |
| 589 | * sequence active until next timeout. |
| 590 | */ |
| 591 | if (!ep->sid) |
| 592 | return 0; |
| 593 | |
| 594 | /* |
| 595 | * Send an abort for the sequence that timed out. |
| 596 | */ |
| 597 | fp = fc_frame_alloc(ep->lp, 0); |
| 598 | if (fp) { |
| 599 | fc_fill_fc_hdr(fp, FC_RCTL_BA_ABTS, ep->did, ep->sid, |
| 600 | FC_TYPE_BLS, FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0); |
| 601 | error = fc_seq_send(ep->lp, sp, fp); |
| 602 | } else |
| 603 | error = -ENOBUFS; |
| 604 | return error; |
| 605 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 606 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 607 | /** |
| 608 | * fc_exch_timeout() - Handle exchange timer expiration |
| 609 | * @work: The work_struct identifying the exchange that timed out |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 610 | */ |
| 611 | static void fc_exch_timeout(struct work_struct *work) |
| 612 | { |
| 613 | struct fc_exch *ep = container_of(work, struct fc_exch, |
| 614 | timeout_work.work); |
| 615 | struct fc_seq *sp = &ep->seq; |
| 616 | void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg); |
| 617 | void *arg; |
| 618 | u32 e_stat; |
| 619 | int rc = 1; |
| 620 | |
Robert Love | cd305ce | 2009-08-25 13:58:37 -0700 | [diff] [blame] | 621 | FC_EXCH_DBG(ep, "Exchange timed out\n"); |
| 622 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 623 | spin_lock_bh(&ep->ex_lock); |
| 624 | if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) |
| 625 | goto unlock; |
| 626 | |
| 627 | e_stat = ep->esb_stat; |
| 628 | if (e_stat & ESB_ST_COMPLETE) { |
| 629 | ep->esb_stat = e_stat & ~ESB_ST_REC_QUAL; |
Vasu Dev | a0cc1ec | 2009-07-28 17:33:37 -0700 | [diff] [blame] | 630 | spin_unlock_bh(&ep->ex_lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 631 | if (e_stat & ESB_ST_REC_QUAL) |
| 632 | fc_exch_rrq(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 633 | goto done; |
| 634 | } else { |
| 635 | resp = ep->resp; |
| 636 | arg = ep->arg; |
| 637 | ep->resp = NULL; |
| 638 | if (e_stat & ESB_ST_ABNORMAL) |
| 639 | rc = fc_exch_done_locked(ep); |
| 640 | spin_unlock_bh(&ep->ex_lock); |
| 641 | if (!rc) |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 642 | fc_exch_delete(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 643 | if (resp) |
| 644 | resp(sp, ERR_PTR(-FC_EX_TIMEOUT), arg); |
| 645 | fc_seq_exch_abort(sp, 2 * ep->r_a_tov); |
| 646 | goto done; |
| 647 | } |
| 648 | unlock: |
| 649 | spin_unlock_bh(&ep->ex_lock); |
| 650 | done: |
| 651 | /* |
| 652 | * This release matches the hold taken when the timer was set. |
| 653 | */ |
| 654 | fc_exch_release(ep); |
| 655 | } |
| 656 | |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 657 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 658 | * fc_exch_em_alloc() - Allocate an exchange from a specified EM. |
| 659 | * @lport: The local port that the exchange is for |
| 660 | * @mp: The exchange manager that will allocate the exchange |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 661 | * |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 662 | * Returns pointer to allocated fc_exch with exch lock held. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 663 | */ |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 664 | static struct fc_exch *fc_exch_em_alloc(struct fc_lport *lport, |
Vasu Dev | d717968 | 2009-07-29 17:05:21 -0700 | [diff] [blame] | 665 | struct fc_exch_mgr *mp) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 666 | { |
| 667 | struct fc_exch *ep; |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 668 | unsigned int cpu; |
| 669 | u16 index; |
| 670 | struct fc_exch_pool *pool; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 671 | |
| 672 | /* allocate memory for exchange */ |
| 673 | ep = mempool_alloc(mp->ep_pool, GFP_ATOMIC); |
| 674 | if (!ep) { |
| 675 | atomic_inc(&mp->stats.no_free_exch); |
| 676 | goto out; |
| 677 | } |
| 678 | memset(ep, 0, sizeof(*ep)); |
| 679 | |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 680 | cpu = get_cpu(); |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 681 | pool = per_cpu_ptr(mp->pool, cpu); |
| 682 | spin_lock_bh(&pool->lock); |
Joe Eykholt | f018b73 | 2010-03-12 16:08:55 -0800 | [diff] [blame] | 683 | put_cpu(); |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 684 | index = pool->next_index; |
| 685 | /* allocate new exch from pool */ |
| 686 | while (fc_exch_ptr_get(pool, index)) { |
| 687 | index = index == mp->pool_max_index ? 0 : index + 1; |
| 688 | if (index == pool->next_index) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 689 | goto err; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 690 | } |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 691 | pool->next_index = index == mp->pool_max_index ? 0 : index + 1; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 692 | |
| 693 | fc_exch_hold(ep); /* hold for exch in mp */ |
| 694 | spin_lock_init(&ep->ex_lock); |
| 695 | /* |
| 696 | * Hold exch lock for caller to prevent fc_exch_reset() |
| 697 | * from releasing exch while fc_exch_alloc() caller is |
| 698 | * still working on exch. |
| 699 | */ |
| 700 | spin_lock_bh(&ep->ex_lock); |
| 701 | |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 702 | fc_exch_ptr_set(pool, index, ep); |
| 703 | list_add_tail(&ep->ex_list, &pool->ex_list); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 704 | fc_seq_alloc(ep, ep->seq_id++); |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 705 | pool->total_exches++; |
| 706 | spin_unlock_bh(&pool->lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 707 | |
| 708 | /* |
| 709 | * update exchange |
| 710 | */ |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 711 | ep->oxid = ep->xid = (index << fc_cpu_order | cpu) + mp->min_xid; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 712 | ep->em = mp; |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 713 | ep->pool = pool; |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 714 | ep->lp = lport; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 715 | ep->f_ctl = FC_FC_FIRST_SEQ; /* next seq is first seq */ |
| 716 | ep->rxid = FC_XID_UNKNOWN; |
| 717 | ep->class = mp->class; |
| 718 | INIT_DELAYED_WORK(&ep->timeout_work, fc_exch_timeout); |
| 719 | out: |
| 720 | return ep; |
| 721 | err: |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 722 | spin_unlock_bh(&pool->lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 723 | atomic_inc(&mp->stats.no_free_exch_xid); |
| 724 | mempool_free(ep, mp->ep_pool); |
| 725 | return NULL; |
| 726 | } |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 727 | |
| 728 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 729 | * fc_exch_alloc() - Allocate an exchange from an EM on a |
| 730 | * local port's list of EMs. |
| 731 | * @lport: The local port that will own the exchange |
| 732 | * @fp: The FC frame that the exchange will be for |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 733 | * |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 734 | * This function walks the list of exchange manager(EM) |
| 735 | * anchors to select an EM for a new exchange allocation. The |
| 736 | * EM is selected when a NULL match function pointer is encountered |
| 737 | * or when a call to a match function returns true. |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 738 | */ |
Vasu Dev | 3e22760 | 2010-03-12 16:08:39 -0800 | [diff] [blame] | 739 | static inline struct fc_exch *fc_exch_alloc(struct fc_lport *lport, |
| 740 | struct fc_frame *fp) |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 741 | { |
| 742 | struct fc_exch_mgr_anchor *ema; |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 743 | |
Vasu Dev | 3e22760 | 2010-03-12 16:08:39 -0800 | [diff] [blame] | 744 | list_for_each_entry(ema, &lport->ema_list, ema_list) |
| 745 | if (!ema->match || ema->match(fp)) |
| 746 | return fc_exch_em_alloc(lport, ema->mp); |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 747 | return NULL; |
| 748 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 749 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 750 | /** |
| 751 | * fc_exch_find() - Lookup and hold an exchange |
| 752 | * @mp: The exchange manager to lookup the exchange from |
| 753 | * @xid: The XID of the exchange to look up |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 754 | */ |
| 755 | static struct fc_exch *fc_exch_find(struct fc_exch_mgr *mp, u16 xid) |
| 756 | { |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 757 | struct fc_exch_pool *pool; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 758 | struct fc_exch *ep = NULL; |
| 759 | |
| 760 | if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) { |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 761 | pool = per_cpu_ptr(mp->pool, xid & fc_cpu_mask); |
| 762 | spin_lock_bh(&pool->lock); |
| 763 | ep = fc_exch_ptr_get(pool, (xid - mp->min_xid) >> fc_cpu_order); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 764 | if (ep) { |
| 765 | fc_exch_hold(ep); |
| 766 | WARN_ON(ep->xid != xid); |
| 767 | } |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 768 | spin_unlock_bh(&pool->lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 769 | } |
| 770 | return ep; |
| 771 | } |
| 772 | |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 773 | |
| 774 | /** |
| 775 | * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 776 | * the memory allocated for the related objects may be freed. |
| 777 | * @sp: The sequence that has completed |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 778 | */ |
| 779 | static void fc_exch_done(struct fc_seq *sp) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 780 | { |
| 781 | struct fc_exch *ep = fc_seq_exch(sp); |
| 782 | int rc; |
| 783 | |
| 784 | spin_lock_bh(&ep->ex_lock); |
| 785 | rc = fc_exch_done_locked(ep); |
| 786 | spin_unlock_bh(&ep->ex_lock); |
| 787 | if (!rc) |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 788 | fc_exch_delete(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 789 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 790 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 791 | /** |
| 792 | * fc_exch_resp() - Allocate a new exchange for a response frame |
| 793 | * @lport: The local port that the exchange was for |
| 794 | * @mp: The exchange manager to allocate the exchange from |
| 795 | * @fp: The response frame |
| 796 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 797 | * Sets the responder ID in the frame header. |
| 798 | */ |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 799 | static struct fc_exch *fc_exch_resp(struct fc_lport *lport, |
| 800 | struct fc_exch_mgr *mp, |
| 801 | struct fc_frame *fp) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 802 | { |
| 803 | struct fc_exch *ep; |
| 804 | struct fc_frame_header *fh; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 805 | |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 806 | ep = fc_exch_alloc(lport, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 807 | if (ep) { |
| 808 | ep->class = fc_frame_class(fp); |
| 809 | |
| 810 | /* |
| 811 | * Set EX_CTX indicating we're responding on this exchange. |
| 812 | */ |
| 813 | ep->f_ctl |= FC_FC_EX_CTX; /* we're responding */ |
| 814 | ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not new */ |
| 815 | fh = fc_frame_header_get(fp); |
| 816 | ep->sid = ntoh24(fh->fh_d_id); |
| 817 | ep->did = ntoh24(fh->fh_s_id); |
| 818 | ep->oid = ep->did; |
| 819 | |
| 820 | /* |
| 821 | * Allocated exchange has placed the XID in the |
| 822 | * originator field. Move it to the responder field, |
| 823 | * and set the originator XID from the frame. |
| 824 | */ |
| 825 | ep->rxid = ep->xid; |
| 826 | ep->oxid = ntohs(fh->fh_ox_id); |
| 827 | ep->esb_stat |= ESB_ST_RESP | ESB_ST_SEQ_INIT; |
| 828 | if ((ntoh24(fh->fh_f_ctl) & FC_FC_SEQ_INIT) == 0) |
| 829 | ep->esb_stat &= ~ESB_ST_SEQ_INIT; |
| 830 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 831 | fc_exch_hold(ep); /* hold for caller */ |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 832 | spin_unlock_bh(&ep->ex_lock); /* lock from fc_exch_alloc */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 833 | } |
| 834 | return ep; |
| 835 | } |
| 836 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 837 | /** |
| 838 | * fc_seq_lookup_recip() - Find a sequence where the other end |
| 839 | * originated the sequence |
| 840 | * @lport: The local port that the frame was sent to |
| 841 | * @mp: The Exchange Manager to lookup the exchange from |
| 842 | * @fp: The frame associated with the sequence we're looking for |
| 843 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 844 | * If fc_pf_rjt_reason is FC_RJT_NONE then this function will have a hold |
| 845 | * on the ep that should be released by the caller. |
| 846 | */ |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 847 | static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport, |
| 848 | struct fc_exch_mgr *mp, |
Robert Love | b2ab99c | 2009-02-27 10:55:50 -0800 | [diff] [blame] | 849 | struct fc_frame *fp) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 850 | { |
| 851 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
| 852 | struct fc_exch *ep = NULL; |
| 853 | struct fc_seq *sp = NULL; |
| 854 | enum fc_pf_rjt_reason reject = FC_RJT_NONE; |
| 855 | u32 f_ctl; |
| 856 | u16 xid; |
| 857 | |
| 858 | f_ctl = ntoh24(fh->fh_f_ctl); |
| 859 | WARN_ON((f_ctl & FC_FC_SEQ_CTX) != 0); |
| 860 | |
| 861 | /* |
| 862 | * Lookup or create the exchange if we will be creating the sequence. |
| 863 | */ |
| 864 | if (f_ctl & FC_FC_EX_CTX) { |
| 865 | xid = ntohs(fh->fh_ox_id); /* we originated exch */ |
| 866 | ep = fc_exch_find(mp, xid); |
| 867 | if (!ep) { |
| 868 | atomic_inc(&mp->stats.xid_not_found); |
| 869 | reject = FC_RJT_OX_ID; |
| 870 | goto out; |
| 871 | } |
| 872 | if (ep->rxid == FC_XID_UNKNOWN) |
| 873 | ep->rxid = ntohs(fh->fh_rx_id); |
| 874 | else if (ep->rxid != ntohs(fh->fh_rx_id)) { |
| 875 | reject = FC_RJT_OX_ID; |
| 876 | goto rel; |
| 877 | } |
| 878 | } else { |
| 879 | xid = ntohs(fh->fh_rx_id); /* we are the responder */ |
| 880 | |
| 881 | /* |
| 882 | * Special case for MDS issuing an ELS TEST with a |
| 883 | * bad rxid of 0. |
| 884 | * XXX take this out once we do the proper reject. |
| 885 | */ |
| 886 | if (xid == 0 && fh->fh_r_ctl == FC_RCTL_ELS_REQ && |
| 887 | fc_frame_payload_op(fp) == ELS_TEST) { |
| 888 | fh->fh_rx_id = htons(FC_XID_UNKNOWN); |
| 889 | xid = FC_XID_UNKNOWN; |
| 890 | } |
| 891 | |
| 892 | /* |
| 893 | * new sequence - find the exchange |
| 894 | */ |
| 895 | ep = fc_exch_find(mp, xid); |
| 896 | if ((f_ctl & FC_FC_FIRST_SEQ) && fc_sof_is_init(fr_sof(fp))) { |
| 897 | if (ep) { |
| 898 | atomic_inc(&mp->stats.xid_busy); |
| 899 | reject = FC_RJT_RX_ID; |
| 900 | goto rel; |
| 901 | } |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 902 | ep = fc_exch_resp(lport, mp, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 903 | if (!ep) { |
| 904 | reject = FC_RJT_EXCH_EST; /* XXX */ |
| 905 | goto out; |
| 906 | } |
| 907 | xid = ep->xid; /* get our XID */ |
| 908 | } else if (!ep) { |
| 909 | atomic_inc(&mp->stats.xid_not_found); |
| 910 | reject = FC_RJT_RX_ID; /* XID not found */ |
| 911 | goto out; |
| 912 | } |
| 913 | } |
| 914 | |
| 915 | /* |
| 916 | * At this point, we have the exchange held. |
| 917 | * Find or create the sequence. |
| 918 | */ |
| 919 | if (fc_sof_is_init(fr_sof(fp))) { |
Vasu Dev | a104c84 | 2010-03-12 16:08:34 -0800 | [diff] [blame] | 920 | sp = &ep->seq; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 921 | sp->ssb_stat |= SSB_ST_RESP; |
Joe Eykholt | b3667f9 | 2010-05-07 15:18:13 -0700 | [diff] [blame] | 922 | sp->id = fh->fh_seq_id; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 923 | } else { |
| 924 | sp = &ep->seq; |
| 925 | if (sp->id != fh->fh_seq_id) { |
| 926 | atomic_inc(&mp->stats.seq_not_found); |
| 927 | reject = FC_RJT_SEQ_ID; /* sequence/exch should exist */ |
| 928 | goto rel; |
| 929 | } |
| 930 | } |
| 931 | WARN_ON(ep != fc_seq_exch(sp)); |
| 932 | |
| 933 | if (f_ctl & FC_FC_SEQ_INIT) |
| 934 | ep->esb_stat |= ESB_ST_SEQ_INIT; |
| 935 | |
| 936 | fr_seq(fp) = sp; |
| 937 | out: |
| 938 | return reject; |
| 939 | rel: |
| 940 | fc_exch_done(&ep->seq); |
| 941 | fc_exch_release(ep); /* hold from fc_exch_find/fc_exch_resp */ |
| 942 | return reject; |
| 943 | } |
| 944 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 945 | /** |
| 946 | * fc_seq_lookup_orig() - Find a sequence where this end |
| 947 | * originated the sequence |
| 948 | * @mp: The Exchange Manager to lookup the exchange from |
| 949 | * @fp: The frame associated with the sequence we're looking for |
| 950 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 951 | * Does not hold the sequence for the caller. |
| 952 | */ |
| 953 | static struct fc_seq *fc_seq_lookup_orig(struct fc_exch_mgr *mp, |
| 954 | struct fc_frame *fp) |
| 955 | { |
| 956 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
| 957 | struct fc_exch *ep; |
| 958 | struct fc_seq *sp = NULL; |
| 959 | u32 f_ctl; |
| 960 | u16 xid; |
| 961 | |
| 962 | f_ctl = ntoh24(fh->fh_f_ctl); |
| 963 | WARN_ON((f_ctl & FC_FC_SEQ_CTX) != FC_FC_SEQ_CTX); |
| 964 | xid = ntohs((f_ctl & FC_FC_EX_CTX) ? fh->fh_ox_id : fh->fh_rx_id); |
| 965 | ep = fc_exch_find(mp, xid); |
| 966 | if (!ep) |
| 967 | return NULL; |
| 968 | if (ep->seq.id == fh->fh_seq_id) { |
| 969 | /* |
| 970 | * Save the RX_ID if we didn't previously know it. |
| 971 | */ |
| 972 | sp = &ep->seq; |
| 973 | if ((f_ctl & FC_FC_EX_CTX) != 0 && |
| 974 | ep->rxid == FC_XID_UNKNOWN) { |
| 975 | ep->rxid = ntohs(fh->fh_rx_id); |
| 976 | } |
| 977 | } |
| 978 | fc_exch_release(ep); |
| 979 | return sp; |
| 980 | } |
| 981 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 982 | /** |
| 983 | * fc_exch_set_addr() - Set the source and destination IDs for an exchange |
| 984 | * @ep: The exchange to set the addresses for |
| 985 | * @orig_id: The originator's ID |
| 986 | * @resp_id: The responder's ID |
| 987 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 988 | * Note this must be done before the first sequence of the exchange is sent. |
| 989 | */ |
| 990 | static void fc_exch_set_addr(struct fc_exch *ep, |
| 991 | u32 orig_id, u32 resp_id) |
| 992 | { |
| 993 | ep->oid = orig_id; |
| 994 | if (ep->esb_stat & ESB_ST_RESP) { |
| 995 | ep->sid = resp_id; |
| 996 | ep->did = orig_id; |
| 997 | } else { |
| 998 | ep->sid = orig_id; |
| 999 | ep->did = resp_id; |
| 1000 | } |
| 1001 | } |
| 1002 | |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1003 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1004 | * fc_seq_els_rsp_send() - Send an ELS response using infomation from |
| 1005 | * the existing sequence/exchange. |
| 1006 | * @sp: The sequence/exchange to get information from |
| 1007 | * @els_cmd: The ELS command to be sent |
| 1008 | * @els_data: The ELS data to be sent |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1009 | */ |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1010 | static void fc_seq_els_rsp_send(struct fc_seq *sp, enum fc_els_cmd els_cmd, |
| 1011 | struct fc_seq_els_data *els_data) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1012 | { |
| 1013 | switch (els_cmd) { |
| 1014 | case ELS_LS_RJT: |
| 1015 | fc_seq_ls_rjt(sp, els_data->reason, els_data->explan); |
| 1016 | break; |
| 1017 | case ELS_LS_ACC: |
| 1018 | fc_seq_ls_acc(sp); |
| 1019 | break; |
| 1020 | case ELS_RRQ: |
| 1021 | fc_exch_els_rrq(sp, els_data->fp); |
| 1022 | break; |
| 1023 | case ELS_REC: |
| 1024 | fc_exch_els_rec(sp, els_data->fp); |
| 1025 | break; |
| 1026 | default: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 1027 | FC_EXCH_DBG(fc_seq_exch(sp), "Invalid ELS CMD:%x\n", els_cmd); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1028 | } |
| 1029 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1030 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1031 | /** |
| 1032 | * fc_seq_send_last() - Send a sequence that is the last in the exchange |
| 1033 | * @sp: The sequence that is to be sent |
| 1034 | * @fp: The frame that will be sent on the sequence |
| 1035 | * @rctl: The R_CTL information to be sent |
| 1036 | * @fh_type: The frame header type |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1037 | */ |
| 1038 | static void fc_seq_send_last(struct fc_seq *sp, struct fc_frame *fp, |
| 1039 | enum fc_rctl rctl, enum fc_fh_type fh_type) |
| 1040 | { |
| 1041 | u32 f_ctl; |
| 1042 | struct fc_exch *ep = fc_seq_exch(sp); |
| 1043 | |
| 1044 | f_ctl = FC_FC_LAST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT; |
| 1045 | f_ctl |= ep->f_ctl; |
| 1046 | fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0); |
| 1047 | fc_seq_send(ep->lp, sp, fp); |
| 1048 | } |
| 1049 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1050 | /** |
| 1051 | * fc_seq_send_ack() - Send an acknowledgement that we've received a frame |
| 1052 | * @sp: The sequence to send the ACK on |
| 1053 | * @rx_fp: The received frame that is being acknoledged |
| 1054 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1055 | * Send ACK_1 (or equiv.) indicating we received something. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1056 | */ |
| 1057 | static void fc_seq_send_ack(struct fc_seq *sp, const struct fc_frame *rx_fp) |
| 1058 | { |
| 1059 | struct fc_frame *fp; |
| 1060 | struct fc_frame_header *rx_fh; |
| 1061 | struct fc_frame_header *fh; |
| 1062 | struct fc_exch *ep = fc_seq_exch(sp); |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1063 | struct fc_lport *lport = ep->lp; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1064 | unsigned int f_ctl; |
| 1065 | |
| 1066 | /* |
| 1067 | * Don't send ACKs for class 3. |
| 1068 | */ |
| 1069 | if (fc_sof_needs_ack(fr_sof(rx_fp))) { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1070 | fp = fc_frame_alloc(lport, 0); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1071 | if (!fp) |
| 1072 | return; |
| 1073 | |
| 1074 | fh = fc_frame_header_get(fp); |
| 1075 | fh->fh_r_ctl = FC_RCTL_ACK_1; |
| 1076 | fh->fh_type = FC_TYPE_BLS; |
| 1077 | |
| 1078 | /* |
| 1079 | * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). |
| 1080 | * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. |
| 1081 | * Bits 9-8 are meaningful (retransmitted or unidirectional). |
| 1082 | * Last ACK uses bits 7-6 (continue sequence), |
| 1083 | * bits 5-4 are meaningful (what kind of ACK to use). |
| 1084 | */ |
| 1085 | rx_fh = fc_frame_header_get(rx_fp); |
| 1086 | f_ctl = ntoh24(rx_fh->fh_f_ctl); |
| 1087 | f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | |
| 1088 | FC_FC_FIRST_SEQ | FC_FC_LAST_SEQ | |
| 1089 | FC_FC_END_SEQ | FC_FC_END_CONN | FC_FC_SEQ_INIT | |
| 1090 | FC_FC_RETX_SEQ | FC_FC_UNI_TX; |
| 1091 | f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; |
| 1092 | hton24(fh->fh_f_ctl, f_ctl); |
| 1093 | |
| 1094 | fc_exch_setup_hdr(ep, fp, f_ctl); |
| 1095 | fh->fh_seq_id = rx_fh->fh_seq_id; |
| 1096 | fh->fh_seq_cnt = rx_fh->fh_seq_cnt; |
| 1097 | fh->fh_parm_offset = htonl(1); /* ack single frame */ |
| 1098 | |
| 1099 | fr_sof(fp) = fr_sof(rx_fp); |
| 1100 | if (f_ctl & FC_FC_END_SEQ) |
| 1101 | fr_eof(fp) = FC_EOF_T; |
| 1102 | else |
| 1103 | fr_eof(fp) = FC_EOF_N; |
| 1104 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1105 | lport->tt.frame_send(lport, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1106 | } |
| 1107 | } |
| 1108 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1109 | /** |
| 1110 | * fc_exch_send_ba_rjt() - Send BLS Reject |
| 1111 | * @rx_fp: The frame being rejected |
| 1112 | * @reason: The reason the frame is being rejected |
| 1113 | * @explan: The explaination for the rejection |
| 1114 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1115 | * This is for rejecting BA_ABTS only. |
| 1116 | */ |
Robert Love | b2ab99c | 2009-02-27 10:55:50 -0800 | [diff] [blame] | 1117 | static void fc_exch_send_ba_rjt(struct fc_frame *rx_fp, |
| 1118 | enum fc_ba_rjt_reason reason, |
| 1119 | enum fc_ba_rjt_explan explan) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1120 | { |
| 1121 | struct fc_frame *fp; |
| 1122 | struct fc_frame_header *rx_fh; |
| 1123 | struct fc_frame_header *fh; |
| 1124 | struct fc_ba_rjt *rp; |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1125 | struct fc_lport *lport; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1126 | unsigned int f_ctl; |
| 1127 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1128 | lport = fr_dev(rx_fp); |
| 1129 | fp = fc_frame_alloc(lport, sizeof(*rp)); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1130 | if (!fp) |
| 1131 | return; |
| 1132 | fh = fc_frame_header_get(fp); |
| 1133 | rx_fh = fc_frame_header_get(rx_fp); |
| 1134 | |
| 1135 | memset(fh, 0, sizeof(*fh) + sizeof(*rp)); |
| 1136 | |
| 1137 | rp = fc_frame_payload_get(fp, sizeof(*rp)); |
| 1138 | rp->br_reason = reason; |
| 1139 | rp->br_explan = explan; |
| 1140 | |
| 1141 | /* |
| 1142 | * seq_id, cs_ctl, df_ctl and param/offset are zero. |
| 1143 | */ |
| 1144 | memcpy(fh->fh_s_id, rx_fh->fh_d_id, 3); |
| 1145 | memcpy(fh->fh_d_id, rx_fh->fh_s_id, 3); |
Joe Eykholt | 1d490ce | 2009-08-25 14:04:03 -0700 | [diff] [blame] | 1146 | fh->fh_ox_id = rx_fh->fh_ox_id; |
| 1147 | fh->fh_rx_id = rx_fh->fh_rx_id; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1148 | fh->fh_seq_cnt = rx_fh->fh_seq_cnt; |
| 1149 | fh->fh_r_ctl = FC_RCTL_BA_RJT; |
| 1150 | fh->fh_type = FC_TYPE_BLS; |
| 1151 | |
| 1152 | /* |
| 1153 | * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). |
| 1154 | * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. |
| 1155 | * Bits 9-8 are meaningful (retransmitted or unidirectional). |
| 1156 | * Last ACK uses bits 7-6 (continue sequence), |
| 1157 | * bits 5-4 are meaningful (what kind of ACK to use). |
| 1158 | * Always set LAST_SEQ, END_SEQ. |
| 1159 | */ |
| 1160 | f_ctl = ntoh24(rx_fh->fh_f_ctl); |
| 1161 | f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | |
| 1162 | FC_FC_END_CONN | FC_FC_SEQ_INIT | |
| 1163 | FC_FC_RETX_SEQ | FC_FC_UNI_TX; |
| 1164 | f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; |
| 1165 | f_ctl |= FC_FC_LAST_SEQ | FC_FC_END_SEQ; |
| 1166 | f_ctl &= ~FC_FC_FIRST_SEQ; |
| 1167 | hton24(fh->fh_f_ctl, f_ctl); |
| 1168 | |
| 1169 | fr_sof(fp) = fc_sof_class(fr_sof(rx_fp)); |
| 1170 | fr_eof(fp) = FC_EOF_T; |
| 1171 | if (fc_sof_needs_ack(fr_sof(fp))) |
| 1172 | fr_eof(fp) = FC_EOF_N; |
| 1173 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1174 | lport->tt.frame_send(lport, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1175 | } |
| 1176 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1177 | /** |
| 1178 | * fc_exch_recv_abts() - Handle an incoming ABTS |
| 1179 | * @ep: The exchange the abort was on |
| 1180 | * @rx_fp: The ABTS frame |
| 1181 | * |
| 1182 | * This would be for target mode usually, but could be due to lost |
| 1183 | * FCP transfer ready, confirm or RRQ. We always handle this as an |
| 1184 | * exchange abort, ignoring the parameter. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1185 | */ |
| 1186 | static void fc_exch_recv_abts(struct fc_exch *ep, struct fc_frame *rx_fp) |
| 1187 | { |
| 1188 | struct fc_frame *fp; |
| 1189 | struct fc_ba_acc *ap; |
| 1190 | struct fc_frame_header *fh; |
| 1191 | struct fc_seq *sp; |
| 1192 | |
| 1193 | if (!ep) |
| 1194 | goto reject; |
| 1195 | spin_lock_bh(&ep->ex_lock); |
| 1196 | if (ep->esb_stat & ESB_ST_COMPLETE) { |
| 1197 | spin_unlock_bh(&ep->ex_lock); |
| 1198 | goto reject; |
| 1199 | } |
| 1200 | if (!(ep->esb_stat & ESB_ST_REC_QUAL)) |
| 1201 | fc_exch_hold(ep); /* hold for REC_QUAL */ |
| 1202 | ep->esb_stat |= ESB_ST_ABNORMAL | ESB_ST_REC_QUAL; |
| 1203 | fc_exch_timer_set_locked(ep, ep->r_a_tov); |
| 1204 | |
| 1205 | fp = fc_frame_alloc(ep->lp, sizeof(*ap)); |
| 1206 | if (!fp) { |
| 1207 | spin_unlock_bh(&ep->ex_lock); |
| 1208 | goto free; |
| 1209 | } |
| 1210 | fh = fc_frame_header_get(fp); |
| 1211 | ap = fc_frame_payload_get(fp, sizeof(*ap)); |
| 1212 | memset(ap, 0, sizeof(*ap)); |
| 1213 | sp = &ep->seq; |
| 1214 | ap->ba_high_seq_cnt = htons(0xffff); |
| 1215 | if (sp->ssb_stat & SSB_ST_RESP) { |
| 1216 | ap->ba_seq_id = sp->id; |
| 1217 | ap->ba_seq_id_val = FC_BA_SEQ_ID_VAL; |
| 1218 | ap->ba_high_seq_cnt = fh->fh_seq_cnt; |
| 1219 | ap->ba_low_seq_cnt = htons(sp->cnt); |
| 1220 | } |
Vasu Dev | a7e84f2 | 2009-02-27 10:54:51 -0800 | [diff] [blame] | 1221 | sp = fc_seq_start_next_locked(sp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1222 | spin_unlock_bh(&ep->ex_lock); |
| 1223 | fc_seq_send_last(sp, fp, FC_RCTL_BA_ACC, FC_TYPE_BLS); |
| 1224 | fc_frame_free(rx_fp); |
| 1225 | return; |
| 1226 | |
| 1227 | reject: |
| 1228 | fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID); |
| 1229 | free: |
| 1230 | fc_frame_free(rx_fp); |
| 1231 | } |
| 1232 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1233 | /** |
Joe Eykholt | 239e810 | 2010-07-20 15:21:07 -0700 | [diff] [blame^] | 1234 | * fc_seq_assign() - Assign exchange and sequence for incoming request |
| 1235 | * @lport: The local port that received the request |
| 1236 | * @fp: The request frame |
| 1237 | * |
| 1238 | * On success, the sequence pointer will be returned and also in fr_seq(@fp). |
| 1239 | */ |
| 1240 | static struct fc_seq *fc_seq_assign(struct fc_lport *lport, struct fc_frame *fp) |
| 1241 | { |
| 1242 | struct fc_exch_mgr_anchor *ema; |
| 1243 | |
| 1244 | WARN_ON(lport != fr_dev(fp)); |
| 1245 | WARN_ON(fr_seq(fp)); |
| 1246 | fr_seq(fp) = NULL; |
| 1247 | |
| 1248 | list_for_each_entry(ema, &lport->ema_list, ema_list) |
| 1249 | if ((!ema->match || ema->match(fp)) && |
| 1250 | fc_seq_lookup_recip(lport, ema->mp, fp) != FC_RJT_NONE) |
| 1251 | break; |
| 1252 | return fr_seq(fp); |
| 1253 | } |
| 1254 | |
| 1255 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1256 | * fc_exch_recv_req() - Handler for an incoming request where is other |
| 1257 | * end is originating the sequence |
| 1258 | * @lport: The local port that received the request |
| 1259 | * @mp: The EM that the exchange is on |
| 1260 | * @fp: The request frame |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1261 | */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1262 | static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp, |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1263 | struct fc_frame *fp) |
| 1264 | { |
| 1265 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
| 1266 | struct fc_seq *sp = NULL; |
| 1267 | struct fc_exch *ep = NULL; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1268 | enum fc_pf_rjt_reason reject; |
| 1269 | |
Chris Leech | 174e1eb | 2009-11-03 11:46:14 -0800 | [diff] [blame] | 1270 | /* We can have the wrong fc_lport at this point with NPIV, which is a |
| 1271 | * problem now that we know a new exchange needs to be allocated |
| 1272 | */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1273 | lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id)); |
| 1274 | if (!lport) { |
Chris Leech | 174e1eb | 2009-11-03 11:46:14 -0800 | [diff] [blame] | 1275 | fc_frame_free(fp); |
| 1276 | return; |
| 1277 | } |
| 1278 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1279 | fr_seq(fp) = NULL; |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1280 | reject = fc_seq_lookup_recip(lport, mp, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1281 | if (reject == FC_RJT_NONE) { |
| 1282 | sp = fr_seq(fp); /* sequence will be held */ |
| 1283 | ep = fc_seq_exch(sp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1284 | fc_seq_send_ack(sp, fp); |
Joe Eykholt | f60e12e | 2010-07-20 15:20:14 -0700 | [diff] [blame] | 1285 | ep->encaps = fr_encaps(fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1286 | |
| 1287 | /* |
| 1288 | * Call the receive function. |
| 1289 | * |
| 1290 | * The receive function may allocate a new sequence |
| 1291 | * over the old one, so we shouldn't change the |
| 1292 | * sequence after this. |
| 1293 | * |
| 1294 | * The frame will be freed by the receive function. |
| 1295 | * If new exch resp handler is valid then call that |
| 1296 | * first. |
| 1297 | */ |
| 1298 | if (ep->resp) |
| 1299 | ep->resp(sp, fp, ep->arg); |
| 1300 | else |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1301 | lport->tt.lport_recv(lport, sp, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1302 | fc_exch_release(ep); /* release from lookup */ |
| 1303 | } else { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1304 | FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n", |
| 1305 | reject); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1306 | fc_frame_free(fp); |
| 1307 | } |
| 1308 | } |
| 1309 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1310 | /** |
| 1311 | * fc_exch_recv_seq_resp() - Handler for an incoming response where the other |
| 1312 | * end is the originator of the sequence that is a |
| 1313 | * response to our initial exchange |
| 1314 | * @mp: The EM that the exchange is on |
| 1315 | * @fp: The response frame |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1316 | */ |
| 1317 | static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) |
| 1318 | { |
| 1319 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
| 1320 | struct fc_seq *sp; |
| 1321 | struct fc_exch *ep; |
| 1322 | enum fc_sof sof; |
| 1323 | u32 f_ctl; |
| 1324 | void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg); |
| 1325 | void *ex_resp_arg; |
| 1326 | int rc; |
| 1327 | |
| 1328 | ep = fc_exch_find(mp, ntohs(fh->fh_ox_id)); |
| 1329 | if (!ep) { |
| 1330 | atomic_inc(&mp->stats.xid_not_found); |
| 1331 | goto out; |
| 1332 | } |
Steve Ma | 30121d1 | 2009-05-06 10:52:29 -0700 | [diff] [blame] | 1333 | if (ep->esb_stat & ESB_ST_COMPLETE) { |
| 1334 | atomic_inc(&mp->stats.xid_not_found); |
| 1335 | goto out; |
| 1336 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1337 | if (ep->rxid == FC_XID_UNKNOWN) |
| 1338 | ep->rxid = ntohs(fh->fh_rx_id); |
| 1339 | if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) { |
| 1340 | atomic_inc(&mp->stats.xid_not_found); |
| 1341 | goto rel; |
| 1342 | } |
| 1343 | if (ep->did != ntoh24(fh->fh_s_id) && |
| 1344 | ep->did != FC_FID_FLOGI) { |
| 1345 | atomic_inc(&mp->stats.xid_not_found); |
| 1346 | goto rel; |
| 1347 | } |
| 1348 | sof = fr_sof(fp); |
Vasu Dev | a104c84 | 2010-03-12 16:08:34 -0800 | [diff] [blame] | 1349 | sp = &ep->seq; |
Joe Eykholt | b3667f9 | 2010-05-07 15:18:13 -0700 | [diff] [blame] | 1350 | if (fc_sof_is_init(sof)) { |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1351 | sp->ssb_stat |= SSB_ST_RESP; |
Joe Eykholt | b3667f9 | 2010-05-07 15:18:13 -0700 | [diff] [blame] | 1352 | sp->id = fh->fh_seq_id; |
| 1353 | } else if (sp->id != fh->fh_seq_id) { |
| 1354 | atomic_inc(&mp->stats.seq_not_found); |
| 1355 | goto rel; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1356 | } |
Vasu Dev | a104c84 | 2010-03-12 16:08:34 -0800 | [diff] [blame] | 1357 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1358 | f_ctl = ntoh24(fh->fh_f_ctl); |
| 1359 | fr_seq(fp) = sp; |
| 1360 | if (f_ctl & FC_FC_SEQ_INIT) |
| 1361 | ep->esb_stat |= ESB_ST_SEQ_INIT; |
| 1362 | |
| 1363 | if (fc_sof_needs_ack(sof)) |
| 1364 | fc_seq_send_ack(sp, fp); |
| 1365 | resp = ep->resp; |
| 1366 | ex_resp_arg = ep->arg; |
| 1367 | |
| 1368 | if (fh->fh_type != FC_TYPE_FCP && fr_eof(fp) == FC_EOF_T && |
| 1369 | (f_ctl & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) == |
| 1370 | (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) { |
| 1371 | spin_lock_bh(&ep->ex_lock); |
| 1372 | rc = fc_exch_done_locked(ep); |
| 1373 | WARN_ON(fc_seq_exch(sp) != ep); |
| 1374 | spin_unlock_bh(&ep->ex_lock); |
| 1375 | if (!rc) |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1376 | fc_exch_delete(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1377 | } |
| 1378 | |
| 1379 | /* |
| 1380 | * Call the receive function. |
| 1381 | * The sequence is held (has a refcnt) for us, |
| 1382 | * but not for the receive function. |
| 1383 | * |
| 1384 | * The receive function may allocate a new sequence |
| 1385 | * over the old one, so we shouldn't change the |
| 1386 | * sequence after this. |
| 1387 | * |
| 1388 | * The frame will be freed by the receive function. |
| 1389 | * If new exch resp handler is valid then call that |
| 1390 | * first. |
| 1391 | */ |
| 1392 | if (resp) |
| 1393 | resp(sp, fp, ex_resp_arg); |
| 1394 | else |
| 1395 | fc_frame_free(fp); |
| 1396 | fc_exch_release(ep); |
| 1397 | return; |
| 1398 | rel: |
| 1399 | fc_exch_release(ep); |
| 1400 | out: |
| 1401 | fc_frame_free(fp); |
| 1402 | } |
| 1403 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1404 | /** |
| 1405 | * fc_exch_recv_resp() - Handler for a sequence where other end is |
| 1406 | * responding to our sequence |
| 1407 | * @mp: The EM that the exchange is on |
| 1408 | * @fp: The response frame |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1409 | */ |
| 1410 | static void fc_exch_recv_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) |
| 1411 | { |
| 1412 | struct fc_seq *sp; |
| 1413 | |
| 1414 | sp = fc_seq_lookup_orig(mp, fp); /* doesn't hold sequence */ |
Robert Love | d459b7e | 2009-07-29 17:05:05 -0700 | [diff] [blame] | 1415 | |
| 1416 | if (!sp) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1417 | atomic_inc(&mp->stats.xid_not_found); |
Robert Love | d459b7e | 2009-07-29 17:05:05 -0700 | [diff] [blame] | 1418 | else |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1419 | atomic_inc(&mp->stats.non_bls_resp); |
Robert Love | d459b7e | 2009-07-29 17:05:05 -0700 | [diff] [blame] | 1420 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1421 | fc_frame_free(fp); |
| 1422 | } |
| 1423 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1424 | /** |
| 1425 | * fc_exch_abts_resp() - Handler for a response to an ABT |
| 1426 | * @ep: The exchange that the frame is on |
| 1427 | * @fp: The response frame |
| 1428 | * |
| 1429 | * This response would be to an ABTS cancelling an exchange or sequence. |
| 1430 | * The response can be either BA_ACC or BA_RJT |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1431 | */ |
| 1432 | static void fc_exch_abts_resp(struct fc_exch *ep, struct fc_frame *fp) |
| 1433 | { |
| 1434 | void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg); |
| 1435 | void *ex_resp_arg; |
| 1436 | struct fc_frame_header *fh; |
| 1437 | struct fc_ba_acc *ap; |
| 1438 | struct fc_seq *sp; |
| 1439 | u16 low; |
| 1440 | u16 high; |
| 1441 | int rc = 1, has_rec = 0; |
| 1442 | |
| 1443 | fh = fc_frame_header_get(fp); |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 1444 | FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl, |
| 1445 | fc_exch_rctl_name(fh->fh_r_ctl)); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1446 | |
| 1447 | if (cancel_delayed_work_sync(&ep->timeout_work)) |
| 1448 | fc_exch_release(ep); /* release from pending timer hold */ |
| 1449 | |
| 1450 | spin_lock_bh(&ep->ex_lock); |
| 1451 | switch (fh->fh_r_ctl) { |
| 1452 | case FC_RCTL_BA_ACC: |
| 1453 | ap = fc_frame_payload_get(fp, sizeof(*ap)); |
| 1454 | if (!ap) |
| 1455 | break; |
| 1456 | |
| 1457 | /* |
| 1458 | * Decide whether to establish a Recovery Qualifier. |
| 1459 | * We do this if there is a non-empty SEQ_CNT range and |
| 1460 | * SEQ_ID is the same as the one we aborted. |
| 1461 | */ |
| 1462 | low = ntohs(ap->ba_low_seq_cnt); |
| 1463 | high = ntohs(ap->ba_high_seq_cnt); |
| 1464 | if ((ep->esb_stat & ESB_ST_REC_QUAL) == 0 && |
| 1465 | (ap->ba_seq_id_val != FC_BA_SEQ_ID_VAL || |
| 1466 | ap->ba_seq_id == ep->seq_id) && low != high) { |
| 1467 | ep->esb_stat |= ESB_ST_REC_QUAL; |
| 1468 | fc_exch_hold(ep); /* hold for recovery qualifier */ |
| 1469 | has_rec = 1; |
| 1470 | } |
| 1471 | break; |
| 1472 | case FC_RCTL_BA_RJT: |
| 1473 | break; |
| 1474 | default: |
| 1475 | break; |
| 1476 | } |
| 1477 | |
| 1478 | resp = ep->resp; |
| 1479 | ex_resp_arg = ep->arg; |
| 1480 | |
| 1481 | /* do we need to do some other checks here. Can we reuse more of |
| 1482 | * fc_exch_recv_seq_resp |
| 1483 | */ |
| 1484 | sp = &ep->seq; |
| 1485 | /* |
| 1486 | * do we want to check END_SEQ as well as LAST_SEQ here? |
| 1487 | */ |
| 1488 | if (ep->fh_type != FC_TYPE_FCP && |
| 1489 | ntoh24(fh->fh_f_ctl) & FC_FC_LAST_SEQ) |
| 1490 | rc = fc_exch_done_locked(ep); |
| 1491 | spin_unlock_bh(&ep->ex_lock); |
| 1492 | if (!rc) |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1493 | fc_exch_delete(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1494 | |
| 1495 | if (resp) |
| 1496 | resp(sp, fp, ex_resp_arg); |
| 1497 | else |
| 1498 | fc_frame_free(fp); |
| 1499 | |
| 1500 | if (has_rec) |
| 1501 | fc_exch_timer_set(ep, ep->r_a_tov); |
| 1502 | |
| 1503 | } |
| 1504 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1505 | /** |
| 1506 | * fc_exch_recv_bls() - Handler for a BLS sequence |
| 1507 | * @mp: The EM that the exchange is on |
| 1508 | * @fp: The request frame |
| 1509 | * |
| 1510 | * The BLS frame is always a sequence initiated by the remote side. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1511 | * We may be either the originator or recipient of the exchange. |
| 1512 | */ |
| 1513 | static void fc_exch_recv_bls(struct fc_exch_mgr *mp, struct fc_frame *fp) |
| 1514 | { |
| 1515 | struct fc_frame_header *fh; |
| 1516 | struct fc_exch *ep; |
| 1517 | u32 f_ctl; |
| 1518 | |
| 1519 | fh = fc_frame_header_get(fp); |
| 1520 | f_ctl = ntoh24(fh->fh_f_ctl); |
| 1521 | fr_seq(fp) = NULL; |
| 1522 | |
| 1523 | ep = fc_exch_find(mp, (f_ctl & FC_FC_EX_CTX) ? |
| 1524 | ntohs(fh->fh_ox_id) : ntohs(fh->fh_rx_id)); |
| 1525 | if (ep && (f_ctl & FC_FC_SEQ_INIT)) { |
| 1526 | spin_lock_bh(&ep->ex_lock); |
| 1527 | ep->esb_stat |= ESB_ST_SEQ_INIT; |
| 1528 | spin_unlock_bh(&ep->ex_lock); |
| 1529 | } |
| 1530 | if (f_ctl & FC_FC_SEQ_CTX) { |
| 1531 | /* |
| 1532 | * A response to a sequence we initiated. |
| 1533 | * This should only be ACKs for class 2 or F. |
| 1534 | */ |
| 1535 | switch (fh->fh_r_ctl) { |
| 1536 | case FC_RCTL_ACK_1: |
| 1537 | case FC_RCTL_ACK_0: |
| 1538 | break; |
| 1539 | default: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 1540 | FC_EXCH_DBG(ep, "BLS rctl %x - %s received", |
| 1541 | fh->fh_r_ctl, |
| 1542 | fc_exch_rctl_name(fh->fh_r_ctl)); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1543 | break; |
| 1544 | } |
| 1545 | fc_frame_free(fp); |
| 1546 | } else { |
| 1547 | switch (fh->fh_r_ctl) { |
| 1548 | case FC_RCTL_BA_RJT: |
| 1549 | case FC_RCTL_BA_ACC: |
| 1550 | if (ep) |
| 1551 | fc_exch_abts_resp(ep, fp); |
| 1552 | else |
| 1553 | fc_frame_free(fp); |
| 1554 | break; |
| 1555 | case FC_RCTL_BA_ABTS: |
| 1556 | fc_exch_recv_abts(ep, fp); |
| 1557 | break; |
| 1558 | default: /* ignore junk */ |
| 1559 | fc_frame_free(fp); |
| 1560 | break; |
| 1561 | } |
| 1562 | } |
| 1563 | if (ep) |
| 1564 | fc_exch_release(ep); /* release hold taken by fc_exch_find */ |
| 1565 | } |
| 1566 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1567 | /** |
| 1568 | * fc_seq_ls_acc() - Accept sequence with LS_ACC |
| 1569 | * @req_sp: The request sequence |
| 1570 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1571 | * If this fails due to allocation or transmit congestion, assume the |
| 1572 | * originator will repeat the sequence. |
| 1573 | */ |
| 1574 | static void fc_seq_ls_acc(struct fc_seq *req_sp) |
| 1575 | { |
| 1576 | struct fc_seq *sp; |
| 1577 | struct fc_els_ls_acc *acc; |
| 1578 | struct fc_frame *fp; |
| 1579 | |
| 1580 | sp = fc_seq_start_next(req_sp); |
| 1581 | fp = fc_frame_alloc(fc_seq_exch(sp)->lp, sizeof(*acc)); |
| 1582 | if (fp) { |
| 1583 | acc = fc_frame_payload_get(fp, sizeof(*acc)); |
| 1584 | memset(acc, 0, sizeof(*acc)); |
| 1585 | acc->la_cmd = ELS_LS_ACC; |
| 1586 | fc_seq_send_last(sp, fp, FC_RCTL_ELS_REP, FC_TYPE_ELS); |
| 1587 | } |
| 1588 | } |
| 1589 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1590 | /** |
| 1591 | * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT |
| 1592 | * @req_sp: The request sequence |
| 1593 | * @reason: The reason the sequence is being rejected |
| 1594 | * @explan: The explaination for the rejection |
| 1595 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1596 | * If this fails due to allocation or transmit congestion, assume the |
| 1597 | * originator will repeat the sequence. |
| 1598 | */ |
| 1599 | static void fc_seq_ls_rjt(struct fc_seq *req_sp, enum fc_els_rjt_reason reason, |
| 1600 | enum fc_els_rjt_explan explan) |
| 1601 | { |
| 1602 | struct fc_seq *sp; |
| 1603 | struct fc_els_ls_rjt *rjt; |
| 1604 | struct fc_frame *fp; |
| 1605 | |
| 1606 | sp = fc_seq_start_next(req_sp); |
| 1607 | fp = fc_frame_alloc(fc_seq_exch(sp)->lp, sizeof(*rjt)); |
| 1608 | if (fp) { |
| 1609 | rjt = fc_frame_payload_get(fp, sizeof(*rjt)); |
| 1610 | memset(rjt, 0, sizeof(*rjt)); |
| 1611 | rjt->er_cmd = ELS_LS_RJT; |
| 1612 | rjt->er_reason = reason; |
| 1613 | rjt->er_explan = explan; |
| 1614 | fc_seq_send_last(sp, fp, FC_RCTL_ELS_REP, FC_TYPE_ELS); |
| 1615 | } |
| 1616 | } |
| 1617 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1618 | /** |
| 1619 | * fc_exch_reset() - Reset an exchange |
| 1620 | * @ep: The exchange to be reset |
| 1621 | */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1622 | static void fc_exch_reset(struct fc_exch *ep) |
| 1623 | { |
| 1624 | struct fc_seq *sp; |
| 1625 | void (*resp)(struct fc_seq *, struct fc_frame *, void *); |
| 1626 | void *arg; |
| 1627 | int rc = 1; |
| 1628 | |
| 1629 | spin_lock_bh(&ep->ex_lock); |
| 1630 | ep->state |= FC_EX_RST_CLEANUP; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1631 | if (cancel_delayed_work(&ep->timeout_work)) |
| 1632 | atomic_dec(&ep->ex_refcnt); /* drop hold for timer */ |
| 1633 | resp = ep->resp; |
| 1634 | ep->resp = NULL; |
| 1635 | if (ep->esb_stat & ESB_ST_REC_QUAL) |
| 1636 | atomic_dec(&ep->ex_refcnt); /* drop hold for rec_qual */ |
| 1637 | ep->esb_stat &= ~ESB_ST_REC_QUAL; |
| 1638 | arg = ep->arg; |
| 1639 | sp = &ep->seq; |
| 1640 | rc = fc_exch_done_locked(ep); |
| 1641 | spin_unlock_bh(&ep->ex_lock); |
| 1642 | if (!rc) |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1643 | fc_exch_delete(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1644 | |
| 1645 | if (resp) |
| 1646 | resp(sp, ERR_PTR(-FC_EX_CLOSED), arg); |
| 1647 | } |
| 1648 | |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1649 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1650 | * fc_exch_pool_reset() - Reset a per cpu exchange pool |
| 1651 | * @lport: The local port that the exchange pool is on |
| 1652 | * @pool: The exchange pool to be reset |
| 1653 | * @sid: The source ID |
| 1654 | * @did: The destination ID |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1655 | * |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1656 | * Resets a per cpu exches pool, releasing all of its sequences |
| 1657 | * and exchanges. If sid is non-zero then reset only exchanges |
| 1658 | * we sourced from the local port's FID. If did is non-zero then |
| 1659 | * only reset exchanges destined for the local port's FID. |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1660 | */ |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1661 | static void fc_exch_pool_reset(struct fc_lport *lport, |
| 1662 | struct fc_exch_pool *pool, |
| 1663 | u32 sid, u32 did) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1664 | { |
| 1665 | struct fc_exch *ep; |
| 1666 | struct fc_exch *next; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1667 | |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1668 | spin_lock_bh(&pool->lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1669 | restart: |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1670 | list_for_each_entry_safe(ep, next, &pool->ex_list, ex_list) { |
| 1671 | if ((lport == ep->lp) && |
| 1672 | (sid == 0 || sid == ep->sid) && |
| 1673 | (did == 0 || did == ep->did)) { |
| 1674 | fc_exch_hold(ep); |
| 1675 | spin_unlock_bh(&pool->lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1676 | |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1677 | fc_exch_reset(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1678 | |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1679 | fc_exch_release(ep); |
| 1680 | spin_lock_bh(&pool->lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1681 | |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1682 | /* |
| 1683 | * must restart loop incase while lock |
| 1684 | * was down multiple eps were released. |
| 1685 | */ |
| 1686 | goto restart; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1687 | } |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1688 | } |
| 1689 | spin_unlock_bh(&pool->lock); |
| 1690 | } |
| 1691 | |
| 1692 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1693 | * fc_exch_mgr_reset() - Reset all EMs of a local port |
| 1694 | * @lport: The local port whose EMs are to be reset |
| 1695 | * @sid: The source ID |
| 1696 | * @did: The destination ID |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1697 | * |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1698 | * Reset all EMs associated with a given local port. Release all |
| 1699 | * sequences and exchanges. If sid is non-zero then reset only the |
| 1700 | * exchanges sent from the local port's FID. If did is non-zero then |
| 1701 | * reset only exchanges destined for the local port's FID. |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 1702 | */ |
| 1703 | void fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did) |
| 1704 | { |
| 1705 | struct fc_exch_mgr_anchor *ema; |
| 1706 | unsigned int cpu; |
| 1707 | |
| 1708 | list_for_each_entry(ema, &lport->ema_list, ema_list) { |
| 1709 | for_each_possible_cpu(cpu) |
| 1710 | fc_exch_pool_reset(lport, |
| 1711 | per_cpu_ptr(ema->mp->pool, cpu), |
| 1712 | sid, did); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1713 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1714 | } |
| 1715 | EXPORT_SYMBOL(fc_exch_mgr_reset); |
| 1716 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1717 | /** |
| 1718 | * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests |
| 1719 | * @sp: The sequence the REC is on |
| 1720 | * @rfp: The REC frame |
| 1721 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1722 | * Note that the requesting port may be different than the S_ID in the request. |
| 1723 | */ |
| 1724 | static void fc_exch_els_rec(struct fc_seq *sp, struct fc_frame *rfp) |
| 1725 | { |
| 1726 | struct fc_frame *fp; |
| 1727 | struct fc_exch *ep; |
| 1728 | struct fc_exch_mgr *em; |
| 1729 | struct fc_els_rec *rp; |
| 1730 | struct fc_els_rec_acc *acc; |
| 1731 | enum fc_els_rjt_reason reason = ELS_RJT_LOGIC; |
| 1732 | enum fc_els_rjt_explan explan; |
| 1733 | u32 sid; |
| 1734 | u16 rxid; |
| 1735 | u16 oxid; |
| 1736 | |
| 1737 | rp = fc_frame_payload_get(rfp, sizeof(*rp)); |
| 1738 | explan = ELS_EXPL_INV_LEN; |
| 1739 | if (!rp) |
| 1740 | goto reject; |
| 1741 | sid = ntoh24(rp->rec_s_id); |
| 1742 | rxid = ntohs(rp->rec_rx_id); |
| 1743 | oxid = ntohs(rp->rec_ox_id); |
| 1744 | |
| 1745 | /* |
| 1746 | * Currently it's hard to find the local S_ID from the exchange |
| 1747 | * manager. This will eventually be fixed, but for now it's easier |
| 1748 | * to lookup the subject exchange twice, once as if we were |
| 1749 | * the initiator, and then again if we weren't. |
| 1750 | */ |
| 1751 | em = fc_seq_exch(sp)->em; |
| 1752 | ep = fc_exch_find(em, oxid); |
| 1753 | explan = ELS_EXPL_OXID_RXID; |
| 1754 | if (ep && ep->oid == sid) { |
| 1755 | if (ep->rxid != FC_XID_UNKNOWN && |
| 1756 | rxid != FC_XID_UNKNOWN && |
| 1757 | ep->rxid != rxid) |
| 1758 | goto rel; |
| 1759 | } else { |
| 1760 | if (ep) |
| 1761 | fc_exch_release(ep); |
| 1762 | ep = NULL; |
| 1763 | if (rxid != FC_XID_UNKNOWN) |
| 1764 | ep = fc_exch_find(em, rxid); |
| 1765 | if (!ep) |
| 1766 | goto reject; |
| 1767 | } |
| 1768 | |
| 1769 | fp = fc_frame_alloc(fc_seq_exch(sp)->lp, sizeof(*acc)); |
| 1770 | if (!fp) { |
| 1771 | fc_exch_done(sp); |
| 1772 | goto out; |
| 1773 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1774 | acc = fc_frame_payload_get(fp, sizeof(*acc)); |
| 1775 | memset(acc, 0, sizeof(*acc)); |
| 1776 | acc->reca_cmd = ELS_LS_ACC; |
| 1777 | acc->reca_ox_id = rp->rec_ox_id; |
| 1778 | memcpy(acc->reca_ofid, rp->rec_s_id, 3); |
| 1779 | acc->reca_rx_id = htons(ep->rxid); |
| 1780 | if (ep->sid == ep->oid) |
| 1781 | hton24(acc->reca_rfid, ep->did); |
| 1782 | else |
| 1783 | hton24(acc->reca_rfid, ep->sid); |
| 1784 | acc->reca_fc4value = htonl(ep->seq.rec_data); |
| 1785 | acc->reca_e_stat = htonl(ep->esb_stat & (ESB_ST_RESP | |
| 1786 | ESB_ST_SEQ_INIT | |
| 1787 | ESB_ST_COMPLETE)); |
| 1788 | sp = fc_seq_start_next(sp); |
| 1789 | fc_seq_send_last(sp, fp, FC_RCTL_ELS_REP, FC_TYPE_ELS); |
| 1790 | out: |
| 1791 | fc_exch_release(ep); |
| 1792 | fc_frame_free(rfp); |
| 1793 | return; |
| 1794 | |
| 1795 | rel: |
| 1796 | fc_exch_release(ep); |
| 1797 | reject: |
| 1798 | fc_seq_ls_rjt(sp, reason, explan); |
| 1799 | fc_frame_free(rfp); |
| 1800 | } |
| 1801 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1802 | /** |
| 1803 | * fc_exch_rrq_resp() - Handler for RRQ responses |
| 1804 | * @sp: The sequence that the RRQ is on |
| 1805 | * @fp: The RRQ frame |
| 1806 | * @arg: The exchange that the RRQ is on |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1807 | * |
| 1808 | * TODO: fix error handler. |
| 1809 | */ |
| 1810 | static void fc_exch_rrq_resp(struct fc_seq *sp, struct fc_frame *fp, void *arg) |
| 1811 | { |
| 1812 | struct fc_exch *aborted_ep = arg; |
| 1813 | unsigned int op; |
| 1814 | |
| 1815 | if (IS_ERR(fp)) { |
| 1816 | int err = PTR_ERR(fp); |
| 1817 | |
Vasu Dev | 78342da | 2009-02-27 10:54:46 -0800 | [diff] [blame] | 1818 | if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1819 | goto cleanup; |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 1820 | FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, " |
| 1821 | "frame error %d\n", err); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1822 | return; |
| 1823 | } |
| 1824 | |
| 1825 | op = fc_frame_payload_op(fp); |
| 1826 | fc_frame_free(fp); |
| 1827 | |
| 1828 | switch (op) { |
| 1829 | case ELS_LS_RJT: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 1830 | FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1831 | /* fall through */ |
| 1832 | case ELS_LS_ACC: |
| 1833 | goto cleanup; |
| 1834 | default: |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 1835 | FC_EXCH_DBG(aborted_ep, "unexpected response op %x " |
| 1836 | "for RRQ", op); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1837 | return; |
| 1838 | } |
| 1839 | |
| 1840 | cleanup: |
| 1841 | fc_exch_done(&aborted_ep->seq); |
| 1842 | /* drop hold for rec qual */ |
| 1843 | fc_exch_release(aborted_ep); |
| 1844 | } |
| 1845 | |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1846 | |
| 1847 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1848 | * fc_exch_seq_send() - Send a frame using a new exchange and sequence |
| 1849 | * @lport: The local port to send the frame on |
| 1850 | * @fp: The frame to be sent |
| 1851 | * @resp: The response handler for this request |
| 1852 | * @destructor: The destructor for the exchange |
| 1853 | * @arg: The argument to be passed to the response handler |
| 1854 | * @timer_msec: The timeout period for the exchange |
| 1855 | * |
| 1856 | * The frame pointer with some of the header's fields must be |
| 1857 | * filled before calling this routine, those fields are: |
| 1858 | * |
| 1859 | * - routing control |
| 1860 | * - FC port did |
| 1861 | * - FC port sid |
| 1862 | * - FC header type |
| 1863 | * - frame control |
| 1864 | * - parameter or relative offset |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1865 | */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1866 | static struct fc_seq *fc_exch_seq_send(struct fc_lport *lport, |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1867 | struct fc_frame *fp, |
| 1868 | void (*resp)(struct fc_seq *, |
| 1869 | struct fc_frame *fp, |
| 1870 | void *arg), |
| 1871 | void (*destructor)(struct fc_seq *, |
| 1872 | void *), |
| 1873 | void *arg, u32 timer_msec) |
| 1874 | { |
| 1875 | struct fc_exch *ep; |
| 1876 | struct fc_seq *sp = NULL; |
| 1877 | struct fc_frame_header *fh; |
| 1878 | int rc = 1; |
| 1879 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1880 | ep = fc_exch_alloc(lport, fp); |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1881 | if (!ep) { |
| 1882 | fc_frame_free(fp); |
| 1883 | return NULL; |
| 1884 | } |
| 1885 | ep->esb_stat |= ESB_ST_SEQ_INIT; |
| 1886 | fh = fc_frame_header_get(fp); |
| 1887 | fc_exch_set_addr(ep, ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id)); |
| 1888 | ep->resp = resp; |
| 1889 | ep->destructor = destructor; |
| 1890 | ep->arg = arg; |
| 1891 | ep->r_a_tov = FC_DEF_R_A_TOV; |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1892 | ep->lp = lport; |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1893 | sp = &ep->seq; |
| 1894 | |
| 1895 | ep->fh_type = fh->fh_type; /* save for possbile timeout handling */ |
| 1896 | ep->f_ctl = ntoh24(fh->fh_f_ctl); |
| 1897 | fc_exch_setup_hdr(ep, fp, ep->f_ctl); |
| 1898 | sp->cnt++; |
| 1899 | |
Vasu Dev | 10897ae | 2010-01-21 10:15:44 -0800 | [diff] [blame] | 1900 | if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1901 | fc_fcp_ddp_setup(fr_fsp(fp), ep->xid); |
| 1902 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1903 | if (unlikely(lport->tt.frame_send(lport, fp))) |
Robert Love | 1a7b75a | 2009-11-03 11:45:47 -0800 | [diff] [blame] | 1904 | goto err; |
| 1905 | |
| 1906 | if (timer_msec) |
| 1907 | fc_exch_timer_set_locked(ep, timer_msec); |
| 1908 | ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not first seq */ |
| 1909 | |
| 1910 | if (ep->f_ctl & FC_FC_SEQ_INIT) |
| 1911 | ep->esb_stat &= ~ESB_ST_SEQ_INIT; |
| 1912 | spin_unlock_bh(&ep->ex_lock); |
| 1913 | return sp; |
| 1914 | err: |
| 1915 | rc = fc_exch_done_locked(ep); |
| 1916 | spin_unlock_bh(&ep->ex_lock); |
| 1917 | if (!rc) |
| 1918 | fc_exch_delete(ep); |
| 1919 | return NULL; |
| 1920 | } |
| 1921 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1922 | /** |
| 1923 | * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command |
| 1924 | * @ep: The exchange to send the RRQ on |
| 1925 | * |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1926 | * This tells the remote port to stop blocking the use of |
| 1927 | * the exchange and the seq_cnt range. |
| 1928 | */ |
| 1929 | static void fc_exch_rrq(struct fc_exch *ep) |
| 1930 | { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1931 | struct fc_lport *lport; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1932 | struct fc_els_rrq *rrq; |
| 1933 | struct fc_frame *fp; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1934 | u32 did; |
| 1935 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1936 | lport = ep->lp; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1937 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1938 | fp = fc_frame_alloc(lport, sizeof(*rrq)); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1939 | if (!fp) |
Vasu Dev | a0cc1ec | 2009-07-28 17:33:37 -0700 | [diff] [blame] | 1940 | goto retry; |
| 1941 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1942 | rrq = fc_frame_payload_get(fp, sizeof(*rrq)); |
| 1943 | memset(rrq, 0, sizeof(*rrq)); |
| 1944 | rrq->rrq_cmd = ELS_RRQ; |
| 1945 | hton24(rrq->rrq_s_id, ep->sid); |
| 1946 | rrq->rrq_ox_id = htons(ep->oxid); |
| 1947 | rrq->rrq_rx_id = htons(ep->rxid); |
| 1948 | |
| 1949 | did = ep->did; |
| 1950 | if (ep->esb_stat & ESB_ST_RESP) |
| 1951 | did = ep->sid; |
| 1952 | |
| 1953 | fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, did, |
Robert Love | 7b2787e | 2010-05-07 15:18:41 -0700 | [diff] [blame] | 1954 | lport->port_id, FC_TYPE_ELS, |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1955 | FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0); |
| 1956 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1957 | if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep, |
| 1958 | lport->e_d_tov)) |
Vasu Dev | a0cc1ec | 2009-07-28 17:33:37 -0700 | [diff] [blame] | 1959 | return; |
| 1960 | |
| 1961 | retry: |
| 1962 | spin_lock_bh(&ep->ex_lock); |
| 1963 | if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) { |
| 1964 | spin_unlock_bh(&ep->ex_lock); |
| 1965 | /* drop hold for rec qual */ |
| 1966 | fc_exch_release(ep); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1967 | return; |
| 1968 | } |
Vasu Dev | a0cc1ec | 2009-07-28 17:33:37 -0700 | [diff] [blame] | 1969 | ep->esb_stat |= ESB_ST_REC_QUAL; |
| 1970 | fc_exch_timer_set_locked(ep, ep->r_a_tov); |
| 1971 | spin_unlock_bh(&ep->ex_lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1972 | } |
| 1973 | |
| 1974 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 1975 | /** |
| 1976 | * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests |
| 1977 | * @sp: The sequence that the RRQ is on |
| 1978 | * @fp: The RRQ frame |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1979 | */ |
| 1980 | static void fc_exch_els_rrq(struct fc_seq *sp, struct fc_frame *fp) |
| 1981 | { |
Vasu Dev | 3f127ad | 2009-10-21 16:27:33 -0700 | [diff] [blame] | 1982 | struct fc_exch *ep = NULL; /* request or subject exchange */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1983 | struct fc_els_rrq *rp; |
| 1984 | u32 sid; |
| 1985 | u16 xid; |
| 1986 | enum fc_els_rjt_explan explan; |
| 1987 | |
| 1988 | rp = fc_frame_payload_get(fp, sizeof(*rp)); |
| 1989 | explan = ELS_EXPL_INV_LEN; |
| 1990 | if (!rp) |
| 1991 | goto reject; |
| 1992 | |
| 1993 | /* |
| 1994 | * lookup subject exchange. |
| 1995 | */ |
| 1996 | ep = fc_seq_exch(sp); |
| 1997 | sid = ntoh24(rp->rrq_s_id); /* subject source */ |
| 1998 | xid = ep->did == sid ? ntohs(rp->rrq_ox_id) : ntohs(rp->rrq_rx_id); |
| 1999 | ep = fc_exch_find(ep->em, xid); |
| 2000 | |
| 2001 | explan = ELS_EXPL_OXID_RXID; |
| 2002 | if (!ep) |
| 2003 | goto reject; |
| 2004 | spin_lock_bh(&ep->ex_lock); |
| 2005 | if (ep->oxid != ntohs(rp->rrq_ox_id)) |
| 2006 | goto unlock_reject; |
| 2007 | if (ep->rxid != ntohs(rp->rrq_rx_id) && |
| 2008 | ep->rxid != FC_XID_UNKNOWN) |
| 2009 | goto unlock_reject; |
| 2010 | explan = ELS_EXPL_SID; |
| 2011 | if (ep->sid != sid) |
| 2012 | goto unlock_reject; |
| 2013 | |
| 2014 | /* |
| 2015 | * Clear Recovery Qualifier state, and cancel timer if complete. |
| 2016 | */ |
| 2017 | if (ep->esb_stat & ESB_ST_REC_QUAL) { |
| 2018 | ep->esb_stat &= ~ESB_ST_REC_QUAL; |
| 2019 | atomic_dec(&ep->ex_refcnt); /* drop hold for rec qual */ |
| 2020 | } |
| 2021 | if (ep->esb_stat & ESB_ST_COMPLETE) { |
| 2022 | if (cancel_delayed_work(&ep->timeout_work)) |
| 2023 | atomic_dec(&ep->ex_refcnt); /* drop timer hold */ |
| 2024 | } |
| 2025 | |
| 2026 | spin_unlock_bh(&ep->ex_lock); |
| 2027 | |
| 2028 | /* |
| 2029 | * Send LS_ACC. |
| 2030 | */ |
| 2031 | fc_seq_ls_acc(sp); |
Vasu Dev | 3f127ad | 2009-10-21 16:27:33 -0700 | [diff] [blame] | 2032 | goto out; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2033 | |
| 2034 | unlock_reject: |
| 2035 | spin_unlock_bh(&ep->ex_lock); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2036 | reject: |
| 2037 | fc_seq_ls_rjt(sp, ELS_RJT_LOGIC, explan); |
Vasu Dev | 3f127ad | 2009-10-21 16:27:33 -0700 | [diff] [blame] | 2038 | out: |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2039 | fc_frame_free(fp); |
Vasu Dev | 3f127ad | 2009-10-21 16:27:33 -0700 | [diff] [blame] | 2040 | if (ep) |
| 2041 | fc_exch_release(ep); /* drop hold from fc_exch_find */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2042 | } |
| 2043 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2044 | /** |
| 2045 | * fc_exch_mgr_add() - Add an exchange manager to a local port's list of EMs |
| 2046 | * @lport: The local port to add the exchange manager to |
| 2047 | * @mp: The exchange manager to be added to the local port |
| 2048 | * @match: The match routine that indicates when this EM should be used |
| 2049 | */ |
Vasu Dev | 9631609 | 2009-07-29 17:05:00 -0700 | [diff] [blame] | 2050 | struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport, |
| 2051 | struct fc_exch_mgr *mp, |
| 2052 | bool (*match)(struct fc_frame *)) |
| 2053 | { |
| 2054 | struct fc_exch_mgr_anchor *ema; |
| 2055 | |
| 2056 | ema = kmalloc(sizeof(*ema), GFP_ATOMIC); |
| 2057 | if (!ema) |
| 2058 | return ema; |
| 2059 | |
| 2060 | ema->mp = mp; |
| 2061 | ema->match = match; |
| 2062 | /* add EM anchor to EM anchors list */ |
| 2063 | list_add_tail(&ema->ema_list, &lport->ema_list); |
| 2064 | kref_get(&mp->kref); |
| 2065 | return ema; |
| 2066 | } |
| 2067 | EXPORT_SYMBOL(fc_exch_mgr_add); |
| 2068 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2069 | /** |
| 2070 | * fc_exch_mgr_destroy() - Destroy an exchange manager |
| 2071 | * @kref: The reference to the EM to be destroyed |
| 2072 | */ |
Vasu Dev | 9631609 | 2009-07-29 17:05:00 -0700 | [diff] [blame] | 2073 | static void fc_exch_mgr_destroy(struct kref *kref) |
| 2074 | { |
| 2075 | struct fc_exch_mgr *mp = container_of(kref, struct fc_exch_mgr, kref); |
| 2076 | |
Vasu Dev | 9631609 | 2009-07-29 17:05:00 -0700 | [diff] [blame] | 2077 | mempool_destroy(mp->ep_pool); |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 2078 | free_percpu(mp->pool); |
Vasu Dev | 9631609 | 2009-07-29 17:05:00 -0700 | [diff] [blame] | 2079 | kfree(mp); |
| 2080 | } |
| 2081 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2082 | /** |
| 2083 | * fc_exch_mgr_del() - Delete an EM from a local port's list |
| 2084 | * @ema: The exchange manager anchor identifying the EM to be deleted |
| 2085 | */ |
Vasu Dev | 9631609 | 2009-07-29 17:05:00 -0700 | [diff] [blame] | 2086 | void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema) |
| 2087 | { |
| 2088 | /* remove EM anchor from EM anchors list */ |
| 2089 | list_del(&ema->ema_list); |
| 2090 | kref_put(&ema->mp->kref, fc_exch_mgr_destroy); |
| 2091 | kfree(ema); |
| 2092 | } |
| 2093 | EXPORT_SYMBOL(fc_exch_mgr_del); |
| 2094 | |
Chris Leech | 174e1eb | 2009-11-03 11:46:14 -0800 | [diff] [blame] | 2095 | /** |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2096 | * fc_exch_mgr_list_clone() - Share all exchange manager objects |
| 2097 | * @src: Source lport to clone exchange managers from |
| 2098 | * @dst: New lport that takes references to all the exchange managers |
Chris Leech | 174e1eb | 2009-11-03 11:46:14 -0800 | [diff] [blame] | 2099 | */ |
| 2100 | int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst) |
| 2101 | { |
| 2102 | struct fc_exch_mgr_anchor *ema, *tmp; |
| 2103 | |
| 2104 | list_for_each_entry(ema, &src->ema_list, ema_list) { |
| 2105 | if (!fc_exch_mgr_add(dst, ema->mp, ema->match)) |
| 2106 | goto err; |
| 2107 | } |
| 2108 | return 0; |
| 2109 | err: |
| 2110 | list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list) |
| 2111 | fc_exch_mgr_del(ema); |
| 2112 | return -ENOMEM; |
| 2113 | } |
| 2114 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2115 | /** |
| 2116 | * fc_exch_mgr_alloc() - Allocate an exchange manager |
| 2117 | * @lport: The local port that the new EM will be associated with |
| 2118 | * @class: The default FC class for new exchanges |
| 2119 | * @min_xid: The minimum XID for exchanges from the new EM |
| 2120 | * @max_xid: The maximum XID for exchanges from the new EM |
| 2121 | * @match: The match routine for the new EM |
| 2122 | */ |
| 2123 | struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport, |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2124 | enum fc_class class, |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2125 | u16 min_xid, u16 max_xid, |
| 2126 | bool (*match)(struct fc_frame *)) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2127 | { |
| 2128 | struct fc_exch_mgr *mp; |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 2129 | u16 pool_exch_range; |
| 2130 | size_t pool_size; |
| 2131 | unsigned int cpu; |
| 2132 | struct fc_exch_pool *pool; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2133 | |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 2134 | if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN || |
| 2135 | (min_xid & fc_cpu_mask) != 0) { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2136 | FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n", |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 2137 | min_xid, max_xid); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2138 | return NULL; |
| 2139 | } |
| 2140 | |
| 2141 | /* |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 2142 | * allocate memory for EM |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2143 | */ |
Vasu Dev | b2f0091 | 2009-08-25 13:58:53 -0700 | [diff] [blame] | 2144 | mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2145 | if (!mp) |
| 2146 | return NULL; |
| 2147 | |
| 2148 | mp->class = class; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2149 | /* adjust em exch xid range for offload */ |
| 2150 | mp->min_xid = min_xid; |
| 2151 | mp->max_xid = max_xid; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2152 | |
| 2153 | mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep); |
| 2154 | if (!mp->ep_pool) |
| 2155 | goto free_mp; |
| 2156 | |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 2157 | /* |
| 2158 | * Setup per cpu exch pool with entire exchange id range equally |
| 2159 | * divided across all cpus. The exch pointers array memory is |
| 2160 | * allocated for exch range per pool. |
| 2161 | */ |
| 2162 | pool_exch_range = (mp->max_xid - mp->min_xid + 1) / (fc_cpu_mask + 1); |
| 2163 | mp->pool_max_index = pool_exch_range - 1; |
| 2164 | |
| 2165 | /* |
| 2166 | * Allocate and initialize per cpu exch pool |
| 2167 | */ |
| 2168 | pool_size = sizeof(*pool) + pool_exch_range * sizeof(struct fc_exch *); |
| 2169 | mp->pool = __alloc_percpu(pool_size, __alignof__(struct fc_exch_pool)); |
| 2170 | if (!mp->pool) |
| 2171 | goto free_mempool; |
| 2172 | for_each_possible_cpu(cpu) { |
| 2173 | pool = per_cpu_ptr(mp->pool, cpu); |
| 2174 | spin_lock_init(&pool->lock); |
| 2175 | INIT_LIST_HEAD(&pool->ex_list); |
| 2176 | } |
| 2177 | |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2178 | kref_init(&mp->kref); |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2179 | if (!fc_exch_mgr_add(lport, mp, match)) { |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 2180 | free_percpu(mp->pool); |
| 2181 | goto free_mempool; |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2182 | } |
| 2183 | |
| 2184 | /* |
| 2185 | * Above kref_init() sets mp->kref to 1 and then |
| 2186 | * call to fc_exch_mgr_add incremented mp->kref again, |
| 2187 | * so adjust that extra increment. |
| 2188 | */ |
| 2189 | kref_put(&mp->kref, fc_exch_mgr_destroy); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2190 | return mp; |
| 2191 | |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 2192 | free_mempool: |
| 2193 | mempool_destroy(mp->ep_pool); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2194 | free_mp: |
| 2195 | kfree(mp); |
| 2196 | return NULL; |
| 2197 | } |
| 2198 | EXPORT_SYMBOL(fc_exch_mgr_alloc); |
| 2199 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2200 | /** |
| 2201 | * fc_exch_mgr_free() - Free all exchange managers on a local port |
| 2202 | * @lport: The local port whose EMs are to be freed |
| 2203 | */ |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2204 | void fc_exch_mgr_free(struct fc_lport *lport) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2205 | { |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2206 | struct fc_exch_mgr_anchor *ema, *next; |
| 2207 | |
Vasu Dev | 4ae1e19 | 2009-11-03 11:50:10 -0800 | [diff] [blame] | 2208 | flush_workqueue(fc_exch_workqueue); |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2209 | list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list) |
| 2210 | fc_exch_mgr_del(ema); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2211 | } |
| 2212 | EXPORT_SYMBOL(fc_exch_mgr_free); |
| 2213 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2214 | /** |
| 2215 | * fc_exch_recv() - Handler for received frames |
| 2216 | * @lport: The local port the frame was received on |
| 2217 | * @fp: The received frame |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2218 | */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2219 | void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2220 | { |
| 2221 | struct fc_frame_header *fh = fc_frame_header_get(fp); |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2222 | struct fc_exch_mgr_anchor *ema; |
| 2223 | u32 f_ctl, found = 0; |
| 2224 | u16 oxid; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2225 | |
| 2226 | /* lport lock ? */ |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2227 | if (!lport || lport->state == LPORT_ST_DISABLED) { |
| 2228 | FC_LPORT_DBG(lport, "Receiving frames for an lport that " |
Robert Love | 7414705 | 2009-06-10 15:31:10 -0700 | [diff] [blame] | 2229 | "has not been initialized correctly\n"); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2230 | fc_frame_free(fp); |
| 2231 | return; |
| 2232 | } |
| 2233 | |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2234 | f_ctl = ntoh24(fh->fh_f_ctl); |
| 2235 | oxid = ntohs(fh->fh_ox_id); |
| 2236 | if (f_ctl & FC_FC_EX_CTX) { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2237 | list_for_each_entry(ema, &lport->ema_list, ema_list) { |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2238 | if ((oxid >= ema->mp->min_xid) && |
| 2239 | (oxid <= ema->mp->max_xid)) { |
| 2240 | found = 1; |
| 2241 | break; |
| 2242 | } |
| 2243 | } |
| 2244 | |
| 2245 | if (!found) { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2246 | FC_LPORT_DBG(lport, "Received response for out " |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2247 | "of range oxid:%hx\n", oxid); |
| 2248 | fc_frame_free(fp); |
| 2249 | return; |
| 2250 | } |
| 2251 | } else |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2252 | ema = list_entry(lport->ema_list.prev, typeof(*ema), ema_list); |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2253 | |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2254 | /* |
| 2255 | * If frame is marked invalid, just drop it. |
| 2256 | */ |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2257 | switch (fr_eof(fp)) { |
| 2258 | case FC_EOF_T: |
| 2259 | if (f_ctl & FC_FC_END_SEQ) |
| 2260 | skb_trim(fp_skb(fp), fr_len(fp) - FC_FC_FILL(f_ctl)); |
| 2261 | /* fall through */ |
| 2262 | case FC_EOF_N: |
| 2263 | if (fh->fh_type == FC_TYPE_BLS) |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2264 | fc_exch_recv_bls(ema->mp, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2265 | else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) == |
| 2266 | FC_FC_EX_CTX) |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2267 | fc_exch_recv_seq_resp(ema->mp, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2268 | else if (f_ctl & FC_FC_SEQ_CTX) |
Vasu Dev | 52ff878 | 2009-07-29 17:05:10 -0700 | [diff] [blame] | 2269 | fc_exch_recv_resp(ema->mp, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2270 | else |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2271 | fc_exch_recv_req(lport, ema->mp, fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2272 | break; |
| 2273 | default: |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2274 | FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)", |
| 2275 | fr_eof(fp)); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2276 | fc_frame_free(fp); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2277 | } |
| 2278 | } |
| 2279 | EXPORT_SYMBOL(fc_exch_recv); |
| 2280 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2281 | /** |
| 2282 | * fc_exch_init() - Initialize the exchange layer for a local port |
| 2283 | * @lport: The local port to initialize the exchange layer for |
| 2284 | */ |
| 2285 | int fc_exch_init(struct fc_lport *lport) |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2286 | { |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2287 | if (!lport->tt.seq_start_next) |
| 2288 | lport->tt.seq_start_next = fc_seq_start_next; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2289 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2290 | if (!lport->tt.exch_seq_send) |
| 2291 | lport->tt.exch_seq_send = fc_exch_seq_send; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2292 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2293 | if (!lport->tt.seq_send) |
| 2294 | lport->tt.seq_send = fc_seq_send; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2295 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2296 | if (!lport->tt.seq_els_rsp_send) |
| 2297 | lport->tt.seq_els_rsp_send = fc_seq_els_rsp_send; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2298 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2299 | if (!lport->tt.exch_done) |
| 2300 | lport->tt.exch_done = fc_exch_done; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2301 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2302 | if (!lport->tt.exch_mgr_reset) |
| 2303 | lport->tt.exch_mgr_reset = fc_exch_mgr_reset; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2304 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2305 | if (!lport->tt.seq_exch_abort) |
| 2306 | lport->tt.seq_exch_abort = fc_seq_exch_abort; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2307 | |
Joe Eykholt | 239e810 | 2010-07-20 15:21:07 -0700 | [diff] [blame^] | 2308 | if (!lport->tt.seq_assign) |
| 2309 | lport->tt.seq_assign = fc_seq_assign; |
| 2310 | |
Vasu Dev | 89f19a5 | 2009-10-21 16:27:28 -0700 | [diff] [blame] | 2311 | return 0; |
| 2312 | } |
| 2313 | EXPORT_SYMBOL(fc_exch_init); |
| 2314 | |
| 2315 | /** |
| 2316 | * fc_setup_exch_mgr() - Setup an exchange manager |
| 2317 | */ |
| 2318 | int fc_setup_exch_mgr() |
| 2319 | { |
| 2320 | fc_em_cachep = kmem_cache_create("libfc_em", sizeof(struct fc_exch), |
| 2321 | 0, SLAB_HWCACHE_ALIGN, NULL); |
| 2322 | if (!fc_em_cachep) |
| 2323 | return -ENOMEM; |
| 2324 | |
Vasu Dev | e4bc50b | 2009-08-25 13:58:47 -0700 | [diff] [blame] | 2325 | /* |
| 2326 | * Initialize fc_cpu_mask and fc_cpu_order. The |
| 2327 | * fc_cpu_mask is set for nr_cpu_ids rounded up |
| 2328 | * to order of 2's * power and order is stored |
| 2329 | * in fc_cpu_order as this is later required in |
| 2330 | * mapping between an exch id and exch array index |
| 2331 | * in per cpu exch pool. |
| 2332 | * |
| 2333 | * This round up is required to align fc_cpu_mask |
| 2334 | * to exchange id's lower bits such that all incoming |
| 2335 | * frames of an exchange gets delivered to the same |
| 2336 | * cpu on which exchange originated by simple bitwise |
| 2337 | * AND operation between fc_cpu_mask and exchange id. |
| 2338 | */ |
| 2339 | fc_cpu_mask = 1; |
| 2340 | fc_cpu_order = 0; |
| 2341 | while (fc_cpu_mask < nr_cpu_ids) { |
| 2342 | fc_cpu_mask <<= 1; |
| 2343 | fc_cpu_order++; |
| 2344 | } |
| 2345 | fc_cpu_mask--; |
| 2346 | |
Vasu Dev | 4ae1e19 | 2009-11-03 11:50:10 -0800 | [diff] [blame] | 2347 | fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue"); |
| 2348 | if (!fc_exch_workqueue) |
| 2349 | return -ENOMEM; |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2350 | return 0; |
| 2351 | } |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2352 | |
Robert Love | 3a3b42b | 2009-11-03 11:47:39 -0800 | [diff] [blame] | 2353 | /** |
| 2354 | * fc_destroy_exch_mgr() - Destroy an exchange manager |
| 2355 | */ |
| 2356 | void fc_destroy_exch_mgr() |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2357 | { |
Vasu Dev | 4ae1e19 | 2009-11-03 11:50:10 -0800 | [diff] [blame] | 2358 | destroy_workqueue(fc_exch_workqueue); |
Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 2359 | kmem_cache_destroy(fc_em_cachep); |
| 2360 | } |