xref: /linux/drivers/scsi/libfc/fc_exch.c (revision a61127c2130236168321cc76c5a58e15c00ad154)
1*a61127c2SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
242e9a92fSRobert Love /*
342e9a92fSRobert Love  * Copyright(c) 2007 Intel Corporation. All rights reserved.
442e9a92fSRobert Love  * Copyright(c) 2008 Red Hat, Inc.  All rights reserved.
542e9a92fSRobert Love  * Copyright(c) 2008 Mike Christie
642e9a92fSRobert Love  *
742e9a92fSRobert Love  * Maintained at www.Open-FCoE.org
842e9a92fSRobert Love  */
942e9a92fSRobert Love 
1042e9a92fSRobert Love /*
1142e9a92fSRobert Love  * Fibre Channel exchange and sequence handling.
1242e9a92fSRobert Love  */
1342e9a92fSRobert Love 
1442e9a92fSRobert Love #include <linux/timer.h>
155a0e3ad6STejun Heo #include <linux/slab.h>
1642e9a92fSRobert Love #include <linux/err.h>
1709703660SPaul Gortmaker #include <linux/export.h>
18a84ea8c7SBart Van Assche #include <linux/log2.h>
1942e9a92fSRobert Love 
2042e9a92fSRobert Love #include <scsi/fc/fc_fc2.h>
2142e9a92fSRobert Love 
2242e9a92fSRobert Love #include <scsi/libfc.h>
2342e9a92fSRobert Love #include <scsi/fc_encode.h>
2442e9a92fSRobert Love 
258866a5d9SRobert Love #include "fc_libfc.h"
268866a5d9SRobert Love 
27e4bc50beSVasu Dev u16	fc_cpu_mask;		/* cpu mask for possible cpus */
28e4bc50beSVasu Dev EXPORT_SYMBOL(fc_cpu_mask);
29e4bc50beSVasu Dev static u16	fc_cpu_order;	/* 2's power to represent total possible cpus */
3042e9a92fSRobert Love static struct kmem_cache *fc_em_cachep;	       /* cache for exchanges */
3155204909SRandy Dunlap static struct workqueue_struct *fc_exch_workqueue;
3242e9a92fSRobert Love 
3342e9a92fSRobert Love /*
3442e9a92fSRobert Love  * Structure and function definitions for managing Fibre Channel Exchanges
3542e9a92fSRobert Love  * and Sequences.
3642e9a92fSRobert Love  *
3742e9a92fSRobert Love  * The three primary structures used here are fc_exch_mgr, fc_exch, and fc_seq.
3842e9a92fSRobert Love  *
3942e9a92fSRobert Love  * fc_exch_mgr holds the exchange state for an N port
4042e9a92fSRobert Love  *
4142e9a92fSRobert Love  * fc_exch holds state for one exchange and links to its active sequence.
4242e9a92fSRobert Love  *
4342e9a92fSRobert Love  * fc_seq holds the state for an individual sequence.
4442e9a92fSRobert Love  */
4542e9a92fSRobert Love 
463a3b42bfSRobert Love /**
473a3b42bfSRobert Love  * struct fc_exch_pool - Per cpu exchange pool
483a3b42bfSRobert Love  * @next_index:	  Next possible free exchange index
493a3b42bfSRobert Love  * @total_exches: Total allocated exchanges
503a3b42bfSRobert Love  * @lock:	  Exch pool lock
513a3b42bfSRobert Love  * @ex_list:	  List of exchanges
52e4bc50beSVasu Dev  *
53e4bc50beSVasu Dev  * This structure manages per cpu exchanges in array of exchange pointers.
54e4bc50beSVasu Dev  * This array is allocated followed by struct fc_exch_pool memory for
55e4bc50beSVasu Dev  * assigned range of exchanges to per cpu pool.
56e4bc50beSVasu Dev  */
57e4bc50beSVasu Dev struct fc_exch_pool {
58e17b4af7SVasu Dev 	spinlock_t	 lock;
59e17b4af7SVasu Dev 	struct list_head ex_list;
603a3b42bfSRobert Love 	u16		 next_index;
613a3b42bfSRobert Love 	u16		 total_exches;
622034c19cSHillf Danton 
632034c19cSHillf Danton 	/* two cache of free slot in exch array */
642034c19cSHillf Danton 	u16		 left;
652034c19cSHillf Danton 	u16		 right;
66e17b4af7SVasu Dev } ____cacheline_aligned_in_smp;
67e4bc50beSVasu Dev 
683a3b42bfSRobert Love /**
693a3b42bfSRobert Love  * struct fc_exch_mgr - The Exchange Manager (EM).
703a3b42bfSRobert Love  * @class:	    Default class for new sequences
713a3b42bfSRobert Love  * @kref:	    Reference counter
723a3b42bfSRobert Love  * @min_xid:	    Minimum exchange ID
733a3b42bfSRobert Love  * @max_xid:	    Maximum exchange ID
743a3b42bfSRobert Love  * @ep_pool:	    Reserved exchange pointers
753a3b42bfSRobert Love  * @pool_max_index: Max exch array index in exch pool
763a3b42bfSRobert Love  * @pool:	    Per cpu exch pool
773a3b42bfSRobert Love  * @stats:	    Statistics structure
7842e9a92fSRobert Love  *
7942e9a92fSRobert Love  * This structure is the center for creating exchanges and sequences.
8042e9a92fSRobert Love  * It manages the allocation of exchange IDs.
8142e9a92fSRobert Love  */
8242e9a92fSRobert Love struct fc_exch_mgr {
83c6b21c93SBart Van Assche 	struct fc_exch_pool __percpu *pool;
84e17b4af7SVasu Dev 	mempool_t	*ep_pool;
859ca1e182SHannes Reinecke 	struct fc_lport	*lport;
863a3b42bfSRobert Love 	enum fc_class	class;
873a3b42bfSRobert Love 	struct kref	kref;
883a3b42bfSRobert Love 	u16		min_xid;
893a3b42bfSRobert Love 	u16		max_xid;
903a3b42bfSRobert Love 	u16		pool_max_index;
9142e9a92fSRobert Love 
9242e9a92fSRobert Love 	struct {
9342e9a92fSRobert Love 		atomic_t no_free_exch;
9442e9a92fSRobert Love 		atomic_t no_free_exch_xid;
9542e9a92fSRobert Love 		atomic_t xid_not_found;
9642e9a92fSRobert Love 		atomic_t xid_busy;
9742e9a92fSRobert Love 		atomic_t seq_not_found;
9842e9a92fSRobert Love 		atomic_t non_bls_resp;
9942e9a92fSRobert Love 	} stats;
10042e9a92fSRobert Love };
10142e9a92fSRobert Love 
1023a3b42bfSRobert Love /**
1033a3b42bfSRobert Love  * struct fc_exch_mgr_anchor - primary structure for list of EMs
1043a3b42bfSRobert Love  * @ema_list: Exchange Manager Anchor list
1053a3b42bfSRobert Love  * @mp:	      Exchange Manager associated with this anchor
1063a3b42bfSRobert Love  * @match:    Routine to determine if this anchor's EM should be used
1073a3b42bfSRobert Love  *
1083a3b42bfSRobert Love  * When walking the list of anchors the match routine will be called
1093a3b42bfSRobert Love  * for each anchor to determine if that EM should be used. The last
1103a3b42bfSRobert Love  * anchor in the list will always match to handle any exchanges not
1113a3b42bfSRobert Love  * handled by other EMs. The non-default EMs would be added to the
1121bd49b48SVasu Dev  * anchor list by HW that provides offloads.
1133a3b42bfSRobert Love  */
11496316099SVasu Dev struct fc_exch_mgr_anchor {
11596316099SVasu Dev 	struct list_head ema_list;
11696316099SVasu Dev 	struct fc_exch_mgr *mp;
11796316099SVasu Dev 	bool (*match)(struct fc_frame *);
11896316099SVasu Dev };
11996316099SVasu Dev 
12042e9a92fSRobert Love static void fc_exch_rrq(struct fc_exch *);
12192261156SJoe Eykholt static void fc_seq_ls_acc(struct fc_frame *);
12292261156SJoe Eykholt static void fc_seq_ls_rjt(struct fc_frame *, enum fc_els_rjt_reason,
12342e9a92fSRobert Love 			  enum fc_els_rjt_explan);
12492261156SJoe Eykholt static void fc_exch_els_rec(struct fc_frame *);
12592261156SJoe Eykholt static void fc_exch_els_rrq(struct fc_frame *);
12642e9a92fSRobert Love 
12742e9a92fSRobert Love /*
12842e9a92fSRobert Love  * Internal implementation notes.
12942e9a92fSRobert Love  *
13042e9a92fSRobert Love  * The exchange manager is one by default in libfc but LLD may choose
13142e9a92fSRobert Love  * to have one per CPU. The sequence manager is one per exchange manager
13242e9a92fSRobert Love  * and currently never separated.
13342e9a92fSRobert Love  *
13442e9a92fSRobert Love  * Section 9.8 in FC-FS-2 specifies:  "The SEQ_ID is a one-byte field
13542e9a92fSRobert Love  * assigned by the Sequence Initiator that shall be unique for a specific
13642e9a92fSRobert Love  * D_ID and S_ID pair while the Sequence is open."   Note that it isn't
13742e9a92fSRobert Love  * qualified by exchange ID, which one might think it would be.
13842e9a92fSRobert Love  * In practice this limits the number of open sequences and exchanges to 256
13942e9a92fSRobert Love  * per session.	 For most targets we could treat this limit as per exchange.
14042e9a92fSRobert Love  *
14142e9a92fSRobert Love  * The exchange and its sequence are freed when the last sequence is received.
14242e9a92fSRobert Love  * It's possible for the remote port to leave an exchange open without
14342e9a92fSRobert Love  * sending any sequences.
14442e9a92fSRobert Love  *
14542e9a92fSRobert Love  * Notes on reference counts:
14642e9a92fSRobert Love  *
14742e9a92fSRobert Love  * Exchanges are reference counted and exchange gets freed when the reference
14842e9a92fSRobert Love  * count becomes zero.
14942e9a92fSRobert Love  *
15042e9a92fSRobert Love  * Timeouts:
15142e9a92fSRobert Love  * Sequences are timed out for E_D_TOV and R_A_TOV.
15242e9a92fSRobert Love  *
15342e9a92fSRobert Love  * Sequence event handling:
15442e9a92fSRobert Love  *
15542e9a92fSRobert Love  * The following events may occur on initiator sequences:
15642e9a92fSRobert Love  *
15742e9a92fSRobert Love  *	Send.
15842e9a92fSRobert Love  *	    For now, the whole thing is sent.
15942e9a92fSRobert Love  *	Receive ACK
16042e9a92fSRobert Love  *	    This applies only to class F.
16142e9a92fSRobert Love  *	    The sequence is marked complete.
16242e9a92fSRobert Love  *	ULP completion.
16342e9a92fSRobert Love  *	    The upper layer calls fc_exch_done() when done
16442e9a92fSRobert Love  *	    with exchange and sequence tuple.
16542e9a92fSRobert Love  *	RX-inferred completion.
16642e9a92fSRobert Love  *	    When we receive the next sequence on the same exchange, we can
16742e9a92fSRobert Love  *	    retire the previous sequence ID.  (XXX not implemented).
16842e9a92fSRobert Love  *	Timeout.
16942e9a92fSRobert Love  *	    R_A_TOV frees the sequence ID.  If we're waiting for ACK,
17042e9a92fSRobert Love  *	    E_D_TOV causes abort and calls upper layer response handler
17142e9a92fSRobert Love  *	    with FC_EX_TIMEOUT error.
17242e9a92fSRobert Love  *	Receive RJT
17342e9a92fSRobert Love  *	    XXX defer.
17442e9a92fSRobert Love  *	Send ABTS
17542e9a92fSRobert Love  *	    On timeout.
17642e9a92fSRobert Love  *
17742e9a92fSRobert Love  * The following events may occur on recipient sequences:
17842e9a92fSRobert Love  *
17942e9a92fSRobert Love  *	Receive
18042e9a92fSRobert Love  *	    Allocate sequence for first frame received.
18142e9a92fSRobert Love  *	    Hold during receive handler.
18242e9a92fSRobert Love  *	    Release when final frame received.
18342e9a92fSRobert Love  *	    Keep status of last N of these for the ELS RES command.  XXX TBD.
18442e9a92fSRobert Love  *	Receive ABTS
18542e9a92fSRobert Love  *	    Deallocate sequence
18642e9a92fSRobert Love  *	Send RJT
18742e9a92fSRobert Love  *	    Deallocate
18842e9a92fSRobert Love  *
18942e9a92fSRobert Love  * For now, we neglect conditions where only part of a sequence was
19042e9a92fSRobert Love  * received or transmitted, or where out-of-order receipt is detected.
19142e9a92fSRobert Love  */
19242e9a92fSRobert Love 
19342e9a92fSRobert Love /*
19442e9a92fSRobert Love  * Locking notes:
19542e9a92fSRobert Love  *
19642e9a92fSRobert Love  * The EM code run in a per-CPU worker thread.
19742e9a92fSRobert Love  *
19842e9a92fSRobert Love  * To protect against concurrency between a worker thread code and timers,
19942e9a92fSRobert Love  * sequence allocation and deallocation must be locked.
20042e9a92fSRobert Love  *  - exchange refcnt can be done atomicly without locks.
20142e9a92fSRobert Love  *  - sequence allocation must be locked by exch lock.
202b2f0091fSVasu Dev  *  - If the EM pool lock and ex_lock must be taken at the same time, then the
203b2f0091fSVasu Dev  *    EM pool lock must be taken before the ex_lock.
20442e9a92fSRobert Love  */
20542e9a92fSRobert Love 
20642e9a92fSRobert Love /*
20742e9a92fSRobert Love  * opcode names for debugging.
20842e9a92fSRobert Love  */
20942e9a92fSRobert Love static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT;
21042e9a92fSRobert Love 
2113a3b42bfSRobert Love /**
2123a3b42bfSRobert Love  * fc_exch_name_lookup() - Lookup name by opcode
2133a3b42bfSRobert Love  * @op:	       Opcode to be looked up
2143a3b42bfSRobert Love  * @table:     Opcode/name table
2153a3b42bfSRobert Love  * @max_index: Index not to be exceeded
2163a3b42bfSRobert Love  *
2173a3b42bfSRobert Love  * This routine is used to determine a human-readable string identifying
2183a3b42bfSRobert Love  * a R_CTL opcode.
2193a3b42bfSRobert Love  */
22042e9a92fSRobert Love static inline const char *fc_exch_name_lookup(unsigned int op, char **table,
22142e9a92fSRobert Love 					      unsigned int max_index)
22242e9a92fSRobert Love {
22342e9a92fSRobert Love 	const char *name = NULL;
22442e9a92fSRobert Love 
22542e9a92fSRobert Love 	if (op < max_index)
22642e9a92fSRobert Love 		name = table[op];
22742e9a92fSRobert Love 	if (!name)
22842e9a92fSRobert Love 		name = "unknown";
22942e9a92fSRobert Love 	return name;
23042e9a92fSRobert Love }
23142e9a92fSRobert Love 
2323a3b42bfSRobert Love /**
2333a3b42bfSRobert Love  * fc_exch_rctl_name() - Wrapper routine for fc_exch_name_lookup()
2343a3b42bfSRobert Love  * @op: The opcode to be looked up
2353a3b42bfSRobert Love  */
23642e9a92fSRobert Love static const char *fc_exch_rctl_name(unsigned int op)
23742e9a92fSRobert Love {
23842e9a92fSRobert Love 	return fc_exch_name_lookup(op, fc_exch_rctl_names,
2397156fffaSKulikov Vasiliy 				   ARRAY_SIZE(fc_exch_rctl_names));
24042e9a92fSRobert Love }
24142e9a92fSRobert Love 
2423a3b42bfSRobert Love /**
2433a3b42bfSRobert Love  * fc_exch_hold() - Increment an exchange's reference count
2443a3b42bfSRobert Love  * @ep: Echange to be held
24542e9a92fSRobert Love  */
2463a3b42bfSRobert Love static inline void fc_exch_hold(struct fc_exch *ep)
24742e9a92fSRobert Love {
24842e9a92fSRobert Love 	atomic_inc(&ep->ex_refcnt);
24942e9a92fSRobert Love }
25042e9a92fSRobert Love 
2513a3b42bfSRobert Love /**
2523a3b42bfSRobert Love  * fc_exch_setup_hdr() - Initialize a FC header by initializing some fields
2533a3b42bfSRobert Love  *			 and determine SOF and EOF.
2543a3b42bfSRobert Love  * @ep:	   The exchange to that will use the header
2553a3b42bfSRobert Love  * @fp:	   The frame whose header is to be modified
2563a3b42bfSRobert Love  * @f_ctl: F_CTL bits that will be used for the frame header
2573a3b42bfSRobert Love  *
2583a3b42bfSRobert Love  * The fields initialized by this routine are: fh_ox_id, fh_rx_id,
2593a3b42bfSRobert Love  * fh_seq_id, fh_seq_cnt and the SOF and EOF.
26042e9a92fSRobert Love  */
26142e9a92fSRobert Love static void fc_exch_setup_hdr(struct fc_exch *ep, struct fc_frame *fp,
26242e9a92fSRobert Love 			      u32 f_ctl)
26342e9a92fSRobert Love {
26442e9a92fSRobert Love 	struct fc_frame_header *fh = fc_frame_header_get(fp);
26542e9a92fSRobert Love 	u16 fill;
26642e9a92fSRobert Love 
26742e9a92fSRobert Love 	fr_sof(fp) = ep->class;
26842e9a92fSRobert Love 	if (ep->seq.cnt)
26942e9a92fSRobert Love 		fr_sof(fp) = fc_sof_normal(ep->class);
27042e9a92fSRobert Love 
27142e9a92fSRobert Love 	if (f_ctl & FC_FC_END_SEQ) {
27242e9a92fSRobert Love 		fr_eof(fp) = FC_EOF_T;
27342e9a92fSRobert Love 		if (fc_sof_needs_ack(ep->class))
27442e9a92fSRobert Love 			fr_eof(fp) = FC_EOF_N;
27542e9a92fSRobert Love 		/*
2763a3b42bfSRobert Love 		 * From F_CTL.
27742e9a92fSRobert Love 		 * The number of fill bytes to make the length a 4-byte
27842e9a92fSRobert Love 		 * multiple is the low order 2-bits of the f_ctl.
27942e9a92fSRobert Love 		 * The fill itself will have been cleared by the frame
28042e9a92fSRobert Love 		 * allocation.
28142e9a92fSRobert Love 		 * After this, the length will be even, as expected by
28242e9a92fSRobert Love 		 * the transport.
28342e9a92fSRobert Love 		 */
28442e9a92fSRobert Love 		fill = fr_len(fp) & 3;
28542e9a92fSRobert Love 		if (fill) {
28642e9a92fSRobert Love 			fill = 4 - fill;
28742e9a92fSRobert Love 			/* TODO, this may be a problem with fragmented skb */
28842e9a92fSRobert Love 			skb_put(fp_skb(fp), fill);
28942e9a92fSRobert Love 			hton24(fh->fh_f_ctl, f_ctl | fill);
29042e9a92fSRobert Love 		}
29142e9a92fSRobert Love 	} else {
29242e9a92fSRobert Love 		WARN_ON(fr_len(fp) % 4 != 0);	/* no pad to non last frame */
29342e9a92fSRobert Love 		fr_eof(fp) = FC_EOF_N;
29442e9a92fSRobert Love 	}
29542e9a92fSRobert Love 
296c1d45424SBart Van Assche 	/* Initialize remaining fh fields from fc_fill_fc_hdr */
29742e9a92fSRobert Love 	fh->fh_ox_id = htons(ep->oxid);
29842e9a92fSRobert Love 	fh->fh_rx_id = htons(ep->rxid);
29942e9a92fSRobert Love 	fh->fh_seq_id = ep->seq.id;
30042e9a92fSRobert Love 	fh->fh_seq_cnt = htons(ep->seq.cnt);
30142e9a92fSRobert Love }
30242e9a92fSRobert Love 
3033a3b42bfSRobert Love /**
3043a3b42bfSRobert Love  * fc_exch_release() - Decrement an exchange's reference count
3053a3b42bfSRobert Love  * @ep: Exchange to be released
3063a3b42bfSRobert Love  *
3073a3b42bfSRobert Love  * If the reference count reaches zero and the exchange is complete,
3083a3b42bfSRobert Love  * it is freed.
30942e9a92fSRobert Love  */
31042e9a92fSRobert Love static void fc_exch_release(struct fc_exch *ep)
31142e9a92fSRobert Love {
31242e9a92fSRobert Love 	struct fc_exch_mgr *mp;
31342e9a92fSRobert Love 
31442e9a92fSRobert Love 	if (atomic_dec_and_test(&ep->ex_refcnt)) {
31542e9a92fSRobert Love 		mp = ep->em;
31642e9a92fSRobert Love 		if (ep->destructor)
31742e9a92fSRobert Love 			ep->destructor(&ep->seq, ep->arg);
318aa6cd29bSJulia Lawall 		WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE));
31942e9a92fSRobert Love 		mempool_free(ep, mp->ep_pool);
32042e9a92fSRobert Love 	}
32142e9a92fSRobert Love }
32242e9a92fSRobert Love 
3233a3b42bfSRobert Love /**
324b29a4f30SVasu Dev  * fc_exch_timer_cancel() - cancel exch timer
325b29a4f30SVasu Dev  * @ep:		The exchange whose timer to be canceled
326b29a4f30SVasu Dev  */
327b29a4f30SVasu Dev static inline void fc_exch_timer_cancel(struct fc_exch *ep)
328b29a4f30SVasu Dev {
329b29a4f30SVasu Dev 	if (cancel_delayed_work(&ep->timeout_work)) {
330b29a4f30SVasu Dev 		FC_EXCH_DBG(ep, "Exchange timer canceled\n");
331b29a4f30SVasu Dev 		atomic_dec(&ep->ex_refcnt); /* drop hold for timer */
332b29a4f30SVasu Dev 	}
333b29a4f30SVasu Dev }
334b29a4f30SVasu Dev 
335b29a4f30SVasu Dev /**
336b29a4f30SVasu Dev  * fc_exch_timer_set_locked() - Start a timer for an exchange w/ the
337b29a4f30SVasu Dev  *				the exchange lock held
338b29a4f30SVasu Dev  * @ep:		The exchange whose timer will start
339b29a4f30SVasu Dev  * @timer_msec: The timeout period
340b29a4f30SVasu Dev  *
341b29a4f30SVasu Dev  * Used for upper level protocols to time out the exchange.
342b29a4f30SVasu Dev  * The timer is cancelled when it fires or when the exchange completes.
343b29a4f30SVasu Dev  */
344b29a4f30SVasu Dev static inline void fc_exch_timer_set_locked(struct fc_exch *ep,
345b29a4f30SVasu Dev 					    unsigned int timer_msec)
346b29a4f30SVasu Dev {
347b29a4f30SVasu Dev 	if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE))
348b29a4f30SVasu Dev 		return;
349b29a4f30SVasu Dev 
350b29a4f30SVasu Dev 	FC_EXCH_DBG(ep, "Exchange timer armed : %d msecs\n", timer_msec);
351b29a4f30SVasu Dev 
352b29a4f30SVasu Dev 	fc_exch_hold(ep);		/* hold for timer */
353b8678865SBart Van Assche 	if (!queue_delayed_work(fc_exch_workqueue, &ep->timeout_work,
35457d3ec7eSHannes Reinecke 				msecs_to_jiffies(timer_msec))) {
35557d3ec7eSHannes Reinecke 		FC_EXCH_DBG(ep, "Exchange already queued\n");
356b8678865SBart Van Assche 		fc_exch_release(ep);
357b29a4f30SVasu Dev 	}
35857d3ec7eSHannes Reinecke }
359b29a4f30SVasu Dev 
360b29a4f30SVasu Dev /**
361b29a4f30SVasu Dev  * fc_exch_timer_set() - Lock the exchange and set the timer
362b29a4f30SVasu Dev  * @ep:		The exchange whose timer will start
363b29a4f30SVasu Dev  * @timer_msec: The timeout period
364b29a4f30SVasu Dev  */
365b29a4f30SVasu Dev static void fc_exch_timer_set(struct fc_exch *ep, unsigned int timer_msec)
366b29a4f30SVasu Dev {
367b29a4f30SVasu Dev 	spin_lock_bh(&ep->ex_lock);
368b29a4f30SVasu Dev 	fc_exch_timer_set_locked(ep, timer_msec);
369b29a4f30SVasu Dev 	spin_unlock_bh(&ep->ex_lock);
370b29a4f30SVasu Dev }
371b29a4f30SVasu Dev 
372b29a4f30SVasu Dev /**
3733a3b42bfSRobert Love  * fc_exch_done_locked() - Complete an exchange with the exchange lock held
3743a3b42bfSRobert Love  * @ep: The exchange that is complete
3757030fd62SBart Van Assche  *
3767030fd62SBart Van Assche  * Note: May sleep if invoked from outside a response handler.
3773a3b42bfSRobert Love  */
37842e9a92fSRobert Love static int fc_exch_done_locked(struct fc_exch *ep)
37942e9a92fSRobert Love {
38042e9a92fSRobert Love 	int rc = 1;
38142e9a92fSRobert Love 
38242e9a92fSRobert Love 	/*
38342e9a92fSRobert Love 	 * We must check for completion in case there are two threads
38442e9a92fSRobert Love 	 * tyring to complete this. But the rrq code will reuse the
38542e9a92fSRobert Love 	 * ep, and in that case we only clear the resp and set it as
38642e9a92fSRobert Love 	 * complete, so it can be reused by the timer to send the rrq.
38742e9a92fSRobert Love 	 */
38842e9a92fSRobert Love 	if (ep->state & FC_EX_DONE)
38942e9a92fSRobert Love 		return rc;
39042e9a92fSRobert Love 	ep->esb_stat |= ESB_ST_COMPLETE;
39142e9a92fSRobert Love 
39242e9a92fSRobert Love 	if (!(ep->esb_stat & ESB_ST_REC_QUAL)) {
39342e9a92fSRobert Love 		ep->state |= FC_EX_DONE;
394b29a4f30SVasu Dev 		fc_exch_timer_cancel(ep);
39542e9a92fSRobert Love 		rc = 0;
39642e9a92fSRobert Love 	}
39742e9a92fSRobert Love 	return rc;
39842e9a92fSRobert Love }
39942e9a92fSRobert Love 
4009ca1e182SHannes Reinecke static struct fc_exch fc_quarantine_exch;
4019ca1e182SHannes Reinecke 
4023a3b42bfSRobert Love /**
4033a3b42bfSRobert Love  * fc_exch_ptr_get() - Return an exchange from an exchange pool
4043a3b42bfSRobert Love  * @pool:  Exchange Pool to get an exchange from
4053a3b42bfSRobert Love  * @index: Index of the exchange within the pool
4063a3b42bfSRobert Love  *
4073a3b42bfSRobert Love  * Use the index to get an exchange from within an exchange pool. exches
4083a3b42bfSRobert Love  * will point to an array of exchange pointers. The index will select
4093a3b42bfSRobert Love  * the exchange within the array.
4103a3b42bfSRobert Love  */
411e4bc50beSVasu Dev static inline struct fc_exch *fc_exch_ptr_get(struct fc_exch_pool *pool,
412e4bc50beSVasu Dev 					      u16 index)
413e4bc50beSVasu Dev {
414e4bc50beSVasu Dev 	struct fc_exch **exches = (struct fc_exch **)(pool + 1);
415e4bc50beSVasu Dev 	return exches[index];
416e4bc50beSVasu Dev }
417e4bc50beSVasu Dev 
4183a3b42bfSRobert Love /**
4193a3b42bfSRobert Love  * fc_exch_ptr_set() - Assign an exchange to a slot in an exchange pool
4203a3b42bfSRobert Love  * @pool:  The pool to assign the exchange to
4213a3b42bfSRobert Love  * @index: The index in the pool where the exchange will be assigned
4223a3b42bfSRobert Love  * @ep:	   The exchange to assign to the pool
4233a3b42bfSRobert Love  */
424e4bc50beSVasu Dev static inline void fc_exch_ptr_set(struct fc_exch_pool *pool, u16 index,
425e4bc50beSVasu Dev 				   struct fc_exch *ep)
426e4bc50beSVasu Dev {
427e4bc50beSVasu Dev 	((struct fc_exch **)(pool + 1))[index] = ep;
428e4bc50beSVasu Dev }
429e4bc50beSVasu Dev 
4303a3b42bfSRobert Love /**
4313a3b42bfSRobert Love  * fc_exch_delete() - Delete an exchange
4323a3b42bfSRobert Love  * @ep: The exchange to be deleted
4333a3b42bfSRobert Love  */
434b2f0091fSVasu Dev static void fc_exch_delete(struct fc_exch *ep)
43542e9a92fSRobert Love {
436b2f0091fSVasu Dev 	struct fc_exch_pool *pool;
4372034c19cSHillf Danton 	u16 index;
43842e9a92fSRobert Love 
439b2f0091fSVasu Dev 	pool = ep->pool;
440b2f0091fSVasu Dev 	spin_lock_bh(&pool->lock);
441b2f0091fSVasu Dev 	WARN_ON(pool->total_exches <= 0);
442b2f0091fSVasu Dev 	pool->total_exches--;
4432034c19cSHillf Danton 
4442034c19cSHillf Danton 	/* update cache of free slot */
4452034c19cSHillf Danton 	index = (ep->xid - ep->em->min_xid) >> fc_cpu_order;
4469ca1e182SHannes Reinecke 	if (!(ep->state & FC_EX_QUARANTINE)) {
4472034c19cSHillf Danton 		if (pool->left == FC_XID_UNKNOWN)
4482034c19cSHillf Danton 			pool->left = index;
4492034c19cSHillf Danton 		else if (pool->right == FC_XID_UNKNOWN)
4502034c19cSHillf Danton 			pool->right = index;
4512034c19cSHillf Danton 		else
4522034c19cSHillf Danton 			pool->next_index = index;
4532034c19cSHillf Danton 		fc_exch_ptr_set(pool, index, NULL);
4549ca1e182SHannes Reinecke 	} else {
4559ca1e182SHannes Reinecke 		fc_exch_ptr_set(pool, index, &fc_quarantine_exch);
4569ca1e182SHannes Reinecke 	}
45742e9a92fSRobert Love 	list_del(&ep->ex_list);
458b2f0091fSVasu Dev 	spin_unlock_bh(&pool->lock);
45942e9a92fSRobert Love 	fc_exch_release(ep);	/* drop hold for exch in mp */
46042e9a92fSRobert Love }
46142e9a92fSRobert Love 
462fb00cc23SNeil Horman static int fc_seq_send_locked(struct fc_lport *lport, struct fc_seq *sp,
4631a7b75aeSRobert Love 			      struct fc_frame *fp)
4641a7b75aeSRobert Love {
4651a7b75aeSRobert Love 	struct fc_exch *ep;
4661a7b75aeSRobert Love 	struct fc_frame_header *fh = fc_frame_header_get(fp);
467cae7b6ddSBart Van Assche 	int error = -ENXIO;
4681a7b75aeSRobert Love 	u32 f_ctl;
46914fc315fSVasu Dev 	u8 fh_type = fh->fh_type;
4701a7b75aeSRobert Love 
4711a7b75aeSRobert Love 	ep = fc_seq_exch(sp);
472cae7b6ddSBart Van Assche 
473cae7b6ddSBart Van Assche 	if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL)) {
474cae7b6ddSBart Van Assche 		fc_frame_free(fp);
475cae7b6ddSBart Van Assche 		goto out;
476cae7b6ddSBart Van Assche 	}
477cae7b6ddSBart Van Assche 
478fb00cc23SNeil Horman 	WARN_ON(!(ep->esb_stat & ESB_ST_SEQ_INIT));
4791a7b75aeSRobert Love 
4801a7b75aeSRobert Love 	f_ctl = ntoh24(fh->fh_f_ctl);
4811a7b75aeSRobert Love 	fc_exch_setup_hdr(ep, fp, f_ctl);
482f60e12e9SJoe Eykholt 	fr_encaps(fp) = ep->encaps;
4831a7b75aeSRobert Love 
4841a7b75aeSRobert Love 	/*
4851a7b75aeSRobert Love 	 * update sequence count if this frame is carrying
4861a7b75aeSRobert Love 	 * multiple FC frames when sequence offload is enabled
4871a7b75aeSRobert Love 	 * by LLD.
4881a7b75aeSRobert Love 	 */
4891a7b75aeSRobert Love 	if (fr_max_payload(fp))
4901a7b75aeSRobert Love 		sp->cnt += DIV_ROUND_UP((fr_len(fp) - sizeof(*fh)),
4911a7b75aeSRobert Love 					fr_max_payload(fp));
4921a7b75aeSRobert Love 	else
4931a7b75aeSRobert Love 		sp->cnt++;
4941a7b75aeSRobert Love 
4951a7b75aeSRobert Love 	/*
4961a7b75aeSRobert Love 	 * Send the frame.
4971a7b75aeSRobert Love 	 */
4983a3b42bfSRobert Love 	error = lport->tt.frame_send(lport, fp);
4991a7b75aeSRobert Love 
50014fc315fSVasu Dev 	if (fh_type == FC_TYPE_BLS)
501fb00cc23SNeil Horman 		goto out;
50277a2b73aSVasu Dev 
5031a7b75aeSRobert Love 	/*
5041a7b75aeSRobert Love 	 * Update the exchange and sequence flags,
5051a7b75aeSRobert Love 	 * assuming all frames for the sequence have been sent.
5061a7b75aeSRobert Love 	 * We can only be called to send once for each sequence.
5071a7b75aeSRobert Love 	 */
5081a7b75aeSRobert Love 	ep->f_ctl = f_ctl & ~FC_FC_FIRST_SEQ;	/* not first seq */
509cc3593d3SJoe Eykholt 	if (f_ctl & FC_FC_SEQ_INIT)
5101a7b75aeSRobert Love 		ep->esb_stat &= ~ESB_ST_SEQ_INIT;
511fb00cc23SNeil Horman out:
512fb00cc23SNeil Horman 	return error;
513fb00cc23SNeil Horman }
514fb00cc23SNeil Horman 
515fb00cc23SNeil Horman /**
516fb00cc23SNeil Horman  * fc_seq_send() - Send a frame using existing sequence/exchange pair
517fb00cc23SNeil Horman  * @lport: The local port that the exchange will be sent on
518fb00cc23SNeil Horman  * @sp:	   The sequence to be sent
519fb00cc23SNeil Horman  * @fp:	   The frame to be sent on the exchange
520cae7b6ddSBart Van Assche  *
521cae7b6ddSBart Van Assche  * Note: The frame will be freed either by a direct call to fc_frame_free(fp)
522cae7b6ddSBart Van Assche  * or indirectly by calling libfc_function_template.frame_send().
523fb00cc23SNeil Horman  */
5240cac937dSHannes Reinecke int fc_seq_send(struct fc_lport *lport, struct fc_seq *sp, struct fc_frame *fp)
525fb00cc23SNeil Horman {
526fb00cc23SNeil Horman 	struct fc_exch *ep;
527fb00cc23SNeil Horman 	int error;
528fb00cc23SNeil Horman 	ep = fc_seq_exch(sp);
529fb00cc23SNeil Horman 	spin_lock_bh(&ep->ex_lock);
530fb00cc23SNeil Horman 	error = fc_seq_send_locked(lport, sp, fp);
5311a7b75aeSRobert Love 	spin_unlock_bh(&ep->ex_lock);
5321a7b75aeSRobert Love 	return error;
5331a7b75aeSRobert Love }
5340cac937dSHannes Reinecke EXPORT_SYMBOL(fc_seq_send);
5351a7b75aeSRobert Love 
5361a7b75aeSRobert Love /**
5373a3b42bfSRobert Love  * fc_seq_alloc() - Allocate a sequence for a given exchange
5383a3b42bfSRobert Love  * @ep:	    The exchange to allocate a new sequence for
5393a3b42bfSRobert Love  * @seq_id: The sequence ID to be used
5401a7b75aeSRobert Love  *
5411a7b75aeSRobert Love  * We don't support multiple originated sequences on the same exchange.
5421a7b75aeSRobert Love  * By implication, any previously originated sequence on this exchange
5431a7b75aeSRobert Love  * is complete, and we reallocate the same sequence.
5441a7b75aeSRobert Love  */
5451a7b75aeSRobert Love static struct fc_seq *fc_seq_alloc(struct fc_exch *ep, u8 seq_id)
5461a7b75aeSRobert Love {
5471a7b75aeSRobert Love 	struct fc_seq *sp;
5481a7b75aeSRobert Love 
5491a7b75aeSRobert Love 	sp = &ep->seq;
5501a7b75aeSRobert Love 	sp->ssb_stat = 0;
5511a7b75aeSRobert Love 	sp->cnt = 0;
5521a7b75aeSRobert Love 	sp->id = seq_id;
5531a7b75aeSRobert Love 	return sp;
5541a7b75aeSRobert Love }
5551a7b75aeSRobert Love 
5563a3b42bfSRobert Love /**
5573a3b42bfSRobert Love  * fc_seq_start_next_locked() - Allocate a new sequence on the same
5583a3b42bfSRobert Love  *				exchange as the supplied sequence
5593a3b42bfSRobert Love  * @sp: The sequence/exchange to get a new sequence for
5603a3b42bfSRobert Love  */
5611a7b75aeSRobert Love static struct fc_seq *fc_seq_start_next_locked(struct fc_seq *sp)
5621a7b75aeSRobert Love {
5631a7b75aeSRobert Love 	struct fc_exch *ep = fc_seq_exch(sp);
5641a7b75aeSRobert Love 
5651a7b75aeSRobert Love 	sp = fc_seq_alloc(ep, ep->seq_id++);
5661a7b75aeSRobert Love 	FC_EXCH_DBG(ep, "f_ctl %6x seq %2x\n",
5671a7b75aeSRobert Love 		    ep->f_ctl, sp->id);
5681a7b75aeSRobert Love 	return sp;
5691a7b75aeSRobert Love }
5701a7b75aeSRobert Love 
5711a7b75aeSRobert Love /**
5723a3b42bfSRobert Love  * fc_seq_start_next() - Lock the exchange and get a new sequence
5733a3b42bfSRobert Love  *			 for a given sequence/exchange pair
5743a3b42bfSRobert Love  * @sp: The sequence/exchange to get a new exchange for
5751a7b75aeSRobert Love  */
576c6865b30SHannes Reinecke struct fc_seq *fc_seq_start_next(struct fc_seq *sp)
5771a7b75aeSRobert Love {
5781a7b75aeSRobert Love 	struct fc_exch *ep = fc_seq_exch(sp);
5791a7b75aeSRobert Love 
5801a7b75aeSRobert Love 	spin_lock_bh(&ep->ex_lock);
5811a7b75aeSRobert Love 	sp = fc_seq_start_next_locked(sp);
5821a7b75aeSRobert Love 	spin_unlock_bh(&ep->ex_lock);
5831a7b75aeSRobert Love 
5841a7b75aeSRobert Love 	return sp;
5851a7b75aeSRobert Love }
586c6865b30SHannes Reinecke EXPORT_SYMBOL(fc_seq_start_next);
5871a7b75aeSRobert Love 
5881a5c2d7eSJoe Eykholt /*
5891a5c2d7eSJoe Eykholt  * Set the response handler for the exchange associated with a sequence.
5907030fd62SBart Van Assche  *
5917030fd62SBart Van Assche  * Note: May sleep if invoked from outside a response handler.
5921a5c2d7eSJoe Eykholt  */
593f1d61e6eSHannes Reinecke void fc_seq_set_resp(struct fc_seq *sp,
594f1d61e6eSHannes Reinecke 		     void (*resp)(struct fc_seq *, struct fc_frame *, void *),
5951a5c2d7eSJoe Eykholt 		     void *arg)
5961a5c2d7eSJoe Eykholt {
5971a5c2d7eSJoe Eykholt 	struct fc_exch *ep = fc_seq_exch(sp);
5987030fd62SBart Van Assche 	DEFINE_WAIT(wait);
5991a5c2d7eSJoe Eykholt 
6001a5c2d7eSJoe Eykholt 	spin_lock_bh(&ep->ex_lock);
6017030fd62SBart Van Assche 	while (ep->resp_active && ep->resp_task != current) {
6027030fd62SBart Van Assche 		prepare_to_wait(&ep->resp_wq, &wait, TASK_UNINTERRUPTIBLE);
6037030fd62SBart Van Assche 		spin_unlock_bh(&ep->ex_lock);
6047030fd62SBart Van Assche 
6057030fd62SBart Van Assche 		schedule();
6067030fd62SBart Van Assche 
6077030fd62SBart Van Assche 		spin_lock_bh(&ep->ex_lock);
6087030fd62SBart Van Assche 	}
6097030fd62SBart Van Assche 	finish_wait(&ep->resp_wq, &wait);
6101a5c2d7eSJoe Eykholt 	ep->resp = resp;
6111a5c2d7eSJoe Eykholt 	ep->arg = arg;
6121a5c2d7eSJoe Eykholt 	spin_unlock_bh(&ep->ex_lock);
6131a5c2d7eSJoe Eykholt }
614f1d61e6eSHannes Reinecke EXPORT_SYMBOL(fc_seq_set_resp);
6151a5c2d7eSJoe Eykholt 
6161a7b75aeSRobert Love /**
61777a2b73aSVasu Dev  * fc_exch_abort_locked() - Abort an exchange
61877a2b73aSVasu Dev  * @ep:	The exchange to be aborted
6193a3b42bfSRobert Love  * @timer_msec: The period of time to wait before aborting
6203a3b42bfSRobert Love  *
6210ebaed17SHannes Reinecke  * Abort an exchange and sequence. Generally called because of a
6220ebaed17SHannes Reinecke  * exchange timeout or an abort from the upper layer.
6230ebaed17SHannes Reinecke  *
6240ebaed17SHannes Reinecke  * A timer_msec can be specified for abort timeout, if non-zero
6250ebaed17SHannes Reinecke  * timer_msec value is specified then exchange resp handler
6260ebaed17SHannes Reinecke  * will be called with timeout error if no response to abort.
6270ebaed17SHannes Reinecke  *
62877a2b73aSVasu Dev  * Locking notes:  Called with exch lock held
62977a2b73aSVasu Dev  *
63077a2b73aSVasu Dev  * Return value: 0 on success else error code
6311a7b75aeSRobert Love  */
63277a2b73aSVasu Dev static int fc_exch_abort_locked(struct fc_exch *ep,
6331a7b75aeSRobert Love 				unsigned int timer_msec)
63442e9a92fSRobert Love {
63542e9a92fSRobert Love 	struct fc_seq *sp;
63642e9a92fSRobert Love 	struct fc_frame *fp;
63742e9a92fSRobert Love 	int error;
63842e9a92fSRobert Love 
63957d3ec7eSHannes Reinecke 	FC_EXCH_DBG(ep, "exch: abort, time %d msecs\n", timer_msec);
64042e9a92fSRobert Love 	if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL) ||
64157d3ec7eSHannes Reinecke 	    ep->state & (FC_EX_DONE | FC_EX_RST_CLEANUP)) {
64257d3ec7eSHannes Reinecke 		FC_EXCH_DBG(ep, "exch: already completed esb %x state %x\n",
64357d3ec7eSHannes Reinecke 			    ep->esb_stat, ep->state);
64442e9a92fSRobert Love 		return -ENXIO;
64557d3ec7eSHannes Reinecke 	}
64642e9a92fSRobert Love 
64742e9a92fSRobert Love 	/*
64842e9a92fSRobert Love 	 * Send the abort on a new sequence if possible.
64942e9a92fSRobert Love 	 */
65042e9a92fSRobert Love 	sp = fc_seq_start_next_locked(&ep->seq);
65177a2b73aSVasu Dev 	if (!sp)
65242e9a92fSRobert Love 		return -ENOMEM;
65342e9a92fSRobert Love 
65442e9a92fSRobert Love 	if (timer_msec)
65542e9a92fSRobert Love 		fc_exch_timer_set_locked(ep, timer_msec);
65642e9a92fSRobert Love 
657cae7b6ddSBart Van Assche 	if (ep->sid) {
65842e9a92fSRobert Love 		/*
65942e9a92fSRobert Love 		 * Send an abort for the sequence that timed out.
66042e9a92fSRobert Love 		 */
66142e9a92fSRobert Love 		fp = fc_frame_alloc(ep->lp, 0);
66242e9a92fSRobert Love 		if (fp) {
663cae7b6ddSBart Van Assche 			ep->esb_stat |= ESB_ST_SEQ_INIT;
66442e9a92fSRobert Love 			fc_fill_fc_hdr(fp, FC_RCTL_BA_ABTS, ep->did, ep->sid,
665cae7b6ddSBart Van Assche 				       FC_TYPE_BLS, FC_FC_END_SEQ |
666cae7b6ddSBart Van Assche 				       FC_FC_SEQ_INIT, 0);
667fb00cc23SNeil Horman 			error = fc_seq_send_locked(ep->lp, sp, fp);
668cae7b6ddSBart Van Assche 		} else {
66942e9a92fSRobert Love 			error = -ENOBUFS;
670cae7b6ddSBart Van Assche 		}
671cae7b6ddSBart Van Assche 	} else {
672cae7b6ddSBart Van Assche 		/*
673cae7b6ddSBart Van Assche 		 * If not logged into the fabric, don't send ABTS but leave
674cae7b6ddSBart Van Assche 		 * sequence active until next timeout.
675cae7b6ddSBart Van Assche 		 */
676cae7b6ddSBart Van Assche 		error = 0;
677cae7b6ddSBart Van Assche 	}
678cae7b6ddSBart Van Assche 	ep->esb_stat |= ESB_ST_ABNORMAL;
67942e9a92fSRobert Love 	return error;
68042e9a92fSRobert Love }
68142e9a92fSRobert Love 
6823a3b42bfSRobert Love /**
68377a2b73aSVasu Dev  * fc_seq_exch_abort() - Abort an exchange and sequence
68477a2b73aSVasu Dev  * @req_sp:	The sequence to be aborted
68577a2b73aSVasu Dev  * @timer_msec: The period of time to wait before aborting
68677a2b73aSVasu Dev  *
68777a2b73aSVasu Dev  * Generally called because of a timeout or an abort from the upper layer.
68877a2b73aSVasu Dev  *
68977a2b73aSVasu Dev  * Return value: 0 on success else error code
69077a2b73aSVasu Dev  */
6910ebaed17SHannes Reinecke int fc_seq_exch_abort(const struct fc_seq *req_sp, unsigned int timer_msec)
69277a2b73aSVasu Dev {
69377a2b73aSVasu Dev 	struct fc_exch *ep;
69477a2b73aSVasu Dev 	int error;
69577a2b73aSVasu Dev 
69677a2b73aSVasu Dev 	ep = fc_seq_exch(req_sp);
69777a2b73aSVasu Dev 	spin_lock_bh(&ep->ex_lock);
69877a2b73aSVasu Dev 	error = fc_exch_abort_locked(ep, timer_msec);
69977a2b73aSVasu Dev 	spin_unlock_bh(&ep->ex_lock);
70077a2b73aSVasu Dev 	return error;
70177a2b73aSVasu Dev }
70277a2b73aSVasu Dev 
70377a2b73aSVasu Dev /**
7047030fd62SBart Van Assche  * fc_invoke_resp() - invoke ep->resp()
7057030fd62SBart Van Assche  *
7067030fd62SBart Van Assche  * Notes:
7077030fd62SBart Van Assche  * It is assumed that after initialization finished (this means the
7087030fd62SBart Van Assche  * first unlock of ex_lock after fc_exch_alloc()) ep->resp and ep->arg are
7097030fd62SBart Van Assche  * modified only via fc_seq_set_resp(). This guarantees that none of these
7107030fd62SBart Van Assche  * two variables changes if ep->resp_active > 0.
7117030fd62SBart Van Assche  *
7127030fd62SBart Van Assche  * If an fc_seq_set_resp() call is busy modifying ep->resp and ep->arg when
7137030fd62SBart Van Assche  * this function is invoked, the first spin_lock_bh() call in this function
7147030fd62SBart Van Assche  * will wait until fc_seq_set_resp() has finished modifying these variables.
7157030fd62SBart Van Assche  *
7167030fd62SBart Van Assche  * Since fc_exch_done() invokes fc_seq_set_resp() it is guaranteed that that
7177030fd62SBart Van Assche  * ep->resp() won't be invoked after fc_exch_done() has returned.
7187030fd62SBart Van Assche  *
7197030fd62SBart Van Assche  * The response handler itself may invoke fc_exch_done(), which will clear the
7207030fd62SBart Van Assche  * ep->resp pointer.
7217030fd62SBart Van Assche  *
7227030fd62SBart Van Assche  * Return value:
7237030fd62SBart Van Assche  * Returns true if and only if ep->resp has been invoked.
7247030fd62SBart Van Assche  */
7257030fd62SBart Van Assche static bool fc_invoke_resp(struct fc_exch *ep, struct fc_seq *sp,
7267030fd62SBart Van Assche 			   struct fc_frame *fp)
7277030fd62SBart Van Assche {
7287030fd62SBart Van Assche 	void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg);
7297030fd62SBart Van Assche 	void *arg;
7307030fd62SBart Van Assche 	bool res = false;
7317030fd62SBart Van Assche 
7327030fd62SBart Van Assche 	spin_lock_bh(&ep->ex_lock);
7337030fd62SBart Van Assche 	ep->resp_active++;
7347030fd62SBart Van Assche 	if (ep->resp_task != current)
7357030fd62SBart Van Assche 		ep->resp_task = !ep->resp_task ? current : NULL;
7367030fd62SBart Van Assche 	resp = ep->resp;
7377030fd62SBart Van Assche 	arg = ep->arg;
7387030fd62SBart Van Assche 	spin_unlock_bh(&ep->ex_lock);
7397030fd62SBart Van Assche 
7407030fd62SBart Van Assche 	if (resp) {
7417030fd62SBart Van Assche 		resp(sp, fp, arg);
7427030fd62SBart Van Assche 		res = true;
7437030fd62SBart Van Assche 	}
7447030fd62SBart Van Assche 
7457030fd62SBart Van Assche 	spin_lock_bh(&ep->ex_lock);
7467030fd62SBart Van Assche 	if (--ep->resp_active == 0)
7477030fd62SBart Van Assche 		ep->resp_task = NULL;
7487030fd62SBart Van Assche 	spin_unlock_bh(&ep->ex_lock);
7497030fd62SBart Van Assche 
7507030fd62SBart Van Assche 	if (ep->resp_active == 0)
7517030fd62SBart Van Assche 		wake_up(&ep->resp_wq);
7527030fd62SBart Van Assche 
7537030fd62SBart Van Assche 	return res;
7547030fd62SBart Van Assche }
7557030fd62SBart Van Assche 
7567030fd62SBart Van Assche /**
7573a3b42bfSRobert Love  * fc_exch_timeout() - Handle exchange timer expiration
7583a3b42bfSRobert Love  * @work: The work_struct identifying the exchange that timed out
75942e9a92fSRobert Love  */
76042e9a92fSRobert Love static void fc_exch_timeout(struct work_struct *work)
76142e9a92fSRobert Love {
76242e9a92fSRobert Love 	struct fc_exch *ep = container_of(work, struct fc_exch,
76342e9a92fSRobert Love 					  timeout_work.work);
76442e9a92fSRobert Love 	struct fc_seq *sp = &ep->seq;
76542e9a92fSRobert Love 	u32 e_stat;
76642e9a92fSRobert Love 	int rc = 1;
76742e9a92fSRobert Love 
76857d3ec7eSHannes Reinecke 	FC_EXCH_DBG(ep, "Exchange timed out state %x\n", ep->state);
769cd305ce4SRobert Love 
77042e9a92fSRobert Love 	spin_lock_bh(&ep->ex_lock);
77142e9a92fSRobert Love 	if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE))
77242e9a92fSRobert Love 		goto unlock;
77342e9a92fSRobert Love 
77442e9a92fSRobert Love 	e_stat = ep->esb_stat;
77542e9a92fSRobert Love 	if (e_stat & ESB_ST_COMPLETE) {
77642e9a92fSRobert Love 		ep->esb_stat = e_stat & ~ESB_ST_REC_QUAL;
777a0cc1eccSVasu Dev 		spin_unlock_bh(&ep->ex_lock);
77842e9a92fSRobert Love 		if (e_stat & ESB_ST_REC_QUAL)
77942e9a92fSRobert Love 			fc_exch_rrq(ep);
78042e9a92fSRobert Love 		goto done;
78142e9a92fSRobert Love 	} else {
78242e9a92fSRobert Love 		if (e_stat & ESB_ST_ABNORMAL)
78342e9a92fSRobert Love 			rc = fc_exch_done_locked(ep);
78442e9a92fSRobert Love 		spin_unlock_bh(&ep->ex_lock);
785f3162483SParikh, Neerav 		if (!rc)
786f3162483SParikh, Neerav 			fc_exch_delete(ep);
7877030fd62SBart Van Assche 		fc_invoke_resp(ep, sp, ERR_PTR(-FC_EX_TIMEOUT));
7887030fd62SBart Van Assche 		fc_seq_set_resp(sp, NULL, ep->arg);
78942e9a92fSRobert Love 		fc_seq_exch_abort(sp, 2 * ep->r_a_tov);
79042e9a92fSRobert Love 		goto done;
79142e9a92fSRobert Love 	}
79242e9a92fSRobert Love unlock:
79342e9a92fSRobert Love 	spin_unlock_bh(&ep->ex_lock);
79442e9a92fSRobert Love done:
79542e9a92fSRobert Love 	/*
79642e9a92fSRobert Love 	 * This release matches the hold taken when the timer was set.
79742e9a92fSRobert Love 	 */
79842e9a92fSRobert Love 	fc_exch_release(ep);
79942e9a92fSRobert Love }
80042e9a92fSRobert Love 
80152ff878cSVasu Dev /**
8023a3b42bfSRobert Love  * fc_exch_em_alloc() - Allocate an exchange from a specified EM.
8033a3b42bfSRobert Love  * @lport: The local port that the exchange is for
8043a3b42bfSRobert Love  * @mp:	   The exchange manager that will allocate the exchange
80542e9a92fSRobert Love  *
806d7179680SVasu Dev  * Returns pointer to allocated fc_exch with exch lock held.
80742e9a92fSRobert Love  */
80852ff878cSVasu Dev static struct fc_exch *fc_exch_em_alloc(struct fc_lport *lport,
809d7179680SVasu Dev 					struct fc_exch_mgr *mp)
81042e9a92fSRobert Love {
81142e9a92fSRobert Love 	struct fc_exch *ep;
812b2f0091fSVasu Dev 	unsigned int cpu;
813b2f0091fSVasu Dev 	u16 index;
814b2f0091fSVasu Dev 	struct fc_exch_pool *pool;
81542e9a92fSRobert Love 
81642e9a92fSRobert Love 	/* allocate memory for exchange */
81742e9a92fSRobert Love 	ep = mempool_alloc(mp->ep_pool, GFP_ATOMIC);
81842e9a92fSRobert Love 	if (!ep) {
81942e9a92fSRobert Love 		atomic_inc(&mp->stats.no_free_exch);
82042e9a92fSRobert Love 		goto out;
82142e9a92fSRobert Love 	}
82242e9a92fSRobert Love 	memset(ep, 0, sizeof(*ep));
82342e9a92fSRobert Love 
824f018b73aSJoe Eykholt 	cpu = get_cpu();
825b2f0091fSVasu Dev 	pool = per_cpu_ptr(mp->pool, cpu);
826b2f0091fSVasu Dev 	spin_lock_bh(&pool->lock);
827f018b73aSJoe Eykholt 	put_cpu();
8282034c19cSHillf Danton 
8292034c19cSHillf Danton 	/* peek cache of free slot */
8302034c19cSHillf Danton 	if (pool->left != FC_XID_UNKNOWN) {
831b73aa56eSHannes Reinecke 		if (!WARN_ON(fc_exch_ptr_get(pool, pool->left))) {
8322034c19cSHillf Danton 			index = pool->left;
8332034c19cSHillf Danton 			pool->left = FC_XID_UNKNOWN;
8342034c19cSHillf Danton 			goto hit;
8352034c19cSHillf Danton 		}
836b73aa56eSHannes Reinecke 	}
8372034c19cSHillf Danton 	if (pool->right != FC_XID_UNKNOWN) {
838b73aa56eSHannes Reinecke 		if (!WARN_ON(fc_exch_ptr_get(pool, pool->right))) {
8392034c19cSHillf Danton 			index = pool->right;
8402034c19cSHillf Danton 			pool->right = FC_XID_UNKNOWN;
8412034c19cSHillf Danton 			goto hit;
8422034c19cSHillf Danton 		}
843b73aa56eSHannes Reinecke 	}
8442034c19cSHillf Danton 
845b2f0091fSVasu Dev 	index = pool->next_index;
846b2f0091fSVasu Dev 	/* allocate new exch from pool */
847b2f0091fSVasu Dev 	while (fc_exch_ptr_get(pool, index)) {
848b2f0091fSVasu Dev 		index = index == mp->pool_max_index ? 0 : index + 1;
849b2f0091fSVasu Dev 		if (index == pool->next_index)
85042e9a92fSRobert Love 			goto err;
85142e9a92fSRobert Love 	}
852b2f0091fSVasu Dev 	pool->next_index = index == mp->pool_max_index ? 0 : index + 1;
8532034c19cSHillf Danton hit:
85442e9a92fSRobert Love 	fc_exch_hold(ep);	/* hold for exch in mp */
85542e9a92fSRobert Love 	spin_lock_init(&ep->ex_lock);
85642e9a92fSRobert Love 	/*
85742e9a92fSRobert Love 	 * Hold exch lock for caller to prevent fc_exch_reset()
85842e9a92fSRobert Love 	 * from releasing exch	while fc_exch_alloc() caller is
85942e9a92fSRobert Love 	 * still working on exch.
86042e9a92fSRobert Love 	 */
86142e9a92fSRobert Love 	spin_lock_bh(&ep->ex_lock);
86242e9a92fSRobert Love 
863b2f0091fSVasu Dev 	fc_exch_ptr_set(pool, index, ep);
864b2f0091fSVasu Dev 	list_add_tail(&ep->ex_list, &pool->ex_list);
86542e9a92fSRobert Love 	fc_seq_alloc(ep, ep->seq_id++);
866b2f0091fSVasu Dev 	pool->total_exches++;
867b2f0091fSVasu Dev 	spin_unlock_bh(&pool->lock);
86842e9a92fSRobert Love 
86942e9a92fSRobert Love 	/*
87042e9a92fSRobert Love 	 *  update exchange
87142e9a92fSRobert Love 	 */
872b2f0091fSVasu Dev 	ep->oxid = ep->xid = (index << fc_cpu_order | cpu) + mp->min_xid;
87342e9a92fSRobert Love 	ep->em = mp;
874b2f0091fSVasu Dev 	ep->pool = pool;
87552ff878cSVasu Dev 	ep->lp = lport;
87642e9a92fSRobert Love 	ep->f_ctl = FC_FC_FIRST_SEQ;	/* next seq is first seq */
87742e9a92fSRobert Love 	ep->rxid = FC_XID_UNKNOWN;
87842e9a92fSRobert Love 	ep->class = mp->class;
8797030fd62SBart Van Assche 	ep->resp_active = 0;
8807030fd62SBart Van Assche 	init_waitqueue_head(&ep->resp_wq);
88142e9a92fSRobert Love 	INIT_DELAYED_WORK(&ep->timeout_work, fc_exch_timeout);
88242e9a92fSRobert Love out:
88342e9a92fSRobert Love 	return ep;
88442e9a92fSRobert Love err:
885b2f0091fSVasu Dev 	spin_unlock_bh(&pool->lock);
88642e9a92fSRobert Love 	atomic_inc(&mp->stats.no_free_exch_xid);
88742e9a92fSRobert Love 	mempool_free(ep, mp->ep_pool);
88842e9a92fSRobert Love 	return NULL;
88942e9a92fSRobert Love }
89052ff878cSVasu Dev 
89152ff878cSVasu Dev /**
8923a3b42bfSRobert Love  * fc_exch_alloc() - Allocate an exchange from an EM on a
8933a3b42bfSRobert Love  *		     local port's list of EMs.
8943a3b42bfSRobert Love  * @lport: The local port that will own the exchange
8953a3b42bfSRobert Love  * @fp:	   The FC frame that the exchange will be for
89652ff878cSVasu Dev  *
8973a3b42bfSRobert Love  * This function walks the list of exchange manager(EM)
8983a3b42bfSRobert Love  * anchors to select an EM for a new exchange allocation. The
8993a3b42bfSRobert Love  * EM is selected when a NULL match function pointer is encountered
9003a3b42bfSRobert Love  * or when a call to a match function returns true.
90152ff878cSVasu Dev  */
902f8f91f3fSMartin K. Petersen static struct fc_exch *fc_exch_alloc(struct fc_lport *lport,
9031a7b75aeSRobert Love 				     struct fc_frame *fp)
90452ff878cSVasu Dev {
90552ff878cSVasu Dev 	struct fc_exch_mgr_anchor *ema;
906f8f91f3fSMartin K. Petersen 	struct fc_exch *ep;
90752ff878cSVasu Dev 
908f8f91f3fSMartin K. Petersen 	list_for_each_entry(ema, &lport->ema_list, ema_list) {
909f8f91f3fSMartin K. Petersen 		if (!ema->match || ema->match(fp)) {
910f8f91f3fSMartin K. Petersen 			ep = fc_exch_em_alloc(lport, ema->mp);
911f8f91f3fSMartin K. Petersen 			if (ep)
912f8f91f3fSMartin K. Petersen 				return ep;
913f8f91f3fSMartin K. Petersen 		}
914f8f91f3fSMartin K. Petersen 	}
91552ff878cSVasu Dev 	return NULL;
91652ff878cSVasu Dev }
91742e9a92fSRobert Love 
9183a3b42bfSRobert Love /**
9193a3b42bfSRobert Love  * fc_exch_find() - Lookup and hold an exchange
9203a3b42bfSRobert Love  * @mp:	 The exchange manager to lookup the exchange from
9213a3b42bfSRobert Love  * @xid: The XID of the exchange to look up
92242e9a92fSRobert Love  */
92342e9a92fSRobert Love static struct fc_exch *fc_exch_find(struct fc_exch_mgr *mp, u16 xid)
92442e9a92fSRobert Love {
9259ca1e182SHannes Reinecke 	struct fc_lport *lport = mp->lport;
926b2f0091fSVasu Dev 	struct fc_exch_pool *pool;
92742e9a92fSRobert Love 	struct fc_exch *ep = NULL;
928fa068832SChris Leech 	u16 cpu = xid & fc_cpu_mask;
929fa068832SChris Leech 
930d5c3eb26SChris Leech 	if (xid == FC_XID_UNKNOWN)
931d5c3eb26SChris Leech 		return NULL;
932d5c3eb26SChris Leech 
933fa068832SChris Leech 	if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) {
9349ca1e182SHannes Reinecke 		pr_err("host%u: lport %6.6x: xid %d invalid CPU %d\n:",
9359ca1e182SHannes Reinecke 		       lport->host->host_no, lport->port_id, xid, cpu);
936fa068832SChris Leech 		return NULL;
937fa068832SChris Leech 	}
93842e9a92fSRobert Love 
93942e9a92fSRobert Love 	if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) {
940fa068832SChris Leech 		pool = per_cpu_ptr(mp->pool, cpu);
941b2f0091fSVasu Dev 		spin_lock_bh(&pool->lock);
942b2f0091fSVasu Dev 		ep = fc_exch_ptr_get(pool, (xid - mp->min_xid) >> fc_cpu_order);
9439ca1e182SHannes Reinecke 		if (ep == &fc_quarantine_exch) {
9449ca1e182SHannes Reinecke 			FC_LPORT_DBG(lport, "xid %x quarantined\n", xid);
9459ca1e182SHannes Reinecke 			ep = NULL;
9469ca1e182SHannes Reinecke 		}
9478d080236SBart Van Assche 		if (ep) {
9488d080236SBart Van Assche 			WARN_ON(ep->xid != xid);
94942e9a92fSRobert Love 			fc_exch_hold(ep);
9508d080236SBart Van Assche 		}
951b2f0091fSVasu Dev 		spin_unlock_bh(&pool->lock);
95242e9a92fSRobert Love 	}
95342e9a92fSRobert Love 	return ep;
95442e9a92fSRobert Love }
95542e9a92fSRobert Love 
9561a7b75aeSRobert Love 
9571a7b75aeSRobert Love /**
9581a7b75aeSRobert Love  * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and
9591a7b75aeSRobert Love  *		    the memory allocated for the related objects may be freed.
9603a3b42bfSRobert Love  * @sp: The sequence that has completed
9617030fd62SBart Van Assche  *
9627030fd62SBart Van Assche  * Note: May sleep if invoked from outside a response handler.
9631a7b75aeSRobert Love  */
964768c72ccSHannes Reinecke void fc_exch_done(struct fc_seq *sp)
96542e9a92fSRobert Love {
96642e9a92fSRobert Love 	struct fc_exch *ep = fc_seq_exch(sp);
96742e9a92fSRobert Love 	int rc;
96842e9a92fSRobert Love 
96942e9a92fSRobert Love 	spin_lock_bh(&ep->ex_lock);
97042e9a92fSRobert Love 	rc = fc_exch_done_locked(ep);
97142e9a92fSRobert Love 	spin_unlock_bh(&ep->ex_lock);
9727030fd62SBart Van Assche 
9737030fd62SBart Van Assche 	fc_seq_set_resp(sp, NULL, ep->arg);
97442e9a92fSRobert Love 	if (!rc)
975b2f0091fSVasu Dev 		fc_exch_delete(ep);
97642e9a92fSRobert Love }
977768c72ccSHannes Reinecke EXPORT_SYMBOL(fc_exch_done);
97842e9a92fSRobert Love 
9793a3b42bfSRobert Love /**
9803a3b42bfSRobert Love  * fc_exch_resp() - Allocate a new exchange for a response frame
9813a3b42bfSRobert Love  * @lport: The local port that the exchange was for
9823a3b42bfSRobert Love  * @mp:	   The exchange manager to allocate the exchange from
9833a3b42bfSRobert Love  * @fp:	   The response frame
9843a3b42bfSRobert Love  *
98542e9a92fSRobert Love  * Sets the responder ID in the frame header.
98642e9a92fSRobert Love  */
98752ff878cSVasu Dev static struct fc_exch *fc_exch_resp(struct fc_lport *lport,
98852ff878cSVasu Dev 				    struct fc_exch_mgr *mp,
98952ff878cSVasu Dev 				    struct fc_frame *fp)
99042e9a92fSRobert Love {
99142e9a92fSRobert Love 	struct fc_exch *ep;
99242e9a92fSRobert Love 	struct fc_frame_header *fh;
99342e9a92fSRobert Love 
99452ff878cSVasu Dev 	ep = fc_exch_alloc(lport, fp);
99542e9a92fSRobert Love 	if (ep) {
99642e9a92fSRobert Love 		ep->class = fc_frame_class(fp);
99742e9a92fSRobert Love 
99842e9a92fSRobert Love 		/*
99942e9a92fSRobert Love 		 * Set EX_CTX indicating we're responding on this exchange.
100042e9a92fSRobert Love 		 */
100142e9a92fSRobert Love 		ep->f_ctl |= FC_FC_EX_CTX;	/* we're responding */
100242e9a92fSRobert Love 		ep->f_ctl &= ~FC_FC_FIRST_SEQ;	/* not new */
100342e9a92fSRobert Love 		fh = fc_frame_header_get(fp);
100442e9a92fSRobert Love 		ep->sid = ntoh24(fh->fh_d_id);
100542e9a92fSRobert Love 		ep->did = ntoh24(fh->fh_s_id);
100642e9a92fSRobert Love 		ep->oid = ep->did;
100742e9a92fSRobert Love 
100842e9a92fSRobert Love 		/*
100942e9a92fSRobert Love 		 * Allocated exchange has placed the XID in the
101042e9a92fSRobert Love 		 * originator field. Move it to the responder field,
101142e9a92fSRobert Love 		 * and set the originator XID from the frame.
101242e9a92fSRobert Love 		 */
101342e9a92fSRobert Love 		ep->rxid = ep->xid;
101442e9a92fSRobert Love 		ep->oxid = ntohs(fh->fh_ox_id);
101542e9a92fSRobert Love 		ep->esb_stat |= ESB_ST_RESP | ESB_ST_SEQ_INIT;
101642e9a92fSRobert Love 		if ((ntoh24(fh->fh_f_ctl) & FC_FC_SEQ_INIT) == 0)
101742e9a92fSRobert Love 			ep->esb_stat &= ~ESB_ST_SEQ_INIT;
101842e9a92fSRobert Love 
101942e9a92fSRobert Love 		fc_exch_hold(ep);	/* hold for caller */
102052ff878cSVasu Dev 		spin_unlock_bh(&ep->ex_lock);	/* lock from fc_exch_alloc */
102142e9a92fSRobert Love 	}
102242e9a92fSRobert Love 	return ep;
102342e9a92fSRobert Love }
102442e9a92fSRobert Love 
10253a3b42bfSRobert Love /**
10263a3b42bfSRobert Love  * fc_seq_lookup_recip() - Find a sequence where the other end
10273a3b42bfSRobert Love  *			   originated the sequence
10283a3b42bfSRobert Love  * @lport: The local port that the frame was sent to
10293a3b42bfSRobert Love  * @mp:	   The Exchange Manager to lookup the exchange from
10303a3b42bfSRobert Love  * @fp:	   The frame associated with the sequence we're looking for
10313a3b42bfSRobert Love  *
103242e9a92fSRobert Love  * If fc_pf_rjt_reason is FC_RJT_NONE then this function will have a hold
103342e9a92fSRobert Love  * on the ep that should be released by the caller.
103442e9a92fSRobert Love  */
103552ff878cSVasu Dev static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport,
103652ff878cSVasu Dev 						 struct fc_exch_mgr *mp,
1037b2ab99c9SRobert Love 						 struct fc_frame *fp)
103842e9a92fSRobert Love {
103942e9a92fSRobert Love 	struct fc_frame_header *fh = fc_frame_header_get(fp);
104042e9a92fSRobert Love 	struct fc_exch *ep = NULL;
104142e9a92fSRobert Love 	struct fc_seq *sp = NULL;
104242e9a92fSRobert Love 	enum fc_pf_rjt_reason reject = FC_RJT_NONE;
104342e9a92fSRobert Love 	u32 f_ctl;
104442e9a92fSRobert Love 	u16 xid;
104542e9a92fSRobert Love 
104642e9a92fSRobert Love 	f_ctl = ntoh24(fh->fh_f_ctl);
104742e9a92fSRobert Love 	WARN_ON((f_ctl & FC_FC_SEQ_CTX) != 0);
104842e9a92fSRobert Love 
104942e9a92fSRobert Love 	/*
105042e9a92fSRobert Love 	 * Lookup or create the exchange if we will be creating the sequence.
105142e9a92fSRobert Love 	 */
105242e9a92fSRobert Love 	if (f_ctl & FC_FC_EX_CTX) {
105342e9a92fSRobert Love 		xid = ntohs(fh->fh_ox_id);	/* we originated exch */
105442e9a92fSRobert Love 		ep = fc_exch_find(mp, xid);
105542e9a92fSRobert Love 		if (!ep) {
105642e9a92fSRobert Love 			atomic_inc(&mp->stats.xid_not_found);
105742e9a92fSRobert Love 			reject = FC_RJT_OX_ID;
105842e9a92fSRobert Love 			goto out;
105942e9a92fSRobert Love 		}
106042e9a92fSRobert Love 		if (ep->rxid == FC_XID_UNKNOWN)
106142e9a92fSRobert Love 			ep->rxid = ntohs(fh->fh_rx_id);
106242e9a92fSRobert Love 		else if (ep->rxid != ntohs(fh->fh_rx_id)) {
106342e9a92fSRobert Love 			reject = FC_RJT_OX_ID;
106442e9a92fSRobert Love 			goto rel;
106542e9a92fSRobert Love 		}
106642e9a92fSRobert Love 	} else {
106742e9a92fSRobert Love 		xid = ntohs(fh->fh_rx_id);	/* we are the responder */
106842e9a92fSRobert Love 
106942e9a92fSRobert Love 		/*
107042e9a92fSRobert Love 		 * Special case for MDS issuing an ELS TEST with a
107142e9a92fSRobert Love 		 * bad rxid of 0.
107242e9a92fSRobert Love 		 * XXX take this out once we do the proper reject.
107342e9a92fSRobert Love 		 */
107442e9a92fSRobert Love 		if (xid == 0 && fh->fh_r_ctl == FC_RCTL_ELS_REQ &&
107542e9a92fSRobert Love 		    fc_frame_payload_op(fp) == ELS_TEST) {
107642e9a92fSRobert Love 			fh->fh_rx_id = htons(FC_XID_UNKNOWN);
107742e9a92fSRobert Love 			xid = FC_XID_UNKNOWN;
107842e9a92fSRobert Love 		}
107942e9a92fSRobert Love 
108042e9a92fSRobert Love 		/*
108142e9a92fSRobert Love 		 * new sequence - find the exchange
108242e9a92fSRobert Love 		 */
108342e9a92fSRobert Love 		ep = fc_exch_find(mp, xid);
108442e9a92fSRobert Love 		if ((f_ctl & FC_FC_FIRST_SEQ) && fc_sof_is_init(fr_sof(fp))) {
108542e9a92fSRobert Love 			if (ep) {
108642e9a92fSRobert Love 				atomic_inc(&mp->stats.xid_busy);
108742e9a92fSRobert Love 				reject = FC_RJT_RX_ID;
108842e9a92fSRobert Love 				goto rel;
108942e9a92fSRobert Love 			}
109052ff878cSVasu Dev 			ep = fc_exch_resp(lport, mp, fp);
109142e9a92fSRobert Love 			if (!ep) {
109242e9a92fSRobert Love 				reject = FC_RJT_EXCH_EST;	/* XXX */
109342e9a92fSRobert Love 				goto out;
109442e9a92fSRobert Love 			}
109542e9a92fSRobert Love 			xid = ep->xid;	/* get our XID */
109642e9a92fSRobert Love 		} else if (!ep) {
109742e9a92fSRobert Love 			atomic_inc(&mp->stats.xid_not_found);
109842e9a92fSRobert Love 			reject = FC_RJT_RX_ID;	/* XID not found */
109942e9a92fSRobert Love 			goto out;
110042e9a92fSRobert Love 		}
110142e9a92fSRobert Love 	}
110242e9a92fSRobert Love 
11035d73bea2SBart Van Assche 	spin_lock_bh(&ep->ex_lock);
110442e9a92fSRobert Love 	/*
110542e9a92fSRobert Love 	 * At this point, we have the exchange held.
110642e9a92fSRobert Love 	 * Find or create the sequence.
110742e9a92fSRobert Love 	 */
110842e9a92fSRobert Love 	if (fc_sof_is_init(fr_sof(fp))) {
1109a104c844SVasu Dev 		sp = &ep->seq;
111042e9a92fSRobert Love 		sp->ssb_stat |= SSB_ST_RESP;
1111b3667f91SJoe Eykholt 		sp->id = fh->fh_seq_id;
111242e9a92fSRobert Love 	} else {
111342e9a92fSRobert Love 		sp = &ep->seq;
111442e9a92fSRobert Love 		if (sp->id != fh->fh_seq_id) {
111542e9a92fSRobert Love 			atomic_inc(&mp->stats.seq_not_found);
1116e3e65c69SKiran Patil 			if (f_ctl & FC_FC_END_SEQ) {
1117e3e65c69SKiran Patil 				/*
1118e3e65c69SKiran Patil 				 * Update sequence_id based on incoming last
1119e3e65c69SKiran Patil 				 * frame of sequence exchange. This is needed
11201bd49b48SVasu Dev 				 * for FC target where DDP has been used
1121e3e65c69SKiran Patil 				 * on target where, stack is indicated only
1122e3e65c69SKiran Patil 				 * about last frame's (payload _header) header.
1123e3e65c69SKiran Patil 				 * Whereas "seq_id" which is part of
1124e3e65c69SKiran Patil 				 * frame_header is allocated by initiator
1125e3e65c69SKiran Patil 				 * which is totally different from "seq_id"
1126e3e65c69SKiran Patil 				 * allocated when XFER_RDY was sent by target.
1127e3e65c69SKiran Patil 				 * To avoid false -ve which results into not
1128e3e65c69SKiran Patil 				 * sending RSP, hence write request on other
1129e3e65c69SKiran Patil 				 * end never finishes.
1130e3e65c69SKiran Patil 				 */
1131e3e65c69SKiran Patil 				sp->ssb_stat |= SSB_ST_RESP;
1132e3e65c69SKiran Patil 				sp->id = fh->fh_seq_id;
1133e3e65c69SKiran Patil 			} else {
11345d73bea2SBart Van Assche 				spin_unlock_bh(&ep->ex_lock);
11355d73bea2SBart Van Assche 
1136e3e65c69SKiran Patil 				/* sequence/exch should exist */
1137e3e65c69SKiran Patil 				reject = FC_RJT_SEQ_ID;
113842e9a92fSRobert Love 				goto rel;
113942e9a92fSRobert Love 			}
114042e9a92fSRobert Love 		}
1141e3e65c69SKiran Patil 	}
114242e9a92fSRobert Love 	WARN_ON(ep != fc_seq_exch(sp));
114342e9a92fSRobert Love 
114442e9a92fSRobert Love 	if (f_ctl & FC_FC_SEQ_INIT)
114542e9a92fSRobert Love 		ep->esb_stat |= ESB_ST_SEQ_INIT;
11465d73bea2SBart Van Assche 	spin_unlock_bh(&ep->ex_lock);
114742e9a92fSRobert Love 
114842e9a92fSRobert Love 	fr_seq(fp) = sp;
114942e9a92fSRobert Love out:
115042e9a92fSRobert Love 	return reject;
115142e9a92fSRobert Love rel:
115242e9a92fSRobert Love 	fc_exch_done(&ep->seq);
115342e9a92fSRobert Love 	fc_exch_release(ep);	/* hold from fc_exch_find/fc_exch_resp */
115442e9a92fSRobert Love 	return reject;
115542e9a92fSRobert Love }
115642e9a92fSRobert Love 
11573a3b42bfSRobert Love /**
11583a3b42bfSRobert Love  * fc_seq_lookup_orig() - Find a sequence where this end
11593a3b42bfSRobert Love  *			  originated the sequence
11603a3b42bfSRobert Love  * @mp:	   The Exchange Manager to lookup the exchange from
11613a3b42bfSRobert Love  * @fp:	   The frame associated with the sequence we're looking for
11623a3b42bfSRobert Love  *
116342e9a92fSRobert Love  * Does not hold the sequence for the caller.
116442e9a92fSRobert Love  */
116542e9a92fSRobert Love static struct fc_seq *fc_seq_lookup_orig(struct fc_exch_mgr *mp,
116642e9a92fSRobert Love 					 struct fc_frame *fp)
116742e9a92fSRobert Love {
116842e9a92fSRobert Love 	struct fc_frame_header *fh = fc_frame_header_get(fp);
116942e9a92fSRobert Love 	struct fc_exch *ep;
117042e9a92fSRobert Love 	struct fc_seq *sp = NULL;
117142e9a92fSRobert Love 	u32 f_ctl;
117242e9a92fSRobert Love 	u16 xid;
117342e9a92fSRobert Love 
117442e9a92fSRobert Love 	f_ctl = ntoh24(fh->fh_f_ctl);
117542e9a92fSRobert Love 	WARN_ON((f_ctl & FC_FC_SEQ_CTX) != FC_FC_SEQ_CTX);
117642e9a92fSRobert Love 	xid = ntohs((f_ctl & FC_FC_EX_CTX) ? fh->fh_ox_id : fh->fh_rx_id);
117742e9a92fSRobert Love 	ep = fc_exch_find(mp, xid);
117842e9a92fSRobert Love 	if (!ep)
117942e9a92fSRobert Love 		return NULL;
118042e9a92fSRobert Love 	if (ep->seq.id == fh->fh_seq_id) {
118142e9a92fSRobert Love 		/*
118242e9a92fSRobert Love 		 * Save the RX_ID if we didn't previously know it.
118342e9a92fSRobert Love 		 */
118442e9a92fSRobert Love 		sp = &ep->seq;
118542e9a92fSRobert Love 		if ((f_ctl & FC_FC_EX_CTX) != 0 &&
118642e9a92fSRobert Love 		    ep->rxid == FC_XID_UNKNOWN) {
118742e9a92fSRobert Love 			ep->rxid = ntohs(fh->fh_rx_id);
118842e9a92fSRobert Love 		}
118942e9a92fSRobert Love 	}
119042e9a92fSRobert Love 	fc_exch_release(ep);
119142e9a92fSRobert Love 	return sp;
119242e9a92fSRobert Love }
119342e9a92fSRobert Love 
11943a3b42bfSRobert Love /**
11953a3b42bfSRobert Love  * fc_exch_set_addr() - Set the source and destination IDs for an exchange
11963a3b42bfSRobert Love  * @ep:	     The exchange to set the addresses for
11973a3b42bfSRobert Love  * @orig_id: The originator's ID
11983a3b42bfSRobert Love  * @resp_id: The responder's ID
11993a3b42bfSRobert Love  *
120042e9a92fSRobert Love  * Note this must be done before the first sequence of the exchange is sent.
120142e9a92fSRobert Love  */
120242e9a92fSRobert Love static void fc_exch_set_addr(struct fc_exch *ep,
120342e9a92fSRobert Love 			     u32 orig_id, u32 resp_id)
120442e9a92fSRobert Love {
120542e9a92fSRobert Love 	ep->oid = orig_id;
120642e9a92fSRobert Love 	if (ep->esb_stat & ESB_ST_RESP) {
120742e9a92fSRobert Love 		ep->sid = resp_id;
120842e9a92fSRobert Love 		ep->did = orig_id;
120942e9a92fSRobert Love 	} else {
121042e9a92fSRobert Love 		ep->sid = orig_id;
121142e9a92fSRobert Love 		ep->did = resp_id;
121242e9a92fSRobert Love 	}
121342e9a92fSRobert Love }
121442e9a92fSRobert Love 
12151a7b75aeSRobert Love /**
121625985edcSLucas De Marchi  * fc_seq_els_rsp_send() - Send an ELS response using information from
12173a3b42bfSRobert Love  *			   the existing sequence/exchange.
121892261156SJoe Eykholt  * @fp:	      The received frame
12193a3b42bfSRobert Love  * @els_cmd:  The ELS command to be sent
12203a3b42bfSRobert Love  * @els_data: The ELS data to be sent
122192261156SJoe Eykholt  *
122292261156SJoe Eykholt  * The received frame is not freed.
122342e9a92fSRobert Love  */
12247ab24dd1SHannes Reinecke void fc_seq_els_rsp_send(struct fc_frame *fp, enum fc_els_cmd els_cmd,
122542e9a92fSRobert Love 			 struct fc_seq_els_data *els_data)
122642e9a92fSRobert Love {
122742e9a92fSRobert Love 	switch (els_cmd) {
122842e9a92fSRobert Love 	case ELS_LS_RJT:
122992261156SJoe Eykholt 		fc_seq_ls_rjt(fp, els_data->reason, els_data->explan);
123042e9a92fSRobert Love 		break;
123142e9a92fSRobert Love 	case ELS_LS_ACC:
123292261156SJoe Eykholt 		fc_seq_ls_acc(fp);
123342e9a92fSRobert Love 		break;
123442e9a92fSRobert Love 	case ELS_RRQ:
123592261156SJoe Eykholt 		fc_exch_els_rrq(fp);
123642e9a92fSRobert Love 		break;
123742e9a92fSRobert Love 	case ELS_REC:
123892261156SJoe Eykholt 		fc_exch_els_rec(fp);
123942e9a92fSRobert Love 		break;
124042e9a92fSRobert Love 	default:
124192261156SJoe Eykholt 		FC_LPORT_DBG(fr_dev(fp), "Invalid ELS CMD:%x\n", els_cmd);
124242e9a92fSRobert Love 	}
124342e9a92fSRobert Love }
12447ab24dd1SHannes Reinecke EXPORT_SYMBOL_GPL(fc_seq_els_rsp_send);
124542e9a92fSRobert Love 
12463a3b42bfSRobert Love /**
12473a3b42bfSRobert Love  * fc_seq_send_last() - Send a sequence that is the last in the exchange
12483a3b42bfSRobert Love  * @sp:	     The sequence that is to be sent
12493a3b42bfSRobert Love  * @fp:	     The frame that will be sent on the sequence
12503a3b42bfSRobert Love  * @rctl:    The R_CTL information to be sent
12513a3b42bfSRobert Love  * @fh_type: The frame header type
125242e9a92fSRobert Love  */
125342e9a92fSRobert Love static void fc_seq_send_last(struct fc_seq *sp, struct fc_frame *fp,
125442e9a92fSRobert Love 			     enum fc_rctl rctl, enum fc_fh_type fh_type)
125542e9a92fSRobert Love {
125642e9a92fSRobert Love 	u32 f_ctl;
125742e9a92fSRobert Love 	struct fc_exch *ep = fc_seq_exch(sp);
125842e9a92fSRobert Love 
125942e9a92fSRobert Love 	f_ctl = FC_FC_LAST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT;
126042e9a92fSRobert Love 	f_ctl |= ep->f_ctl;
126142e9a92fSRobert Love 	fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0);
1262fb00cc23SNeil Horman 	fc_seq_send_locked(ep->lp, sp, fp);
126342e9a92fSRobert Love }
126442e9a92fSRobert Love 
12653a3b42bfSRobert Love /**
12663a3b42bfSRobert Love  * fc_seq_send_ack() - Send an acknowledgement that we've received a frame
12673a3b42bfSRobert Love  * @sp:	   The sequence to send the ACK on
12683a3b42bfSRobert Love  * @rx_fp: The received frame that is being acknoledged
12693a3b42bfSRobert Love  *
127042e9a92fSRobert Love  * Send ACK_1 (or equiv.) indicating we received something.
127142e9a92fSRobert Love  */
127242e9a92fSRobert Love static void fc_seq_send_ack(struct fc_seq *sp, const struct fc_frame *rx_fp)
127342e9a92fSRobert Love {
127442e9a92fSRobert Love 	struct fc_frame *fp;
127542e9a92fSRobert Love 	struct fc_frame_header *rx_fh;
127642e9a92fSRobert Love 	struct fc_frame_header *fh;
127742e9a92fSRobert Love 	struct fc_exch *ep = fc_seq_exch(sp);
12783a3b42bfSRobert Love 	struct fc_lport *lport = ep->lp;
127942e9a92fSRobert Love 	unsigned int f_ctl;
128042e9a92fSRobert Love 
128142e9a92fSRobert Love 	/*
128242e9a92fSRobert Love 	 * Don't send ACKs for class 3.
128342e9a92fSRobert Love 	 */
128442e9a92fSRobert Love 	if (fc_sof_needs_ack(fr_sof(rx_fp))) {
12853a3b42bfSRobert Love 		fp = fc_frame_alloc(lport, 0);
128657d3ec7eSHannes Reinecke 		if (!fp) {
128757d3ec7eSHannes Reinecke 			FC_EXCH_DBG(ep, "Drop ACK request, out of memory\n");
128842e9a92fSRobert Love 			return;
128957d3ec7eSHannes Reinecke 		}
129042e9a92fSRobert Love 
129142e9a92fSRobert Love 		fh = fc_frame_header_get(fp);
129242e9a92fSRobert Love 		fh->fh_r_ctl = FC_RCTL_ACK_1;
129342e9a92fSRobert Love 		fh->fh_type = FC_TYPE_BLS;
129442e9a92fSRobert Love 
129542e9a92fSRobert Love 		/*
129642e9a92fSRobert Love 		 * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22).
129742e9a92fSRobert Love 		 * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT.
129842e9a92fSRobert Love 		 * Bits 9-8 are meaningful (retransmitted or unidirectional).
129942e9a92fSRobert Love 		 * Last ACK uses bits 7-6 (continue sequence),
130042e9a92fSRobert Love 		 * bits 5-4 are meaningful (what kind of ACK to use).
130142e9a92fSRobert Love 		 */
130242e9a92fSRobert Love 		rx_fh = fc_frame_header_get(rx_fp);
130342e9a92fSRobert Love 		f_ctl = ntoh24(rx_fh->fh_f_ctl);
130442e9a92fSRobert Love 		f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX |
130542e9a92fSRobert Love 			FC_FC_FIRST_SEQ | FC_FC_LAST_SEQ |
130642e9a92fSRobert Love 			FC_FC_END_SEQ | FC_FC_END_CONN | FC_FC_SEQ_INIT |
130742e9a92fSRobert Love 			FC_FC_RETX_SEQ | FC_FC_UNI_TX;
130842e9a92fSRobert Love 		f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX;
130942e9a92fSRobert Love 		hton24(fh->fh_f_ctl, f_ctl);
131042e9a92fSRobert Love 
131142e9a92fSRobert Love 		fc_exch_setup_hdr(ep, fp, f_ctl);
131242e9a92fSRobert Love 		fh->fh_seq_id = rx_fh->fh_seq_id;
131342e9a92fSRobert Love 		fh->fh_seq_cnt = rx_fh->fh_seq_cnt;
131442e9a92fSRobert Love 		fh->fh_parm_offset = htonl(1);	/* ack single frame */
131542e9a92fSRobert Love 
131642e9a92fSRobert Love 		fr_sof(fp) = fr_sof(rx_fp);
131742e9a92fSRobert Love 		if (f_ctl & FC_FC_END_SEQ)
131842e9a92fSRobert Love 			fr_eof(fp) = FC_EOF_T;
131942e9a92fSRobert Love 		else
132042e9a92fSRobert Love 			fr_eof(fp) = FC_EOF_N;
132142e9a92fSRobert Love 
13223a3b42bfSRobert Love 		lport->tt.frame_send(lport, fp);
132342e9a92fSRobert Love 	}
132442e9a92fSRobert Love }
132542e9a92fSRobert Love 
13263a3b42bfSRobert Love /**
13273a3b42bfSRobert Love  * fc_exch_send_ba_rjt() - Send BLS Reject
13283a3b42bfSRobert Love  * @rx_fp:  The frame being rejected
13293a3b42bfSRobert Love  * @reason: The reason the frame is being rejected
133025985edcSLucas De Marchi  * @explan: The explanation for the rejection
13313a3b42bfSRobert Love  *
133242e9a92fSRobert Love  * This is for rejecting BA_ABTS only.
133342e9a92fSRobert Love  */
1334b2ab99c9SRobert Love static void fc_exch_send_ba_rjt(struct fc_frame *rx_fp,
1335b2ab99c9SRobert Love 				enum fc_ba_rjt_reason reason,
133642e9a92fSRobert Love 				enum fc_ba_rjt_explan explan)
133742e9a92fSRobert Love {
133842e9a92fSRobert Love 	struct fc_frame *fp;
133942e9a92fSRobert Love 	struct fc_frame_header *rx_fh;
134042e9a92fSRobert Love 	struct fc_frame_header *fh;
134142e9a92fSRobert Love 	struct fc_ba_rjt *rp;
134257d3ec7eSHannes Reinecke 	struct fc_seq *sp;
13433a3b42bfSRobert Love 	struct fc_lport *lport;
134442e9a92fSRobert Love 	unsigned int f_ctl;
134542e9a92fSRobert Love 
13463a3b42bfSRobert Love 	lport = fr_dev(rx_fp);
134757d3ec7eSHannes Reinecke 	sp = fr_seq(rx_fp);
13483a3b42bfSRobert Love 	fp = fc_frame_alloc(lport, sizeof(*rp));
134957d3ec7eSHannes Reinecke 	if (!fp) {
135057d3ec7eSHannes Reinecke 		FC_EXCH_DBG(fc_seq_exch(sp),
135157d3ec7eSHannes Reinecke 			     "Drop BA_RJT request, out of memory\n");
135242e9a92fSRobert Love 		return;
135357d3ec7eSHannes Reinecke 	}
135442e9a92fSRobert Love 	fh = fc_frame_header_get(fp);
135542e9a92fSRobert Love 	rx_fh = fc_frame_header_get(rx_fp);
135642e9a92fSRobert Love 
135742e9a92fSRobert Love 	memset(fh, 0, sizeof(*fh) + sizeof(*rp));
135842e9a92fSRobert Love 
135942e9a92fSRobert Love 	rp = fc_frame_payload_get(fp, sizeof(*rp));
136042e9a92fSRobert Love 	rp->br_reason = reason;
136142e9a92fSRobert Love 	rp->br_explan = explan;
136242e9a92fSRobert Love 
136342e9a92fSRobert Love 	/*
136442e9a92fSRobert Love 	 * seq_id, cs_ctl, df_ctl and param/offset are zero.
136542e9a92fSRobert Love 	 */
136642e9a92fSRobert Love 	memcpy(fh->fh_s_id, rx_fh->fh_d_id, 3);
136742e9a92fSRobert Love 	memcpy(fh->fh_d_id, rx_fh->fh_s_id, 3);
13681d490ce3SJoe Eykholt 	fh->fh_ox_id = rx_fh->fh_ox_id;
13691d490ce3SJoe Eykholt 	fh->fh_rx_id = rx_fh->fh_rx_id;
137042e9a92fSRobert Love 	fh->fh_seq_cnt = rx_fh->fh_seq_cnt;
137142e9a92fSRobert Love 	fh->fh_r_ctl = FC_RCTL_BA_RJT;
137242e9a92fSRobert Love 	fh->fh_type = FC_TYPE_BLS;
137342e9a92fSRobert Love 
137442e9a92fSRobert Love 	/*
137542e9a92fSRobert Love 	 * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22).
137642e9a92fSRobert Love 	 * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT.
137742e9a92fSRobert Love 	 * Bits 9-8 are meaningful (retransmitted or unidirectional).
137842e9a92fSRobert Love 	 * Last ACK uses bits 7-6 (continue sequence),
137942e9a92fSRobert Love 	 * bits 5-4 are meaningful (what kind of ACK to use).
138042e9a92fSRobert Love 	 * Always set LAST_SEQ, END_SEQ.
138142e9a92fSRobert Love 	 */
138242e9a92fSRobert Love 	f_ctl = ntoh24(rx_fh->fh_f_ctl);
138342e9a92fSRobert Love 	f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX |
138442e9a92fSRobert Love 		FC_FC_END_CONN | FC_FC_SEQ_INIT |
138542e9a92fSRobert Love 		FC_FC_RETX_SEQ | FC_FC_UNI_TX;
138642e9a92fSRobert Love 	f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX;
138742e9a92fSRobert Love 	f_ctl |= FC_FC_LAST_SEQ | FC_FC_END_SEQ;
138842e9a92fSRobert Love 	f_ctl &= ~FC_FC_FIRST_SEQ;
138942e9a92fSRobert Love 	hton24(fh->fh_f_ctl, f_ctl);
139042e9a92fSRobert Love 
139142e9a92fSRobert Love 	fr_sof(fp) = fc_sof_class(fr_sof(rx_fp));
139242e9a92fSRobert Love 	fr_eof(fp) = FC_EOF_T;
139342e9a92fSRobert Love 	if (fc_sof_needs_ack(fr_sof(fp)))
139442e9a92fSRobert Love 		fr_eof(fp) = FC_EOF_N;
139542e9a92fSRobert Love 
13963a3b42bfSRobert Love 	lport->tt.frame_send(lport, fp);
139742e9a92fSRobert Love }
139842e9a92fSRobert Love 
13993a3b42bfSRobert Love /**
14003a3b42bfSRobert Love  * fc_exch_recv_abts() - Handle an incoming ABTS
14013a3b42bfSRobert Love  * @ep:	   The exchange the abort was on
14023a3b42bfSRobert Love  * @rx_fp: The ABTS frame
14033a3b42bfSRobert Love  *
14043a3b42bfSRobert Love  * This would be for target mode usually, but could be due to lost
14053a3b42bfSRobert Love  * FCP transfer ready, confirm or RRQ. We always handle this as an
14063a3b42bfSRobert Love  * exchange abort, ignoring the parameter.
140742e9a92fSRobert Love  */
140842e9a92fSRobert Love static void fc_exch_recv_abts(struct fc_exch *ep, struct fc_frame *rx_fp)
140942e9a92fSRobert Love {
141042e9a92fSRobert Love 	struct fc_frame *fp;
141142e9a92fSRobert Love 	struct fc_ba_acc *ap;
141242e9a92fSRobert Love 	struct fc_frame_header *fh;
141342e9a92fSRobert Love 	struct fc_seq *sp;
141442e9a92fSRobert Love 
141542e9a92fSRobert Love 	if (!ep)
141642e9a92fSRobert Love 		goto reject;
1417f95b35cfSBart Van Assche 
141857d3ec7eSHannes Reinecke 	FC_EXCH_DBG(ep, "exch: ABTS received\n");
1419f95b35cfSBart Van Assche 	fp = fc_frame_alloc(ep->lp, sizeof(*ap));
142057d3ec7eSHannes Reinecke 	if (!fp) {
142157d3ec7eSHannes Reinecke 		FC_EXCH_DBG(ep, "Drop ABTS request, out of memory\n");
1422f95b35cfSBart Van Assche 		goto free;
142357d3ec7eSHannes Reinecke 	}
1424f95b35cfSBart Van Assche 
142542e9a92fSRobert Love 	spin_lock_bh(&ep->ex_lock);
142642e9a92fSRobert Love 	if (ep->esb_stat & ESB_ST_COMPLETE) {
142742e9a92fSRobert Love 		spin_unlock_bh(&ep->ex_lock);
142857d3ec7eSHannes Reinecke 		FC_EXCH_DBG(ep, "exch: ABTS rejected, exchange complete\n");
1429f95b35cfSBart Van Assche 		fc_frame_free(fp);
143042e9a92fSRobert Love 		goto reject;
143142e9a92fSRobert Love 	}
1432cae7b6ddSBart Van Assche 	if (!(ep->esb_stat & ESB_ST_REC_QUAL)) {
1433cae7b6ddSBart Van Assche 		ep->esb_stat |= ESB_ST_REC_QUAL;
143442e9a92fSRobert Love 		fc_exch_hold(ep);		/* hold for REC_QUAL */
1435cae7b6ddSBart Van Assche 	}
143642e9a92fSRobert Love 	fc_exch_timer_set_locked(ep, ep->r_a_tov);
143742e9a92fSRobert Love 	fh = fc_frame_header_get(fp);
143842e9a92fSRobert Love 	ap = fc_frame_payload_get(fp, sizeof(*ap));
143942e9a92fSRobert Love 	memset(ap, 0, sizeof(*ap));
144042e9a92fSRobert Love 	sp = &ep->seq;
144142e9a92fSRobert Love 	ap->ba_high_seq_cnt = htons(0xffff);
144242e9a92fSRobert Love 	if (sp->ssb_stat & SSB_ST_RESP) {
144342e9a92fSRobert Love 		ap->ba_seq_id = sp->id;
144442e9a92fSRobert Love 		ap->ba_seq_id_val = FC_BA_SEQ_ID_VAL;
144542e9a92fSRobert Love 		ap->ba_high_seq_cnt = fh->fh_seq_cnt;
144642e9a92fSRobert Love 		ap->ba_low_seq_cnt = htons(sp->cnt);
144742e9a92fSRobert Love 	}
1448a7e84f2bSVasu Dev 	sp = fc_seq_start_next_locked(sp);
144942e9a92fSRobert Love 	fc_seq_send_last(sp, fp, FC_RCTL_BA_ACC, FC_TYPE_BLS);
1450cae7b6ddSBart Van Assche 	ep->esb_stat |= ESB_ST_ABNORMAL;
1451fb00cc23SNeil Horman 	spin_unlock_bh(&ep->ex_lock);
1452f95b35cfSBart Van Assche 
1453f95b35cfSBart Van Assche free:
145442e9a92fSRobert Love 	fc_frame_free(rx_fp);
145542e9a92fSRobert Love 	return;
145642e9a92fSRobert Love 
145742e9a92fSRobert Love reject:
145842e9a92fSRobert Love 	fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID);
1459f95b35cfSBart Van Assche 	goto free;
146042e9a92fSRobert Love }
146142e9a92fSRobert Love 
14623a3b42bfSRobert Love /**
1463239e8104SJoe Eykholt  * fc_seq_assign() - Assign exchange and sequence for incoming request
1464239e8104SJoe Eykholt  * @lport: The local port that received the request
1465239e8104SJoe Eykholt  * @fp:    The request frame
1466239e8104SJoe Eykholt  *
1467239e8104SJoe Eykholt  * On success, the sequence pointer will be returned and also in fr_seq(@fp).
146862bdb645SJoe Eykholt  * A reference will be held on the exchange/sequence for the caller, which
146962bdb645SJoe Eykholt  * must call fc_seq_release().
1470239e8104SJoe Eykholt  */
147196d564e2SHannes Reinecke struct fc_seq *fc_seq_assign(struct fc_lport *lport, struct fc_frame *fp)
1472239e8104SJoe Eykholt {
1473239e8104SJoe Eykholt 	struct fc_exch_mgr_anchor *ema;
1474239e8104SJoe Eykholt 
1475239e8104SJoe Eykholt 	WARN_ON(lport != fr_dev(fp));
1476239e8104SJoe Eykholt 	WARN_ON(fr_seq(fp));
1477239e8104SJoe Eykholt 	fr_seq(fp) = NULL;
1478239e8104SJoe Eykholt 
1479239e8104SJoe Eykholt 	list_for_each_entry(ema, &lport->ema_list, ema_list)
1480239e8104SJoe Eykholt 		if ((!ema->match || ema->match(fp)) &&
1481530994d6SHillf Danton 		    fc_seq_lookup_recip(lport, ema->mp, fp) == FC_RJT_NONE)
1482239e8104SJoe Eykholt 			break;
1483239e8104SJoe Eykholt 	return fr_seq(fp);
1484239e8104SJoe Eykholt }
148596d564e2SHannes Reinecke EXPORT_SYMBOL(fc_seq_assign);
1486239e8104SJoe Eykholt 
1487239e8104SJoe Eykholt /**
148862bdb645SJoe Eykholt  * fc_seq_release() - Release the hold
148962bdb645SJoe Eykholt  * @sp:    The sequence.
149062bdb645SJoe Eykholt  */
14919625cc48SHannes Reinecke void fc_seq_release(struct fc_seq *sp)
149262bdb645SJoe Eykholt {
149362bdb645SJoe Eykholt 	fc_exch_release(fc_seq_exch(sp));
149462bdb645SJoe Eykholt }
14959625cc48SHannes Reinecke EXPORT_SYMBOL(fc_seq_release);
149662bdb645SJoe Eykholt 
149762bdb645SJoe Eykholt /**
149892261156SJoe Eykholt  * fc_exch_recv_req() - Handler for an incoming request
14993a3b42bfSRobert Love  * @lport: The local port that received the request
15003a3b42bfSRobert Love  * @mp:	   The EM that the exchange is on
15013a3b42bfSRobert Love  * @fp:	   The request frame
150292261156SJoe Eykholt  *
150392261156SJoe Eykholt  * This is used when the other end is originating the exchange
150492261156SJoe Eykholt  * and the sequence.
150542e9a92fSRobert Love  */
15063a3b42bfSRobert Love static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp,
150742e9a92fSRobert Love 			     struct fc_frame *fp)
150842e9a92fSRobert Love {
150942e9a92fSRobert Love 	struct fc_frame_header *fh = fc_frame_header_get(fp);
151042e9a92fSRobert Love 	struct fc_seq *sp = NULL;
151142e9a92fSRobert Love 	struct fc_exch *ep = NULL;
151242e9a92fSRobert Love 	enum fc_pf_rjt_reason reject;
151342e9a92fSRobert Love 
1514174e1ebfSChris Leech 	/* We can have the wrong fc_lport at this point with NPIV, which is a
1515174e1ebfSChris Leech 	 * problem now that we know a new exchange needs to be allocated
1516174e1ebfSChris Leech 	 */
15173a3b42bfSRobert Love 	lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id));
15183a3b42bfSRobert Love 	if (!lport) {
1519174e1ebfSChris Leech 		fc_frame_free(fp);
1520174e1ebfSChris Leech 		return;
1521174e1ebfSChris Leech 	}
152292261156SJoe Eykholt 	fr_dev(fp) = lport;
1523174e1ebfSChris Leech 
152492261156SJoe Eykholt 	BUG_ON(fr_seq(fp));		/* XXX remove later */
152592261156SJoe Eykholt 
152692261156SJoe Eykholt 	/*
152792261156SJoe Eykholt 	 * If the RX_ID is 0xffff, don't allocate an exchange.
152892261156SJoe Eykholt 	 * The upper-level protocol may request one later, if needed.
152992261156SJoe Eykholt 	 */
153092261156SJoe Eykholt 	if (fh->fh_rx_id == htons(FC_XID_UNKNOWN))
1531c5cb444cSHannes Reinecke 		return fc_lport_recv(lport, fp);
153292261156SJoe Eykholt 
15333a3b42bfSRobert Love 	reject = fc_seq_lookup_recip(lport, mp, fp);
153442e9a92fSRobert Love 	if (reject == FC_RJT_NONE) {
153542e9a92fSRobert Love 		sp = fr_seq(fp);	/* sequence will be held */
153642e9a92fSRobert Love 		ep = fc_seq_exch(sp);
153742e9a92fSRobert Love 		fc_seq_send_ack(sp, fp);
1538f60e12e9SJoe Eykholt 		ep->encaps = fr_encaps(fp);
153942e9a92fSRobert Love 
154042e9a92fSRobert Love 		/*
154142e9a92fSRobert Love 		 * Call the receive function.
154242e9a92fSRobert Love 		 *
154342e9a92fSRobert Love 		 * The receive function may allocate a new sequence
154442e9a92fSRobert Love 		 * over the old one, so we shouldn't change the
154542e9a92fSRobert Love 		 * sequence after this.
154642e9a92fSRobert Love 		 *
154742e9a92fSRobert Love 		 * The frame will be freed by the receive function.
154842e9a92fSRobert Love 		 * If new exch resp handler is valid then call that
154942e9a92fSRobert Love 		 * first.
155042e9a92fSRobert Love 		 */
15517030fd62SBart Van Assche 		if (!fc_invoke_resp(ep, sp, fp))
1552c5cb444cSHannes Reinecke 			fc_lport_recv(lport, fp);
155342e9a92fSRobert Love 		fc_exch_release(ep);	/* release from lookup */
155442e9a92fSRobert Love 	} else {
15553a3b42bfSRobert Love 		FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n",
15563a3b42bfSRobert Love 			     reject);
155742e9a92fSRobert Love 		fc_frame_free(fp);
155842e9a92fSRobert Love 	}
155942e9a92fSRobert Love }
156042e9a92fSRobert Love 
15613a3b42bfSRobert Love /**
15623a3b42bfSRobert Love  * fc_exch_recv_seq_resp() - Handler for an incoming response where the other
15633a3b42bfSRobert Love  *			     end is the originator of the sequence that is a
15643a3b42bfSRobert Love  *			     response to our initial exchange
15653a3b42bfSRobert Love  * @mp: The EM that the exchange is on
15663a3b42bfSRobert Love  * @fp: The response frame
156742e9a92fSRobert Love  */
156842e9a92fSRobert Love static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp)
156942e9a92fSRobert Love {
157042e9a92fSRobert Love 	struct fc_frame_header *fh = fc_frame_header_get(fp);
157142e9a92fSRobert Love 	struct fc_seq *sp;
157242e9a92fSRobert Love 	struct fc_exch *ep;
157342e9a92fSRobert Love 	enum fc_sof sof;
157442e9a92fSRobert Love 	u32 f_ctl;
157542e9a92fSRobert Love 	int rc;
157642e9a92fSRobert Love 
157742e9a92fSRobert Love 	ep = fc_exch_find(mp, ntohs(fh->fh_ox_id));
157842e9a92fSRobert Love 	if (!ep) {
157942e9a92fSRobert Love 		atomic_inc(&mp->stats.xid_not_found);
158042e9a92fSRobert Love 		goto out;
158142e9a92fSRobert Love 	}
158230121d14SSteve Ma 	if (ep->esb_stat & ESB_ST_COMPLETE) {
158330121d14SSteve Ma 		atomic_inc(&mp->stats.xid_not_found);
15848236554aSHillf Danton 		goto rel;
158530121d14SSteve Ma 	}
158642e9a92fSRobert Love 	if (ep->rxid == FC_XID_UNKNOWN)
158742e9a92fSRobert Love 		ep->rxid = ntohs(fh->fh_rx_id);
158842e9a92fSRobert Love 	if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) {
158942e9a92fSRobert Love 		atomic_inc(&mp->stats.xid_not_found);
159042e9a92fSRobert Love 		goto rel;
159142e9a92fSRobert Love 	}
159242e9a92fSRobert Love 	if (ep->did != ntoh24(fh->fh_s_id) &&
159342e9a92fSRobert Love 	    ep->did != FC_FID_FLOGI) {
159442e9a92fSRobert Love 		atomic_inc(&mp->stats.xid_not_found);
159542e9a92fSRobert Love 		goto rel;
159642e9a92fSRobert Love 	}
159742e9a92fSRobert Love 	sof = fr_sof(fp);
159842e9a92fSRobert Love 	sp = &ep->seq;
1599b3667f91SJoe Eykholt 	if (fc_sof_is_init(sof)) {
1600a104c844SVasu Dev 		sp->ssb_stat |= SSB_ST_RESP;
1601b3667f91SJoe Eykholt 		sp->id = fh->fh_seq_id;
160242e9a92fSRobert Love 	}
1603a104c844SVasu Dev 
160442e9a92fSRobert Love 	f_ctl = ntoh24(fh->fh_f_ctl);
160542e9a92fSRobert Love 	fr_seq(fp) = sp;
16065d73bea2SBart Van Assche 
16075d73bea2SBart Van Assche 	spin_lock_bh(&ep->ex_lock);
160842e9a92fSRobert Love 	if (f_ctl & FC_FC_SEQ_INIT)
160942e9a92fSRobert Love 		ep->esb_stat |= ESB_ST_SEQ_INIT;
16105d73bea2SBart Van Assche 	spin_unlock_bh(&ep->ex_lock);
161142e9a92fSRobert Love 
161242e9a92fSRobert Love 	if (fc_sof_needs_ack(sof))
161342e9a92fSRobert Love 		fc_seq_send_ack(sp, fp);
161442e9a92fSRobert Love 
161542e9a92fSRobert Love 	if (fh->fh_type != FC_TYPE_FCP && fr_eof(fp) == FC_EOF_T &&
161642e9a92fSRobert Love 	    (f_ctl & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) ==
161742e9a92fSRobert Love 	    (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) {
161842e9a92fSRobert Love 		spin_lock_bh(&ep->ex_lock);
161942e9a92fSRobert Love 		rc = fc_exch_done_locked(ep);
162042e9a92fSRobert Love 		WARN_ON(fc_seq_exch(sp) != ep);
162142e9a92fSRobert Love 		spin_unlock_bh(&ep->ex_lock);
162242e9a92fSRobert Love 		if (!rc)
1623b2f0091fSVasu Dev 			fc_exch_delete(ep);
162442e9a92fSRobert Love 	}
162542e9a92fSRobert Love 
162642e9a92fSRobert Love 	/*
162742e9a92fSRobert Love 	 * Call the receive function.
162842e9a92fSRobert Love 	 * The sequence is held (has a refcnt) for us,
162942e9a92fSRobert Love 	 * but not for the receive function.
163042e9a92fSRobert Love 	 *
163142e9a92fSRobert Love 	 * The receive function may allocate a new sequence
163242e9a92fSRobert Love 	 * over the old one, so we shouldn't change the
163342e9a92fSRobert Love 	 * sequence after this.
163442e9a92fSRobert Love 	 *
163542e9a92fSRobert Love 	 * The frame will be freed by the receive function.
163642e9a92fSRobert Love 	 * If new exch resp handler is valid then call that
163742e9a92fSRobert Love 	 * first.
163842e9a92fSRobert Love 	 */
1639f6979adeSBart Van Assche 	if (!fc_invoke_resp(ep, sp, fp))
1640f6979adeSBart Van Assche 		fc_frame_free(fp);
16417030fd62SBart Van Assche 
164242e9a92fSRobert Love 	fc_exch_release(ep);
164342e9a92fSRobert Love 	return;
164442e9a92fSRobert Love rel:
164542e9a92fSRobert Love 	fc_exch_release(ep);
164642e9a92fSRobert Love out:
164742e9a92fSRobert Love 	fc_frame_free(fp);
164842e9a92fSRobert Love }
164942e9a92fSRobert Love 
16503a3b42bfSRobert Love /**
16513a3b42bfSRobert Love  * fc_exch_recv_resp() - Handler for a sequence where other end is
16523a3b42bfSRobert Love  *			 responding to our sequence
16533a3b42bfSRobert Love  * @mp: The EM that the exchange is on
16543a3b42bfSRobert Love  * @fp: The response frame
165542e9a92fSRobert Love  */
165642e9a92fSRobert Love static void fc_exch_recv_resp(struct fc_exch_mgr *mp, struct fc_frame *fp)
165742e9a92fSRobert Love {
165842e9a92fSRobert Love 	struct fc_seq *sp;
165942e9a92fSRobert Love 
166042e9a92fSRobert Love 	sp = fc_seq_lookup_orig(mp, fp);	/* doesn't hold sequence */
1661d459b7eaSRobert Love 
1662d459b7eaSRobert Love 	if (!sp)
166342e9a92fSRobert Love 		atomic_inc(&mp->stats.xid_not_found);
1664d459b7eaSRobert Love 	else
166542e9a92fSRobert Love 		atomic_inc(&mp->stats.non_bls_resp);
1666d459b7eaSRobert Love 
166742e9a92fSRobert Love 	fc_frame_free(fp);
166842e9a92fSRobert Love }
166942e9a92fSRobert Love 
16703a3b42bfSRobert Love /**
16713a3b42bfSRobert Love  * fc_exch_abts_resp() - Handler for a response to an ABT
16723a3b42bfSRobert Love  * @ep: The exchange that the frame is on
16733a3b42bfSRobert Love  * @fp: The response frame
16743a3b42bfSRobert Love  *
16753a3b42bfSRobert Love  * This response would be to an ABTS cancelling an exchange or sequence.
16763a3b42bfSRobert Love  * The response can be either BA_ACC or BA_RJT
167742e9a92fSRobert Love  */
167842e9a92fSRobert Love static void fc_exch_abts_resp(struct fc_exch *ep, struct fc_frame *fp)
167942e9a92fSRobert Love {
168042e9a92fSRobert Love 	struct fc_frame_header *fh;
168142e9a92fSRobert Love 	struct fc_ba_acc *ap;
168242e9a92fSRobert Love 	struct fc_seq *sp;
168342e9a92fSRobert Love 	u16 low;
168442e9a92fSRobert Love 	u16 high;
168542e9a92fSRobert Love 	int rc = 1, has_rec = 0;
168642e9a92fSRobert Love 
168742e9a92fSRobert Love 	fh = fc_frame_header_get(fp);
16887414705eSRobert Love 	FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl,
16897414705eSRobert Love 		    fc_exch_rctl_name(fh->fh_r_ctl));
169042e9a92fSRobert Love 
1691b29a4f30SVasu Dev 	if (cancel_delayed_work_sync(&ep->timeout_work)) {
16923a292605SRobert Love 		FC_EXCH_DBG(ep, "Exchange timer canceled due to ABTS response\n");
169342e9a92fSRobert Love 		fc_exch_release(ep);	/* release from pending timer hold */
1694b29a4f30SVasu Dev 	}
169542e9a92fSRobert Love 
169642e9a92fSRobert Love 	spin_lock_bh(&ep->ex_lock);
169742e9a92fSRobert Love 	switch (fh->fh_r_ctl) {
169842e9a92fSRobert Love 	case FC_RCTL_BA_ACC:
169942e9a92fSRobert Love 		ap = fc_frame_payload_get(fp, sizeof(*ap));
170042e9a92fSRobert Love 		if (!ap)
170142e9a92fSRobert Love 			break;
170242e9a92fSRobert Love 
170342e9a92fSRobert Love 		/*
170442e9a92fSRobert Love 		 * Decide whether to establish a Recovery Qualifier.
170542e9a92fSRobert Love 		 * We do this if there is a non-empty SEQ_CNT range and
170642e9a92fSRobert Love 		 * SEQ_ID is the same as the one we aborted.
170742e9a92fSRobert Love 		 */
170842e9a92fSRobert Love 		low = ntohs(ap->ba_low_seq_cnt);
170942e9a92fSRobert Love 		high = ntohs(ap->ba_high_seq_cnt);
171042e9a92fSRobert Love 		if ((ep->esb_stat & ESB_ST_REC_QUAL) == 0 &&
171142e9a92fSRobert Love 		    (ap->ba_seq_id_val != FC_BA_SEQ_ID_VAL ||
171242e9a92fSRobert Love 		     ap->ba_seq_id == ep->seq_id) && low != high) {
171342e9a92fSRobert Love 			ep->esb_stat |= ESB_ST_REC_QUAL;
171442e9a92fSRobert Love 			fc_exch_hold(ep);  /* hold for recovery qualifier */
171542e9a92fSRobert Love 			has_rec = 1;
171642e9a92fSRobert Love 		}
171742e9a92fSRobert Love 		break;
171842e9a92fSRobert Love 	case FC_RCTL_BA_RJT:
171942e9a92fSRobert Love 		break;
172042e9a92fSRobert Love 	default:
172142e9a92fSRobert Love 		break;
172242e9a92fSRobert Love 	}
172342e9a92fSRobert Love 
172442e9a92fSRobert Love 	/* do we need to do some other checks here. Can we reuse more of
172542e9a92fSRobert Love 	 * fc_exch_recv_seq_resp
172642e9a92fSRobert Love 	 */
172742e9a92fSRobert Love 	sp = &ep->seq;
172842e9a92fSRobert Love 	/*
172942e9a92fSRobert Love 	 * do we want to check END_SEQ as well as LAST_SEQ here?
173042e9a92fSRobert Love 	 */
173142e9a92fSRobert Love 	if (ep->fh_type != FC_TYPE_FCP &&
173242e9a92fSRobert Love 	    ntoh24(fh->fh_f_ctl) & FC_FC_LAST_SEQ)
173342e9a92fSRobert Love 		rc = fc_exch_done_locked(ep);
173442e9a92fSRobert Love 	spin_unlock_bh(&ep->ex_lock);
17357030fd62SBart Van Assche 
17367030fd62SBart Van Assche 	fc_exch_hold(ep);
173742e9a92fSRobert Love 	if (!rc)
1738b2f0091fSVasu Dev 		fc_exch_delete(ep);
1739f6979adeSBart Van Assche 	if (!fc_invoke_resp(ep, sp, fp))
1740f6979adeSBart Van Assche 		fc_frame_free(fp);
174142e9a92fSRobert Love 	if (has_rec)
174242e9a92fSRobert Love 		fc_exch_timer_set(ep, ep->r_a_tov);
17437030fd62SBart Van Assche 	fc_exch_release(ep);
174442e9a92fSRobert Love }
174542e9a92fSRobert Love 
17463a3b42bfSRobert Love /**
17473a3b42bfSRobert Love  * fc_exch_recv_bls() - Handler for a BLS sequence
17483a3b42bfSRobert Love  * @mp: The EM that the exchange is on
17493a3b42bfSRobert Love  * @fp: The request frame
17503a3b42bfSRobert Love  *
17513a3b42bfSRobert Love  * The BLS frame is always a sequence initiated by the remote side.
175242e9a92fSRobert Love  * We may be either the originator or recipient of the exchange.
175342e9a92fSRobert Love  */
175442e9a92fSRobert Love static void fc_exch_recv_bls(struct fc_exch_mgr *mp, struct fc_frame *fp)
175542e9a92fSRobert Love {
175642e9a92fSRobert Love 	struct fc_frame_header *fh;
175742e9a92fSRobert Love 	struct fc_exch *ep;
175842e9a92fSRobert Love 	u32 f_ctl;
175942e9a92fSRobert Love 
176042e9a92fSRobert Love 	fh = fc_frame_header_get(fp);
176142e9a92fSRobert Love 	f_ctl = ntoh24(fh->fh_f_ctl);
176242e9a92fSRobert Love 	fr_seq(fp) = NULL;
176342e9a92fSRobert Love 
176442e9a92fSRobert Love 	ep = fc_exch_find(mp, (f_ctl & FC_FC_EX_CTX) ?
176542e9a92fSRobert Love 			  ntohs(fh->fh_ox_id) : ntohs(fh->fh_rx_id));
176642e9a92fSRobert Love 	if (ep && (f_ctl & FC_FC_SEQ_INIT)) {
176742e9a92fSRobert Love 		spin_lock_bh(&ep->ex_lock);
176842e9a92fSRobert Love 		ep->esb_stat |= ESB_ST_SEQ_INIT;
176942e9a92fSRobert Love 		spin_unlock_bh(&ep->ex_lock);
177042e9a92fSRobert Love 	}
177142e9a92fSRobert Love 	if (f_ctl & FC_FC_SEQ_CTX) {
177242e9a92fSRobert Love 		/*
177342e9a92fSRobert Love 		 * A response to a sequence we initiated.
177442e9a92fSRobert Love 		 * This should only be ACKs for class 2 or F.
177542e9a92fSRobert Love 		 */
177642e9a92fSRobert Love 		switch (fh->fh_r_ctl) {
177742e9a92fSRobert Love 		case FC_RCTL_ACK_1:
177842e9a92fSRobert Love 		case FC_RCTL_ACK_0:
177942e9a92fSRobert Love 			break;
178042e9a92fSRobert Love 		default:
1781d4042e9cSBhanu Prakash Gollapudi 			if (ep)
1782b20d9bfdSBart Van Assche 				FC_EXCH_DBG(ep, "BLS rctl %x - %s received\n",
178342e9a92fSRobert Love 					    fh->fh_r_ctl,
178442e9a92fSRobert Love 					    fc_exch_rctl_name(fh->fh_r_ctl));
178542e9a92fSRobert Love 			break;
178642e9a92fSRobert Love 		}
178742e9a92fSRobert Love 		fc_frame_free(fp);
178842e9a92fSRobert Love 	} else {
178942e9a92fSRobert Love 		switch (fh->fh_r_ctl) {
179042e9a92fSRobert Love 		case FC_RCTL_BA_RJT:
179142e9a92fSRobert Love 		case FC_RCTL_BA_ACC:
179242e9a92fSRobert Love 			if (ep)
179342e9a92fSRobert Love 				fc_exch_abts_resp(ep, fp);
179442e9a92fSRobert Love 			else
179542e9a92fSRobert Love 				fc_frame_free(fp);
179642e9a92fSRobert Love 			break;
179742e9a92fSRobert Love 		case FC_RCTL_BA_ABTS:
1798b73aa56eSHannes Reinecke 			if (ep)
179942e9a92fSRobert Love 				fc_exch_recv_abts(ep, fp);
1800b73aa56eSHannes Reinecke 			else
1801b73aa56eSHannes Reinecke 				fc_frame_free(fp);
180242e9a92fSRobert Love 			break;
180342e9a92fSRobert Love 		default:			/* ignore junk */
180442e9a92fSRobert Love 			fc_frame_free(fp);
180542e9a92fSRobert Love 			break;
180642e9a92fSRobert Love 		}
180742e9a92fSRobert Love 	}
180842e9a92fSRobert Love 	if (ep)
180942e9a92fSRobert Love 		fc_exch_release(ep);	/* release hold taken by fc_exch_find */
181042e9a92fSRobert Love }
181142e9a92fSRobert Love 
18123a3b42bfSRobert Love /**
18133a3b42bfSRobert Love  * fc_seq_ls_acc() - Accept sequence with LS_ACC
181492261156SJoe Eykholt  * @rx_fp: The received frame, not freed here.
18153a3b42bfSRobert Love  *
181642e9a92fSRobert Love  * If this fails due to allocation or transmit congestion, assume the
181742e9a92fSRobert Love  * originator will repeat the sequence.
181842e9a92fSRobert Love  */
181992261156SJoe Eykholt static void fc_seq_ls_acc(struct fc_frame *rx_fp)
182042e9a92fSRobert Love {
182192261156SJoe Eykholt 	struct fc_lport *lport;
182242e9a92fSRobert Love 	struct fc_els_ls_acc *acc;
182342e9a92fSRobert Love 	struct fc_frame *fp;
182457d3ec7eSHannes Reinecke 	struct fc_seq *sp;
182542e9a92fSRobert Love 
182692261156SJoe Eykholt 	lport = fr_dev(rx_fp);
182757d3ec7eSHannes Reinecke 	sp = fr_seq(rx_fp);
182892261156SJoe Eykholt 	fp = fc_frame_alloc(lport, sizeof(*acc));
182957d3ec7eSHannes Reinecke 	if (!fp) {
183057d3ec7eSHannes Reinecke 		FC_EXCH_DBG(fc_seq_exch(sp),
183157d3ec7eSHannes Reinecke 			    "exch: drop LS_ACC, out of memory\n");
183292261156SJoe Eykholt 		return;
183357d3ec7eSHannes Reinecke 	}
183442e9a92fSRobert Love 	acc = fc_frame_payload_get(fp, sizeof(*acc));
183542e9a92fSRobert Love 	memset(acc, 0, sizeof(*acc));
183642e9a92fSRobert Love 	acc->la_cmd = ELS_LS_ACC;
183792261156SJoe Eykholt 	fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
183892261156SJoe Eykholt 	lport->tt.frame_send(lport, fp);
183942e9a92fSRobert Love }
184042e9a92fSRobert Love 
18413a3b42bfSRobert Love /**
18423a3b42bfSRobert Love  * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT
184392261156SJoe Eykholt  * @rx_fp: The received frame, not freed here.
18443a3b42bfSRobert Love  * @reason: The reason the sequence is being rejected
184592261156SJoe Eykholt  * @explan: The explanation for the rejection
18463a3b42bfSRobert Love  *
184742e9a92fSRobert Love  * If this fails due to allocation or transmit congestion, assume the
184842e9a92fSRobert Love  * originator will repeat the sequence.
184942e9a92fSRobert Love  */
185092261156SJoe Eykholt static void fc_seq_ls_rjt(struct fc_frame *rx_fp, enum fc_els_rjt_reason reason,
185142e9a92fSRobert Love 			  enum fc_els_rjt_explan explan)
185242e9a92fSRobert Love {
185392261156SJoe Eykholt 	struct fc_lport *lport;
185442e9a92fSRobert Love 	struct fc_els_ls_rjt *rjt;
185542e9a92fSRobert Love 	struct fc_frame *fp;
185657d3ec7eSHannes Reinecke 	struct fc_seq *sp;
185742e9a92fSRobert Love 
185892261156SJoe Eykholt 	lport = fr_dev(rx_fp);
185957d3ec7eSHannes Reinecke 	sp = fr_seq(rx_fp);
186092261156SJoe Eykholt 	fp = fc_frame_alloc(lport, sizeof(*rjt));
186157d3ec7eSHannes Reinecke 	if (!fp) {
186257d3ec7eSHannes Reinecke 		FC_EXCH_DBG(fc_seq_exch(sp),
186357d3ec7eSHannes Reinecke 			    "exch: drop LS_ACC, out of memory\n");
186492261156SJoe Eykholt 		return;
186557d3ec7eSHannes Reinecke 	}
186642e9a92fSRobert Love 	rjt = fc_frame_payload_get(fp, sizeof(*rjt));
186742e9a92fSRobert Love 	memset(rjt, 0, sizeof(*rjt));
186842e9a92fSRobert Love 	rjt->er_cmd = ELS_LS_RJT;
186942e9a92fSRobert Love 	rjt->er_reason = reason;
187042e9a92fSRobert Love 	rjt->er_explan = explan;
187192261156SJoe Eykholt 	fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
187292261156SJoe Eykholt 	lport->tt.frame_send(lport, fp);
187342e9a92fSRobert Love }
187442e9a92fSRobert Love 
18753a3b42bfSRobert Love /**
18763a3b42bfSRobert Love  * fc_exch_reset() - Reset an exchange
18773a3b42bfSRobert Love  * @ep: The exchange to be reset
18787030fd62SBart Van Assche  *
18797030fd62SBart Van Assche  * Note: May sleep if invoked from outside a response handler.
18803a3b42bfSRobert Love  */
188142e9a92fSRobert Love static void fc_exch_reset(struct fc_exch *ep)
188242e9a92fSRobert Love {
188342e9a92fSRobert Love 	struct fc_seq *sp;
188442e9a92fSRobert Love 	int rc = 1;
188542e9a92fSRobert Love 
188642e9a92fSRobert Love 	spin_lock_bh(&ep->ex_lock);
188742e9a92fSRobert Love 	ep->state |= FC_EX_RST_CLEANUP;
1888b29a4f30SVasu Dev 	fc_exch_timer_cancel(ep);
188942e9a92fSRobert Love 	if (ep->esb_stat & ESB_ST_REC_QUAL)
189042e9a92fSRobert Love 		atomic_dec(&ep->ex_refcnt);	/* drop hold for rec_qual */
189142e9a92fSRobert Love 	ep->esb_stat &= ~ESB_ST_REC_QUAL;
189242e9a92fSRobert Love 	sp = &ep->seq;
189342e9a92fSRobert Love 	rc = fc_exch_done_locked(ep);
189442e9a92fSRobert Love 	spin_unlock_bh(&ep->ex_lock);
18957030fd62SBart Van Assche 
18967030fd62SBart Van Assche 	fc_exch_hold(ep);
18977030fd62SBart Van Assche 
189842e9a92fSRobert Love 	if (!rc)
1899b2f0091fSVasu Dev 		fc_exch_delete(ep);
190042e9a92fSRobert Love 
19017030fd62SBart Van Assche 	fc_invoke_resp(ep, sp, ERR_PTR(-FC_EX_CLOSED));
19027030fd62SBart Van Assche 	fc_seq_set_resp(sp, NULL, ep->arg);
19037030fd62SBart Van Assche 	fc_exch_release(ep);
190442e9a92fSRobert Love }
190542e9a92fSRobert Love 
1906b2f0091fSVasu Dev /**
19073a3b42bfSRobert Love  * fc_exch_pool_reset() - Reset a per cpu exchange pool
19083a3b42bfSRobert Love  * @lport: The local port that the exchange pool is on
19093a3b42bfSRobert Love  * @pool:  The exchange pool to be reset
19103a3b42bfSRobert Love  * @sid:   The source ID
19113a3b42bfSRobert Love  * @did:   The destination ID
1912b2f0091fSVasu Dev  *
19133a3b42bfSRobert Love  * Resets a per cpu exches pool, releasing all of its sequences
19143a3b42bfSRobert Love  * and exchanges. If sid is non-zero then reset only exchanges
19153a3b42bfSRobert Love  * we sourced from the local port's FID. If did is non-zero then
19163a3b42bfSRobert Love  * only reset exchanges destined for the local port's FID.
191742e9a92fSRobert Love  */
1918b2f0091fSVasu Dev static void fc_exch_pool_reset(struct fc_lport *lport,
1919b2f0091fSVasu Dev 			       struct fc_exch_pool *pool,
1920b2f0091fSVasu Dev 			       u32 sid, u32 did)
192142e9a92fSRobert Love {
192242e9a92fSRobert Love 	struct fc_exch *ep;
192342e9a92fSRobert Love 	struct fc_exch *next;
192442e9a92fSRobert Love 
1925b2f0091fSVasu Dev 	spin_lock_bh(&pool->lock);
192642e9a92fSRobert Love restart:
1927b2f0091fSVasu Dev 	list_for_each_entry_safe(ep, next, &pool->ex_list, ex_list) {
1928b2f0091fSVasu Dev 		if ((lport == ep->lp) &&
192952ff878cSVasu Dev 		    (sid == 0 || sid == ep->sid) &&
193042e9a92fSRobert Love 		    (did == 0 || did == ep->did)) {
193142e9a92fSRobert Love 			fc_exch_hold(ep);
1932b2f0091fSVasu Dev 			spin_unlock_bh(&pool->lock);
193342e9a92fSRobert Love 
193442e9a92fSRobert Love 			fc_exch_reset(ep);
193542e9a92fSRobert Love 
193642e9a92fSRobert Love 			fc_exch_release(ep);
1937b2f0091fSVasu Dev 			spin_lock_bh(&pool->lock);
193842e9a92fSRobert Love 
193942e9a92fSRobert Love 			/*
194052ff878cSVasu Dev 			 * must restart loop incase while lock
194152ff878cSVasu Dev 			 * was down multiple eps were released.
194242e9a92fSRobert Love 			 */
194342e9a92fSRobert Love 			goto restart;
194442e9a92fSRobert Love 		}
194542e9a92fSRobert Love 	}
1946b6e3c840SVasu Dev 	pool->next_index = 0;
1947b6e3c840SVasu Dev 	pool->left = FC_XID_UNKNOWN;
1948b6e3c840SVasu Dev 	pool->right = FC_XID_UNKNOWN;
1949b2f0091fSVasu Dev 	spin_unlock_bh(&pool->lock);
1950b2f0091fSVasu Dev }
1951b2f0091fSVasu Dev 
1952b2f0091fSVasu Dev /**
19533a3b42bfSRobert Love  * fc_exch_mgr_reset() - Reset all EMs of a local port
19543a3b42bfSRobert Love  * @lport: The local port whose EMs are to be reset
19553a3b42bfSRobert Love  * @sid:   The source ID
19563a3b42bfSRobert Love  * @did:   The destination ID
1957b2f0091fSVasu Dev  *
19583a3b42bfSRobert Love  * Reset all EMs associated with a given local port. Release all
19593a3b42bfSRobert Love  * sequences and exchanges. If sid is non-zero then reset only the
19603a3b42bfSRobert Love  * exchanges sent from the local port's FID. If did is non-zero then
19613a3b42bfSRobert Love  * reset only exchanges destined for the local port's FID.
1962b2f0091fSVasu Dev  */
1963b2f0091fSVasu Dev void fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did)
1964b2f0091fSVasu Dev {
1965b2f0091fSVasu Dev 	struct fc_exch_mgr_anchor *ema;
1966b2f0091fSVasu Dev 	unsigned int cpu;
1967b2f0091fSVasu Dev 
1968b2f0091fSVasu Dev 	list_for_each_entry(ema, &lport->ema_list, ema_list) {
1969b2f0091fSVasu Dev 		for_each_possible_cpu(cpu)
1970b2f0091fSVasu Dev 			fc_exch_pool_reset(lport,
1971b2f0091fSVasu Dev 					   per_cpu_ptr(ema->mp->pool, cpu),
1972b2f0091fSVasu Dev 					   sid, did);
197342e9a92fSRobert Love 	}
197452ff878cSVasu Dev }
197542e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_reset);
197642e9a92fSRobert Love 
19773a3b42bfSRobert Love /**
197892261156SJoe Eykholt  * fc_exch_lookup() - find an exchange
197992261156SJoe Eykholt  * @lport: The local port
198092261156SJoe Eykholt  * @xid: The exchange ID
198192261156SJoe Eykholt  *
198292261156SJoe Eykholt  * Returns exchange pointer with hold for caller, or NULL if not found.
198392261156SJoe Eykholt  */
198492261156SJoe Eykholt static struct fc_exch *fc_exch_lookup(struct fc_lport *lport, u32 xid)
198592261156SJoe Eykholt {
198692261156SJoe Eykholt 	struct fc_exch_mgr_anchor *ema;
198792261156SJoe Eykholt 
198892261156SJoe Eykholt 	list_for_each_entry(ema, &lport->ema_list, ema_list)
198992261156SJoe Eykholt 		if (ema->mp->min_xid <= xid && xid <= ema->mp->max_xid)
199092261156SJoe Eykholt 			return fc_exch_find(ema->mp, xid);
199192261156SJoe Eykholt 	return NULL;
199292261156SJoe Eykholt }
199392261156SJoe Eykholt 
199492261156SJoe Eykholt /**
19953a3b42bfSRobert Love  * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests
199692261156SJoe Eykholt  * @rfp: The REC frame, not freed here.
19973a3b42bfSRobert Love  *
199842e9a92fSRobert Love  * Note that the requesting port may be different than the S_ID in the request.
199942e9a92fSRobert Love  */
200092261156SJoe Eykholt static void fc_exch_els_rec(struct fc_frame *rfp)
200142e9a92fSRobert Love {
200292261156SJoe Eykholt 	struct fc_lport *lport;
200342e9a92fSRobert Love 	struct fc_frame *fp;
200442e9a92fSRobert Love 	struct fc_exch *ep;
200542e9a92fSRobert Love 	struct fc_els_rec *rp;
200642e9a92fSRobert Love 	struct fc_els_rec_acc *acc;
200742e9a92fSRobert Love 	enum fc_els_rjt_reason reason = ELS_RJT_LOGIC;
200842e9a92fSRobert Love 	enum fc_els_rjt_explan explan;
200942e9a92fSRobert Love 	u32 sid;
2010e0a25286SHannes Reinecke 	u16 xid, rxid, oxid;
201142e9a92fSRobert Love 
201292261156SJoe Eykholt 	lport = fr_dev(rfp);
201342e9a92fSRobert Love 	rp = fc_frame_payload_get(rfp, sizeof(*rp));
201442e9a92fSRobert Love 	explan = ELS_EXPL_INV_LEN;
201542e9a92fSRobert Love 	if (!rp)
201642e9a92fSRobert Love 		goto reject;
201742e9a92fSRobert Love 	sid = ntoh24(rp->rec_s_id);
201842e9a92fSRobert Love 	rxid = ntohs(rp->rec_rx_id);
201942e9a92fSRobert Love 	oxid = ntohs(rp->rec_ox_id);
202042e9a92fSRobert Love 
202142e9a92fSRobert Love 	explan = ELS_EXPL_OXID_RXID;
2022e0a25286SHannes Reinecke 	if (sid == fc_host_port_id(lport->host))
2023e0a25286SHannes Reinecke 		xid = oxid;
2024e0a25286SHannes Reinecke 	else
2025e0a25286SHannes Reinecke 		xid = rxid;
2026e0a25286SHannes Reinecke 	if (xid == FC_XID_UNKNOWN) {
2027e0a25286SHannes Reinecke 		FC_LPORT_DBG(lport,
2028e0a25286SHannes Reinecke 			     "REC request from %x: invalid rxid %x oxid %x\n",
2029e0a25286SHannes Reinecke 			     sid, rxid, oxid);
2030e0a25286SHannes Reinecke 		goto reject;
2031e0a25286SHannes Reinecke 	}
2032e0a25286SHannes Reinecke 	ep = fc_exch_lookup(lport, xid);
203357d3ec7eSHannes Reinecke 	if (!ep) {
203457d3ec7eSHannes Reinecke 		FC_LPORT_DBG(lport,
203557d3ec7eSHannes Reinecke 			     "REC request from %x: rxid %x oxid %x not found\n",
203657d3ec7eSHannes Reinecke 			     sid, rxid, oxid);
203742e9a92fSRobert Love 		goto reject;
203857d3ec7eSHannes Reinecke 	}
203957d3ec7eSHannes Reinecke 	FC_EXCH_DBG(ep, "REC request from %x: rxid %x oxid %x\n",
204057d3ec7eSHannes Reinecke 		    sid, rxid, oxid);
204192261156SJoe Eykholt 	if (ep->oid != sid || oxid != ep->oxid)
204292261156SJoe Eykholt 		goto rel;
204392261156SJoe Eykholt 	if (rxid != FC_XID_UNKNOWN && rxid != ep->rxid)
204492261156SJoe Eykholt 		goto rel;
204592261156SJoe Eykholt 	fp = fc_frame_alloc(lport, sizeof(*acc));
204657d3ec7eSHannes Reinecke 	if (!fp) {
204757d3ec7eSHannes Reinecke 		FC_EXCH_DBG(ep, "Drop REC request, out of memory\n");
204842e9a92fSRobert Love 		goto out;
204957d3ec7eSHannes Reinecke 	}
205092261156SJoe Eykholt 
205142e9a92fSRobert Love 	acc = fc_frame_payload_get(fp, sizeof(*acc));
205242e9a92fSRobert Love 	memset(acc, 0, sizeof(*acc));
205342e9a92fSRobert Love 	acc->reca_cmd = ELS_LS_ACC;
205442e9a92fSRobert Love 	acc->reca_ox_id = rp->rec_ox_id;
205542e9a92fSRobert Love 	memcpy(acc->reca_ofid, rp->rec_s_id, 3);
205642e9a92fSRobert Love 	acc->reca_rx_id = htons(ep->rxid);
205742e9a92fSRobert Love 	if (ep->sid == ep->oid)
205842e9a92fSRobert Love 		hton24(acc->reca_rfid, ep->did);
205942e9a92fSRobert Love 	else
206042e9a92fSRobert Love 		hton24(acc->reca_rfid, ep->sid);
206142e9a92fSRobert Love 	acc->reca_fc4value = htonl(ep->seq.rec_data);
206242e9a92fSRobert Love 	acc->reca_e_stat = htonl(ep->esb_stat & (ESB_ST_RESP |
206342e9a92fSRobert Love 						 ESB_ST_SEQ_INIT |
206442e9a92fSRobert Love 						 ESB_ST_COMPLETE));
206592261156SJoe Eykholt 	fc_fill_reply_hdr(fp, rfp, FC_RCTL_ELS_REP, 0);
206692261156SJoe Eykholt 	lport->tt.frame_send(lport, fp);
206742e9a92fSRobert Love out:
206842e9a92fSRobert Love 	fc_exch_release(ep);
206942e9a92fSRobert Love 	return;
207042e9a92fSRobert Love 
207142e9a92fSRobert Love rel:
207242e9a92fSRobert Love 	fc_exch_release(ep);
207342e9a92fSRobert Love reject:
207492261156SJoe Eykholt 	fc_seq_ls_rjt(rfp, reason, explan);
207542e9a92fSRobert Love }
207642e9a92fSRobert Love 
20773a3b42bfSRobert Love /**
20783a3b42bfSRobert Love  * fc_exch_rrq_resp() - Handler for RRQ responses
20793a3b42bfSRobert Love  * @sp:	 The sequence that the RRQ is on
20803a3b42bfSRobert Love  * @fp:	 The RRQ frame
20813a3b42bfSRobert Love  * @arg: The exchange that the RRQ is on
208242e9a92fSRobert Love  *
208342e9a92fSRobert Love  * TODO: fix error handler.
208442e9a92fSRobert Love  */
208542e9a92fSRobert Love static void fc_exch_rrq_resp(struct fc_seq *sp, struct fc_frame *fp, void *arg)
208642e9a92fSRobert Love {
208742e9a92fSRobert Love 	struct fc_exch *aborted_ep = arg;
208842e9a92fSRobert Love 	unsigned int op;
208942e9a92fSRobert Love 
209042e9a92fSRobert Love 	if (IS_ERR(fp)) {
209142e9a92fSRobert Love 		int err = PTR_ERR(fp);
209242e9a92fSRobert Love 
209378342da3SVasu Dev 		if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT)
209442e9a92fSRobert Love 			goto cleanup;
20957414705eSRobert Love 		FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, "
20967414705eSRobert Love 			    "frame error %d\n", err);
209742e9a92fSRobert Love 		return;
209842e9a92fSRobert Love 	}
209942e9a92fSRobert Love 
210042e9a92fSRobert Love 	op = fc_frame_payload_op(fp);
210142e9a92fSRobert Love 	fc_frame_free(fp);
210242e9a92fSRobert Love 
210342e9a92fSRobert Love 	switch (op) {
210442e9a92fSRobert Love 	case ELS_LS_RJT:
2105b20d9bfdSBart Van Assche 		FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ\n");
210642e9a92fSRobert Love 		/* fall through */
210742e9a92fSRobert Love 	case ELS_LS_ACC:
210842e9a92fSRobert Love 		goto cleanup;
210942e9a92fSRobert Love 	default:
2110b20d9bfdSBart Van Assche 		FC_EXCH_DBG(aborted_ep, "unexpected response op %x for RRQ\n",
2111b20d9bfdSBart Van Assche 			    op);
211242e9a92fSRobert Love 		return;
211342e9a92fSRobert Love 	}
211442e9a92fSRobert Love 
211542e9a92fSRobert Love cleanup:
211642e9a92fSRobert Love 	fc_exch_done(&aborted_ep->seq);
211742e9a92fSRobert Love 	/* drop hold for rec qual */
211842e9a92fSRobert Love 	fc_exch_release(aborted_ep);
211942e9a92fSRobert Love }
212042e9a92fSRobert Love 
21211a7b75aeSRobert Love 
21221a7b75aeSRobert Love /**
21233a3b42bfSRobert Love  * fc_exch_seq_send() - Send a frame using a new exchange and sequence
21243a3b42bfSRobert Love  * @lport:	The local port to send the frame on
21253a3b42bfSRobert Love  * @fp:		The frame to be sent
21263a3b42bfSRobert Love  * @resp:	The response handler for this request
21273a3b42bfSRobert Love  * @destructor: The destructor for the exchange
21283a3b42bfSRobert Love  * @arg:	The argument to be passed to the response handler
21293a3b42bfSRobert Love  * @timer_msec: The timeout period for the exchange
21303a3b42bfSRobert Love  *
21313afd2d15SHannes Reinecke  * The exchange response handler is set in this routine to resp()
21323afd2d15SHannes Reinecke  * function pointer. It can be called in two scenarios: if a timeout
21333afd2d15SHannes Reinecke  * occurs or if a response frame is received for the exchange. The
21343afd2d15SHannes Reinecke  * fc_frame pointer in response handler will also indicate timeout
21353afd2d15SHannes Reinecke  * as error using IS_ERR related macros.
21363afd2d15SHannes Reinecke  *
21373afd2d15SHannes Reinecke  * The exchange destructor handler is also set in this routine.
21383afd2d15SHannes Reinecke  * The destructor handler is invoked by EM layer when exchange
21393afd2d15SHannes Reinecke  * is about to free, this can be used by caller to free its
21403afd2d15SHannes Reinecke  * resources along with exchange free.
21413afd2d15SHannes Reinecke  *
21423afd2d15SHannes Reinecke  * The arg is passed back to resp and destructor handler.
21433afd2d15SHannes Reinecke  *
21443afd2d15SHannes Reinecke  * The timeout value (in msec) for an exchange is set if non zero
21453afd2d15SHannes Reinecke  * timer_msec argument is specified. The timer is canceled when
21463afd2d15SHannes Reinecke  * it fires or when the exchange is done. The exchange timeout handler
21473afd2d15SHannes Reinecke  * is registered by EM layer.
21483afd2d15SHannes Reinecke  *
21493a3b42bfSRobert Love  * The frame pointer with some of the header's fields must be
21503a3b42bfSRobert Love  * filled before calling this routine, those fields are:
21513a3b42bfSRobert Love  *
21523a3b42bfSRobert Love  * - routing control
21533a3b42bfSRobert Love  * - FC port did
21543a3b42bfSRobert Love  * - FC port sid
21553a3b42bfSRobert Love  * - FC header type
21563a3b42bfSRobert Love  * - frame control
21573a3b42bfSRobert Love  * - parameter or relative offset
21581a7b75aeSRobert Love  */
21593afd2d15SHannes Reinecke struct fc_seq *fc_exch_seq_send(struct fc_lport *lport,
21601a7b75aeSRobert Love 				struct fc_frame *fp,
21611a7b75aeSRobert Love 				void (*resp)(struct fc_seq *,
21621a7b75aeSRobert Love 					     struct fc_frame *fp,
21631a7b75aeSRobert Love 					     void *arg),
21643afd2d15SHannes Reinecke 				void (*destructor)(struct fc_seq *, void *),
21651a7b75aeSRobert Love 				void *arg, u32 timer_msec)
21661a7b75aeSRobert Love {
21671a7b75aeSRobert Love 	struct fc_exch *ep;
21681a7b75aeSRobert Love 	struct fc_seq *sp = NULL;
21691a7b75aeSRobert Love 	struct fc_frame_header *fh;
21703ee17f59SYi Zou 	struct fc_fcp_pkt *fsp = NULL;
21711a7b75aeSRobert Love 	int rc = 1;
21721a7b75aeSRobert Love 
21733a3b42bfSRobert Love 	ep = fc_exch_alloc(lport, fp);
21741a7b75aeSRobert Love 	if (!ep) {
21751a7b75aeSRobert Love 		fc_frame_free(fp);
21761a7b75aeSRobert Love 		return NULL;
21771a7b75aeSRobert Love 	}
21781a7b75aeSRobert Love 	ep->esb_stat |= ESB_ST_SEQ_INIT;
21791a7b75aeSRobert Love 	fh = fc_frame_header_get(fp);
21801a7b75aeSRobert Love 	fc_exch_set_addr(ep, ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id));
21811a7b75aeSRobert Love 	ep->resp = resp;
21821a7b75aeSRobert Love 	ep->destructor = destructor;
21831a7b75aeSRobert Love 	ep->arg = arg;
2184f7ce413cSHannes Reinecke 	ep->r_a_tov = lport->r_a_tov;
21853a3b42bfSRobert Love 	ep->lp = lport;
21861a7b75aeSRobert Love 	sp = &ep->seq;
21871a7b75aeSRobert Love 
21881a7b75aeSRobert Love 	ep->fh_type = fh->fh_type; /* save for possbile timeout handling */
21891a7b75aeSRobert Love 	ep->f_ctl = ntoh24(fh->fh_f_ctl);
21901a7b75aeSRobert Love 	fc_exch_setup_hdr(ep, fp, ep->f_ctl);
21911a7b75aeSRobert Love 	sp->cnt++;
21921a7b75aeSRobert Love 
21933ee17f59SYi Zou 	if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) {
21943ee17f59SYi Zou 		fsp = fr_fsp(fp);
21951a7b75aeSRobert Love 		fc_fcp_ddp_setup(fr_fsp(fp), ep->xid);
21963ee17f59SYi Zou 	}
21971a7b75aeSRobert Love 
21983a3b42bfSRobert Love 	if (unlikely(lport->tt.frame_send(lport, fp)))
21991a7b75aeSRobert Love 		goto err;
22001a7b75aeSRobert Love 
22011a7b75aeSRobert Love 	if (timer_msec)
22021a7b75aeSRobert Love 		fc_exch_timer_set_locked(ep, timer_msec);
22031a7b75aeSRobert Love 	ep->f_ctl &= ~FC_FC_FIRST_SEQ;	/* not first seq */
22041a7b75aeSRobert Love 
22051a7b75aeSRobert Love 	if (ep->f_ctl & FC_FC_SEQ_INIT)
22061a7b75aeSRobert Love 		ep->esb_stat &= ~ESB_ST_SEQ_INIT;
22071a7b75aeSRobert Love 	spin_unlock_bh(&ep->ex_lock);
22081a7b75aeSRobert Love 	return sp;
22091a7b75aeSRobert Love err:
22103ee17f59SYi Zou 	if (fsp)
22113ee17f59SYi Zou 		fc_fcp_ddp_done(fsp);
22121a7b75aeSRobert Love 	rc = fc_exch_done_locked(ep);
22131a7b75aeSRobert Love 	spin_unlock_bh(&ep->ex_lock);
22141a7b75aeSRobert Love 	if (!rc)
22151a7b75aeSRobert Love 		fc_exch_delete(ep);
22161a7b75aeSRobert Love 	return NULL;
22171a7b75aeSRobert Love }
22183afd2d15SHannes Reinecke EXPORT_SYMBOL(fc_exch_seq_send);
22191a7b75aeSRobert Love 
22203a3b42bfSRobert Love /**
22213a3b42bfSRobert Love  * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command
22223a3b42bfSRobert Love  * @ep: The exchange to send the RRQ on
22233a3b42bfSRobert Love  *
222442e9a92fSRobert Love  * This tells the remote port to stop blocking the use of
222542e9a92fSRobert Love  * the exchange and the seq_cnt range.
222642e9a92fSRobert Love  */
222742e9a92fSRobert Love static void fc_exch_rrq(struct fc_exch *ep)
222842e9a92fSRobert Love {
22293a3b42bfSRobert Love 	struct fc_lport *lport;
223042e9a92fSRobert Love 	struct fc_els_rrq *rrq;
223142e9a92fSRobert Love 	struct fc_frame *fp;
223242e9a92fSRobert Love 	u32 did;
223342e9a92fSRobert Love 
22343a3b42bfSRobert Love 	lport = ep->lp;
223542e9a92fSRobert Love 
22363a3b42bfSRobert Love 	fp = fc_frame_alloc(lport, sizeof(*rrq));
223742e9a92fSRobert Love 	if (!fp)
2238a0cc1eccSVasu Dev 		goto retry;
2239a0cc1eccSVasu Dev 
224042e9a92fSRobert Love 	rrq = fc_frame_payload_get(fp, sizeof(*rrq));
224142e9a92fSRobert Love 	memset(rrq, 0, sizeof(*rrq));
224242e9a92fSRobert Love 	rrq->rrq_cmd = ELS_RRQ;
224342e9a92fSRobert Love 	hton24(rrq->rrq_s_id, ep->sid);
224442e9a92fSRobert Love 	rrq->rrq_ox_id = htons(ep->oxid);
224542e9a92fSRobert Love 	rrq->rrq_rx_id = htons(ep->rxid);
224642e9a92fSRobert Love 
224742e9a92fSRobert Love 	did = ep->did;
224842e9a92fSRobert Love 	if (ep->esb_stat & ESB_ST_RESP)
224942e9a92fSRobert Love 		did = ep->sid;
225042e9a92fSRobert Love 
225142e9a92fSRobert Love 	fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, did,
22527b2787ecSRobert Love 		       lport->port_id, FC_TYPE_ELS,
225342e9a92fSRobert Love 		       FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0);
225442e9a92fSRobert Love 
22553a3b42bfSRobert Love 	if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep,
22563a3b42bfSRobert Love 			     lport->e_d_tov))
2257a0cc1eccSVasu Dev 		return;
2258a0cc1eccSVasu Dev 
2259a0cc1eccSVasu Dev retry:
226057d3ec7eSHannes Reinecke 	FC_EXCH_DBG(ep, "exch: RRQ send failed\n");
2261a0cc1eccSVasu Dev 	spin_lock_bh(&ep->ex_lock);
2262a0cc1eccSVasu Dev 	if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) {
2263a0cc1eccSVasu Dev 		spin_unlock_bh(&ep->ex_lock);
2264a0cc1eccSVasu Dev 		/* drop hold for rec qual */
2265a0cc1eccSVasu Dev 		fc_exch_release(ep);
226642e9a92fSRobert Love 		return;
226742e9a92fSRobert Love 	}
2268a0cc1eccSVasu Dev 	ep->esb_stat |= ESB_ST_REC_QUAL;
2269a0cc1eccSVasu Dev 	fc_exch_timer_set_locked(ep, ep->r_a_tov);
2270a0cc1eccSVasu Dev 	spin_unlock_bh(&ep->ex_lock);
227142e9a92fSRobert Love }
227242e9a92fSRobert Love 
22733a3b42bfSRobert Love /**
22743a3b42bfSRobert Love  * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests
227592261156SJoe Eykholt  * @fp: The RRQ frame, not freed here.
227642e9a92fSRobert Love  */
227792261156SJoe Eykholt static void fc_exch_els_rrq(struct fc_frame *fp)
227842e9a92fSRobert Love {
227992261156SJoe Eykholt 	struct fc_lport *lport;
22803f127ad9SVasu Dev 	struct fc_exch *ep = NULL;	/* request or subject exchange */
228142e9a92fSRobert Love 	struct fc_els_rrq *rp;
228242e9a92fSRobert Love 	u32 sid;
228342e9a92fSRobert Love 	u16 xid;
228442e9a92fSRobert Love 	enum fc_els_rjt_explan explan;
228542e9a92fSRobert Love 
228692261156SJoe Eykholt 	lport = fr_dev(fp);
228742e9a92fSRobert Love 	rp = fc_frame_payload_get(fp, sizeof(*rp));
228842e9a92fSRobert Love 	explan = ELS_EXPL_INV_LEN;
228942e9a92fSRobert Love 	if (!rp)
229042e9a92fSRobert Love 		goto reject;
229142e9a92fSRobert Love 
229242e9a92fSRobert Love 	/*
229342e9a92fSRobert Love 	 * lookup subject exchange.
229442e9a92fSRobert Love 	 */
229542e9a92fSRobert Love 	sid = ntoh24(rp->rrq_s_id);		/* subject source */
229692261156SJoe Eykholt 	xid = fc_host_port_id(lport->host) == sid ?
229792261156SJoe Eykholt 			ntohs(rp->rrq_ox_id) : ntohs(rp->rrq_rx_id);
229892261156SJoe Eykholt 	ep = fc_exch_lookup(lport, xid);
229942e9a92fSRobert Love 	explan = ELS_EXPL_OXID_RXID;
230042e9a92fSRobert Love 	if (!ep)
230142e9a92fSRobert Love 		goto reject;
230242e9a92fSRobert Love 	spin_lock_bh(&ep->ex_lock);
230357d3ec7eSHannes Reinecke 	FC_EXCH_DBG(ep, "RRQ request from %x: xid %x rxid %x oxid %x\n",
230457d3ec7eSHannes Reinecke 		    sid, xid, ntohs(rp->rrq_rx_id), ntohs(rp->rrq_ox_id));
230542e9a92fSRobert Love 	if (ep->oxid != ntohs(rp->rrq_ox_id))
230642e9a92fSRobert Love 		goto unlock_reject;
230742e9a92fSRobert Love 	if (ep->rxid != ntohs(rp->rrq_rx_id) &&
230842e9a92fSRobert Love 	    ep->rxid != FC_XID_UNKNOWN)
230942e9a92fSRobert Love 		goto unlock_reject;
231042e9a92fSRobert Love 	explan = ELS_EXPL_SID;
231142e9a92fSRobert Love 	if (ep->sid != sid)
231242e9a92fSRobert Love 		goto unlock_reject;
231342e9a92fSRobert Love 
231442e9a92fSRobert Love 	/*
231542e9a92fSRobert Love 	 * Clear Recovery Qualifier state, and cancel timer if complete.
231642e9a92fSRobert Love 	 */
231742e9a92fSRobert Love 	if (ep->esb_stat & ESB_ST_REC_QUAL) {
231842e9a92fSRobert Love 		ep->esb_stat &= ~ESB_ST_REC_QUAL;
231942e9a92fSRobert Love 		atomic_dec(&ep->ex_refcnt);	/* drop hold for rec qual */
232042e9a92fSRobert Love 	}
2321b29a4f30SVasu Dev 	if (ep->esb_stat & ESB_ST_COMPLETE)
2322b29a4f30SVasu Dev 		fc_exch_timer_cancel(ep);
232342e9a92fSRobert Love 
232442e9a92fSRobert Love 	spin_unlock_bh(&ep->ex_lock);
232542e9a92fSRobert Love 
232642e9a92fSRobert Love 	/*
232742e9a92fSRobert Love 	 * Send LS_ACC.
232842e9a92fSRobert Love 	 */
232992261156SJoe Eykholt 	fc_seq_ls_acc(fp);
23303f127ad9SVasu Dev 	goto out;
233142e9a92fSRobert Love 
233242e9a92fSRobert Love unlock_reject:
233342e9a92fSRobert Love 	spin_unlock_bh(&ep->ex_lock);
233442e9a92fSRobert Love reject:
233592261156SJoe Eykholt 	fc_seq_ls_rjt(fp, ELS_RJT_LOGIC, explan);
23363f127ad9SVasu Dev out:
23373f127ad9SVasu Dev 	if (ep)
23383f127ad9SVasu Dev 		fc_exch_release(ep);	/* drop hold from fc_exch_find */
233942e9a92fSRobert Love }
234042e9a92fSRobert Love 
23413a3b42bfSRobert Love /**
23424e5fae7aSVasu Dev  * fc_exch_update_stats() - update exches stats to lport
23434e5fae7aSVasu Dev  * @lport: The local port to update exchange manager stats
23444e5fae7aSVasu Dev  */
23454e5fae7aSVasu Dev void fc_exch_update_stats(struct fc_lport *lport)
23464e5fae7aSVasu Dev {
23474e5fae7aSVasu Dev 	struct fc_host_statistics *st;
23484e5fae7aSVasu Dev 	struct fc_exch_mgr_anchor *ema;
23494e5fae7aSVasu Dev 	struct fc_exch_mgr *mp;
23504e5fae7aSVasu Dev 
23514e5fae7aSVasu Dev 	st = &lport->host_stats;
23524e5fae7aSVasu Dev 
23534e5fae7aSVasu Dev 	list_for_each_entry(ema, &lport->ema_list, ema_list) {
23544e5fae7aSVasu Dev 		mp = ema->mp;
23554e5fae7aSVasu Dev 		st->fc_no_free_exch += atomic_read(&mp->stats.no_free_exch);
23564e5fae7aSVasu Dev 		st->fc_no_free_exch_xid +=
23574e5fae7aSVasu Dev 				atomic_read(&mp->stats.no_free_exch_xid);
23584e5fae7aSVasu Dev 		st->fc_xid_not_found += atomic_read(&mp->stats.xid_not_found);
23594e5fae7aSVasu Dev 		st->fc_xid_busy += atomic_read(&mp->stats.xid_busy);
23604e5fae7aSVasu Dev 		st->fc_seq_not_found += atomic_read(&mp->stats.seq_not_found);
23614e5fae7aSVasu Dev 		st->fc_non_bls_resp += atomic_read(&mp->stats.non_bls_resp);
23624e5fae7aSVasu Dev 	}
23634e5fae7aSVasu Dev }
23644e5fae7aSVasu Dev EXPORT_SYMBOL(fc_exch_update_stats);
23654e5fae7aSVasu Dev 
23664e5fae7aSVasu Dev /**
23673a3b42bfSRobert Love  * fc_exch_mgr_add() - Add an exchange manager to a local port's list of EMs
23683a3b42bfSRobert Love  * @lport: The local port to add the exchange manager to
23693a3b42bfSRobert Love  * @mp:	   The exchange manager to be added to the local port
23703a3b42bfSRobert Love  * @match: The match routine that indicates when this EM should be used
23713a3b42bfSRobert Love  */
237296316099SVasu Dev struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport,
237396316099SVasu Dev 					   struct fc_exch_mgr *mp,
237496316099SVasu Dev 					   bool (*match)(struct fc_frame *))
237596316099SVasu Dev {
237696316099SVasu Dev 	struct fc_exch_mgr_anchor *ema;
237796316099SVasu Dev 
237896316099SVasu Dev 	ema = kmalloc(sizeof(*ema), GFP_ATOMIC);
237996316099SVasu Dev 	if (!ema)
238096316099SVasu Dev 		return ema;
238196316099SVasu Dev 
238296316099SVasu Dev 	ema->mp = mp;
238396316099SVasu Dev 	ema->match = match;
238496316099SVasu Dev 	/* add EM anchor to EM anchors list */
238596316099SVasu Dev 	list_add_tail(&ema->ema_list, &lport->ema_list);
238696316099SVasu Dev 	kref_get(&mp->kref);
238796316099SVasu Dev 	return ema;
238896316099SVasu Dev }
238996316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_add);
239096316099SVasu Dev 
23913a3b42bfSRobert Love /**
23923a3b42bfSRobert Love  * fc_exch_mgr_destroy() - Destroy an exchange manager
23933a3b42bfSRobert Love  * @kref: The reference to the EM to be destroyed
23943a3b42bfSRobert Love  */
239596316099SVasu Dev static void fc_exch_mgr_destroy(struct kref *kref)
239696316099SVasu Dev {
239796316099SVasu Dev 	struct fc_exch_mgr *mp = container_of(kref, struct fc_exch_mgr, kref);
239896316099SVasu Dev 
239996316099SVasu Dev 	mempool_destroy(mp->ep_pool);
2400e4bc50beSVasu Dev 	free_percpu(mp->pool);
240196316099SVasu Dev 	kfree(mp);
240296316099SVasu Dev }
240396316099SVasu Dev 
24043a3b42bfSRobert Love /**
24053a3b42bfSRobert Love  * fc_exch_mgr_del() - Delete an EM from a local port's list
24063a3b42bfSRobert Love  * @ema: The exchange manager anchor identifying the EM to be deleted
24073a3b42bfSRobert Love  */
240896316099SVasu Dev void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema)
240996316099SVasu Dev {
241096316099SVasu Dev 	/* remove EM anchor from EM anchors list */
241196316099SVasu Dev 	list_del(&ema->ema_list);
241296316099SVasu Dev 	kref_put(&ema->mp->kref, fc_exch_mgr_destroy);
241396316099SVasu Dev 	kfree(ema);
241496316099SVasu Dev }
241596316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_del);
241696316099SVasu Dev 
2417174e1ebfSChris Leech /**
24183a3b42bfSRobert Love  * fc_exch_mgr_list_clone() - Share all exchange manager objects
24193a3b42bfSRobert Love  * @src: Source lport to clone exchange managers from
24203a3b42bfSRobert Love  * @dst: New lport that takes references to all the exchange managers
2421174e1ebfSChris Leech  */
2422174e1ebfSChris Leech int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst)
2423174e1ebfSChris Leech {
2424174e1ebfSChris Leech 	struct fc_exch_mgr_anchor *ema, *tmp;
2425174e1ebfSChris Leech 
2426174e1ebfSChris Leech 	list_for_each_entry(ema, &src->ema_list, ema_list) {
2427174e1ebfSChris Leech 		if (!fc_exch_mgr_add(dst, ema->mp, ema->match))
2428174e1ebfSChris Leech 			goto err;
2429174e1ebfSChris Leech 	}
2430174e1ebfSChris Leech 	return 0;
2431174e1ebfSChris Leech err:
2432174e1ebfSChris Leech 	list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list)
2433174e1ebfSChris Leech 		fc_exch_mgr_del(ema);
2434174e1ebfSChris Leech 	return -ENOMEM;
2435174e1ebfSChris Leech }
243672fa396bSVasu Dev EXPORT_SYMBOL(fc_exch_mgr_list_clone);
2437174e1ebfSChris Leech 
24383a3b42bfSRobert Love /**
24393a3b42bfSRobert Love  * fc_exch_mgr_alloc() - Allocate an exchange manager
24403a3b42bfSRobert Love  * @lport:   The local port that the new EM will be associated with
24413a3b42bfSRobert Love  * @class:   The default FC class for new exchanges
24423a3b42bfSRobert Love  * @min_xid: The minimum XID for exchanges from the new EM
24433a3b42bfSRobert Love  * @max_xid: The maximum XID for exchanges from the new EM
24443a3b42bfSRobert Love  * @match:   The match routine for the new EM
24453a3b42bfSRobert Love  */
24463a3b42bfSRobert Love struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport,
244742e9a92fSRobert Love 				      enum fc_class class,
244852ff878cSVasu Dev 				      u16 min_xid, u16 max_xid,
244952ff878cSVasu Dev 				      bool (*match)(struct fc_frame *))
245042e9a92fSRobert Love {
245142e9a92fSRobert Love 	struct fc_exch_mgr *mp;
2452e4bc50beSVasu Dev 	u16 pool_exch_range;
2453e4bc50beSVasu Dev 	size_t pool_size;
2454e4bc50beSVasu Dev 	unsigned int cpu;
2455e4bc50beSVasu Dev 	struct fc_exch_pool *pool;
245642e9a92fSRobert Love 
2457e4bc50beSVasu Dev 	if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN ||
2458e4bc50beSVasu Dev 	    (min_xid & fc_cpu_mask) != 0) {
24593a3b42bfSRobert Love 		FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n",
246042e9a92fSRobert Love 			     min_xid, max_xid);
246142e9a92fSRobert Love 		return NULL;
246242e9a92fSRobert Love 	}
246342e9a92fSRobert Love 
246442e9a92fSRobert Love 	/*
2465b2f0091fSVasu Dev 	 * allocate memory for EM
246642e9a92fSRobert Love 	 */
2467b2f0091fSVasu Dev 	mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC);
246842e9a92fSRobert Love 	if (!mp)
246942e9a92fSRobert Love 		return NULL;
247042e9a92fSRobert Love 
247142e9a92fSRobert Love 	mp->class = class;
24729ca1e182SHannes Reinecke 	mp->lport = lport;
247342e9a92fSRobert Love 	/* adjust em exch xid range for offload */
247442e9a92fSRobert Love 	mp->min_xid = min_xid;
2475011a9008SSteven Clark 
2476011a9008SSteven Clark        /* reduce range so per cpu pool fits into PCPU_MIN_UNIT_SIZE pool */
2477011a9008SSteven Clark 	pool_exch_range = (PCPU_MIN_UNIT_SIZE - sizeof(*pool)) /
2478011a9008SSteven Clark 		sizeof(struct fc_exch *);
2479011a9008SSteven Clark 	if ((max_xid - min_xid + 1) / (fc_cpu_mask + 1) > pool_exch_range) {
2480011a9008SSteven Clark 		mp->max_xid = pool_exch_range * (fc_cpu_mask + 1) +
2481011a9008SSteven Clark 			min_xid - 1;
2482011a9008SSteven Clark 	} else {
248342e9a92fSRobert Love 		mp->max_xid = max_xid;
2484011a9008SSteven Clark 		pool_exch_range = (mp->max_xid - mp->min_xid + 1) /
2485011a9008SSteven Clark 			(fc_cpu_mask + 1);
2486011a9008SSteven Clark 	}
248742e9a92fSRobert Love 
248842e9a92fSRobert Love 	mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep);
248942e9a92fSRobert Love 	if (!mp->ep_pool)
249042e9a92fSRobert Love 		goto free_mp;
249142e9a92fSRobert Love 
2492e4bc50beSVasu Dev 	/*
2493e4bc50beSVasu Dev 	 * Setup per cpu exch pool with entire exchange id range equally
2494e4bc50beSVasu Dev 	 * divided across all cpus. The exch pointers array memory is
2495e4bc50beSVasu Dev 	 * allocated for exch range per pool.
2496e4bc50beSVasu Dev 	 */
2497e4bc50beSVasu Dev 	mp->pool_max_index = pool_exch_range - 1;
2498e4bc50beSVasu Dev 
2499e4bc50beSVasu Dev 	/*
2500e4bc50beSVasu Dev 	 * Allocate and initialize per cpu exch pool
2501e4bc50beSVasu Dev 	 */
2502e4bc50beSVasu Dev 	pool_size = sizeof(*pool) + pool_exch_range * sizeof(struct fc_exch *);
2503e4bc50beSVasu Dev 	mp->pool = __alloc_percpu(pool_size, __alignof__(struct fc_exch_pool));
2504e4bc50beSVasu Dev 	if (!mp->pool)
2505e4bc50beSVasu Dev 		goto free_mempool;
2506e4bc50beSVasu Dev 	for_each_possible_cpu(cpu) {
2507e4bc50beSVasu Dev 		pool = per_cpu_ptr(mp->pool, cpu);
2508b6e3c840SVasu Dev 		pool->next_index = 0;
25092034c19cSHillf Danton 		pool->left = FC_XID_UNKNOWN;
25102034c19cSHillf Danton 		pool->right = FC_XID_UNKNOWN;
2511e4bc50beSVasu Dev 		spin_lock_init(&pool->lock);
2512e4bc50beSVasu Dev 		INIT_LIST_HEAD(&pool->ex_list);
2513e4bc50beSVasu Dev 	}
2514e4bc50beSVasu Dev 
251552ff878cSVasu Dev 	kref_init(&mp->kref);
25163a3b42bfSRobert Love 	if (!fc_exch_mgr_add(lport, mp, match)) {
2517e4bc50beSVasu Dev 		free_percpu(mp->pool);
2518e4bc50beSVasu Dev 		goto free_mempool;
251952ff878cSVasu Dev 	}
252052ff878cSVasu Dev 
252152ff878cSVasu Dev 	/*
252252ff878cSVasu Dev 	 * Above kref_init() sets mp->kref to 1 and then
252352ff878cSVasu Dev 	 * call to fc_exch_mgr_add incremented mp->kref again,
252452ff878cSVasu Dev 	 * so adjust that extra increment.
252552ff878cSVasu Dev 	 */
252652ff878cSVasu Dev 	kref_put(&mp->kref, fc_exch_mgr_destroy);
252742e9a92fSRobert Love 	return mp;
252842e9a92fSRobert Love 
2529e4bc50beSVasu Dev free_mempool:
2530e4bc50beSVasu Dev 	mempool_destroy(mp->ep_pool);
253142e9a92fSRobert Love free_mp:
253242e9a92fSRobert Love 	kfree(mp);
253342e9a92fSRobert Love 	return NULL;
253442e9a92fSRobert Love }
253542e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_alloc);
253642e9a92fSRobert Love 
25373a3b42bfSRobert Love /**
25383a3b42bfSRobert Love  * fc_exch_mgr_free() - Free all exchange managers on a local port
25393a3b42bfSRobert Love  * @lport: The local port whose EMs are to be freed
25403a3b42bfSRobert Love  */
254152ff878cSVasu Dev void fc_exch_mgr_free(struct fc_lport *lport)
254242e9a92fSRobert Love {
254352ff878cSVasu Dev 	struct fc_exch_mgr_anchor *ema, *next;
254452ff878cSVasu Dev 
25454ae1e19fSVasu Dev 	flush_workqueue(fc_exch_workqueue);
254652ff878cSVasu Dev 	list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list)
254752ff878cSVasu Dev 		fc_exch_mgr_del(ema);
254842e9a92fSRobert Love }
254942e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_free);
255042e9a92fSRobert Love 
25513a3b42bfSRobert Love /**
25526c8cc1c0SKiran Patil  * fc_find_ema() - Lookup and return appropriate Exchange Manager Anchor depending
25536c8cc1c0SKiran Patil  * upon 'xid'.
25546c8cc1c0SKiran Patil  * @f_ctl: f_ctl
25556c8cc1c0SKiran Patil  * @lport: The local port the frame was received on
25566c8cc1c0SKiran Patil  * @fh: The received frame header
25576c8cc1c0SKiran Patil  */
25586c8cc1c0SKiran Patil static struct fc_exch_mgr_anchor *fc_find_ema(u32 f_ctl,
25596c8cc1c0SKiran Patil 					      struct fc_lport *lport,
25606c8cc1c0SKiran Patil 					      struct fc_frame_header *fh)
25616c8cc1c0SKiran Patil {
25626c8cc1c0SKiran Patil 	struct fc_exch_mgr_anchor *ema;
25636c8cc1c0SKiran Patil 	u16 xid;
25646c8cc1c0SKiran Patil 
25656c8cc1c0SKiran Patil 	if (f_ctl & FC_FC_EX_CTX)
25666c8cc1c0SKiran Patil 		xid = ntohs(fh->fh_ox_id);
25676c8cc1c0SKiran Patil 	else {
25686c8cc1c0SKiran Patil 		xid = ntohs(fh->fh_rx_id);
25696c8cc1c0SKiran Patil 		if (xid == FC_XID_UNKNOWN)
25706c8cc1c0SKiran Patil 			return list_entry(lport->ema_list.prev,
25716c8cc1c0SKiran Patil 					  typeof(*ema), ema_list);
25726c8cc1c0SKiran Patil 	}
25736c8cc1c0SKiran Patil 
25746c8cc1c0SKiran Patil 	list_for_each_entry(ema, &lport->ema_list, ema_list) {
25756c8cc1c0SKiran Patil 		if ((xid >= ema->mp->min_xid) &&
25766c8cc1c0SKiran Patil 		    (xid <= ema->mp->max_xid))
25776c8cc1c0SKiran Patil 			return ema;
25786c8cc1c0SKiran Patil 	}
25796c8cc1c0SKiran Patil 	return NULL;
25806c8cc1c0SKiran Patil }
25816c8cc1c0SKiran Patil /**
25823a3b42bfSRobert Love  * fc_exch_recv() - Handler for received frames
25833a3b42bfSRobert Love  * @lport: The local port the frame was received on
25843a3b42bfSRobert Love  * @fp:	The received frame
258542e9a92fSRobert Love  */
25863a3b42bfSRobert Love void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp)
258742e9a92fSRobert Love {
258842e9a92fSRobert Love 	struct fc_frame_header *fh = fc_frame_header_get(fp);
258952ff878cSVasu Dev 	struct fc_exch_mgr_anchor *ema;
25906c8cc1c0SKiran Patil 	u32 f_ctl;
259142e9a92fSRobert Love 
259242e9a92fSRobert Love 	/* lport lock ? */
25933a3b42bfSRobert Love 	if (!lport || lport->state == LPORT_ST_DISABLED) {
25943a3b42bfSRobert Love 		FC_LPORT_DBG(lport, "Receiving frames for an lport that "
25957414705eSRobert Love 			     "has not been initialized correctly\n");
259642e9a92fSRobert Love 		fc_frame_free(fp);
259742e9a92fSRobert Love 		return;
259842e9a92fSRobert Love 	}
259942e9a92fSRobert Love 
260052ff878cSVasu Dev 	f_ctl = ntoh24(fh->fh_f_ctl);
26016c8cc1c0SKiran Patil 	ema = fc_find_ema(f_ctl, lport, fh);
26026c8cc1c0SKiran Patil 	if (!ema) {
26036c8cc1c0SKiran Patil 		FC_LPORT_DBG(lport, "Unable to find Exchange Manager Anchor,"
26046c8cc1c0SKiran Patil 				    "fc_ctl <0x%x>, xid <0x%x>\n",
26056c8cc1c0SKiran Patil 				     f_ctl,
26066c8cc1c0SKiran Patil 				     (f_ctl & FC_FC_EX_CTX) ?
26076c8cc1c0SKiran Patil 				     ntohs(fh->fh_ox_id) :
26086c8cc1c0SKiran Patil 				     ntohs(fh->fh_rx_id));
260952ff878cSVasu Dev 		fc_frame_free(fp);
261052ff878cSVasu Dev 		return;
261152ff878cSVasu Dev 	}
261252ff878cSVasu Dev 
261342e9a92fSRobert Love 	/*
261442e9a92fSRobert Love 	 * If frame is marked invalid, just drop it.
261542e9a92fSRobert Love 	 */
261642e9a92fSRobert Love 	switch (fr_eof(fp)) {
261742e9a92fSRobert Love 	case FC_EOF_T:
261842e9a92fSRobert Love 		if (f_ctl & FC_FC_END_SEQ)
261942e9a92fSRobert Love 			skb_trim(fp_skb(fp), fr_len(fp) - FC_FC_FILL(f_ctl));
262042e9a92fSRobert Love 		/* fall through */
262142e9a92fSRobert Love 	case FC_EOF_N:
262242e9a92fSRobert Love 		if (fh->fh_type == FC_TYPE_BLS)
262352ff878cSVasu Dev 			fc_exch_recv_bls(ema->mp, fp);
262442e9a92fSRobert Love 		else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) ==
262542e9a92fSRobert Love 			 FC_FC_EX_CTX)
262652ff878cSVasu Dev 			fc_exch_recv_seq_resp(ema->mp, fp);
262742e9a92fSRobert Love 		else if (f_ctl & FC_FC_SEQ_CTX)
262852ff878cSVasu Dev 			fc_exch_recv_resp(ema->mp, fp);
262992261156SJoe Eykholt 		else	/* no EX_CTX and no SEQ_CTX */
26303a3b42bfSRobert Love 			fc_exch_recv_req(lport, ema->mp, fp);
263142e9a92fSRobert Love 		break;
263242e9a92fSRobert Love 	default:
26333a3b42bfSRobert Love 		FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)",
26343a3b42bfSRobert Love 			     fr_eof(fp));
263542e9a92fSRobert Love 		fc_frame_free(fp);
263642e9a92fSRobert Love 	}
263742e9a92fSRobert Love }
263842e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_recv);
263942e9a92fSRobert Love 
26403a3b42bfSRobert Love /**
26413a3b42bfSRobert Love  * fc_exch_init() - Initialize the exchange layer for a local port
26423a3b42bfSRobert Love  * @lport: The local port to initialize the exchange layer for
26433a3b42bfSRobert Love  */
26443a3b42bfSRobert Love int fc_exch_init(struct fc_lport *lport)
264542e9a92fSRobert Love {
26463a3b42bfSRobert Love 	if (!lport->tt.exch_mgr_reset)
26473a3b42bfSRobert Love 		lport->tt.exch_mgr_reset = fc_exch_mgr_reset;
264842e9a92fSRobert Love 
264989f19a59SVasu Dev 	return 0;
265089f19a59SVasu Dev }
265189f19a59SVasu Dev EXPORT_SYMBOL(fc_exch_init);
265289f19a59SVasu Dev 
265389f19a59SVasu Dev /**
265489f19a59SVasu Dev  * fc_setup_exch_mgr() - Setup an exchange manager
265589f19a59SVasu Dev  */
265655204909SRandy Dunlap int fc_setup_exch_mgr(void)
265789f19a59SVasu Dev {
265889f19a59SVasu Dev 	fc_em_cachep = kmem_cache_create("libfc_em", sizeof(struct fc_exch),
265989f19a59SVasu Dev 					 0, SLAB_HWCACHE_ALIGN, NULL);
266089f19a59SVasu Dev 	if (!fc_em_cachep)
266189f19a59SVasu Dev 		return -ENOMEM;
266289f19a59SVasu Dev 
2663e4bc50beSVasu Dev 	/*
2664e4bc50beSVasu Dev 	 * Initialize fc_cpu_mask and fc_cpu_order. The
2665e4bc50beSVasu Dev 	 * fc_cpu_mask is set for nr_cpu_ids rounded up
2666e4bc50beSVasu Dev 	 * to order of 2's * power and order is stored
2667e4bc50beSVasu Dev 	 * in fc_cpu_order as this is later required in
2668e4bc50beSVasu Dev 	 * mapping between an exch id and exch array index
2669e4bc50beSVasu Dev 	 * in per cpu exch pool.
2670e4bc50beSVasu Dev 	 *
2671e4bc50beSVasu Dev 	 * This round up is required to align fc_cpu_mask
2672e4bc50beSVasu Dev 	 * to exchange id's lower bits such that all incoming
2673e4bc50beSVasu Dev 	 * frames of an exchange gets delivered to the same
2674e4bc50beSVasu Dev 	 * cpu on which exchange originated by simple bitwise
2675e4bc50beSVasu Dev 	 * AND operation between fc_cpu_mask and exchange id.
2676e4bc50beSVasu Dev 	 */
2677a84ea8c7SBart Van Assche 	fc_cpu_order = ilog2(roundup_pow_of_two(nr_cpu_ids));
2678a84ea8c7SBart Van Assche 	fc_cpu_mask = (1 << fc_cpu_order) - 1;
2679e4bc50beSVasu Dev 
26804ae1e19fSVasu Dev 	fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue");
26814ae1e19fSVasu Dev 	if (!fc_exch_workqueue)
26826f06e3a7SHillf Danton 		goto err;
268342e9a92fSRobert Love 	return 0;
26846f06e3a7SHillf Danton err:
26856f06e3a7SHillf Danton 	kmem_cache_destroy(fc_em_cachep);
26866f06e3a7SHillf Danton 	return -ENOMEM;
268742e9a92fSRobert Love }
268842e9a92fSRobert Love 
26893a3b42bfSRobert Love /**
26903a3b42bfSRobert Love  * fc_destroy_exch_mgr() - Destroy an exchange manager
26913a3b42bfSRobert Love  */
269255204909SRandy Dunlap void fc_destroy_exch_mgr(void)
269342e9a92fSRobert Love {
26944ae1e19fSVasu Dev 	destroy_workqueue(fc_exch_workqueue);
269542e9a92fSRobert Love 	kmem_cache_destroy(fc_em_cachep);
269642e9a92fSRobert Love }
2697