blob: 10a6a2a7bfc51f64acf5484935d2db183408c32e [file] [log] [blame]
Robert Love42e9a922008-12-09 15:10:17 -08001/*
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 Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Robert Love42e9a922008-12-09 15:10:17 -080028#include <linux/err.h>
Paul Gortmaker09703662011-05-27 09:37:25 -040029#include <linux/export.h>
Robert Love42e9a922008-12-09 15:10:17 -080030
31#include <scsi/fc/fc_fc2.h>
32
33#include <scsi/libfc.h>
34#include <scsi/fc_encode.h>
35
Robert Love8866a5d2009-11-03 11:45:58 -080036#include "fc_libfc.h"
37
Vasu Deve4bc50b2009-08-25 13:58:47 -070038u16 fc_cpu_mask; /* cpu mask for possible cpus */
39EXPORT_SYMBOL(fc_cpu_mask);
40static u16 fc_cpu_order; /* 2's power to represent total possible cpus */
Robert Love3a3b42b2009-11-03 11:47:39 -080041static struct kmem_cache *fc_em_cachep; /* cache for exchanges */
Randy Dunlap55204902011-01-28 16:03:57 -080042static struct workqueue_struct *fc_exch_workqueue;
Robert Love42e9a922008-12-09 15:10:17 -080043
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 Love3a3b42b2009-11-03 11:47:39 -080057/**
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 Deve4bc50b2009-08-25 13:58:47 -070063 *
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 */
68struct fc_exch_pool {
Vasu Deve17b4af2011-09-27 21:38:08 -070069 spinlock_t lock;
70 struct list_head ex_list;
Robert Love3a3b42b2009-11-03 11:47:39 -080071 u16 next_index;
72 u16 total_exches;
Hillf Danton2034c192010-11-30 16:18:17 -080073
74 /* two cache of free slot in exch array */
75 u16 left;
76 u16 right;
Vasu Deve17b4af2011-09-27 21:38:08 -070077} ____cacheline_aligned_in_smp;
Vasu Deve4bc50b2009-08-25 13:58:47 -070078
Robert Love3a3b42b2009-11-03 11:47:39 -080079/**
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 Love42e9a922008-12-09 15:10:17 -080089 *
90 * This structure is the center for creating exchanges and sequences.
91 * It manages the allocation of exchange IDs.
92 */
93struct fc_exch_mgr {
Bart Van Asschec6b21c92012-01-13 17:26:20 -080094 struct fc_exch_pool __percpu *pool;
Vasu Deve17b4af2011-09-27 21:38:08 -070095 mempool_t *ep_pool;
Robert Love3a3b42b2009-11-03 11:47:39 -080096 enum fc_class class;
97 struct kref kref;
98 u16 min_xid;
99 u16 max_xid;
Robert Love3a3b42b2009-11-03 11:47:39 -0800100 u16 pool_max_index;
Robert Love42e9a922008-12-09 15:10:17 -0800101
Robert Love42e9a922008-12-09 15:10:17 -0800102 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 Love42e9a922008-12-09 15:10:17 -0800110};
Robert Love42e9a922008-12-09 15:10:17 -0800111
Robert Love3a3b42b2009-11-03 11:47:39 -0800112/**
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 Dev1bd49b42012-05-25 10:26:43 -0700122 * anchor list by HW that provides offloads.
Robert Love3a3b42b2009-11-03 11:47:39 -0800123 */
Vasu Dev96316092009-07-29 17:05:00 -0700124struct 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 Love42e9a922008-12-09 15:10:17 -0800130static void fc_exch_rrq(struct fc_exch *);
Joe Eykholt922611562010-07-20 15:21:12 -0700131static void fc_seq_ls_acc(struct fc_frame *);
132static void fc_seq_ls_rjt(struct fc_frame *, enum fc_els_rjt_reason,
Robert Love42e9a922008-12-09 15:10:17 -0800133 enum fc_els_rjt_explan);
Joe Eykholt922611562010-07-20 15:21:12 -0700134static void fc_exch_els_rec(struct fc_frame *);
135static void fc_exch_els_rrq(struct fc_frame *);
Robert Love42e9a922008-12-09 15:10:17 -0800136
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 Devb2f00912009-08-25 13:58:53 -0700212 * - 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 Love42e9a922008-12-09 15:10:17 -0800214 */
215
216/*
217 * opcode names for debugging.
218 */
219static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT;
220
Robert Love3a3b42b2009-11-03 11:47:39 -0800221/**
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 Love42e9a922008-12-09 15:10:17 -0800230static 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 Love3a3b42b2009-11-03 11:47:39 -0800242/**
243 * fc_exch_rctl_name() - Wrapper routine for fc_exch_name_lookup()
244 * @op: The opcode to be looked up
245 */
Robert Love42e9a922008-12-09 15:10:17 -0800246static const char *fc_exch_rctl_name(unsigned int op)
247{
248 return fc_exch_name_lookup(op, fc_exch_rctl_names,
Kulikov Vasiliy7156fff2010-06-28 15:55:12 +0400249 ARRAY_SIZE(fc_exch_rctl_names));
Robert Love42e9a922008-12-09 15:10:17 -0800250}
251
Robert Love3a3b42b2009-11-03 11:47:39 -0800252/**
253 * fc_exch_hold() - Increment an exchange's reference count
254 * @ep: Echange to be held
Robert Love42e9a922008-12-09 15:10:17 -0800255 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800256static inline void fc_exch_hold(struct fc_exch *ep)
Robert Love42e9a922008-12-09 15:10:17 -0800257{
258 atomic_inc(&ep->ex_refcnt);
259}
260
Robert Love3a3b42b2009-11-03 11:47:39 -0800261/**
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 Love42e9a922008-12-09 15:10:17 -0800270 */
271static 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 Love3a3b42b2009-11-03 11:47:39 -0800286 * From F_CTL.
Robert Love42e9a922008-12-09 15:10:17 -0800287 * 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 Love3a3b42b2009-11-03 11:47:39 -0800316/**
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 Love42e9a922008-12-09 15:10:17 -0800322 */
323static 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 Lawallaa6cd292009-02-04 22:17:29 +0100331 WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE));
Robert Love42e9a922008-12-09 15:10:17 -0800332 mempool_free(ep, mp->ep_pool);
333 }
334}
335
Robert Love3a3b42b2009-11-03 11:47:39 -0800336/**
337 * fc_exch_done_locked() - Complete an exchange with the exchange lock held
338 * @ep: The exchange that is complete
339 */
Robert Love42e9a922008-12-09 15:10:17 -0800340static 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 Love3a3b42b2009-11-03 11:47:39 -0800364/**
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 Deve4bc50b2009-08-25 13:58:47 -0700373static 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 Love3a3b42b2009-11-03 11:47:39 -0800380/**
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 Deve4bc50b2009-08-25 13:58:47 -0700386static 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 Love3a3b42b2009-11-03 11:47:39 -0800392/**
393 * fc_exch_delete() - Delete an exchange
394 * @ep: The exchange to be deleted
395 */
Vasu Devb2f00912009-08-25 13:58:53 -0700396static void fc_exch_delete(struct fc_exch *ep)
Robert Love42e9a922008-12-09 15:10:17 -0800397{
Vasu Devb2f00912009-08-25 13:58:53 -0700398 struct fc_exch_pool *pool;
Hillf Danton2034c192010-11-30 16:18:17 -0800399 u16 index;
Robert Love42e9a922008-12-09 15:10:17 -0800400
Vasu Devb2f00912009-08-25 13:58:53 -0700401 pool = ep->pool;
402 spin_lock_bh(&pool->lock);
403 WARN_ON(pool->total_exches <= 0);
404 pool->total_exches--;
Hillf Danton2034c192010-11-30 16:18:17 -0800405
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 Love42e9a922008-12-09 15:10:17 -0800416 list_del(&ep->ex_list);
Vasu Devb2f00912009-08-25 13:58:53 -0700417 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800418 fc_exch_release(ep); /* drop hold for exch in mp */
419}
420
Robert Love3a3b42b2009-11-03 11:47:39 -0800421/**
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 Love42e9a922008-12-09 15:10:17 -0800429 */
430static 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 Lovecd305ce2009-08-25 13:58:37 -0700436 FC_EXCH_DBG(ep, "Exchange timer armed\n");
Robert Love74147052009-06-10 15:31:10 -0700437
Vasu Dev4ae1e192009-11-03 11:50:10 -0800438 if (queue_delayed_work(fc_exch_workqueue, &ep->timeout_work,
439 msecs_to_jiffies(timer_msec)))
Robert Love42e9a922008-12-09 15:10:17 -0800440 fc_exch_hold(ep); /* hold for timer */
441}
442
Robert Love3a3b42b2009-11-03 11:47:39 -0800443/**
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 Love42e9a922008-12-09 15:10:17 -0800447 */
448static 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 Love1a7b75a2009-11-03 11:45:47 -0800455/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800456 * 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 Love1a7b75a2009-11-03 11:45:47 -0800460 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800461static int fc_seq_send(struct fc_lport *lport, struct fc_seq *sp,
Robert Love1a7b75a2009-11-03 11:45:47 -0800462 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 Love3a3b42b2009-11-03 11:47:39 -0800467 u32 f_ctl;
Vasu Dev14fc3152011-10-28 11:34:12 -0700468 u8 fh_type = fh->fh_type;
Robert Love1a7b75a2009-11-03 11:45:47 -0800469
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 Eykholtf60e12e2010-07-20 15:20:14 -0700475 fr_encaps(fp) = ep->encaps;
Robert Love1a7b75a2009-11-03 11:45:47 -0800476
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 Love3a3b42b2009-11-03 11:47:39 -0800491 error = lport->tt.frame_send(lport, fp);
Robert Love1a7b75a2009-11-03 11:45:47 -0800492
Vasu Dev14fc3152011-10-28 11:34:12 -0700493 if (fh_type == FC_TYPE_BLS)
Vasu Dev77a2b732011-08-25 12:40:52 -0700494 return error;
495
Robert Love1a7b75a2009-11-03 11:45:47 -0800496 /*
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 Eykholtcc3593d2010-03-12 16:08:29 -0800503 if (f_ctl & FC_FC_SEQ_INIT)
Robert Love1a7b75a2009-11-03 11:45:47 -0800504 ep->esb_stat &= ~ESB_ST_SEQ_INIT;
505 spin_unlock_bh(&ep->ex_lock);
506 return error;
507}
508
509/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800510 * 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 Love1a7b75a2009-11-03 11:45:47 -0800513 *
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 */
518static 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 Love3a3b42b2009-11-03 11:47:39 -0800529/**
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 Love1a7b75a2009-11-03 11:45:47 -0800534static 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 Love3a3b42b2009-11-03 11:47:39 -0800545 * 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 Love1a7b75a2009-11-03 11:45:47 -0800548 */
549static 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 Eykholt1a5c2d72011-01-28 16:04:08 -0800560/*
561 * Set the response handler for the exchange associated with a sequence.
562 */
563static 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 Love1a7b75a2009-11-03 11:45:47 -0800576/**
Vasu Dev77a2b732011-08-25 12:40:52 -0700577 * fc_exch_abort_locked() - Abort an exchange
578 * @ep: The exchange to be aborted
Robert Love3a3b42b2009-11-03 11:47:39 -0800579 * @timer_msec: The period of time to wait before aborting
580 *
Vasu Dev77a2b732011-08-25 12:40:52 -0700581 * Locking notes: Called with exch lock held
582 *
583 * Return value: 0 on success else error code
Robert Love1a7b75a2009-11-03 11:45:47 -0800584 */
Vasu Dev77a2b732011-08-25 12:40:52 -0700585static int fc_exch_abort_locked(struct fc_exch *ep,
586 unsigned int timer_msec)
Robert Love42e9a922008-12-09 15:10:17 -0800587{
588 struct fc_seq *sp;
Robert Love42e9a922008-12-09 15:10:17 -0800589 struct fc_frame *fp;
590 int error;
591
Robert Love42e9a922008-12-09 15:10:17 -0800592 if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL) ||
Vasu Dev77a2b732011-08-25 12:40:52 -0700593 ep->state & (FC_EX_DONE | FC_EX_RST_CLEANUP))
Robert Love42e9a922008-12-09 15:10:17 -0800594 return -ENXIO;
Robert Love42e9a922008-12-09 15:10:17 -0800595
596 /*
597 * Send the abort on a new sequence if possible.
598 */
599 sp = fc_seq_start_next_locked(&ep->seq);
Vasu Dev77a2b732011-08-25 12:40:52 -0700600 if (!sp)
Robert Love42e9a922008-12-09 15:10:17 -0800601 return -ENOMEM;
Robert Love42e9a922008-12-09 15:10:17 -0800602
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 Love42e9a922008-12-09 15:10:17 -0800606
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 Love42e9a922008-12-09 15:10:17 -0800626
Robert Love3a3b42b2009-11-03 11:47:39 -0800627/**
Vasu Dev77a2b732011-08-25 12:40:52 -0700628 * 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 */
636static 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 Love3a3b42b2009-11-03 11:47:39 -0800650 * fc_exch_timeout() - Handle exchange timer expiration
651 * @work: The work_struct identifying the exchange that timed out
Robert Love42e9a922008-12-09 15:10:17 -0800652 */
653static 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 Lovecd305ce2009-08-25 13:58:37 -0700663 FC_EXCH_DBG(ep, "Exchange timed out\n");
664
Robert Love42e9a922008-12-09 15:10:17 -0800665 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 Deva0cc1ec2009-07-28 17:33:37 -0700672 spin_unlock_bh(&ep->ex_lock);
Robert Love42e9a922008-12-09 15:10:17 -0800673 if (e_stat & ESB_ST_REC_QUAL)
674 fc_exch_rrq(ep);
Robert Love42e9a922008-12-09 15:10:17 -0800675 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, Neeravf3162482011-02-25 15:02:56 -0800683 if (!rc)
684 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -0800685 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 }
690unlock:
691 spin_unlock_bh(&ep->ex_lock);
692done:
693 /*
694 * This release matches the hold taken when the timer was set.
695 */
696 fc_exch_release(ep);
697}
698
Vasu Dev52ff8782009-07-29 17:05:10 -0700699/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800700 * 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 Love42e9a922008-12-09 15:10:17 -0800703 *
Vasu Devd7179682009-07-29 17:05:21 -0700704 * Returns pointer to allocated fc_exch with exch lock held.
Robert Love42e9a922008-12-09 15:10:17 -0800705 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700706static struct fc_exch *fc_exch_em_alloc(struct fc_lport *lport,
Vasu Devd7179682009-07-29 17:05:21 -0700707 struct fc_exch_mgr *mp)
Robert Love42e9a922008-12-09 15:10:17 -0800708{
709 struct fc_exch *ep;
Vasu Devb2f00912009-08-25 13:58:53 -0700710 unsigned int cpu;
711 u16 index;
712 struct fc_exch_pool *pool;
Robert Love42e9a922008-12-09 15:10:17 -0800713
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 Eykholtf018b732010-03-12 16:08:55 -0800722 cpu = get_cpu();
Vasu Devb2f00912009-08-25 13:58:53 -0700723 pool = per_cpu_ptr(mp->pool, cpu);
724 spin_lock_bh(&pool->lock);
Joe Eykholtf018b732010-03-12 16:08:55 -0800725 put_cpu();
Hillf Danton2034c192010-11-30 16:18:17 -0800726
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 Devb2f00912009-08-25 13:58:53 -0700739 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 Love42e9a922008-12-09 15:10:17 -0800744 goto err;
Robert Love42e9a922008-12-09 15:10:17 -0800745 }
Vasu Devb2f00912009-08-25 13:58:53 -0700746 pool->next_index = index == mp->pool_max_index ? 0 : index + 1;
Hillf Danton2034c192010-11-30 16:18:17 -0800747hit:
Robert Love42e9a922008-12-09 15:10:17 -0800748 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 Devb2f00912009-08-25 13:58:53 -0700757 fc_exch_ptr_set(pool, index, ep);
758 list_add_tail(&ep->ex_list, &pool->ex_list);
Robert Love42e9a922008-12-09 15:10:17 -0800759 fc_seq_alloc(ep, ep->seq_id++);
Vasu Devb2f00912009-08-25 13:58:53 -0700760 pool->total_exches++;
761 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800762
763 /*
764 * update exchange
765 */
Vasu Devb2f00912009-08-25 13:58:53 -0700766 ep->oxid = ep->xid = (index << fc_cpu_order | cpu) + mp->min_xid;
Robert Love42e9a922008-12-09 15:10:17 -0800767 ep->em = mp;
Vasu Devb2f00912009-08-25 13:58:53 -0700768 ep->pool = pool;
Vasu Dev52ff8782009-07-29 17:05:10 -0700769 ep->lp = lport;
Robert Love42e9a922008-12-09 15:10:17 -0800770 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);
774out:
775 return ep;
776err:
Vasu Devb2f00912009-08-25 13:58:53 -0700777 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800778 atomic_inc(&mp->stats.no_free_exch_xid);
779 mempool_free(ep, mp->ep_pool);
780 return NULL;
781}
Vasu Dev52ff8782009-07-29 17:05:10 -0700782
783/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800784 * 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 Dev52ff8782009-07-29 17:05:10 -0700788 *
Robert Love3a3b42b2009-11-03 11:47:39 -0800789 * 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 Dev52ff8782009-07-29 17:05:10 -0700793 */
Vasu Dev3e227602010-03-12 16:08:39 -0800794static inline struct fc_exch *fc_exch_alloc(struct fc_lport *lport,
795 struct fc_frame *fp)
Vasu Dev52ff8782009-07-29 17:05:10 -0700796{
797 struct fc_exch_mgr_anchor *ema;
Vasu Dev52ff8782009-07-29 17:05:10 -0700798
Vasu Dev3e227602010-03-12 16:08:39 -0800799 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 Dev52ff8782009-07-29 17:05:10 -0700802 return NULL;
803}
Robert Love42e9a922008-12-09 15:10:17 -0800804
Robert Love3a3b42b2009-11-03 11:47:39 -0800805/**
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 Love42e9a922008-12-09 15:10:17 -0800809 */
810static struct fc_exch *fc_exch_find(struct fc_exch_mgr *mp, u16 xid)
811{
Vasu Devb2f00912009-08-25 13:58:53 -0700812 struct fc_exch_pool *pool;
Robert Love42e9a922008-12-09 15:10:17 -0800813 struct fc_exch *ep = NULL;
814
815 if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) {
Vasu Devb2f00912009-08-25 13:58:53 -0700816 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 Dev324f6672011-07-27 15:10:39 -0700819 if (ep && ep->xid == xid)
Robert Love42e9a922008-12-09 15:10:17 -0800820 fc_exch_hold(ep);
Vasu Devb2f00912009-08-25 13:58:53 -0700821 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800822 }
823 return ep;
824}
825
Robert Love1a7b75a2009-11-03 11:45:47 -0800826
827/**
828 * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and
Robert Love3a3b42b2009-11-03 11:47:39 -0800829 * the memory allocated for the related objects may be freed.
830 * @sp: The sequence that has completed
Robert Love1a7b75a2009-11-03 11:45:47 -0800831 */
832static void fc_exch_done(struct fc_seq *sp)
Robert Love42e9a922008-12-09 15:10:17 -0800833{
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 Devb2f00912009-08-25 13:58:53 -0700841 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -0800842}
Robert Love42e9a922008-12-09 15:10:17 -0800843
Robert Love3a3b42b2009-11-03 11:47:39 -0800844/**
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 Love42e9a922008-12-09 15:10:17 -0800850 * Sets the responder ID in the frame header.
851 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700852static struct fc_exch *fc_exch_resp(struct fc_lport *lport,
853 struct fc_exch_mgr *mp,
854 struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800855{
856 struct fc_exch *ep;
857 struct fc_frame_header *fh;
Robert Love42e9a922008-12-09 15:10:17 -0800858
Vasu Dev52ff8782009-07-29 17:05:10 -0700859 ep = fc_exch_alloc(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800860 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 Love42e9a922008-12-09 15:10:17 -0800884 fc_exch_hold(ep); /* hold for caller */
Vasu Dev52ff8782009-07-29 17:05:10 -0700885 spin_unlock_bh(&ep->ex_lock); /* lock from fc_exch_alloc */
Robert Love42e9a922008-12-09 15:10:17 -0800886 }
887 return ep;
888}
889
Robert Love3a3b42b2009-11-03 11:47:39 -0800890/**
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 Love42e9a922008-12-09 15:10:17 -0800897 * 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 Dev52ff8782009-07-29 17:05:10 -0700900static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport,
901 struct fc_exch_mgr *mp,
Robert Loveb2ab99c2009-02-27 10:55:50 -0800902 struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800903{
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 Dev52ff8782009-07-29 17:05:10 -0700955 ep = fc_exch_resp(lport, mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800956 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 Deva104c842010-03-12 16:08:34 -0800973 sp = &ep->seq;
Robert Love42e9a922008-12-09 15:10:17 -0800974 sp->ssb_stat |= SSB_ST_RESP;
Joe Eykholtb3667f92010-05-07 15:18:13 -0700975 sp->id = fh->fh_seq_id;
Robert Love42e9a922008-12-09 15:10:17 -0800976 } else {
977 sp = &ep->seq;
978 if (sp->id != fh->fh_seq_id) {
979 atomic_inc(&mp->stats.seq_not_found);
Kiran Patile3e65c62011-06-20 16:59:30 -0700980 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 Dev1bd49b42012-05-25 10:26:43 -0700984 * for FC target where DDP has been used
Kiran Patile3e65c62011-06-20 16:59:30 -0700985 * 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 Love42e9a922008-12-09 15:10:17 -08001004 }
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;
1012out:
1013 return reject;
1014rel:
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 Love3a3b42b2009-11-03 11:47:39 -08001020/**
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 Love42e9a922008-12-09 15:10:17 -08001026 * Does not hold the sequence for the caller.
1027 */
1028static 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 Love3a3b42b2009-11-03 11:47:39 -08001057/**
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 Love42e9a922008-12-09 15:10:17 -08001063 * Note this must be done before the first sequence of the exchange is sent.
1064 */
1065static 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 Love1a7b75a2009-11-03 11:45:47 -08001078/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001079 * fc_seq_els_rsp_send() - Send an ELS response using information from
Robert Love3a3b42b2009-11-03 11:47:39 -08001080 * the existing sequence/exchange.
Joe Eykholt922611562010-07-20 15:21:12 -07001081 * @fp: The received frame
Robert Love3a3b42b2009-11-03 11:47:39 -08001082 * @els_cmd: The ELS command to be sent
1083 * @els_data: The ELS data to be sent
Joe Eykholt922611562010-07-20 15:21:12 -07001084 *
1085 * The received frame is not freed.
Robert Love42e9a922008-12-09 15:10:17 -08001086 */
Joe Eykholt922611562010-07-20 15:21:12 -07001087static void fc_seq_els_rsp_send(struct fc_frame *fp, enum fc_els_cmd els_cmd,
Robert Love1a7b75a2009-11-03 11:45:47 -08001088 struct fc_seq_els_data *els_data)
Robert Love42e9a922008-12-09 15:10:17 -08001089{
1090 switch (els_cmd) {
1091 case ELS_LS_RJT:
Joe Eykholt922611562010-07-20 15:21:12 -07001092 fc_seq_ls_rjt(fp, els_data->reason, els_data->explan);
Robert Love42e9a922008-12-09 15:10:17 -08001093 break;
1094 case ELS_LS_ACC:
Joe Eykholt922611562010-07-20 15:21:12 -07001095 fc_seq_ls_acc(fp);
Robert Love42e9a922008-12-09 15:10:17 -08001096 break;
1097 case ELS_RRQ:
Joe Eykholt922611562010-07-20 15:21:12 -07001098 fc_exch_els_rrq(fp);
Robert Love42e9a922008-12-09 15:10:17 -08001099 break;
1100 case ELS_REC:
Joe Eykholt922611562010-07-20 15:21:12 -07001101 fc_exch_els_rec(fp);
Robert Love42e9a922008-12-09 15:10:17 -08001102 break;
1103 default:
Joe Eykholt922611562010-07-20 15:21:12 -07001104 FC_LPORT_DBG(fr_dev(fp), "Invalid ELS CMD:%x\n", els_cmd);
Robert Love42e9a922008-12-09 15:10:17 -08001105 }
1106}
Robert Love42e9a922008-12-09 15:10:17 -08001107
Robert Love3a3b42b2009-11-03 11:47:39 -08001108/**
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 Love42e9a922008-12-09 15:10:17 -08001114 */
1115static 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 Love3a3b42b2009-11-03 11:47:39 -08001127/**
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 Love42e9a922008-12-09 15:10:17 -08001132 * Send ACK_1 (or equiv.) indicating we received something.
Robert Love42e9a922008-12-09 15:10:17 -08001133 */
1134static 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 Love3a3b42b2009-11-03 11:47:39 -08001140 struct fc_lport *lport = ep->lp;
Robert Love42e9a922008-12-09 15:10:17 -08001141 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 Love3a3b42b2009-11-03 11:47:39 -08001147 fp = fc_frame_alloc(lport, 0);
Robert Love42e9a922008-12-09 15:10:17 -08001148 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 Love3a3b42b2009-11-03 11:47:39 -08001182 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001183 }
1184}
1185
Robert Love3a3b42b2009-11-03 11:47:39 -08001186/**
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 Marchi25985ed2011-03-30 22:57:33 -03001190 * @explan: The explanation for the rejection
Robert Love3a3b42b2009-11-03 11:47:39 -08001191 *
Robert Love42e9a922008-12-09 15:10:17 -08001192 * This is for rejecting BA_ABTS only.
1193 */
Robert Loveb2ab99c2009-02-27 10:55:50 -08001194static 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 Love42e9a922008-12-09 15:10:17 -08001197{
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 Love3a3b42b2009-11-03 11:47:39 -08001202 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -08001203 unsigned int f_ctl;
1204
Robert Love3a3b42b2009-11-03 11:47:39 -08001205 lport = fr_dev(rx_fp);
1206 fp = fc_frame_alloc(lport, sizeof(*rp));
Robert Love42e9a922008-12-09 15:10:17 -08001207 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 Eykholt1d490ce2009-08-25 14:04:03 -07001223 fh->fh_ox_id = rx_fh->fh_ox_id;
1224 fh->fh_rx_id = rx_fh->fh_rx_id;
Robert Love42e9a922008-12-09 15:10:17 -08001225 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 Love3a3b42b2009-11-03 11:47:39 -08001251 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001252}
1253
Robert Love3a3b42b2009-11-03 11:47:39 -08001254/**
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 Love42e9a922008-12-09 15:10:17 -08001262 */
1263static 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 Deva7e84f22009-02-27 10:54:51 -08001298 sp = fc_seq_start_next_locked(sp);
Robert Love42e9a922008-12-09 15:10:17 -08001299 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
1304reject:
1305 fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID);
1306free:
1307 fc_frame_free(rx_fp);
1308}
1309
Robert Love3a3b42b2009-11-03 11:47:39 -08001310/**
Joe Eykholt239e8102010-07-20 15:21:07 -07001311 * 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 Eykholt62bdb642011-01-28 16:04:34 -08001316 * A reference will be held on the exchange/sequence for the caller, which
1317 * must call fc_seq_release().
Joe Eykholt239e8102010-07-20 15:21:07 -07001318 */
1319static 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 Danton530994d2010-11-30 16:18:28 -08001329 fc_seq_lookup_recip(lport, ema->mp, fp) == FC_RJT_NONE)
Joe Eykholt239e8102010-07-20 15:21:07 -07001330 break;
1331 return fr_seq(fp);
1332}
1333
1334/**
Joe Eykholt62bdb642011-01-28 16:04:34 -08001335 * fc_seq_release() - Release the hold
1336 * @sp: The sequence.
1337 */
1338static void fc_seq_release(struct fc_seq *sp)
1339{
1340 fc_exch_release(fc_seq_exch(sp));
1341}
1342
1343/**
Joe Eykholt922611562010-07-20 15:21:12 -07001344 * fc_exch_recv_req() - Handler for an incoming request
Robert Love3a3b42b2009-11-03 11:47:39 -08001345 * @lport: The local port that received the request
1346 * @mp: The EM that the exchange is on
1347 * @fp: The request frame
Joe Eykholt922611562010-07-20 15:21:12 -07001348 *
1349 * This is used when the other end is originating the exchange
1350 * and the sequence.
Robert Love42e9a922008-12-09 15:10:17 -08001351 */
Robert Love3a3b42b2009-11-03 11:47:39 -08001352static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp,
Robert Love42e9a922008-12-09 15:10:17 -08001353 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 Love42e9a922008-12-09 15:10:17 -08001358 enum fc_pf_rjt_reason reject;
1359
Chris Leech174e1eb2009-11-03 11:46:14 -08001360 /* 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 Love3a3b42b2009-11-03 11:47:39 -08001363 lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id));
1364 if (!lport) {
Chris Leech174e1eb2009-11-03 11:46:14 -08001365 fc_frame_free(fp);
1366 return;
1367 }
Joe Eykholt922611562010-07-20 15:21:12 -07001368 fr_dev(fp) = lport;
Chris Leech174e1eb2009-11-03 11:46:14 -08001369
Joe Eykholt922611562010-07-20 15:21:12 -07001370 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 Love3a3b42b2009-11-03 11:47:39 -08001379 reject = fc_seq_lookup_recip(lport, mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001380 if (reject == FC_RJT_NONE) {
1381 sp = fr_seq(fp); /* sequence will be held */
1382 ep = fc_seq_exch(sp);
Robert Love42e9a922008-12-09 15:10:17 -08001383 fc_seq_send_ack(sp, fp);
Joe Eykholtf60e12e2010-07-20 15:20:14 -07001384 ep->encaps = fr_encaps(fp);
Robert Love42e9a922008-12-09 15:10:17 -08001385
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 Eykholt922611562010-07-20 15:21:12 -07001400 lport->tt.lport_recv(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001401 fc_exch_release(ep); /* release from lookup */
1402 } else {
Robert Love3a3b42b2009-11-03 11:47:39 -08001403 FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n",
1404 reject);
Robert Love42e9a922008-12-09 15:10:17 -08001405 fc_frame_free(fp);
1406 }
1407}
1408
Robert Love3a3b42b2009-11-03 11:47:39 -08001409/**
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 Love42e9a922008-12-09 15:10:17 -08001415 */
1416static 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 Ma30121d12009-05-06 10:52:29 -07001432 if (ep->esb_stat & ESB_ST_COMPLETE) {
1433 atomic_inc(&mp->stats.xid_not_found);
Hillf Danton82365542010-11-30 16:18:12 -08001434 goto rel;
Steve Ma30121d12009-05-06 10:52:29 -07001435 }
Robert Love42e9a922008-12-09 15:10:17 -08001436 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 Deva104c842010-03-12 16:08:34 -08001448 sp = &ep->seq;
Joe Eykholtb3667f92010-05-07 15:18:13 -07001449 if (fc_sof_is_init(sof)) {
Robert Love42e9a922008-12-09 15:10:17 -08001450 sp->ssb_stat |= SSB_ST_RESP;
Joe Eykholtb3667f92010-05-07 15:18:13 -07001451 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 Love42e9a922008-12-09 15:10:17 -08001455 }
Vasu Deva104c842010-03-12 16:08:34 -08001456
Robert Love42e9a922008-12-09 15:10:17 -08001457 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 Dev8d23f4b2011-05-16 16:45:45 -07001471 resp = ep->resp;
Robert Love42e9a922008-12-09 15:10:17 -08001472 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 Devb2f00912009-08-25 13:58:53 -07001476 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001477 }
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;
1498rel:
1499 fc_exch_release(ep);
1500out:
1501 fc_frame_free(fp);
1502}
1503
Robert Love3a3b42b2009-11-03 11:47:39 -08001504/**
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 Love42e9a922008-12-09 15:10:17 -08001509 */
1510static 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 Loved459b7e2009-07-29 17:05:05 -07001515
1516 if (!sp)
Robert Love42e9a922008-12-09 15:10:17 -08001517 atomic_inc(&mp->stats.xid_not_found);
Robert Loved459b7e2009-07-29 17:05:05 -07001518 else
Robert Love42e9a922008-12-09 15:10:17 -08001519 atomic_inc(&mp->stats.non_bls_resp);
Robert Loved459b7e2009-07-29 17:05:05 -07001520
Robert Love42e9a922008-12-09 15:10:17 -08001521 fc_frame_free(fp);
1522}
1523
Robert Love3a3b42b2009-11-03 11:47:39 -08001524/**
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 Love42e9a922008-12-09 15:10:17 -08001531 */
1532static 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 Love74147052009-06-10 15:31:10 -07001544 FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl,
1545 fc_exch_rctl_name(fh->fh_r_ctl));
Robert Love42e9a922008-12-09 15:10:17 -08001546
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 Devb2f00912009-08-25 13:58:53 -07001593 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001594
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 Love3a3b42b2009-11-03 11:47:39 -08001605/**
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 Love42e9a922008-12-09 15:10:17 -08001611 * We may be either the originator or recipient of the exchange.
1612 */
1613static 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 Gollapudid4042e92012-02-10 17:18:51 -08001640 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 Love42e9a922008-12-09 15:10:17 -08001644 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 Love3a3b42b2009-11-03 11:47:39 -08001668/**
1669 * fc_seq_ls_acc() - Accept sequence with LS_ACC
Joe Eykholt922611562010-07-20 15:21:12 -07001670 * @rx_fp: The received frame, not freed here.
Robert Love3a3b42b2009-11-03 11:47:39 -08001671 *
Robert Love42e9a922008-12-09 15:10:17 -08001672 * If this fails due to allocation or transmit congestion, assume the
1673 * originator will repeat the sequence.
1674 */
Joe Eykholt922611562010-07-20 15:21:12 -07001675static void fc_seq_ls_acc(struct fc_frame *rx_fp)
Robert Love42e9a922008-12-09 15:10:17 -08001676{
Joe Eykholt922611562010-07-20 15:21:12 -07001677 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -08001678 struct fc_els_ls_acc *acc;
1679 struct fc_frame *fp;
1680
Joe Eykholt922611562010-07-20 15:21:12 -07001681 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 Love42e9a922008-12-09 15:10:17 -08001690}
1691
Robert Love3a3b42b2009-11-03 11:47:39 -08001692/**
1693 * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT
Joe Eykholt922611562010-07-20 15:21:12 -07001694 * @rx_fp: The received frame, not freed here.
Robert Love3a3b42b2009-11-03 11:47:39 -08001695 * @reason: The reason the sequence is being rejected
Joe Eykholt922611562010-07-20 15:21:12 -07001696 * @explan: The explanation for the rejection
Robert Love3a3b42b2009-11-03 11:47:39 -08001697 *
Robert Love42e9a922008-12-09 15:10:17 -08001698 * If this fails due to allocation or transmit congestion, assume the
1699 * originator will repeat the sequence.
1700 */
Joe Eykholt922611562010-07-20 15:21:12 -07001701static void fc_seq_ls_rjt(struct fc_frame *rx_fp, enum fc_els_rjt_reason reason,
Robert Love42e9a922008-12-09 15:10:17 -08001702 enum fc_els_rjt_explan explan)
1703{
Joe Eykholt922611562010-07-20 15:21:12 -07001704 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -08001705 struct fc_els_ls_rjt *rjt;
1706 struct fc_frame *fp;
1707
Joe Eykholt922611562010-07-20 15:21:12 -07001708 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 Love42e9a922008-12-09 15:10:17 -08001719}
1720
Robert Love3a3b42b2009-11-03 11:47:39 -08001721/**
1722 * fc_exch_reset() - Reset an exchange
1723 * @ep: The exchange to be reset
1724 */
Robert Love42e9a922008-12-09 15:10:17 -08001725static 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 Dev77a2b732011-08-25 12:40:52 -07001733 fc_exch_abort_locked(ep, 0);
Robert Love42e9a922008-12-09 15:10:17 -08001734 ep->state |= FC_EX_RST_CLEANUP;
Robert Love42e9a922008-12-09 15:10:17 -08001735 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 Devb2f00912009-08-25 13:58:53 -07001747 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001748
1749 if (resp)
1750 resp(sp, ERR_PTR(-FC_EX_CLOSED), arg);
1751}
1752
Vasu Devb2f00912009-08-25 13:58:53 -07001753/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001754 * 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 Devb2f00912009-08-25 13:58:53 -07001759 *
Robert Love3a3b42b2009-11-03 11:47:39 -08001760 * 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 Love42e9a922008-12-09 15:10:17 -08001764 */
Vasu Devb2f00912009-08-25 13:58:53 -07001765static void fc_exch_pool_reset(struct fc_lport *lport,
1766 struct fc_exch_pool *pool,
1767 u32 sid, u32 did)
Robert Love42e9a922008-12-09 15:10:17 -08001768{
1769 struct fc_exch *ep;
1770 struct fc_exch *next;
Robert Love42e9a922008-12-09 15:10:17 -08001771
Vasu Devb2f00912009-08-25 13:58:53 -07001772 spin_lock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -08001773restart:
Vasu Devb2f00912009-08-25 13:58:53 -07001774 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 Love42e9a922008-12-09 15:10:17 -08001780
Vasu Devb2f00912009-08-25 13:58:53 -07001781 fc_exch_reset(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001782
Vasu Devb2f00912009-08-25 13:58:53 -07001783 fc_exch_release(ep);
1784 spin_lock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -08001785
Vasu Devb2f00912009-08-25 13:58:53 -07001786 /*
1787 * must restart loop incase while lock
1788 * was down multiple eps were released.
1789 */
1790 goto restart;
Robert Love42e9a922008-12-09 15:10:17 -08001791 }
Vasu Devb2f00912009-08-25 13:58:53 -07001792 }
Vasu Devb6e3c842011-10-28 11:34:17 -07001793 pool->next_index = 0;
1794 pool->left = FC_XID_UNKNOWN;
1795 pool->right = FC_XID_UNKNOWN;
Vasu Devb2f00912009-08-25 13:58:53 -07001796 spin_unlock_bh(&pool->lock);
1797}
1798
1799/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001800 * 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 Devb2f00912009-08-25 13:58:53 -07001804 *
Robert Love3a3b42b2009-11-03 11:47:39 -08001805 * 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 Devb2f00912009-08-25 13:58:53 -07001809 */
1810void 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 Love42e9a922008-12-09 15:10:17 -08001820 }
Robert Love42e9a922008-12-09 15:10:17 -08001821}
1822EXPORT_SYMBOL(fc_exch_mgr_reset);
1823
Robert Love3a3b42b2009-11-03 11:47:39 -08001824/**
Joe Eykholt922611562010-07-20 15:21:12 -07001825 * 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 */
1831static 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 Love3a3b42b2009-11-03 11:47:39 -08001842 * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests
Joe Eykholt922611562010-07-20 15:21:12 -07001843 * @rfp: The REC frame, not freed here.
Robert Love3a3b42b2009-11-03 11:47:39 -08001844 *
Robert Love42e9a922008-12-09 15:10:17 -08001845 * Note that the requesting port may be different than the S_ID in the request.
1846 */
Joe Eykholt922611562010-07-20 15:21:12 -07001847static void fc_exch_els_rec(struct fc_frame *rfp)
Robert Love42e9a922008-12-09 15:10:17 -08001848{
Joe Eykholt922611562010-07-20 15:21:12 -07001849 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -08001850 struct fc_frame *fp;
1851 struct fc_exch *ep;
Robert Love42e9a922008-12-09 15:10:17 -08001852 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 Eykholt922611562010-07-20 15:21:12 -07001860 lport = fr_dev(rfp);
Robert Love42e9a922008-12-09 15:10:17 -08001861 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 Eykholt922611562010-07-20 15:21:12 -07001869 ep = fc_exch_lookup(lport,
1870 sid == fc_host_port_id(lport->host) ? oxid : rxid);
Robert Love42e9a922008-12-09 15:10:17 -08001871 explan = ELS_EXPL_OXID_RXID;
Joe Eykholt922611562010-07-20 15:21:12 -07001872 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 Love42e9a922008-12-09 15:10:17 -08001880 goto out;
Joe Eykholt922611562010-07-20 15:21:12 -07001881
Robert Love42e9a922008-12-09 15:10:17 -08001882 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 Eykholt922611562010-07-20 15:21:12 -07001896 fc_fill_reply_hdr(fp, rfp, FC_RCTL_ELS_REP, 0);
1897 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001898out:
1899 fc_exch_release(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001900 return;
1901
1902rel:
1903 fc_exch_release(ep);
1904reject:
Joe Eykholt922611562010-07-20 15:21:12 -07001905 fc_seq_ls_rjt(rfp, reason, explan);
Robert Love42e9a922008-12-09 15:10:17 -08001906}
1907
Robert Love3a3b42b2009-11-03 11:47:39 -08001908/**
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 Love42e9a922008-12-09 15:10:17 -08001913 *
1914 * TODO: fix error handler.
1915 */
1916static 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 Dev78342da2009-02-27 10:54:46 -08001924 if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT)
Robert Love42e9a922008-12-09 15:10:17 -08001925 goto cleanup;
Robert Love74147052009-06-10 15:31:10 -07001926 FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, "
1927 "frame error %d\n", err);
Robert Love42e9a922008-12-09 15:10:17 -08001928 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 Love74147052009-06-10 15:31:10 -07001936 FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ");
Robert Love42e9a922008-12-09 15:10:17 -08001937 /* fall through */
1938 case ELS_LS_ACC:
1939 goto cleanup;
1940 default:
Robert Love74147052009-06-10 15:31:10 -07001941 FC_EXCH_DBG(aborted_ep, "unexpected response op %x "
1942 "for RRQ", op);
Robert Love42e9a922008-12-09 15:10:17 -08001943 return;
1944 }
1945
1946cleanup:
1947 fc_exch_done(&aborted_ep->seq);
1948 /* drop hold for rec qual */
1949 fc_exch_release(aborted_ep);
1950}
1951
Robert Love1a7b75a2009-11-03 11:45:47 -08001952
1953/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001954 * 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 Love1a7b75a2009-11-03 11:45:47 -08001971 */
Robert Love3a3b42b2009-11-03 11:47:39 -08001972static struct fc_seq *fc_exch_seq_send(struct fc_lport *lport,
Robert Love1a7b75a2009-11-03 11:45:47 -08001973 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 Zou3ee17f52011-08-25 12:41:03 -07001984 struct fc_fcp_pkt *fsp = NULL;
Robert Love1a7b75a2009-11-03 11:45:47 -08001985 int rc = 1;
1986
Robert Love3a3b42b2009-11-03 11:47:39 -08001987 ep = fc_exch_alloc(lport, fp);
Robert Love1a7b75a2009-11-03 11:45:47 -08001988 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 Love3a3b42b2009-11-03 11:47:39 -08001999 ep->lp = lport;
Robert Love1a7b75a2009-11-03 11:45:47 -08002000 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 Zou3ee17f52011-08-25 12:41:03 -07002007 if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) {
2008 fsp = fr_fsp(fp);
Robert Love1a7b75a2009-11-03 11:45:47 -08002009 fc_fcp_ddp_setup(fr_fsp(fp), ep->xid);
Yi Zou3ee17f52011-08-25 12:41:03 -07002010 }
Robert Love1a7b75a2009-11-03 11:45:47 -08002011
Robert Love3a3b42b2009-11-03 11:47:39 -08002012 if (unlikely(lport->tt.frame_send(lport, fp)))
Robert Love1a7b75a2009-11-03 11:45:47 -08002013 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;
2023err:
Yi Zou3ee17f52011-08-25 12:41:03 -07002024 if (fsp)
2025 fc_fcp_ddp_done(fsp);
Robert Love1a7b75a2009-11-03 11:45:47 -08002026 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 Love3a3b42b2009-11-03 11:47:39 -08002033/**
2034 * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command
2035 * @ep: The exchange to send the RRQ on
2036 *
Robert Love42e9a922008-12-09 15:10:17 -08002037 * This tells the remote port to stop blocking the use of
2038 * the exchange and the seq_cnt range.
2039 */
2040static void fc_exch_rrq(struct fc_exch *ep)
2041{
Robert Love3a3b42b2009-11-03 11:47:39 -08002042 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -08002043 struct fc_els_rrq *rrq;
2044 struct fc_frame *fp;
Robert Love42e9a922008-12-09 15:10:17 -08002045 u32 did;
2046
Robert Love3a3b42b2009-11-03 11:47:39 -08002047 lport = ep->lp;
Robert Love42e9a922008-12-09 15:10:17 -08002048
Robert Love3a3b42b2009-11-03 11:47:39 -08002049 fp = fc_frame_alloc(lport, sizeof(*rrq));
Robert Love42e9a922008-12-09 15:10:17 -08002050 if (!fp)
Vasu Deva0cc1ec2009-07-28 17:33:37 -07002051 goto retry;
2052
Robert Love42e9a922008-12-09 15:10:17 -08002053 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 Love7b2787e2010-05-07 15:18:41 -07002065 lport->port_id, FC_TYPE_ELS,
Robert Love42e9a922008-12-09 15:10:17 -08002066 FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0);
2067
Robert Love3a3b42b2009-11-03 11:47:39 -08002068 if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep,
2069 lport->e_d_tov))
Vasu Deva0cc1ec2009-07-28 17:33:37 -07002070 return;
2071
2072retry:
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 Love42e9a922008-12-09 15:10:17 -08002078 return;
2079 }
Vasu Deva0cc1ec2009-07-28 17:33:37 -07002080 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 Love42e9a922008-12-09 15:10:17 -08002083}
2084
Robert Love3a3b42b2009-11-03 11:47:39 -08002085/**
2086 * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests
Joe Eykholt922611562010-07-20 15:21:12 -07002087 * @fp: The RRQ frame, not freed here.
Robert Love42e9a922008-12-09 15:10:17 -08002088 */
Joe Eykholt922611562010-07-20 15:21:12 -07002089static void fc_exch_els_rrq(struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -08002090{
Joe Eykholt922611562010-07-20 15:21:12 -07002091 struct fc_lport *lport;
Vasu Dev3f127ad2009-10-21 16:27:33 -07002092 struct fc_exch *ep = NULL; /* request or subject exchange */
Robert Love42e9a922008-12-09 15:10:17 -08002093 struct fc_els_rrq *rp;
2094 u32 sid;
2095 u16 xid;
2096 enum fc_els_rjt_explan explan;
2097
Joe Eykholt922611562010-07-20 15:21:12 -07002098 lport = fr_dev(fp);
Robert Love42e9a922008-12-09 15:10:17 -08002099 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 Love42e9a922008-12-09 15:10:17 -08002107 sid = ntoh24(rp->rrq_s_id); /* subject source */
Joe Eykholt922611562010-07-20 15:21:12 -07002108 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 Love42e9a922008-12-09 15:10:17 -08002111 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 Eykholt922611562010-07-20 15:21:12 -07002141 fc_seq_ls_acc(fp);
Vasu Dev3f127ad2009-10-21 16:27:33 -07002142 goto out;
Robert Love42e9a922008-12-09 15:10:17 -08002143
2144unlock_reject:
2145 spin_unlock_bh(&ep->ex_lock);
Robert Love42e9a922008-12-09 15:10:17 -08002146reject:
Joe Eykholt922611562010-07-20 15:21:12 -07002147 fc_seq_ls_rjt(fp, ELS_RJT_LOGIC, explan);
Vasu Dev3f127ad2009-10-21 16:27:33 -07002148out:
Vasu Dev3f127ad2009-10-21 16:27:33 -07002149 if (ep)
2150 fc_exch_release(ep); /* drop hold from fc_exch_find */
Robert Love42e9a922008-12-09 15:10:17 -08002151}
2152
Robert Love3a3b42b2009-11-03 11:47:39 -08002153/**
Vasu Dev4e5fae72012-05-25 10:26:54 -07002154 * fc_exch_update_stats() - update exches stats to lport
2155 * @lport: The local port to update exchange manager stats
2156 */
2157void 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}
2176EXPORT_SYMBOL(fc_exch_update_stats);
2177
2178/**
Robert Love3a3b42b2009-11-03 11:47:39 -08002179 * 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 Dev96316092009-07-29 17:05:00 -07002184struct 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}
2201EXPORT_SYMBOL(fc_exch_mgr_add);
2202
Robert Love3a3b42b2009-11-03 11:47:39 -08002203/**
2204 * fc_exch_mgr_destroy() - Destroy an exchange manager
2205 * @kref: The reference to the EM to be destroyed
2206 */
Vasu Dev96316092009-07-29 17:05:00 -07002207static 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 Dev96316092009-07-29 17:05:00 -07002211 mempool_destroy(mp->ep_pool);
Vasu Deve4bc50b2009-08-25 13:58:47 -07002212 free_percpu(mp->pool);
Vasu Dev96316092009-07-29 17:05:00 -07002213 kfree(mp);
2214}
2215
Robert Love3a3b42b2009-11-03 11:47:39 -08002216/**
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 Dev96316092009-07-29 17:05:00 -07002220void 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}
2227EXPORT_SYMBOL(fc_exch_mgr_del);
2228
Chris Leech174e1eb2009-11-03 11:46:14 -08002229/**
Robert Love3a3b42b2009-11-03 11:47:39 -08002230 * 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 Leech174e1eb2009-11-03 11:46:14 -08002233 */
2234int 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;
2243err:
2244 list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list)
2245 fc_exch_mgr_del(ema);
2246 return -ENOMEM;
2247}
Vasu Dev72fa3962011-02-25 15:03:01 -08002248EXPORT_SYMBOL(fc_exch_mgr_list_clone);
Chris Leech174e1eb2009-11-03 11:46:14 -08002249
Robert Love3a3b42b2009-11-03 11:47:39 -08002250/**
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 */
2258struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport,
Robert Love42e9a922008-12-09 15:10:17 -08002259 enum fc_class class,
Vasu Dev52ff8782009-07-29 17:05:10 -07002260 u16 min_xid, u16 max_xid,
2261 bool (*match)(struct fc_frame *))
Robert Love42e9a922008-12-09 15:10:17 -08002262{
2263 struct fc_exch_mgr *mp;
Vasu Deve4bc50b2009-08-25 13:58:47 -07002264 u16 pool_exch_range;
2265 size_t pool_size;
2266 unsigned int cpu;
2267 struct fc_exch_pool *pool;
Robert Love42e9a922008-12-09 15:10:17 -08002268
Vasu Deve4bc50b2009-08-25 13:58:47 -07002269 if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN ||
2270 (min_xid & fc_cpu_mask) != 0) {
Robert Love3a3b42b2009-11-03 11:47:39 -08002271 FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n",
Robert Love74147052009-06-10 15:31:10 -07002272 min_xid, max_xid);
Robert Love42e9a922008-12-09 15:10:17 -08002273 return NULL;
2274 }
2275
2276 /*
Vasu Devb2f00912009-08-25 13:58:53 -07002277 * allocate memory for EM
Robert Love42e9a922008-12-09 15:10:17 -08002278 */
Vasu Devb2f00912009-08-25 13:58:53 -07002279 mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC);
Robert Love42e9a922008-12-09 15:10:17 -08002280 if (!mp)
2281 return NULL;
2282
2283 mp->class = class;
Robert Love42e9a922008-12-09 15:10:17 -08002284 /* adjust em exch xid range for offload */
2285 mp->min_xid = min_xid;
Steven Clark011a9002012-03-09 14:50:30 -08002286
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 Love42e9a922008-12-09 15:10:17 -08002298
2299 mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep);
2300 if (!mp->ep_pool)
2301 goto free_mp;
2302
Vasu Deve4bc50b2009-08-25 13:58:47 -07002303 /*
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 Deve4bc50b2009-08-25 13:58:47 -07002308 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 Devb6e3c842011-10-28 11:34:17 -07002319 pool->next_index = 0;
Hillf Danton2034c192010-11-30 16:18:17 -08002320 pool->left = FC_XID_UNKNOWN;
2321 pool->right = FC_XID_UNKNOWN;
Vasu Deve4bc50b2009-08-25 13:58:47 -07002322 spin_lock_init(&pool->lock);
2323 INIT_LIST_HEAD(&pool->ex_list);
2324 }
2325
Vasu Dev52ff8782009-07-29 17:05:10 -07002326 kref_init(&mp->kref);
Robert Love3a3b42b2009-11-03 11:47:39 -08002327 if (!fc_exch_mgr_add(lport, mp, match)) {
Vasu Deve4bc50b2009-08-25 13:58:47 -07002328 free_percpu(mp->pool);
2329 goto free_mempool;
Vasu Dev52ff8782009-07-29 17:05:10 -07002330 }
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 Love42e9a922008-12-09 15:10:17 -08002338 return mp;
2339
Vasu Deve4bc50b2009-08-25 13:58:47 -07002340free_mempool:
2341 mempool_destroy(mp->ep_pool);
Robert Love42e9a922008-12-09 15:10:17 -08002342free_mp:
2343 kfree(mp);
2344 return NULL;
2345}
2346EXPORT_SYMBOL(fc_exch_mgr_alloc);
2347
Robert Love3a3b42b2009-11-03 11:47:39 -08002348/**
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 Dev52ff8782009-07-29 17:05:10 -07002352void fc_exch_mgr_free(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -08002353{
Vasu Dev52ff8782009-07-29 17:05:10 -07002354 struct fc_exch_mgr_anchor *ema, *next;
2355
Vasu Dev4ae1e192009-11-03 11:50:10 -08002356 flush_workqueue(fc_exch_workqueue);
Vasu Dev52ff8782009-07-29 17:05:10 -07002357 list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list)
2358 fc_exch_mgr_del(ema);
Robert Love42e9a922008-12-09 15:10:17 -08002359}
2360EXPORT_SYMBOL(fc_exch_mgr_free);
2361
Robert Love3a3b42b2009-11-03 11:47:39 -08002362/**
Kiran Patil6c8cc1c2011-01-28 16:04:39 -08002363 * 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 */
2369static 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 Love3a3b42b2009-11-03 11:47:39 -08002393 * fc_exch_recv() - Handler for received frames
2394 * @lport: The local port the frame was received on
Kiran Patil6c8cc1c2011-01-28 16:04:39 -08002395 * @fp: The received frame
Robert Love42e9a922008-12-09 15:10:17 -08002396 */
Robert Love3a3b42b2009-11-03 11:47:39 -08002397void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -08002398{
2399 struct fc_frame_header *fh = fc_frame_header_get(fp);
Vasu Dev52ff8782009-07-29 17:05:10 -07002400 struct fc_exch_mgr_anchor *ema;
Kiran Patil6c8cc1c2011-01-28 16:04:39 -08002401 u32 f_ctl;
Robert Love42e9a922008-12-09 15:10:17 -08002402
2403 /* lport lock ? */
Robert Love3a3b42b2009-11-03 11:47:39 -08002404 if (!lport || lport->state == LPORT_ST_DISABLED) {
2405 FC_LPORT_DBG(lport, "Receiving frames for an lport that "
Robert Love74147052009-06-10 15:31:10 -07002406 "has not been initialized correctly\n");
Robert Love42e9a922008-12-09 15:10:17 -08002407 fc_frame_free(fp);
2408 return;
2409 }
2410
Vasu Dev52ff8782009-07-29 17:05:10 -07002411 f_ctl = ntoh24(fh->fh_f_ctl);
Kiran Patil6c8cc1c2011-01-28 16:04:39 -08002412 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 Dev52ff8782009-07-29 17:05:10 -07002423
Robert Love42e9a922008-12-09 15:10:17 -08002424 /*
2425 * If frame is marked invalid, just drop it.
2426 */
Robert Love42e9a922008-12-09 15:10:17 -08002427 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 Dev52ff8782009-07-29 17:05:10 -07002434 fc_exch_recv_bls(ema->mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08002435 else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) ==
2436 FC_FC_EX_CTX)
Vasu Dev52ff8782009-07-29 17:05:10 -07002437 fc_exch_recv_seq_resp(ema->mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08002438 else if (f_ctl & FC_FC_SEQ_CTX)
Vasu Dev52ff8782009-07-29 17:05:10 -07002439 fc_exch_recv_resp(ema->mp, fp);
Joe Eykholt922611562010-07-20 15:21:12 -07002440 else /* no EX_CTX and no SEQ_CTX */
Robert Love3a3b42b2009-11-03 11:47:39 -08002441 fc_exch_recv_req(lport, ema->mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08002442 break;
2443 default:
Robert Love3a3b42b2009-11-03 11:47:39 -08002444 FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)",
2445 fr_eof(fp));
Robert Love42e9a922008-12-09 15:10:17 -08002446 fc_frame_free(fp);
Robert Love42e9a922008-12-09 15:10:17 -08002447 }
2448}
2449EXPORT_SYMBOL(fc_exch_recv);
2450
Robert Love3a3b42b2009-11-03 11:47:39 -08002451/**
2452 * fc_exch_init() - Initialize the exchange layer for a local port
2453 * @lport: The local port to initialize the exchange layer for
2454 */
2455int fc_exch_init(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -08002456{
Robert Love3a3b42b2009-11-03 11:47:39 -08002457 if (!lport->tt.seq_start_next)
2458 lport->tt.seq_start_next = fc_seq_start_next;
Robert Love42e9a922008-12-09 15:10:17 -08002459
Joe Eykholt1a5c2d72011-01-28 16:04:08 -08002460 if (!lport->tt.seq_set_resp)
2461 lport->tt.seq_set_resp = fc_seq_set_resp;
2462
Robert Love3a3b42b2009-11-03 11:47:39 -08002463 if (!lport->tt.exch_seq_send)
2464 lport->tt.exch_seq_send = fc_exch_seq_send;
Robert Love42e9a922008-12-09 15:10:17 -08002465
Robert Love3a3b42b2009-11-03 11:47:39 -08002466 if (!lport->tt.seq_send)
2467 lport->tt.seq_send = fc_seq_send;
Robert Love42e9a922008-12-09 15:10:17 -08002468
Robert Love3a3b42b2009-11-03 11:47:39 -08002469 if (!lport->tt.seq_els_rsp_send)
2470 lport->tt.seq_els_rsp_send = fc_seq_els_rsp_send;
Robert Love42e9a922008-12-09 15:10:17 -08002471
Robert Love3a3b42b2009-11-03 11:47:39 -08002472 if (!lport->tt.exch_done)
2473 lport->tt.exch_done = fc_exch_done;
Robert Love42e9a922008-12-09 15:10:17 -08002474
Robert Love3a3b42b2009-11-03 11:47:39 -08002475 if (!lport->tt.exch_mgr_reset)
2476 lport->tt.exch_mgr_reset = fc_exch_mgr_reset;
Robert Love42e9a922008-12-09 15:10:17 -08002477
Robert Love3a3b42b2009-11-03 11:47:39 -08002478 if (!lport->tt.seq_exch_abort)
2479 lport->tt.seq_exch_abort = fc_seq_exch_abort;
Robert Love42e9a922008-12-09 15:10:17 -08002480
Joe Eykholt239e8102010-07-20 15:21:07 -07002481 if (!lport->tt.seq_assign)
2482 lport->tt.seq_assign = fc_seq_assign;
2483
Joe Eykholt62bdb642011-01-28 16:04:34 -08002484 if (!lport->tt.seq_release)
2485 lport->tt.seq_release = fc_seq_release;
2486
Vasu Dev89f19a52009-10-21 16:27:28 -07002487 return 0;
2488}
2489EXPORT_SYMBOL(fc_exch_init);
2490
2491/**
2492 * fc_setup_exch_mgr() - Setup an exchange manager
2493 */
Randy Dunlap55204902011-01-28 16:03:57 -08002494int fc_setup_exch_mgr(void)
Vasu Dev89f19a52009-10-21 16:27:28 -07002495{
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 Deve4bc50b2009-08-25 13:58:47 -07002501 /*
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 Dev4ae1e192009-11-03 11:50:10 -08002523 fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue");
2524 if (!fc_exch_workqueue)
Hillf Danton6f06e3a2011-07-27 15:10:34 -07002525 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08002526 return 0;
Hillf Danton6f06e3a2011-07-27 15:10:34 -07002527err:
2528 kmem_cache_destroy(fc_em_cachep);
2529 return -ENOMEM;
Robert Love42e9a922008-12-09 15:10:17 -08002530}
Robert Love42e9a922008-12-09 15:10:17 -08002531
Robert Love3a3b42b2009-11-03 11:47:39 -08002532/**
2533 * fc_destroy_exch_mgr() - Destroy an exchange manager
2534 */
Randy Dunlap55204902011-01-28 16:03:57 -08002535void fc_destroy_exch_mgr(void)
Robert Love42e9a922008-12-09 15:10:17 -08002536{
Vasu Dev4ae1e192009-11-03 11:50:10 -08002537 destroy_workqueue(fc_exch_workqueue);
Robert Love42e9a922008-12-09 15:10:17 -08002538 kmem_cache_destroy(fc_em_cachep);
2539}