blob: ca52bfa4a1ec3f805d5aef50c7d8689754915c17 [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>
29
30#include <scsi/fc/fc_fc2.h>
31
32#include <scsi/libfc.h>
33#include <scsi/fc_encode.h>
34
Robert Love8866a5d2009-11-03 11:45:58 -080035#include "fc_libfc.h"
36
Vasu Deve4bc50b2009-08-25 13:58:47 -070037u16 fc_cpu_mask; /* cpu mask for possible cpus */
38EXPORT_SYMBOL(fc_cpu_mask);
39static u16 fc_cpu_order; /* 2's power to represent total possible cpus */
Robert Love3a3b42b2009-11-03 11:47:39 -080040static struct kmem_cache *fc_em_cachep; /* cache for exchanges */
Vasu Dev4ae1e192009-11-03 11:50:10 -080041struct workqueue_struct *fc_exch_workqueue;
Robert Love42e9a922008-12-09 15:10:17 -080042
43/*
44 * Structure and function definitions for managing Fibre Channel Exchanges
45 * and Sequences.
46 *
47 * The three primary structures used here are fc_exch_mgr, fc_exch, and fc_seq.
48 *
49 * fc_exch_mgr holds the exchange state for an N port
50 *
51 * fc_exch holds state for one exchange and links to its active sequence.
52 *
53 * fc_seq holds the state for an individual sequence.
54 */
55
Robert Love3a3b42b2009-11-03 11:47:39 -080056/**
57 * struct fc_exch_pool - Per cpu exchange pool
58 * @next_index: Next possible free exchange index
59 * @total_exches: Total allocated exchanges
60 * @lock: Exch pool lock
61 * @ex_list: List of exchanges
Vasu Deve4bc50b2009-08-25 13:58:47 -070062 *
63 * This structure manages per cpu exchanges in array of exchange pointers.
64 * This array is allocated followed by struct fc_exch_pool memory for
65 * assigned range of exchanges to per cpu pool.
66 */
67struct fc_exch_pool {
Robert Love3a3b42b2009-11-03 11:47:39 -080068 u16 next_index;
69 u16 total_exches;
70 spinlock_t lock;
71 struct list_head ex_list;
Vasu Deve4bc50b2009-08-25 13:58:47 -070072};
73
Robert Love3a3b42b2009-11-03 11:47:39 -080074/**
75 * struct fc_exch_mgr - The Exchange Manager (EM).
76 * @class: Default class for new sequences
77 * @kref: Reference counter
78 * @min_xid: Minimum exchange ID
79 * @max_xid: Maximum exchange ID
80 * @ep_pool: Reserved exchange pointers
81 * @pool_max_index: Max exch array index in exch pool
82 * @pool: Per cpu exch pool
83 * @stats: Statistics structure
Robert Love42e9a922008-12-09 15:10:17 -080084 *
85 * This structure is the center for creating exchanges and sequences.
86 * It manages the allocation of exchange IDs.
87 */
88struct fc_exch_mgr {
Robert Love3a3b42b2009-11-03 11:47:39 -080089 enum fc_class class;
90 struct kref kref;
91 u16 min_xid;
92 u16 max_xid;
93 mempool_t *ep_pool;
94 u16 pool_max_index;
95 struct fc_exch_pool *pool;
Robert Love42e9a922008-12-09 15:10:17 -080096
97 /*
98 * currently exchange mgr stats are updated but not used.
99 * either stats can be expose via sysfs or remove them
100 * all together if not used XXX
101 */
102 struct {
103 atomic_t no_free_exch;
104 atomic_t no_free_exch_xid;
105 atomic_t xid_not_found;
106 atomic_t xid_busy;
107 atomic_t seq_not_found;
108 atomic_t non_bls_resp;
109 } stats;
Robert Love42e9a922008-12-09 15:10:17 -0800110};
111#define fc_seq_exch(sp) container_of(sp, struct fc_exch, seq)
112
Robert Love3a3b42b2009-11-03 11:47:39 -0800113/**
114 * struct fc_exch_mgr_anchor - primary structure for list of EMs
115 * @ema_list: Exchange Manager Anchor list
116 * @mp: Exchange Manager associated with this anchor
117 * @match: Routine to determine if this anchor's EM should be used
118 *
119 * When walking the list of anchors the match routine will be called
120 * for each anchor to determine if that EM should be used. The last
121 * anchor in the list will always match to handle any exchanges not
122 * handled by other EMs. The non-default EMs would be added to the
123 * anchor list by HW that provides FCoE offloads.
124 */
Vasu Dev96316092009-07-29 17:05:00 -0700125struct fc_exch_mgr_anchor {
126 struct list_head ema_list;
127 struct fc_exch_mgr *mp;
128 bool (*match)(struct fc_frame *);
129};
130
Robert Love42e9a922008-12-09 15:10:17 -0800131static void fc_exch_rrq(struct fc_exch *);
132static void fc_seq_ls_acc(struct fc_seq *);
133static void fc_seq_ls_rjt(struct fc_seq *, enum fc_els_rjt_reason,
134 enum fc_els_rjt_explan);
135static void fc_exch_els_rec(struct fc_seq *, struct fc_frame *);
136static void fc_exch_els_rrq(struct fc_seq *, struct fc_frame *);
Robert Love42e9a922008-12-09 15:10:17 -0800137
138/*
139 * Internal implementation notes.
140 *
141 * The exchange manager is one by default in libfc but LLD may choose
142 * to have one per CPU. The sequence manager is one per exchange manager
143 * and currently never separated.
144 *
145 * Section 9.8 in FC-FS-2 specifies: "The SEQ_ID is a one-byte field
146 * assigned by the Sequence Initiator that shall be unique for a specific
147 * D_ID and S_ID pair while the Sequence is open." Note that it isn't
148 * qualified by exchange ID, which one might think it would be.
149 * In practice this limits the number of open sequences and exchanges to 256
150 * per session. For most targets we could treat this limit as per exchange.
151 *
152 * The exchange and its sequence are freed when the last sequence is received.
153 * It's possible for the remote port to leave an exchange open without
154 * sending any sequences.
155 *
156 * Notes on reference counts:
157 *
158 * Exchanges are reference counted and exchange gets freed when the reference
159 * count becomes zero.
160 *
161 * Timeouts:
162 * Sequences are timed out for E_D_TOV and R_A_TOV.
163 *
164 * Sequence event handling:
165 *
166 * The following events may occur on initiator sequences:
167 *
168 * Send.
169 * For now, the whole thing is sent.
170 * Receive ACK
171 * This applies only to class F.
172 * The sequence is marked complete.
173 * ULP completion.
174 * The upper layer calls fc_exch_done() when done
175 * with exchange and sequence tuple.
176 * RX-inferred completion.
177 * When we receive the next sequence on the same exchange, we can
178 * retire the previous sequence ID. (XXX not implemented).
179 * Timeout.
180 * R_A_TOV frees the sequence ID. If we're waiting for ACK,
181 * E_D_TOV causes abort and calls upper layer response handler
182 * with FC_EX_TIMEOUT error.
183 * Receive RJT
184 * XXX defer.
185 * Send ABTS
186 * On timeout.
187 *
188 * The following events may occur on recipient sequences:
189 *
190 * Receive
191 * Allocate sequence for first frame received.
192 * Hold during receive handler.
193 * Release when final frame received.
194 * Keep status of last N of these for the ELS RES command. XXX TBD.
195 * Receive ABTS
196 * Deallocate sequence
197 * Send RJT
198 * Deallocate
199 *
200 * For now, we neglect conditions where only part of a sequence was
201 * received or transmitted, or where out-of-order receipt is detected.
202 */
203
204/*
205 * Locking notes:
206 *
207 * The EM code run in a per-CPU worker thread.
208 *
209 * To protect against concurrency between a worker thread code and timers,
210 * sequence allocation and deallocation must be locked.
211 * - exchange refcnt can be done atomicly without locks.
212 * - sequence allocation must be locked by exch lock.
Vasu Devb2f00912009-08-25 13:58:53 -0700213 * - If the EM pool lock and ex_lock must be taken at the same time, then the
214 * EM pool lock must be taken before the ex_lock.
Robert Love42e9a922008-12-09 15:10:17 -0800215 */
216
217/*
218 * opcode names for debugging.
219 */
220static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT;
221
Robert Love3a3b42b2009-11-03 11:47:39 -0800222/**
223 * fc_exch_name_lookup() - Lookup name by opcode
224 * @op: Opcode to be looked up
225 * @table: Opcode/name table
226 * @max_index: Index not to be exceeded
227 *
228 * This routine is used to determine a human-readable string identifying
229 * a R_CTL opcode.
230 */
Robert Love42e9a922008-12-09 15:10:17 -0800231static inline const char *fc_exch_name_lookup(unsigned int op, char **table,
232 unsigned int max_index)
233{
234 const char *name = NULL;
235
236 if (op < max_index)
237 name = table[op];
238 if (!name)
239 name = "unknown";
240 return name;
241}
242
Robert Love3a3b42b2009-11-03 11:47:39 -0800243/**
244 * fc_exch_rctl_name() - Wrapper routine for fc_exch_name_lookup()
245 * @op: The opcode to be looked up
246 */
Robert Love42e9a922008-12-09 15:10:17 -0800247static const char *fc_exch_rctl_name(unsigned int op)
248{
249 return fc_exch_name_lookup(op, fc_exch_rctl_names,
Kulikov Vasiliy7156fff2010-06-28 15:55:12 +0400250 ARRAY_SIZE(fc_exch_rctl_names));
Robert Love42e9a922008-12-09 15:10:17 -0800251}
252
Robert Love3a3b42b2009-11-03 11:47:39 -0800253/**
254 * fc_exch_hold() - Increment an exchange's reference count
255 * @ep: Echange to be held
Robert Love42e9a922008-12-09 15:10:17 -0800256 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800257static inline void fc_exch_hold(struct fc_exch *ep)
Robert Love42e9a922008-12-09 15:10:17 -0800258{
259 atomic_inc(&ep->ex_refcnt);
260}
261
Robert Love3a3b42b2009-11-03 11:47:39 -0800262/**
263 * fc_exch_setup_hdr() - Initialize a FC header by initializing some fields
264 * and determine SOF and EOF.
265 * @ep: The exchange to that will use the header
266 * @fp: The frame whose header is to be modified
267 * @f_ctl: F_CTL bits that will be used for the frame header
268 *
269 * The fields initialized by this routine are: fh_ox_id, fh_rx_id,
270 * fh_seq_id, fh_seq_cnt and the SOF and EOF.
Robert Love42e9a922008-12-09 15:10:17 -0800271 */
272static void fc_exch_setup_hdr(struct fc_exch *ep, struct fc_frame *fp,
273 u32 f_ctl)
274{
275 struct fc_frame_header *fh = fc_frame_header_get(fp);
276 u16 fill;
277
278 fr_sof(fp) = ep->class;
279 if (ep->seq.cnt)
280 fr_sof(fp) = fc_sof_normal(ep->class);
281
282 if (f_ctl & FC_FC_END_SEQ) {
283 fr_eof(fp) = FC_EOF_T;
284 if (fc_sof_needs_ack(ep->class))
285 fr_eof(fp) = FC_EOF_N;
286 /*
Robert Love3a3b42b2009-11-03 11:47:39 -0800287 * From F_CTL.
Robert Love42e9a922008-12-09 15:10:17 -0800288 * The number of fill bytes to make the length a 4-byte
289 * multiple is the low order 2-bits of the f_ctl.
290 * The fill itself will have been cleared by the frame
291 * allocation.
292 * After this, the length will be even, as expected by
293 * the transport.
294 */
295 fill = fr_len(fp) & 3;
296 if (fill) {
297 fill = 4 - fill;
298 /* TODO, this may be a problem with fragmented skb */
299 skb_put(fp_skb(fp), fill);
300 hton24(fh->fh_f_ctl, f_ctl | fill);
301 }
302 } else {
303 WARN_ON(fr_len(fp) % 4 != 0); /* no pad to non last frame */
304 fr_eof(fp) = FC_EOF_N;
305 }
306
307 /*
308 * Initialize remainig fh fields
309 * from fc_fill_fc_hdr
310 */
311 fh->fh_ox_id = htons(ep->oxid);
312 fh->fh_rx_id = htons(ep->rxid);
313 fh->fh_seq_id = ep->seq.id;
314 fh->fh_seq_cnt = htons(ep->seq.cnt);
315}
316
Robert Love3a3b42b2009-11-03 11:47:39 -0800317/**
318 * fc_exch_release() - Decrement an exchange's reference count
319 * @ep: Exchange to be released
320 *
321 * If the reference count reaches zero and the exchange is complete,
322 * it is freed.
Robert Love42e9a922008-12-09 15:10:17 -0800323 */
324static void fc_exch_release(struct fc_exch *ep)
325{
326 struct fc_exch_mgr *mp;
327
328 if (atomic_dec_and_test(&ep->ex_refcnt)) {
329 mp = ep->em;
330 if (ep->destructor)
331 ep->destructor(&ep->seq, ep->arg);
Julia Lawallaa6cd292009-02-04 22:17:29 +0100332 WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE));
Robert Love42e9a922008-12-09 15:10:17 -0800333 mempool_free(ep, mp->ep_pool);
334 }
335}
336
Robert Love3a3b42b2009-11-03 11:47:39 -0800337/**
338 * fc_exch_done_locked() - Complete an exchange with the exchange lock held
339 * @ep: The exchange that is complete
340 */
Robert Love42e9a922008-12-09 15:10:17 -0800341static int fc_exch_done_locked(struct fc_exch *ep)
342{
343 int rc = 1;
344
345 /*
346 * We must check for completion in case there are two threads
347 * tyring to complete this. But the rrq code will reuse the
348 * ep, and in that case we only clear the resp and set it as
349 * complete, so it can be reused by the timer to send the rrq.
350 */
351 ep->resp = NULL;
352 if (ep->state & FC_EX_DONE)
353 return rc;
354 ep->esb_stat |= ESB_ST_COMPLETE;
355
356 if (!(ep->esb_stat & ESB_ST_REC_QUAL)) {
357 ep->state |= FC_EX_DONE;
358 if (cancel_delayed_work(&ep->timeout_work))
359 atomic_dec(&ep->ex_refcnt); /* drop hold for timer */
360 rc = 0;
361 }
362 return rc;
363}
364
Robert Love3a3b42b2009-11-03 11:47:39 -0800365/**
366 * fc_exch_ptr_get() - Return an exchange from an exchange pool
367 * @pool: Exchange Pool to get an exchange from
368 * @index: Index of the exchange within the pool
369 *
370 * Use the index to get an exchange from within an exchange pool. exches
371 * will point to an array of exchange pointers. The index will select
372 * the exchange within the array.
373 */
Vasu Deve4bc50b2009-08-25 13:58:47 -0700374static inline struct fc_exch *fc_exch_ptr_get(struct fc_exch_pool *pool,
375 u16 index)
376{
377 struct fc_exch **exches = (struct fc_exch **)(pool + 1);
378 return exches[index];
379}
380
Robert Love3a3b42b2009-11-03 11:47:39 -0800381/**
382 * fc_exch_ptr_set() - Assign an exchange to a slot in an exchange pool
383 * @pool: The pool to assign the exchange to
384 * @index: The index in the pool where the exchange will be assigned
385 * @ep: The exchange to assign to the pool
386 */
Vasu Deve4bc50b2009-08-25 13:58:47 -0700387static inline void fc_exch_ptr_set(struct fc_exch_pool *pool, u16 index,
388 struct fc_exch *ep)
389{
390 ((struct fc_exch **)(pool + 1))[index] = ep;
391}
392
Robert Love3a3b42b2009-11-03 11:47:39 -0800393/**
394 * fc_exch_delete() - Delete an exchange
395 * @ep: The exchange to be deleted
396 */
Vasu Devb2f00912009-08-25 13:58:53 -0700397static void fc_exch_delete(struct fc_exch *ep)
Robert Love42e9a922008-12-09 15:10:17 -0800398{
Vasu Devb2f00912009-08-25 13:58:53 -0700399 struct fc_exch_pool *pool;
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--;
405 fc_exch_ptr_set(pool, (ep->xid - ep->em->min_xid) >> fc_cpu_order,
406 NULL);
Robert Love42e9a922008-12-09 15:10:17 -0800407 list_del(&ep->ex_list);
Vasu Devb2f00912009-08-25 13:58:53 -0700408 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800409 fc_exch_release(ep); /* drop hold for exch in mp */
410}
411
Robert Love3a3b42b2009-11-03 11:47:39 -0800412/**
413 * fc_exch_timer_set_locked() - Start a timer for an exchange w/ the
414 * the exchange lock held
415 * @ep: The exchange whose timer will start
416 * @timer_msec: The timeout period
417 *
418 * Used for upper level protocols to time out the exchange.
419 * The timer is cancelled when it fires or when the exchange completes.
Robert Love42e9a922008-12-09 15:10:17 -0800420 */
421static inline void fc_exch_timer_set_locked(struct fc_exch *ep,
422 unsigned int timer_msec)
423{
424 if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE))
425 return;
426
Robert Lovecd305ce2009-08-25 13:58:37 -0700427 FC_EXCH_DBG(ep, "Exchange timer armed\n");
Robert Love74147052009-06-10 15:31:10 -0700428
Vasu Dev4ae1e192009-11-03 11:50:10 -0800429 if (queue_delayed_work(fc_exch_workqueue, &ep->timeout_work,
430 msecs_to_jiffies(timer_msec)))
Robert Love42e9a922008-12-09 15:10:17 -0800431 fc_exch_hold(ep); /* hold for timer */
432}
433
Robert Love3a3b42b2009-11-03 11:47:39 -0800434/**
435 * fc_exch_timer_set() - Lock the exchange and set the timer
436 * @ep: The exchange whose timer will start
437 * @timer_msec: The timeout period
Robert Love42e9a922008-12-09 15:10:17 -0800438 */
439static void fc_exch_timer_set(struct fc_exch *ep, unsigned int timer_msec)
440{
441 spin_lock_bh(&ep->ex_lock);
442 fc_exch_timer_set_locked(ep, timer_msec);
443 spin_unlock_bh(&ep->ex_lock);
444}
445
Robert Love1a7b75a2009-11-03 11:45:47 -0800446/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800447 * fc_seq_send() - Send a frame using existing sequence/exchange pair
448 * @lport: The local port that the exchange will be sent on
449 * @sp: The sequence to be sent
450 * @fp: The frame to be sent on the exchange
Robert Love1a7b75a2009-11-03 11:45:47 -0800451 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800452static int fc_seq_send(struct fc_lport *lport, struct fc_seq *sp,
Robert Love1a7b75a2009-11-03 11:45:47 -0800453 struct fc_frame *fp)
454{
455 struct fc_exch *ep;
456 struct fc_frame_header *fh = fc_frame_header_get(fp);
457 int error;
Robert Love3a3b42b2009-11-03 11:47:39 -0800458 u32 f_ctl;
Robert Love1a7b75a2009-11-03 11:45:47 -0800459
460 ep = fc_seq_exch(sp);
461 WARN_ON((ep->esb_stat & ESB_ST_SEQ_INIT) != ESB_ST_SEQ_INIT);
462
463 f_ctl = ntoh24(fh->fh_f_ctl);
464 fc_exch_setup_hdr(ep, fp, f_ctl);
465
466 /*
467 * update sequence count if this frame is carrying
468 * multiple FC frames when sequence offload is enabled
469 * by LLD.
470 */
471 if (fr_max_payload(fp))
472 sp->cnt += DIV_ROUND_UP((fr_len(fp) - sizeof(*fh)),
473 fr_max_payload(fp));
474 else
475 sp->cnt++;
476
477 /*
478 * Send the frame.
479 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800480 error = lport->tt.frame_send(lport, fp);
Robert Love1a7b75a2009-11-03 11:45:47 -0800481
482 /*
483 * Update the exchange and sequence flags,
484 * assuming all frames for the sequence have been sent.
485 * We can only be called to send once for each sequence.
486 */
487 spin_lock_bh(&ep->ex_lock);
488 ep->f_ctl = f_ctl & ~FC_FC_FIRST_SEQ; /* not first seq */
Joe Eykholtcc3593d2010-03-12 16:08:29 -0800489 if (f_ctl & FC_FC_SEQ_INIT)
Robert Love1a7b75a2009-11-03 11:45:47 -0800490 ep->esb_stat &= ~ESB_ST_SEQ_INIT;
491 spin_unlock_bh(&ep->ex_lock);
492 return error;
493}
494
495/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800496 * fc_seq_alloc() - Allocate a sequence for a given exchange
497 * @ep: The exchange to allocate a new sequence for
498 * @seq_id: The sequence ID to be used
Robert Love1a7b75a2009-11-03 11:45:47 -0800499 *
500 * We don't support multiple originated sequences on the same exchange.
501 * By implication, any previously originated sequence on this exchange
502 * is complete, and we reallocate the same sequence.
503 */
504static struct fc_seq *fc_seq_alloc(struct fc_exch *ep, u8 seq_id)
505{
506 struct fc_seq *sp;
507
508 sp = &ep->seq;
509 sp->ssb_stat = 0;
510 sp->cnt = 0;
511 sp->id = seq_id;
512 return sp;
513}
514
Robert Love3a3b42b2009-11-03 11:47:39 -0800515/**
516 * fc_seq_start_next_locked() - Allocate a new sequence on the same
517 * exchange as the supplied sequence
518 * @sp: The sequence/exchange to get a new sequence for
519 */
Robert Love1a7b75a2009-11-03 11:45:47 -0800520static struct fc_seq *fc_seq_start_next_locked(struct fc_seq *sp)
521{
522 struct fc_exch *ep = fc_seq_exch(sp);
523
524 sp = fc_seq_alloc(ep, ep->seq_id++);
525 FC_EXCH_DBG(ep, "f_ctl %6x seq %2x\n",
526 ep->f_ctl, sp->id);
527 return sp;
528}
529
530/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800531 * fc_seq_start_next() - Lock the exchange and get a new sequence
532 * for a given sequence/exchange pair
533 * @sp: The sequence/exchange to get a new exchange for
Robert Love1a7b75a2009-11-03 11:45:47 -0800534 */
535static struct fc_seq *fc_seq_start_next(struct fc_seq *sp)
536{
537 struct fc_exch *ep = fc_seq_exch(sp);
538
539 spin_lock_bh(&ep->ex_lock);
540 sp = fc_seq_start_next_locked(sp);
541 spin_unlock_bh(&ep->ex_lock);
542
543 return sp;
544}
545
546/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800547 * fc_seq_exch_abort() - Abort an exchange and sequence
548 * @req_sp: The sequence to be aborted
549 * @timer_msec: The period of time to wait before aborting
550 *
551 * Generally called because of a timeout or an abort from the upper layer.
Robert Love1a7b75a2009-11-03 11:45:47 -0800552 */
553static int fc_seq_exch_abort(const struct fc_seq *req_sp,
554 unsigned int timer_msec)
Robert Love42e9a922008-12-09 15:10:17 -0800555{
556 struct fc_seq *sp;
557 struct fc_exch *ep;
558 struct fc_frame *fp;
559 int error;
560
561 ep = fc_seq_exch(req_sp);
562
563 spin_lock_bh(&ep->ex_lock);
564 if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL) ||
565 ep->state & (FC_EX_DONE | FC_EX_RST_CLEANUP)) {
566 spin_unlock_bh(&ep->ex_lock);
567 return -ENXIO;
568 }
569
570 /*
571 * Send the abort on a new sequence if possible.
572 */
573 sp = fc_seq_start_next_locked(&ep->seq);
574 if (!sp) {
575 spin_unlock_bh(&ep->ex_lock);
576 return -ENOMEM;
577 }
578
579 ep->esb_stat |= ESB_ST_SEQ_INIT | ESB_ST_ABNORMAL;
580 if (timer_msec)
581 fc_exch_timer_set_locked(ep, timer_msec);
582 spin_unlock_bh(&ep->ex_lock);
583
584 /*
585 * If not logged into the fabric, don't send ABTS but leave
586 * sequence active until next timeout.
587 */
588 if (!ep->sid)
589 return 0;
590
591 /*
592 * Send an abort for the sequence that timed out.
593 */
594 fp = fc_frame_alloc(ep->lp, 0);
595 if (fp) {
596 fc_fill_fc_hdr(fp, FC_RCTL_BA_ABTS, ep->did, ep->sid,
597 FC_TYPE_BLS, FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0);
598 error = fc_seq_send(ep->lp, sp, fp);
599 } else
600 error = -ENOBUFS;
601 return error;
602}
Robert Love42e9a922008-12-09 15:10:17 -0800603
Robert Love3a3b42b2009-11-03 11:47:39 -0800604/**
605 * fc_exch_timeout() - Handle exchange timer expiration
606 * @work: The work_struct identifying the exchange that timed out
Robert Love42e9a922008-12-09 15:10:17 -0800607 */
608static void fc_exch_timeout(struct work_struct *work)
609{
610 struct fc_exch *ep = container_of(work, struct fc_exch,
611 timeout_work.work);
612 struct fc_seq *sp = &ep->seq;
613 void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg);
614 void *arg;
615 u32 e_stat;
616 int rc = 1;
617
Robert Lovecd305ce2009-08-25 13:58:37 -0700618 FC_EXCH_DBG(ep, "Exchange timed out\n");
619
Robert Love42e9a922008-12-09 15:10:17 -0800620 spin_lock_bh(&ep->ex_lock);
621 if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE))
622 goto unlock;
623
624 e_stat = ep->esb_stat;
625 if (e_stat & ESB_ST_COMPLETE) {
626 ep->esb_stat = e_stat & ~ESB_ST_REC_QUAL;
Vasu Deva0cc1ec2009-07-28 17:33:37 -0700627 spin_unlock_bh(&ep->ex_lock);
Robert Love42e9a922008-12-09 15:10:17 -0800628 if (e_stat & ESB_ST_REC_QUAL)
629 fc_exch_rrq(ep);
Robert Love42e9a922008-12-09 15:10:17 -0800630 goto done;
631 } else {
632 resp = ep->resp;
633 arg = ep->arg;
634 ep->resp = NULL;
635 if (e_stat & ESB_ST_ABNORMAL)
636 rc = fc_exch_done_locked(ep);
637 spin_unlock_bh(&ep->ex_lock);
638 if (!rc)
Vasu Devb2f00912009-08-25 13:58:53 -0700639 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -0800640 if (resp)
641 resp(sp, ERR_PTR(-FC_EX_TIMEOUT), arg);
642 fc_seq_exch_abort(sp, 2 * ep->r_a_tov);
643 goto done;
644 }
645unlock:
646 spin_unlock_bh(&ep->ex_lock);
647done:
648 /*
649 * This release matches the hold taken when the timer was set.
650 */
651 fc_exch_release(ep);
652}
653
Vasu Dev52ff8782009-07-29 17:05:10 -0700654/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800655 * fc_exch_em_alloc() - Allocate an exchange from a specified EM.
656 * @lport: The local port that the exchange is for
657 * @mp: The exchange manager that will allocate the exchange
Robert Love42e9a922008-12-09 15:10:17 -0800658 *
Vasu Devd7179682009-07-29 17:05:21 -0700659 * Returns pointer to allocated fc_exch with exch lock held.
Robert Love42e9a922008-12-09 15:10:17 -0800660 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700661static struct fc_exch *fc_exch_em_alloc(struct fc_lport *lport,
Vasu Devd7179682009-07-29 17:05:21 -0700662 struct fc_exch_mgr *mp)
Robert Love42e9a922008-12-09 15:10:17 -0800663{
664 struct fc_exch *ep;
Vasu Devb2f00912009-08-25 13:58:53 -0700665 unsigned int cpu;
666 u16 index;
667 struct fc_exch_pool *pool;
Robert Love42e9a922008-12-09 15:10:17 -0800668
669 /* allocate memory for exchange */
670 ep = mempool_alloc(mp->ep_pool, GFP_ATOMIC);
671 if (!ep) {
672 atomic_inc(&mp->stats.no_free_exch);
673 goto out;
674 }
675 memset(ep, 0, sizeof(*ep));
676
Joe Eykholtf018b732010-03-12 16:08:55 -0800677 cpu = get_cpu();
Vasu Devb2f00912009-08-25 13:58:53 -0700678 pool = per_cpu_ptr(mp->pool, cpu);
679 spin_lock_bh(&pool->lock);
Joe Eykholtf018b732010-03-12 16:08:55 -0800680 put_cpu();
Vasu Devb2f00912009-08-25 13:58:53 -0700681 index = pool->next_index;
682 /* allocate new exch from pool */
683 while (fc_exch_ptr_get(pool, index)) {
684 index = index == mp->pool_max_index ? 0 : index + 1;
685 if (index == pool->next_index)
Robert Love42e9a922008-12-09 15:10:17 -0800686 goto err;
Robert Love42e9a922008-12-09 15:10:17 -0800687 }
Vasu Devb2f00912009-08-25 13:58:53 -0700688 pool->next_index = index == mp->pool_max_index ? 0 : index + 1;
Robert Love42e9a922008-12-09 15:10:17 -0800689
690 fc_exch_hold(ep); /* hold for exch in mp */
691 spin_lock_init(&ep->ex_lock);
692 /*
693 * Hold exch lock for caller to prevent fc_exch_reset()
694 * from releasing exch while fc_exch_alloc() caller is
695 * still working on exch.
696 */
697 spin_lock_bh(&ep->ex_lock);
698
Vasu Devb2f00912009-08-25 13:58:53 -0700699 fc_exch_ptr_set(pool, index, ep);
700 list_add_tail(&ep->ex_list, &pool->ex_list);
Robert Love42e9a922008-12-09 15:10:17 -0800701 fc_seq_alloc(ep, ep->seq_id++);
Vasu Devb2f00912009-08-25 13:58:53 -0700702 pool->total_exches++;
703 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800704
705 /*
706 * update exchange
707 */
Vasu Devb2f00912009-08-25 13:58:53 -0700708 ep->oxid = ep->xid = (index << fc_cpu_order | cpu) + mp->min_xid;
Robert Love42e9a922008-12-09 15:10:17 -0800709 ep->em = mp;
Vasu Devb2f00912009-08-25 13:58:53 -0700710 ep->pool = pool;
Vasu Dev52ff8782009-07-29 17:05:10 -0700711 ep->lp = lport;
Robert Love42e9a922008-12-09 15:10:17 -0800712 ep->f_ctl = FC_FC_FIRST_SEQ; /* next seq is first seq */
713 ep->rxid = FC_XID_UNKNOWN;
714 ep->class = mp->class;
715 INIT_DELAYED_WORK(&ep->timeout_work, fc_exch_timeout);
716out:
717 return ep;
718err:
Vasu Devb2f00912009-08-25 13:58:53 -0700719 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800720 atomic_inc(&mp->stats.no_free_exch_xid);
721 mempool_free(ep, mp->ep_pool);
722 return NULL;
723}
Vasu Dev52ff8782009-07-29 17:05:10 -0700724
725/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800726 * fc_exch_alloc() - Allocate an exchange from an EM on a
727 * local port's list of EMs.
728 * @lport: The local port that will own the exchange
729 * @fp: The FC frame that the exchange will be for
Vasu Dev52ff8782009-07-29 17:05:10 -0700730 *
Robert Love3a3b42b2009-11-03 11:47:39 -0800731 * This function walks the list of exchange manager(EM)
732 * anchors to select an EM for a new exchange allocation. The
733 * EM is selected when a NULL match function pointer is encountered
734 * or when a call to a match function returns true.
Vasu Dev52ff8782009-07-29 17:05:10 -0700735 */
Vasu Dev3e227602010-03-12 16:08:39 -0800736static inline struct fc_exch *fc_exch_alloc(struct fc_lport *lport,
737 struct fc_frame *fp)
Vasu Dev52ff8782009-07-29 17:05:10 -0700738{
739 struct fc_exch_mgr_anchor *ema;
Vasu Dev52ff8782009-07-29 17:05:10 -0700740
Vasu Dev3e227602010-03-12 16:08:39 -0800741 list_for_each_entry(ema, &lport->ema_list, ema_list)
742 if (!ema->match || ema->match(fp))
743 return fc_exch_em_alloc(lport, ema->mp);
Vasu Dev52ff8782009-07-29 17:05:10 -0700744 return NULL;
745}
Robert Love42e9a922008-12-09 15:10:17 -0800746
Robert Love3a3b42b2009-11-03 11:47:39 -0800747/**
748 * fc_exch_find() - Lookup and hold an exchange
749 * @mp: The exchange manager to lookup the exchange from
750 * @xid: The XID of the exchange to look up
Robert Love42e9a922008-12-09 15:10:17 -0800751 */
752static struct fc_exch *fc_exch_find(struct fc_exch_mgr *mp, u16 xid)
753{
Vasu Devb2f00912009-08-25 13:58:53 -0700754 struct fc_exch_pool *pool;
Robert Love42e9a922008-12-09 15:10:17 -0800755 struct fc_exch *ep = NULL;
756
757 if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) {
Vasu Devb2f00912009-08-25 13:58:53 -0700758 pool = per_cpu_ptr(mp->pool, xid & fc_cpu_mask);
759 spin_lock_bh(&pool->lock);
760 ep = fc_exch_ptr_get(pool, (xid - mp->min_xid) >> fc_cpu_order);
Robert Love42e9a922008-12-09 15:10:17 -0800761 if (ep) {
762 fc_exch_hold(ep);
763 WARN_ON(ep->xid != xid);
764 }
Vasu Devb2f00912009-08-25 13:58:53 -0700765 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -0800766 }
767 return ep;
768}
769
Robert Love1a7b75a2009-11-03 11:45:47 -0800770
771/**
772 * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and
Robert Love3a3b42b2009-11-03 11:47:39 -0800773 * the memory allocated for the related objects may be freed.
774 * @sp: The sequence that has completed
Robert Love1a7b75a2009-11-03 11:45:47 -0800775 */
776static void fc_exch_done(struct fc_seq *sp)
Robert Love42e9a922008-12-09 15:10:17 -0800777{
778 struct fc_exch *ep = fc_seq_exch(sp);
779 int rc;
780
781 spin_lock_bh(&ep->ex_lock);
782 rc = fc_exch_done_locked(ep);
783 spin_unlock_bh(&ep->ex_lock);
784 if (!rc)
Vasu Devb2f00912009-08-25 13:58:53 -0700785 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -0800786}
Robert Love42e9a922008-12-09 15:10:17 -0800787
Robert Love3a3b42b2009-11-03 11:47:39 -0800788/**
789 * fc_exch_resp() - Allocate a new exchange for a response frame
790 * @lport: The local port that the exchange was for
791 * @mp: The exchange manager to allocate the exchange from
792 * @fp: The response frame
793 *
Robert Love42e9a922008-12-09 15:10:17 -0800794 * Sets the responder ID in the frame header.
795 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700796static struct fc_exch *fc_exch_resp(struct fc_lport *lport,
797 struct fc_exch_mgr *mp,
798 struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800799{
800 struct fc_exch *ep;
801 struct fc_frame_header *fh;
Robert Love42e9a922008-12-09 15:10:17 -0800802
Vasu Dev52ff8782009-07-29 17:05:10 -0700803 ep = fc_exch_alloc(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800804 if (ep) {
805 ep->class = fc_frame_class(fp);
806
807 /*
808 * Set EX_CTX indicating we're responding on this exchange.
809 */
810 ep->f_ctl |= FC_FC_EX_CTX; /* we're responding */
811 ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not new */
812 fh = fc_frame_header_get(fp);
813 ep->sid = ntoh24(fh->fh_d_id);
814 ep->did = ntoh24(fh->fh_s_id);
815 ep->oid = ep->did;
816
817 /*
818 * Allocated exchange has placed the XID in the
819 * originator field. Move it to the responder field,
820 * and set the originator XID from the frame.
821 */
822 ep->rxid = ep->xid;
823 ep->oxid = ntohs(fh->fh_ox_id);
824 ep->esb_stat |= ESB_ST_RESP | ESB_ST_SEQ_INIT;
825 if ((ntoh24(fh->fh_f_ctl) & FC_FC_SEQ_INIT) == 0)
826 ep->esb_stat &= ~ESB_ST_SEQ_INIT;
827
Robert Love42e9a922008-12-09 15:10:17 -0800828 fc_exch_hold(ep); /* hold for caller */
Vasu Dev52ff8782009-07-29 17:05:10 -0700829 spin_unlock_bh(&ep->ex_lock); /* lock from fc_exch_alloc */
Robert Love42e9a922008-12-09 15:10:17 -0800830 }
831 return ep;
832}
833
Robert Love3a3b42b2009-11-03 11:47:39 -0800834/**
835 * fc_seq_lookup_recip() - Find a sequence where the other end
836 * originated the sequence
837 * @lport: The local port that the frame was sent to
838 * @mp: The Exchange Manager to lookup the exchange from
839 * @fp: The frame associated with the sequence we're looking for
840 *
Robert Love42e9a922008-12-09 15:10:17 -0800841 * If fc_pf_rjt_reason is FC_RJT_NONE then this function will have a hold
842 * on the ep that should be released by the caller.
843 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700844static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport,
845 struct fc_exch_mgr *mp,
Robert Loveb2ab99c2009-02-27 10:55:50 -0800846 struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800847{
848 struct fc_frame_header *fh = fc_frame_header_get(fp);
849 struct fc_exch *ep = NULL;
850 struct fc_seq *sp = NULL;
851 enum fc_pf_rjt_reason reject = FC_RJT_NONE;
852 u32 f_ctl;
853 u16 xid;
854
855 f_ctl = ntoh24(fh->fh_f_ctl);
856 WARN_ON((f_ctl & FC_FC_SEQ_CTX) != 0);
857
858 /*
859 * Lookup or create the exchange if we will be creating the sequence.
860 */
861 if (f_ctl & FC_FC_EX_CTX) {
862 xid = ntohs(fh->fh_ox_id); /* we originated exch */
863 ep = fc_exch_find(mp, xid);
864 if (!ep) {
865 atomic_inc(&mp->stats.xid_not_found);
866 reject = FC_RJT_OX_ID;
867 goto out;
868 }
869 if (ep->rxid == FC_XID_UNKNOWN)
870 ep->rxid = ntohs(fh->fh_rx_id);
871 else if (ep->rxid != ntohs(fh->fh_rx_id)) {
872 reject = FC_RJT_OX_ID;
873 goto rel;
874 }
875 } else {
876 xid = ntohs(fh->fh_rx_id); /* we are the responder */
877
878 /*
879 * Special case for MDS issuing an ELS TEST with a
880 * bad rxid of 0.
881 * XXX take this out once we do the proper reject.
882 */
883 if (xid == 0 && fh->fh_r_ctl == FC_RCTL_ELS_REQ &&
884 fc_frame_payload_op(fp) == ELS_TEST) {
885 fh->fh_rx_id = htons(FC_XID_UNKNOWN);
886 xid = FC_XID_UNKNOWN;
887 }
888
889 /*
890 * new sequence - find the exchange
891 */
892 ep = fc_exch_find(mp, xid);
893 if ((f_ctl & FC_FC_FIRST_SEQ) && fc_sof_is_init(fr_sof(fp))) {
894 if (ep) {
895 atomic_inc(&mp->stats.xid_busy);
896 reject = FC_RJT_RX_ID;
897 goto rel;
898 }
Vasu Dev52ff8782009-07-29 17:05:10 -0700899 ep = fc_exch_resp(lport, mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800900 if (!ep) {
901 reject = FC_RJT_EXCH_EST; /* XXX */
902 goto out;
903 }
904 xid = ep->xid; /* get our XID */
905 } else if (!ep) {
906 atomic_inc(&mp->stats.xid_not_found);
907 reject = FC_RJT_RX_ID; /* XID not found */
908 goto out;
909 }
910 }
911
912 /*
913 * At this point, we have the exchange held.
914 * Find or create the sequence.
915 */
916 if (fc_sof_is_init(fr_sof(fp))) {
Vasu Deva104c842010-03-12 16:08:34 -0800917 sp = &ep->seq;
Robert Love42e9a922008-12-09 15:10:17 -0800918 sp->ssb_stat |= SSB_ST_RESP;
Joe Eykholtb3667f92010-05-07 15:18:13 -0700919 sp->id = fh->fh_seq_id;
Robert Love42e9a922008-12-09 15:10:17 -0800920 } else {
921 sp = &ep->seq;
922 if (sp->id != fh->fh_seq_id) {
923 atomic_inc(&mp->stats.seq_not_found);
924 reject = FC_RJT_SEQ_ID; /* sequence/exch should exist */
925 goto rel;
926 }
927 }
928 WARN_ON(ep != fc_seq_exch(sp));
929
930 if (f_ctl & FC_FC_SEQ_INIT)
931 ep->esb_stat |= ESB_ST_SEQ_INIT;
932
933 fr_seq(fp) = sp;
934out:
935 return reject;
936rel:
937 fc_exch_done(&ep->seq);
938 fc_exch_release(ep); /* hold from fc_exch_find/fc_exch_resp */
939 return reject;
940}
941
Robert Love3a3b42b2009-11-03 11:47:39 -0800942/**
943 * fc_seq_lookup_orig() - Find a sequence where this end
944 * originated the sequence
945 * @mp: The Exchange Manager to lookup the exchange from
946 * @fp: The frame associated with the sequence we're looking for
947 *
Robert Love42e9a922008-12-09 15:10:17 -0800948 * Does not hold the sequence for the caller.
949 */
950static struct fc_seq *fc_seq_lookup_orig(struct fc_exch_mgr *mp,
951 struct fc_frame *fp)
952{
953 struct fc_frame_header *fh = fc_frame_header_get(fp);
954 struct fc_exch *ep;
955 struct fc_seq *sp = NULL;
956 u32 f_ctl;
957 u16 xid;
958
959 f_ctl = ntoh24(fh->fh_f_ctl);
960 WARN_ON((f_ctl & FC_FC_SEQ_CTX) != FC_FC_SEQ_CTX);
961 xid = ntohs((f_ctl & FC_FC_EX_CTX) ? fh->fh_ox_id : fh->fh_rx_id);
962 ep = fc_exch_find(mp, xid);
963 if (!ep)
964 return NULL;
965 if (ep->seq.id == fh->fh_seq_id) {
966 /*
967 * Save the RX_ID if we didn't previously know it.
968 */
969 sp = &ep->seq;
970 if ((f_ctl & FC_FC_EX_CTX) != 0 &&
971 ep->rxid == FC_XID_UNKNOWN) {
972 ep->rxid = ntohs(fh->fh_rx_id);
973 }
974 }
975 fc_exch_release(ep);
976 return sp;
977}
978
Robert Love3a3b42b2009-11-03 11:47:39 -0800979/**
980 * fc_exch_set_addr() - Set the source and destination IDs for an exchange
981 * @ep: The exchange to set the addresses for
982 * @orig_id: The originator's ID
983 * @resp_id: The responder's ID
984 *
Robert Love42e9a922008-12-09 15:10:17 -0800985 * Note this must be done before the first sequence of the exchange is sent.
986 */
987static void fc_exch_set_addr(struct fc_exch *ep,
988 u32 orig_id, u32 resp_id)
989{
990 ep->oid = orig_id;
991 if (ep->esb_stat & ESB_ST_RESP) {
992 ep->sid = resp_id;
993 ep->did = orig_id;
994 } else {
995 ep->sid = orig_id;
996 ep->did = resp_id;
997 }
998}
999
Robert Love1a7b75a2009-11-03 11:45:47 -08001000/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001001 * fc_seq_els_rsp_send() - Send an ELS response using infomation from
1002 * the existing sequence/exchange.
1003 * @sp: The sequence/exchange to get information from
1004 * @els_cmd: The ELS command to be sent
1005 * @els_data: The ELS data to be sent
Robert Love42e9a922008-12-09 15:10:17 -08001006 */
Robert Love1a7b75a2009-11-03 11:45:47 -08001007static void fc_seq_els_rsp_send(struct fc_seq *sp, enum fc_els_cmd els_cmd,
1008 struct fc_seq_els_data *els_data)
Robert Love42e9a922008-12-09 15:10:17 -08001009{
1010 switch (els_cmd) {
1011 case ELS_LS_RJT:
1012 fc_seq_ls_rjt(sp, els_data->reason, els_data->explan);
1013 break;
1014 case ELS_LS_ACC:
1015 fc_seq_ls_acc(sp);
1016 break;
1017 case ELS_RRQ:
1018 fc_exch_els_rrq(sp, els_data->fp);
1019 break;
1020 case ELS_REC:
1021 fc_exch_els_rec(sp, els_data->fp);
1022 break;
1023 default:
Robert Love74147052009-06-10 15:31:10 -07001024 FC_EXCH_DBG(fc_seq_exch(sp), "Invalid ELS CMD:%x\n", els_cmd);
Robert Love42e9a922008-12-09 15:10:17 -08001025 }
1026}
Robert Love42e9a922008-12-09 15:10:17 -08001027
Robert Love3a3b42b2009-11-03 11:47:39 -08001028/**
1029 * fc_seq_send_last() - Send a sequence that is the last in the exchange
1030 * @sp: The sequence that is to be sent
1031 * @fp: The frame that will be sent on the sequence
1032 * @rctl: The R_CTL information to be sent
1033 * @fh_type: The frame header type
Robert Love42e9a922008-12-09 15:10:17 -08001034 */
1035static void fc_seq_send_last(struct fc_seq *sp, struct fc_frame *fp,
1036 enum fc_rctl rctl, enum fc_fh_type fh_type)
1037{
1038 u32 f_ctl;
1039 struct fc_exch *ep = fc_seq_exch(sp);
1040
1041 f_ctl = FC_FC_LAST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT;
1042 f_ctl |= ep->f_ctl;
1043 fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0);
1044 fc_seq_send(ep->lp, sp, fp);
1045}
1046
Robert Love3a3b42b2009-11-03 11:47:39 -08001047/**
1048 * fc_seq_send_ack() - Send an acknowledgement that we've received a frame
1049 * @sp: The sequence to send the ACK on
1050 * @rx_fp: The received frame that is being acknoledged
1051 *
Robert Love42e9a922008-12-09 15:10:17 -08001052 * Send ACK_1 (or equiv.) indicating we received something.
Robert Love42e9a922008-12-09 15:10:17 -08001053 */
1054static void fc_seq_send_ack(struct fc_seq *sp, const struct fc_frame *rx_fp)
1055{
1056 struct fc_frame *fp;
1057 struct fc_frame_header *rx_fh;
1058 struct fc_frame_header *fh;
1059 struct fc_exch *ep = fc_seq_exch(sp);
Robert Love3a3b42b2009-11-03 11:47:39 -08001060 struct fc_lport *lport = ep->lp;
Robert Love42e9a922008-12-09 15:10:17 -08001061 unsigned int f_ctl;
1062
1063 /*
1064 * Don't send ACKs for class 3.
1065 */
1066 if (fc_sof_needs_ack(fr_sof(rx_fp))) {
Robert Love3a3b42b2009-11-03 11:47:39 -08001067 fp = fc_frame_alloc(lport, 0);
Robert Love42e9a922008-12-09 15:10:17 -08001068 if (!fp)
1069 return;
1070
1071 fh = fc_frame_header_get(fp);
1072 fh->fh_r_ctl = FC_RCTL_ACK_1;
1073 fh->fh_type = FC_TYPE_BLS;
1074
1075 /*
1076 * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22).
1077 * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT.
1078 * Bits 9-8 are meaningful (retransmitted or unidirectional).
1079 * Last ACK uses bits 7-6 (continue sequence),
1080 * bits 5-4 are meaningful (what kind of ACK to use).
1081 */
1082 rx_fh = fc_frame_header_get(rx_fp);
1083 f_ctl = ntoh24(rx_fh->fh_f_ctl);
1084 f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX |
1085 FC_FC_FIRST_SEQ | FC_FC_LAST_SEQ |
1086 FC_FC_END_SEQ | FC_FC_END_CONN | FC_FC_SEQ_INIT |
1087 FC_FC_RETX_SEQ | FC_FC_UNI_TX;
1088 f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX;
1089 hton24(fh->fh_f_ctl, f_ctl);
1090
1091 fc_exch_setup_hdr(ep, fp, f_ctl);
1092 fh->fh_seq_id = rx_fh->fh_seq_id;
1093 fh->fh_seq_cnt = rx_fh->fh_seq_cnt;
1094 fh->fh_parm_offset = htonl(1); /* ack single frame */
1095
1096 fr_sof(fp) = fr_sof(rx_fp);
1097 if (f_ctl & FC_FC_END_SEQ)
1098 fr_eof(fp) = FC_EOF_T;
1099 else
1100 fr_eof(fp) = FC_EOF_N;
1101
Robert Love3a3b42b2009-11-03 11:47:39 -08001102 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001103 }
1104}
1105
Robert Love3a3b42b2009-11-03 11:47:39 -08001106/**
1107 * fc_exch_send_ba_rjt() - Send BLS Reject
1108 * @rx_fp: The frame being rejected
1109 * @reason: The reason the frame is being rejected
1110 * @explan: The explaination for the rejection
1111 *
Robert Love42e9a922008-12-09 15:10:17 -08001112 * This is for rejecting BA_ABTS only.
1113 */
Robert Loveb2ab99c2009-02-27 10:55:50 -08001114static void fc_exch_send_ba_rjt(struct fc_frame *rx_fp,
1115 enum fc_ba_rjt_reason reason,
1116 enum fc_ba_rjt_explan explan)
Robert Love42e9a922008-12-09 15:10:17 -08001117{
1118 struct fc_frame *fp;
1119 struct fc_frame_header *rx_fh;
1120 struct fc_frame_header *fh;
1121 struct fc_ba_rjt *rp;
Robert Love3a3b42b2009-11-03 11:47:39 -08001122 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -08001123 unsigned int f_ctl;
1124
Robert Love3a3b42b2009-11-03 11:47:39 -08001125 lport = fr_dev(rx_fp);
1126 fp = fc_frame_alloc(lport, sizeof(*rp));
Robert Love42e9a922008-12-09 15:10:17 -08001127 if (!fp)
1128 return;
1129 fh = fc_frame_header_get(fp);
1130 rx_fh = fc_frame_header_get(rx_fp);
1131
1132 memset(fh, 0, sizeof(*fh) + sizeof(*rp));
1133
1134 rp = fc_frame_payload_get(fp, sizeof(*rp));
1135 rp->br_reason = reason;
1136 rp->br_explan = explan;
1137
1138 /*
1139 * seq_id, cs_ctl, df_ctl and param/offset are zero.
1140 */
1141 memcpy(fh->fh_s_id, rx_fh->fh_d_id, 3);
1142 memcpy(fh->fh_d_id, rx_fh->fh_s_id, 3);
Joe Eykholt1d490ce2009-08-25 14:04:03 -07001143 fh->fh_ox_id = rx_fh->fh_ox_id;
1144 fh->fh_rx_id = rx_fh->fh_rx_id;
Robert Love42e9a922008-12-09 15:10:17 -08001145 fh->fh_seq_cnt = rx_fh->fh_seq_cnt;
1146 fh->fh_r_ctl = FC_RCTL_BA_RJT;
1147 fh->fh_type = FC_TYPE_BLS;
1148
1149 /*
1150 * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22).
1151 * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT.
1152 * Bits 9-8 are meaningful (retransmitted or unidirectional).
1153 * Last ACK uses bits 7-6 (continue sequence),
1154 * bits 5-4 are meaningful (what kind of ACK to use).
1155 * Always set LAST_SEQ, END_SEQ.
1156 */
1157 f_ctl = ntoh24(rx_fh->fh_f_ctl);
1158 f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX |
1159 FC_FC_END_CONN | FC_FC_SEQ_INIT |
1160 FC_FC_RETX_SEQ | FC_FC_UNI_TX;
1161 f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX;
1162 f_ctl |= FC_FC_LAST_SEQ | FC_FC_END_SEQ;
1163 f_ctl &= ~FC_FC_FIRST_SEQ;
1164 hton24(fh->fh_f_ctl, f_ctl);
1165
1166 fr_sof(fp) = fc_sof_class(fr_sof(rx_fp));
1167 fr_eof(fp) = FC_EOF_T;
1168 if (fc_sof_needs_ack(fr_sof(fp)))
1169 fr_eof(fp) = FC_EOF_N;
1170
Robert Love3a3b42b2009-11-03 11:47:39 -08001171 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001172}
1173
Robert Love3a3b42b2009-11-03 11:47:39 -08001174/**
1175 * fc_exch_recv_abts() - Handle an incoming ABTS
1176 * @ep: The exchange the abort was on
1177 * @rx_fp: The ABTS frame
1178 *
1179 * This would be for target mode usually, but could be due to lost
1180 * FCP transfer ready, confirm or RRQ. We always handle this as an
1181 * exchange abort, ignoring the parameter.
Robert Love42e9a922008-12-09 15:10:17 -08001182 */
1183static void fc_exch_recv_abts(struct fc_exch *ep, struct fc_frame *rx_fp)
1184{
1185 struct fc_frame *fp;
1186 struct fc_ba_acc *ap;
1187 struct fc_frame_header *fh;
1188 struct fc_seq *sp;
1189
1190 if (!ep)
1191 goto reject;
1192 spin_lock_bh(&ep->ex_lock);
1193 if (ep->esb_stat & ESB_ST_COMPLETE) {
1194 spin_unlock_bh(&ep->ex_lock);
1195 goto reject;
1196 }
1197 if (!(ep->esb_stat & ESB_ST_REC_QUAL))
1198 fc_exch_hold(ep); /* hold for REC_QUAL */
1199 ep->esb_stat |= ESB_ST_ABNORMAL | ESB_ST_REC_QUAL;
1200 fc_exch_timer_set_locked(ep, ep->r_a_tov);
1201
1202 fp = fc_frame_alloc(ep->lp, sizeof(*ap));
1203 if (!fp) {
1204 spin_unlock_bh(&ep->ex_lock);
1205 goto free;
1206 }
1207 fh = fc_frame_header_get(fp);
1208 ap = fc_frame_payload_get(fp, sizeof(*ap));
1209 memset(ap, 0, sizeof(*ap));
1210 sp = &ep->seq;
1211 ap->ba_high_seq_cnt = htons(0xffff);
1212 if (sp->ssb_stat & SSB_ST_RESP) {
1213 ap->ba_seq_id = sp->id;
1214 ap->ba_seq_id_val = FC_BA_SEQ_ID_VAL;
1215 ap->ba_high_seq_cnt = fh->fh_seq_cnt;
1216 ap->ba_low_seq_cnt = htons(sp->cnt);
1217 }
Vasu Deva7e84f22009-02-27 10:54:51 -08001218 sp = fc_seq_start_next_locked(sp);
Robert Love42e9a922008-12-09 15:10:17 -08001219 spin_unlock_bh(&ep->ex_lock);
1220 fc_seq_send_last(sp, fp, FC_RCTL_BA_ACC, FC_TYPE_BLS);
1221 fc_frame_free(rx_fp);
1222 return;
1223
1224reject:
1225 fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID);
1226free:
1227 fc_frame_free(rx_fp);
1228}
1229
Robert Love3a3b42b2009-11-03 11:47:39 -08001230/**
1231 * fc_exch_recv_req() - Handler for an incoming request where is other
1232 * end is originating the sequence
1233 * @lport: The local port that received the request
1234 * @mp: The EM that the exchange is on
1235 * @fp: The request frame
Robert Love42e9a922008-12-09 15:10:17 -08001236 */
Robert Love3a3b42b2009-11-03 11:47:39 -08001237static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp,
Robert Love42e9a922008-12-09 15:10:17 -08001238 struct fc_frame *fp)
1239{
1240 struct fc_frame_header *fh = fc_frame_header_get(fp);
1241 struct fc_seq *sp = NULL;
1242 struct fc_exch *ep = NULL;
Robert Love42e9a922008-12-09 15:10:17 -08001243 enum fc_pf_rjt_reason reject;
1244
Chris Leech174e1eb2009-11-03 11:46:14 -08001245 /* We can have the wrong fc_lport at this point with NPIV, which is a
1246 * problem now that we know a new exchange needs to be allocated
1247 */
Robert Love3a3b42b2009-11-03 11:47:39 -08001248 lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id));
1249 if (!lport) {
Chris Leech174e1eb2009-11-03 11:46:14 -08001250 fc_frame_free(fp);
1251 return;
1252 }
1253
Robert Love42e9a922008-12-09 15:10:17 -08001254 fr_seq(fp) = NULL;
Robert Love3a3b42b2009-11-03 11:47:39 -08001255 reject = fc_seq_lookup_recip(lport, mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001256 if (reject == FC_RJT_NONE) {
1257 sp = fr_seq(fp); /* sequence will be held */
1258 ep = fc_seq_exch(sp);
Robert Love42e9a922008-12-09 15:10:17 -08001259 fc_seq_send_ack(sp, fp);
1260
1261 /*
1262 * Call the receive function.
1263 *
1264 * The receive function may allocate a new sequence
1265 * over the old one, so we shouldn't change the
1266 * sequence after this.
1267 *
1268 * The frame will be freed by the receive function.
1269 * If new exch resp handler is valid then call that
1270 * first.
1271 */
1272 if (ep->resp)
1273 ep->resp(sp, fp, ep->arg);
1274 else
Robert Love3a3b42b2009-11-03 11:47:39 -08001275 lport->tt.lport_recv(lport, sp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08001276 fc_exch_release(ep); /* release from lookup */
1277 } else {
Robert Love3a3b42b2009-11-03 11:47:39 -08001278 FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n",
1279 reject);
Robert Love42e9a922008-12-09 15:10:17 -08001280 fc_frame_free(fp);
1281 }
1282}
1283
Robert Love3a3b42b2009-11-03 11:47:39 -08001284/**
1285 * fc_exch_recv_seq_resp() - Handler for an incoming response where the other
1286 * end is the originator of the sequence that is a
1287 * response to our initial exchange
1288 * @mp: The EM that the exchange is on
1289 * @fp: The response frame
Robert Love42e9a922008-12-09 15:10:17 -08001290 */
1291static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp)
1292{
1293 struct fc_frame_header *fh = fc_frame_header_get(fp);
1294 struct fc_seq *sp;
1295 struct fc_exch *ep;
1296 enum fc_sof sof;
1297 u32 f_ctl;
1298 void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg);
1299 void *ex_resp_arg;
1300 int rc;
1301
1302 ep = fc_exch_find(mp, ntohs(fh->fh_ox_id));
1303 if (!ep) {
1304 atomic_inc(&mp->stats.xid_not_found);
1305 goto out;
1306 }
Steve Ma30121d12009-05-06 10:52:29 -07001307 if (ep->esb_stat & ESB_ST_COMPLETE) {
1308 atomic_inc(&mp->stats.xid_not_found);
1309 goto out;
1310 }
Robert Love42e9a922008-12-09 15:10:17 -08001311 if (ep->rxid == FC_XID_UNKNOWN)
1312 ep->rxid = ntohs(fh->fh_rx_id);
1313 if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) {
1314 atomic_inc(&mp->stats.xid_not_found);
1315 goto rel;
1316 }
1317 if (ep->did != ntoh24(fh->fh_s_id) &&
1318 ep->did != FC_FID_FLOGI) {
1319 atomic_inc(&mp->stats.xid_not_found);
1320 goto rel;
1321 }
1322 sof = fr_sof(fp);
Vasu Deva104c842010-03-12 16:08:34 -08001323 sp = &ep->seq;
Joe Eykholtb3667f92010-05-07 15:18:13 -07001324 if (fc_sof_is_init(sof)) {
Robert Love42e9a922008-12-09 15:10:17 -08001325 sp->ssb_stat |= SSB_ST_RESP;
Joe Eykholtb3667f92010-05-07 15:18:13 -07001326 sp->id = fh->fh_seq_id;
1327 } else if (sp->id != fh->fh_seq_id) {
1328 atomic_inc(&mp->stats.seq_not_found);
1329 goto rel;
Robert Love42e9a922008-12-09 15:10:17 -08001330 }
Vasu Deva104c842010-03-12 16:08:34 -08001331
Robert Love42e9a922008-12-09 15:10:17 -08001332 f_ctl = ntoh24(fh->fh_f_ctl);
1333 fr_seq(fp) = sp;
1334 if (f_ctl & FC_FC_SEQ_INIT)
1335 ep->esb_stat |= ESB_ST_SEQ_INIT;
1336
1337 if (fc_sof_needs_ack(sof))
1338 fc_seq_send_ack(sp, fp);
1339 resp = ep->resp;
1340 ex_resp_arg = ep->arg;
1341
1342 if (fh->fh_type != FC_TYPE_FCP && fr_eof(fp) == FC_EOF_T &&
1343 (f_ctl & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) ==
1344 (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) {
1345 spin_lock_bh(&ep->ex_lock);
1346 rc = fc_exch_done_locked(ep);
1347 WARN_ON(fc_seq_exch(sp) != ep);
1348 spin_unlock_bh(&ep->ex_lock);
1349 if (!rc)
Vasu Devb2f00912009-08-25 13:58:53 -07001350 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001351 }
1352
1353 /*
1354 * Call the receive function.
1355 * The sequence is held (has a refcnt) for us,
1356 * but not for the receive function.
1357 *
1358 * The receive function may allocate a new sequence
1359 * over the old one, so we shouldn't change the
1360 * sequence after this.
1361 *
1362 * The frame will be freed by the receive function.
1363 * If new exch resp handler is valid then call that
1364 * first.
1365 */
1366 if (resp)
1367 resp(sp, fp, ex_resp_arg);
1368 else
1369 fc_frame_free(fp);
1370 fc_exch_release(ep);
1371 return;
1372rel:
1373 fc_exch_release(ep);
1374out:
1375 fc_frame_free(fp);
1376}
1377
Robert Love3a3b42b2009-11-03 11:47:39 -08001378/**
1379 * fc_exch_recv_resp() - Handler for a sequence where other end is
1380 * responding to our sequence
1381 * @mp: The EM that the exchange is on
1382 * @fp: The response frame
Robert Love42e9a922008-12-09 15:10:17 -08001383 */
1384static void fc_exch_recv_resp(struct fc_exch_mgr *mp, struct fc_frame *fp)
1385{
1386 struct fc_seq *sp;
1387
1388 sp = fc_seq_lookup_orig(mp, fp); /* doesn't hold sequence */
Robert Loved459b7e2009-07-29 17:05:05 -07001389
1390 if (!sp)
Robert Love42e9a922008-12-09 15:10:17 -08001391 atomic_inc(&mp->stats.xid_not_found);
Robert Loved459b7e2009-07-29 17:05:05 -07001392 else
Robert Love42e9a922008-12-09 15:10:17 -08001393 atomic_inc(&mp->stats.non_bls_resp);
Robert Loved459b7e2009-07-29 17:05:05 -07001394
Robert Love42e9a922008-12-09 15:10:17 -08001395 fc_frame_free(fp);
1396}
1397
Robert Love3a3b42b2009-11-03 11:47:39 -08001398/**
1399 * fc_exch_abts_resp() - Handler for a response to an ABT
1400 * @ep: The exchange that the frame is on
1401 * @fp: The response frame
1402 *
1403 * This response would be to an ABTS cancelling an exchange or sequence.
1404 * The response can be either BA_ACC or BA_RJT
Robert Love42e9a922008-12-09 15:10:17 -08001405 */
1406static void fc_exch_abts_resp(struct fc_exch *ep, struct fc_frame *fp)
1407{
1408 void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg);
1409 void *ex_resp_arg;
1410 struct fc_frame_header *fh;
1411 struct fc_ba_acc *ap;
1412 struct fc_seq *sp;
1413 u16 low;
1414 u16 high;
1415 int rc = 1, has_rec = 0;
1416
1417 fh = fc_frame_header_get(fp);
Robert Love74147052009-06-10 15:31:10 -07001418 FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl,
1419 fc_exch_rctl_name(fh->fh_r_ctl));
Robert Love42e9a922008-12-09 15:10:17 -08001420
1421 if (cancel_delayed_work_sync(&ep->timeout_work))
1422 fc_exch_release(ep); /* release from pending timer hold */
1423
1424 spin_lock_bh(&ep->ex_lock);
1425 switch (fh->fh_r_ctl) {
1426 case FC_RCTL_BA_ACC:
1427 ap = fc_frame_payload_get(fp, sizeof(*ap));
1428 if (!ap)
1429 break;
1430
1431 /*
1432 * Decide whether to establish a Recovery Qualifier.
1433 * We do this if there is a non-empty SEQ_CNT range and
1434 * SEQ_ID is the same as the one we aborted.
1435 */
1436 low = ntohs(ap->ba_low_seq_cnt);
1437 high = ntohs(ap->ba_high_seq_cnt);
1438 if ((ep->esb_stat & ESB_ST_REC_QUAL) == 0 &&
1439 (ap->ba_seq_id_val != FC_BA_SEQ_ID_VAL ||
1440 ap->ba_seq_id == ep->seq_id) && low != high) {
1441 ep->esb_stat |= ESB_ST_REC_QUAL;
1442 fc_exch_hold(ep); /* hold for recovery qualifier */
1443 has_rec = 1;
1444 }
1445 break;
1446 case FC_RCTL_BA_RJT:
1447 break;
1448 default:
1449 break;
1450 }
1451
1452 resp = ep->resp;
1453 ex_resp_arg = ep->arg;
1454
1455 /* do we need to do some other checks here. Can we reuse more of
1456 * fc_exch_recv_seq_resp
1457 */
1458 sp = &ep->seq;
1459 /*
1460 * do we want to check END_SEQ as well as LAST_SEQ here?
1461 */
1462 if (ep->fh_type != FC_TYPE_FCP &&
1463 ntoh24(fh->fh_f_ctl) & FC_FC_LAST_SEQ)
1464 rc = fc_exch_done_locked(ep);
1465 spin_unlock_bh(&ep->ex_lock);
1466 if (!rc)
Vasu Devb2f00912009-08-25 13:58:53 -07001467 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001468
1469 if (resp)
1470 resp(sp, fp, ex_resp_arg);
1471 else
1472 fc_frame_free(fp);
1473
1474 if (has_rec)
1475 fc_exch_timer_set(ep, ep->r_a_tov);
1476
1477}
1478
Robert Love3a3b42b2009-11-03 11:47:39 -08001479/**
1480 * fc_exch_recv_bls() - Handler for a BLS sequence
1481 * @mp: The EM that the exchange is on
1482 * @fp: The request frame
1483 *
1484 * The BLS frame is always a sequence initiated by the remote side.
Robert Love42e9a922008-12-09 15:10:17 -08001485 * We may be either the originator or recipient of the exchange.
1486 */
1487static void fc_exch_recv_bls(struct fc_exch_mgr *mp, struct fc_frame *fp)
1488{
1489 struct fc_frame_header *fh;
1490 struct fc_exch *ep;
1491 u32 f_ctl;
1492
1493 fh = fc_frame_header_get(fp);
1494 f_ctl = ntoh24(fh->fh_f_ctl);
1495 fr_seq(fp) = NULL;
1496
1497 ep = fc_exch_find(mp, (f_ctl & FC_FC_EX_CTX) ?
1498 ntohs(fh->fh_ox_id) : ntohs(fh->fh_rx_id));
1499 if (ep && (f_ctl & FC_FC_SEQ_INIT)) {
1500 spin_lock_bh(&ep->ex_lock);
1501 ep->esb_stat |= ESB_ST_SEQ_INIT;
1502 spin_unlock_bh(&ep->ex_lock);
1503 }
1504 if (f_ctl & FC_FC_SEQ_CTX) {
1505 /*
1506 * A response to a sequence we initiated.
1507 * This should only be ACKs for class 2 or F.
1508 */
1509 switch (fh->fh_r_ctl) {
1510 case FC_RCTL_ACK_1:
1511 case FC_RCTL_ACK_0:
1512 break;
1513 default:
Robert Love74147052009-06-10 15:31:10 -07001514 FC_EXCH_DBG(ep, "BLS rctl %x - %s received",
1515 fh->fh_r_ctl,
1516 fc_exch_rctl_name(fh->fh_r_ctl));
Robert Love42e9a922008-12-09 15:10:17 -08001517 break;
1518 }
1519 fc_frame_free(fp);
1520 } else {
1521 switch (fh->fh_r_ctl) {
1522 case FC_RCTL_BA_RJT:
1523 case FC_RCTL_BA_ACC:
1524 if (ep)
1525 fc_exch_abts_resp(ep, fp);
1526 else
1527 fc_frame_free(fp);
1528 break;
1529 case FC_RCTL_BA_ABTS:
1530 fc_exch_recv_abts(ep, fp);
1531 break;
1532 default: /* ignore junk */
1533 fc_frame_free(fp);
1534 break;
1535 }
1536 }
1537 if (ep)
1538 fc_exch_release(ep); /* release hold taken by fc_exch_find */
1539}
1540
Robert Love3a3b42b2009-11-03 11:47:39 -08001541/**
1542 * fc_seq_ls_acc() - Accept sequence with LS_ACC
1543 * @req_sp: The request sequence
1544 *
Robert Love42e9a922008-12-09 15:10:17 -08001545 * If this fails due to allocation or transmit congestion, assume the
1546 * originator will repeat the sequence.
1547 */
1548static void fc_seq_ls_acc(struct fc_seq *req_sp)
1549{
1550 struct fc_seq *sp;
1551 struct fc_els_ls_acc *acc;
1552 struct fc_frame *fp;
1553
1554 sp = fc_seq_start_next(req_sp);
1555 fp = fc_frame_alloc(fc_seq_exch(sp)->lp, sizeof(*acc));
1556 if (fp) {
1557 acc = fc_frame_payload_get(fp, sizeof(*acc));
1558 memset(acc, 0, sizeof(*acc));
1559 acc->la_cmd = ELS_LS_ACC;
1560 fc_seq_send_last(sp, fp, FC_RCTL_ELS_REP, FC_TYPE_ELS);
1561 }
1562}
1563
Robert Love3a3b42b2009-11-03 11:47:39 -08001564/**
1565 * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT
1566 * @req_sp: The request sequence
1567 * @reason: The reason the sequence is being rejected
1568 * @explan: The explaination for the rejection
1569 *
Robert Love42e9a922008-12-09 15:10:17 -08001570 * If this fails due to allocation or transmit congestion, assume the
1571 * originator will repeat the sequence.
1572 */
1573static void fc_seq_ls_rjt(struct fc_seq *req_sp, enum fc_els_rjt_reason reason,
1574 enum fc_els_rjt_explan explan)
1575{
1576 struct fc_seq *sp;
1577 struct fc_els_ls_rjt *rjt;
1578 struct fc_frame *fp;
1579
1580 sp = fc_seq_start_next(req_sp);
1581 fp = fc_frame_alloc(fc_seq_exch(sp)->lp, sizeof(*rjt));
1582 if (fp) {
1583 rjt = fc_frame_payload_get(fp, sizeof(*rjt));
1584 memset(rjt, 0, sizeof(*rjt));
1585 rjt->er_cmd = ELS_LS_RJT;
1586 rjt->er_reason = reason;
1587 rjt->er_explan = explan;
1588 fc_seq_send_last(sp, fp, FC_RCTL_ELS_REP, FC_TYPE_ELS);
1589 }
1590}
1591
Robert Love3a3b42b2009-11-03 11:47:39 -08001592/**
1593 * fc_exch_reset() - Reset an exchange
1594 * @ep: The exchange to be reset
1595 */
Robert Love42e9a922008-12-09 15:10:17 -08001596static void fc_exch_reset(struct fc_exch *ep)
1597{
1598 struct fc_seq *sp;
1599 void (*resp)(struct fc_seq *, struct fc_frame *, void *);
1600 void *arg;
1601 int rc = 1;
1602
1603 spin_lock_bh(&ep->ex_lock);
1604 ep->state |= FC_EX_RST_CLEANUP;
Robert Love42e9a922008-12-09 15:10:17 -08001605 if (cancel_delayed_work(&ep->timeout_work))
1606 atomic_dec(&ep->ex_refcnt); /* drop hold for timer */
1607 resp = ep->resp;
1608 ep->resp = NULL;
1609 if (ep->esb_stat & ESB_ST_REC_QUAL)
1610 atomic_dec(&ep->ex_refcnt); /* drop hold for rec_qual */
1611 ep->esb_stat &= ~ESB_ST_REC_QUAL;
1612 arg = ep->arg;
1613 sp = &ep->seq;
1614 rc = fc_exch_done_locked(ep);
1615 spin_unlock_bh(&ep->ex_lock);
1616 if (!rc)
Vasu Devb2f00912009-08-25 13:58:53 -07001617 fc_exch_delete(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001618
1619 if (resp)
1620 resp(sp, ERR_PTR(-FC_EX_CLOSED), arg);
1621}
1622
Vasu Devb2f00912009-08-25 13:58:53 -07001623/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001624 * fc_exch_pool_reset() - Reset a per cpu exchange pool
1625 * @lport: The local port that the exchange pool is on
1626 * @pool: The exchange pool to be reset
1627 * @sid: The source ID
1628 * @did: The destination ID
Vasu Devb2f00912009-08-25 13:58:53 -07001629 *
Robert Love3a3b42b2009-11-03 11:47:39 -08001630 * Resets a per cpu exches pool, releasing all of its sequences
1631 * and exchanges. If sid is non-zero then reset only exchanges
1632 * we sourced from the local port's FID. If did is non-zero then
1633 * only reset exchanges destined for the local port's FID.
Robert Love42e9a922008-12-09 15:10:17 -08001634 */
Vasu Devb2f00912009-08-25 13:58:53 -07001635static void fc_exch_pool_reset(struct fc_lport *lport,
1636 struct fc_exch_pool *pool,
1637 u32 sid, u32 did)
Robert Love42e9a922008-12-09 15:10:17 -08001638{
1639 struct fc_exch *ep;
1640 struct fc_exch *next;
Robert Love42e9a922008-12-09 15:10:17 -08001641
Vasu Devb2f00912009-08-25 13:58:53 -07001642 spin_lock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -08001643restart:
Vasu Devb2f00912009-08-25 13:58:53 -07001644 list_for_each_entry_safe(ep, next, &pool->ex_list, ex_list) {
1645 if ((lport == ep->lp) &&
1646 (sid == 0 || sid == ep->sid) &&
1647 (did == 0 || did == ep->did)) {
1648 fc_exch_hold(ep);
1649 spin_unlock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -08001650
Vasu Devb2f00912009-08-25 13:58:53 -07001651 fc_exch_reset(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001652
Vasu Devb2f00912009-08-25 13:58:53 -07001653 fc_exch_release(ep);
1654 spin_lock_bh(&pool->lock);
Robert Love42e9a922008-12-09 15:10:17 -08001655
Vasu Devb2f00912009-08-25 13:58:53 -07001656 /*
1657 * must restart loop incase while lock
1658 * was down multiple eps were released.
1659 */
1660 goto restart;
Robert Love42e9a922008-12-09 15:10:17 -08001661 }
Vasu Devb2f00912009-08-25 13:58:53 -07001662 }
1663 spin_unlock_bh(&pool->lock);
1664}
1665
1666/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001667 * fc_exch_mgr_reset() - Reset all EMs of a local port
1668 * @lport: The local port whose EMs are to be reset
1669 * @sid: The source ID
1670 * @did: The destination ID
Vasu Devb2f00912009-08-25 13:58:53 -07001671 *
Robert Love3a3b42b2009-11-03 11:47:39 -08001672 * Reset all EMs associated with a given local port. Release all
1673 * sequences and exchanges. If sid is non-zero then reset only the
1674 * exchanges sent from the local port's FID. If did is non-zero then
1675 * reset only exchanges destined for the local port's FID.
Vasu Devb2f00912009-08-25 13:58:53 -07001676 */
1677void fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did)
1678{
1679 struct fc_exch_mgr_anchor *ema;
1680 unsigned int cpu;
1681
1682 list_for_each_entry(ema, &lport->ema_list, ema_list) {
1683 for_each_possible_cpu(cpu)
1684 fc_exch_pool_reset(lport,
1685 per_cpu_ptr(ema->mp->pool, cpu),
1686 sid, did);
Robert Love42e9a922008-12-09 15:10:17 -08001687 }
Robert Love42e9a922008-12-09 15:10:17 -08001688}
1689EXPORT_SYMBOL(fc_exch_mgr_reset);
1690
Robert Love3a3b42b2009-11-03 11:47:39 -08001691/**
1692 * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests
1693 * @sp: The sequence the REC is on
1694 * @rfp: The REC frame
1695 *
Robert Love42e9a922008-12-09 15:10:17 -08001696 * Note that the requesting port may be different than the S_ID in the request.
1697 */
1698static void fc_exch_els_rec(struct fc_seq *sp, struct fc_frame *rfp)
1699{
1700 struct fc_frame *fp;
1701 struct fc_exch *ep;
1702 struct fc_exch_mgr *em;
1703 struct fc_els_rec *rp;
1704 struct fc_els_rec_acc *acc;
1705 enum fc_els_rjt_reason reason = ELS_RJT_LOGIC;
1706 enum fc_els_rjt_explan explan;
1707 u32 sid;
1708 u16 rxid;
1709 u16 oxid;
1710
1711 rp = fc_frame_payload_get(rfp, sizeof(*rp));
1712 explan = ELS_EXPL_INV_LEN;
1713 if (!rp)
1714 goto reject;
1715 sid = ntoh24(rp->rec_s_id);
1716 rxid = ntohs(rp->rec_rx_id);
1717 oxid = ntohs(rp->rec_ox_id);
1718
1719 /*
1720 * Currently it's hard to find the local S_ID from the exchange
1721 * manager. This will eventually be fixed, but for now it's easier
1722 * to lookup the subject exchange twice, once as if we were
1723 * the initiator, and then again if we weren't.
1724 */
1725 em = fc_seq_exch(sp)->em;
1726 ep = fc_exch_find(em, oxid);
1727 explan = ELS_EXPL_OXID_RXID;
1728 if (ep && ep->oid == sid) {
1729 if (ep->rxid != FC_XID_UNKNOWN &&
1730 rxid != FC_XID_UNKNOWN &&
1731 ep->rxid != rxid)
1732 goto rel;
1733 } else {
1734 if (ep)
1735 fc_exch_release(ep);
1736 ep = NULL;
1737 if (rxid != FC_XID_UNKNOWN)
1738 ep = fc_exch_find(em, rxid);
1739 if (!ep)
1740 goto reject;
1741 }
1742
1743 fp = fc_frame_alloc(fc_seq_exch(sp)->lp, sizeof(*acc));
1744 if (!fp) {
1745 fc_exch_done(sp);
1746 goto out;
1747 }
Robert Love42e9a922008-12-09 15:10:17 -08001748 acc = fc_frame_payload_get(fp, sizeof(*acc));
1749 memset(acc, 0, sizeof(*acc));
1750 acc->reca_cmd = ELS_LS_ACC;
1751 acc->reca_ox_id = rp->rec_ox_id;
1752 memcpy(acc->reca_ofid, rp->rec_s_id, 3);
1753 acc->reca_rx_id = htons(ep->rxid);
1754 if (ep->sid == ep->oid)
1755 hton24(acc->reca_rfid, ep->did);
1756 else
1757 hton24(acc->reca_rfid, ep->sid);
1758 acc->reca_fc4value = htonl(ep->seq.rec_data);
1759 acc->reca_e_stat = htonl(ep->esb_stat & (ESB_ST_RESP |
1760 ESB_ST_SEQ_INIT |
1761 ESB_ST_COMPLETE));
1762 sp = fc_seq_start_next(sp);
1763 fc_seq_send_last(sp, fp, FC_RCTL_ELS_REP, FC_TYPE_ELS);
1764out:
1765 fc_exch_release(ep);
1766 fc_frame_free(rfp);
1767 return;
1768
1769rel:
1770 fc_exch_release(ep);
1771reject:
1772 fc_seq_ls_rjt(sp, reason, explan);
1773 fc_frame_free(rfp);
1774}
1775
Robert Love3a3b42b2009-11-03 11:47:39 -08001776/**
1777 * fc_exch_rrq_resp() - Handler for RRQ responses
1778 * @sp: The sequence that the RRQ is on
1779 * @fp: The RRQ frame
1780 * @arg: The exchange that the RRQ is on
Robert Love42e9a922008-12-09 15:10:17 -08001781 *
1782 * TODO: fix error handler.
1783 */
1784static void fc_exch_rrq_resp(struct fc_seq *sp, struct fc_frame *fp, void *arg)
1785{
1786 struct fc_exch *aborted_ep = arg;
1787 unsigned int op;
1788
1789 if (IS_ERR(fp)) {
1790 int err = PTR_ERR(fp);
1791
Vasu Dev78342da2009-02-27 10:54:46 -08001792 if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT)
Robert Love42e9a922008-12-09 15:10:17 -08001793 goto cleanup;
Robert Love74147052009-06-10 15:31:10 -07001794 FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, "
1795 "frame error %d\n", err);
Robert Love42e9a922008-12-09 15:10:17 -08001796 return;
1797 }
1798
1799 op = fc_frame_payload_op(fp);
1800 fc_frame_free(fp);
1801
1802 switch (op) {
1803 case ELS_LS_RJT:
Robert Love74147052009-06-10 15:31:10 -07001804 FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ");
Robert Love42e9a922008-12-09 15:10:17 -08001805 /* fall through */
1806 case ELS_LS_ACC:
1807 goto cleanup;
1808 default:
Robert Love74147052009-06-10 15:31:10 -07001809 FC_EXCH_DBG(aborted_ep, "unexpected response op %x "
1810 "for RRQ", op);
Robert Love42e9a922008-12-09 15:10:17 -08001811 return;
1812 }
1813
1814cleanup:
1815 fc_exch_done(&aborted_ep->seq);
1816 /* drop hold for rec qual */
1817 fc_exch_release(aborted_ep);
1818}
1819
Robert Love1a7b75a2009-11-03 11:45:47 -08001820
1821/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001822 * fc_exch_seq_send() - Send a frame using a new exchange and sequence
1823 * @lport: The local port to send the frame on
1824 * @fp: The frame to be sent
1825 * @resp: The response handler for this request
1826 * @destructor: The destructor for the exchange
1827 * @arg: The argument to be passed to the response handler
1828 * @timer_msec: The timeout period for the exchange
1829 *
1830 * The frame pointer with some of the header's fields must be
1831 * filled before calling this routine, those fields are:
1832 *
1833 * - routing control
1834 * - FC port did
1835 * - FC port sid
1836 * - FC header type
1837 * - frame control
1838 * - parameter or relative offset
Robert Love1a7b75a2009-11-03 11:45:47 -08001839 */
Robert Love3a3b42b2009-11-03 11:47:39 -08001840static struct fc_seq *fc_exch_seq_send(struct fc_lport *lport,
Robert Love1a7b75a2009-11-03 11:45:47 -08001841 struct fc_frame *fp,
1842 void (*resp)(struct fc_seq *,
1843 struct fc_frame *fp,
1844 void *arg),
1845 void (*destructor)(struct fc_seq *,
1846 void *),
1847 void *arg, u32 timer_msec)
1848{
1849 struct fc_exch *ep;
1850 struct fc_seq *sp = NULL;
1851 struct fc_frame_header *fh;
1852 int rc = 1;
1853
Robert Love3a3b42b2009-11-03 11:47:39 -08001854 ep = fc_exch_alloc(lport, fp);
Robert Love1a7b75a2009-11-03 11:45:47 -08001855 if (!ep) {
1856 fc_frame_free(fp);
1857 return NULL;
1858 }
1859 ep->esb_stat |= ESB_ST_SEQ_INIT;
1860 fh = fc_frame_header_get(fp);
1861 fc_exch_set_addr(ep, ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id));
1862 ep->resp = resp;
1863 ep->destructor = destructor;
1864 ep->arg = arg;
1865 ep->r_a_tov = FC_DEF_R_A_TOV;
Robert Love3a3b42b2009-11-03 11:47:39 -08001866 ep->lp = lport;
Robert Love1a7b75a2009-11-03 11:45:47 -08001867 sp = &ep->seq;
1868
1869 ep->fh_type = fh->fh_type; /* save for possbile timeout handling */
1870 ep->f_ctl = ntoh24(fh->fh_f_ctl);
1871 fc_exch_setup_hdr(ep, fp, ep->f_ctl);
1872 sp->cnt++;
1873
Vasu Dev10897ae2010-01-21 10:15:44 -08001874 if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD)
Robert Love1a7b75a2009-11-03 11:45:47 -08001875 fc_fcp_ddp_setup(fr_fsp(fp), ep->xid);
1876
Robert Love3a3b42b2009-11-03 11:47:39 -08001877 if (unlikely(lport->tt.frame_send(lport, fp)))
Robert Love1a7b75a2009-11-03 11:45:47 -08001878 goto err;
1879
1880 if (timer_msec)
1881 fc_exch_timer_set_locked(ep, timer_msec);
1882 ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not first seq */
1883
1884 if (ep->f_ctl & FC_FC_SEQ_INIT)
1885 ep->esb_stat &= ~ESB_ST_SEQ_INIT;
1886 spin_unlock_bh(&ep->ex_lock);
1887 return sp;
1888err:
1889 rc = fc_exch_done_locked(ep);
1890 spin_unlock_bh(&ep->ex_lock);
1891 if (!rc)
1892 fc_exch_delete(ep);
1893 return NULL;
1894}
1895
Robert Love3a3b42b2009-11-03 11:47:39 -08001896/**
1897 * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command
1898 * @ep: The exchange to send the RRQ on
1899 *
Robert Love42e9a922008-12-09 15:10:17 -08001900 * This tells the remote port to stop blocking the use of
1901 * the exchange and the seq_cnt range.
1902 */
1903static void fc_exch_rrq(struct fc_exch *ep)
1904{
Robert Love3a3b42b2009-11-03 11:47:39 -08001905 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -08001906 struct fc_els_rrq *rrq;
1907 struct fc_frame *fp;
Robert Love42e9a922008-12-09 15:10:17 -08001908 u32 did;
1909
Robert Love3a3b42b2009-11-03 11:47:39 -08001910 lport = ep->lp;
Robert Love42e9a922008-12-09 15:10:17 -08001911
Robert Love3a3b42b2009-11-03 11:47:39 -08001912 fp = fc_frame_alloc(lport, sizeof(*rrq));
Robert Love42e9a922008-12-09 15:10:17 -08001913 if (!fp)
Vasu Deva0cc1ec2009-07-28 17:33:37 -07001914 goto retry;
1915
Robert Love42e9a922008-12-09 15:10:17 -08001916 rrq = fc_frame_payload_get(fp, sizeof(*rrq));
1917 memset(rrq, 0, sizeof(*rrq));
1918 rrq->rrq_cmd = ELS_RRQ;
1919 hton24(rrq->rrq_s_id, ep->sid);
1920 rrq->rrq_ox_id = htons(ep->oxid);
1921 rrq->rrq_rx_id = htons(ep->rxid);
1922
1923 did = ep->did;
1924 if (ep->esb_stat & ESB_ST_RESP)
1925 did = ep->sid;
1926
1927 fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, did,
Robert Love7b2787e2010-05-07 15:18:41 -07001928 lport->port_id, FC_TYPE_ELS,
Robert Love42e9a922008-12-09 15:10:17 -08001929 FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0);
1930
Robert Love3a3b42b2009-11-03 11:47:39 -08001931 if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep,
1932 lport->e_d_tov))
Vasu Deva0cc1ec2009-07-28 17:33:37 -07001933 return;
1934
1935retry:
1936 spin_lock_bh(&ep->ex_lock);
1937 if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) {
1938 spin_unlock_bh(&ep->ex_lock);
1939 /* drop hold for rec qual */
1940 fc_exch_release(ep);
Robert Love42e9a922008-12-09 15:10:17 -08001941 return;
1942 }
Vasu Deva0cc1ec2009-07-28 17:33:37 -07001943 ep->esb_stat |= ESB_ST_REC_QUAL;
1944 fc_exch_timer_set_locked(ep, ep->r_a_tov);
1945 spin_unlock_bh(&ep->ex_lock);
Robert Love42e9a922008-12-09 15:10:17 -08001946}
1947
1948
Robert Love3a3b42b2009-11-03 11:47:39 -08001949/**
1950 * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests
1951 * @sp: The sequence that the RRQ is on
1952 * @fp: The RRQ frame
Robert Love42e9a922008-12-09 15:10:17 -08001953 */
1954static void fc_exch_els_rrq(struct fc_seq *sp, struct fc_frame *fp)
1955{
Vasu Dev3f127ad2009-10-21 16:27:33 -07001956 struct fc_exch *ep = NULL; /* request or subject exchange */
Robert Love42e9a922008-12-09 15:10:17 -08001957 struct fc_els_rrq *rp;
1958 u32 sid;
1959 u16 xid;
1960 enum fc_els_rjt_explan explan;
1961
1962 rp = fc_frame_payload_get(fp, sizeof(*rp));
1963 explan = ELS_EXPL_INV_LEN;
1964 if (!rp)
1965 goto reject;
1966
1967 /*
1968 * lookup subject exchange.
1969 */
1970 ep = fc_seq_exch(sp);
1971 sid = ntoh24(rp->rrq_s_id); /* subject source */
1972 xid = ep->did == sid ? ntohs(rp->rrq_ox_id) : ntohs(rp->rrq_rx_id);
1973 ep = fc_exch_find(ep->em, xid);
1974
1975 explan = ELS_EXPL_OXID_RXID;
1976 if (!ep)
1977 goto reject;
1978 spin_lock_bh(&ep->ex_lock);
1979 if (ep->oxid != ntohs(rp->rrq_ox_id))
1980 goto unlock_reject;
1981 if (ep->rxid != ntohs(rp->rrq_rx_id) &&
1982 ep->rxid != FC_XID_UNKNOWN)
1983 goto unlock_reject;
1984 explan = ELS_EXPL_SID;
1985 if (ep->sid != sid)
1986 goto unlock_reject;
1987
1988 /*
1989 * Clear Recovery Qualifier state, and cancel timer if complete.
1990 */
1991 if (ep->esb_stat & ESB_ST_REC_QUAL) {
1992 ep->esb_stat &= ~ESB_ST_REC_QUAL;
1993 atomic_dec(&ep->ex_refcnt); /* drop hold for rec qual */
1994 }
1995 if (ep->esb_stat & ESB_ST_COMPLETE) {
1996 if (cancel_delayed_work(&ep->timeout_work))
1997 atomic_dec(&ep->ex_refcnt); /* drop timer hold */
1998 }
1999
2000 spin_unlock_bh(&ep->ex_lock);
2001
2002 /*
2003 * Send LS_ACC.
2004 */
2005 fc_seq_ls_acc(sp);
Vasu Dev3f127ad2009-10-21 16:27:33 -07002006 goto out;
Robert Love42e9a922008-12-09 15:10:17 -08002007
2008unlock_reject:
2009 spin_unlock_bh(&ep->ex_lock);
Robert Love42e9a922008-12-09 15:10:17 -08002010reject:
2011 fc_seq_ls_rjt(sp, ELS_RJT_LOGIC, explan);
Vasu Dev3f127ad2009-10-21 16:27:33 -07002012out:
Robert Love42e9a922008-12-09 15:10:17 -08002013 fc_frame_free(fp);
Vasu Dev3f127ad2009-10-21 16:27:33 -07002014 if (ep)
2015 fc_exch_release(ep); /* drop hold from fc_exch_find */
Robert Love42e9a922008-12-09 15:10:17 -08002016}
2017
Robert Love3a3b42b2009-11-03 11:47:39 -08002018/**
2019 * fc_exch_mgr_add() - Add an exchange manager to a local port's list of EMs
2020 * @lport: The local port to add the exchange manager to
2021 * @mp: The exchange manager to be added to the local port
2022 * @match: The match routine that indicates when this EM should be used
2023 */
Vasu Dev96316092009-07-29 17:05:00 -07002024struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport,
2025 struct fc_exch_mgr *mp,
2026 bool (*match)(struct fc_frame *))
2027{
2028 struct fc_exch_mgr_anchor *ema;
2029
2030 ema = kmalloc(sizeof(*ema), GFP_ATOMIC);
2031 if (!ema)
2032 return ema;
2033
2034 ema->mp = mp;
2035 ema->match = match;
2036 /* add EM anchor to EM anchors list */
2037 list_add_tail(&ema->ema_list, &lport->ema_list);
2038 kref_get(&mp->kref);
2039 return ema;
2040}
2041EXPORT_SYMBOL(fc_exch_mgr_add);
2042
Robert Love3a3b42b2009-11-03 11:47:39 -08002043/**
2044 * fc_exch_mgr_destroy() - Destroy an exchange manager
2045 * @kref: The reference to the EM to be destroyed
2046 */
Vasu Dev96316092009-07-29 17:05:00 -07002047static void fc_exch_mgr_destroy(struct kref *kref)
2048{
2049 struct fc_exch_mgr *mp = container_of(kref, struct fc_exch_mgr, kref);
2050
Vasu Dev96316092009-07-29 17:05:00 -07002051 mempool_destroy(mp->ep_pool);
Vasu Deve4bc50b2009-08-25 13:58:47 -07002052 free_percpu(mp->pool);
Vasu Dev96316092009-07-29 17:05:00 -07002053 kfree(mp);
2054}
2055
Robert Love3a3b42b2009-11-03 11:47:39 -08002056/**
2057 * fc_exch_mgr_del() - Delete an EM from a local port's list
2058 * @ema: The exchange manager anchor identifying the EM to be deleted
2059 */
Vasu Dev96316092009-07-29 17:05:00 -07002060void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema)
2061{
2062 /* remove EM anchor from EM anchors list */
2063 list_del(&ema->ema_list);
2064 kref_put(&ema->mp->kref, fc_exch_mgr_destroy);
2065 kfree(ema);
2066}
2067EXPORT_SYMBOL(fc_exch_mgr_del);
2068
Chris Leech174e1eb2009-11-03 11:46:14 -08002069/**
Robert Love3a3b42b2009-11-03 11:47:39 -08002070 * fc_exch_mgr_list_clone() - Share all exchange manager objects
2071 * @src: Source lport to clone exchange managers from
2072 * @dst: New lport that takes references to all the exchange managers
Chris Leech174e1eb2009-11-03 11:46:14 -08002073 */
2074int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst)
2075{
2076 struct fc_exch_mgr_anchor *ema, *tmp;
2077
2078 list_for_each_entry(ema, &src->ema_list, ema_list) {
2079 if (!fc_exch_mgr_add(dst, ema->mp, ema->match))
2080 goto err;
2081 }
2082 return 0;
2083err:
2084 list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list)
2085 fc_exch_mgr_del(ema);
2086 return -ENOMEM;
2087}
2088
Robert Love3a3b42b2009-11-03 11:47:39 -08002089/**
2090 * fc_exch_mgr_alloc() - Allocate an exchange manager
2091 * @lport: The local port that the new EM will be associated with
2092 * @class: The default FC class for new exchanges
2093 * @min_xid: The minimum XID for exchanges from the new EM
2094 * @max_xid: The maximum XID for exchanges from the new EM
2095 * @match: The match routine for the new EM
2096 */
2097struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport,
Robert Love42e9a922008-12-09 15:10:17 -08002098 enum fc_class class,
Vasu Dev52ff8782009-07-29 17:05:10 -07002099 u16 min_xid, u16 max_xid,
2100 bool (*match)(struct fc_frame *))
Robert Love42e9a922008-12-09 15:10:17 -08002101{
2102 struct fc_exch_mgr *mp;
Vasu Deve4bc50b2009-08-25 13:58:47 -07002103 u16 pool_exch_range;
2104 size_t pool_size;
2105 unsigned int cpu;
2106 struct fc_exch_pool *pool;
Robert Love42e9a922008-12-09 15:10:17 -08002107
Vasu Deve4bc50b2009-08-25 13:58:47 -07002108 if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN ||
2109 (min_xid & fc_cpu_mask) != 0) {
Robert Love3a3b42b2009-11-03 11:47:39 -08002110 FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n",
Robert Love74147052009-06-10 15:31:10 -07002111 min_xid, max_xid);
Robert Love42e9a922008-12-09 15:10:17 -08002112 return NULL;
2113 }
2114
2115 /*
Vasu Devb2f00912009-08-25 13:58:53 -07002116 * allocate memory for EM
Robert Love42e9a922008-12-09 15:10:17 -08002117 */
Vasu Devb2f00912009-08-25 13:58:53 -07002118 mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC);
Robert Love42e9a922008-12-09 15:10:17 -08002119 if (!mp)
2120 return NULL;
2121
2122 mp->class = class;
Robert Love42e9a922008-12-09 15:10:17 -08002123 /* adjust em exch xid range for offload */
2124 mp->min_xid = min_xid;
2125 mp->max_xid = max_xid;
Robert Love42e9a922008-12-09 15:10:17 -08002126
2127 mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep);
2128 if (!mp->ep_pool)
2129 goto free_mp;
2130
Vasu Deve4bc50b2009-08-25 13:58:47 -07002131 /*
2132 * Setup per cpu exch pool with entire exchange id range equally
2133 * divided across all cpus. The exch pointers array memory is
2134 * allocated for exch range per pool.
2135 */
2136 pool_exch_range = (mp->max_xid - mp->min_xid + 1) / (fc_cpu_mask + 1);
2137 mp->pool_max_index = pool_exch_range - 1;
2138
2139 /*
2140 * Allocate and initialize per cpu exch pool
2141 */
2142 pool_size = sizeof(*pool) + pool_exch_range * sizeof(struct fc_exch *);
2143 mp->pool = __alloc_percpu(pool_size, __alignof__(struct fc_exch_pool));
2144 if (!mp->pool)
2145 goto free_mempool;
2146 for_each_possible_cpu(cpu) {
2147 pool = per_cpu_ptr(mp->pool, cpu);
2148 spin_lock_init(&pool->lock);
2149 INIT_LIST_HEAD(&pool->ex_list);
2150 }
2151
Vasu Dev52ff8782009-07-29 17:05:10 -07002152 kref_init(&mp->kref);
Robert Love3a3b42b2009-11-03 11:47:39 -08002153 if (!fc_exch_mgr_add(lport, mp, match)) {
Vasu Deve4bc50b2009-08-25 13:58:47 -07002154 free_percpu(mp->pool);
2155 goto free_mempool;
Vasu Dev52ff8782009-07-29 17:05:10 -07002156 }
2157
2158 /*
2159 * Above kref_init() sets mp->kref to 1 and then
2160 * call to fc_exch_mgr_add incremented mp->kref again,
2161 * so adjust that extra increment.
2162 */
2163 kref_put(&mp->kref, fc_exch_mgr_destroy);
Robert Love42e9a922008-12-09 15:10:17 -08002164 return mp;
2165
Vasu Deve4bc50b2009-08-25 13:58:47 -07002166free_mempool:
2167 mempool_destroy(mp->ep_pool);
Robert Love42e9a922008-12-09 15:10:17 -08002168free_mp:
2169 kfree(mp);
2170 return NULL;
2171}
2172EXPORT_SYMBOL(fc_exch_mgr_alloc);
2173
Robert Love3a3b42b2009-11-03 11:47:39 -08002174/**
2175 * fc_exch_mgr_free() - Free all exchange managers on a local port
2176 * @lport: The local port whose EMs are to be freed
2177 */
Vasu Dev52ff8782009-07-29 17:05:10 -07002178void fc_exch_mgr_free(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -08002179{
Vasu Dev52ff8782009-07-29 17:05:10 -07002180 struct fc_exch_mgr_anchor *ema, *next;
2181
Vasu Dev4ae1e192009-11-03 11:50:10 -08002182 flush_workqueue(fc_exch_workqueue);
Vasu Dev52ff8782009-07-29 17:05:10 -07002183 list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list)
2184 fc_exch_mgr_del(ema);
Robert Love42e9a922008-12-09 15:10:17 -08002185}
2186EXPORT_SYMBOL(fc_exch_mgr_free);
2187
Robert Love3a3b42b2009-11-03 11:47:39 -08002188/**
2189 * fc_exch_recv() - Handler for received frames
2190 * @lport: The local port the frame was received on
2191 * @fp: The received frame
Robert Love42e9a922008-12-09 15:10:17 -08002192 */
Robert Love3a3b42b2009-11-03 11:47:39 -08002193void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -08002194{
2195 struct fc_frame_header *fh = fc_frame_header_get(fp);
Vasu Dev52ff8782009-07-29 17:05:10 -07002196 struct fc_exch_mgr_anchor *ema;
2197 u32 f_ctl, found = 0;
2198 u16 oxid;
Robert Love42e9a922008-12-09 15:10:17 -08002199
2200 /* lport lock ? */
Robert Love3a3b42b2009-11-03 11:47:39 -08002201 if (!lport || lport->state == LPORT_ST_DISABLED) {
2202 FC_LPORT_DBG(lport, "Receiving frames for an lport that "
Robert Love74147052009-06-10 15:31:10 -07002203 "has not been initialized correctly\n");
Robert Love42e9a922008-12-09 15:10:17 -08002204 fc_frame_free(fp);
2205 return;
2206 }
2207
Vasu Dev52ff8782009-07-29 17:05:10 -07002208 f_ctl = ntoh24(fh->fh_f_ctl);
2209 oxid = ntohs(fh->fh_ox_id);
2210 if (f_ctl & FC_FC_EX_CTX) {
Robert Love3a3b42b2009-11-03 11:47:39 -08002211 list_for_each_entry(ema, &lport->ema_list, ema_list) {
Vasu Dev52ff8782009-07-29 17:05:10 -07002212 if ((oxid >= ema->mp->min_xid) &&
2213 (oxid <= ema->mp->max_xid)) {
2214 found = 1;
2215 break;
2216 }
2217 }
2218
2219 if (!found) {
Robert Love3a3b42b2009-11-03 11:47:39 -08002220 FC_LPORT_DBG(lport, "Received response for out "
Vasu Dev52ff8782009-07-29 17:05:10 -07002221 "of range oxid:%hx\n", oxid);
2222 fc_frame_free(fp);
2223 return;
2224 }
2225 } else
Robert Love3a3b42b2009-11-03 11:47:39 -08002226 ema = list_entry(lport->ema_list.prev, typeof(*ema), ema_list);
Vasu Dev52ff8782009-07-29 17:05:10 -07002227
Robert Love42e9a922008-12-09 15:10:17 -08002228 /*
2229 * If frame is marked invalid, just drop it.
2230 */
Robert Love42e9a922008-12-09 15:10:17 -08002231 switch (fr_eof(fp)) {
2232 case FC_EOF_T:
2233 if (f_ctl & FC_FC_END_SEQ)
2234 skb_trim(fp_skb(fp), fr_len(fp) - FC_FC_FILL(f_ctl));
2235 /* fall through */
2236 case FC_EOF_N:
2237 if (fh->fh_type == FC_TYPE_BLS)
Vasu Dev52ff8782009-07-29 17:05:10 -07002238 fc_exch_recv_bls(ema->mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08002239 else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) ==
2240 FC_FC_EX_CTX)
Vasu Dev52ff8782009-07-29 17:05:10 -07002241 fc_exch_recv_seq_resp(ema->mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08002242 else if (f_ctl & FC_FC_SEQ_CTX)
Vasu Dev52ff8782009-07-29 17:05:10 -07002243 fc_exch_recv_resp(ema->mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08002244 else
Robert Love3a3b42b2009-11-03 11:47:39 -08002245 fc_exch_recv_req(lport, ema->mp, fp);
Robert Love42e9a922008-12-09 15:10:17 -08002246 break;
2247 default:
Robert Love3a3b42b2009-11-03 11:47:39 -08002248 FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)",
2249 fr_eof(fp));
Robert Love42e9a922008-12-09 15:10:17 -08002250 fc_frame_free(fp);
Robert Love42e9a922008-12-09 15:10:17 -08002251 }
2252}
2253EXPORT_SYMBOL(fc_exch_recv);
2254
Robert Love3a3b42b2009-11-03 11:47:39 -08002255/**
2256 * fc_exch_init() - Initialize the exchange layer for a local port
2257 * @lport: The local port to initialize the exchange layer for
2258 */
2259int fc_exch_init(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -08002260{
Robert Love3a3b42b2009-11-03 11:47:39 -08002261 if (!lport->tt.seq_start_next)
2262 lport->tt.seq_start_next = fc_seq_start_next;
Robert Love42e9a922008-12-09 15:10:17 -08002263
Robert Love3a3b42b2009-11-03 11:47:39 -08002264 if (!lport->tt.exch_seq_send)
2265 lport->tt.exch_seq_send = fc_exch_seq_send;
Robert Love42e9a922008-12-09 15:10:17 -08002266
Robert Love3a3b42b2009-11-03 11:47:39 -08002267 if (!lport->tt.seq_send)
2268 lport->tt.seq_send = fc_seq_send;
Robert Love42e9a922008-12-09 15:10:17 -08002269
Robert Love3a3b42b2009-11-03 11:47:39 -08002270 if (!lport->tt.seq_els_rsp_send)
2271 lport->tt.seq_els_rsp_send = fc_seq_els_rsp_send;
Robert Love42e9a922008-12-09 15:10:17 -08002272
Robert Love3a3b42b2009-11-03 11:47:39 -08002273 if (!lport->tt.exch_done)
2274 lport->tt.exch_done = fc_exch_done;
Robert Love42e9a922008-12-09 15:10:17 -08002275
Robert Love3a3b42b2009-11-03 11:47:39 -08002276 if (!lport->tt.exch_mgr_reset)
2277 lport->tt.exch_mgr_reset = fc_exch_mgr_reset;
Robert Love42e9a922008-12-09 15:10:17 -08002278
Robert Love3a3b42b2009-11-03 11:47:39 -08002279 if (!lport->tt.seq_exch_abort)
2280 lport->tt.seq_exch_abort = fc_seq_exch_abort;
Robert Love42e9a922008-12-09 15:10:17 -08002281
Vasu Dev89f19a52009-10-21 16:27:28 -07002282 return 0;
2283}
2284EXPORT_SYMBOL(fc_exch_init);
2285
2286/**
2287 * fc_setup_exch_mgr() - Setup an exchange manager
2288 */
2289int fc_setup_exch_mgr()
2290{
2291 fc_em_cachep = kmem_cache_create("libfc_em", sizeof(struct fc_exch),
2292 0, SLAB_HWCACHE_ALIGN, NULL);
2293 if (!fc_em_cachep)
2294 return -ENOMEM;
2295
Vasu Deve4bc50b2009-08-25 13:58:47 -07002296 /*
2297 * Initialize fc_cpu_mask and fc_cpu_order. The
2298 * fc_cpu_mask is set for nr_cpu_ids rounded up
2299 * to order of 2's * power and order is stored
2300 * in fc_cpu_order as this is later required in
2301 * mapping between an exch id and exch array index
2302 * in per cpu exch pool.
2303 *
2304 * This round up is required to align fc_cpu_mask
2305 * to exchange id's lower bits such that all incoming
2306 * frames of an exchange gets delivered to the same
2307 * cpu on which exchange originated by simple bitwise
2308 * AND operation between fc_cpu_mask and exchange id.
2309 */
2310 fc_cpu_mask = 1;
2311 fc_cpu_order = 0;
2312 while (fc_cpu_mask < nr_cpu_ids) {
2313 fc_cpu_mask <<= 1;
2314 fc_cpu_order++;
2315 }
2316 fc_cpu_mask--;
2317
Vasu Dev4ae1e192009-11-03 11:50:10 -08002318 fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue");
2319 if (!fc_exch_workqueue)
2320 return -ENOMEM;
Robert Love42e9a922008-12-09 15:10:17 -08002321 return 0;
2322}
Robert Love42e9a922008-12-09 15:10:17 -08002323
Robert Love3a3b42b2009-11-03 11:47:39 -08002324/**
2325 * fc_destroy_exch_mgr() - Destroy an exchange manager
2326 */
2327void fc_destroy_exch_mgr()
Robert Love42e9a922008-12-09 15:10:17 -08002328{
Vasu Dev4ae1e192009-11-03 11:50:10 -08002329 destroy_workqueue(fc_exch_workqueue);
Robert Love42e9a922008-12-09 15:10:17 -08002330 kmem_cache_destroy(fc_em_cachep);
2331}