1a61127c2SThomas 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 5274341d35SLee Jones * @left: Cache of free slot in exch array 5374341d35SLee Jones * @right: Cache of free slot in exch array 54e4bc50beSVasu Dev * 55e4bc50beSVasu Dev * This structure manages per cpu exchanges in array of exchange pointers. 56e4bc50beSVasu Dev * This array is allocated followed by struct fc_exch_pool memory for 57e4bc50beSVasu Dev * assigned range of exchanges to per cpu pool. 58e4bc50beSVasu Dev */ 59e4bc50beSVasu Dev struct fc_exch_pool { 60e17b4af7SVasu Dev spinlock_t lock; 61e17b4af7SVasu Dev struct list_head ex_list; 623a3b42bfSRobert Love u16 next_index; 633a3b42bfSRobert Love u16 total_exches; 642034c19cSHillf Danton 652034c19cSHillf Danton u16 left; 662034c19cSHillf Danton u16 right; 67e17b4af7SVasu Dev } ____cacheline_aligned_in_smp; 68e4bc50beSVasu Dev 693a3b42bfSRobert Love /** 703a3b42bfSRobert Love * struct fc_exch_mgr - The Exchange Manager (EM). 713a3b42bfSRobert Love * @class: Default class for new sequences 723a3b42bfSRobert Love * @kref: Reference counter 733a3b42bfSRobert Love * @min_xid: Minimum exchange ID 743a3b42bfSRobert Love * @max_xid: Maximum exchange ID 753a3b42bfSRobert Love * @ep_pool: Reserved exchange pointers 763a3b42bfSRobert Love * @pool_max_index: Max exch array index in exch pool 773a3b42bfSRobert Love * @pool: Per cpu exch pool 7874341d35SLee Jones * @lport: Local exchange port 793a3b42bfSRobert Love * @stats: Statistics structure 8042e9a92fSRobert Love * 8142e9a92fSRobert Love * This structure is the center for creating exchanges and sequences. 8242e9a92fSRobert Love * It manages the allocation of exchange IDs. 8342e9a92fSRobert Love */ 8442e9a92fSRobert Love struct fc_exch_mgr { 85c6b21c93SBart Van Assche struct fc_exch_pool __percpu *pool; 86e17b4af7SVasu Dev mempool_t *ep_pool; 879ca1e182SHannes Reinecke struct fc_lport *lport; 883a3b42bfSRobert Love enum fc_class class; 893a3b42bfSRobert Love struct kref kref; 903a3b42bfSRobert Love u16 min_xid; 913a3b42bfSRobert Love u16 max_xid; 923a3b42bfSRobert Love u16 pool_max_index; 9342e9a92fSRobert Love 9442e9a92fSRobert Love struct { 9542e9a92fSRobert Love atomic_t no_free_exch; 9642e9a92fSRobert Love atomic_t no_free_exch_xid; 9742e9a92fSRobert Love atomic_t xid_not_found; 9842e9a92fSRobert Love atomic_t xid_busy; 9942e9a92fSRobert Love atomic_t seq_not_found; 10042e9a92fSRobert Love atomic_t non_bls_resp; 10142e9a92fSRobert Love } stats; 10242e9a92fSRobert Love }; 10342e9a92fSRobert Love 1043a3b42bfSRobert Love /** 1053a3b42bfSRobert Love * struct fc_exch_mgr_anchor - primary structure for list of EMs 1063a3b42bfSRobert Love * @ema_list: Exchange Manager Anchor list 1073a3b42bfSRobert Love * @mp: Exchange Manager associated with this anchor 1083a3b42bfSRobert Love * @match: Routine to determine if this anchor's EM should be used 1093a3b42bfSRobert Love * 1103a3b42bfSRobert Love * When walking the list of anchors the match routine will be called 1113a3b42bfSRobert Love * for each anchor to determine if that EM should be used. The last 1123a3b42bfSRobert Love * anchor in the list will always match to handle any exchanges not 1133a3b42bfSRobert Love * handled by other EMs. The non-default EMs would be added to the 1141bd49b48SVasu Dev * anchor list by HW that provides offloads. 1153a3b42bfSRobert Love */ 11696316099SVasu Dev struct fc_exch_mgr_anchor { 11796316099SVasu Dev struct list_head ema_list; 11896316099SVasu Dev struct fc_exch_mgr *mp; 11996316099SVasu Dev bool (*match)(struct fc_frame *); 12096316099SVasu Dev }; 12196316099SVasu Dev 12242e9a92fSRobert Love static void fc_exch_rrq(struct fc_exch *); 12392261156SJoe Eykholt static void fc_seq_ls_acc(struct fc_frame *); 12492261156SJoe Eykholt static void fc_seq_ls_rjt(struct fc_frame *, enum fc_els_rjt_reason, 12542e9a92fSRobert Love enum fc_els_rjt_explan); 12692261156SJoe Eykholt static void fc_exch_els_rec(struct fc_frame *); 12792261156SJoe Eykholt static void fc_exch_els_rrq(struct fc_frame *); 12842e9a92fSRobert Love 12942e9a92fSRobert Love /* 13042e9a92fSRobert Love * Internal implementation notes. 13142e9a92fSRobert Love * 13242e9a92fSRobert Love * The exchange manager is one by default in libfc but LLD may choose 13342e9a92fSRobert Love * to have one per CPU. The sequence manager is one per exchange manager 13442e9a92fSRobert Love * and currently never separated. 13542e9a92fSRobert Love * 13642e9a92fSRobert Love * Section 9.8 in FC-FS-2 specifies: "The SEQ_ID is a one-byte field 13742e9a92fSRobert Love * assigned by the Sequence Initiator that shall be unique for a specific 13842e9a92fSRobert Love * D_ID and S_ID pair while the Sequence is open." Note that it isn't 13942e9a92fSRobert Love * qualified by exchange ID, which one might think it would be. 14042e9a92fSRobert Love * In practice this limits the number of open sequences and exchanges to 256 14142e9a92fSRobert Love * per session. For most targets we could treat this limit as per exchange. 14242e9a92fSRobert Love * 14342e9a92fSRobert Love * The exchange and its sequence are freed when the last sequence is received. 14442e9a92fSRobert Love * It's possible for the remote port to leave an exchange open without 14542e9a92fSRobert Love * sending any sequences. 14642e9a92fSRobert Love * 14742e9a92fSRobert Love * Notes on reference counts: 14842e9a92fSRobert Love * 14942e9a92fSRobert Love * Exchanges are reference counted and exchange gets freed when the reference 15042e9a92fSRobert Love * count becomes zero. 15142e9a92fSRobert Love * 15242e9a92fSRobert Love * Timeouts: 15342e9a92fSRobert Love * Sequences are timed out for E_D_TOV and R_A_TOV. 15442e9a92fSRobert Love * 15542e9a92fSRobert Love * Sequence event handling: 15642e9a92fSRobert Love * 15742e9a92fSRobert Love * The following events may occur on initiator sequences: 15842e9a92fSRobert Love * 15942e9a92fSRobert Love * Send. 16042e9a92fSRobert Love * For now, the whole thing is sent. 16142e9a92fSRobert Love * Receive ACK 16242e9a92fSRobert Love * This applies only to class F. 16342e9a92fSRobert Love * The sequence is marked complete. 16442e9a92fSRobert Love * ULP completion. 16542e9a92fSRobert Love * The upper layer calls fc_exch_done() when done 16642e9a92fSRobert Love * with exchange and sequence tuple. 16742e9a92fSRobert Love * RX-inferred completion. 16842e9a92fSRobert Love * When we receive the next sequence on the same exchange, we can 16942e9a92fSRobert Love * retire the previous sequence ID. (XXX not implemented). 17042e9a92fSRobert Love * Timeout. 17142e9a92fSRobert Love * R_A_TOV frees the sequence ID. If we're waiting for ACK, 17242e9a92fSRobert Love * E_D_TOV causes abort and calls upper layer response handler 17342e9a92fSRobert Love * with FC_EX_TIMEOUT error. 17442e9a92fSRobert Love * Receive RJT 17542e9a92fSRobert Love * XXX defer. 17642e9a92fSRobert Love * Send ABTS 17742e9a92fSRobert Love * On timeout. 17842e9a92fSRobert Love * 17942e9a92fSRobert Love * The following events may occur on recipient sequences: 18042e9a92fSRobert Love * 18142e9a92fSRobert Love * Receive 18242e9a92fSRobert Love * Allocate sequence for first frame received. 18342e9a92fSRobert Love * Hold during receive handler. 18442e9a92fSRobert Love * Release when final frame received. 18542e9a92fSRobert Love * Keep status of last N of these for the ELS RES command. XXX TBD. 18642e9a92fSRobert Love * Receive ABTS 18742e9a92fSRobert Love * Deallocate sequence 18842e9a92fSRobert Love * Send RJT 18942e9a92fSRobert Love * Deallocate 19042e9a92fSRobert Love * 19142e9a92fSRobert Love * For now, we neglect conditions where only part of a sequence was 19242e9a92fSRobert Love * received or transmitted, or where out-of-order receipt is detected. 19342e9a92fSRobert Love */ 19442e9a92fSRobert Love 19542e9a92fSRobert Love /* 19642e9a92fSRobert Love * Locking notes: 19742e9a92fSRobert Love * 19842e9a92fSRobert Love * The EM code run in a per-CPU worker thread. 19942e9a92fSRobert Love * 20042e9a92fSRobert Love * To protect against concurrency between a worker thread code and timers, 20142e9a92fSRobert Love * sequence allocation and deallocation must be locked. 20242e9a92fSRobert Love * - exchange refcnt can be done atomicly without locks. 20342e9a92fSRobert Love * - sequence allocation must be locked by exch lock. 204b2f0091fSVasu Dev * - If the EM pool lock and ex_lock must be taken at the same time, then the 205b2f0091fSVasu Dev * EM pool lock must be taken before the ex_lock. 20642e9a92fSRobert Love */ 20742e9a92fSRobert Love 20842e9a92fSRobert Love /* 20942e9a92fSRobert Love * opcode names for debugging. 21042e9a92fSRobert Love */ 21142e9a92fSRobert Love static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT; 21242e9a92fSRobert Love 2133a3b42bfSRobert Love /** 2143a3b42bfSRobert Love * fc_exch_name_lookup() - Lookup name by opcode 2153a3b42bfSRobert Love * @op: Opcode to be looked up 2163a3b42bfSRobert Love * @table: Opcode/name table 2173a3b42bfSRobert Love * @max_index: Index not to be exceeded 2183a3b42bfSRobert Love * 2193a3b42bfSRobert Love * This routine is used to determine a human-readable string identifying 2203a3b42bfSRobert Love * a R_CTL opcode. 2213a3b42bfSRobert Love */ 22242e9a92fSRobert Love static inline const char *fc_exch_name_lookup(unsigned int op, char **table, 22342e9a92fSRobert Love unsigned int max_index) 22442e9a92fSRobert Love { 22542e9a92fSRobert Love const char *name = NULL; 22642e9a92fSRobert Love 22742e9a92fSRobert Love if (op < max_index) 22842e9a92fSRobert Love name = table[op]; 22942e9a92fSRobert Love if (!name) 23042e9a92fSRobert Love name = "unknown"; 23142e9a92fSRobert Love return name; 23242e9a92fSRobert Love } 23342e9a92fSRobert Love 2343a3b42bfSRobert Love /** 2353a3b42bfSRobert Love * fc_exch_rctl_name() - Wrapper routine for fc_exch_name_lookup() 2363a3b42bfSRobert Love * @op: The opcode to be looked up 2373a3b42bfSRobert Love */ 23842e9a92fSRobert Love static const char *fc_exch_rctl_name(unsigned int op) 23942e9a92fSRobert Love { 24042e9a92fSRobert Love return fc_exch_name_lookup(op, fc_exch_rctl_names, 2417156fffaSKulikov Vasiliy ARRAY_SIZE(fc_exch_rctl_names)); 24242e9a92fSRobert Love } 24342e9a92fSRobert Love 2443a3b42bfSRobert Love /** 2453a3b42bfSRobert Love * fc_exch_hold() - Increment an exchange's reference count 2463a3b42bfSRobert Love * @ep: Echange to be held 24742e9a92fSRobert Love */ 2483a3b42bfSRobert Love static inline void fc_exch_hold(struct fc_exch *ep) 24942e9a92fSRobert Love { 25042e9a92fSRobert Love atomic_inc(&ep->ex_refcnt); 25142e9a92fSRobert Love } 25242e9a92fSRobert Love 2533a3b42bfSRobert Love /** 2543a3b42bfSRobert Love * fc_exch_setup_hdr() - Initialize a FC header by initializing some fields 2553a3b42bfSRobert Love * and determine SOF and EOF. 2563a3b42bfSRobert Love * @ep: The exchange to that will use the header 2573a3b42bfSRobert Love * @fp: The frame whose header is to be modified 2583a3b42bfSRobert Love * @f_ctl: F_CTL bits that will be used for the frame header 2593a3b42bfSRobert Love * 2603a3b42bfSRobert Love * The fields initialized by this routine are: fh_ox_id, fh_rx_id, 2613a3b42bfSRobert Love * fh_seq_id, fh_seq_cnt and the SOF and EOF. 26242e9a92fSRobert Love */ 26342e9a92fSRobert Love static void fc_exch_setup_hdr(struct fc_exch *ep, struct fc_frame *fp, 26442e9a92fSRobert Love u32 f_ctl) 26542e9a92fSRobert Love { 26642e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 26742e9a92fSRobert Love u16 fill; 26842e9a92fSRobert Love 26942e9a92fSRobert Love fr_sof(fp) = ep->class; 27042e9a92fSRobert Love if (ep->seq.cnt) 27142e9a92fSRobert Love fr_sof(fp) = fc_sof_normal(ep->class); 27242e9a92fSRobert Love 27342e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) { 27442e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 27542e9a92fSRobert Love if (fc_sof_needs_ack(ep->class)) 27642e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 27742e9a92fSRobert Love /* 2783a3b42bfSRobert Love * From F_CTL. 27942e9a92fSRobert Love * The number of fill bytes to make the length a 4-byte 28042e9a92fSRobert Love * multiple is the low order 2-bits of the f_ctl. 28142e9a92fSRobert Love * The fill itself will have been cleared by the frame 28242e9a92fSRobert Love * allocation. 28342e9a92fSRobert Love * After this, the length will be even, as expected by 28442e9a92fSRobert Love * the transport. 28542e9a92fSRobert Love */ 28642e9a92fSRobert Love fill = fr_len(fp) & 3; 28742e9a92fSRobert Love if (fill) { 28842e9a92fSRobert Love fill = 4 - fill; 28942e9a92fSRobert Love /* TODO, this may be a problem with fragmented skb */ 29042e9a92fSRobert Love skb_put(fp_skb(fp), fill); 29142e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl | fill); 29242e9a92fSRobert Love } 29342e9a92fSRobert Love } else { 29442e9a92fSRobert Love WARN_ON(fr_len(fp) % 4 != 0); /* no pad to non last frame */ 29542e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 29642e9a92fSRobert Love } 29742e9a92fSRobert Love 298c1d45424SBart Van Assche /* Initialize remaining fh fields from fc_fill_fc_hdr */ 29942e9a92fSRobert Love fh->fh_ox_id = htons(ep->oxid); 30042e9a92fSRobert Love fh->fh_rx_id = htons(ep->rxid); 30142e9a92fSRobert Love fh->fh_seq_id = ep->seq.id; 30242e9a92fSRobert Love fh->fh_seq_cnt = htons(ep->seq.cnt); 30342e9a92fSRobert Love } 30442e9a92fSRobert Love 3053a3b42bfSRobert Love /** 3063a3b42bfSRobert Love * fc_exch_release() - Decrement an exchange's reference count 3073a3b42bfSRobert Love * @ep: Exchange to be released 3083a3b42bfSRobert Love * 3093a3b42bfSRobert Love * If the reference count reaches zero and the exchange is complete, 3103a3b42bfSRobert Love * it is freed. 31142e9a92fSRobert Love */ 31242e9a92fSRobert Love static void fc_exch_release(struct fc_exch *ep) 31342e9a92fSRobert Love { 31442e9a92fSRobert Love struct fc_exch_mgr *mp; 31542e9a92fSRobert Love 31642e9a92fSRobert Love if (atomic_dec_and_test(&ep->ex_refcnt)) { 31742e9a92fSRobert Love mp = ep->em; 31842e9a92fSRobert Love if (ep->destructor) 31942e9a92fSRobert Love ep->destructor(&ep->seq, ep->arg); 320aa6cd29bSJulia Lawall WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE)); 32142e9a92fSRobert Love mempool_free(ep, mp->ep_pool); 32242e9a92fSRobert Love } 32342e9a92fSRobert Love } 32442e9a92fSRobert Love 3253a3b42bfSRobert Love /** 326b29a4f30SVasu Dev * fc_exch_timer_cancel() - cancel exch timer 327b29a4f30SVasu Dev * @ep: The exchange whose timer to be canceled 328b29a4f30SVasu Dev */ 329b29a4f30SVasu Dev static inline void fc_exch_timer_cancel(struct fc_exch *ep) 330b29a4f30SVasu Dev { 331b29a4f30SVasu Dev if (cancel_delayed_work(&ep->timeout_work)) { 332b29a4f30SVasu Dev FC_EXCH_DBG(ep, "Exchange timer canceled\n"); 333b29a4f30SVasu Dev atomic_dec(&ep->ex_refcnt); /* drop hold for timer */ 334b29a4f30SVasu Dev } 335b29a4f30SVasu Dev } 336b29a4f30SVasu Dev 337b29a4f30SVasu Dev /** 338b29a4f30SVasu Dev * fc_exch_timer_set_locked() - Start a timer for an exchange w/ the 339b29a4f30SVasu Dev * the exchange lock held 340b29a4f30SVasu Dev * @ep: The exchange whose timer will start 341b29a4f30SVasu Dev * @timer_msec: The timeout period 342b29a4f30SVasu Dev * 343b29a4f30SVasu Dev * Used for upper level protocols to time out the exchange. 344b29a4f30SVasu Dev * The timer is cancelled when it fires or when the exchange completes. 345b29a4f30SVasu Dev */ 346b29a4f30SVasu Dev static inline void fc_exch_timer_set_locked(struct fc_exch *ep, 347b29a4f30SVasu Dev unsigned int timer_msec) 348b29a4f30SVasu Dev { 349b29a4f30SVasu Dev if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) 350b29a4f30SVasu Dev return; 351b29a4f30SVasu Dev 352b29a4f30SVasu Dev FC_EXCH_DBG(ep, "Exchange timer armed : %d msecs\n", timer_msec); 353b29a4f30SVasu Dev 354b29a4f30SVasu Dev fc_exch_hold(ep); /* hold for timer */ 355b8678865SBart Van Assche if (!queue_delayed_work(fc_exch_workqueue, &ep->timeout_work, 35657d3ec7eSHannes Reinecke msecs_to_jiffies(timer_msec))) { 35757d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Exchange already queued\n"); 358b8678865SBart Van Assche fc_exch_release(ep); 359b29a4f30SVasu Dev } 36057d3ec7eSHannes Reinecke } 361b29a4f30SVasu Dev 362b29a4f30SVasu Dev /** 363b29a4f30SVasu Dev * fc_exch_timer_set() - Lock the exchange and set the timer 364b29a4f30SVasu Dev * @ep: The exchange whose timer will start 365b29a4f30SVasu Dev * @timer_msec: The timeout period 366b29a4f30SVasu Dev */ 367b29a4f30SVasu Dev static void fc_exch_timer_set(struct fc_exch *ep, unsigned int timer_msec) 368b29a4f30SVasu Dev { 369b29a4f30SVasu Dev spin_lock_bh(&ep->ex_lock); 370b29a4f30SVasu Dev fc_exch_timer_set_locked(ep, timer_msec); 371b29a4f30SVasu Dev spin_unlock_bh(&ep->ex_lock); 372b29a4f30SVasu Dev } 373b29a4f30SVasu Dev 374b29a4f30SVasu Dev /** 3753a3b42bfSRobert Love * fc_exch_done_locked() - Complete an exchange with the exchange lock held 3763a3b42bfSRobert Love * @ep: The exchange that is complete 3777030fd62SBart Van Assche * 3787030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 3793a3b42bfSRobert Love */ 38042e9a92fSRobert Love static int fc_exch_done_locked(struct fc_exch *ep) 38142e9a92fSRobert Love { 38242e9a92fSRobert Love int rc = 1; 38342e9a92fSRobert Love 38442e9a92fSRobert Love /* 38542e9a92fSRobert Love * We must check for completion in case there are two threads 38642e9a92fSRobert Love * tyring to complete this. But the rrq code will reuse the 38742e9a92fSRobert Love * ep, and in that case we only clear the resp and set it as 38842e9a92fSRobert Love * complete, so it can be reused by the timer to send the rrq. 38942e9a92fSRobert Love */ 39042e9a92fSRobert Love if (ep->state & FC_EX_DONE) 39142e9a92fSRobert Love return rc; 39242e9a92fSRobert Love ep->esb_stat |= ESB_ST_COMPLETE; 39342e9a92fSRobert Love 39442e9a92fSRobert Love if (!(ep->esb_stat & ESB_ST_REC_QUAL)) { 39542e9a92fSRobert Love ep->state |= FC_EX_DONE; 396b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 39742e9a92fSRobert Love rc = 0; 39842e9a92fSRobert Love } 39942e9a92fSRobert Love return rc; 40042e9a92fSRobert Love } 40142e9a92fSRobert Love 4029ca1e182SHannes Reinecke static struct fc_exch fc_quarantine_exch; 4039ca1e182SHannes Reinecke 4043a3b42bfSRobert Love /** 4053a3b42bfSRobert Love * fc_exch_ptr_get() - Return an exchange from an exchange pool 4063a3b42bfSRobert Love * @pool: Exchange Pool to get an exchange from 4073a3b42bfSRobert Love * @index: Index of the exchange within the pool 4083a3b42bfSRobert Love * 4093a3b42bfSRobert Love * Use the index to get an exchange from within an exchange pool. exches 4103a3b42bfSRobert Love * will point to an array of exchange pointers. The index will select 4113a3b42bfSRobert Love * the exchange within the array. 4123a3b42bfSRobert Love */ 413e4bc50beSVasu Dev static inline struct fc_exch *fc_exch_ptr_get(struct fc_exch_pool *pool, 414e4bc50beSVasu Dev u16 index) 415e4bc50beSVasu Dev { 416e4bc50beSVasu Dev struct fc_exch **exches = (struct fc_exch **)(pool + 1); 417e4bc50beSVasu Dev return exches[index]; 418e4bc50beSVasu Dev } 419e4bc50beSVasu Dev 4203a3b42bfSRobert Love /** 4213a3b42bfSRobert Love * fc_exch_ptr_set() - Assign an exchange to a slot in an exchange pool 4223a3b42bfSRobert Love * @pool: The pool to assign the exchange to 4233a3b42bfSRobert Love * @index: The index in the pool where the exchange will be assigned 4243a3b42bfSRobert Love * @ep: The exchange to assign to the pool 4253a3b42bfSRobert Love */ 426e4bc50beSVasu Dev static inline void fc_exch_ptr_set(struct fc_exch_pool *pool, u16 index, 427e4bc50beSVasu Dev struct fc_exch *ep) 428e4bc50beSVasu Dev { 429e4bc50beSVasu Dev ((struct fc_exch **)(pool + 1))[index] = ep; 430e4bc50beSVasu Dev } 431e4bc50beSVasu Dev 4323a3b42bfSRobert Love /** 4333a3b42bfSRobert Love * fc_exch_delete() - Delete an exchange 4343a3b42bfSRobert Love * @ep: The exchange to be deleted 4353a3b42bfSRobert Love */ 436b2f0091fSVasu Dev static void fc_exch_delete(struct fc_exch *ep) 43742e9a92fSRobert Love { 438b2f0091fSVasu Dev struct fc_exch_pool *pool; 4392034c19cSHillf Danton u16 index; 44042e9a92fSRobert Love 441b2f0091fSVasu Dev pool = ep->pool; 442b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 443b2f0091fSVasu Dev WARN_ON(pool->total_exches <= 0); 444b2f0091fSVasu Dev pool->total_exches--; 4452034c19cSHillf Danton 4462034c19cSHillf Danton /* update cache of free slot */ 4472034c19cSHillf Danton index = (ep->xid - ep->em->min_xid) >> fc_cpu_order; 4489ca1e182SHannes Reinecke if (!(ep->state & FC_EX_QUARANTINE)) { 4492034c19cSHillf Danton if (pool->left == FC_XID_UNKNOWN) 4502034c19cSHillf Danton pool->left = index; 4512034c19cSHillf Danton else if (pool->right == FC_XID_UNKNOWN) 4522034c19cSHillf Danton pool->right = index; 4532034c19cSHillf Danton else 4542034c19cSHillf Danton pool->next_index = index; 4552034c19cSHillf Danton fc_exch_ptr_set(pool, index, NULL); 4569ca1e182SHannes Reinecke } else { 4579ca1e182SHannes Reinecke fc_exch_ptr_set(pool, index, &fc_quarantine_exch); 4589ca1e182SHannes Reinecke } 45942e9a92fSRobert Love list_del(&ep->ex_list); 460b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 46142e9a92fSRobert Love fc_exch_release(ep); /* drop hold for exch in mp */ 46242e9a92fSRobert Love } 46342e9a92fSRobert Love 464fb00cc23SNeil Horman static int fc_seq_send_locked(struct fc_lport *lport, struct fc_seq *sp, 4651a7b75aeSRobert Love struct fc_frame *fp) 4661a7b75aeSRobert Love { 4671a7b75aeSRobert Love struct fc_exch *ep; 4681a7b75aeSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 469cae7b6ddSBart Van Assche int error = -ENXIO; 4701a7b75aeSRobert Love u32 f_ctl; 47114fc315fSVasu Dev u8 fh_type = fh->fh_type; 4721a7b75aeSRobert Love 4731a7b75aeSRobert Love ep = fc_seq_exch(sp); 474cae7b6ddSBart Van Assche 475cae7b6ddSBart Van Assche if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL)) { 476cae7b6ddSBart Van Assche fc_frame_free(fp); 477cae7b6ddSBart Van Assche goto out; 478cae7b6ddSBart Van Assche } 479cae7b6ddSBart Van Assche 480fb00cc23SNeil Horman WARN_ON(!(ep->esb_stat & ESB_ST_SEQ_INIT)); 4811a7b75aeSRobert Love 4821a7b75aeSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 4831a7b75aeSRobert Love fc_exch_setup_hdr(ep, fp, f_ctl); 484f60e12e9SJoe Eykholt fr_encaps(fp) = ep->encaps; 4851a7b75aeSRobert Love 4861a7b75aeSRobert Love /* 4871a7b75aeSRobert Love * update sequence count if this frame is carrying 4881a7b75aeSRobert Love * multiple FC frames when sequence offload is enabled 4891a7b75aeSRobert Love * by LLD. 4901a7b75aeSRobert Love */ 4911a7b75aeSRobert Love if (fr_max_payload(fp)) 4921a7b75aeSRobert Love sp->cnt += DIV_ROUND_UP((fr_len(fp) - sizeof(*fh)), 4931a7b75aeSRobert Love fr_max_payload(fp)); 4941a7b75aeSRobert Love else 4951a7b75aeSRobert Love sp->cnt++; 4961a7b75aeSRobert Love 4971a7b75aeSRobert Love /* 4981a7b75aeSRobert Love * Send the frame. 4991a7b75aeSRobert Love */ 5003a3b42bfSRobert Love error = lport->tt.frame_send(lport, fp); 5011a7b75aeSRobert Love 50214fc315fSVasu Dev if (fh_type == FC_TYPE_BLS) 503fb00cc23SNeil Horman goto out; 50477a2b73aSVasu Dev 5051a7b75aeSRobert Love /* 5061a7b75aeSRobert Love * Update the exchange and sequence flags, 5071a7b75aeSRobert Love * assuming all frames for the sequence have been sent. 5081a7b75aeSRobert Love * We can only be called to send once for each sequence. 5091a7b75aeSRobert Love */ 5101a7b75aeSRobert Love ep->f_ctl = f_ctl & ~FC_FC_FIRST_SEQ; /* not first seq */ 511cc3593d3SJoe Eykholt if (f_ctl & FC_FC_SEQ_INIT) 5121a7b75aeSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 513fb00cc23SNeil Horman out: 514fb00cc23SNeil Horman return error; 515fb00cc23SNeil Horman } 516fb00cc23SNeil Horman 517fb00cc23SNeil Horman /** 518fb00cc23SNeil Horman * fc_seq_send() - Send a frame using existing sequence/exchange pair 519fb00cc23SNeil Horman * @lport: The local port that the exchange will be sent on 520fb00cc23SNeil Horman * @sp: The sequence to be sent 521fb00cc23SNeil Horman * @fp: The frame to be sent on the exchange 522cae7b6ddSBart Van Assche * 523cae7b6ddSBart Van Assche * Note: The frame will be freed either by a direct call to fc_frame_free(fp) 524cae7b6ddSBart Van Assche * or indirectly by calling libfc_function_template.frame_send(). 525fb00cc23SNeil Horman */ 5260cac937dSHannes Reinecke int fc_seq_send(struct fc_lport *lport, struct fc_seq *sp, struct fc_frame *fp) 527fb00cc23SNeil Horman { 528fb00cc23SNeil Horman struct fc_exch *ep; 529fb00cc23SNeil Horman int error; 530fb00cc23SNeil Horman ep = fc_seq_exch(sp); 531fb00cc23SNeil Horman spin_lock_bh(&ep->ex_lock); 532fb00cc23SNeil Horman error = fc_seq_send_locked(lport, sp, fp); 5331a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 5341a7b75aeSRobert Love return error; 5351a7b75aeSRobert Love } 5360cac937dSHannes Reinecke EXPORT_SYMBOL(fc_seq_send); 5371a7b75aeSRobert Love 5381a7b75aeSRobert Love /** 5393a3b42bfSRobert Love * fc_seq_alloc() - Allocate a sequence for a given exchange 5403a3b42bfSRobert Love * @ep: The exchange to allocate a new sequence for 5413a3b42bfSRobert Love * @seq_id: The sequence ID to be used 5421a7b75aeSRobert Love * 5431a7b75aeSRobert Love * We don't support multiple originated sequences on the same exchange. 5441a7b75aeSRobert Love * By implication, any previously originated sequence on this exchange 5451a7b75aeSRobert Love * is complete, and we reallocate the same sequence. 5461a7b75aeSRobert Love */ 5471a7b75aeSRobert Love static struct fc_seq *fc_seq_alloc(struct fc_exch *ep, u8 seq_id) 5481a7b75aeSRobert Love { 5491a7b75aeSRobert Love struct fc_seq *sp; 5501a7b75aeSRobert Love 5511a7b75aeSRobert Love sp = &ep->seq; 5521a7b75aeSRobert Love sp->ssb_stat = 0; 5531a7b75aeSRobert Love sp->cnt = 0; 5541a7b75aeSRobert Love sp->id = seq_id; 5551a7b75aeSRobert Love return sp; 5561a7b75aeSRobert Love } 5571a7b75aeSRobert Love 5583a3b42bfSRobert Love /** 5593a3b42bfSRobert Love * fc_seq_start_next_locked() - Allocate a new sequence on the same 5603a3b42bfSRobert Love * exchange as the supplied sequence 5613a3b42bfSRobert Love * @sp: The sequence/exchange to get a new sequence for 5623a3b42bfSRobert Love */ 5631a7b75aeSRobert Love static struct fc_seq *fc_seq_start_next_locked(struct fc_seq *sp) 5641a7b75aeSRobert Love { 5651a7b75aeSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 5661a7b75aeSRobert Love 5671a7b75aeSRobert Love sp = fc_seq_alloc(ep, ep->seq_id++); 5681a7b75aeSRobert Love FC_EXCH_DBG(ep, "f_ctl %6x seq %2x\n", 5691a7b75aeSRobert Love ep->f_ctl, sp->id); 5701a7b75aeSRobert Love return sp; 5711a7b75aeSRobert Love } 5721a7b75aeSRobert Love 5731a7b75aeSRobert Love /** 5743a3b42bfSRobert Love * fc_seq_start_next() - Lock the exchange and get a new sequence 5753a3b42bfSRobert Love * for a given sequence/exchange pair 5763a3b42bfSRobert Love * @sp: The sequence/exchange to get a new exchange for 5771a7b75aeSRobert Love */ 578c6865b30SHannes Reinecke struct fc_seq *fc_seq_start_next(struct fc_seq *sp) 5791a7b75aeSRobert Love { 5801a7b75aeSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 5811a7b75aeSRobert Love 5821a7b75aeSRobert Love spin_lock_bh(&ep->ex_lock); 5831a7b75aeSRobert Love sp = fc_seq_start_next_locked(sp); 5841a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 5851a7b75aeSRobert Love 5861a7b75aeSRobert Love return sp; 5871a7b75aeSRobert Love } 588c6865b30SHannes Reinecke EXPORT_SYMBOL(fc_seq_start_next); 5891a7b75aeSRobert Love 5901a5c2d7eSJoe Eykholt /* 5911a5c2d7eSJoe Eykholt * Set the response handler for the exchange associated with a sequence. 5927030fd62SBart Van Assche * 5937030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 5941a5c2d7eSJoe Eykholt */ 595f1d61e6eSHannes Reinecke void fc_seq_set_resp(struct fc_seq *sp, 596f1d61e6eSHannes Reinecke void (*resp)(struct fc_seq *, struct fc_frame *, void *), 5971a5c2d7eSJoe Eykholt void *arg) 5981a5c2d7eSJoe Eykholt { 5991a5c2d7eSJoe Eykholt struct fc_exch *ep = fc_seq_exch(sp); 6007030fd62SBart Van Assche DEFINE_WAIT(wait); 6011a5c2d7eSJoe Eykholt 6021a5c2d7eSJoe Eykholt spin_lock_bh(&ep->ex_lock); 6037030fd62SBart Van Assche while (ep->resp_active && ep->resp_task != current) { 6047030fd62SBart Van Assche prepare_to_wait(&ep->resp_wq, &wait, TASK_UNINTERRUPTIBLE); 6057030fd62SBart Van Assche spin_unlock_bh(&ep->ex_lock); 6067030fd62SBart Van Assche 6077030fd62SBart Van Assche schedule(); 6087030fd62SBart Van Assche 6097030fd62SBart Van Assche spin_lock_bh(&ep->ex_lock); 6107030fd62SBart Van Assche } 6117030fd62SBart Van Assche finish_wait(&ep->resp_wq, &wait); 6121a5c2d7eSJoe Eykholt ep->resp = resp; 6131a5c2d7eSJoe Eykholt ep->arg = arg; 6141a5c2d7eSJoe Eykholt spin_unlock_bh(&ep->ex_lock); 6151a5c2d7eSJoe Eykholt } 616f1d61e6eSHannes Reinecke EXPORT_SYMBOL(fc_seq_set_resp); 6171a5c2d7eSJoe Eykholt 6181a7b75aeSRobert Love /** 61977a2b73aSVasu Dev * fc_exch_abort_locked() - Abort an exchange 62077a2b73aSVasu Dev * @ep: The exchange to be aborted 6213a3b42bfSRobert Love * @timer_msec: The period of time to wait before aborting 6223a3b42bfSRobert Love * 6230ebaed17SHannes Reinecke * Abort an exchange and sequence. Generally called because of a 6240ebaed17SHannes Reinecke * exchange timeout or an abort from the upper layer. 6250ebaed17SHannes Reinecke * 6260ebaed17SHannes Reinecke * A timer_msec can be specified for abort timeout, if non-zero 6270ebaed17SHannes Reinecke * timer_msec value is specified then exchange resp handler 6280ebaed17SHannes Reinecke * will be called with timeout error if no response to abort. 6290ebaed17SHannes Reinecke * 63077a2b73aSVasu Dev * Locking notes: Called with exch lock held 63177a2b73aSVasu Dev * 63277a2b73aSVasu Dev * Return value: 0 on success else error code 6331a7b75aeSRobert Love */ 63477a2b73aSVasu Dev static int fc_exch_abort_locked(struct fc_exch *ep, 6351a7b75aeSRobert Love unsigned int timer_msec) 63642e9a92fSRobert Love { 63742e9a92fSRobert Love struct fc_seq *sp; 63842e9a92fSRobert Love struct fc_frame *fp; 63942e9a92fSRobert Love int error; 64042e9a92fSRobert Love 64157d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: abort, time %d msecs\n", timer_msec); 64242e9a92fSRobert Love if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL) || 64357d3ec7eSHannes Reinecke ep->state & (FC_EX_DONE | FC_EX_RST_CLEANUP)) { 64457d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: already completed esb %x state %x\n", 64557d3ec7eSHannes Reinecke ep->esb_stat, ep->state); 64642e9a92fSRobert Love return -ENXIO; 64757d3ec7eSHannes Reinecke } 64842e9a92fSRobert Love 64942e9a92fSRobert Love /* 65042e9a92fSRobert Love * Send the abort on a new sequence if possible. 65142e9a92fSRobert Love */ 65242e9a92fSRobert Love sp = fc_seq_start_next_locked(&ep->seq); 65377a2b73aSVasu Dev if (!sp) 65442e9a92fSRobert Love return -ENOMEM; 65542e9a92fSRobert Love 65642e9a92fSRobert Love if (timer_msec) 65742e9a92fSRobert Love fc_exch_timer_set_locked(ep, timer_msec); 65842e9a92fSRobert Love 659cae7b6ddSBart Van Assche if (ep->sid) { 66042e9a92fSRobert Love /* 66142e9a92fSRobert Love * Send an abort for the sequence that timed out. 66242e9a92fSRobert Love */ 66342e9a92fSRobert Love fp = fc_frame_alloc(ep->lp, 0); 66442e9a92fSRobert Love if (fp) { 665cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_SEQ_INIT; 66642e9a92fSRobert Love fc_fill_fc_hdr(fp, FC_RCTL_BA_ABTS, ep->did, ep->sid, 667cae7b6ddSBart Van Assche FC_TYPE_BLS, FC_FC_END_SEQ | 668cae7b6ddSBart Van Assche FC_FC_SEQ_INIT, 0); 669fb00cc23SNeil Horman error = fc_seq_send_locked(ep->lp, sp, fp); 670cae7b6ddSBart Van Assche } else { 67142e9a92fSRobert Love error = -ENOBUFS; 672cae7b6ddSBart Van Assche } 673cae7b6ddSBart Van Assche } else { 674cae7b6ddSBart Van Assche /* 675cae7b6ddSBart Van Assche * If not logged into the fabric, don't send ABTS but leave 676cae7b6ddSBart Van Assche * sequence active until next timeout. 677cae7b6ddSBart Van Assche */ 678cae7b6ddSBart Van Assche error = 0; 679cae7b6ddSBart Van Assche } 680cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_ABNORMAL; 68142e9a92fSRobert Love return error; 68242e9a92fSRobert Love } 68342e9a92fSRobert Love 6843a3b42bfSRobert Love /** 68577a2b73aSVasu Dev * fc_seq_exch_abort() - Abort an exchange and sequence 68677a2b73aSVasu Dev * @req_sp: The sequence to be aborted 68777a2b73aSVasu Dev * @timer_msec: The period of time to wait before aborting 68877a2b73aSVasu Dev * 68977a2b73aSVasu Dev * Generally called because of a timeout or an abort from the upper layer. 69077a2b73aSVasu Dev * 69177a2b73aSVasu Dev * Return value: 0 on success else error code 69277a2b73aSVasu Dev */ 6930ebaed17SHannes Reinecke int fc_seq_exch_abort(const struct fc_seq *req_sp, unsigned int timer_msec) 69477a2b73aSVasu Dev { 69577a2b73aSVasu Dev struct fc_exch *ep; 69677a2b73aSVasu Dev int error; 69777a2b73aSVasu Dev 69877a2b73aSVasu Dev ep = fc_seq_exch(req_sp); 69977a2b73aSVasu Dev spin_lock_bh(&ep->ex_lock); 70077a2b73aSVasu Dev error = fc_exch_abort_locked(ep, timer_msec); 70177a2b73aSVasu Dev spin_unlock_bh(&ep->ex_lock); 70277a2b73aSVasu Dev return error; 70377a2b73aSVasu Dev } 70477a2b73aSVasu Dev 70577a2b73aSVasu Dev /** 7067030fd62SBart Van Assche * fc_invoke_resp() - invoke ep->resp() 70774341d35SLee Jones * @ep: The exchange to be operated on 70874341d35SLee Jones * @fp: The frame pointer to pass through to ->resp() 70974341d35SLee Jones * @sp: The sequence pointer to pass through to ->resp() 7107030fd62SBart Van Assche * 7117030fd62SBart Van Assche * Notes: 7127030fd62SBart Van Assche * It is assumed that after initialization finished (this means the 7137030fd62SBart Van Assche * first unlock of ex_lock after fc_exch_alloc()) ep->resp and ep->arg are 7147030fd62SBart Van Assche * modified only via fc_seq_set_resp(). This guarantees that none of these 7157030fd62SBart Van Assche * two variables changes if ep->resp_active > 0. 7167030fd62SBart Van Assche * 7177030fd62SBart Van Assche * If an fc_seq_set_resp() call is busy modifying ep->resp and ep->arg when 7187030fd62SBart Van Assche * this function is invoked, the first spin_lock_bh() call in this function 7197030fd62SBart Van Assche * will wait until fc_seq_set_resp() has finished modifying these variables. 7207030fd62SBart Van Assche * 7217030fd62SBart Van Assche * Since fc_exch_done() invokes fc_seq_set_resp() it is guaranteed that that 7227030fd62SBart Van Assche * ep->resp() won't be invoked after fc_exch_done() has returned. 7237030fd62SBart Van Assche * 7247030fd62SBart Van Assche * The response handler itself may invoke fc_exch_done(), which will clear the 7257030fd62SBart Van Assche * ep->resp pointer. 7267030fd62SBart Van Assche * 7277030fd62SBart Van Assche * Return value: 7287030fd62SBart Van Assche * Returns true if and only if ep->resp has been invoked. 7297030fd62SBart Van Assche */ 7307030fd62SBart Van Assche static bool fc_invoke_resp(struct fc_exch *ep, struct fc_seq *sp, 7317030fd62SBart Van Assche struct fc_frame *fp) 7327030fd62SBart Van Assche { 7337030fd62SBart Van Assche void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg); 7347030fd62SBart Van Assche void *arg; 7357030fd62SBart Van Assche bool res = false; 7367030fd62SBart Van Assche 7377030fd62SBart Van Assche spin_lock_bh(&ep->ex_lock); 7387030fd62SBart Van Assche ep->resp_active++; 7397030fd62SBart Van Assche if (ep->resp_task != current) 7407030fd62SBart Van Assche ep->resp_task = !ep->resp_task ? current : NULL; 7417030fd62SBart Van Assche resp = ep->resp; 7427030fd62SBart Van Assche arg = ep->arg; 7437030fd62SBart Van Assche spin_unlock_bh(&ep->ex_lock); 7447030fd62SBart Van Assche 7457030fd62SBart Van Assche if (resp) { 7467030fd62SBart Van Assche resp(sp, fp, arg); 7477030fd62SBart Van Assche res = true; 7487030fd62SBart Van Assche } 7497030fd62SBart Van Assche 7507030fd62SBart Van Assche spin_lock_bh(&ep->ex_lock); 7517030fd62SBart Van Assche if (--ep->resp_active == 0) 7527030fd62SBart Van Assche ep->resp_task = NULL; 7537030fd62SBart Van Assche spin_unlock_bh(&ep->ex_lock); 7547030fd62SBart Van Assche 7557030fd62SBart Van Assche if (ep->resp_active == 0) 7567030fd62SBart Van Assche wake_up(&ep->resp_wq); 7577030fd62SBart Van Assche 7587030fd62SBart Van Assche return res; 7597030fd62SBart Van Assche } 7607030fd62SBart Van Assche 7617030fd62SBart Van Assche /** 7623a3b42bfSRobert Love * fc_exch_timeout() - Handle exchange timer expiration 7633a3b42bfSRobert Love * @work: The work_struct identifying the exchange that timed out 76442e9a92fSRobert Love */ 76542e9a92fSRobert Love static void fc_exch_timeout(struct work_struct *work) 76642e9a92fSRobert Love { 76742e9a92fSRobert Love struct fc_exch *ep = container_of(work, struct fc_exch, 76842e9a92fSRobert Love timeout_work.work); 76942e9a92fSRobert Love struct fc_seq *sp = &ep->seq; 77042e9a92fSRobert Love u32 e_stat; 77142e9a92fSRobert Love int rc = 1; 77242e9a92fSRobert Love 77357d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Exchange timed out state %x\n", ep->state); 774cd305ce4SRobert Love 77542e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 77642e9a92fSRobert Love if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) 77742e9a92fSRobert Love goto unlock; 77842e9a92fSRobert Love 77942e9a92fSRobert Love e_stat = ep->esb_stat; 78042e9a92fSRobert Love if (e_stat & ESB_ST_COMPLETE) { 78142e9a92fSRobert Love ep->esb_stat = e_stat & ~ESB_ST_REC_QUAL; 782a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 78342e9a92fSRobert Love if (e_stat & ESB_ST_REC_QUAL) 78442e9a92fSRobert Love fc_exch_rrq(ep); 78542e9a92fSRobert Love goto done; 78642e9a92fSRobert Love } else { 78742e9a92fSRobert Love if (e_stat & ESB_ST_ABNORMAL) 78842e9a92fSRobert Love rc = fc_exch_done_locked(ep); 78942e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 790f3162483SParikh, Neerav if (!rc) 791f3162483SParikh, Neerav fc_exch_delete(ep); 7927030fd62SBart Van Assche fc_invoke_resp(ep, sp, ERR_PTR(-FC_EX_TIMEOUT)); 7937030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 79442e9a92fSRobert Love fc_seq_exch_abort(sp, 2 * ep->r_a_tov); 79542e9a92fSRobert Love goto done; 79642e9a92fSRobert Love } 79742e9a92fSRobert Love unlock: 79842e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 79942e9a92fSRobert Love done: 80042e9a92fSRobert Love /* 80142e9a92fSRobert Love * This release matches the hold taken when the timer was set. 80242e9a92fSRobert Love */ 80342e9a92fSRobert Love fc_exch_release(ep); 80442e9a92fSRobert Love } 80542e9a92fSRobert Love 80652ff878cSVasu Dev /** 8073a3b42bfSRobert Love * fc_exch_em_alloc() - Allocate an exchange from a specified EM. 8083a3b42bfSRobert Love * @lport: The local port that the exchange is for 8093a3b42bfSRobert Love * @mp: The exchange manager that will allocate the exchange 81042e9a92fSRobert Love * 811d7179680SVasu Dev * Returns pointer to allocated fc_exch with exch lock held. 81242e9a92fSRobert Love */ 81352ff878cSVasu Dev static struct fc_exch *fc_exch_em_alloc(struct fc_lport *lport, 814d7179680SVasu Dev struct fc_exch_mgr *mp) 81542e9a92fSRobert Love { 81642e9a92fSRobert Love struct fc_exch *ep; 817b2f0091fSVasu Dev unsigned int cpu; 818b2f0091fSVasu Dev u16 index; 819b2f0091fSVasu Dev struct fc_exch_pool *pool; 82042e9a92fSRobert Love 82142e9a92fSRobert Love /* allocate memory for exchange */ 82242e9a92fSRobert Love ep = mempool_alloc(mp->ep_pool, GFP_ATOMIC); 82342e9a92fSRobert Love if (!ep) { 82442e9a92fSRobert Love atomic_inc(&mp->stats.no_free_exch); 82542e9a92fSRobert Love goto out; 82642e9a92fSRobert Love } 82742e9a92fSRobert Love memset(ep, 0, sizeof(*ep)); 82842e9a92fSRobert Love 829f018b73aSJoe Eykholt cpu = get_cpu(); 830b2f0091fSVasu Dev pool = per_cpu_ptr(mp->pool, cpu); 831b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 832f018b73aSJoe Eykholt put_cpu(); 8332034c19cSHillf Danton 8342034c19cSHillf Danton /* peek cache of free slot */ 8352034c19cSHillf Danton if (pool->left != FC_XID_UNKNOWN) { 836b73aa56eSHannes Reinecke if (!WARN_ON(fc_exch_ptr_get(pool, pool->left))) { 8372034c19cSHillf Danton index = pool->left; 8382034c19cSHillf Danton pool->left = FC_XID_UNKNOWN; 8392034c19cSHillf Danton goto hit; 8402034c19cSHillf Danton } 841b73aa56eSHannes Reinecke } 8422034c19cSHillf Danton if (pool->right != FC_XID_UNKNOWN) { 843b73aa56eSHannes Reinecke if (!WARN_ON(fc_exch_ptr_get(pool, pool->right))) { 8442034c19cSHillf Danton index = pool->right; 8452034c19cSHillf Danton pool->right = FC_XID_UNKNOWN; 8462034c19cSHillf Danton goto hit; 8472034c19cSHillf Danton } 848b73aa56eSHannes Reinecke } 8492034c19cSHillf Danton 850b2f0091fSVasu Dev index = pool->next_index; 851b2f0091fSVasu Dev /* allocate new exch from pool */ 852b2f0091fSVasu Dev while (fc_exch_ptr_get(pool, index)) { 853b2f0091fSVasu Dev index = index == mp->pool_max_index ? 0 : index + 1; 854b2f0091fSVasu Dev if (index == pool->next_index) 85542e9a92fSRobert Love goto err; 85642e9a92fSRobert Love } 857b2f0091fSVasu Dev pool->next_index = index == mp->pool_max_index ? 0 : index + 1; 8582034c19cSHillf Danton hit: 85942e9a92fSRobert Love fc_exch_hold(ep); /* hold for exch in mp */ 86042e9a92fSRobert Love spin_lock_init(&ep->ex_lock); 86142e9a92fSRobert Love /* 86242e9a92fSRobert Love * Hold exch lock for caller to prevent fc_exch_reset() 86342e9a92fSRobert Love * from releasing exch while fc_exch_alloc() caller is 86442e9a92fSRobert Love * still working on exch. 86542e9a92fSRobert Love */ 86642e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 86742e9a92fSRobert Love 868b2f0091fSVasu Dev fc_exch_ptr_set(pool, index, ep); 869b2f0091fSVasu Dev list_add_tail(&ep->ex_list, &pool->ex_list); 87042e9a92fSRobert Love fc_seq_alloc(ep, ep->seq_id++); 871b2f0091fSVasu Dev pool->total_exches++; 872b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 87342e9a92fSRobert Love 87442e9a92fSRobert Love /* 87542e9a92fSRobert Love * update exchange 87642e9a92fSRobert Love */ 877b2f0091fSVasu Dev ep->oxid = ep->xid = (index << fc_cpu_order | cpu) + mp->min_xid; 87842e9a92fSRobert Love ep->em = mp; 879b2f0091fSVasu Dev ep->pool = pool; 88052ff878cSVasu Dev ep->lp = lport; 88142e9a92fSRobert Love ep->f_ctl = FC_FC_FIRST_SEQ; /* next seq is first seq */ 88242e9a92fSRobert Love ep->rxid = FC_XID_UNKNOWN; 88342e9a92fSRobert Love ep->class = mp->class; 8847030fd62SBart Van Assche ep->resp_active = 0; 8857030fd62SBart Van Assche init_waitqueue_head(&ep->resp_wq); 88642e9a92fSRobert Love INIT_DELAYED_WORK(&ep->timeout_work, fc_exch_timeout); 88742e9a92fSRobert Love out: 88842e9a92fSRobert Love return ep; 88942e9a92fSRobert Love err: 890b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 89142e9a92fSRobert Love atomic_inc(&mp->stats.no_free_exch_xid); 89242e9a92fSRobert Love mempool_free(ep, mp->ep_pool); 89342e9a92fSRobert Love return NULL; 89442e9a92fSRobert Love } 89552ff878cSVasu Dev 89652ff878cSVasu Dev /** 8973a3b42bfSRobert Love * fc_exch_alloc() - Allocate an exchange from an EM on a 8983a3b42bfSRobert Love * local port's list of EMs. 8993a3b42bfSRobert Love * @lport: The local port that will own the exchange 9003a3b42bfSRobert Love * @fp: The FC frame that the exchange will be for 90152ff878cSVasu Dev * 9023a3b42bfSRobert Love * This function walks the list of exchange manager(EM) 9033a3b42bfSRobert Love * anchors to select an EM for a new exchange allocation. The 9043a3b42bfSRobert Love * EM is selected when a NULL match function pointer is encountered 9053a3b42bfSRobert Love * or when a call to a match function returns true. 90652ff878cSVasu Dev */ 907f8f91f3fSMartin K. Petersen static struct fc_exch *fc_exch_alloc(struct fc_lport *lport, 9081a7b75aeSRobert Love struct fc_frame *fp) 90952ff878cSVasu Dev { 91052ff878cSVasu Dev struct fc_exch_mgr_anchor *ema; 911f8f91f3fSMartin K. Petersen struct fc_exch *ep; 91252ff878cSVasu Dev 913f8f91f3fSMartin K. Petersen list_for_each_entry(ema, &lport->ema_list, ema_list) { 914f8f91f3fSMartin K. Petersen if (!ema->match || ema->match(fp)) { 915f8f91f3fSMartin K. Petersen ep = fc_exch_em_alloc(lport, ema->mp); 916f8f91f3fSMartin K. Petersen if (ep) 917f8f91f3fSMartin K. Petersen return ep; 918f8f91f3fSMartin K. Petersen } 919f8f91f3fSMartin K. Petersen } 92052ff878cSVasu Dev return NULL; 92152ff878cSVasu Dev } 92242e9a92fSRobert Love 9233a3b42bfSRobert Love /** 9243a3b42bfSRobert Love * fc_exch_find() - Lookup and hold an exchange 9253a3b42bfSRobert Love * @mp: The exchange manager to lookup the exchange from 9263a3b42bfSRobert Love * @xid: The XID of the exchange to look up 92742e9a92fSRobert Love */ 92842e9a92fSRobert Love static struct fc_exch *fc_exch_find(struct fc_exch_mgr *mp, u16 xid) 92942e9a92fSRobert Love { 9309ca1e182SHannes Reinecke struct fc_lport *lport = mp->lport; 931b2f0091fSVasu Dev struct fc_exch_pool *pool; 93242e9a92fSRobert Love struct fc_exch *ep = NULL; 933fa068832SChris Leech u16 cpu = xid & fc_cpu_mask; 934fa068832SChris Leech 935d5c3eb26SChris Leech if (xid == FC_XID_UNKNOWN) 936d5c3eb26SChris Leech return NULL; 937d5c3eb26SChris Leech 938fa068832SChris Leech if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) { 9399ca1e182SHannes Reinecke pr_err("host%u: lport %6.6x: xid %d invalid CPU %d\n:", 9409ca1e182SHannes Reinecke lport->host->host_no, lport->port_id, xid, cpu); 941fa068832SChris Leech return NULL; 942fa068832SChris Leech } 94342e9a92fSRobert Love 94442e9a92fSRobert Love if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) { 945fa068832SChris Leech pool = per_cpu_ptr(mp->pool, cpu); 946b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 947b2f0091fSVasu Dev ep = fc_exch_ptr_get(pool, (xid - mp->min_xid) >> fc_cpu_order); 9489ca1e182SHannes Reinecke if (ep == &fc_quarantine_exch) { 9499ca1e182SHannes Reinecke FC_LPORT_DBG(lport, "xid %x quarantined\n", xid); 9509ca1e182SHannes Reinecke ep = NULL; 9519ca1e182SHannes Reinecke } 9528d080236SBart Van Assche if (ep) { 9538d080236SBart Van Assche WARN_ON(ep->xid != xid); 95442e9a92fSRobert Love fc_exch_hold(ep); 9558d080236SBart Van Assche } 956b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 95742e9a92fSRobert Love } 95842e9a92fSRobert Love return ep; 95942e9a92fSRobert Love } 96042e9a92fSRobert Love 9611a7b75aeSRobert Love 9621a7b75aeSRobert Love /** 9631a7b75aeSRobert Love * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and 9641a7b75aeSRobert Love * the memory allocated for the related objects may be freed. 9653a3b42bfSRobert Love * @sp: The sequence that has completed 9667030fd62SBart Van Assche * 9677030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 9681a7b75aeSRobert Love */ 969768c72ccSHannes Reinecke void fc_exch_done(struct fc_seq *sp) 97042e9a92fSRobert Love { 97142e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 97242e9a92fSRobert Love int rc; 97342e9a92fSRobert Love 97442e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 97542e9a92fSRobert Love rc = fc_exch_done_locked(ep); 97642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 9777030fd62SBart Van Assche 9787030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 97942e9a92fSRobert Love if (!rc) 980b2f0091fSVasu Dev fc_exch_delete(ep); 98142e9a92fSRobert Love } 982768c72ccSHannes Reinecke EXPORT_SYMBOL(fc_exch_done); 98342e9a92fSRobert Love 9843a3b42bfSRobert Love /** 9853a3b42bfSRobert Love * fc_exch_resp() - Allocate a new exchange for a response frame 9863a3b42bfSRobert Love * @lport: The local port that the exchange was for 9873a3b42bfSRobert Love * @mp: The exchange manager to allocate the exchange from 9883a3b42bfSRobert Love * @fp: The response frame 9893a3b42bfSRobert Love * 99042e9a92fSRobert Love * Sets the responder ID in the frame header. 99142e9a92fSRobert Love */ 99252ff878cSVasu Dev static struct fc_exch *fc_exch_resp(struct fc_lport *lport, 99352ff878cSVasu Dev struct fc_exch_mgr *mp, 99452ff878cSVasu Dev struct fc_frame *fp) 99542e9a92fSRobert Love { 99642e9a92fSRobert Love struct fc_exch *ep; 99742e9a92fSRobert Love struct fc_frame_header *fh; 99842e9a92fSRobert Love 99952ff878cSVasu Dev ep = fc_exch_alloc(lport, fp); 100042e9a92fSRobert Love if (ep) { 100142e9a92fSRobert Love ep->class = fc_frame_class(fp); 100242e9a92fSRobert Love 100342e9a92fSRobert Love /* 100442e9a92fSRobert Love * Set EX_CTX indicating we're responding on this exchange. 100542e9a92fSRobert Love */ 100642e9a92fSRobert Love ep->f_ctl |= FC_FC_EX_CTX; /* we're responding */ 100742e9a92fSRobert Love ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not new */ 100842e9a92fSRobert Love fh = fc_frame_header_get(fp); 100942e9a92fSRobert Love ep->sid = ntoh24(fh->fh_d_id); 101042e9a92fSRobert Love ep->did = ntoh24(fh->fh_s_id); 101142e9a92fSRobert Love ep->oid = ep->did; 101242e9a92fSRobert Love 101342e9a92fSRobert Love /* 101442e9a92fSRobert Love * Allocated exchange has placed the XID in the 101542e9a92fSRobert Love * originator field. Move it to the responder field, 101642e9a92fSRobert Love * and set the originator XID from the frame. 101742e9a92fSRobert Love */ 101842e9a92fSRobert Love ep->rxid = ep->xid; 101942e9a92fSRobert Love ep->oxid = ntohs(fh->fh_ox_id); 102042e9a92fSRobert Love ep->esb_stat |= ESB_ST_RESP | ESB_ST_SEQ_INIT; 102142e9a92fSRobert Love if ((ntoh24(fh->fh_f_ctl) & FC_FC_SEQ_INIT) == 0) 102242e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 102342e9a92fSRobert Love 102442e9a92fSRobert Love fc_exch_hold(ep); /* hold for caller */ 102552ff878cSVasu Dev spin_unlock_bh(&ep->ex_lock); /* lock from fc_exch_alloc */ 102642e9a92fSRobert Love } 102742e9a92fSRobert Love return ep; 102842e9a92fSRobert Love } 102942e9a92fSRobert Love 10303a3b42bfSRobert Love /** 10313a3b42bfSRobert Love * fc_seq_lookup_recip() - Find a sequence where the other end 10323a3b42bfSRobert Love * originated the sequence 10333a3b42bfSRobert Love * @lport: The local port that the frame was sent to 10343a3b42bfSRobert Love * @mp: The Exchange Manager to lookup the exchange from 10353a3b42bfSRobert Love * @fp: The frame associated with the sequence we're looking for 10363a3b42bfSRobert Love * 103742e9a92fSRobert Love * If fc_pf_rjt_reason is FC_RJT_NONE then this function will have a hold 103842e9a92fSRobert Love * on the ep that should be released by the caller. 103942e9a92fSRobert Love */ 104052ff878cSVasu Dev static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport, 104152ff878cSVasu Dev struct fc_exch_mgr *mp, 1042b2ab99c9SRobert Love struct fc_frame *fp) 104342e9a92fSRobert Love { 104442e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 104542e9a92fSRobert Love struct fc_exch *ep = NULL; 104642e9a92fSRobert Love struct fc_seq *sp = NULL; 104742e9a92fSRobert Love enum fc_pf_rjt_reason reject = FC_RJT_NONE; 104842e9a92fSRobert Love u32 f_ctl; 104942e9a92fSRobert Love u16 xid; 105042e9a92fSRobert Love 105142e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 105242e9a92fSRobert Love WARN_ON((f_ctl & FC_FC_SEQ_CTX) != 0); 105342e9a92fSRobert Love 105442e9a92fSRobert Love /* 105542e9a92fSRobert Love * Lookup or create the exchange if we will be creating the sequence. 105642e9a92fSRobert Love */ 105742e9a92fSRobert Love if (f_ctl & FC_FC_EX_CTX) { 105842e9a92fSRobert Love xid = ntohs(fh->fh_ox_id); /* we originated exch */ 105942e9a92fSRobert Love ep = fc_exch_find(mp, xid); 106042e9a92fSRobert Love if (!ep) { 106142e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 106242e9a92fSRobert Love reject = FC_RJT_OX_ID; 106342e9a92fSRobert Love goto out; 106442e9a92fSRobert Love } 106542e9a92fSRobert Love if (ep->rxid == FC_XID_UNKNOWN) 106642e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 106742e9a92fSRobert Love else if (ep->rxid != ntohs(fh->fh_rx_id)) { 106842e9a92fSRobert Love reject = FC_RJT_OX_ID; 106942e9a92fSRobert Love goto rel; 107042e9a92fSRobert Love } 107142e9a92fSRobert Love } else { 107242e9a92fSRobert Love xid = ntohs(fh->fh_rx_id); /* we are the responder */ 107342e9a92fSRobert Love 107442e9a92fSRobert Love /* 107542e9a92fSRobert Love * Special case for MDS issuing an ELS TEST with a 107642e9a92fSRobert Love * bad rxid of 0. 107742e9a92fSRobert Love * XXX take this out once we do the proper reject. 107842e9a92fSRobert Love */ 107942e9a92fSRobert Love if (xid == 0 && fh->fh_r_ctl == FC_RCTL_ELS_REQ && 108042e9a92fSRobert Love fc_frame_payload_op(fp) == ELS_TEST) { 108142e9a92fSRobert Love fh->fh_rx_id = htons(FC_XID_UNKNOWN); 108242e9a92fSRobert Love xid = FC_XID_UNKNOWN; 108342e9a92fSRobert Love } 108442e9a92fSRobert Love 108542e9a92fSRobert Love /* 108642e9a92fSRobert Love * new sequence - find the exchange 108742e9a92fSRobert Love */ 108842e9a92fSRobert Love ep = fc_exch_find(mp, xid); 108942e9a92fSRobert Love if ((f_ctl & FC_FC_FIRST_SEQ) && fc_sof_is_init(fr_sof(fp))) { 109042e9a92fSRobert Love if (ep) { 109142e9a92fSRobert Love atomic_inc(&mp->stats.xid_busy); 109242e9a92fSRobert Love reject = FC_RJT_RX_ID; 109342e9a92fSRobert Love goto rel; 109442e9a92fSRobert Love } 109552ff878cSVasu Dev ep = fc_exch_resp(lport, mp, fp); 109642e9a92fSRobert Love if (!ep) { 109742e9a92fSRobert Love reject = FC_RJT_EXCH_EST; /* XXX */ 109842e9a92fSRobert Love goto out; 109942e9a92fSRobert Love } 110042e9a92fSRobert Love xid = ep->xid; /* get our XID */ 110142e9a92fSRobert Love } else if (!ep) { 110242e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 110342e9a92fSRobert Love reject = FC_RJT_RX_ID; /* XID not found */ 110442e9a92fSRobert Love goto out; 110542e9a92fSRobert Love } 110642e9a92fSRobert Love } 110742e9a92fSRobert Love 11085d73bea2SBart Van Assche spin_lock_bh(&ep->ex_lock); 110942e9a92fSRobert Love /* 111042e9a92fSRobert Love * At this point, we have the exchange held. 111142e9a92fSRobert Love * Find or create the sequence. 111242e9a92fSRobert Love */ 111342e9a92fSRobert Love if (fc_sof_is_init(fr_sof(fp))) { 1114a104c844SVasu Dev sp = &ep->seq; 111542e9a92fSRobert Love sp->ssb_stat |= SSB_ST_RESP; 1116b3667f91SJoe Eykholt sp->id = fh->fh_seq_id; 111742e9a92fSRobert Love } else { 111842e9a92fSRobert Love sp = &ep->seq; 111942e9a92fSRobert Love if (sp->id != fh->fh_seq_id) { 112042e9a92fSRobert Love atomic_inc(&mp->stats.seq_not_found); 1121e3e65c69SKiran Patil if (f_ctl & FC_FC_END_SEQ) { 1122e3e65c69SKiran Patil /* 1123e3e65c69SKiran Patil * Update sequence_id based on incoming last 1124e3e65c69SKiran Patil * frame of sequence exchange. This is needed 11251bd49b48SVasu Dev * for FC target where DDP has been used 1126e3e65c69SKiran Patil * on target where, stack is indicated only 1127e3e65c69SKiran Patil * about last frame's (payload _header) header. 1128e3e65c69SKiran Patil * Whereas "seq_id" which is part of 1129e3e65c69SKiran Patil * frame_header is allocated by initiator 1130e3e65c69SKiran Patil * which is totally different from "seq_id" 1131e3e65c69SKiran Patil * allocated when XFER_RDY was sent by target. 1132e3e65c69SKiran Patil * To avoid false -ve which results into not 1133e3e65c69SKiran Patil * sending RSP, hence write request on other 1134e3e65c69SKiran Patil * end never finishes. 1135e3e65c69SKiran Patil */ 1136e3e65c69SKiran Patil sp->ssb_stat |= SSB_ST_RESP; 1137e3e65c69SKiran Patil sp->id = fh->fh_seq_id; 1138e3e65c69SKiran Patil } else { 11395d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 11405d73bea2SBart Van Assche 1141e3e65c69SKiran Patil /* sequence/exch should exist */ 1142e3e65c69SKiran Patil reject = FC_RJT_SEQ_ID; 114342e9a92fSRobert Love goto rel; 114442e9a92fSRobert Love } 114542e9a92fSRobert Love } 1146e3e65c69SKiran Patil } 114742e9a92fSRobert Love WARN_ON(ep != fc_seq_exch(sp)); 114842e9a92fSRobert Love 114942e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_INIT) 115042e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 11515d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 115242e9a92fSRobert Love 115342e9a92fSRobert Love fr_seq(fp) = sp; 115442e9a92fSRobert Love out: 115542e9a92fSRobert Love return reject; 115642e9a92fSRobert Love rel: 115742e9a92fSRobert Love fc_exch_done(&ep->seq); 115842e9a92fSRobert Love fc_exch_release(ep); /* hold from fc_exch_find/fc_exch_resp */ 115942e9a92fSRobert Love return reject; 116042e9a92fSRobert Love } 116142e9a92fSRobert Love 11623a3b42bfSRobert Love /** 11633a3b42bfSRobert Love * fc_seq_lookup_orig() - Find a sequence where this end 11643a3b42bfSRobert Love * originated the sequence 11653a3b42bfSRobert Love * @mp: The Exchange Manager to lookup the exchange from 11663a3b42bfSRobert Love * @fp: The frame associated with the sequence we're looking for 11673a3b42bfSRobert Love * 116842e9a92fSRobert Love * Does not hold the sequence for the caller. 116942e9a92fSRobert Love */ 117042e9a92fSRobert Love static struct fc_seq *fc_seq_lookup_orig(struct fc_exch_mgr *mp, 117142e9a92fSRobert Love struct fc_frame *fp) 117242e9a92fSRobert Love { 117342e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 117442e9a92fSRobert Love struct fc_exch *ep; 117542e9a92fSRobert Love struct fc_seq *sp = NULL; 117642e9a92fSRobert Love u32 f_ctl; 117742e9a92fSRobert Love u16 xid; 117842e9a92fSRobert Love 117942e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 118042e9a92fSRobert Love WARN_ON((f_ctl & FC_FC_SEQ_CTX) != FC_FC_SEQ_CTX); 118142e9a92fSRobert Love xid = ntohs((f_ctl & FC_FC_EX_CTX) ? fh->fh_ox_id : fh->fh_rx_id); 118242e9a92fSRobert Love ep = fc_exch_find(mp, xid); 118342e9a92fSRobert Love if (!ep) 118442e9a92fSRobert Love return NULL; 118542e9a92fSRobert Love if (ep->seq.id == fh->fh_seq_id) { 118642e9a92fSRobert Love /* 118742e9a92fSRobert Love * Save the RX_ID if we didn't previously know it. 118842e9a92fSRobert Love */ 118942e9a92fSRobert Love sp = &ep->seq; 119042e9a92fSRobert Love if ((f_ctl & FC_FC_EX_CTX) != 0 && 119142e9a92fSRobert Love ep->rxid == FC_XID_UNKNOWN) { 119242e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 119342e9a92fSRobert Love } 119442e9a92fSRobert Love } 119542e9a92fSRobert Love fc_exch_release(ep); 119642e9a92fSRobert Love return sp; 119742e9a92fSRobert Love } 119842e9a92fSRobert Love 11993a3b42bfSRobert Love /** 12003a3b42bfSRobert Love * fc_exch_set_addr() - Set the source and destination IDs for an exchange 12013a3b42bfSRobert Love * @ep: The exchange to set the addresses for 12023a3b42bfSRobert Love * @orig_id: The originator's ID 12033a3b42bfSRobert Love * @resp_id: The responder's ID 12043a3b42bfSRobert Love * 120542e9a92fSRobert Love * Note this must be done before the first sequence of the exchange is sent. 120642e9a92fSRobert Love */ 120742e9a92fSRobert Love static void fc_exch_set_addr(struct fc_exch *ep, 120842e9a92fSRobert Love u32 orig_id, u32 resp_id) 120942e9a92fSRobert Love { 121042e9a92fSRobert Love ep->oid = orig_id; 121142e9a92fSRobert Love if (ep->esb_stat & ESB_ST_RESP) { 121242e9a92fSRobert Love ep->sid = resp_id; 121342e9a92fSRobert Love ep->did = orig_id; 121442e9a92fSRobert Love } else { 121542e9a92fSRobert Love ep->sid = orig_id; 121642e9a92fSRobert Love ep->did = resp_id; 121742e9a92fSRobert Love } 121842e9a92fSRobert Love } 121942e9a92fSRobert Love 12201a7b75aeSRobert Love /** 122125985edcSLucas De Marchi * fc_seq_els_rsp_send() - Send an ELS response using information from 12223a3b42bfSRobert Love * the existing sequence/exchange. 122392261156SJoe Eykholt * @fp: The received frame 12243a3b42bfSRobert Love * @els_cmd: The ELS command to be sent 12253a3b42bfSRobert Love * @els_data: The ELS data to be sent 122692261156SJoe Eykholt * 122792261156SJoe Eykholt * The received frame is not freed. 122842e9a92fSRobert Love */ 12297ab24dd1SHannes Reinecke void fc_seq_els_rsp_send(struct fc_frame *fp, enum fc_els_cmd els_cmd, 123042e9a92fSRobert Love struct fc_seq_els_data *els_data) 123142e9a92fSRobert Love { 123242e9a92fSRobert Love switch (els_cmd) { 123342e9a92fSRobert Love case ELS_LS_RJT: 123492261156SJoe Eykholt fc_seq_ls_rjt(fp, els_data->reason, els_data->explan); 123542e9a92fSRobert Love break; 123642e9a92fSRobert Love case ELS_LS_ACC: 123792261156SJoe Eykholt fc_seq_ls_acc(fp); 123842e9a92fSRobert Love break; 123942e9a92fSRobert Love case ELS_RRQ: 124092261156SJoe Eykholt fc_exch_els_rrq(fp); 124142e9a92fSRobert Love break; 124242e9a92fSRobert Love case ELS_REC: 124392261156SJoe Eykholt fc_exch_els_rec(fp); 124442e9a92fSRobert Love break; 124542e9a92fSRobert Love default: 124692261156SJoe Eykholt FC_LPORT_DBG(fr_dev(fp), "Invalid ELS CMD:%x\n", els_cmd); 124742e9a92fSRobert Love } 124842e9a92fSRobert Love } 12497ab24dd1SHannes Reinecke EXPORT_SYMBOL_GPL(fc_seq_els_rsp_send); 125042e9a92fSRobert Love 12513a3b42bfSRobert Love /** 12523a3b42bfSRobert Love * fc_seq_send_last() - Send a sequence that is the last in the exchange 12533a3b42bfSRobert Love * @sp: The sequence that is to be sent 12543a3b42bfSRobert Love * @fp: The frame that will be sent on the sequence 12553a3b42bfSRobert Love * @rctl: The R_CTL information to be sent 12563a3b42bfSRobert Love * @fh_type: The frame header type 125742e9a92fSRobert Love */ 125842e9a92fSRobert Love static void fc_seq_send_last(struct fc_seq *sp, struct fc_frame *fp, 125942e9a92fSRobert Love enum fc_rctl rctl, enum fc_fh_type fh_type) 126042e9a92fSRobert Love { 126142e9a92fSRobert Love u32 f_ctl; 126242e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 126342e9a92fSRobert Love 126442e9a92fSRobert Love f_ctl = FC_FC_LAST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT; 126542e9a92fSRobert Love f_ctl |= ep->f_ctl; 126642e9a92fSRobert Love fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0); 1267fb00cc23SNeil Horman fc_seq_send_locked(ep->lp, sp, fp); 126842e9a92fSRobert Love } 126942e9a92fSRobert Love 12703a3b42bfSRobert Love /** 12713a3b42bfSRobert Love * fc_seq_send_ack() - Send an acknowledgement that we've received a frame 12723a3b42bfSRobert Love * @sp: The sequence to send the ACK on 12733a3b42bfSRobert Love * @rx_fp: The received frame that is being acknoledged 12743a3b42bfSRobert Love * 127542e9a92fSRobert Love * Send ACK_1 (or equiv.) indicating we received something. 127642e9a92fSRobert Love */ 127742e9a92fSRobert Love static void fc_seq_send_ack(struct fc_seq *sp, const struct fc_frame *rx_fp) 127842e9a92fSRobert Love { 127942e9a92fSRobert Love struct fc_frame *fp; 128042e9a92fSRobert Love struct fc_frame_header *rx_fh; 128142e9a92fSRobert Love struct fc_frame_header *fh; 128242e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 12833a3b42bfSRobert Love struct fc_lport *lport = ep->lp; 128442e9a92fSRobert Love unsigned int f_ctl; 128542e9a92fSRobert Love 128642e9a92fSRobert Love /* 128742e9a92fSRobert Love * Don't send ACKs for class 3. 128842e9a92fSRobert Love */ 128942e9a92fSRobert Love if (fc_sof_needs_ack(fr_sof(rx_fp))) { 12903a3b42bfSRobert Love fp = fc_frame_alloc(lport, 0); 129157d3ec7eSHannes Reinecke if (!fp) { 129257d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop ACK request, out of memory\n"); 129342e9a92fSRobert Love return; 129457d3ec7eSHannes Reinecke } 129542e9a92fSRobert Love 129642e9a92fSRobert Love fh = fc_frame_header_get(fp); 129742e9a92fSRobert Love fh->fh_r_ctl = FC_RCTL_ACK_1; 129842e9a92fSRobert Love fh->fh_type = FC_TYPE_BLS; 129942e9a92fSRobert Love 130042e9a92fSRobert Love /* 130142e9a92fSRobert Love * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). 130242e9a92fSRobert Love * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. 130342e9a92fSRobert Love * Bits 9-8 are meaningful (retransmitted or unidirectional). 130442e9a92fSRobert Love * Last ACK uses bits 7-6 (continue sequence), 130542e9a92fSRobert Love * bits 5-4 are meaningful (what kind of ACK to use). 130642e9a92fSRobert Love */ 130742e9a92fSRobert Love rx_fh = fc_frame_header_get(rx_fp); 130842e9a92fSRobert Love f_ctl = ntoh24(rx_fh->fh_f_ctl); 130942e9a92fSRobert Love f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | 131042e9a92fSRobert Love FC_FC_FIRST_SEQ | FC_FC_LAST_SEQ | 131142e9a92fSRobert Love FC_FC_END_SEQ | FC_FC_END_CONN | FC_FC_SEQ_INIT | 131242e9a92fSRobert Love FC_FC_RETX_SEQ | FC_FC_UNI_TX; 131342e9a92fSRobert Love f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; 131442e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl); 131542e9a92fSRobert Love 131642e9a92fSRobert Love fc_exch_setup_hdr(ep, fp, f_ctl); 131742e9a92fSRobert Love fh->fh_seq_id = rx_fh->fh_seq_id; 131842e9a92fSRobert Love fh->fh_seq_cnt = rx_fh->fh_seq_cnt; 131942e9a92fSRobert Love fh->fh_parm_offset = htonl(1); /* ack single frame */ 132042e9a92fSRobert Love 132142e9a92fSRobert Love fr_sof(fp) = fr_sof(rx_fp); 132242e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) 132342e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 132442e9a92fSRobert Love else 132542e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 132642e9a92fSRobert Love 13273a3b42bfSRobert Love lport->tt.frame_send(lport, fp); 132842e9a92fSRobert Love } 132942e9a92fSRobert Love } 133042e9a92fSRobert Love 13313a3b42bfSRobert Love /** 13323a3b42bfSRobert Love * fc_exch_send_ba_rjt() - Send BLS Reject 13333a3b42bfSRobert Love * @rx_fp: The frame being rejected 13343a3b42bfSRobert Love * @reason: The reason the frame is being rejected 133525985edcSLucas De Marchi * @explan: The explanation for the rejection 13363a3b42bfSRobert Love * 133742e9a92fSRobert Love * This is for rejecting BA_ABTS only. 133842e9a92fSRobert Love */ 1339b2ab99c9SRobert Love static void fc_exch_send_ba_rjt(struct fc_frame *rx_fp, 1340b2ab99c9SRobert Love enum fc_ba_rjt_reason reason, 134142e9a92fSRobert Love enum fc_ba_rjt_explan explan) 134242e9a92fSRobert Love { 134342e9a92fSRobert Love struct fc_frame *fp; 134442e9a92fSRobert Love struct fc_frame_header *rx_fh; 134542e9a92fSRobert Love struct fc_frame_header *fh; 134642e9a92fSRobert Love struct fc_ba_rjt *rp; 134757d3ec7eSHannes Reinecke struct fc_seq *sp; 13483a3b42bfSRobert Love struct fc_lport *lport; 134942e9a92fSRobert Love unsigned int f_ctl; 135042e9a92fSRobert Love 13513a3b42bfSRobert Love lport = fr_dev(rx_fp); 135257d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 13533a3b42bfSRobert Love fp = fc_frame_alloc(lport, sizeof(*rp)); 135457d3ec7eSHannes Reinecke if (!fp) { 135557d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 135657d3ec7eSHannes Reinecke "Drop BA_RJT request, out of memory\n"); 135742e9a92fSRobert Love return; 135857d3ec7eSHannes Reinecke } 135942e9a92fSRobert Love fh = fc_frame_header_get(fp); 136042e9a92fSRobert Love rx_fh = fc_frame_header_get(rx_fp); 136142e9a92fSRobert Love 136242e9a92fSRobert Love memset(fh, 0, sizeof(*fh) + sizeof(*rp)); 136342e9a92fSRobert Love 136442e9a92fSRobert Love rp = fc_frame_payload_get(fp, sizeof(*rp)); 136542e9a92fSRobert Love rp->br_reason = reason; 136642e9a92fSRobert Love rp->br_explan = explan; 136742e9a92fSRobert Love 136842e9a92fSRobert Love /* 136942e9a92fSRobert Love * seq_id, cs_ctl, df_ctl and param/offset are zero. 137042e9a92fSRobert Love */ 137142e9a92fSRobert Love memcpy(fh->fh_s_id, rx_fh->fh_d_id, 3); 137242e9a92fSRobert Love memcpy(fh->fh_d_id, rx_fh->fh_s_id, 3); 13731d490ce3SJoe Eykholt fh->fh_ox_id = rx_fh->fh_ox_id; 13741d490ce3SJoe Eykholt fh->fh_rx_id = rx_fh->fh_rx_id; 137542e9a92fSRobert Love fh->fh_seq_cnt = rx_fh->fh_seq_cnt; 137642e9a92fSRobert Love fh->fh_r_ctl = FC_RCTL_BA_RJT; 137742e9a92fSRobert Love fh->fh_type = FC_TYPE_BLS; 137842e9a92fSRobert Love 137942e9a92fSRobert Love /* 138042e9a92fSRobert Love * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). 138142e9a92fSRobert Love * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. 138242e9a92fSRobert Love * Bits 9-8 are meaningful (retransmitted or unidirectional). 138342e9a92fSRobert Love * Last ACK uses bits 7-6 (continue sequence), 138442e9a92fSRobert Love * bits 5-4 are meaningful (what kind of ACK to use). 138542e9a92fSRobert Love * Always set LAST_SEQ, END_SEQ. 138642e9a92fSRobert Love */ 138742e9a92fSRobert Love f_ctl = ntoh24(rx_fh->fh_f_ctl); 138842e9a92fSRobert Love f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | 138942e9a92fSRobert Love FC_FC_END_CONN | FC_FC_SEQ_INIT | 139042e9a92fSRobert Love FC_FC_RETX_SEQ | FC_FC_UNI_TX; 139142e9a92fSRobert Love f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; 139242e9a92fSRobert Love f_ctl |= FC_FC_LAST_SEQ | FC_FC_END_SEQ; 139342e9a92fSRobert Love f_ctl &= ~FC_FC_FIRST_SEQ; 139442e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl); 139542e9a92fSRobert Love 139642e9a92fSRobert Love fr_sof(fp) = fc_sof_class(fr_sof(rx_fp)); 139742e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 139842e9a92fSRobert Love if (fc_sof_needs_ack(fr_sof(fp))) 139942e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 140042e9a92fSRobert Love 14013a3b42bfSRobert Love lport->tt.frame_send(lport, fp); 140242e9a92fSRobert Love } 140342e9a92fSRobert Love 14043a3b42bfSRobert Love /** 14053a3b42bfSRobert Love * fc_exch_recv_abts() - Handle an incoming ABTS 14063a3b42bfSRobert Love * @ep: The exchange the abort was on 14073a3b42bfSRobert Love * @rx_fp: The ABTS frame 14083a3b42bfSRobert Love * 14093a3b42bfSRobert Love * This would be for target mode usually, but could be due to lost 14103a3b42bfSRobert Love * FCP transfer ready, confirm or RRQ. We always handle this as an 14113a3b42bfSRobert Love * exchange abort, ignoring the parameter. 141242e9a92fSRobert Love */ 141342e9a92fSRobert Love static void fc_exch_recv_abts(struct fc_exch *ep, struct fc_frame *rx_fp) 141442e9a92fSRobert Love { 141542e9a92fSRobert Love struct fc_frame *fp; 141642e9a92fSRobert Love struct fc_ba_acc *ap; 141742e9a92fSRobert Love struct fc_frame_header *fh; 141842e9a92fSRobert Love struct fc_seq *sp; 141942e9a92fSRobert Love 142042e9a92fSRobert Love if (!ep) 142142e9a92fSRobert Love goto reject; 1422f95b35cfSBart Van Assche 142357d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: ABTS received\n"); 1424f95b35cfSBart Van Assche fp = fc_frame_alloc(ep->lp, sizeof(*ap)); 142557d3ec7eSHannes Reinecke if (!fp) { 142657d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop ABTS request, out of memory\n"); 1427f95b35cfSBart Van Assche goto free; 142857d3ec7eSHannes Reinecke } 1429f95b35cfSBart Van Assche 143042e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 143142e9a92fSRobert Love if (ep->esb_stat & ESB_ST_COMPLETE) { 143242e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 143357d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: ABTS rejected, exchange complete\n"); 1434f95b35cfSBart Van Assche fc_frame_free(fp); 143542e9a92fSRobert Love goto reject; 143642e9a92fSRobert Love } 1437cae7b6ddSBart Van Assche if (!(ep->esb_stat & ESB_ST_REC_QUAL)) { 1438cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_REC_QUAL; 143942e9a92fSRobert Love fc_exch_hold(ep); /* hold for REC_QUAL */ 1440cae7b6ddSBart Van Assche } 144142e9a92fSRobert Love fc_exch_timer_set_locked(ep, ep->r_a_tov); 144242e9a92fSRobert Love fh = fc_frame_header_get(fp); 144342e9a92fSRobert Love ap = fc_frame_payload_get(fp, sizeof(*ap)); 144442e9a92fSRobert Love memset(ap, 0, sizeof(*ap)); 144542e9a92fSRobert Love sp = &ep->seq; 144642e9a92fSRobert Love ap->ba_high_seq_cnt = htons(0xffff); 144742e9a92fSRobert Love if (sp->ssb_stat & SSB_ST_RESP) { 144842e9a92fSRobert Love ap->ba_seq_id = sp->id; 144942e9a92fSRobert Love ap->ba_seq_id_val = FC_BA_SEQ_ID_VAL; 145042e9a92fSRobert Love ap->ba_high_seq_cnt = fh->fh_seq_cnt; 145142e9a92fSRobert Love ap->ba_low_seq_cnt = htons(sp->cnt); 145242e9a92fSRobert Love } 1453a7e84f2bSVasu Dev sp = fc_seq_start_next_locked(sp); 145442e9a92fSRobert Love fc_seq_send_last(sp, fp, FC_RCTL_BA_ACC, FC_TYPE_BLS); 1455cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_ABNORMAL; 1456fb00cc23SNeil Horman spin_unlock_bh(&ep->ex_lock); 1457f95b35cfSBart Van Assche 1458f95b35cfSBart Van Assche free: 145942e9a92fSRobert Love fc_frame_free(rx_fp); 146042e9a92fSRobert Love return; 146142e9a92fSRobert Love 146242e9a92fSRobert Love reject: 146342e9a92fSRobert Love fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID); 1464f95b35cfSBart Van Assche goto free; 146542e9a92fSRobert Love } 146642e9a92fSRobert Love 14673a3b42bfSRobert Love /** 1468239e8104SJoe Eykholt * fc_seq_assign() - Assign exchange and sequence for incoming request 1469239e8104SJoe Eykholt * @lport: The local port that received the request 1470239e8104SJoe Eykholt * @fp: The request frame 1471239e8104SJoe Eykholt * 1472239e8104SJoe Eykholt * On success, the sequence pointer will be returned and also in fr_seq(@fp). 147362bdb645SJoe Eykholt * A reference will be held on the exchange/sequence for the caller, which 147462bdb645SJoe Eykholt * must call fc_seq_release(). 1475239e8104SJoe Eykholt */ 147696d564e2SHannes Reinecke struct fc_seq *fc_seq_assign(struct fc_lport *lport, struct fc_frame *fp) 1477239e8104SJoe Eykholt { 1478239e8104SJoe Eykholt struct fc_exch_mgr_anchor *ema; 1479239e8104SJoe Eykholt 1480239e8104SJoe Eykholt WARN_ON(lport != fr_dev(fp)); 1481239e8104SJoe Eykholt WARN_ON(fr_seq(fp)); 1482239e8104SJoe Eykholt fr_seq(fp) = NULL; 1483239e8104SJoe Eykholt 1484239e8104SJoe Eykholt list_for_each_entry(ema, &lport->ema_list, ema_list) 1485239e8104SJoe Eykholt if ((!ema->match || ema->match(fp)) && 1486530994d6SHillf Danton fc_seq_lookup_recip(lport, ema->mp, fp) == FC_RJT_NONE) 1487239e8104SJoe Eykholt break; 1488239e8104SJoe Eykholt return fr_seq(fp); 1489239e8104SJoe Eykholt } 149096d564e2SHannes Reinecke EXPORT_SYMBOL(fc_seq_assign); 1491239e8104SJoe Eykholt 1492239e8104SJoe Eykholt /** 149362bdb645SJoe Eykholt * fc_seq_release() - Release the hold 149462bdb645SJoe Eykholt * @sp: The sequence. 149562bdb645SJoe Eykholt */ 14969625cc48SHannes Reinecke void fc_seq_release(struct fc_seq *sp) 149762bdb645SJoe Eykholt { 149862bdb645SJoe Eykholt fc_exch_release(fc_seq_exch(sp)); 149962bdb645SJoe Eykholt } 15009625cc48SHannes Reinecke EXPORT_SYMBOL(fc_seq_release); 150162bdb645SJoe Eykholt 150262bdb645SJoe Eykholt /** 150392261156SJoe Eykholt * fc_exch_recv_req() - Handler for an incoming request 15043a3b42bfSRobert Love * @lport: The local port that received the request 15053a3b42bfSRobert Love * @mp: The EM that the exchange is on 15063a3b42bfSRobert Love * @fp: The request frame 150792261156SJoe Eykholt * 150892261156SJoe Eykholt * This is used when the other end is originating the exchange 150992261156SJoe Eykholt * and the sequence. 151042e9a92fSRobert Love */ 15113a3b42bfSRobert Love static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp, 151242e9a92fSRobert Love struct fc_frame *fp) 151342e9a92fSRobert Love { 151442e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 151542e9a92fSRobert Love struct fc_seq *sp = NULL; 151642e9a92fSRobert Love struct fc_exch *ep = NULL; 151742e9a92fSRobert Love enum fc_pf_rjt_reason reject; 151842e9a92fSRobert Love 1519174e1ebfSChris Leech /* We can have the wrong fc_lport at this point with NPIV, which is a 1520174e1ebfSChris Leech * problem now that we know a new exchange needs to be allocated 1521174e1ebfSChris Leech */ 15223a3b42bfSRobert Love lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id)); 15233a3b42bfSRobert Love if (!lport) { 1524174e1ebfSChris Leech fc_frame_free(fp); 1525174e1ebfSChris Leech return; 1526174e1ebfSChris Leech } 152792261156SJoe Eykholt fr_dev(fp) = lport; 1528174e1ebfSChris Leech 152992261156SJoe Eykholt BUG_ON(fr_seq(fp)); /* XXX remove later */ 153092261156SJoe Eykholt 153192261156SJoe Eykholt /* 153292261156SJoe Eykholt * If the RX_ID is 0xffff, don't allocate an exchange. 153392261156SJoe Eykholt * The upper-level protocol may request one later, if needed. 153492261156SJoe Eykholt */ 153592261156SJoe Eykholt if (fh->fh_rx_id == htons(FC_XID_UNKNOWN)) 1536c5cb444cSHannes Reinecke return fc_lport_recv(lport, fp); 153792261156SJoe Eykholt 15383a3b42bfSRobert Love reject = fc_seq_lookup_recip(lport, mp, fp); 153942e9a92fSRobert Love if (reject == FC_RJT_NONE) { 154042e9a92fSRobert Love sp = fr_seq(fp); /* sequence will be held */ 154142e9a92fSRobert Love ep = fc_seq_exch(sp); 154242e9a92fSRobert Love fc_seq_send_ack(sp, fp); 1543f60e12e9SJoe Eykholt ep->encaps = fr_encaps(fp); 154442e9a92fSRobert Love 154542e9a92fSRobert Love /* 154642e9a92fSRobert Love * Call the receive function. 154742e9a92fSRobert Love * 154842e9a92fSRobert Love * The receive function may allocate a new sequence 154942e9a92fSRobert Love * over the old one, so we shouldn't change the 155042e9a92fSRobert Love * sequence after this. 155142e9a92fSRobert Love * 155242e9a92fSRobert Love * The frame will be freed by the receive function. 155342e9a92fSRobert Love * If new exch resp handler is valid then call that 155442e9a92fSRobert Love * first. 155542e9a92fSRobert Love */ 15567030fd62SBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1557c5cb444cSHannes Reinecke fc_lport_recv(lport, fp); 155842e9a92fSRobert Love fc_exch_release(ep); /* release from lookup */ 155942e9a92fSRobert Love } else { 15603a3b42bfSRobert Love FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n", 15613a3b42bfSRobert Love reject); 156242e9a92fSRobert Love fc_frame_free(fp); 156342e9a92fSRobert Love } 156442e9a92fSRobert Love } 156542e9a92fSRobert Love 15663a3b42bfSRobert Love /** 15673a3b42bfSRobert Love * fc_exch_recv_seq_resp() - Handler for an incoming response where the other 15683a3b42bfSRobert Love * end is the originator of the sequence that is a 15693a3b42bfSRobert Love * response to our initial exchange 15703a3b42bfSRobert Love * @mp: The EM that the exchange is on 15713a3b42bfSRobert Love * @fp: The response frame 157242e9a92fSRobert Love */ 157342e9a92fSRobert Love static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) 157442e9a92fSRobert Love { 157542e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 157642e9a92fSRobert Love struct fc_seq *sp; 157742e9a92fSRobert Love struct fc_exch *ep; 157842e9a92fSRobert Love enum fc_sof sof; 157942e9a92fSRobert Love u32 f_ctl; 158042e9a92fSRobert Love int rc; 158142e9a92fSRobert Love 158242e9a92fSRobert Love ep = fc_exch_find(mp, ntohs(fh->fh_ox_id)); 158342e9a92fSRobert Love if (!ep) { 158442e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 158542e9a92fSRobert Love goto out; 158642e9a92fSRobert Love } 158730121d14SSteve Ma if (ep->esb_stat & ESB_ST_COMPLETE) { 158830121d14SSteve Ma atomic_inc(&mp->stats.xid_not_found); 15898236554aSHillf Danton goto rel; 159030121d14SSteve Ma } 159142e9a92fSRobert Love if (ep->rxid == FC_XID_UNKNOWN) 159242e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 159342e9a92fSRobert Love if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) { 159442e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 159542e9a92fSRobert Love goto rel; 159642e9a92fSRobert Love } 159742e9a92fSRobert Love if (ep->did != ntoh24(fh->fh_s_id) && 159842e9a92fSRobert Love ep->did != FC_FID_FLOGI) { 159942e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 160042e9a92fSRobert Love goto rel; 160142e9a92fSRobert Love } 160242e9a92fSRobert Love sof = fr_sof(fp); 160342e9a92fSRobert Love sp = &ep->seq; 1604b3667f91SJoe Eykholt if (fc_sof_is_init(sof)) { 1605a104c844SVasu Dev sp->ssb_stat |= SSB_ST_RESP; 1606b3667f91SJoe Eykholt sp->id = fh->fh_seq_id; 160742e9a92fSRobert Love } 1608a104c844SVasu Dev 160942e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 161042e9a92fSRobert Love fr_seq(fp) = sp; 16115d73bea2SBart Van Assche 16125d73bea2SBart Van Assche spin_lock_bh(&ep->ex_lock); 161342e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_INIT) 161442e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 16155d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 161642e9a92fSRobert Love 161742e9a92fSRobert Love if (fc_sof_needs_ack(sof)) 161842e9a92fSRobert Love fc_seq_send_ack(sp, fp); 161942e9a92fSRobert Love 162042e9a92fSRobert Love if (fh->fh_type != FC_TYPE_FCP && fr_eof(fp) == FC_EOF_T && 162142e9a92fSRobert Love (f_ctl & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) == 162242e9a92fSRobert Love (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) { 162342e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 162442e9a92fSRobert Love rc = fc_exch_done_locked(ep); 162542e9a92fSRobert Love WARN_ON(fc_seq_exch(sp) != ep); 162642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 162742e9a92fSRobert Love if (!rc) 1628b2f0091fSVasu Dev fc_exch_delete(ep); 162942e9a92fSRobert Love } 163042e9a92fSRobert Love 163142e9a92fSRobert Love /* 163242e9a92fSRobert Love * Call the receive function. 163342e9a92fSRobert Love * The sequence is held (has a refcnt) for us, 163442e9a92fSRobert Love * but not for the receive function. 163542e9a92fSRobert Love * 163642e9a92fSRobert Love * The receive function may allocate a new sequence 163742e9a92fSRobert Love * over the old one, so we shouldn't change the 163842e9a92fSRobert Love * sequence after this. 163942e9a92fSRobert Love * 164042e9a92fSRobert Love * The frame will be freed by the receive function. 164142e9a92fSRobert Love * If new exch resp handler is valid then call that 164242e9a92fSRobert Love * first. 164342e9a92fSRobert Love */ 1644f6979adeSBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1645f6979adeSBart Van Assche fc_frame_free(fp); 16467030fd62SBart Van Assche 164742e9a92fSRobert Love fc_exch_release(ep); 164842e9a92fSRobert Love return; 164942e9a92fSRobert Love rel: 165042e9a92fSRobert Love fc_exch_release(ep); 165142e9a92fSRobert Love out: 165242e9a92fSRobert Love fc_frame_free(fp); 165342e9a92fSRobert Love } 165442e9a92fSRobert Love 16553a3b42bfSRobert Love /** 16563a3b42bfSRobert Love * fc_exch_recv_resp() - Handler for a sequence where other end is 16573a3b42bfSRobert Love * responding to our sequence 16583a3b42bfSRobert Love * @mp: The EM that the exchange is on 16593a3b42bfSRobert Love * @fp: The response frame 166042e9a92fSRobert Love */ 166142e9a92fSRobert Love static void fc_exch_recv_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) 166242e9a92fSRobert Love { 166342e9a92fSRobert Love struct fc_seq *sp; 166442e9a92fSRobert Love 166542e9a92fSRobert Love sp = fc_seq_lookup_orig(mp, fp); /* doesn't hold sequence */ 1666d459b7eaSRobert Love 1667d459b7eaSRobert Love if (!sp) 166842e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 1669d459b7eaSRobert Love else 167042e9a92fSRobert Love atomic_inc(&mp->stats.non_bls_resp); 1671d459b7eaSRobert Love 167242e9a92fSRobert Love fc_frame_free(fp); 167342e9a92fSRobert Love } 167442e9a92fSRobert Love 16753a3b42bfSRobert Love /** 16763a3b42bfSRobert Love * fc_exch_abts_resp() - Handler for a response to an ABT 16773a3b42bfSRobert Love * @ep: The exchange that the frame is on 16783a3b42bfSRobert Love * @fp: The response frame 16793a3b42bfSRobert Love * 16803a3b42bfSRobert Love * This response would be to an ABTS cancelling an exchange or sequence. 16813a3b42bfSRobert Love * The response can be either BA_ACC or BA_RJT 168242e9a92fSRobert Love */ 168342e9a92fSRobert Love static void fc_exch_abts_resp(struct fc_exch *ep, struct fc_frame *fp) 168442e9a92fSRobert Love { 168542e9a92fSRobert Love struct fc_frame_header *fh; 168642e9a92fSRobert Love struct fc_ba_acc *ap; 168742e9a92fSRobert Love struct fc_seq *sp; 168842e9a92fSRobert Love u16 low; 168942e9a92fSRobert Love u16 high; 169042e9a92fSRobert Love int rc = 1, has_rec = 0; 169142e9a92fSRobert Love 169242e9a92fSRobert Love fh = fc_frame_header_get(fp); 16937414705eSRobert Love FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl, 16947414705eSRobert Love fc_exch_rctl_name(fh->fh_r_ctl)); 169542e9a92fSRobert Love 1696b29a4f30SVasu Dev if (cancel_delayed_work_sync(&ep->timeout_work)) { 16973a292605SRobert Love FC_EXCH_DBG(ep, "Exchange timer canceled due to ABTS response\n"); 169842e9a92fSRobert Love fc_exch_release(ep); /* release from pending timer hold */ 1699b29a4f30SVasu Dev } 170042e9a92fSRobert Love 170142e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 170242e9a92fSRobert Love switch (fh->fh_r_ctl) { 170342e9a92fSRobert Love case FC_RCTL_BA_ACC: 170442e9a92fSRobert Love ap = fc_frame_payload_get(fp, sizeof(*ap)); 170542e9a92fSRobert Love if (!ap) 170642e9a92fSRobert Love break; 170742e9a92fSRobert Love 170842e9a92fSRobert Love /* 170942e9a92fSRobert Love * Decide whether to establish a Recovery Qualifier. 171042e9a92fSRobert Love * We do this if there is a non-empty SEQ_CNT range and 171142e9a92fSRobert Love * SEQ_ID is the same as the one we aborted. 171242e9a92fSRobert Love */ 171342e9a92fSRobert Love low = ntohs(ap->ba_low_seq_cnt); 171442e9a92fSRobert Love high = ntohs(ap->ba_high_seq_cnt); 171542e9a92fSRobert Love if ((ep->esb_stat & ESB_ST_REC_QUAL) == 0 && 171642e9a92fSRobert Love (ap->ba_seq_id_val != FC_BA_SEQ_ID_VAL || 171742e9a92fSRobert Love ap->ba_seq_id == ep->seq_id) && low != high) { 171842e9a92fSRobert Love ep->esb_stat |= ESB_ST_REC_QUAL; 171942e9a92fSRobert Love fc_exch_hold(ep); /* hold for recovery qualifier */ 172042e9a92fSRobert Love has_rec = 1; 172142e9a92fSRobert Love } 172242e9a92fSRobert Love break; 172342e9a92fSRobert Love case FC_RCTL_BA_RJT: 172442e9a92fSRobert Love break; 172542e9a92fSRobert Love default: 172642e9a92fSRobert Love break; 172742e9a92fSRobert Love } 172842e9a92fSRobert Love 172942e9a92fSRobert Love /* do we need to do some other checks here. Can we reuse more of 173042e9a92fSRobert Love * fc_exch_recv_seq_resp 173142e9a92fSRobert Love */ 173242e9a92fSRobert Love sp = &ep->seq; 173342e9a92fSRobert Love /* 173442e9a92fSRobert Love * do we want to check END_SEQ as well as LAST_SEQ here? 173542e9a92fSRobert Love */ 173642e9a92fSRobert Love if (ep->fh_type != FC_TYPE_FCP && 173742e9a92fSRobert Love ntoh24(fh->fh_f_ctl) & FC_FC_LAST_SEQ) 173842e9a92fSRobert Love rc = fc_exch_done_locked(ep); 173942e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 17407030fd62SBart Van Assche 17417030fd62SBart Van Assche fc_exch_hold(ep); 174242e9a92fSRobert Love if (!rc) 1743b2f0091fSVasu Dev fc_exch_delete(ep); 1744f6979adeSBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1745f6979adeSBart Van Assche fc_frame_free(fp); 174642e9a92fSRobert Love if (has_rec) 174742e9a92fSRobert Love fc_exch_timer_set(ep, ep->r_a_tov); 17487030fd62SBart Van Assche fc_exch_release(ep); 174942e9a92fSRobert Love } 175042e9a92fSRobert Love 17513a3b42bfSRobert Love /** 17523a3b42bfSRobert Love * fc_exch_recv_bls() - Handler for a BLS sequence 17533a3b42bfSRobert Love * @mp: The EM that the exchange is on 17543a3b42bfSRobert Love * @fp: The request frame 17553a3b42bfSRobert Love * 17563a3b42bfSRobert Love * The BLS frame is always a sequence initiated by the remote side. 175742e9a92fSRobert Love * We may be either the originator or recipient of the exchange. 175842e9a92fSRobert Love */ 175942e9a92fSRobert Love static void fc_exch_recv_bls(struct fc_exch_mgr *mp, struct fc_frame *fp) 176042e9a92fSRobert Love { 176142e9a92fSRobert Love struct fc_frame_header *fh; 176242e9a92fSRobert Love struct fc_exch *ep; 176342e9a92fSRobert Love u32 f_ctl; 176442e9a92fSRobert Love 176542e9a92fSRobert Love fh = fc_frame_header_get(fp); 176642e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 176742e9a92fSRobert Love fr_seq(fp) = NULL; 176842e9a92fSRobert Love 176942e9a92fSRobert Love ep = fc_exch_find(mp, (f_ctl & FC_FC_EX_CTX) ? 177042e9a92fSRobert Love ntohs(fh->fh_ox_id) : ntohs(fh->fh_rx_id)); 177142e9a92fSRobert Love if (ep && (f_ctl & FC_FC_SEQ_INIT)) { 177242e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 177342e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 177442e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 177542e9a92fSRobert Love } 177642e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_CTX) { 177742e9a92fSRobert Love /* 177842e9a92fSRobert Love * A response to a sequence we initiated. 177942e9a92fSRobert Love * This should only be ACKs for class 2 or F. 178042e9a92fSRobert Love */ 178142e9a92fSRobert Love switch (fh->fh_r_ctl) { 178242e9a92fSRobert Love case FC_RCTL_ACK_1: 178342e9a92fSRobert Love case FC_RCTL_ACK_0: 178442e9a92fSRobert Love break; 178542e9a92fSRobert Love default: 1786d4042e9cSBhanu Prakash Gollapudi if (ep) 1787b20d9bfdSBart Van Assche FC_EXCH_DBG(ep, "BLS rctl %x - %s received\n", 178842e9a92fSRobert Love fh->fh_r_ctl, 178942e9a92fSRobert Love fc_exch_rctl_name(fh->fh_r_ctl)); 179042e9a92fSRobert Love break; 179142e9a92fSRobert Love } 179242e9a92fSRobert Love fc_frame_free(fp); 179342e9a92fSRobert Love } else { 179442e9a92fSRobert Love switch (fh->fh_r_ctl) { 179542e9a92fSRobert Love case FC_RCTL_BA_RJT: 179642e9a92fSRobert Love case FC_RCTL_BA_ACC: 179742e9a92fSRobert Love if (ep) 179842e9a92fSRobert Love fc_exch_abts_resp(ep, fp); 179942e9a92fSRobert Love else 180042e9a92fSRobert Love fc_frame_free(fp); 180142e9a92fSRobert Love break; 180242e9a92fSRobert Love case FC_RCTL_BA_ABTS: 1803b73aa56eSHannes Reinecke if (ep) 180442e9a92fSRobert Love fc_exch_recv_abts(ep, fp); 1805b73aa56eSHannes Reinecke else 1806b73aa56eSHannes Reinecke fc_frame_free(fp); 180742e9a92fSRobert Love break; 180842e9a92fSRobert Love default: /* ignore junk */ 180942e9a92fSRobert Love fc_frame_free(fp); 181042e9a92fSRobert Love break; 181142e9a92fSRobert Love } 181242e9a92fSRobert Love } 181342e9a92fSRobert Love if (ep) 181442e9a92fSRobert Love fc_exch_release(ep); /* release hold taken by fc_exch_find */ 181542e9a92fSRobert Love } 181642e9a92fSRobert Love 18173a3b42bfSRobert Love /** 18183a3b42bfSRobert Love * fc_seq_ls_acc() - Accept sequence with LS_ACC 181992261156SJoe Eykholt * @rx_fp: The received frame, not freed here. 18203a3b42bfSRobert Love * 182142e9a92fSRobert Love * If this fails due to allocation or transmit congestion, assume the 182242e9a92fSRobert Love * originator will repeat the sequence. 182342e9a92fSRobert Love */ 182492261156SJoe Eykholt static void fc_seq_ls_acc(struct fc_frame *rx_fp) 182542e9a92fSRobert Love { 182692261156SJoe Eykholt struct fc_lport *lport; 182742e9a92fSRobert Love struct fc_els_ls_acc *acc; 182842e9a92fSRobert Love struct fc_frame *fp; 182957d3ec7eSHannes Reinecke struct fc_seq *sp; 183042e9a92fSRobert Love 183192261156SJoe Eykholt lport = fr_dev(rx_fp); 183257d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 183392261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*acc)); 183457d3ec7eSHannes Reinecke if (!fp) { 183557d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 183657d3ec7eSHannes Reinecke "exch: drop LS_ACC, out of memory\n"); 183792261156SJoe Eykholt return; 183857d3ec7eSHannes Reinecke } 183942e9a92fSRobert Love acc = fc_frame_payload_get(fp, sizeof(*acc)); 184042e9a92fSRobert Love memset(acc, 0, sizeof(*acc)); 184142e9a92fSRobert Love acc->la_cmd = ELS_LS_ACC; 184292261156SJoe Eykholt fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0); 184392261156SJoe Eykholt lport->tt.frame_send(lport, fp); 184442e9a92fSRobert Love } 184542e9a92fSRobert Love 18463a3b42bfSRobert Love /** 18473a3b42bfSRobert Love * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT 184892261156SJoe Eykholt * @rx_fp: The received frame, not freed here. 18493a3b42bfSRobert Love * @reason: The reason the sequence is being rejected 185092261156SJoe Eykholt * @explan: The explanation for the rejection 18513a3b42bfSRobert Love * 185242e9a92fSRobert Love * If this fails due to allocation or transmit congestion, assume the 185342e9a92fSRobert Love * originator will repeat the sequence. 185442e9a92fSRobert Love */ 185592261156SJoe Eykholt static void fc_seq_ls_rjt(struct fc_frame *rx_fp, enum fc_els_rjt_reason reason, 185642e9a92fSRobert Love enum fc_els_rjt_explan explan) 185742e9a92fSRobert Love { 185892261156SJoe Eykholt struct fc_lport *lport; 185942e9a92fSRobert Love struct fc_els_ls_rjt *rjt; 186042e9a92fSRobert Love struct fc_frame *fp; 186157d3ec7eSHannes Reinecke struct fc_seq *sp; 186242e9a92fSRobert Love 186392261156SJoe Eykholt lport = fr_dev(rx_fp); 186457d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 186592261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*rjt)); 186657d3ec7eSHannes Reinecke if (!fp) { 186757d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 186857d3ec7eSHannes Reinecke "exch: drop LS_ACC, out of memory\n"); 186992261156SJoe Eykholt return; 187057d3ec7eSHannes Reinecke } 187142e9a92fSRobert Love rjt = fc_frame_payload_get(fp, sizeof(*rjt)); 187242e9a92fSRobert Love memset(rjt, 0, sizeof(*rjt)); 187342e9a92fSRobert Love rjt->er_cmd = ELS_LS_RJT; 187442e9a92fSRobert Love rjt->er_reason = reason; 187542e9a92fSRobert Love rjt->er_explan = explan; 187692261156SJoe Eykholt fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0); 187792261156SJoe Eykholt lport->tt.frame_send(lport, fp); 187842e9a92fSRobert Love } 187942e9a92fSRobert Love 18803a3b42bfSRobert Love /** 18813a3b42bfSRobert Love * fc_exch_reset() - Reset an exchange 18823a3b42bfSRobert Love * @ep: The exchange to be reset 18837030fd62SBart Van Assche * 18847030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 18853a3b42bfSRobert Love */ 188642e9a92fSRobert Love static void fc_exch_reset(struct fc_exch *ep) 188742e9a92fSRobert Love { 188842e9a92fSRobert Love struct fc_seq *sp; 188942e9a92fSRobert Love int rc = 1; 189042e9a92fSRobert Love 189142e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 189242e9a92fSRobert Love ep->state |= FC_EX_RST_CLEANUP; 1893b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 189442e9a92fSRobert Love if (ep->esb_stat & ESB_ST_REC_QUAL) 189542e9a92fSRobert Love atomic_dec(&ep->ex_refcnt); /* drop hold for rec_qual */ 189642e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_REC_QUAL; 189742e9a92fSRobert Love sp = &ep->seq; 189842e9a92fSRobert Love rc = fc_exch_done_locked(ep); 189942e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 19007030fd62SBart Van Assche 19017030fd62SBart Van Assche fc_exch_hold(ep); 19027030fd62SBart Van Assche 190342e9a92fSRobert Love if (!rc) 1904b2f0091fSVasu Dev fc_exch_delete(ep); 190542e9a92fSRobert Love 19067030fd62SBart Van Assche fc_invoke_resp(ep, sp, ERR_PTR(-FC_EX_CLOSED)); 19077030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 19087030fd62SBart Van Assche fc_exch_release(ep); 190942e9a92fSRobert Love } 191042e9a92fSRobert Love 1911b2f0091fSVasu Dev /** 19123a3b42bfSRobert Love * fc_exch_pool_reset() - Reset a per cpu exchange pool 19133a3b42bfSRobert Love * @lport: The local port that the exchange pool is on 19143a3b42bfSRobert Love * @pool: The exchange pool to be reset 19153a3b42bfSRobert Love * @sid: The source ID 19163a3b42bfSRobert Love * @did: The destination ID 1917b2f0091fSVasu Dev * 19183a3b42bfSRobert Love * Resets a per cpu exches pool, releasing all of its sequences 19193a3b42bfSRobert Love * and exchanges. If sid is non-zero then reset only exchanges 19203a3b42bfSRobert Love * we sourced from the local port's FID. If did is non-zero then 19213a3b42bfSRobert Love * only reset exchanges destined for the local port's FID. 192242e9a92fSRobert Love */ 1923b2f0091fSVasu Dev static void fc_exch_pool_reset(struct fc_lport *lport, 1924b2f0091fSVasu Dev struct fc_exch_pool *pool, 1925b2f0091fSVasu Dev u32 sid, u32 did) 192642e9a92fSRobert Love { 192742e9a92fSRobert Love struct fc_exch *ep; 192842e9a92fSRobert Love struct fc_exch *next; 192942e9a92fSRobert Love 1930b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 193142e9a92fSRobert Love restart: 1932b2f0091fSVasu Dev list_for_each_entry_safe(ep, next, &pool->ex_list, ex_list) { 1933b2f0091fSVasu Dev if ((lport == ep->lp) && 193452ff878cSVasu Dev (sid == 0 || sid == ep->sid) && 193542e9a92fSRobert Love (did == 0 || did == ep->did)) { 193642e9a92fSRobert Love fc_exch_hold(ep); 1937b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 193842e9a92fSRobert Love 193942e9a92fSRobert Love fc_exch_reset(ep); 194042e9a92fSRobert Love 194142e9a92fSRobert Love fc_exch_release(ep); 1942b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 194342e9a92fSRobert Love 194442e9a92fSRobert Love /* 194552ff878cSVasu Dev * must restart loop incase while lock 194652ff878cSVasu Dev * was down multiple eps were released. 194742e9a92fSRobert Love */ 194842e9a92fSRobert Love goto restart; 194942e9a92fSRobert Love } 195042e9a92fSRobert Love } 1951b6e3c840SVasu Dev pool->next_index = 0; 1952b6e3c840SVasu Dev pool->left = FC_XID_UNKNOWN; 1953b6e3c840SVasu Dev pool->right = FC_XID_UNKNOWN; 1954b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 1955b2f0091fSVasu Dev } 1956b2f0091fSVasu Dev 1957b2f0091fSVasu Dev /** 19583a3b42bfSRobert Love * fc_exch_mgr_reset() - Reset all EMs of a local port 19593a3b42bfSRobert Love * @lport: The local port whose EMs are to be reset 19603a3b42bfSRobert Love * @sid: The source ID 19613a3b42bfSRobert Love * @did: The destination ID 1962b2f0091fSVasu Dev * 19633a3b42bfSRobert Love * Reset all EMs associated with a given local port. Release all 19643a3b42bfSRobert Love * sequences and exchanges. If sid is non-zero then reset only the 19653a3b42bfSRobert Love * exchanges sent from the local port's FID. If did is non-zero then 19663a3b42bfSRobert Love * reset only exchanges destined for the local port's FID. 1967b2f0091fSVasu Dev */ 1968b2f0091fSVasu Dev void fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did) 1969b2f0091fSVasu Dev { 1970b2f0091fSVasu Dev struct fc_exch_mgr_anchor *ema; 1971b2f0091fSVasu Dev unsigned int cpu; 1972b2f0091fSVasu Dev 1973b2f0091fSVasu Dev list_for_each_entry(ema, &lport->ema_list, ema_list) { 1974b2f0091fSVasu Dev for_each_possible_cpu(cpu) 1975b2f0091fSVasu Dev fc_exch_pool_reset(lport, 1976b2f0091fSVasu Dev per_cpu_ptr(ema->mp->pool, cpu), 1977b2f0091fSVasu Dev sid, did); 197842e9a92fSRobert Love } 197952ff878cSVasu Dev } 198042e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_reset); 198142e9a92fSRobert Love 19823a3b42bfSRobert Love /** 198392261156SJoe Eykholt * fc_exch_lookup() - find an exchange 198492261156SJoe Eykholt * @lport: The local port 198592261156SJoe Eykholt * @xid: The exchange ID 198692261156SJoe Eykholt * 198792261156SJoe Eykholt * Returns exchange pointer with hold for caller, or NULL if not found. 198892261156SJoe Eykholt */ 198992261156SJoe Eykholt static struct fc_exch *fc_exch_lookup(struct fc_lport *lport, u32 xid) 199092261156SJoe Eykholt { 199192261156SJoe Eykholt struct fc_exch_mgr_anchor *ema; 199292261156SJoe Eykholt 199392261156SJoe Eykholt list_for_each_entry(ema, &lport->ema_list, ema_list) 199492261156SJoe Eykholt if (ema->mp->min_xid <= xid && xid <= ema->mp->max_xid) 199592261156SJoe Eykholt return fc_exch_find(ema->mp, xid); 199692261156SJoe Eykholt return NULL; 199792261156SJoe Eykholt } 199892261156SJoe Eykholt 199992261156SJoe Eykholt /** 20003a3b42bfSRobert Love * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests 200192261156SJoe Eykholt * @rfp: The REC frame, not freed here. 20023a3b42bfSRobert Love * 200342e9a92fSRobert Love * Note that the requesting port may be different than the S_ID in the request. 200442e9a92fSRobert Love */ 200592261156SJoe Eykholt static void fc_exch_els_rec(struct fc_frame *rfp) 200642e9a92fSRobert Love { 200792261156SJoe Eykholt struct fc_lport *lport; 200842e9a92fSRobert Love struct fc_frame *fp; 200942e9a92fSRobert Love struct fc_exch *ep; 201042e9a92fSRobert Love struct fc_els_rec *rp; 201142e9a92fSRobert Love struct fc_els_rec_acc *acc; 201242e9a92fSRobert Love enum fc_els_rjt_reason reason = ELS_RJT_LOGIC; 201342e9a92fSRobert Love enum fc_els_rjt_explan explan; 201442e9a92fSRobert Love u32 sid; 2015e0a25286SHannes Reinecke u16 xid, rxid, oxid; 201642e9a92fSRobert Love 201792261156SJoe Eykholt lport = fr_dev(rfp); 201842e9a92fSRobert Love rp = fc_frame_payload_get(rfp, sizeof(*rp)); 201942e9a92fSRobert Love explan = ELS_EXPL_INV_LEN; 202042e9a92fSRobert Love if (!rp) 202142e9a92fSRobert Love goto reject; 202242e9a92fSRobert Love sid = ntoh24(rp->rec_s_id); 202342e9a92fSRobert Love rxid = ntohs(rp->rec_rx_id); 202442e9a92fSRobert Love oxid = ntohs(rp->rec_ox_id); 202542e9a92fSRobert Love 202642e9a92fSRobert Love explan = ELS_EXPL_OXID_RXID; 2027e0a25286SHannes Reinecke if (sid == fc_host_port_id(lport->host)) 2028e0a25286SHannes Reinecke xid = oxid; 2029e0a25286SHannes Reinecke else 2030e0a25286SHannes Reinecke xid = rxid; 2031e0a25286SHannes Reinecke if (xid == FC_XID_UNKNOWN) { 2032e0a25286SHannes Reinecke FC_LPORT_DBG(lport, 2033e0a25286SHannes Reinecke "REC request from %x: invalid rxid %x oxid %x\n", 2034e0a25286SHannes Reinecke sid, rxid, oxid); 2035e0a25286SHannes Reinecke goto reject; 2036e0a25286SHannes Reinecke } 2037e0a25286SHannes Reinecke ep = fc_exch_lookup(lport, xid); 203857d3ec7eSHannes Reinecke if (!ep) { 203957d3ec7eSHannes Reinecke FC_LPORT_DBG(lport, 204057d3ec7eSHannes Reinecke "REC request from %x: rxid %x oxid %x not found\n", 204157d3ec7eSHannes Reinecke sid, rxid, oxid); 204242e9a92fSRobert Love goto reject; 204357d3ec7eSHannes Reinecke } 204457d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "REC request from %x: rxid %x oxid %x\n", 204557d3ec7eSHannes Reinecke sid, rxid, oxid); 204692261156SJoe Eykholt if (ep->oid != sid || oxid != ep->oxid) 204792261156SJoe Eykholt goto rel; 204892261156SJoe Eykholt if (rxid != FC_XID_UNKNOWN && rxid != ep->rxid) 204992261156SJoe Eykholt goto rel; 205092261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*acc)); 205157d3ec7eSHannes Reinecke if (!fp) { 205257d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop REC request, out of memory\n"); 205342e9a92fSRobert Love goto out; 205457d3ec7eSHannes Reinecke } 205592261156SJoe Eykholt 205642e9a92fSRobert Love acc = fc_frame_payload_get(fp, sizeof(*acc)); 205742e9a92fSRobert Love memset(acc, 0, sizeof(*acc)); 205842e9a92fSRobert Love acc->reca_cmd = ELS_LS_ACC; 205942e9a92fSRobert Love acc->reca_ox_id = rp->rec_ox_id; 206042e9a92fSRobert Love memcpy(acc->reca_ofid, rp->rec_s_id, 3); 206142e9a92fSRobert Love acc->reca_rx_id = htons(ep->rxid); 206242e9a92fSRobert Love if (ep->sid == ep->oid) 206342e9a92fSRobert Love hton24(acc->reca_rfid, ep->did); 206442e9a92fSRobert Love else 206542e9a92fSRobert Love hton24(acc->reca_rfid, ep->sid); 206642e9a92fSRobert Love acc->reca_fc4value = htonl(ep->seq.rec_data); 206742e9a92fSRobert Love acc->reca_e_stat = htonl(ep->esb_stat & (ESB_ST_RESP | 206842e9a92fSRobert Love ESB_ST_SEQ_INIT | 206942e9a92fSRobert Love ESB_ST_COMPLETE)); 207092261156SJoe Eykholt fc_fill_reply_hdr(fp, rfp, FC_RCTL_ELS_REP, 0); 207192261156SJoe Eykholt lport->tt.frame_send(lport, fp); 207242e9a92fSRobert Love out: 207342e9a92fSRobert Love fc_exch_release(ep); 207442e9a92fSRobert Love return; 207542e9a92fSRobert Love 207642e9a92fSRobert Love rel: 207742e9a92fSRobert Love fc_exch_release(ep); 207842e9a92fSRobert Love reject: 207992261156SJoe Eykholt fc_seq_ls_rjt(rfp, reason, explan); 208042e9a92fSRobert Love } 208142e9a92fSRobert Love 20823a3b42bfSRobert Love /** 20833a3b42bfSRobert Love * fc_exch_rrq_resp() - Handler for RRQ responses 20843a3b42bfSRobert Love * @sp: The sequence that the RRQ is on 20853a3b42bfSRobert Love * @fp: The RRQ frame 20863a3b42bfSRobert Love * @arg: The exchange that the RRQ is on 208742e9a92fSRobert Love * 208842e9a92fSRobert Love * TODO: fix error handler. 208942e9a92fSRobert Love */ 209042e9a92fSRobert Love static void fc_exch_rrq_resp(struct fc_seq *sp, struct fc_frame *fp, void *arg) 209142e9a92fSRobert Love { 209242e9a92fSRobert Love struct fc_exch *aborted_ep = arg; 209342e9a92fSRobert Love unsigned int op; 209442e9a92fSRobert Love 209542e9a92fSRobert Love if (IS_ERR(fp)) { 209642e9a92fSRobert Love int err = PTR_ERR(fp); 209742e9a92fSRobert Love 209878342da3SVasu Dev if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT) 209942e9a92fSRobert Love goto cleanup; 21007414705eSRobert Love FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, " 21017414705eSRobert Love "frame error %d\n", err); 210242e9a92fSRobert Love return; 210342e9a92fSRobert Love } 210442e9a92fSRobert Love 210542e9a92fSRobert Love op = fc_frame_payload_op(fp); 210642e9a92fSRobert Love fc_frame_free(fp); 210742e9a92fSRobert Love 210842e9a92fSRobert Love switch (op) { 210942e9a92fSRobert Love case ELS_LS_RJT: 2110b20d9bfdSBart Van Assche FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ\n"); 2111*df561f66SGustavo A. R. Silva fallthrough; 211242e9a92fSRobert Love case ELS_LS_ACC: 211342e9a92fSRobert Love goto cleanup; 211442e9a92fSRobert Love default: 2115b20d9bfdSBart Van Assche FC_EXCH_DBG(aborted_ep, "unexpected response op %x for RRQ\n", 2116b20d9bfdSBart Van Assche op); 211742e9a92fSRobert Love return; 211842e9a92fSRobert Love } 211942e9a92fSRobert Love 212042e9a92fSRobert Love cleanup: 212142e9a92fSRobert Love fc_exch_done(&aborted_ep->seq); 212242e9a92fSRobert Love /* drop hold for rec qual */ 212342e9a92fSRobert Love fc_exch_release(aborted_ep); 212442e9a92fSRobert Love } 212542e9a92fSRobert Love 21261a7b75aeSRobert Love 21271a7b75aeSRobert Love /** 21283a3b42bfSRobert Love * fc_exch_seq_send() - Send a frame using a new exchange and sequence 21293a3b42bfSRobert Love * @lport: The local port to send the frame on 21303a3b42bfSRobert Love * @fp: The frame to be sent 21313a3b42bfSRobert Love * @resp: The response handler for this request 21323a3b42bfSRobert Love * @destructor: The destructor for the exchange 21333a3b42bfSRobert Love * @arg: The argument to be passed to the response handler 21343a3b42bfSRobert Love * @timer_msec: The timeout period for the exchange 21353a3b42bfSRobert Love * 21363afd2d15SHannes Reinecke * The exchange response handler is set in this routine to resp() 21373afd2d15SHannes Reinecke * function pointer. It can be called in two scenarios: if a timeout 21383afd2d15SHannes Reinecke * occurs or if a response frame is received for the exchange. The 21393afd2d15SHannes Reinecke * fc_frame pointer in response handler will also indicate timeout 21403afd2d15SHannes Reinecke * as error using IS_ERR related macros. 21413afd2d15SHannes Reinecke * 21423afd2d15SHannes Reinecke * The exchange destructor handler is also set in this routine. 21433afd2d15SHannes Reinecke * The destructor handler is invoked by EM layer when exchange 21443afd2d15SHannes Reinecke * is about to free, this can be used by caller to free its 21453afd2d15SHannes Reinecke * resources along with exchange free. 21463afd2d15SHannes Reinecke * 21473afd2d15SHannes Reinecke * The arg is passed back to resp and destructor handler. 21483afd2d15SHannes Reinecke * 21493afd2d15SHannes Reinecke * The timeout value (in msec) for an exchange is set if non zero 21503afd2d15SHannes Reinecke * timer_msec argument is specified. The timer is canceled when 21513afd2d15SHannes Reinecke * it fires or when the exchange is done. The exchange timeout handler 21523afd2d15SHannes Reinecke * is registered by EM layer. 21533afd2d15SHannes Reinecke * 21543a3b42bfSRobert Love * The frame pointer with some of the header's fields must be 21553a3b42bfSRobert Love * filled before calling this routine, those fields are: 21563a3b42bfSRobert Love * 21573a3b42bfSRobert Love * - routing control 21583a3b42bfSRobert Love * - FC port did 21593a3b42bfSRobert Love * - FC port sid 21603a3b42bfSRobert Love * - FC header type 21613a3b42bfSRobert Love * - frame control 21623a3b42bfSRobert Love * - parameter or relative offset 21631a7b75aeSRobert Love */ 21643afd2d15SHannes Reinecke struct fc_seq *fc_exch_seq_send(struct fc_lport *lport, 21651a7b75aeSRobert Love struct fc_frame *fp, 21661a7b75aeSRobert Love void (*resp)(struct fc_seq *, 21671a7b75aeSRobert Love struct fc_frame *fp, 21681a7b75aeSRobert Love void *arg), 21693afd2d15SHannes Reinecke void (*destructor)(struct fc_seq *, void *), 21701a7b75aeSRobert Love void *arg, u32 timer_msec) 21711a7b75aeSRobert Love { 21721a7b75aeSRobert Love struct fc_exch *ep; 21731a7b75aeSRobert Love struct fc_seq *sp = NULL; 21741a7b75aeSRobert Love struct fc_frame_header *fh; 21753ee17f59SYi Zou struct fc_fcp_pkt *fsp = NULL; 21761a7b75aeSRobert Love int rc = 1; 21771a7b75aeSRobert Love 21783a3b42bfSRobert Love ep = fc_exch_alloc(lport, fp); 21791a7b75aeSRobert Love if (!ep) { 21801a7b75aeSRobert Love fc_frame_free(fp); 21811a7b75aeSRobert Love return NULL; 21821a7b75aeSRobert Love } 21831a7b75aeSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 21841a7b75aeSRobert Love fh = fc_frame_header_get(fp); 21851a7b75aeSRobert Love fc_exch_set_addr(ep, ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id)); 21861a7b75aeSRobert Love ep->resp = resp; 21871a7b75aeSRobert Love ep->destructor = destructor; 21881a7b75aeSRobert Love ep->arg = arg; 2189f7ce413cSHannes Reinecke ep->r_a_tov = lport->r_a_tov; 21903a3b42bfSRobert Love ep->lp = lport; 21911a7b75aeSRobert Love sp = &ep->seq; 21921a7b75aeSRobert Love 21931a7b75aeSRobert Love ep->fh_type = fh->fh_type; /* save for possbile timeout handling */ 21941a7b75aeSRobert Love ep->f_ctl = ntoh24(fh->fh_f_ctl); 21951a7b75aeSRobert Love fc_exch_setup_hdr(ep, fp, ep->f_ctl); 21961a7b75aeSRobert Love sp->cnt++; 21971a7b75aeSRobert Love 21983ee17f59SYi Zou if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) { 21993ee17f59SYi Zou fsp = fr_fsp(fp); 22001a7b75aeSRobert Love fc_fcp_ddp_setup(fr_fsp(fp), ep->xid); 22013ee17f59SYi Zou } 22021a7b75aeSRobert Love 22033a3b42bfSRobert Love if (unlikely(lport->tt.frame_send(lport, fp))) 22041a7b75aeSRobert Love goto err; 22051a7b75aeSRobert Love 22061a7b75aeSRobert Love if (timer_msec) 22071a7b75aeSRobert Love fc_exch_timer_set_locked(ep, timer_msec); 22081a7b75aeSRobert Love ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not first seq */ 22091a7b75aeSRobert Love 22101a7b75aeSRobert Love if (ep->f_ctl & FC_FC_SEQ_INIT) 22111a7b75aeSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 22121a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 22131a7b75aeSRobert Love return sp; 22141a7b75aeSRobert Love err: 22153ee17f59SYi Zou if (fsp) 22163ee17f59SYi Zou fc_fcp_ddp_done(fsp); 22171a7b75aeSRobert Love rc = fc_exch_done_locked(ep); 22181a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 22191a7b75aeSRobert Love if (!rc) 22201a7b75aeSRobert Love fc_exch_delete(ep); 22211a7b75aeSRobert Love return NULL; 22221a7b75aeSRobert Love } 22233afd2d15SHannes Reinecke EXPORT_SYMBOL(fc_exch_seq_send); 22241a7b75aeSRobert Love 22253a3b42bfSRobert Love /** 22263a3b42bfSRobert Love * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command 22273a3b42bfSRobert Love * @ep: The exchange to send the RRQ on 22283a3b42bfSRobert Love * 222942e9a92fSRobert Love * This tells the remote port to stop blocking the use of 223042e9a92fSRobert Love * the exchange and the seq_cnt range. 223142e9a92fSRobert Love */ 223242e9a92fSRobert Love static void fc_exch_rrq(struct fc_exch *ep) 223342e9a92fSRobert Love { 22343a3b42bfSRobert Love struct fc_lport *lport; 223542e9a92fSRobert Love struct fc_els_rrq *rrq; 223642e9a92fSRobert Love struct fc_frame *fp; 223742e9a92fSRobert Love u32 did; 223842e9a92fSRobert Love 22393a3b42bfSRobert Love lport = ep->lp; 224042e9a92fSRobert Love 22413a3b42bfSRobert Love fp = fc_frame_alloc(lport, sizeof(*rrq)); 224242e9a92fSRobert Love if (!fp) 2243a0cc1eccSVasu Dev goto retry; 2244a0cc1eccSVasu Dev 224542e9a92fSRobert Love rrq = fc_frame_payload_get(fp, sizeof(*rrq)); 224642e9a92fSRobert Love memset(rrq, 0, sizeof(*rrq)); 224742e9a92fSRobert Love rrq->rrq_cmd = ELS_RRQ; 224842e9a92fSRobert Love hton24(rrq->rrq_s_id, ep->sid); 224942e9a92fSRobert Love rrq->rrq_ox_id = htons(ep->oxid); 225042e9a92fSRobert Love rrq->rrq_rx_id = htons(ep->rxid); 225142e9a92fSRobert Love 225242e9a92fSRobert Love did = ep->did; 225342e9a92fSRobert Love if (ep->esb_stat & ESB_ST_RESP) 225442e9a92fSRobert Love did = ep->sid; 225542e9a92fSRobert Love 225642e9a92fSRobert Love fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, did, 22577b2787ecSRobert Love lport->port_id, FC_TYPE_ELS, 225842e9a92fSRobert Love FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0); 225942e9a92fSRobert Love 22603a3b42bfSRobert Love if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep, 22613a3b42bfSRobert Love lport->e_d_tov)) 2262a0cc1eccSVasu Dev return; 2263a0cc1eccSVasu Dev 2264a0cc1eccSVasu Dev retry: 226557d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: RRQ send failed\n"); 2266a0cc1eccSVasu Dev spin_lock_bh(&ep->ex_lock); 2267a0cc1eccSVasu Dev if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) { 2268a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 2269a0cc1eccSVasu Dev /* drop hold for rec qual */ 2270a0cc1eccSVasu Dev fc_exch_release(ep); 227142e9a92fSRobert Love return; 227242e9a92fSRobert Love } 2273a0cc1eccSVasu Dev ep->esb_stat |= ESB_ST_REC_QUAL; 2274a0cc1eccSVasu Dev fc_exch_timer_set_locked(ep, ep->r_a_tov); 2275a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 227642e9a92fSRobert Love } 227742e9a92fSRobert Love 22783a3b42bfSRobert Love /** 22793a3b42bfSRobert Love * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests 228092261156SJoe Eykholt * @fp: The RRQ frame, not freed here. 228142e9a92fSRobert Love */ 228292261156SJoe Eykholt static void fc_exch_els_rrq(struct fc_frame *fp) 228342e9a92fSRobert Love { 228492261156SJoe Eykholt struct fc_lport *lport; 22853f127ad9SVasu Dev struct fc_exch *ep = NULL; /* request or subject exchange */ 228642e9a92fSRobert Love struct fc_els_rrq *rp; 228742e9a92fSRobert Love u32 sid; 228842e9a92fSRobert Love u16 xid; 228942e9a92fSRobert Love enum fc_els_rjt_explan explan; 229042e9a92fSRobert Love 229192261156SJoe Eykholt lport = fr_dev(fp); 229242e9a92fSRobert Love rp = fc_frame_payload_get(fp, sizeof(*rp)); 229342e9a92fSRobert Love explan = ELS_EXPL_INV_LEN; 229442e9a92fSRobert Love if (!rp) 229542e9a92fSRobert Love goto reject; 229642e9a92fSRobert Love 229742e9a92fSRobert Love /* 229842e9a92fSRobert Love * lookup subject exchange. 229942e9a92fSRobert Love */ 230042e9a92fSRobert Love sid = ntoh24(rp->rrq_s_id); /* subject source */ 230192261156SJoe Eykholt xid = fc_host_port_id(lport->host) == sid ? 230292261156SJoe Eykholt ntohs(rp->rrq_ox_id) : ntohs(rp->rrq_rx_id); 230392261156SJoe Eykholt ep = fc_exch_lookup(lport, xid); 230442e9a92fSRobert Love explan = ELS_EXPL_OXID_RXID; 230542e9a92fSRobert Love if (!ep) 230642e9a92fSRobert Love goto reject; 230742e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 230857d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "RRQ request from %x: xid %x rxid %x oxid %x\n", 230957d3ec7eSHannes Reinecke sid, xid, ntohs(rp->rrq_rx_id), ntohs(rp->rrq_ox_id)); 231042e9a92fSRobert Love if (ep->oxid != ntohs(rp->rrq_ox_id)) 231142e9a92fSRobert Love goto unlock_reject; 231242e9a92fSRobert Love if (ep->rxid != ntohs(rp->rrq_rx_id) && 231342e9a92fSRobert Love ep->rxid != FC_XID_UNKNOWN) 231442e9a92fSRobert Love goto unlock_reject; 231542e9a92fSRobert Love explan = ELS_EXPL_SID; 231642e9a92fSRobert Love if (ep->sid != sid) 231742e9a92fSRobert Love goto unlock_reject; 231842e9a92fSRobert Love 231942e9a92fSRobert Love /* 232042e9a92fSRobert Love * Clear Recovery Qualifier state, and cancel timer if complete. 232142e9a92fSRobert Love */ 232242e9a92fSRobert Love if (ep->esb_stat & ESB_ST_REC_QUAL) { 232342e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_REC_QUAL; 232442e9a92fSRobert Love atomic_dec(&ep->ex_refcnt); /* drop hold for rec qual */ 232542e9a92fSRobert Love } 2326b29a4f30SVasu Dev if (ep->esb_stat & ESB_ST_COMPLETE) 2327b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 232842e9a92fSRobert Love 232942e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 233042e9a92fSRobert Love 233142e9a92fSRobert Love /* 233242e9a92fSRobert Love * Send LS_ACC. 233342e9a92fSRobert Love */ 233492261156SJoe Eykholt fc_seq_ls_acc(fp); 23353f127ad9SVasu Dev goto out; 233642e9a92fSRobert Love 233742e9a92fSRobert Love unlock_reject: 233842e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 233942e9a92fSRobert Love reject: 234092261156SJoe Eykholt fc_seq_ls_rjt(fp, ELS_RJT_LOGIC, explan); 23413f127ad9SVasu Dev out: 23423f127ad9SVasu Dev if (ep) 23433f127ad9SVasu Dev fc_exch_release(ep); /* drop hold from fc_exch_find */ 234442e9a92fSRobert Love } 234542e9a92fSRobert Love 23463a3b42bfSRobert Love /** 23474e5fae7aSVasu Dev * fc_exch_update_stats() - update exches stats to lport 23484e5fae7aSVasu Dev * @lport: The local port to update exchange manager stats 23494e5fae7aSVasu Dev */ 23504e5fae7aSVasu Dev void fc_exch_update_stats(struct fc_lport *lport) 23514e5fae7aSVasu Dev { 23524e5fae7aSVasu Dev struct fc_host_statistics *st; 23534e5fae7aSVasu Dev struct fc_exch_mgr_anchor *ema; 23544e5fae7aSVasu Dev struct fc_exch_mgr *mp; 23554e5fae7aSVasu Dev 23564e5fae7aSVasu Dev st = &lport->host_stats; 23574e5fae7aSVasu Dev 23584e5fae7aSVasu Dev list_for_each_entry(ema, &lport->ema_list, ema_list) { 23594e5fae7aSVasu Dev mp = ema->mp; 23604e5fae7aSVasu Dev st->fc_no_free_exch += atomic_read(&mp->stats.no_free_exch); 23614e5fae7aSVasu Dev st->fc_no_free_exch_xid += 23624e5fae7aSVasu Dev atomic_read(&mp->stats.no_free_exch_xid); 23634e5fae7aSVasu Dev st->fc_xid_not_found += atomic_read(&mp->stats.xid_not_found); 23644e5fae7aSVasu Dev st->fc_xid_busy += atomic_read(&mp->stats.xid_busy); 23654e5fae7aSVasu Dev st->fc_seq_not_found += atomic_read(&mp->stats.seq_not_found); 23664e5fae7aSVasu Dev st->fc_non_bls_resp += atomic_read(&mp->stats.non_bls_resp); 23674e5fae7aSVasu Dev } 23684e5fae7aSVasu Dev } 23694e5fae7aSVasu Dev EXPORT_SYMBOL(fc_exch_update_stats); 23704e5fae7aSVasu Dev 23714e5fae7aSVasu Dev /** 23723a3b42bfSRobert Love * fc_exch_mgr_add() - Add an exchange manager to a local port's list of EMs 23733a3b42bfSRobert Love * @lport: The local port to add the exchange manager to 23743a3b42bfSRobert Love * @mp: The exchange manager to be added to the local port 23753a3b42bfSRobert Love * @match: The match routine that indicates when this EM should be used 23763a3b42bfSRobert Love */ 237796316099SVasu Dev struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport, 237896316099SVasu Dev struct fc_exch_mgr *mp, 237996316099SVasu Dev bool (*match)(struct fc_frame *)) 238096316099SVasu Dev { 238196316099SVasu Dev struct fc_exch_mgr_anchor *ema; 238296316099SVasu Dev 238396316099SVasu Dev ema = kmalloc(sizeof(*ema), GFP_ATOMIC); 238496316099SVasu Dev if (!ema) 238596316099SVasu Dev return ema; 238696316099SVasu Dev 238796316099SVasu Dev ema->mp = mp; 238896316099SVasu Dev ema->match = match; 238996316099SVasu Dev /* add EM anchor to EM anchors list */ 239096316099SVasu Dev list_add_tail(&ema->ema_list, &lport->ema_list); 239196316099SVasu Dev kref_get(&mp->kref); 239296316099SVasu Dev return ema; 239396316099SVasu Dev } 239496316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_add); 239596316099SVasu Dev 23963a3b42bfSRobert Love /** 23973a3b42bfSRobert Love * fc_exch_mgr_destroy() - Destroy an exchange manager 23983a3b42bfSRobert Love * @kref: The reference to the EM to be destroyed 23993a3b42bfSRobert Love */ 240096316099SVasu Dev static void fc_exch_mgr_destroy(struct kref *kref) 240196316099SVasu Dev { 240296316099SVasu Dev struct fc_exch_mgr *mp = container_of(kref, struct fc_exch_mgr, kref); 240396316099SVasu Dev 240496316099SVasu Dev mempool_destroy(mp->ep_pool); 2405e4bc50beSVasu Dev free_percpu(mp->pool); 240696316099SVasu Dev kfree(mp); 240796316099SVasu Dev } 240896316099SVasu Dev 24093a3b42bfSRobert Love /** 24103a3b42bfSRobert Love * fc_exch_mgr_del() - Delete an EM from a local port's list 24113a3b42bfSRobert Love * @ema: The exchange manager anchor identifying the EM to be deleted 24123a3b42bfSRobert Love */ 241396316099SVasu Dev void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema) 241496316099SVasu Dev { 241596316099SVasu Dev /* remove EM anchor from EM anchors list */ 241696316099SVasu Dev list_del(&ema->ema_list); 241796316099SVasu Dev kref_put(&ema->mp->kref, fc_exch_mgr_destroy); 241896316099SVasu Dev kfree(ema); 241996316099SVasu Dev } 242096316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_del); 242196316099SVasu Dev 2422174e1ebfSChris Leech /** 24233a3b42bfSRobert Love * fc_exch_mgr_list_clone() - Share all exchange manager objects 24243a3b42bfSRobert Love * @src: Source lport to clone exchange managers from 24253a3b42bfSRobert Love * @dst: New lport that takes references to all the exchange managers 2426174e1ebfSChris Leech */ 2427174e1ebfSChris Leech int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst) 2428174e1ebfSChris Leech { 2429174e1ebfSChris Leech struct fc_exch_mgr_anchor *ema, *tmp; 2430174e1ebfSChris Leech 2431174e1ebfSChris Leech list_for_each_entry(ema, &src->ema_list, ema_list) { 2432174e1ebfSChris Leech if (!fc_exch_mgr_add(dst, ema->mp, ema->match)) 2433174e1ebfSChris Leech goto err; 2434174e1ebfSChris Leech } 2435174e1ebfSChris Leech return 0; 2436174e1ebfSChris Leech err: 2437174e1ebfSChris Leech list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list) 2438174e1ebfSChris Leech fc_exch_mgr_del(ema); 2439174e1ebfSChris Leech return -ENOMEM; 2440174e1ebfSChris Leech } 244172fa396bSVasu Dev EXPORT_SYMBOL(fc_exch_mgr_list_clone); 2442174e1ebfSChris Leech 24433a3b42bfSRobert Love /** 24443a3b42bfSRobert Love * fc_exch_mgr_alloc() - Allocate an exchange manager 24453a3b42bfSRobert Love * @lport: The local port that the new EM will be associated with 24463a3b42bfSRobert Love * @class: The default FC class for new exchanges 24473a3b42bfSRobert Love * @min_xid: The minimum XID for exchanges from the new EM 24483a3b42bfSRobert Love * @max_xid: The maximum XID for exchanges from the new EM 24493a3b42bfSRobert Love * @match: The match routine for the new EM 24503a3b42bfSRobert Love */ 24513a3b42bfSRobert Love struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport, 245242e9a92fSRobert Love enum fc_class class, 245352ff878cSVasu Dev u16 min_xid, u16 max_xid, 245452ff878cSVasu Dev bool (*match)(struct fc_frame *)) 245542e9a92fSRobert Love { 245642e9a92fSRobert Love struct fc_exch_mgr *mp; 2457e4bc50beSVasu Dev u16 pool_exch_range; 2458e4bc50beSVasu Dev size_t pool_size; 2459e4bc50beSVasu Dev unsigned int cpu; 2460e4bc50beSVasu Dev struct fc_exch_pool *pool; 246142e9a92fSRobert Love 2462e4bc50beSVasu Dev if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN || 2463e4bc50beSVasu Dev (min_xid & fc_cpu_mask) != 0) { 24643a3b42bfSRobert Love FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n", 246542e9a92fSRobert Love min_xid, max_xid); 246642e9a92fSRobert Love return NULL; 246742e9a92fSRobert Love } 246842e9a92fSRobert Love 246942e9a92fSRobert Love /* 2470b2f0091fSVasu Dev * allocate memory for EM 247142e9a92fSRobert Love */ 2472b2f0091fSVasu Dev mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC); 247342e9a92fSRobert Love if (!mp) 247442e9a92fSRobert Love return NULL; 247542e9a92fSRobert Love 247642e9a92fSRobert Love mp->class = class; 24779ca1e182SHannes Reinecke mp->lport = lport; 247842e9a92fSRobert Love /* adjust em exch xid range for offload */ 247942e9a92fSRobert Love mp->min_xid = min_xid; 2480011a9008SSteven Clark 2481011a9008SSteven Clark /* reduce range so per cpu pool fits into PCPU_MIN_UNIT_SIZE pool */ 2482011a9008SSteven Clark pool_exch_range = (PCPU_MIN_UNIT_SIZE - sizeof(*pool)) / 2483011a9008SSteven Clark sizeof(struct fc_exch *); 2484011a9008SSteven Clark if ((max_xid - min_xid + 1) / (fc_cpu_mask + 1) > pool_exch_range) { 2485011a9008SSteven Clark mp->max_xid = pool_exch_range * (fc_cpu_mask + 1) + 2486011a9008SSteven Clark min_xid - 1; 2487011a9008SSteven Clark } else { 248842e9a92fSRobert Love mp->max_xid = max_xid; 2489011a9008SSteven Clark pool_exch_range = (mp->max_xid - mp->min_xid + 1) / 2490011a9008SSteven Clark (fc_cpu_mask + 1); 2491011a9008SSteven Clark } 249242e9a92fSRobert Love 249342e9a92fSRobert Love mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep); 249442e9a92fSRobert Love if (!mp->ep_pool) 249542e9a92fSRobert Love goto free_mp; 249642e9a92fSRobert Love 2497e4bc50beSVasu Dev /* 2498e4bc50beSVasu Dev * Setup per cpu exch pool with entire exchange id range equally 2499e4bc50beSVasu Dev * divided across all cpus. The exch pointers array memory is 2500e4bc50beSVasu Dev * allocated for exch range per pool. 2501e4bc50beSVasu Dev */ 2502e4bc50beSVasu Dev mp->pool_max_index = pool_exch_range - 1; 2503e4bc50beSVasu Dev 2504e4bc50beSVasu Dev /* 2505e4bc50beSVasu Dev * Allocate and initialize per cpu exch pool 2506e4bc50beSVasu Dev */ 2507e4bc50beSVasu Dev pool_size = sizeof(*pool) + pool_exch_range * sizeof(struct fc_exch *); 2508e4bc50beSVasu Dev mp->pool = __alloc_percpu(pool_size, __alignof__(struct fc_exch_pool)); 2509e4bc50beSVasu Dev if (!mp->pool) 2510e4bc50beSVasu Dev goto free_mempool; 2511e4bc50beSVasu Dev for_each_possible_cpu(cpu) { 2512e4bc50beSVasu Dev pool = per_cpu_ptr(mp->pool, cpu); 2513b6e3c840SVasu Dev pool->next_index = 0; 25142034c19cSHillf Danton pool->left = FC_XID_UNKNOWN; 25152034c19cSHillf Danton pool->right = FC_XID_UNKNOWN; 2516e4bc50beSVasu Dev spin_lock_init(&pool->lock); 2517e4bc50beSVasu Dev INIT_LIST_HEAD(&pool->ex_list); 2518e4bc50beSVasu Dev } 2519e4bc50beSVasu Dev 252052ff878cSVasu Dev kref_init(&mp->kref); 25213a3b42bfSRobert Love if (!fc_exch_mgr_add(lport, mp, match)) { 2522e4bc50beSVasu Dev free_percpu(mp->pool); 2523e4bc50beSVasu Dev goto free_mempool; 252452ff878cSVasu Dev } 252552ff878cSVasu Dev 252652ff878cSVasu Dev /* 252752ff878cSVasu Dev * Above kref_init() sets mp->kref to 1 and then 252852ff878cSVasu Dev * call to fc_exch_mgr_add incremented mp->kref again, 252952ff878cSVasu Dev * so adjust that extra increment. 253052ff878cSVasu Dev */ 253152ff878cSVasu Dev kref_put(&mp->kref, fc_exch_mgr_destroy); 253242e9a92fSRobert Love return mp; 253342e9a92fSRobert Love 2534e4bc50beSVasu Dev free_mempool: 2535e4bc50beSVasu Dev mempool_destroy(mp->ep_pool); 253642e9a92fSRobert Love free_mp: 253742e9a92fSRobert Love kfree(mp); 253842e9a92fSRobert Love return NULL; 253942e9a92fSRobert Love } 254042e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_alloc); 254142e9a92fSRobert Love 25423a3b42bfSRobert Love /** 25433a3b42bfSRobert Love * fc_exch_mgr_free() - Free all exchange managers on a local port 25443a3b42bfSRobert Love * @lport: The local port whose EMs are to be freed 25453a3b42bfSRobert Love */ 254652ff878cSVasu Dev void fc_exch_mgr_free(struct fc_lport *lport) 254742e9a92fSRobert Love { 254852ff878cSVasu Dev struct fc_exch_mgr_anchor *ema, *next; 254952ff878cSVasu Dev 25504ae1e19fSVasu Dev flush_workqueue(fc_exch_workqueue); 255152ff878cSVasu Dev list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list) 255252ff878cSVasu Dev fc_exch_mgr_del(ema); 255342e9a92fSRobert Love } 255442e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_free); 255542e9a92fSRobert Love 25563a3b42bfSRobert Love /** 25576c8cc1c0SKiran Patil * fc_find_ema() - Lookup and return appropriate Exchange Manager Anchor depending 25586c8cc1c0SKiran Patil * upon 'xid'. 25596c8cc1c0SKiran Patil * @f_ctl: f_ctl 25606c8cc1c0SKiran Patil * @lport: The local port the frame was received on 25616c8cc1c0SKiran Patil * @fh: The received frame header 25626c8cc1c0SKiran Patil */ 25636c8cc1c0SKiran Patil static struct fc_exch_mgr_anchor *fc_find_ema(u32 f_ctl, 25646c8cc1c0SKiran Patil struct fc_lport *lport, 25656c8cc1c0SKiran Patil struct fc_frame_header *fh) 25666c8cc1c0SKiran Patil { 25676c8cc1c0SKiran Patil struct fc_exch_mgr_anchor *ema; 25686c8cc1c0SKiran Patil u16 xid; 25696c8cc1c0SKiran Patil 25706c8cc1c0SKiran Patil if (f_ctl & FC_FC_EX_CTX) 25716c8cc1c0SKiran Patil xid = ntohs(fh->fh_ox_id); 25726c8cc1c0SKiran Patil else { 25736c8cc1c0SKiran Patil xid = ntohs(fh->fh_rx_id); 25746c8cc1c0SKiran Patil if (xid == FC_XID_UNKNOWN) 25756c8cc1c0SKiran Patil return list_entry(lport->ema_list.prev, 25766c8cc1c0SKiran Patil typeof(*ema), ema_list); 25776c8cc1c0SKiran Patil } 25786c8cc1c0SKiran Patil 25796c8cc1c0SKiran Patil list_for_each_entry(ema, &lport->ema_list, ema_list) { 25806c8cc1c0SKiran Patil if ((xid >= ema->mp->min_xid) && 25816c8cc1c0SKiran Patil (xid <= ema->mp->max_xid)) 25826c8cc1c0SKiran Patil return ema; 25836c8cc1c0SKiran Patil } 25846c8cc1c0SKiran Patil return NULL; 25856c8cc1c0SKiran Patil } 25866c8cc1c0SKiran Patil /** 25873a3b42bfSRobert Love * fc_exch_recv() - Handler for received frames 25883a3b42bfSRobert Love * @lport: The local port the frame was received on 25893a3b42bfSRobert Love * @fp: The received frame 259042e9a92fSRobert Love */ 25913a3b42bfSRobert Love void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp) 259242e9a92fSRobert Love { 259342e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 259452ff878cSVasu Dev struct fc_exch_mgr_anchor *ema; 25956c8cc1c0SKiran Patil u32 f_ctl; 259642e9a92fSRobert Love 259742e9a92fSRobert Love /* lport lock ? */ 25983a3b42bfSRobert Love if (!lport || lport->state == LPORT_ST_DISABLED) { 259941a6bf65SColin Ian King FC_LIBFC_DBG("Receiving frames for an lport that " 26007414705eSRobert Love "has not been initialized correctly\n"); 260142e9a92fSRobert Love fc_frame_free(fp); 260242e9a92fSRobert Love return; 260342e9a92fSRobert Love } 260442e9a92fSRobert Love 260552ff878cSVasu Dev f_ctl = ntoh24(fh->fh_f_ctl); 26066c8cc1c0SKiran Patil ema = fc_find_ema(f_ctl, lport, fh); 26076c8cc1c0SKiran Patil if (!ema) { 26086c8cc1c0SKiran Patil FC_LPORT_DBG(lport, "Unable to find Exchange Manager Anchor," 26096c8cc1c0SKiran Patil "fc_ctl <0x%x>, xid <0x%x>\n", 26106c8cc1c0SKiran Patil f_ctl, 26116c8cc1c0SKiran Patil (f_ctl & FC_FC_EX_CTX) ? 26126c8cc1c0SKiran Patil ntohs(fh->fh_ox_id) : 26136c8cc1c0SKiran Patil ntohs(fh->fh_rx_id)); 261452ff878cSVasu Dev fc_frame_free(fp); 261552ff878cSVasu Dev return; 261652ff878cSVasu Dev } 261752ff878cSVasu Dev 261842e9a92fSRobert Love /* 261942e9a92fSRobert Love * If frame is marked invalid, just drop it. 262042e9a92fSRobert Love */ 262142e9a92fSRobert Love switch (fr_eof(fp)) { 262242e9a92fSRobert Love case FC_EOF_T: 262342e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) 262442e9a92fSRobert Love skb_trim(fp_skb(fp), fr_len(fp) - FC_FC_FILL(f_ctl)); 2625*df561f66SGustavo A. R. Silva fallthrough; 262642e9a92fSRobert Love case FC_EOF_N: 262742e9a92fSRobert Love if (fh->fh_type == FC_TYPE_BLS) 262852ff878cSVasu Dev fc_exch_recv_bls(ema->mp, fp); 262942e9a92fSRobert Love else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) == 263042e9a92fSRobert Love FC_FC_EX_CTX) 263152ff878cSVasu Dev fc_exch_recv_seq_resp(ema->mp, fp); 263242e9a92fSRobert Love else if (f_ctl & FC_FC_SEQ_CTX) 263352ff878cSVasu Dev fc_exch_recv_resp(ema->mp, fp); 263492261156SJoe Eykholt else /* no EX_CTX and no SEQ_CTX */ 26353a3b42bfSRobert Love fc_exch_recv_req(lport, ema->mp, fp); 263642e9a92fSRobert Love break; 263742e9a92fSRobert Love default: 26383a3b42bfSRobert Love FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)", 26393a3b42bfSRobert Love fr_eof(fp)); 264042e9a92fSRobert Love fc_frame_free(fp); 264142e9a92fSRobert Love } 264242e9a92fSRobert Love } 264342e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_recv); 264442e9a92fSRobert Love 26453a3b42bfSRobert Love /** 26463a3b42bfSRobert Love * fc_exch_init() - Initialize the exchange layer for a local port 26473a3b42bfSRobert Love * @lport: The local port to initialize the exchange layer for 26483a3b42bfSRobert Love */ 26493a3b42bfSRobert Love int fc_exch_init(struct fc_lport *lport) 265042e9a92fSRobert Love { 26513a3b42bfSRobert Love if (!lport->tt.exch_mgr_reset) 26523a3b42bfSRobert Love lport->tt.exch_mgr_reset = fc_exch_mgr_reset; 265342e9a92fSRobert Love 265489f19a59SVasu Dev return 0; 265589f19a59SVasu Dev } 265689f19a59SVasu Dev EXPORT_SYMBOL(fc_exch_init); 265789f19a59SVasu Dev 265889f19a59SVasu Dev /** 265989f19a59SVasu Dev * fc_setup_exch_mgr() - Setup an exchange manager 266089f19a59SVasu Dev */ 266155204909SRandy Dunlap int fc_setup_exch_mgr(void) 266289f19a59SVasu Dev { 266389f19a59SVasu Dev fc_em_cachep = kmem_cache_create("libfc_em", sizeof(struct fc_exch), 266489f19a59SVasu Dev 0, SLAB_HWCACHE_ALIGN, NULL); 266589f19a59SVasu Dev if (!fc_em_cachep) 266689f19a59SVasu Dev return -ENOMEM; 266789f19a59SVasu Dev 2668e4bc50beSVasu Dev /* 2669e4bc50beSVasu Dev * Initialize fc_cpu_mask and fc_cpu_order. The 2670e4bc50beSVasu Dev * fc_cpu_mask is set for nr_cpu_ids rounded up 2671e4bc50beSVasu Dev * to order of 2's * power and order is stored 2672e4bc50beSVasu Dev * in fc_cpu_order as this is later required in 2673e4bc50beSVasu Dev * mapping between an exch id and exch array index 2674e4bc50beSVasu Dev * in per cpu exch pool. 2675e4bc50beSVasu Dev * 2676e4bc50beSVasu Dev * This round up is required to align fc_cpu_mask 2677e4bc50beSVasu Dev * to exchange id's lower bits such that all incoming 2678e4bc50beSVasu Dev * frames of an exchange gets delivered to the same 2679e4bc50beSVasu Dev * cpu on which exchange originated by simple bitwise 2680e4bc50beSVasu Dev * AND operation between fc_cpu_mask and exchange id. 2681e4bc50beSVasu Dev */ 2682a84ea8c7SBart Van Assche fc_cpu_order = ilog2(roundup_pow_of_two(nr_cpu_ids)); 2683a84ea8c7SBart Van Assche fc_cpu_mask = (1 << fc_cpu_order) - 1; 2684e4bc50beSVasu Dev 26854ae1e19fSVasu Dev fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue"); 26864ae1e19fSVasu Dev if (!fc_exch_workqueue) 26876f06e3a7SHillf Danton goto err; 268842e9a92fSRobert Love return 0; 26896f06e3a7SHillf Danton err: 26906f06e3a7SHillf Danton kmem_cache_destroy(fc_em_cachep); 26916f06e3a7SHillf Danton return -ENOMEM; 269242e9a92fSRobert Love } 269342e9a92fSRobert Love 26943a3b42bfSRobert Love /** 26953a3b42bfSRobert Love * fc_destroy_exch_mgr() - Destroy an exchange manager 26963a3b42bfSRobert Love */ 269755204909SRandy Dunlap void fc_destroy_exch_mgr(void) 269842e9a92fSRobert Love { 26994ae1e19fSVasu Dev destroy_workqueue(fc_exch_workqueue); 270042e9a92fSRobert Love kmem_cache_destroy(fc_em_cachep); 270142e9a92fSRobert Love } 2702