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