142e9a92fSRobert Love /* 242e9a92fSRobert Love * Copyright(c) 2007 Intel Corporation. All rights reserved. 342e9a92fSRobert Love * Copyright(c) 2008 Red Hat, Inc. All rights reserved. 442e9a92fSRobert Love * Copyright(c) 2008 Mike Christie 542e9a92fSRobert Love * 642e9a92fSRobert Love * This program is free software; you can redistribute it and/or modify it 742e9a92fSRobert Love * under the terms and conditions of the GNU General Public License, 842e9a92fSRobert Love * version 2, as published by the Free Software Foundation. 942e9a92fSRobert Love * 1042e9a92fSRobert Love * This program is distributed in the hope it will be useful, but WITHOUT 1142e9a92fSRobert Love * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 1242e9a92fSRobert Love * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 1342e9a92fSRobert Love * more details. 1442e9a92fSRobert Love * 1542e9a92fSRobert Love * You should have received a copy of the GNU General Public License along with 1642e9a92fSRobert Love * this program; if not, write to the Free Software Foundation, Inc., 1742e9a92fSRobert Love * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. 1842e9a92fSRobert Love * 1942e9a92fSRobert Love * Maintained at www.Open-FCoE.org 2042e9a92fSRobert Love */ 2142e9a92fSRobert Love 2242e9a92fSRobert Love /* 2342e9a92fSRobert Love * Fibre Channel exchange and sequence handling. 2442e9a92fSRobert Love */ 2542e9a92fSRobert Love 2642e9a92fSRobert Love #include <linux/timer.h> 275a0e3ad6STejun Heo #include <linux/slab.h> 2842e9a92fSRobert Love #include <linux/err.h> 2909703660SPaul Gortmaker #include <linux/export.h> 30a84ea8c7SBart Van Assche #include <linux/log2.h> 3142e9a92fSRobert Love 3242e9a92fSRobert Love #include <scsi/fc/fc_fc2.h> 3342e9a92fSRobert Love 3442e9a92fSRobert Love #include <scsi/libfc.h> 3542e9a92fSRobert Love #include <scsi/fc_encode.h> 3642e9a92fSRobert Love 378866a5d9SRobert Love #include "fc_libfc.h" 388866a5d9SRobert Love 39e4bc50beSVasu Dev u16 fc_cpu_mask; /* cpu mask for possible cpus */ 40e4bc50beSVasu Dev EXPORT_SYMBOL(fc_cpu_mask); 41e4bc50beSVasu Dev static u16 fc_cpu_order; /* 2's power to represent total possible cpus */ 4242e9a92fSRobert Love static struct kmem_cache *fc_em_cachep; /* cache for exchanges */ 4355204909SRandy Dunlap static struct workqueue_struct *fc_exch_workqueue; 4442e9a92fSRobert Love 4542e9a92fSRobert Love /* 4642e9a92fSRobert Love * Structure and function definitions for managing Fibre Channel Exchanges 4742e9a92fSRobert Love * and Sequences. 4842e9a92fSRobert Love * 4942e9a92fSRobert Love * The three primary structures used here are fc_exch_mgr, fc_exch, and fc_seq. 5042e9a92fSRobert Love * 5142e9a92fSRobert Love * fc_exch_mgr holds the exchange state for an N port 5242e9a92fSRobert Love * 5342e9a92fSRobert Love * fc_exch holds state for one exchange and links to its active sequence. 5442e9a92fSRobert Love * 5542e9a92fSRobert Love * fc_seq holds the state for an individual sequence. 5642e9a92fSRobert Love */ 5742e9a92fSRobert Love 583a3b42bfSRobert Love /** 593a3b42bfSRobert Love * struct fc_exch_pool - Per cpu exchange pool 603a3b42bfSRobert Love * @next_index: Next possible free exchange index 613a3b42bfSRobert Love * @total_exches: Total allocated exchanges 623a3b42bfSRobert Love * @lock: Exch pool lock 633a3b42bfSRobert Love * @ex_list: List of exchanges 64e4bc50beSVasu Dev * 65e4bc50beSVasu Dev * This structure manages per cpu exchanges in array of exchange pointers. 66e4bc50beSVasu Dev * This array is allocated followed by struct fc_exch_pool memory for 67e4bc50beSVasu Dev * assigned range of exchanges to per cpu pool. 68e4bc50beSVasu Dev */ 69e4bc50beSVasu Dev struct fc_exch_pool { 70e17b4af7SVasu Dev spinlock_t lock; 71e17b4af7SVasu Dev struct list_head ex_list; 723a3b42bfSRobert Love u16 next_index; 733a3b42bfSRobert Love u16 total_exches; 742034c19cSHillf Danton 752034c19cSHillf Danton /* two cache of free slot in exch array */ 762034c19cSHillf Danton u16 left; 772034c19cSHillf Danton u16 right; 78e17b4af7SVasu Dev } ____cacheline_aligned_in_smp; 79e4bc50beSVasu Dev 803a3b42bfSRobert Love /** 813a3b42bfSRobert Love * struct fc_exch_mgr - The Exchange Manager (EM). 823a3b42bfSRobert Love * @class: Default class for new sequences 833a3b42bfSRobert Love * @kref: Reference counter 843a3b42bfSRobert Love * @min_xid: Minimum exchange ID 853a3b42bfSRobert Love * @max_xid: Maximum exchange ID 863a3b42bfSRobert Love * @ep_pool: Reserved exchange pointers 873a3b42bfSRobert Love * @pool_max_index: Max exch array index in exch pool 883a3b42bfSRobert Love * @pool: Per cpu exch pool 893a3b42bfSRobert Love * @stats: Statistics structure 9042e9a92fSRobert Love * 9142e9a92fSRobert Love * This structure is the center for creating exchanges and sequences. 9242e9a92fSRobert Love * It manages the allocation of exchange IDs. 9342e9a92fSRobert Love */ 9442e9a92fSRobert Love struct fc_exch_mgr { 95c6b21c93SBart Van Assche struct fc_exch_pool __percpu *pool; 96e17b4af7SVasu Dev mempool_t *ep_pool; 979ca1e182SHannes Reinecke struct fc_lport *lport; 983a3b42bfSRobert Love enum fc_class class; 993a3b42bfSRobert Love struct kref kref; 1003a3b42bfSRobert Love u16 min_xid; 1013a3b42bfSRobert Love u16 max_xid; 1023a3b42bfSRobert Love u16 pool_max_index; 10342e9a92fSRobert Love 10442e9a92fSRobert Love struct { 10542e9a92fSRobert Love atomic_t no_free_exch; 10642e9a92fSRobert Love atomic_t no_free_exch_xid; 10742e9a92fSRobert Love atomic_t xid_not_found; 10842e9a92fSRobert Love atomic_t xid_busy; 10942e9a92fSRobert Love atomic_t seq_not_found; 11042e9a92fSRobert Love atomic_t non_bls_resp; 11142e9a92fSRobert Love } stats; 11242e9a92fSRobert Love }; 11342e9a92fSRobert Love 1143a3b42bfSRobert Love /** 1153a3b42bfSRobert Love * struct fc_exch_mgr_anchor - primary structure for list of EMs 1163a3b42bfSRobert Love * @ema_list: Exchange Manager Anchor list 1173a3b42bfSRobert Love * @mp: Exchange Manager associated with this anchor 1183a3b42bfSRobert Love * @match: Routine to determine if this anchor's EM should be used 1193a3b42bfSRobert Love * 1203a3b42bfSRobert Love * When walking the list of anchors the match routine will be called 1213a3b42bfSRobert Love * for each anchor to determine if that EM should be used. The last 1223a3b42bfSRobert Love * anchor in the list will always match to handle any exchanges not 1233a3b42bfSRobert Love * handled by other EMs. The non-default EMs would be added to the 1241bd49b48SVasu Dev * anchor list by HW that provides offloads. 1253a3b42bfSRobert Love */ 12696316099SVasu Dev struct fc_exch_mgr_anchor { 12796316099SVasu Dev struct list_head ema_list; 12896316099SVasu Dev struct fc_exch_mgr *mp; 12996316099SVasu Dev bool (*match)(struct fc_frame *); 13096316099SVasu Dev }; 13196316099SVasu Dev 13242e9a92fSRobert Love static void fc_exch_rrq(struct fc_exch *); 13392261156SJoe Eykholt static void fc_seq_ls_acc(struct fc_frame *); 13492261156SJoe Eykholt static void fc_seq_ls_rjt(struct fc_frame *, enum fc_els_rjt_reason, 13542e9a92fSRobert Love enum fc_els_rjt_explan); 13692261156SJoe Eykholt static void fc_exch_els_rec(struct fc_frame *); 13792261156SJoe Eykholt static void fc_exch_els_rrq(struct fc_frame *); 13842e9a92fSRobert Love 13942e9a92fSRobert Love /* 14042e9a92fSRobert Love * Internal implementation notes. 14142e9a92fSRobert Love * 14242e9a92fSRobert Love * The exchange manager is one by default in libfc but LLD may choose 14342e9a92fSRobert Love * to have one per CPU. The sequence manager is one per exchange manager 14442e9a92fSRobert Love * and currently never separated. 14542e9a92fSRobert Love * 14642e9a92fSRobert Love * Section 9.8 in FC-FS-2 specifies: "The SEQ_ID is a one-byte field 14742e9a92fSRobert Love * assigned by the Sequence Initiator that shall be unique for a specific 14842e9a92fSRobert Love * D_ID and S_ID pair while the Sequence is open." Note that it isn't 14942e9a92fSRobert Love * qualified by exchange ID, which one might think it would be. 15042e9a92fSRobert Love * In practice this limits the number of open sequences and exchanges to 256 15142e9a92fSRobert Love * per session. For most targets we could treat this limit as per exchange. 15242e9a92fSRobert Love * 15342e9a92fSRobert Love * The exchange and its sequence are freed when the last sequence is received. 15442e9a92fSRobert Love * It's possible for the remote port to leave an exchange open without 15542e9a92fSRobert Love * sending any sequences. 15642e9a92fSRobert Love * 15742e9a92fSRobert Love * Notes on reference counts: 15842e9a92fSRobert Love * 15942e9a92fSRobert Love * Exchanges are reference counted and exchange gets freed when the reference 16042e9a92fSRobert Love * count becomes zero. 16142e9a92fSRobert Love * 16242e9a92fSRobert Love * Timeouts: 16342e9a92fSRobert Love * Sequences are timed out for E_D_TOV and R_A_TOV. 16442e9a92fSRobert Love * 16542e9a92fSRobert Love * Sequence event handling: 16642e9a92fSRobert Love * 16742e9a92fSRobert Love * The following events may occur on initiator sequences: 16842e9a92fSRobert Love * 16942e9a92fSRobert Love * Send. 17042e9a92fSRobert Love * For now, the whole thing is sent. 17142e9a92fSRobert Love * Receive ACK 17242e9a92fSRobert Love * This applies only to class F. 17342e9a92fSRobert Love * The sequence is marked complete. 17442e9a92fSRobert Love * ULP completion. 17542e9a92fSRobert Love * The upper layer calls fc_exch_done() when done 17642e9a92fSRobert Love * with exchange and sequence tuple. 17742e9a92fSRobert Love * RX-inferred completion. 17842e9a92fSRobert Love * When we receive the next sequence on the same exchange, we can 17942e9a92fSRobert Love * retire the previous sequence ID. (XXX not implemented). 18042e9a92fSRobert Love * Timeout. 18142e9a92fSRobert Love * R_A_TOV frees the sequence ID. If we're waiting for ACK, 18242e9a92fSRobert Love * E_D_TOV causes abort and calls upper layer response handler 18342e9a92fSRobert Love * with FC_EX_TIMEOUT error. 18442e9a92fSRobert Love * Receive RJT 18542e9a92fSRobert Love * XXX defer. 18642e9a92fSRobert Love * Send ABTS 18742e9a92fSRobert Love * On timeout. 18842e9a92fSRobert Love * 18942e9a92fSRobert Love * The following events may occur on recipient sequences: 19042e9a92fSRobert Love * 19142e9a92fSRobert Love * Receive 19242e9a92fSRobert Love * Allocate sequence for first frame received. 19342e9a92fSRobert Love * Hold during receive handler. 19442e9a92fSRobert Love * Release when final frame received. 19542e9a92fSRobert Love * Keep status of last N of these for the ELS RES command. XXX TBD. 19642e9a92fSRobert Love * Receive ABTS 19742e9a92fSRobert Love * Deallocate sequence 19842e9a92fSRobert Love * Send RJT 19942e9a92fSRobert Love * Deallocate 20042e9a92fSRobert Love * 20142e9a92fSRobert Love * For now, we neglect conditions where only part of a sequence was 20242e9a92fSRobert Love * received or transmitted, or where out-of-order receipt is detected. 20342e9a92fSRobert Love */ 20442e9a92fSRobert Love 20542e9a92fSRobert Love /* 20642e9a92fSRobert Love * Locking notes: 20742e9a92fSRobert Love * 20842e9a92fSRobert Love * The EM code run in a per-CPU worker thread. 20942e9a92fSRobert Love * 21042e9a92fSRobert Love * To protect against concurrency between a worker thread code and timers, 21142e9a92fSRobert Love * sequence allocation and deallocation must be locked. 21242e9a92fSRobert Love * - exchange refcnt can be done atomicly without locks. 21342e9a92fSRobert Love * - sequence allocation must be locked by exch lock. 214b2f0091fSVasu Dev * - If the EM pool lock and ex_lock must be taken at the same time, then the 215b2f0091fSVasu Dev * EM pool lock must be taken before the ex_lock. 21642e9a92fSRobert Love */ 21742e9a92fSRobert Love 21842e9a92fSRobert Love /* 21942e9a92fSRobert Love * opcode names for debugging. 22042e9a92fSRobert Love */ 22142e9a92fSRobert Love static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT; 22242e9a92fSRobert Love 2233a3b42bfSRobert Love /** 2243a3b42bfSRobert Love * fc_exch_name_lookup() - Lookup name by opcode 2253a3b42bfSRobert Love * @op: Opcode to be looked up 2263a3b42bfSRobert Love * @table: Opcode/name table 2273a3b42bfSRobert Love * @max_index: Index not to be exceeded 2283a3b42bfSRobert Love * 2293a3b42bfSRobert Love * This routine is used to determine a human-readable string identifying 2303a3b42bfSRobert Love * a R_CTL opcode. 2313a3b42bfSRobert Love */ 23242e9a92fSRobert Love static inline const char *fc_exch_name_lookup(unsigned int op, char **table, 23342e9a92fSRobert Love unsigned int max_index) 23442e9a92fSRobert Love { 23542e9a92fSRobert Love const char *name = NULL; 23642e9a92fSRobert Love 23742e9a92fSRobert Love if (op < max_index) 23842e9a92fSRobert Love name = table[op]; 23942e9a92fSRobert Love if (!name) 24042e9a92fSRobert Love name = "unknown"; 24142e9a92fSRobert Love return name; 24242e9a92fSRobert Love } 24342e9a92fSRobert Love 2443a3b42bfSRobert Love /** 2453a3b42bfSRobert Love * fc_exch_rctl_name() - Wrapper routine for fc_exch_name_lookup() 2463a3b42bfSRobert Love * @op: The opcode to be looked up 2473a3b42bfSRobert Love */ 24842e9a92fSRobert Love static const char *fc_exch_rctl_name(unsigned int op) 24942e9a92fSRobert Love { 25042e9a92fSRobert Love return fc_exch_name_lookup(op, fc_exch_rctl_names, 2517156fffaSKulikov Vasiliy ARRAY_SIZE(fc_exch_rctl_names)); 25242e9a92fSRobert Love } 25342e9a92fSRobert Love 2543a3b42bfSRobert Love /** 2553a3b42bfSRobert Love * fc_exch_hold() - Increment an exchange's reference count 2563a3b42bfSRobert Love * @ep: Echange to be held 25742e9a92fSRobert Love */ 2583a3b42bfSRobert Love static inline void fc_exch_hold(struct fc_exch *ep) 25942e9a92fSRobert Love { 26042e9a92fSRobert Love atomic_inc(&ep->ex_refcnt); 26142e9a92fSRobert Love } 26242e9a92fSRobert Love 2633a3b42bfSRobert Love /** 2643a3b42bfSRobert Love * fc_exch_setup_hdr() - Initialize a FC header by initializing some fields 2653a3b42bfSRobert Love * and determine SOF and EOF. 2663a3b42bfSRobert Love * @ep: The exchange to that will use the header 2673a3b42bfSRobert Love * @fp: The frame whose header is to be modified 2683a3b42bfSRobert Love * @f_ctl: F_CTL bits that will be used for the frame header 2693a3b42bfSRobert Love * 2703a3b42bfSRobert Love * The fields initialized by this routine are: fh_ox_id, fh_rx_id, 2713a3b42bfSRobert Love * fh_seq_id, fh_seq_cnt and the SOF and EOF. 27242e9a92fSRobert Love */ 27342e9a92fSRobert Love static void fc_exch_setup_hdr(struct fc_exch *ep, struct fc_frame *fp, 27442e9a92fSRobert Love u32 f_ctl) 27542e9a92fSRobert Love { 27642e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 27742e9a92fSRobert Love u16 fill; 27842e9a92fSRobert Love 27942e9a92fSRobert Love fr_sof(fp) = ep->class; 28042e9a92fSRobert Love if (ep->seq.cnt) 28142e9a92fSRobert Love fr_sof(fp) = fc_sof_normal(ep->class); 28242e9a92fSRobert Love 28342e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) { 28442e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 28542e9a92fSRobert Love if (fc_sof_needs_ack(ep->class)) 28642e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 28742e9a92fSRobert Love /* 2883a3b42bfSRobert Love * From F_CTL. 28942e9a92fSRobert Love * The number of fill bytes to make the length a 4-byte 29042e9a92fSRobert Love * multiple is the low order 2-bits of the f_ctl. 29142e9a92fSRobert Love * The fill itself will have been cleared by the frame 29242e9a92fSRobert Love * allocation. 29342e9a92fSRobert Love * After this, the length will be even, as expected by 29442e9a92fSRobert Love * the transport. 29542e9a92fSRobert Love */ 29642e9a92fSRobert Love fill = fr_len(fp) & 3; 29742e9a92fSRobert Love if (fill) { 29842e9a92fSRobert Love fill = 4 - fill; 29942e9a92fSRobert Love /* TODO, this may be a problem with fragmented skb */ 30042e9a92fSRobert Love skb_put(fp_skb(fp), fill); 30142e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl | fill); 30242e9a92fSRobert Love } 30342e9a92fSRobert Love } else { 30442e9a92fSRobert Love WARN_ON(fr_len(fp) % 4 != 0); /* no pad to non last frame */ 30542e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 30642e9a92fSRobert Love } 30742e9a92fSRobert Love 308c1d45424SBart Van Assche /* Initialize remaining fh fields from fc_fill_fc_hdr */ 30942e9a92fSRobert Love fh->fh_ox_id = htons(ep->oxid); 31042e9a92fSRobert Love fh->fh_rx_id = htons(ep->rxid); 31142e9a92fSRobert Love fh->fh_seq_id = ep->seq.id; 31242e9a92fSRobert Love fh->fh_seq_cnt = htons(ep->seq.cnt); 31342e9a92fSRobert Love } 31442e9a92fSRobert Love 3153a3b42bfSRobert Love /** 3163a3b42bfSRobert Love * fc_exch_release() - Decrement an exchange's reference count 3173a3b42bfSRobert Love * @ep: Exchange to be released 3183a3b42bfSRobert Love * 3193a3b42bfSRobert Love * If the reference count reaches zero and the exchange is complete, 3203a3b42bfSRobert Love * it is freed. 32142e9a92fSRobert Love */ 32242e9a92fSRobert Love static void fc_exch_release(struct fc_exch *ep) 32342e9a92fSRobert Love { 32442e9a92fSRobert Love struct fc_exch_mgr *mp; 32542e9a92fSRobert Love 32642e9a92fSRobert Love if (atomic_dec_and_test(&ep->ex_refcnt)) { 32742e9a92fSRobert Love mp = ep->em; 32842e9a92fSRobert Love if (ep->destructor) 32942e9a92fSRobert Love ep->destructor(&ep->seq, ep->arg); 330aa6cd29bSJulia Lawall WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE)); 33142e9a92fSRobert Love mempool_free(ep, mp->ep_pool); 33242e9a92fSRobert Love } 33342e9a92fSRobert Love } 33442e9a92fSRobert Love 3353a3b42bfSRobert Love /** 336b29a4f30SVasu Dev * fc_exch_timer_cancel() - cancel exch timer 337b29a4f30SVasu Dev * @ep: The exchange whose timer to be canceled 338b29a4f30SVasu Dev */ 339b29a4f30SVasu Dev static inline void fc_exch_timer_cancel(struct fc_exch *ep) 340b29a4f30SVasu Dev { 341b29a4f30SVasu Dev if (cancel_delayed_work(&ep->timeout_work)) { 342b29a4f30SVasu Dev FC_EXCH_DBG(ep, "Exchange timer canceled\n"); 343b29a4f30SVasu Dev atomic_dec(&ep->ex_refcnt); /* drop hold for timer */ 344b29a4f30SVasu Dev } 345b29a4f30SVasu Dev } 346b29a4f30SVasu Dev 347b29a4f30SVasu Dev /** 348b29a4f30SVasu Dev * fc_exch_timer_set_locked() - Start a timer for an exchange w/ the 349b29a4f30SVasu Dev * the exchange lock held 350b29a4f30SVasu Dev * @ep: The exchange whose timer will start 351b29a4f30SVasu Dev * @timer_msec: The timeout period 352b29a4f30SVasu Dev * 353b29a4f30SVasu Dev * Used for upper level protocols to time out the exchange. 354b29a4f30SVasu Dev * The timer is cancelled when it fires or when the exchange completes. 355b29a4f30SVasu Dev */ 356b29a4f30SVasu Dev static inline void fc_exch_timer_set_locked(struct fc_exch *ep, 357b29a4f30SVasu Dev unsigned int timer_msec) 358b29a4f30SVasu Dev { 359b29a4f30SVasu Dev if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) 360b29a4f30SVasu Dev return; 361b29a4f30SVasu Dev 362b29a4f30SVasu Dev FC_EXCH_DBG(ep, "Exchange timer armed : %d msecs\n", timer_msec); 363b29a4f30SVasu Dev 364b29a4f30SVasu Dev fc_exch_hold(ep); /* hold for timer */ 365b8678865SBart Van Assche if (!queue_delayed_work(fc_exch_workqueue, &ep->timeout_work, 36657d3ec7eSHannes Reinecke msecs_to_jiffies(timer_msec))) { 36757d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Exchange already queued\n"); 368b8678865SBart Van Assche fc_exch_release(ep); 369b29a4f30SVasu Dev } 37057d3ec7eSHannes Reinecke } 371b29a4f30SVasu Dev 372b29a4f30SVasu Dev /** 373b29a4f30SVasu Dev * fc_exch_timer_set() - Lock the exchange and set the timer 374b29a4f30SVasu Dev * @ep: The exchange whose timer will start 375b29a4f30SVasu Dev * @timer_msec: The timeout period 376b29a4f30SVasu Dev */ 377b29a4f30SVasu Dev static void fc_exch_timer_set(struct fc_exch *ep, unsigned int timer_msec) 378b29a4f30SVasu Dev { 379b29a4f30SVasu Dev spin_lock_bh(&ep->ex_lock); 380b29a4f30SVasu Dev fc_exch_timer_set_locked(ep, timer_msec); 381b29a4f30SVasu Dev spin_unlock_bh(&ep->ex_lock); 382b29a4f30SVasu Dev } 383b29a4f30SVasu Dev 384b29a4f30SVasu Dev /** 3853a3b42bfSRobert Love * fc_exch_done_locked() - Complete an exchange with the exchange lock held 3863a3b42bfSRobert Love * @ep: The exchange that is complete 3877030fd62SBart Van Assche * 3887030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 3893a3b42bfSRobert Love */ 39042e9a92fSRobert Love static int fc_exch_done_locked(struct fc_exch *ep) 39142e9a92fSRobert Love { 39242e9a92fSRobert Love int rc = 1; 39342e9a92fSRobert Love 39442e9a92fSRobert Love /* 39542e9a92fSRobert Love * We must check for completion in case there are two threads 39642e9a92fSRobert Love * tyring to complete this. But the rrq code will reuse the 39742e9a92fSRobert Love * ep, and in that case we only clear the resp and set it as 39842e9a92fSRobert Love * complete, so it can be reused by the timer to send the rrq. 39942e9a92fSRobert Love */ 40042e9a92fSRobert Love if (ep->state & FC_EX_DONE) 40142e9a92fSRobert Love return rc; 40242e9a92fSRobert Love ep->esb_stat |= ESB_ST_COMPLETE; 40342e9a92fSRobert Love 40442e9a92fSRobert Love if (!(ep->esb_stat & ESB_ST_REC_QUAL)) { 40542e9a92fSRobert Love ep->state |= FC_EX_DONE; 406b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 40742e9a92fSRobert Love rc = 0; 40842e9a92fSRobert Love } 40942e9a92fSRobert Love return rc; 41042e9a92fSRobert Love } 41142e9a92fSRobert Love 4129ca1e182SHannes Reinecke static struct fc_exch fc_quarantine_exch; 4139ca1e182SHannes Reinecke 4143a3b42bfSRobert Love /** 4153a3b42bfSRobert Love * fc_exch_ptr_get() - Return an exchange from an exchange pool 4163a3b42bfSRobert Love * @pool: Exchange Pool to get an exchange from 4173a3b42bfSRobert Love * @index: Index of the exchange within the pool 4183a3b42bfSRobert Love * 4193a3b42bfSRobert Love * Use the index to get an exchange from within an exchange pool. exches 4203a3b42bfSRobert Love * will point to an array of exchange pointers. The index will select 4213a3b42bfSRobert Love * the exchange within the array. 4223a3b42bfSRobert Love */ 423e4bc50beSVasu Dev static inline struct fc_exch *fc_exch_ptr_get(struct fc_exch_pool *pool, 424e4bc50beSVasu Dev u16 index) 425e4bc50beSVasu Dev { 426e4bc50beSVasu Dev struct fc_exch **exches = (struct fc_exch **)(pool + 1); 427e4bc50beSVasu Dev return exches[index]; 428e4bc50beSVasu Dev } 429e4bc50beSVasu Dev 4303a3b42bfSRobert Love /** 4313a3b42bfSRobert Love * fc_exch_ptr_set() - Assign an exchange to a slot in an exchange pool 4323a3b42bfSRobert Love * @pool: The pool to assign the exchange to 4333a3b42bfSRobert Love * @index: The index in the pool where the exchange will be assigned 4343a3b42bfSRobert Love * @ep: The exchange to assign to the pool 4353a3b42bfSRobert Love */ 436e4bc50beSVasu Dev static inline void fc_exch_ptr_set(struct fc_exch_pool *pool, u16 index, 437e4bc50beSVasu Dev struct fc_exch *ep) 438e4bc50beSVasu Dev { 439e4bc50beSVasu Dev ((struct fc_exch **)(pool + 1))[index] = ep; 440e4bc50beSVasu Dev } 441e4bc50beSVasu Dev 4423a3b42bfSRobert Love /** 4433a3b42bfSRobert Love * fc_exch_delete() - Delete an exchange 4443a3b42bfSRobert Love * @ep: The exchange to be deleted 4453a3b42bfSRobert Love */ 446b2f0091fSVasu Dev static void fc_exch_delete(struct fc_exch *ep) 44742e9a92fSRobert Love { 448b2f0091fSVasu Dev struct fc_exch_pool *pool; 4492034c19cSHillf Danton u16 index; 45042e9a92fSRobert Love 451b2f0091fSVasu Dev pool = ep->pool; 452b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 453b2f0091fSVasu Dev WARN_ON(pool->total_exches <= 0); 454b2f0091fSVasu Dev pool->total_exches--; 4552034c19cSHillf Danton 4562034c19cSHillf Danton /* update cache of free slot */ 4572034c19cSHillf Danton index = (ep->xid - ep->em->min_xid) >> fc_cpu_order; 4589ca1e182SHannes Reinecke if (!(ep->state & FC_EX_QUARANTINE)) { 4592034c19cSHillf Danton if (pool->left == FC_XID_UNKNOWN) 4602034c19cSHillf Danton pool->left = index; 4612034c19cSHillf Danton else if (pool->right == FC_XID_UNKNOWN) 4622034c19cSHillf Danton pool->right = index; 4632034c19cSHillf Danton else 4642034c19cSHillf Danton pool->next_index = index; 4652034c19cSHillf Danton fc_exch_ptr_set(pool, index, NULL); 4669ca1e182SHannes Reinecke } else { 4679ca1e182SHannes Reinecke fc_exch_ptr_set(pool, index, &fc_quarantine_exch); 4689ca1e182SHannes Reinecke } 46942e9a92fSRobert Love list_del(&ep->ex_list); 470b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 47142e9a92fSRobert Love fc_exch_release(ep); /* drop hold for exch in mp */ 47242e9a92fSRobert Love } 47342e9a92fSRobert Love 474fb00cc23SNeil Horman static int fc_seq_send_locked(struct fc_lport *lport, struct fc_seq *sp, 4751a7b75aeSRobert Love struct fc_frame *fp) 4761a7b75aeSRobert Love { 4771a7b75aeSRobert Love struct fc_exch *ep; 4781a7b75aeSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 479cae7b6ddSBart Van Assche int error = -ENXIO; 4801a7b75aeSRobert Love u32 f_ctl; 48114fc315fSVasu Dev u8 fh_type = fh->fh_type; 4821a7b75aeSRobert Love 4831a7b75aeSRobert Love ep = fc_seq_exch(sp); 484cae7b6ddSBart Van Assche 485cae7b6ddSBart Van Assche if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL)) { 486cae7b6ddSBart Van Assche fc_frame_free(fp); 487cae7b6ddSBart Van Assche goto out; 488cae7b6ddSBart Van Assche } 489cae7b6ddSBart Van Assche 490fb00cc23SNeil Horman WARN_ON(!(ep->esb_stat & ESB_ST_SEQ_INIT)); 4911a7b75aeSRobert Love 4921a7b75aeSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 4931a7b75aeSRobert Love fc_exch_setup_hdr(ep, fp, f_ctl); 494f60e12e9SJoe Eykholt fr_encaps(fp) = ep->encaps; 4951a7b75aeSRobert Love 4961a7b75aeSRobert Love /* 4971a7b75aeSRobert Love * update sequence count if this frame is carrying 4981a7b75aeSRobert Love * multiple FC frames when sequence offload is enabled 4991a7b75aeSRobert Love * by LLD. 5001a7b75aeSRobert Love */ 5011a7b75aeSRobert Love if (fr_max_payload(fp)) 5021a7b75aeSRobert Love sp->cnt += DIV_ROUND_UP((fr_len(fp) - sizeof(*fh)), 5031a7b75aeSRobert Love fr_max_payload(fp)); 5041a7b75aeSRobert Love else 5051a7b75aeSRobert Love sp->cnt++; 5061a7b75aeSRobert Love 5071a7b75aeSRobert Love /* 5081a7b75aeSRobert Love * Send the frame. 5091a7b75aeSRobert Love */ 5103a3b42bfSRobert Love error = lport->tt.frame_send(lport, fp); 5111a7b75aeSRobert Love 51214fc315fSVasu Dev if (fh_type == FC_TYPE_BLS) 513fb00cc23SNeil Horman goto out; 51477a2b73aSVasu Dev 5151a7b75aeSRobert Love /* 5161a7b75aeSRobert Love * Update the exchange and sequence flags, 5171a7b75aeSRobert Love * assuming all frames for the sequence have been sent. 5181a7b75aeSRobert Love * We can only be called to send once for each sequence. 5191a7b75aeSRobert Love */ 5201a7b75aeSRobert Love ep->f_ctl = f_ctl & ~FC_FC_FIRST_SEQ; /* not first seq */ 521cc3593d3SJoe Eykholt if (f_ctl & FC_FC_SEQ_INIT) 5221a7b75aeSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 523fb00cc23SNeil Horman out: 524fb00cc23SNeil Horman return error; 525fb00cc23SNeil Horman } 526fb00cc23SNeil Horman 527fb00cc23SNeil Horman /** 528fb00cc23SNeil Horman * fc_seq_send() - Send a frame using existing sequence/exchange pair 529fb00cc23SNeil Horman * @lport: The local port that the exchange will be sent on 530fb00cc23SNeil Horman * @sp: The sequence to be sent 531fb00cc23SNeil Horman * @fp: The frame to be sent on the exchange 532cae7b6ddSBart Van Assche * 533cae7b6ddSBart Van Assche * Note: The frame will be freed either by a direct call to fc_frame_free(fp) 534cae7b6ddSBart Van Assche * or indirectly by calling libfc_function_template.frame_send(). 535fb00cc23SNeil Horman */ 5360cac937dSHannes Reinecke int fc_seq_send(struct fc_lport *lport, struct fc_seq *sp, struct fc_frame *fp) 537fb00cc23SNeil Horman { 538fb00cc23SNeil Horman struct fc_exch *ep; 539fb00cc23SNeil Horman int error; 540fb00cc23SNeil Horman ep = fc_seq_exch(sp); 541fb00cc23SNeil Horman spin_lock_bh(&ep->ex_lock); 542fb00cc23SNeil Horman error = fc_seq_send_locked(lport, sp, fp); 5431a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 5441a7b75aeSRobert Love return error; 5451a7b75aeSRobert Love } 5460cac937dSHannes Reinecke EXPORT_SYMBOL(fc_seq_send); 5471a7b75aeSRobert Love 5481a7b75aeSRobert Love /** 5493a3b42bfSRobert Love * fc_seq_alloc() - Allocate a sequence for a given exchange 5503a3b42bfSRobert Love * @ep: The exchange to allocate a new sequence for 5513a3b42bfSRobert Love * @seq_id: The sequence ID to be used 5521a7b75aeSRobert Love * 5531a7b75aeSRobert Love * We don't support multiple originated sequences on the same exchange. 5541a7b75aeSRobert Love * By implication, any previously originated sequence on this exchange 5551a7b75aeSRobert Love * is complete, and we reallocate the same sequence. 5561a7b75aeSRobert Love */ 5571a7b75aeSRobert Love static struct fc_seq *fc_seq_alloc(struct fc_exch *ep, u8 seq_id) 5581a7b75aeSRobert Love { 5591a7b75aeSRobert Love struct fc_seq *sp; 5601a7b75aeSRobert Love 5611a7b75aeSRobert Love sp = &ep->seq; 5621a7b75aeSRobert Love sp->ssb_stat = 0; 5631a7b75aeSRobert Love sp->cnt = 0; 5641a7b75aeSRobert Love sp->id = seq_id; 5651a7b75aeSRobert Love return sp; 5661a7b75aeSRobert Love } 5671a7b75aeSRobert Love 5683a3b42bfSRobert Love /** 5693a3b42bfSRobert Love * fc_seq_start_next_locked() - Allocate a new sequence on the same 5703a3b42bfSRobert Love * exchange as the supplied sequence 5713a3b42bfSRobert Love * @sp: The sequence/exchange to get a new sequence for 5723a3b42bfSRobert Love */ 5731a7b75aeSRobert Love static struct fc_seq *fc_seq_start_next_locked(struct fc_seq *sp) 5741a7b75aeSRobert Love { 5751a7b75aeSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 5761a7b75aeSRobert Love 5771a7b75aeSRobert Love sp = fc_seq_alloc(ep, ep->seq_id++); 5781a7b75aeSRobert Love FC_EXCH_DBG(ep, "f_ctl %6x seq %2x\n", 5791a7b75aeSRobert Love ep->f_ctl, sp->id); 5801a7b75aeSRobert Love return sp; 5811a7b75aeSRobert Love } 5821a7b75aeSRobert Love 5831a7b75aeSRobert Love /** 5843a3b42bfSRobert Love * fc_seq_start_next() - Lock the exchange and get a new sequence 5853a3b42bfSRobert Love * for a given sequence/exchange pair 5863a3b42bfSRobert Love * @sp: The sequence/exchange to get a new exchange for 5871a7b75aeSRobert Love */ 588c6865b30SHannes Reinecke struct fc_seq *fc_seq_start_next(struct fc_seq *sp) 5891a7b75aeSRobert Love { 5901a7b75aeSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 5911a7b75aeSRobert Love 5921a7b75aeSRobert Love spin_lock_bh(&ep->ex_lock); 5931a7b75aeSRobert Love sp = fc_seq_start_next_locked(sp); 5941a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 5951a7b75aeSRobert Love 5961a7b75aeSRobert Love return sp; 5971a7b75aeSRobert Love } 598c6865b30SHannes Reinecke EXPORT_SYMBOL(fc_seq_start_next); 5991a7b75aeSRobert Love 6001a5c2d7eSJoe Eykholt /* 6011a5c2d7eSJoe Eykholt * Set the response handler for the exchange associated with a sequence. 6027030fd62SBart Van Assche * 6037030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 6041a5c2d7eSJoe Eykholt */ 605f1d61e6eSHannes Reinecke void fc_seq_set_resp(struct fc_seq *sp, 606f1d61e6eSHannes Reinecke void (*resp)(struct fc_seq *, struct fc_frame *, void *), 6071a5c2d7eSJoe Eykholt void *arg) 6081a5c2d7eSJoe Eykholt { 6091a5c2d7eSJoe Eykholt struct fc_exch *ep = fc_seq_exch(sp); 6107030fd62SBart Van Assche DEFINE_WAIT(wait); 6111a5c2d7eSJoe Eykholt 6121a5c2d7eSJoe Eykholt spin_lock_bh(&ep->ex_lock); 6137030fd62SBart Van Assche while (ep->resp_active && ep->resp_task != current) { 6147030fd62SBart Van Assche prepare_to_wait(&ep->resp_wq, &wait, TASK_UNINTERRUPTIBLE); 6157030fd62SBart Van Assche spin_unlock_bh(&ep->ex_lock); 6167030fd62SBart Van Assche 6177030fd62SBart Van Assche schedule(); 6187030fd62SBart Van Assche 6197030fd62SBart Van Assche spin_lock_bh(&ep->ex_lock); 6207030fd62SBart Van Assche } 6217030fd62SBart Van Assche finish_wait(&ep->resp_wq, &wait); 6221a5c2d7eSJoe Eykholt ep->resp = resp; 6231a5c2d7eSJoe Eykholt ep->arg = arg; 6241a5c2d7eSJoe Eykholt spin_unlock_bh(&ep->ex_lock); 6251a5c2d7eSJoe Eykholt } 626f1d61e6eSHannes Reinecke EXPORT_SYMBOL(fc_seq_set_resp); 6271a5c2d7eSJoe Eykholt 6281a7b75aeSRobert Love /** 62977a2b73aSVasu Dev * fc_exch_abort_locked() - Abort an exchange 63077a2b73aSVasu Dev * @ep: The exchange to be aborted 6313a3b42bfSRobert Love * @timer_msec: The period of time to wait before aborting 6323a3b42bfSRobert Love * 6330ebaed17SHannes Reinecke * Abort an exchange and sequence. Generally called because of a 6340ebaed17SHannes Reinecke * exchange timeout or an abort from the upper layer. 6350ebaed17SHannes Reinecke * 6360ebaed17SHannes Reinecke * A timer_msec can be specified for abort timeout, if non-zero 6370ebaed17SHannes Reinecke * timer_msec value is specified then exchange resp handler 6380ebaed17SHannes Reinecke * will be called with timeout error if no response to abort. 6390ebaed17SHannes Reinecke * 64077a2b73aSVasu Dev * Locking notes: Called with exch lock held 64177a2b73aSVasu Dev * 64277a2b73aSVasu Dev * Return value: 0 on success else error code 6431a7b75aeSRobert Love */ 64477a2b73aSVasu Dev static int fc_exch_abort_locked(struct fc_exch *ep, 6451a7b75aeSRobert Love unsigned int timer_msec) 64642e9a92fSRobert Love { 64742e9a92fSRobert Love struct fc_seq *sp; 64842e9a92fSRobert Love struct fc_frame *fp; 64942e9a92fSRobert Love int error; 65042e9a92fSRobert Love 65157d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: abort, time %d msecs\n", timer_msec); 65242e9a92fSRobert Love if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL) || 65357d3ec7eSHannes Reinecke ep->state & (FC_EX_DONE | FC_EX_RST_CLEANUP)) { 65457d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: already completed esb %x state %x\n", 65557d3ec7eSHannes Reinecke ep->esb_stat, ep->state); 65642e9a92fSRobert Love return -ENXIO; 65757d3ec7eSHannes Reinecke } 65842e9a92fSRobert Love 65942e9a92fSRobert Love /* 66042e9a92fSRobert Love * Send the abort on a new sequence if possible. 66142e9a92fSRobert Love */ 66242e9a92fSRobert Love sp = fc_seq_start_next_locked(&ep->seq); 66377a2b73aSVasu Dev if (!sp) 66442e9a92fSRobert Love return -ENOMEM; 66542e9a92fSRobert Love 66642e9a92fSRobert Love if (timer_msec) 66742e9a92fSRobert Love fc_exch_timer_set_locked(ep, timer_msec); 66842e9a92fSRobert Love 669cae7b6ddSBart Van Assche if (ep->sid) { 67042e9a92fSRobert Love /* 67142e9a92fSRobert Love * Send an abort for the sequence that timed out. 67242e9a92fSRobert Love */ 67342e9a92fSRobert Love fp = fc_frame_alloc(ep->lp, 0); 67442e9a92fSRobert Love if (fp) { 675cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_SEQ_INIT; 67642e9a92fSRobert Love fc_fill_fc_hdr(fp, FC_RCTL_BA_ABTS, ep->did, ep->sid, 677cae7b6ddSBart Van Assche FC_TYPE_BLS, FC_FC_END_SEQ | 678cae7b6ddSBart Van Assche FC_FC_SEQ_INIT, 0); 679fb00cc23SNeil Horman error = fc_seq_send_locked(ep->lp, sp, fp); 680cae7b6ddSBart Van Assche } else { 68142e9a92fSRobert Love error = -ENOBUFS; 682cae7b6ddSBart Van Assche } 683cae7b6ddSBart Van Assche } else { 684cae7b6ddSBart Van Assche /* 685cae7b6ddSBart Van Assche * If not logged into the fabric, don't send ABTS but leave 686cae7b6ddSBart Van Assche * sequence active until next timeout. 687cae7b6ddSBart Van Assche */ 688cae7b6ddSBart Van Assche error = 0; 689cae7b6ddSBart Van Assche } 690cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_ABNORMAL; 69142e9a92fSRobert Love return error; 69242e9a92fSRobert Love } 69342e9a92fSRobert Love 6943a3b42bfSRobert Love /** 69577a2b73aSVasu Dev * fc_seq_exch_abort() - Abort an exchange and sequence 69677a2b73aSVasu Dev * @req_sp: The sequence to be aborted 69777a2b73aSVasu Dev * @timer_msec: The period of time to wait before aborting 69877a2b73aSVasu Dev * 69977a2b73aSVasu Dev * Generally called because of a timeout or an abort from the upper layer. 70077a2b73aSVasu Dev * 70177a2b73aSVasu Dev * Return value: 0 on success else error code 70277a2b73aSVasu Dev */ 7030ebaed17SHannes Reinecke int fc_seq_exch_abort(const struct fc_seq *req_sp, unsigned int timer_msec) 70477a2b73aSVasu Dev { 70577a2b73aSVasu Dev struct fc_exch *ep; 70677a2b73aSVasu Dev int error; 70777a2b73aSVasu Dev 70877a2b73aSVasu Dev ep = fc_seq_exch(req_sp); 70977a2b73aSVasu Dev spin_lock_bh(&ep->ex_lock); 71077a2b73aSVasu Dev error = fc_exch_abort_locked(ep, timer_msec); 71177a2b73aSVasu Dev spin_unlock_bh(&ep->ex_lock); 71277a2b73aSVasu Dev return error; 71377a2b73aSVasu Dev } 71477a2b73aSVasu Dev 71577a2b73aSVasu Dev /** 7167030fd62SBart Van Assche * fc_invoke_resp() - invoke ep->resp() 7177030fd62SBart Van Assche * 7187030fd62SBart Van Assche * Notes: 7197030fd62SBart Van Assche * It is assumed that after initialization finished (this means the 7207030fd62SBart Van Assche * first unlock of ex_lock after fc_exch_alloc()) ep->resp and ep->arg are 7217030fd62SBart Van Assche * modified only via fc_seq_set_resp(). This guarantees that none of these 7227030fd62SBart Van Assche * two variables changes if ep->resp_active > 0. 7237030fd62SBart Van Assche * 7247030fd62SBart Van Assche * If an fc_seq_set_resp() call is busy modifying ep->resp and ep->arg when 7257030fd62SBart Van Assche * this function is invoked, the first spin_lock_bh() call in this function 7267030fd62SBart Van Assche * will wait until fc_seq_set_resp() has finished modifying these variables. 7277030fd62SBart Van Assche * 7287030fd62SBart Van Assche * Since fc_exch_done() invokes fc_seq_set_resp() it is guaranteed that that 7297030fd62SBart Van Assche * ep->resp() won't be invoked after fc_exch_done() has returned. 7307030fd62SBart Van Assche * 7317030fd62SBart Van Assche * The response handler itself may invoke fc_exch_done(), which will clear the 7327030fd62SBart Van Assche * ep->resp pointer. 7337030fd62SBart Van Assche * 7347030fd62SBart Van Assche * Return value: 7357030fd62SBart Van Assche * Returns true if and only if ep->resp has been invoked. 7367030fd62SBart Van Assche */ 7377030fd62SBart Van Assche static bool fc_invoke_resp(struct fc_exch *ep, struct fc_seq *sp, 7387030fd62SBart Van Assche struct fc_frame *fp) 7397030fd62SBart Van Assche { 7407030fd62SBart Van Assche void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg); 7417030fd62SBart Van Assche void *arg; 7427030fd62SBart Van Assche bool res = false; 7437030fd62SBart Van Assche 7447030fd62SBart Van Assche spin_lock_bh(&ep->ex_lock); 7457030fd62SBart Van Assche ep->resp_active++; 7467030fd62SBart Van Assche if (ep->resp_task != current) 7477030fd62SBart Van Assche ep->resp_task = !ep->resp_task ? current : NULL; 7487030fd62SBart Van Assche resp = ep->resp; 7497030fd62SBart Van Assche arg = ep->arg; 7507030fd62SBart Van Assche spin_unlock_bh(&ep->ex_lock); 7517030fd62SBart Van Assche 7527030fd62SBart Van Assche if (resp) { 7537030fd62SBart Van Assche resp(sp, fp, arg); 7547030fd62SBart Van Assche res = true; 7557030fd62SBart Van Assche } 7567030fd62SBart Van Assche 7577030fd62SBart Van Assche spin_lock_bh(&ep->ex_lock); 7587030fd62SBart Van Assche if (--ep->resp_active == 0) 7597030fd62SBart Van Assche ep->resp_task = NULL; 7607030fd62SBart Van Assche spin_unlock_bh(&ep->ex_lock); 7617030fd62SBart Van Assche 7627030fd62SBart Van Assche if (ep->resp_active == 0) 7637030fd62SBart Van Assche wake_up(&ep->resp_wq); 7647030fd62SBart Van Assche 7657030fd62SBart Van Assche return res; 7667030fd62SBart Van Assche } 7677030fd62SBart Van Assche 7687030fd62SBart Van Assche /** 7693a3b42bfSRobert Love * fc_exch_timeout() - Handle exchange timer expiration 7703a3b42bfSRobert Love * @work: The work_struct identifying the exchange that timed out 77142e9a92fSRobert Love */ 77242e9a92fSRobert Love static void fc_exch_timeout(struct work_struct *work) 77342e9a92fSRobert Love { 77442e9a92fSRobert Love struct fc_exch *ep = container_of(work, struct fc_exch, 77542e9a92fSRobert Love timeout_work.work); 77642e9a92fSRobert Love struct fc_seq *sp = &ep->seq; 77742e9a92fSRobert Love u32 e_stat; 77842e9a92fSRobert Love int rc = 1; 77942e9a92fSRobert Love 78057d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Exchange timed out state %x\n", ep->state); 781cd305ce4SRobert Love 78242e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 78342e9a92fSRobert Love if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) 78442e9a92fSRobert Love goto unlock; 78542e9a92fSRobert Love 78642e9a92fSRobert Love e_stat = ep->esb_stat; 78742e9a92fSRobert Love if (e_stat & ESB_ST_COMPLETE) { 78842e9a92fSRobert Love ep->esb_stat = e_stat & ~ESB_ST_REC_QUAL; 789a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 79042e9a92fSRobert Love if (e_stat & ESB_ST_REC_QUAL) 79142e9a92fSRobert Love fc_exch_rrq(ep); 79242e9a92fSRobert Love goto done; 79342e9a92fSRobert Love } else { 79442e9a92fSRobert Love if (e_stat & ESB_ST_ABNORMAL) 79542e9a92fSRobert Love rc = fc_exch_done_locked(ep); 79642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 797f3162483SParikh, Neerav if (!rc) 798f3162483SParikh, Neerav fc_exch_delete(ep); 7997030fd62SBart Van Assche fc_invoke_resp(ep, sp, ERR_PTR(-FC_EX_TIMEOUT)); 8007030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 80142e9a92fSRobert Love fc_seq_exch_abort(sp, 2 * ep->r_a_tov); 80242e9a92fSRobert Love goto done; 80342e9a92fSRobert Love } 80442e9a92fSRobert Love unlock: 80542e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 80642e9a92fSRobert Love done: 80742e9a92fSRobert Love /* 80842e9a92fSRobert Love * This release matches the hold taken when the timer was set. 80942e9a92fSRobert Love */ 81042e9a92fSRobert Love fc_exch_release(ep); 81142e9a92fSRobert Love } 81242e9a92fSRobert Love 81352ff878cSVasu Dev /** 8143a3b42bfSRobert Love * fc_exch_em_alloc() - Allocate an exchange from a specified EM. 8153a3b42bfSRobert Love * @lport: The local port that the exchange is for 8163a3b42bfSRobert Love * @mp: The exchange manager that will allocate the exchange 81742e9a92fSRobert Love * 818d7179680SVasu Dev * Returns pointer to allocated fc_exch with exch lock held. 81942e9a92fSRobert Love */ 82052ff878cSVasu Dev static struct fc_exch *fc_exch_em_alloc(struct fc_lport *lport, 821d7179680SVasu Dev struct fc_exch_mgr *mp) 82242e9a92fSRobert Love { 82342e9a92fSRobert Love struct fc_exch *ep; 824b2f0091fSVasu Dev unsigned int cpu; 825b2f0091fSVasu Dev u16 index; 826b2f0091fSVasu Dev struct fc_exch_pool *pool; 82742e9a92fSRobert Love 82842e9a92fSRobert Love /* allocate memory for exchange */ 82942e9a92fSRobert Love ep = mempool_alloc(mp->ep_pool, GFP_ATOMIC); 83042e9a92fSRobert Love if (!ep) { 83142e9a92fSRobert Love atomic_inc(&mp->stats.no_free_exch); 83242e9a92fSRobert Love goto out; 83342e9a92fSRobert Love } 83442e9a92fSRobert Love memset(ep, 0, sizeof(*ep)); 83542e9a92fSRobert Love 836f018b73aSJoe Eykholt cpu = get_cpu(); 837b2f0091fSVasu Dev pool = per_cpu_ptr(mp->pool, cpu); 838b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 839f018b73aSJoe Eykholt put_cpu(); 8402034c19cSHillf Danton 8412034c19cSHillf Danton /* peek cache of free slot */ 8422034c19cSHillf Danton if (pool->left != FC_XID_UNKNOWN) { 843b73aa56eSHannes Reinecke if (!WARN_ON(fc_exch_ptr_get(pool, pool->left))) { 8442034c19cSHillf Danton index = pool->left; 8452034c19cSHillf Danton pool->left = FC_XID_UNKNOWN; 8462034c19cSHillf Danton goto hit; 8472034c19cSHillf Danton } 848b73aa56eSHannes Reinecke } 8492034c19cSHillf Danton if (pool->right != FC_XID_UNKNOWN) { 850b73aa56eSHannes Reinecke if (!WARN_ON(fc_exch_ptr_get(pool, pool->right))) { 8512034c19cSHillf Danton index = pool->right; 8522034c19cSHillf Danton pool->right = FC_XID_UNKNOWN; 8532034c19cSHillf Danton goto hit; 8542034c19cSHillf Danton } 855b73aa56eSHannes Reinecke } 8562034c19cSHillf Danton 857b2f0091fSVasu Dev index = pool->next_index; 858b2f0091fSVasu Dev /* allocate new exch from pool */ 859b2f0091fSVasu Dev while (fc_exch_ptr_get(pool, index)) { 860b2f0091fSVasu Dev index = index == mp->pool_max_index ? 0 : index + 1; 861b2f0091fSVasu Dev if (index == pool->next_index) 86242e9a92fSRobert Love goto err; 86342e9a92fSRobert Love } 864b2f0091fSVasu Dev pool->next_index = index == mp->pool_max_index ? 0 : index + 1; 8652034c19cSHillf Danton hit: 86642e9a92fSRobert Love fc_exch_hold(ep); /* hold for exch in mp */ 86742e9a92fSRobert Love spin_lock_init(&ep->ex_lock); 86842e9a92fSRobert Love /* 86942e9a92fSRobert Love * Hold exch lock for caller to prevent fc_exch_reset() 87042e9a92fSRobert Love * from releasing exch while fc_exch_alloc() caller is 87142e9a92fSRobert Love * still working on exch. 87242e9a92fSRobert Love */ 87342e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 87442e9a92fSRobert Love 875b2f0091fSVasu Dev fc_exch_ptr_set(pool, index, ep); 876b2f0091fSVasu Dev list_add_tail(&ep->ex_list, &pool->ex_list); 87742e9a92fSRobert Love fc_seq_alloc(ep, ep->seq_id++); 878b2f0091fSVasu Dev pool->total_exches++; 879b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 88042e9a92fSRobert Love 88142e9a92fSRobert Love /* 88242e9a92fSRobert Love * update exchange 88342e9a92fSRobert Love */ 884b2f0091fSVasu Dev ep->oxid = ep->xid = (index << fc_cpu_order | cpu) + mp->min_xid; 88542e9a92fSRobert Love ep->em = mp; 886b2f0091fSVasu Dev ep->pool = pool; 88752ff878cSVasu Dev ep->lp = lport; 88842e9a92fSRobert Love ep->f_ctl = FC_FC_FIRST_SEQ; /* next seq is first seq */ 88942e9a92fSRobert Love ep->rxid = FC_XID_UNKNOWN; 89042e9a92fSRobert Love ep->class = mp->class; 8917030fd62SBart Van Assche ep->resp_active = 0; 8927030fd62SBart Van Assche init_waitqueue_head(&ep->resp_wq); 89342e9a92fSRobert Love INIT_DELAYED_WORK(&ep->timeout_work, fc_exch_timeout); 89442e9a92fSRobert Love out: 89542e9a92fSRobert Love return ep; 89642e9a92fSRobert Love err: 897b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 89842e9a92fSRobert Love atomic_inc(&mp->stats.no_free_exch_xid); 89942e9a92fSRobert Love mempool_free(ep, mp->ep_pool); 90042e9a92fSRobert Love return NULL; 90142e9a92fSRobert Love } 90252ff878cSVasu Dev 90352ff878cSVasu Dev /** 9043a3b42bfSRobert Love * fc_exch_alloc() - Allocate an exchange from an EM on a 9053a3b42bfSRobert Love * local port's list of EMs. 9063a3b42bfSRobert Love * @lport: The local port that will own the exchange 9073a3b42bfSRobert Love * @fp: The FC frame that the exchange will be for 90852ff878cSVasu Dev * 9093a3b42bfSRobert Love * This function walks the list of exchange manager(EM) 9103a3b42bfSRobert Love * anchors to select an EM for a new exchange allocation. The 9113a3b42bfSRobert Love * EM is selected when a NULL match function pointer is encountered 9123a3b42bfSRobert Love * or when a call to a match function returns true. 91352ff878cSVasu Dev */ 914f8f91f3fSMartin K. Petersen static struct fc_exch *fc_exch_alloc(struct fc_lport *lport, 9151a7b75aeSRobert Love struct fc_frame *fp) 91652ff878cSVasu Dev { 91752ff878cSVasu Dev struct fc_exch_mgr_anchor *ema; 918f8f91f3fSMartin K. Petersen struct fc_exch *ep; 91952ff878cSVasu Dev 920f8f91f3fSMartin K. Petersen list_for_each_entry(ema, &lport->ema_list, ema_list) { 921f8f91f3fSMartin K. Petersen if (!ema->match || ema->match(fp)) { 922f8f91f3fSMartin K. Petersen ep = fc_exch_em_alloc(lport, ema->mp); 923f8f91f3fSMartin K. Petersen if (ep) 924f8f91f3fSMartin K. Petersen return ep; 925f8f91f3fSMartin K. Petersen } 926f8f91f3fSMartin K. Petersen } 92752ff878cSVasu Dev return NULL; 92852ff878cSVasu Dev } 92942e9a92fSRobert Love 9303a3b42bfSRobert Love /** 9313a3b42bfSRobert Love * fc_exch_find() - Lookup and hold an exchange 9323a3b42bfSRobert Love * @mp: The exchange manager to lookup the exchange from 9333a3b42bfSRobert Love * @xid: The XID of the exchange to look up 93442e9a92fSRobert Love */ 93542e9a92fSRobert Love static struct fc_exch *fc_exch_find(struct fc_exch_mgr *mp, u16 xid) 93642e9a92fSRobert Love { 9379ca1e182SHannes Reinecke struct fc_lport *lport = mp->lport; 938b2f0091fSVasu Dev struct fc_exch_pool *pool; 93942e9a92fSRobert Love struct fc_exch *ep = NULL; 940fa068832SChris Leech u16 cpu = xid & fc_cpu_mask; 941fa068832SChris Leech 942*d5c3eb26SChris Leech if (xid == FC_XID_UNKNOWN) 943*d5c3eb26SChris Leech return NULL; 944*d5c3eb26SChris Leech 945fa068832SChris Leech if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) { 9469ca1e182SHannes Reinecke pr_err("host%u: lport %6.6x: xid %d invalid CPU %d\n:", 9479ca1e182SHannes Reinecke lport->host->host_no, lport->port_id, xid, cpu); 948fa068832SChris Leech return NULL; 949fa068832SChris Leech } 95042e9a92fSRobert Love 95142e9a92fSRobert Love if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) { 952fa068832SChris Leech pool = per_cpu_ptr(mp->pool, cpu); 953b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 954b2f0091fSVasu Dev ep = fc_exch_ptr_get(pool, (xid - mp->min_xid) >> fc_cpu_order); 9559ca1e182SHannes Reinecke if (ep == &fc_quarantine_exch) { 9569ca1e182SHannes Reinecke FC_LPORT_DBG(lport, "xid %x quarantined\n", xid); 9579ca1e182SHannes Reinecke ep = NULL; 9589ca1e182SHannes Reinecke } 9598d080236SBart Van Assche if (ep) { 9608d080236SBart Van Assche WARN_ON(ep->xid != xid); 96142e9a92fSRobert Love fc_exch_hold(ep); 9628d080236SBart Van Assche } 963b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 96442e9a92fSRobert Love } 96542e9a92fSRobert Love return ep; 96642e9a92fSRobert Love } 96742e9a92fSRobert Love 9681a7b75aeSRobert Love 9691a7b75aeSRobert Love /** 9701a7b75aeSRobert Love * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and 9711a7b75aeSRobert Love * the memory allocated for the related objects may be freed. 9723a3b42bfSRobert Love * @sp: The sequence that has completed 9737030fd62SBart Van Assche * 9747030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 9751a7b75aeSRobert Love */ 976768c72ccSHannes Reinecke void fc_exch_done(struct fc_seq *sp) 97742e9a92fSRobert Love { 97842e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 97942e9a92fSRobert Love int rc; 98042e9a92fSRobert Love 98142e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 98242e9a92fSRobert Love rc = fc_exch_done_locked(ep); 98342e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 9847030fd62SBart Van Assche 9857030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 98642e9a92fSRobert Love if (!rc) 987b2f0091fSVasu Dev fc_exch_delete(ep); 98842e9a92fSRobert Love } 989768c72ccSHannes Reinecke EXPORT_SYMBOL(fc_exch_done); 99042e9a92fSRobert Love 9913a3b42bfSRobert Love /** 9923a3b42bfSRobert Love * fc_exch_resp() - Allocate a new exchange for a response frame 9933a3b42bfSRobert Love * @lport: The local port that the exchange was for 9943a3b42bfSRobert Love * @mp: The exchange manager to allocate the exchange from 9953a3b42bfSRobert Love * @fp: The response frame 9963a3b42bfSRobert Love * 99742e9a92fSRobert Love * Sets the responder ID in the frame header. 99842e9a92fSRobert Love */ 99952ff878cSVasu Dev static struct fc_exch *fc_exch_resp(struct fc_lport *lport, 100052ff878cSVasu Dev struct fc_exch_mgr *mp, 100152ff878cSVasu Dev struct fc_frame *fp) 100242e9a92fSRobert Love { 100342e9a92fSRobert Love struct fc_exch *ep; 100442e9a92fSRobert Love struct fc_frame_header *fh; 100542e9a92fSRobert Love 100652ff878cSVasu Dev ep = fc_exch_alloc(lport, fp); 100742e9a92fSRobert Love if (ep) { 100842e9a92fSRobert Love ep->class = fc_frame_class(fp); 100942e9a92fSRobert Love 101042e9a92fSRobert Love /* 101142e9a92fSRobert Love * Set EX_CTX indicating we're responding on this exchange. 101242e9a92fSRobert Love */ 101342e9a92fSRobert Love ep->f_ctl |= FC_FC_EX_CTX; /* we're responding */ 101442e9a92fSRobert Love ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not new */ 101542e9a92fSRobert Love fh = fc_frame_header_get(fp); 101642e9a92fSRobert Love ep->sid = ntoh24(fh->fh_d_id); 101742e9a92fSRobert Love ep->did = ntoh24(fh->fh_s_id); 101842e9a92fSRobert Love ep->oid = ep->did; 101942e9a92fSRobert Love 102042e9a92fSRobert Love /* 102142e9a92fSRobert Love * Allocated exchange has placed the XID in the 102242e9a92fSRobert Love * originator field. Move it to the responder field, 102342e9a92fSRobert Love * and set the originator XID from the frame. 102442e9a92fSRobert Love */ 102542e9a92fSRobert Love ep->rxid = ep->xid; 102642e9a92fSRobert Love ep->oxid = ntohs(fh->fh_ox_id); 102742e9a92fSRobert Love ep->esb_stat |= ESB_ST_RESP | ESB_ST_SEQ_INIT; 102842e9a92fSRobert Love if ((ntoh24(fh->fh_f_ctl) & FC_FC_SEQ_INIT) == 0) 102942e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 103042e9a92fSRobert Love 103142e9a92fSRobert Love fc_exch_hold(ep); /* hold for caller */ 103252ff878cSVasu Dev spin_unlock_bh(&ep->ex_lock); /* lock from fc_exch_alloc */ 103342e9a92fSRobert Love } 103442e9a92fSRobert Love return ep; 103542e9a92fSRobert Love } 103642e9a92fSRobert Love 10373a3b42bfSRobert Love /** 10383a3b42bfSRobert Love * fc_seq_lookup_recip() - Find a sequence where the other end 10393a3b42bfSRobert Love * originated the sequence 10403a3b42bfSRobert Love * @lport: The local port that the frame was sent to 10413a3b42bfSRobert Love * @mp: The Exchange Manager to lookup the exchange from 10423a3b42bfSRobert Love * @fp: The frame associated with the sequence we're looking for 10433a3b42bfSRobert Love * 104442e9a92fSRobert Love * If fc_pf_rjt_reason is FC_RJT_NONE then this function will have a hold 104542e9a92fSRobert Love * on the ep that should be released by the caller. 104642e9a92fSRobert Love */ 104752ff878cSVasu Dev static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport, 104852ff878cSVasu Dev struct fc_exch_mgr *mp, 1049b2ab99c9SRobert Love struct fc_frame *fp) 105042e9a92fSRobert Love { 105142e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 105242e9a92fSRobert Love struct fc_exch *ep = NULL; 105342e9a92fSRobert Love struct fc_seq *sp = NULL; 105442e9a92fSRobert Love enum fc_pf_rjt_reason reject = FC_RJT_NONE; 105542e9a92fSRobert Love u32 f_ctl; 105642e9a92fSRobert Love u16 xid; 105742e9a92fSRobert Love 105842e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 105942e9a92fSRobert Love WARN_ON((f_ctl & FC_FC_SEQ_CTX) != 0); 106042e9a92fSRobert Love 106142e9a92fSRobert Love /* 106242e9a92fSRobert Love * Lookup or create the exchange if we will be creating the sequence. 106342e9a92fSRobert Love */ 106442e9a92fSRobert Love if (f_ctl & FC_FC_EX_CTX) { 106542e9a92fSRobert Love xid = ntohs(fh->fh_ox_id); /* we originated exch */ 106642e9a92fSRobert Love ep = fc_exch_find(mp, xid); 106742e9a92fSRobert Love if (!ep) { 106842e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 106942e9a92fSRobert Love reject = FC_RJT_OX_ID; 107042e9a92fSRobert Love goto out; 107142e9a92fSRobert Love } 107242e9a92fSRobert Love if (ep->rxid == FC_XID_UNKNOWN) 107342e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 107442e9a92fSRobert Love else if (ep->rxid != ntohs(fh->fh_rx_id)) { 107542e9a92fSRobert Love reject = FC_RJT_OX_ID; 107642e9a92fSRobert Love goto rel; 107742e9a92fSRobert Love } 107842e9a92fSRobert Love } else { 107942e9a92fSRobert Love xid = ntohs(fh->fh_rx_id); /* we are the responder */ 108042e9a92fSRobert Love 108142e9a92fSRobert Love /* 108242e9a92fSRobert Love * Special case for MDS issuing an ELS TEST with a 108342e9a92fSRobert Love * bad rxid of 0. 108442e9a92fSRobert Love * XXX take this out once we do the proper reject. 108542e9a92fSRobert Love */ 108642e9a92fSRobert Love if (xid == 0 && fh->fh_r_ctl == FC_RCTL_ELS_REQ && 108742e9a92fSRobert Love fc_frame_payload_op(fp) == ELS_TEST) { 108842e9a92fSRobert Love fh->fh_rx_id = htons(FC_XID_UNKNOWN); 108942e9a92fSRobert Love xid = FC_XID_UNKNOWN; 109042e9a92fSRobert Love } 109142e9a92fSRobert Love 109242e9a92fSRobert Love /* 109342e9a92fSRobert Love * new sequence - find the exchange 109442e9a92fSRobert Love */ 109542e9a92fSRobert Love ep = fc_exch_find(mp, xid); 109642e9a92fSRobert Love if ((f_ctl & FC_FC_FIRST_SEQ) && fc_sof_is_init(fr_sof(fp))) { 109742e9a92fSRobert Love if (ep) { 109842e9a92fSRobert Love atomic_inc(&mp->stats.xid_busy); 109942e9a92fSRobert Love reject = FC_RJT_RX_ID; 110042e9a92fSRobert Love goto rel; 110142e9a92fSRobert Love } 110252ff878cSVasu Dev ep = fc_exch_resp(lport, mp, fp); 110342e9a92fSRobert Love if (!ep) { 110442e9a92fSRobert Love reject = FC_RJT_EXCH_EST; /* XXX */ 110542e9a92fSRobert Love goto out; 110642e9a92fSRobert Love } 110742e9a92fSRobert Love xid = ep->xid; /* get our XID */ 110842e9a92fSRobert Love } else if (!ep) { 110942e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 111042e9a92fSRobert Love reject = FC_RJT_RX_ID; /* XID not found */ 111142e9a92fSRobert Love goto out; 111242e9a92fSRobert Love } 111342e9a92fSRobert Love } 111442e9a92fSRobert Love 11155d73bea2SBart Van Assche spin_lock_bh(&ep->ex_lock); 111642e9a92fSRobert Love /* 111742e9a92fSRobert Love * At this point, we have the exchange held. 111842e9a92fSRobert Love * Find or create the sequence. 111942e9a92fSRobert Love */ 112042e9a92fSRobert Love if (fc_sof_is_init(fr_sof(fp))) { 1121a104c844SVasu Dev sp = &ep->seq; 112242e9a92fSRobert Love sp->ssb_stat |= SSB_ST_RESP; 1123b3667f91SJoe Eykholt sp->id = fh->fh_seq_id; 112442e9a92fSRobert Love } else { 112542e9a92fSRobert Love sp = &ep->seq; 112642e9a92fSRobert Love if (sp->id != fh->fh_seq_id) { 112742e9a92fSRobert Love atomic_inc(&mp->stats.seq_not_found); 1128e3e65c69SKiran Patil if (f_ctl & FC_FC_END_SEQ) { 1129e3e65c69SKiran Patil /* 1130e3e65c69SKiran Patil * Update sequence_id based on incoming last 1131e3e65c69SKiran Patil * frame of sequence exchange. This is needed 11321bd49b48SVasu Dev * for FC target where DDP has been used 1133e3e65c69SKiran Patil * on target where, stack is indicated only 1134e3e65c69SKiran Patil * about last frame's (payload _header) header. 1135e3e65c69SKiran Patil * Whereas "seq_id" which is part of 1136e3e65c69SKiran Patil * frame_header is allocated by initiator 1137e3e65c69SKiran Patil * which is totally different from "seq_id" 1138e3e65c69SKiran Patil * allocated when XFER_RDY was sent by target. 1139e3e65c69SKiran Patil * To avoid false -ve which results into not 1140e3e65c69SKiran Patil * sending RSP, hence write request on other 1141e3e65c69SKiran Patil * end never finishes. 1142e3e65c69SKiran Patil */ 1143e3e65c69SKiran Patil sp->ssb_stat |= SSB_ST_RESP; 1144e3e65c69SKiran Patil sp->id = fh->fh_seq_id; 1145e3e65c69SKiran Patil } else { 11465d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 11475d73bea2SBart Van Assche 1148e3e65c69SKiran Patil /* sequence/exch should exist */ 1149e3e65c69SKiran Patil reject = FC_RJT_SEQ_ID; 115042e9a92fSRobert Love goto rel; 115142e9a92fSRobert Love } 115242e9a92fSRobert Love } 1153e3e65c69SKiran Patil } 115442e9a92fSRobert Love WARN_ON(ep != fc_seq_exch(sp)); 115542e9a92fSRobert Love 115642e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_INIT) 115742e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 11585d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 115942e9a92fSRobert Love 116042e9a92fSRobert Love fr_seq(fp) = sp; 116142e9a92fSRobert Love out: 116242e9a92fSRobert Love return reject; 116342e9a92fSRobert Love rel: 116442e9a92fSRobert Love fc_exch_done(&ep->seq); 116542e9a92fSRobert Love fc_exch_release(ep); /* hold from fc_exch_find/fc_exch_resp */ 116642e9a92fSRobert Love return reject; 116742e9a92fSRobert Love } 116842e9a92fSRobert Love 11693a3b42bfSRobert Love /** 11703a3b42bfSRobert Love * fc_seq_lookup_orig() - Find a sequence where this end 11713a3b42bfSRobert Love * originated the sequence 11723a3b42bfSRobert Love * @mp: The Exchange Manager to lookup the exchange from 11733a3b42bfSRobert Love * @fp: The frame associated with the sequence we're looking for 11743a3b42bfSRobert Love * 117542e9a92fSRobert Love * Does not hold the sequence for the caller. 117642e9a92fSRobert Love */ 117742e9a92fSRobert Love static struct fc_seq *fc_seq_lookup_orig(struct fc_exch_mgr *mp, 117842e9a92fSRobert Love struct fc_frame *fp) 117942e9a92fSRobert Love { 118042e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 118142e9a92fSRobert Love struct fc_exch *ep; 118242e9a92fSRobert Love struct fc_seq *sp = NULL; 118342e9a92fSRobert Love u32 f_ctl; 118442e9a92fSRobert Love u16 xid; 118542e9a92fSRobert Love 118642e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 118742e9a92fSRobert Love WARN_ON((f_ctl & FC_FC_SEQ_CTX) != FC_FC_SEQ_CTX); 118842e9a92fSRobert Love xid = ntohs((f_ctl & FC_FC_EX_CTX) ? fh->fh_ox_id : fh->fh_rx_id); 118942e9a92fSRobert Love ep = fc_exch_find(mp, xid); 119042e9a92fSRobert Love if (!ep) 119142e9a92fSRobert Love return NULL; 119242e9a92fSRobert Love if (ep->seq.id == fh->fh_seq_id) { 119342e9a92fSRobert Love /* 119442e9a92fSRobert Love * Save the RX_ID if we didn't previously know it. 119542e9a92fSRobert Love */ 119642e9a92fSRobert Love sp = &ep->seq; 119742e9a92fSRobert Love if ((f_ctl & FC_FC_EX_CTX) != 0 && 119842e9a92fSRobert Love ep->rxid == FC_XID_UNKNOWN) { 119942e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 120042e9a92fSRobert Love } 120142e9a92fSRobert Love } 120242e9a92fSRobert Love fc_exch_release(ep); 120342e9a92fSRobert Love return sp; 120442e9a92fSRobert Love } 120542e9a92fSRobert Love 12063a3b42bfSRobert Love /** 12073a3b42bfSRobert Love * fc_exch_set_addr() - Set the source and destination IDs for an exchange 12083a3b42bfSRobert Love * @ep: The exchange to set the addresses for 12093a3b42bfSRobert Love * @orig_id: The originator's ID 12103a3b42bfSRobert Love * @resp_id: The responder's ID 12113a3b42bfSRobert Love * 121242e9a92fSRobert Love * Note this must be done before the first sequence of the exchange is sent. 121342e9a92fSRobert Love */ 121442e9a92fSRobert Love static void fc_exch_set_addr(struct fc_exch *ep, 121542e9a92fSRobert Love u32 orig_id, u32 resp_id) 121642e9a92fSRobert Love { 121742e9a92fSRobert Love ep->oid = orig_id; 121842e9a92fSRobert Love if (ep->esb_stat & ESB_ST_RESP) { 121942e9a92fSRobert Love ep->sid = resp_id; 122042e9a92fSRobert Love ep->did = orig_id; 122142e9a92fSRobert Love } else { 122242e9a92fSRobert Love ep->sid = orig_id; 122342e9a92fSRobert Love ep->did = resp_id; 122442e9a92fSRobert Love } 122542e9a92fSRobert Love } 122642e9a92fSRobert Love 12271a7b75aeSRobert Love /** 122825985edcSLucas De Marchi * fc_seq_els_rsp_send() - Send an ELS response using information from 12293a3b42bfSRobert Love * the existing sequence/exchange. 123092261156SJoe Eykholt * @fp: The received frame 12313a3b42bfSRobert Love * @els_cmd: The ELS command to be sent 12323a3b42bfSRobert Love * @els_data: The ELS data to be sent 123392261156SJoe Eykholt * 123492261156SJoe Eykholt * The received frame is not freed. 123542e9a92fSRobert Love */ 12367ab24dd1SHannes Reinecke void fc_seq_els_rsp_send(struct fc_frame *fp, enum fc_els_cmd els_cmd, 123742e9a92fSRobert Love struct fc_seq_els_data *els_data) 123842e9a92fSRobert Love { 123942e9a92fSRobert Love switch (els_cmd) { 124042e9a92fSRobert Love case ELS_LS_RJT: 124192261156SJoe Eykholt fc_seq_ls_rjt(fp, els_data->reason, els_data->explan); 124242e9a92fSRobert Love break; 124342e9a92fSRobert Love case ELS_LS_ACC: 124492261156SJoe Eykholt fc_seq_ls_acc(fp); 124542e9a92fSRobert Love break; 124642e9a92fSRobert Love case ELS_RRQ: 124792261156SJoe Eykholt fc_exch_els_rrq(fp); 124842e9a92fSRobert Love break; 124942e9a92fSRobert Love case ELS_REC: 125092261156SJoe Eykholt fc_exch_els_rec(fp); 125142e9a92fSRobert Love break; 125242e9a92fSRobert Love default: 125392261156SJoe Eykholt FC_LPORT_DBG(fr_dev(fp), "Invalid ELS CMD:%x\n", els_cmd); 125442e9a92fSRobert Love } 125542e9a92fSRobert Love } 12567ab24dd1SHannes Reinecke EXPORT_SYMBOL_GPL(fc_seq_els_rsp_send); 125742e9a92fSRobert Love 12583a3b42bfSRobert Love /** 12593a3b42bfSRobert Love * fc_seq_send_last() - Send a sequence that is the last in the exchange 12603a3b42bfSRobert Love * @sp: The sequence that is to be sent 12613a3b42bfSRobert Love * @fp: The frame that will be sent on the sequence 12623a3b42bfSRobert Love * @rctl: The R_CTL information to be sent 12633a3b42bfSRobert Love * @fh_type: The frame header type 126442e9a92fSRobert Love */ 126542e9a92fSRobert Love static void fc_seq_send_last(struct fc_seq *sp, struct fc_frame *fp, 126642e9a92fSRobert Love enum fc_rctl rctl, enum fc_fh_type fh_type) 126742e9a92fSRobert Love { 126842e9a92fSRobert Love u32 f_ctl; 126942e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 127042e9a92fSRobert Love 127142e9a92fSRobert Love f_ctl = FC_FC_LAST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT; 127242e9a92fSRobert Love f_ctl |= ep->f_ctl; 127342e9a92fSRobert Love fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0); 1274fb00cc23SNeil Horman fc_seq_send_locked(ep->lp, sp, fp); 127542e9a92fSRobert Love } 127642e9a92fSRobert Love 12773a3b42bfSRobert Love /** 12783a3b42bfSRobert Love * fc_seq_send_ack() - Send an acknowledgement that we've received a frame 12793a3b42bfSRobert Love * @sp: The sequence to send the ACK on 12803a3b42bfSRobert Love * @rx_fp: The received frame that is being acknoledged 12813a3b42bfSRobert Love * 128242e9a92fSRobert Love * Send ACK_1 (or equiv.) indicating we received something. 128342e9a92fSRobert Love */ 128442e9a92fSRobert Love static void fc_seq_send_ack(struct fc_seq *sp, const struct fc_frame *rx_fp) 128542e9a92fSRobert Love { 128642e9a92fSRobert Love struct fc_frame *fp; 128742e9a92fSRobert Love struct fc_frame_header *rx_fh; 128842e9a92fSRobert Love struct fc_frame_header *fh; 128942e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 12903a3b42bfSRobert Love struct fc_lport *lport = ep->lp; 129142e9a92fSRobert Love unsigned int f_ctl; 129242e9a92fSRobert Love 129342e9a92fSRobert Love /* 129442e9a92fSRobert Love * Don't send ACKs for class 3. 129542e9a92fSRobert Love */ 129642e9a92fSRobert Love if (fc_sof_needs_ack(fr_sof(rx_fp))) { 12973a3b42bfSRobert Love fp = fc_frame_alloc(lport, 0); 129857d3ec7eSHannes Reinecke if (!fp) { 129957d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop ACK request, out of memory\n"); 130042e9a92fSRobert Love return; 130157d3ec7eSHannes Reinecke } 130242e9a92fSRobert Love 130342e9a92fSRobert Love fh = fc_frame_header_get(fp); 130442e9a92fSRobert Love fh->fh_r_ctl = FC_RCTL_ACK_1; 130542e9a92fSRobert Love fh->fh_type = FC_TYPE_BLS; 130642e9a92fSRobert Love 130742e9a92fSRobert Love /* 130842e9a92fSRobert Love * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). 130942e9a92fSRobert Love * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. 131042e9a92fSRobert Love * Bits 9-8 are meaningful (retransmitted or unidirectional). 131142e9a92fSRobert Love * Last ACK uses bits 7-6 (continue sequence), 131242e9a92fSRobert Love * bits 5-4 are meaningful (what kind of ACK to use). 131342e9a92fSRobert Love */ 131442e9a92fSRobert Love rx_fh = fc_frame_header_get(rx_fp); 131542e9a92fSRobert Love f_ctl = ntoh24(rx_fh->fh_f_ctl); 131642e9a92fSRobert Love f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | 131742e9a92fSRobert Love FC_FC_FIRST_SEQ | FC_FC_LAST_SEQ | 131842e9a92fSRobert Love FC_FC_END_SEQ | FC_FC_END_CONN | FC_FC_SEQ_INIT | 131942e9a92fSRobert Love FC_FC_RETX_SEQ | FC_FC_UNI_TX; 132042e9a92fSRobert Love f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; 132142e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl); 132242e9a92fSRobert Love 132342e9a92fSRobert Love fc_exch_setup_hdr(ep, fp, f_ctl); 132442e9a92fSRobert Love fh->fh_seq_id = rx_fh->fh_seq_id; 132542e9a92fSRobert Love fh->fh_seq_cnt = rx_fh->fh_seq_cnt; 132642e9a92fSRobert Love fh->fh_parm_offset = htonl(1); /* ack single frame */ 132742e9a92fSRobert Love 132842e9a92fSRobert Love fr_sof(fp) = fr_sof(rx_fp); 132942e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) 133042e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 133142e9a92fSRobert Love else 133242e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 133342e9a92fSRobert Love 13343a3b42bfSRobert Love lport->tt.frame_send(lport, fp); 133542e9a92fSRobert Love } 133642e9a92fSRobert Love } 133742e9a92fSRobert Love 13383a3b42bfSRobert Love /** 13393a3b42bfSRobert Love * fc_exch_send_ba_rjt() - Send BLS Reject 13403a3b42bfSRobert Love * @rx_fp: The frame being rejected 13413a3b42bfSRobert Love * @reason: The reason the frame is being rejected 134225985edcSLucas De Marchi * @explan: The explanation for the rejection 13433a3b42bfSRobert Love * 134442e9a92fSRobert Love * This is for rejecting BA_ABTS only. 134542e9a92fSRobert Love */ 1346b2ab99c9SRobert Love static void fc_exch_send_ba_rjt(struct fc_frame *rx_fp, 1347b2ab99c9SRobert Love enum fc_ba_rjt_reason reason, 134842e9a92fSRobert Love enum fc_ba_rjt_explan explan) 134942e9a92fSRobert Love { 135042e9a92fSRobert Love struct fc_frame *fp; 135142e9a92fSRobert Love struct fc_frame_header *rx_fh; 135242e9a92fSRobert Love struct fc_frame_header *fh; 135342e9a92fSRobert Love struct fc_ba_rjt *rp; 135457d3ec7eSHannes Reinecke struct fc_seq *sp; 13553a3b42bfSRobert Love struct fc_lport *lport; 135642e9a92fSRobert Love unsigned int f_ctl; 135742e9a92fSRobert Love 13583a3b42bfSRobert Love lport = fr_dev(rx_fp); 135957d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 13603a3b42bfSRobert Love fp = fc_frame_alloc(lport, sizeof(*rp)); 136157d3ec7eSHannes Reinecke if (!fp) { 136257d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 136357d3ec7eSHannes Reinecke "Drop BA_RJT request, out of memory\n"); 136442e9a92fSRobert Love return; 136557d3ec7eSHannes Reinecke } 136642e9a92fSRobert Love fh = fc_frame_header_get(fp); 136742e9a92fSRobert Love rx_fh = fc_frame_header_get(rx_fp); 136842e9a92fSRobert Love 136942e9a92fSRobert Love memset(fh, 0, sizeof(*fh) + sizeof(*rp)); 137042e9a92fSRobert Love 137142e9a92fSRobert Love rp = fc_frame_payload_get(fp, sizeof(*rp)); 137242e9a92fSRobert Love rp->br_reason = reason; 137342e9a92fSRobert Love rp->br_explan = explan; 137442e9a92fSRobert Love 137542e9a92fSRobert Love /* 137642e9a92fSRobert Love * seq_id, cs_ctl, df_ctl and param/offset are zero. 137742e9a92fSRobert Love */ 137842e9a92fSRobert Love memcpy(fh->fh_s_id, rx_fh->fh_d_id, 3); 137942e9a92fSRobert Love memcpy(fh->fh_d_id, rx_fh->fh_s_id, 3); 13801d490ce3SJoe Eykholt fh->fh_ox_id = rx_fh->fh_ox_id; 13811d490ce3SJoe Eykholt fh->fh_rx_id = rx_fh->fh_rx_id; 138242e9a92fSRobert Love fh->fh_seq_cnt = rx_fh->fh_seq_cnt; 138342e9a92fSRobert Love fh->fh_r_ctl = FC_RCTL_BA_RJT; 138442e9a92fSRobert Love fh->fh_type = FC_TYPE_BLS; 138542e9a92fSRobert Love 138642e9a92fSRobert Love /* 138742e9a92fSRobert Love * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). 138842e9a92fSRobert Love * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. 138942e9a92fSRobert Love * Bits 9-8 are meaningful (retransmitted or unidirectional). 139042e9a92fSRobert Love * Last ACK uses bits 7-6 (continue sequence), 139142e9a92fSRobert Love * bits 5-4 are meaningful (what kind of ACK to use). 139242e9a92fSRobert Love * Always set LAST_SEQ, END_SEQ. 139342e9a92fSRobert Love */ 139442e9a92fSRobert Love f_ctl = ntoh24(rx_fh->fh_f_ctl); 139542e9a92fSRobert Love f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | 139642e9a92fSRobert Love FC_FC_END_CONN | FC_FC_SEQ_INIT | 139742e9a92fSRobert Love FC_FC_RETX_SEQ | FC_FC_UNI_TX; 139842e9a92fSRobert Love f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; 139942e9a92fSRobert Love f_ctl |= FC_FC_LAST_SEQ | FC_FC_END_SEQ; 140042e9a92fSRobert Love f_ctl &= ~FC_FC_FIRST_SEQ; 140142e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl); 140242e9a92fSRobert Love 140342e9a92fSRobert Love fr_sof(fp) = fc_sof_class(fr_sof(rx_fp)); 140442e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 140542e9a92fSRobert Love if (fc_sof_needs_ack(fr_sof(fp))) 140642e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 140742e9a92fSRobert Love 14083a3b42bfSRobert Love lport->tt.frame_send(lport, fp); 140942e9a92fSRobert Love } 141042e9a92fSRobert Love 14113a3b42bfSRobert Love /** 14123a3b42bfSRobert Love * fc_exch_recv_abts() - Handle an incoming ABTS 14133a3b42bfSRobert Love * @ep: The exchange the abort was on 14143a3b42bfSRobert Love * @rx_fp: The ABTS frame 14153a3b42bfSRobert Love * 14163a3b42bfSRobert Love * This would be for target mode usually, but could be due to lost 14173a3b42bfSRobert Love * FCP transfer ready, confirm or RRQ. We always handle this as an 14183a3b42bfSRobert Love * exchange abort, ignoring the parameter. 141942e9a92fSRobert Love */ 142042e9a92fSRobert Love static void fc_exch_recv_abts(struct fc_exch *ep, struct fc_frame *rx_fp) 142142e9a92fSRobert Love { 142242e9a92fSRobert Love struct fc_frame *fp; 142342e9a92fSRobert Love struct fc_ba_acc *ap; 142442e9a92fSRobert Love struct fc_frame_header *fh; 142542e9a92fSRobert Love struct fc_seq *sp; 142642e9a92fSRobert Love 142742e9a92fSRobert Love if (!ep) 142842e9a92fSRobert Love goto reject; 1429f95b35cfSBart Van Assche 143057d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: ABTS received\n"); 1431f95b35cfSBart Van Assche fp = fc_frame_alloc(ep->lp, sizeof(*ap)); 143257d3ec7eSHannes Reinecke if (!fp) { 143357d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop ABTS request, out of memory\n"); 1434f95b35cfSBart Van Assche goto free; 143557d3ec7eSHannes Reinecke } 1436f95b35cfSBart Van Assche 143742e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 143842e9a92fSRobert Love if (ep->esb_stat & ESB_ST_COMPLETE) { 143942e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 144057d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: ABTS rejected, exchange complete\n"); 1441f95b35cfSBart Van Assche fc_frame_free(fp); 144242e9a92fSRobert Love goto reject; 144342e9a92fSRobert Love } 1444cae7b6ddSBart Van Assche if (!(ep->esb_stat & ESB_ST_REC_QUAL)) { 1445cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_REC_QUAL; 144642e9a92fSRobert Love fc_exch_hold(ep); /* hold for REC_QUAL */ 1447cae7b6ddSBart Van Assche } 144842e9a92fSRobert Love fc_exch_timer_set_locked(ep, ep->r_a_tov); 144942e9a92fSRobert Love fh = fc_frame_header_get(fp); 145042e9a92fSRobert Love ap = fc_frame_payload_get(fp, sizeof(*ap)); 145142e9a92fSRobert Love memset(ap, 0, sizeof(*ap)); 145242e9a92fSRobert Love sp = &ep->seq; 145342e9a92fSRobert Love ap->ba_high_seq_cnt = htons(0xffff); 145442e9a92fSRobert Love if (sp->ssb_stat & SSB_ST_RESP) { 145542e9a92fSRobert Love ap->ba_seq_id = sp->id; 145642e9a92fSRobert Love ap->ba_seq_id_val = FC_BA_SEQ_ID_VAL; 145742e9a92fSRobert Love ap->ba_high_seq_cnt = fh->fh_seq_cnt; 145842e9a92fSRobert Love ap->ba_low_seq_cnt = htons(sp->cnt); 145942e9a92fSRobert Love } 1460a7e84f2bSVasu Dev sp = fc_seq_start_next_locked(sp); 146142e9a92fSRobert Love fc_seq_send_last(sp, fp, FC_RCTL_BA_ACC, FC_TYPE_BLS); 1462cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_ABNORMAL; 1463fb00cc23SNeil Horman spin_unlock_bh(&ep->ex_lock); 1464f95b35cfSBart Van Assche 1465f95b35cfSBart Van Assche free: 146642e9a92fSRobert Love fc_frame_free(rx_fp); 146742e9a92fSRobert Love return; 146842e9a92fSRobert Love 146942e9a92fSRobert Love reject: 147042e9a92fSRobert Love fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID); 1471f95b35cfSBart Van Assche goto free; 147242e9a92fSRobert Love } 147342e9a92fSRobert Love 14743a3b42bfSRobert Love /** 1475239e8104SJoe Eykholt * fc_seq_assign() - Assign exchange and sequence for incoming request 1476239e8104SJoe Eykholt * @lport: The local port that received the request 1477239e8104SJoe Eykholt * @fp: The request frame 1478239e8104SJoe Eykholt * 1479239e8104SJoe Eykholt * On success, the sequence pointer will be returned and also in fr_seq(@fp). 148062bdb645SJoe Eykholt * A reference will be held on the exchange/sequence for the caller, which 148162bdb645SJoe Eykholt * must call fc_seq_release(). 1482239e8104SJoe Eykholt */ 148396d564e2SHannes Reinecke struct fc_seq *fc_seq_assign(struct fc_lport *lport, struct fc_frame *fp) 1484239e8104SJoe Eykholt { 1485239e8104SJoe Eykholt struct fc_exch_mgr_anchor *ema; 1486239e8104SJoe Eykholt 1487239e8104SJoe Eykholt WARN_ON(lport != fr_dev(fp)); 1488239e8104SJoe Eykholt WARN_ON(fr_seq(fp)); 1489239e8104SJoe Eykholt fr_seq(fp) = NULL; 1490239e8104SJoe Eykholt 1491239e8104SJoe Eykholt list_for_each_entry(ema, &lport->ema_list, ema_list) 1492239e8104SJoe Eykholt if ((!ema->match || ema->match(fp)) && 1493530994d6SHillf Danton fc_seq_lookup_recip(lport, ema->mp, fp) == FC_RJT_NONE) 1494239e8104SJoe Eykholt break; 1495239e8104SJoe Eykholt return fr_seq(fp); 1496239e8104SJoe Eykholt } 149796d564e2SHannes Reinecke EXPORT_SYMBOL(fc_seq_assign); 1498239e8104SJoe Eykholt 1499239e8104SJoe Eykholt /** 150062bdb645SJoe Eykholt * fc_seq_release() - Release the hold 150162bdb645SJoe Eykholt * @sp: The sequence. 150262bdb645SJoe Eykholt */ 15039625cc48SHannes Reinecke void fc_seq_release(struct fc_seq *sp) 150462bdb645SJoe Eykholt { 150562bdb645SJoe Eykholt fc_exch_release(fc_seq_exch(sp)); 150662bdb645SJoe Eykholt } 15079625cc48SHannes Reinecke EXPORT_SYMBOL(fc_seq_release); 150862bdb645SJoe Eykholt 150962bdb645SJoe Eykholt /** 151092261156SJoe Eykholt * fc_exch_recv_req() - Handler for an incoming request 15113a3b42bfSRobert Love * @lport: The local port that received the request 15123a3b42bfSRobert Love * @mp: The EM that the exchange is on 15133a3b42bfSRobert Love * @fp: The request frame 151492261156SJoe Eykholt * 151592261156SJoe Eykholt * This is used when the other end is originating the exchange 151692261156SJoe Eykholt * and the sequence. 151742e9a92fSRobert Love */ 15183a3b42bfSRobert Love static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp, 151942e9a92fSRobert Love struct fc_frame *fp) 152042e9a92fSRobert Love { 152142e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 152242e9a92fSRobert Love struct fc_seq *sp = NULL; 152342e9a92fSRobert Love struct fc_exch *ep = NULL; 152442e9a92fSRobert Love enum fc_pf_rjt_reason reject; 152542e9a92fSRobert Love 1526174e1ebfSChris Leech /* We can have the wrong fc_lport at this point with NPIV, which is a 1527174e1ebfSChris Leech * problem now that we know a new exchange needs to be allocated 1528174e1ebfSChris Leech */ 15293a3b42bfSRobert Love lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id)); 15303a3b42bfSRobert Love if (!lport) { 1531174e1ebfSChris Leech fc_frame_free(fp); 1532174e1ebfSChris Leech return; 1533174e1ebfSChris Leech } 153492261156SJoe Eykholt fr_dev(fp) = lport; 1535174e1ebfSChris Leech 153692261156SJoe Eykholt BUG_ON(fr_seq(fp)); /* XXX remove later */ 153792261156SJoe Eykholt 153892261156SJoe Eykholt /* 153992261156SJoe Eykholt * If the RX_ID is 0xffff, don't allocate an exchange. 154092261156SJoe Eykholt * The upper-level protocol may request one later, if needed. 154192261156SJoe Eykholt */ 154292261156SJoe Eykholt if (fh->fh_rx_id == htons(FC_XID_UNKNOWN)) 1543c5cb444cSHannes Reinecke return fc_lport_recv(lport, fp); 154492261156SJoe Eykholt 15453a3b42bfSRobert Love reject = fc_seq_lookup_recip(lport, mp, fp); 154642e9a92fSRobert Love if (reject == FC_RJT_NONE) { 154742e9a92fSRobert Love sp = fr_seq(fp); /* sequence will be held */ 154842e9a92fSRobert Love ep = fc_seq_exch(sp); 154942e9a92fSRobert Love fc_seq_send_ack(sp, fp); 1550f60e12e9SJoe Eykholt ep->encaps = fr_encaps(fp); 155142e9a92fSRobert Love 155242e9a92fSRobert Love /* 155342e9a92fSRobert Love * Call the receive function. 155442e9a92fSRobert Love * 155542e9a92fSRobert Love * The receive function may allocate a new sequence 155642e9a92fSRobert Love * over the old one, so we shouldn't change the 155742e9a92fSRobert Love * sequence after this. 155842e9a92fSRobert Love * 155942e9a92fSRobert Love * The frame will be freed by the receive function. 156042e9a92fSRobert Love * If new exch resp handler is valid then call that 156142e9a92fSRobert Love * first. 156242e9a92fSRobert Love */ 15637030fd62SBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1564c5cb444cSHannes Reinecke fc_lport_recv(lport, fp); 156542e9a92fSRobert Love fc_exch_release(ep); /* release from lookup */ 156642e9a92fSRobert Love } else { 15673a3b42bfSRobert Love FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n", 15683a3b42bfSRobert Love reject); 156942e9a92fSRobert Love fc_frame_free(fp); 157042e9a92fSRobert Love } 157142e9a92fSRobert Love } 157242e9a92fSRobert Love 15733a3b42bfSRobert Love /** 15743a3b42bfSRobert Love * fc_exch_recv_seq_resp() - Handler for an incoming response where the other 15753a3b42bfSRobert Love * end is the originator of the sequence that is a 15763a3b42bfSRobert Love * response to our initial exchange 15773a3b42bfSRobert Love * @mp: The EM that the exchange is on 15783a3b42bfSRobert Love * @fp: The response frame 157942e9a92fSRobert Love */ 158042e9a92fSRobert Love static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) 158142e9a92fSRobert Love { 158242e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 158342e9a92fSRobert Love struct fc_seq *sp; 158442e9a92fSRobert Love struct fc_exch *ep; 158542e9a92fSRobert Love enum fc_sof sof; 158642e9a92fSRobert Love u32 f_ctl; 158742e9a92fSRobert Love int rc; 158842e9a92fSRobert Love 158942e9a92fSRobert Love ep = fc_exch_find(mp, ntohs(fh->fh_ox_id)); 159042e9a92fSRobert Love if (!ep) { 159142e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 159242e9a92fSRobert Love goto out; 159342e9a92fSRobert Love } 159430121d14SSteve Ma if (ep->esb_stat & ESB_ST_COMPLETE) { 159530121d14SSteve Ma atomic_inc(&mp->stats.xid_not_found); 15968236554aSHillf Danton goto rel; 159730121d14SSteve Ma } 159842e9a92fSRobert Love if (ep->rxid == FC_XID_UNKNOWN) 159942e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 160042e9a92fSRobert Love if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) { 160142e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 160242e9a92fSRobert Love goto rel; 160342e9a92fSRobert Love } 160442e9a92fSRobert Love if (ep->did != ntoh24(fh->fh_s_id) && 160542e9a92fSRobert Love ep->did != FC_FID_FLOGI) { 160642e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 160742e9a92fSRobert Love goto rel; 160842e9a92fSRobert Love } 160942e9a92fSRobert Love sof = fr_sof(fp); 161042e9a92fSRobert Love sp = &ep->seq; 1611b3667f91SJoe Eykholt if (fc_sof_is_init(sof)) { 1612a104c844SVasu Dev sp->ssb_stat |= SSB_ST_RESP; 1613b3667f91SJoe Eykholt sp->id = fh->fh_seq_id; 161442e9a92fSRobert Love } 1615a104c844SVasu Dev 161642e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 161742e9a92fSRobert Love fr_seq(fp) = sp; 16185d73bea2SBart Van Assche 16195d73bea2SBart Van Assche spin_lock_bh(&ep->ex_lock); 162042e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_INIT) 162142e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 16225d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 162342e9a92fSRobert Love 162442e9a92fSRobert Love if (fc_sof_needs_ack(sof)) 162542e9a92fSRobert Love fc_seq_send_ack(sp, fp); 162642e9a92fSRobert Love 162742e9a92fSRobert Love if (fh->fh_type != FC_TYPE_FCP && fr_eof(fp) == FC_EOF_T && 162842e9a92fSRobert Love (f_ctl & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) == 162942e9a92fSRobert Love (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) { 163042e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 163142e9a92fSRobert Love rc = fc_exch_done_locked(ep); 163242e9a92fSRobert Love WARN_ON(fc_seq_exch(sp) != ep); 163342e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 163442e9a92fSRobert Love if (!rc) 1635b2f0091fSVasu Dev fc_exch_delete(ep); 163642e9a92fSRobert Love } 163742e9a92fSRobert Love 163842e9a92fSRobert Love /* 163942e9a92fSRobert Love * Call the receive function. 164042e9a92fSRobert Love * The sequence is held (has a refcnt) for us, 164142e9a92fSRobert Love * but not for the receive function. 164242e9a92fSRobert Love * 164342e9a92fSRobert Love * The receive function may allocate a new sequence 164442e9a92fSRobert Love * over the old one, so we shouldn't change the 164542e9a92fSRobert Love * sequence after this. 164642e9a92fSRobert Love * 164742e9a92fSRobert Love * The frame will be freed by the receive function. 164842e9a92fSRobert Love * If new exch resp handler is valid then call that 164942e9a92fSRobert Love * first. 165042e9a92fSRobert Love */ 1651f6979adeSBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1652f6979adeSBart Van Assche fc_frame_free(fp); 16537030fd62SBart Van Assche 165442e9a92fSRobert Love fc_exch_release(ep); 165542e9a92fSRobert Love return; 165642e9a92fSRobert Love rel: 165742e9a92fSRobert Love fc_exch_release(ep); 165842e9a92fSRobert Love out: 165942e9a92fSRobert Love fc_frame_free(fp); 166042e9a92fSRobert Love } 166142e9a92fSRobert Love 16623a3b42bfSRobert Love /** 16633a3b42bfSRobert Love * fc_exch_recv_resp() - Handler for a sequence where other end is 16643a3b42bfSRobert Love * responding to our sequence 16653a3b42bfSRobert Love * @mp: The EM that the exchange is on 16663a3b42bfSRobert Love * @fp: The response frame 166742e9a92fSRobert Love */ 166842e9a92fSRobert Love static void fc_exch_recv_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) 166942e9a92fSRobert Love { 167042e9a92fSRobert Love struct fc_seq *sp; 167142e9a92fSRobert Love 167242e9a92fSRobert Love sp = fc_seq_lookup_orig(mp, fp); /* doesn't hold sequence */ 1673d459b7eaSRobert Love 1674d459b7eaSRobert Love if (!sp) 167542e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 1676d459b7eaSRobert Love else 167742e9a92fSRobert Love atomic_inc(&mp->stats.non_bls_resp); 1678d459b7eaSRobert Love 167942e9a92fSRobert Love fc_frame_free(fp); 168042e9a92fSRobert Love } 168142e9a92fSRobert Love 16823a3b42bfSRobert Love /** 16833a3b42bfSRobert Love * fc_exch_abts_resp() - Handler for a response to an ABT 16843a3b42bfSRobert Love * @ep: The exchange that the frame is on 16853a3b42bfSRobert Love * @fp: The response frame 16863a3b42bfSRobert Love * 16873a3b42bfSRobert Love * This response would be to an ABTS cancelling an exchange or sequence. 16883a3b42bfSRobert Love * The response can be either BA_ACC or BA_RJT 168942e9a92fSRobert Love */ 169042e9a92fSRobert Love static void fc_exch_abts_resp(struct fc_exch *ep, struct fc_frame *fp) 169142e9a92fSRobert Love { 169242e9a92fSRobert Love struct fc_frame_header *fh; 169342e9a92fSRobert Love struct fc_ba_acc *ap; 169442e9a92fSRobert Love struct fc_seq *sp; 169542e9a92fSRobert Love u16 low; 169642e9a92fSRobert Love u16 high; 169742e9a92fSRobert Love int rc = 1, has_rec = 0; 169842e9a92fSRobert Love 169942e9a92fSRobert Love fh = fc_frame_header_get(fp); 17007414705eSRobert Love FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl, 17017414705eSRobert Love fc_exch_rctl_name(fh->fh_r_ctl)); 170242e9a92fSRobert Love 1703b29a4f30SVasu Dev if (cancel_delayed_work_sync(&ep->timeout_work)) { 17043a292605SRobert Love FC_EXCH_DBG(ep, "Exchange timer canceled due to ABTS response\n"); 170542e9a92fSRobert Love fc_exch_release(ep); /* release from pending timer hold */ 1706b29a4f30SVasu Dev } 170742e9a92fSRobert Love 170842e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 170942e9a92fSRobert Love switch (fh->fh_r_ctl) { 171042e9a92fSRobert Love case FC_RCTL_BA_ACC: 171142e9a92fSRobert Love ap = fc_frame_payload_get(fp, sizeof(*ap)); 171242e9a92fSRobert Love if (!ap) 171342e9a92fSRobert Love break; 171442e9a92fSRobert Love 171542e9a92fSRobert Love /* 171642e9a92fSRobert Love * Decide whether to establish a Recovery Qualifier. 171742e9a92fSRobert Love * We do this if there is a non-empty SEQ_CNT range and 171842e9a92fSRobert Love * SEQ_ID is the same as the one we aborted. 171942e9a92fSRobert Love */ 172042e9a92fSRobert Love low = ntohs(ap->ba_low_seq_cnt); 172142e9a92fSRobert Love high = ntohs(ap->ba_high_seq_cnt); 172242e9a92fSRobert Love if ((ep->esb_stat & ESB_ST_REC_QUAL) == 0 && 172342e9a92fSRobert Love (ap->ba_seq_id_val != FC_BA_SEQ_ID_VAL || 172442e9a92fSRobert Love ap->ba_seq_id == ep->seq_id) && low != high) { 172542e9a92fSRobert Love ep->esb_stat |= ESB_ST_REC_QUAL; 172642e9a92fSRobert Love fc_exch_hold(ep); /* hold for recovery qualifier */ 172742e9a92fSRobert Love has_rec = 1; 172842e9a92fSRobert Love } 172942e9a92fSRobert Love break; 173042e9a92fSRobert Love case FC_RCTL_BA_RJT: 173142e9a92fSRobert Love break; 173242e9a92fSRobert Love default: 173342e9a92fSRobert Love break; 173442e9a92fSRobert Love } 173542e9a92fSRobert Love 173642e9a92fSRobert Love /* do we need to do some other checks here. Can we reuse more of 173742e9a92fSRobert Love * fc_exch_recv_seq_resp 173842e9a92fSRobert Love */ 173942e9a92fSRobert Love sp = &ep->seq; 174042e9a92fSRobert Love /* 174142e9a92fSRobert Love * do we want to check END_SEQ as well as LAST_SEQ here? 174242e9a92fSRobert Love */ 174342e9a92fSRobert Love if (ep->fh_type != FC_TYPE_FCP && 174442e9a92fSRobert Love ntoh24(fh->fh_f_ctl) & FC_FC_LAST_SEQ) 174542e9a92fSRobert Love rc = fc_exch_done_locked(ep); 174642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 17477030fd62SBart Van Assche 17487030fd62SBart Van Assche fc_exch_hold(ep); 174942e9a92fSRobert Love if (!rc) 1750b2f0091fSVasu Dev fc_exch_delete(ep); 1751f6979adeSBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1752f6979adeSBart Van Assche fc_frame_free(fp); 175342e9a92fSRobert Love if (has_rec) 175442e9a92fSRobert Love fc_exch_timer_set(ep, ep->r_a_tov); 17557030fd62SBart Van Assche fc_exch_release(ep); 175642e9a92fSRobert Love } 175742e9a92fSRobert Love 17583a3b42bfSRobert Love /** 17593a3b42bfSRobert Love * fc_exch_recv_bls() - Handler for a BLS sequence 17603a3b42bfSRobert Love * @mp: The EM that the exchange is on 17613a3b42bfSRobert Love * @fp: The request frame 17623a3b42bfSRobert Love * 17633a3b42bfSRobert Love * The BLS frame is always a sequence initiated by the remote side. 176442e9a92fSRobert Love * We may be either the originator or recipient of the exchange. 176542e9a92fSRobert Love */ 176642e9a92fSRobert Love static void fc_exch_recv_bls(struct fc_exch_mgr *mp, struct fc_frame *fp) 176742e9a92fSRobert Love { 176842e9a92fSRobert Love struct fc_frame_header *fh; 176942e9a92fSRobert Love struct fc_exch *ep; 177042e9a92fSRobert Love u32 f_ctl; 177142e9a92fSRobert Love 177242e9a92fSRobert Love fh = fc_frame_header_get(fp); 177342e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 177442e9a92fSRobert Love fr_seq(fp) = NULL; 177542e9a92fSRobert Love 177642e9a92fSRobert Love ep = fc_exch_find(mp, (f_ctl & FC_FC_EX_CTX) ? 177742e9a92fSRobert Love ntohs(fh->fh_ox_id) : ntohs(fh->fh_rx_id)); 177842e9a92fSRobert Love if (ep && (f_ctl & FC_FC_SEQ_INIT)) { 177942e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 178042e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 178142e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 178242e9a92fSRobert Love } 178342e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_CTX) { 178442e9a92fSRobert Love /* 178542e9a92fSRobert Love * A response to a sequence we initiated. 178642e9a92fSRobert Love * This should only be ACKs for class 2 or F. 178742e9a92fSRobert Love */ 178842e9a92fSRobert Love switch (fh->fh_r_ctl) { 178942e9a92fSRobert Love case FC_RCTL_ACK_1: 179042e9a92fSRobert Love case FC_RCTL_ACK_0: 179142e9a92fSRobert Love break; 179242e9a92fSRobert Love default: 1793d4042e9cSBhanu Prakash Gollapudi if (ep) 1794b20d9bfdSBart Van Assche FC_EXCH_DBG(ep, "BLS rctl %x - %s received\n", 179542e9a92fSRobert Love fh->fh_r_ctl, 179642e9a92fSRobert Love fc_exch_rctl_name(fh->fh_r_ctl)); 179742e9a92fSRobert Love break; 179842e9a92fSRobert Love } 179942e9a92fSRobert Love fc_frame_free(fp); 180042e9a92fSRobert Love } else { 180142e9a92fSRobert Love switch (fh->fh_r_ctl) { 180242e9a92fSRobert Love case FC_RCTL_BA_RJT: 180342e9a92fSRobert Love case FC_RCTL_BA_ACC: 180442e9a92fSRobert Love if (ep) 180542e9a92fSRobert Love fc_exch_abts_resp(ep, fp); 180642e9a92fSRobert Love else 180742e9a92fSRobert Love fc_frame_free(fp); 180842e9a92fSRobert Love break; 180942e9a92fSRobert Love case FC_RCTL_BA_ABTS: 1810b73aa56eSHannes Reinecke if (ep) 181142e9a92fSRobert Love fc_exch_recv_abts(ep, fp); 1812b73aa56eSHannes Reinecke else 1813b73aa56eSHannes Reinecke fc_frame_free(fp); 181442e9a92fSRobert Love break; 181542e9a92fSRobert Love default: /* ignore junk */ 181642e9a92fSRobert Love fc_frame_free(fp); 181742e9a92fSRobert Love break; 181842e9a92fSRobert Love } 181942e9a92fSRobert Love } 182042e9a92fSRobert Love if (ep) 182142e9a92fSRobert Love fc_exch_release(ep); /* release hold taken by fc_exch_find */ 182242e9a92fSRobert Love } 182342e9a92fSRobert Love 18243a3b42bfSRobert Love /** 18253a3b42bfSRobert Love * fc_seq_ls_acc() - Accept sequence with LS_ACC 182692261156SJoe Eykholt * @rx_fp: The received frame, not freed here. 18273a3b42bfSRobert Love * 182842e9a92fSRobert Love * If this fails due to allocation or transmit congestion, assume the 182942e9a92fSRobert Love * originator will repeat the sequence. 183042e9a92fSRobert Love */ 183192261156SJoe Eykholt static void fc_seq_ls_acc(struct fc_frame *rx_fp) 183242e9a92fSRobert Love { 183392261156SJoe Eykholt struct fc_lport *lport; 183442e9a92fSRobert Love struct fc_els_ls_acc *acc; 183542e9a92fSRobert Love struct fc_frame *fp; 183657d3ec7eSHannes Reinecke struct fc_seq *sp; 183742e9a92fSRobert Love 183892261156SJoe Eykholt lport = fr_dev(rx_fp); 183957d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 184092261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*acc)); 184157d3ec7eSHannes Reinecke if (!fp) { 184257d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 184357d3ec7eSHannes Reinecke "exch: drop LS_ACC, out of memory\n"); 184492261156SJoe Eykholt return; 184557d3ec7eSHannes Reinecke } 184642e9a92fSRobert Love acc = fc_frame_payload_get(fp, sizeof(*acc)); 184742e9a92fSRobert Love memset(acc, 0, sizeof(*acc)); 184842e9a92fSRobert Love acc->la_cmd = ELS_LS_ACC; 184992261156SJoe Eykholt fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0); 185092261156SJoe Eykholt lport->tt.frame_send(lport, fp); 185142e9a92fSRobert Love } 185242e9a92fSRobert Love 18533a3b42bfSRobert Love /** 18543a3b42bfSRobert Love * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT 185592261156SJoe Eykholt * @rx_fp: The received frame, not freed here. 18563a3b42bfSRobert Love * @reason: The reason the sequence is being rejected 185792261156SJoe Eykholt * @explan: The explanation for the rejection 18583a3b42bfSRobert Love * 185942e9a92fSRobert Love * If this fails due to allocation or transmit congestion, assume the 186042e9a92fSRobert Love * originator will repeat the sequence. 186142e9a92fSRobert Love */ 186292261156SJoe Eykholt static void fc_seq_ls_rjt(struct fc_frame *rx_fp, enum fc_els_rjt_reason reason, 186342e9a92fSRobert Love enum fc_els_rjt_explan explan) 186442e9a92fSRobert Love { 186592261156SJoe Eykholt struct fc_lport *lport; 186642e9a92fSRobert Love struct fc_els_ls_rjt *rjt; 186742e9a92fSRobert Love struct fc_frame *fp; 186857d3ec7eSHannes Reinecke struct fc_seq *sp; 186942e9a92fSRobert Love 187092261156SJoe Eykholt lport = fr_dev(rx_fp); 187157d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 187292261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*rjt)); 187357d3ec7eSHannes Reinecke if (!fp) { 187457d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 187557d3ec7eSHannes Reinecke "exch: drop LS_ACC, out of memory\n"); 187692261156SJoe Eykholt return; 187757d3ec7eSHannes Reinecke } 187842e9a92fSRobert Love rjt = fc_frame_payload_get(fp, sizeof(*rjt)); 187942e9a92fSRobert Love memset(rjt, 0, sizeof(*rjt)); 188042e9a92fSRobert Love rjt->er_cmd = ELS_LS_RJT; 188142e9a92fSRobert Love rjt->er_reason = reason; 188242e9a92fSRobert Love rjt->er_explan = explan; 188392261156SJoe Eykholt fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0); 188492261156SJoe Eykholt lport->tt.frame_send(lport, fp); 188542e9a92fSRobert Love } 188642e9a92fSRobert Love 18873a3b42bfSRobert Love /** 18883a3b42bfSRobert Love * fc_exch_reset() - Reset an exchange 18893a3b42bfSRobert Love * @ep: The exchange to be reset 18907030fd62SBart Van Assche * 18917030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 18923a3b42bfSRobert Love */ 189342e9a92fSRobert Love static void fc_exch_reset(struct fc_exch *ep) 189442e9a92fSRobert Love { 189542e9a92fSRobert Love struct fc_seq *sp; 189642e9a92fSRobert Love int rc = 1; 189742e9a92fSRobert Love 189842e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 189942e9a92fSRobert Love ep->state |= FC_EX_RST_CLEANUP; 1900b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 190142e9a92fSRobert Love if (ep->esb_stat & ESB_ST_REC_QUAL) 190242e9a92fSRobert Love atomic_dec(&ep->ex_refcnt); /* drop hold for rec_qual */ 190342e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_REC_QUAL; 190442e9a92fSRobert Love sp = &ep->seq; 190542e9a92fSRobert Love rc = fc_exch_done_locked(ep); 190642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 19077030fd62SBart Van Assche 19087030fd62SBart Van Assche fc_exch_hold(ep); 19097030fd62SBart Van Assche 191042e9a92fSRobert Love if (!rc) 1911b2f0091fSVasu Dev fc_exch_delete(ep); 191242e9a92fSRobert Love 19137030fd62SBart Van Assche fc_invoke_resp(ep, sp, ERR_PTR(-FC_EX_CLOSED)); 19147030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 19157030fd62SBart Van Assche fc_exch_release(ep); 191642e9a92fSRobert Love } 191742e9a92fSRobert Love 1918b2f0091fSVasu Dev /** 19193a3b42bfSRobert Love * fc_exch_pool_reset() - Reset a per cpu exchange pool 19203a3b42bfSRobert Love * @lport: The local port that the exchange pool is on 19213a3b42bfSRobert Love * @pool: The exchange pool to be reset 19223a3b42bfSRobert Love * @sid: The source ID 19233a3b42bfSRobert Love * @did: The destination ID 1924b2f0091fSVasu Dev * 19253a3b42bfSRobert Love * Resets a per cpu exches pool, releasing all of its sequences 19263a3b42bfSRobert Love * and exchanges. If sid is non-zero then reset only exchanges 19273a3b42bfSRobert Love * we sourced from the local port's FID. If did is non-zero then 19283a3b42bfSRobert Love * only reset exchanges destined for the local port's FID. 192942e9a92fSRobert Love */ 1930b2f0091fSVasu Dev static void fc_exch_pool_reset(struct fc_lport *lport, 1931b2f0091fSVasu Dev struct fc_exch_pool *pool, 1932b2f0091fSVasu Dev u32 sid, u32 did) 193342e9a92fSRobert Love { 193442e9a92fSRobert Love struct fc_exch *ep; 193542e9a92fSRobert Love struct fc_exch *next; 193642e9a92fSRobert Love 1937b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 193842e9a92fSRobert Love restart: 1939b2f0091fSVasu Dev list_for_each_entry_safe(ep, next, &pool->ex_list, ex_list) { 1940b2f0091fSVasu Dev if ((lport == ep->lp) && 194152ff878cSVasu Dev (sid == 0 || sid == ep->sid) && 194242e9a92fSRobert Love (did == 0 || did == ep->did)) { 194342e9a92fSRobert Love fc_exch_hold(ep); 1944b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 194542e9a92fSRobert Love 194642e9a92fSRobert Love fc_exch_reset(ep); 194742e9a92fSRobert Love 194842e9a92fSRobert Love fc_exch_release(ep); 1949b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 195042e9a92fSRobert Love 195142e9a92fSRobert Love /* 195252ff878cSVasu Dev * must restart loop incase while lock 195352ff878cSVasu Dev * was down multiple eps were released. 195442e9a92fSRobert Love */ 195542e9a92fSRobert Love goto restart; 195642e9a92fSRobert Love } 195742e9a92fSRobert Love } 1958b6e3c840SVasu Dev pool->next_index = 0; 1959b6e3c840SVasu Dev pool->left = FC_XID_UNKNOWN; 1960b6e3c840SVasu Dev pool->right = FC_XID_UNKNOWN; 1961b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 1962b2f0091fSVasu Dev } 1963b2f0091fSVasu Dev 1964b2f0091fSVasu Dev /** 19653a3b42bfSRobert Love * fc_exch_mgr_reset() - Reset all EMs of a local port 19663a3b42bfSRobert Love * @lport: The local port whose EMs are to be reset 19673a3b42bfSRobert Love * @sid: The source ID 19683a3b42bfSRobert Love * @did: The destination ID 1969b2f0091fSVasu Dev * 19703a3b42bfSRobert Love * Reset all EMs associated with a given local port. Release all 19713a3b42bfSRobert Love * sequences and exchanges. If sid is non-zero then reset only the 19723a3b42bfSRobert Love * exchanges sent from the local port's FID. If did is non-zero then 19733a3b42bfSRobert Love * reset only exchanges destined for the local port's FID. 1974b2f0091fSVasu Dev */ 1975b2f0091fSVasu Dev void fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did) 1976b2f0091fSVasu Dev { 1977b2f0091fSVasu Dev struct fc_exch_mgr_anchor *ema; 1978b2f0091fSVasu Dev unsigned int cpu; 1979b2f0091fSVasu Dev 1980b2f0091fSVasu Dev list_for_each_entry(ema, &lport->ema_list, ema_list) { 1981b2f0091fSVasu Dev for_each_possible_cpu(cpu) 1982b2f0091fSVasu Dev fc_exch_pool_reset(lport, 1983b2f0091fSVasu Dev per_cpu_ptr(ema->mp->pool, cpu), 1984b2f0091fSVasu Dev sid, did); 198542e9a92fSRobert Love } 198652ff878cSVasu Dev } 198742e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_reset); 198842e9a92fSRobert Love 19893a3b42bfSRobert Love /** 199092261156SJoe Eykholt * fc_exch_lookup() - find an exchange 199192261156SJoe Eykholt * @lport: The local port 199292261156SJoe Eykholt * @xid: The exchange ID 199392261156SJoe Eykholt * 199492261156SJoe Eykholt * Returns exchange pointer with hold for caller, or NULL if not found. 199592261156SJoe Eykholt */ 199692261156SJoe Eykholt static struct fc_exch *fc_exch_lookup(struct fc_lport *lport, u32 xid) 199792261156SJoe Eykholt { 199892261156SJoe Eykholt struct fc_exch_mgr_anchor *ema; 199992261156SJoe Eykholt 200092261156SJoe Eykholt list_for_each_entry(ema, &lport->ema_list, ema_list) 200192261156SJoe Eykholt if (ema->mp->min_xid <= xid && xid <= ema->mp->max_xid) 200292261156SJoe Eykholt return fc_exch_find(ema->mp, xid); 200392261156SJoe Eykholt return NULL; 200492261156SJoe Eykholt } 200592261156SJoe Eykholt 200692261156SJoe Eykholt /** 20073a3b42bfSRobert Love * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests 200892261156SJoe Eykholt * @rfp: The REC frame, not freed here. 20093a3b42bfSRobert Love * 201042e9a92fSRobert Love * Note that the requesting port may be different than the S_ID in the request. 201142e9a92fSRobert Love */ 201292261156SJoe Eykholt static void fc_exch_els_rec(struct fc_frame *rfp) 201342e9a92fSRobert Love { 201492261156SJoe Eykholt struct fc_lport *lport; 201542e9a92fSRobert Love struct fc_frame *fp; 201642e9a92fSRobert Love struct fc_exch *ep; 201742e9a92fSRobert Love struct fc_els_rec *rp; 201842e9a92fSRobert Love struct fc_els_rec_acc *acc; 201942e9a92fSRobert Love enum fc_els_rjt_reason reason = ELS_RJT_LOGIC; 202042e9a92fSRobert Love enum fc_els_rjt_explan explan; 202142e9a92fSRobert Love u32 sid; 2022e0a25286SHannes Reinecke u16 xid, rxid, oxid; 202342e9a92fSRobert Love 202492261156SJoe Eykholt lport = fr_dev(rfp); 202542e9a92fSRobert Love rp = fc_frame_payload_get(rfp, sizeof(*rp)); 202642e9a92fSRobert Love explan = ELS_EXPL_INV_LEN; 202742e9a92fSRobert Love if (!rp) 202842e9a92fSRobert Love goto reject; 202942e9a92fSRobert Love sid = ntoh24(rp->rec_s_id); 203042e9a92fSRobert Love rxid = ntohs(rp->rec_rx_id); 203142e9a92fSRobert Love oxid = ntohs(rp->rec_ox_id); 203242e9a92fSRobert Love 203342e9a92fSRobert Love explan = ELS_EXPL_OXID_RXID; 2034e0a25286SHannes Reinecke if (sid == fc_host_port_id(lport->host)) 2035e0a25286SHannes Reinecke xid = oxid; 2036e0a25286SHannes Reinecke else 2037e0a25286SHannes Reinecke xid = rxid; 2038e0a25286SHannes Reinecke if (xid == FC_XID_UNKNOWN) { 2039e0a25286SHannes Reinecke FC_LPORT_DBG(lport, 2040e0a25286SHannes Reinecke "REC request from %x: invalid rxid %x oxid %x\n", 2041e0a25286SHannes Reinecke sid, rxid, oxid); 2042e0a25286SHannes Reinecke goto reject; 2043e0a25286SHannes Reinecke } 2044e0a25286SHannes Reinecke ep = fc_exch_lookup(lport, xid); 204557d3ec7eSHannes Reinecke if (!ep) { 204657d3ec7eSHannes Reinecke FC_LPORT_DBG(lport, 204757d3ec7eSHannes Reinecke "REC request from %x: rxid %x oxid %x not found\n", 204857d3ec7eSHannes Reinecke sid, rxid, oxid); 204942e9a92fSRobert Love goto reject; 205057d3ec7eSHannes Reinecke } 205157d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "REC request from %x: rxid %x oxid %x\n", 205257d3ec7eSHannes Reinecke sid, rxid, oxid); 205392261156SJoe Eykholt if (ep->oid != sid || oxid != ep->oxid) 205492261156SJoe Eykholt goto rel; 205592261156SJoe Eykholt if (rxid != FC_XID_UNKNOWN && rxid != ep->rxid) 205692261156SJoe Eykholt goto rel; 205792261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*acc)); 205857d3ec7eSHannes Reinecke if (!fp) { 205957d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop REC request, out of memory\n"); 206042e9a92fSRobert Love goto out; 206157d3ec7eSHannes Reinecke } 206292261156SJoe Eykholt 206342e9a92fSRobert Love acc = fc_frame_payload_get(fp, sizeof(*acc)); 206442e9a92fSRobert Love memset(acc, 0, sizeof(*acc)); 206542e9a92fSRobert Love acc->reca_cmd = ELS_LS_ACC; 206642e9a92fSRobert Love acc->reca_ox_id = rp->rec_ox_id; 206742e9a92fSRobert Love memcpy(acc->reca_ofid, rp->rec_s_id, 3); 206842e9a92fSRobert Love acc->reca_rx_id = htons(ep->rxid); 206942e9a92fSRobert Love if (ep->sid == ep->oid) 207042e9a92fSRobert Love hton24(acc->reca_rfid, ep->did); 207142e9a92fSRobert Love else 207242e9a92fSRobert Love hton24(acc->reca_rfid, ep->sid); 207342e9a92fSRobert Love acc->reca_fc4value = htonl(ep->seq.rec_data); 207442e9a92fSRobert Love acc->reca_e_stat = htonl(ep->esb_stat & (ESB_ST_RESP | 207542e9a92fSRobert Love ESB_ST_SEQ_INIT | 207642e9a92fSRobert Love ESB_ST_COMPLETE)); 207792261156SJoe Eykholt fc_fill_reply_hdr(fp, rfp, FC_RCTL_ELS_REP, 0); 207892261156SJoe Eykholt lport->tt.frame_send(lport, fp); 207942e9a92fSRobert Love out: 208042e9a92fSRobert Love fc_exch_release(ep); 208142e9a92fSRobert Love return; 208242e9a92fSRobert Love 208342e9a92fSRobert Love rel: 208442e9a92fSRobert Love fc_exch_release(ep); 208542e9a92fSRobert Love reject: 208692261156SJoe Eykholt fc_seq_ls_rjt(rfp, reason, explan); 208742e9a92fSRobert Love } 208842e9a92fSRobert Love 20893a3b42bfSRobert Love /** 20903a3b42bfSRobert Love * fc_exch_rrq_resp() - Handler for RRQ responses 20913a3b42bfSRobert Love * @sp: The sequence that the RRQ is on 20923a3b42bfSRobert Love * @fp: The RRQ frame 20933a3b42bfSRobert Love * @arg: The exchange that the RRQ is on 209442e9a92fSRobert Love * 209542e9a92fSRobert Love * TODO: fix error handler. 209642e9a92fSRobert Love */ 209742e9a92fSRobert Love static void fc_exch_rrq_resp(struct fc_seq *sp, struct fc_frame *fp, void *arg) 209842e9a92fSRobert Love { 209942e9a92fSRobert Love struct fc_exch *aborted_ep = arg; 210042e9a92fSRobert Love unsigned int op; 210142e9a92fSRobert Love 210242e9a92fSRobert Love if (IS_ERR(fp)) { 210342e9a92fSRobert Love int err = PTR_ERR(fp); 210442e9a92fSRobert Love 210578342da3SVasu Dev if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT) 210642e9a92fSRobert Love goto cleanup; 21077414705eSRobert Love FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, " 21087414705eSRobert Love "frame error %d\n", err); 210942e9a92fSRobert Love return; 211042e9a92fSRobert Love } 211142e9a92fSRobert Love 211242e9a92fSRobert Love op = fc_frame_payload_op(fp); 211342e9a92fSRobert Love fc_frame_free(fp); 211442e9a92fSRobert Love 211542e9a92fSRobert Love switch (op) { 211642e9a92fSRobert Love case ELS_LS_RJT: 2117b20d9bfdSBart Van Assche FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ\n"); 211842e9a92fSRobert Love /* fall through */ 211942e9a92fSRobert Love case ELS_LS_ACC: 212042e9a92fSRobert Love goto cleanup; 212142e9a92fSRobert Love default: 2122b20d9bfdSBart Van Assche FC_EXCH_DBG(aborted_ep, "unexpected response op %x for RRQ\n", 2123b20d9bfdSBart Van Assche op); 212442e9a92fSRobert Love return; 212542e9a92fSRobert Love } 212642e9a92fSRobert Love 212742e9a92fSRobert Love cleanup: 212842e9a92fSRobert Love fc_exch_done(&aborted_ep->seq); 212942e9a92fSRobert Love /* drop hold for rec qual */ 213042e9a92fSRobert Love fc_exch_release(aborted_ep); 213142e9a92fSRobert Love } 213242e9a92fSRobert Love 21331a7b75aeSRobert Love 21341a7b75aeSRobert Love /** 21353a3b42bfSRobert Love * fc_exch_seq_send() - Send a frame using a new exchange and sequence 21363a3b42bfSRobert Love * @lport: The local port to send the frame on 21373a3b42bfSRobert Love * @fp: The frame to be sent 21383a3b42bfSRobert Love * @resp: The response handler for this request 21393a3b42bfSRobert Love * @destructor: The destructor for the exchange 21403a3b42bfSRobert Love * @arg: The argument to be passed to the response handler 21413a3b42bfSRobert Love * @timer_msec: The timeout period for the exchange 21423a3b42bfSRobert Love * 21433afd2d15SHannes Reinecke * The exchange response handler is set in this routine to resp() 21443afd2d15SHannes Reinecke * function pointer. It can be called in two scenarios: if a timeout 21453afd2d15SHannes Reinecke * occurs or if a response frame is received for the exchange. The 21463afd2d15SHannes Reinecke * fc_frame pointer in response handler will also indicate timeout 21473afd2d15SHannes Reinecke * as error using IS_ERR related macros. 21483afd2d15SHannes Reinecke * 21493afd2d15SHannes Reinecke * The exchange destructor handler is also set in this routine. 21503afd2d15SHannes Reinecke * The destructor handler is invoked by EM layer when exchange 21513afd2d15SHannes Reinecke * is about to free, this can be used by caller to free its 21523afd2d15SHannes Reinecke * resources along with exchange free. 21533afd2d15SHannes Reinecke * 21543afd2d15SHannes Reinecke * The arg is passed back to resp and destructor handler. 21553afd2d15SHannes Reinecke * 21563afd2d15SHannes Reinecke * The timeout value (in msec) for an exchange is set if non zero 21573afd2d15SHannes Reinecke * timer_msec argument is specified. The timer is canceled when 21583afd2d15SHannes Reinecke * it fires or when the exchange is done. The exchange timeout handler 21593afd2d15SHannes Reinecke * is registered by EM layer. 21603afd2d15SHannes Reinecke * 21613a3b42bfSRobert Love * The frame pointer with some of the header's fields must be 21623a3b42bfSRobert Love * filled before calling this routine, those fields are: 21633a3b42bfSRobert Love * 21643a3b42bfSRobert Love * - routing control 21653a3b42bfSRobert Love * - FC port did 21663a3b42bfSRobert Love * - FC port sid 21673a3b42bfSRobert Love * - FC header type 21683a3b42bfSRobert Love * - frame control 21693a3b42bfSRobert Love * - parameter or relative offset 21701a7b75aeSRobert Love */ 21713afd2d15SHannes Reinecke struct fc_seq *fc_exch_seq_send(struct fc_lport *lport, 21721a7b75aeSRobert Love struct fc_frame *fp, 21731a7b75aeSRobert Love void (*resp)(struct fc_seq *, 21741a7b75aeSRobert Love struct fc_frame *fp, 21751a7b75aeSRobert Love void *arg), 21763afd2d15SHannes Reinecke void (*destructor)(struct fc_seq *, void *), 21771a7b75aeSRobert Love void *arg, u32 timer_msec) 21781a7b75aeSRobert Love { 21791a7b75aeSRobert Love struct fc_exch *ep; 21801a7b75aeSRobert Love struct fc_seq *sp = NULL; 21811a7b75aeSRobert Love struct fc_frame_header *fh; 21823ee17f59SYi Zou struct fc_fcp_pkt *fsp = NULL; 21831a7b75aeSRobert Love int rc = 1; 21841a7b75aeSRobert Love 21853a3b42bfSRobert Love ep = fc_exch_alloc(lport, fp); 21861a7b75aeSRobert Love if (!ep) { 21871a7b75aeSRobert Love fc_frame_free(fp); 21881a7b75aeSRobert Love return NULL; 21891a7b75aeSRobert Love } 21901a7b75aeSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 21911a7b75aeSRobert Love fh = fc_frame_header_get(fp); 21921a7b75aeSRobert Love fc_exch_set_addr(ep, ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id)); 21931a7b75aeSRobert Love ep->resp = resp; 21941a7b75aeSRobert Love ep->destructor = destructor; 21951a7b75aeSRobert Love ep->arg = arg; 2196f7ce413cSHannes Reinecke ep->r_a_tov = lport->r_a_tov; 21973a3b42bfSRobert Love ep->lp = lport; 21981a7b75aeSRobert Love sp = &ep->seq; 21991a7b75aeSRobert Love 22001a7b75aeSRobert Love ep->fh_type = fh->fh_type; /* save for possbile timeout handling */ 22011a7b75aeSRobert Love ep->f_ctl = ntoh24(fh->fh_f_ctl); 22021a7b75aeSRobert Love fc_exch_setup_hdr(ep, fp, ep->f_ctl); 22031a7b75aeSRobert Love sp->cnt++; 22041a7b75aeSRobert Love 22053ee17f59SYi Zou if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) { 22063ee17f59SYi Zou fsp = fr_fsp(fp); 22071a7b75aeSRobert Love fc_fcp_ddp_setup(fr_fsp(fp), ep->xid); 22083ee17f59SYi Zou } 22091a7b75aeSRobert Love 22103a3b42bfSRobert Love if (unlikely(lport->tt.frame_send(lport, fp))) 22111a7b75aeSRobert Love goto err; 22121a7b75aeSRobert Love 22131a7b75aeSRobert Love if (timer_msec) 22141a7b75aeSRobert Love fc_exch_timer_set_locked(ep, timer_msec); 22151a7b75aeSRobert Love ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not first seq */ 22161a7b75aeSRobert Love 22171a7b75aeSRobert Love if (ep->f_ctl & FC_FC_SEQ_INIT) 22181a7b75aeSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 22191a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 22201a7b75aeSRobert Love return sp; 22211a7b75aeSRobert Love err: 22223ee17f59SYi Zou if (fsp) 22233ee17f59SYi Zou fc_fcp_ddp_done(fsp); 22241a7b75aeSRobert Love rc = fc_exch_done_locked(ep); 22251a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 22261a7b75aeSRobert Love if (!rc) 22271a7b75aeSRobert Love fc_exch_delete(ep); 22281a7b75aeSRobert Love return NULL; 22291a7b75aeSRobert Love } 22303afd2d15SHannes Reinecke EXPORT_SYMBOL(fc_exch_seq_send); 22311a7b75aeSRobert Love 22323a3b42bfSRobert Love /** 22333a3b42bfSRobert Love * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command 22343a3b42bfSRobert Love * @ep: The exchange to send the RRQ on 22353a3b42bfSRobert Love * 223642e9a92fSRobert Love * This tells the remote port to stop blocking the use of 223742e9a92fSRobert Love * the exchange and the seq_cnt range. 223842e9a92fSRobert Love */ 223942e9a92fSRobert Love static void fc_exch_rrq(struct fc_exch *ep) 224042e9a92fSRobert Love { 22413a3b42bfSRobert Love struct fc_lport *lport; 224242e9a92fSRobert Love struct fc_els_rrq *rrq; 224342e9a92fSRobert Love struct fc_frame *fp; 224442e9a92fSRobert Love u32 did; 224542e9a92fSRobert Love 22463a3b42bfSRobert Love lport = ep->lp; 224742e9a92fSRobert Love 22483a3b42bfSRobert Love fp = fc_frame_alloc(lport, sizeof(*rrq)); 224942e9a92fSRobert Love if (!fp) 2250a0cc1eccSVasu Dev goto retry; 2251a0cc1eccSVasu Dev 225242e9a92fSRobert Love rrq = fc_frame_payload_get(fp, sizeof(*rrq)); 225342e9a92fSRobert Love memset(rrq, 0, sizeof(*rrq)); 225442e9a92fSRobert Love rrq->rrq_cmd = ELS_RRQ; 225542e9a92fSRobert Love hton24(rrq->rrq_s_id, ep->sid); 225642e9a92fSRobert Love rrq->rrq_ox_id = htons(ep->oxid); 225742e9a92fSRobert Love rrq->rrq_rx_id = htons(ep->rxid); 225842e9a92fSRobert Love 225942e9a92fSRobert Love did = ep->did; 226042e9a92fSRobert Love if (ep->esb_stat & ESB_ST_RESP) 226142e9a92fSRobert Love did = ep->sid; 226242e9a92fSRobert Love 226342e9a92fSRobert Love fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, did, 22647b2787ecSRobert Love lport->port_id, FC_TYPE_ELS, 226542e9a92fSRobert Love FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0); 226642e9a92fSRobert Love 22673a3b42bfSRobert Love if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep, 22683a3b42bfSRobert Love lport->e_d_tov)) 2269a0cc1eccSVasu Dev return; 2270a0cc1eccSVasu Dev 2271a0cc1eccSVasu Dev retry: 227257d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: RRQ send failed\n"); 2273a0cc1eccSVasu Dev spin_lock_bh(&ep->ex_lock); 2274a0cc1eccSVasu Dev if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) { 2275a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 2276a0cc1eccSVasu Dev /* drop hold for rec qual */ 2277a0cc1eccSVasu Dev fc_exch_release(ep); 227842e9a92fSRobert Love return; 227942e9a92fSRobert Love } 2280a0cc1eccSVasu Dev ep->esb_stat |= ESB_ST_REC_QUAL; 2281a0cc1eccSVasu Dev fc_exch_timer_set_locked(ep, ep->r_a_tov); 2282a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 228342e9a92fSRobert Love } 228442e9a92fSRobert Love 22853a3b42bfSRobert Love /** 22863a3b42bfSRobert Love * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests 228792261156SJoe Eykholt * @fp: The RRQ frame, not freed here. 228842e9a92fSRobert Love */ 228992261156SJoe Eykholt static void fc_exch_els_rrq(struct fc_frame *fp) 229042e9a92fSRobert Love { 229192261156SJoe Eykholt struct fc_lport *lport; 22923f127ad9SVasu Dev struct fc_exch *ep = NULL; /* request or subject exchange */ 229342e9a92fSRobert Love struct fc_els_rrq *rp; 229442e9a92fSRobert Love u32 sid; 229542e9a92fSRobert Love u16 xid; 229642e9a92fSRobert Love enum fc_els_rjt_explan explan; 229742e9a92fSRobert Love 229892261156SJoe Eykholt lport = fr_dev(fp); 229942e9a92fSRobert Love rp = fc_frame_payload_get(fp, sizeof(*rp)); 230042e9a92fSRobert Love explan = ELS_EXPL_INV_LEN; 230142e9a92fSRobert Love if (!rp) 230242e9a92fSRobert Love goto reject; 230342e9a92fSRobert Love 230442e9a92fSRobert Love /* 230542e9a92fSRobert Love * lookup subject exchange. 230642e9a92fSRobert Love */ 230742e9a92fSRobert Love sid = ntoh24(rp->rrq_s_id); /* subject source */ 230892261156SJoe Eykholt xid = fc_host_port_id(lport->host) == sid ? 230992261156SJoe Eykholt ntohs(rp->rrq_ox_id) : ntohs(rp->rrq_rx_id); 231092261156SJoe Eykholt ep = fc_exch_lookup(lport, xid); 231142e9a92fSRobert Love explan = ELS_EXPL_OXID_RXID; 231242e9a92fSRobert Love if (!ep) 231342e9a92fSRobert Love goto reject; 231442e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 231557d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "RRQ request from %x: xid %x rxid %x oxid %x\n", 231657d3ec7eSHannes Reinecke sid, xid, ntohs(rp->rrq_rx_id), ntohs(rp->rrq_ox_id)); 231742e9a92fSRobert Love if (ep->oxid != ntohs(rp->rrq_ox_id)) 231842e9a92fSRobert Love goto unlock_reject; 231942e9a92fSRobert Love if (ep->rxid != ntohs(rp->rrq_rx_id) && 232042e9a92fSRobert Love ep->rxid != FC_XID_UNKNOWN) 232142e9a92fSRobert Love goto unlock_reject; 232242e9a92fSRobert Love explan = ELS_EXPL_SID; 232342e9a92fSRobert Love if (ep->sid != sid) 232442e9a92fSRobert Love goto unlock_reject; 232542e9a92fSRobert Love 232642e9a92fSRobert Love /* 232742e9a92fSRobert Love * Clear Recovery Qualifier state, and cancel timer if complete. 232842e9a92fSRobert Love */ 232942e9a92fSRobert Love if (ep->esb_stat & ESB_ST_REC_QUAL) { 233042e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_REC_QUAL; 233142e9a92fSRobert Love atomic_dec(&ep->ex_refcnt); /* drop hold for rec qual */ 233242e9a92fSRobert Love } 2333b29a4f30SVasu Dev if (ep->esb_stat & ESB_ST_COMPLETE) 2334b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 233542e9a92fSRobert Love 233642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 233742e9a92fSRobert Love 233842e9a92fSRobert Love /* 233942e9a92fSRobert Love * Send LS_ACC. 234042e9a92fSRobert Love */ 234192261156SJoe Eykholt fc_seq_ls_acc(fp); 23423f127ad9SVasu Dev goto out; 234342e9a92fSRobert Love 234442e9a92fSRobert Love unlock_reject: 234542e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 234642e9a92fSRobert Love reject: 234792261156SJoe Eykholt fc_seq_ls_rjt(fp, ELS_RJT_LOGIC, explan); 23483f127ad9SVasu Dev out: 23493f127ad9SVasu Dev if (ep) 23503f127ad9SVasu Dev fc_exch_release(ep); /* drop hold from fc_exch_find */ 235142e9a92fSRobert Love } 235242e9a92fSRobert Love 23533a3b42bfSRobert Love /** 23544e5fae7aSVasu Dev * fc_exch_update_stats() - update exches stats to lport 23554e5fae7aSVasu Dev * @lport: The local port to update exchange manager stats 23564e5fae7aSVasu Dev */ 23574e5fae7aSVasu Dev void fc_exch_update_stats(struct fc_lport *lport) 23584e5fae7aSVasu Dev { 23594e5fae7aSVasu Dev struct fc_host_statistics *st; 23604e5fae7aSVasu Dev struct fc_exch_mgr_anchor *ema; 23614e5fae7aSVasu Dev struct fc_exch_mgr *mp; 23624e5fae7aSVasu Dev 23634e5fae7aSVasu Dev st = &lport->host_stats; 23644e5fae7aSVasu Dev 23654e5fae7aSVasu Dev list_for_each_entry(ema, &lport->ema_list, ema_list) { 23664e5fae7aSVasu Dev mp = ema->mp; 23674e5fae7aSVasu Dev st->fc_no_free_exch += atomic_read(&mp->stats.no_free_exch); 23684e5fae7aSVasu Dev st->fc_no_free_exch_xid += 23694e5fae7aSVasu Dev atomic_read(&mp->stats.no_free_exch_xid); 23704e5fae7aSVasu Dev st->fc_xid_not_found += atomic_read(&mp->stats.xid_not_found); 23714e5fae7aSVasu Dev st->fc_xid_busy += atomic_read(&mp->stats.xid_busy); 23724e5fae7aSVasu Dev st->fc_seq_not_found += atomic_read(&mp->stats.seq_not_found); 23734e5fae7aSVasu Dev st->fc_non_bls_resp += atomic_read(&mp->stats.non_bls_resp); 23744e5fae7aSVasu Dev } 23754e5fae7aSVasu Dev } 23764e5fae7aSVasu Dev EXPORT_SYMBOL(fc_exch_update_stats); 23774e5fae7aSVasu Dev 23784e5fae7aSVasu Dev /** 23793a3b42bfSRobert Love * fc_exch_mgr_add() - Add an exchange manager to a local port's list of EMs 23803a3b42bfSRobert Love * @lport: The local port to add the exchange manager to 23813a3b42bfSRobert Love * @mp: The exchange manager to be added to the local port 23823a3b42bfSRobert Love * @match: The match routine that indicates when this EM should be used 23833a3b42bfSRobert Love */ 238496316099SVasu Dev struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport, 238596316099SVasu Dev struct fc_exch_mgr *mp, 238696316099SVasu Dev bool (*match)(struct fc_frame *)) 238796316099SVasu Dev { 238896316099SVasu Dev struct fc_exch_mgr_anchor *ema; 238996316099SVasu Dev 239096316099SVasu Dev ema = kmalloc(sizeof(*ema), GFP_ATOMIC); 239196316099SVasu Dev if (!ema) 239296316099SVasu Dev return ema; 239396316099SVasu Dev 239496316099SVasu Dev ema->mp = mp; 239596316099SVasu Dev ema->match = match; 239696316099SVasu Dev /* add EM anchor to EM anchors list */ 239796316099SVasu Dev list_add_tail(&ema->ema_list, &lport->ema_list); 239896316099SVasu Dev kref_get(&mp->kref); 239996316099SVasu Dev return ema; 240096316099SVasu Dev } 240196316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_add); 240296316099SVasu Dev 24033a3b42bfSRobert Love /** 24043a3b42bfSRobert Love * fc_exch_mgr_destroy() - Destroy an exchange manager 24053a3b42bfSRobert Love * @kref: The reference to the EM to be destroyed 24063a3b42bfSRobert Love */ 240796316099SVasu Dev static void fc_exch_mgr_destroy(struct kref *kref) 240896316099SVasu Dev { 240996316099SVasu Dev struct fc_exch_mgr *mp = container_of(kref, struct fc_exch_mgr, kref); 241096316099SVasu Dev 241196316099SVasu Dev mempool_destroy(mp->ep_pool); 2412e4bc50beSVasu Dev free_percpu(mp->pool); 241396316099SVasu Dev kfree(mp); 241496316099SVasu Dev } 241596316099SVasu Dev 24163a3b42bfSRobert Love /** 24173a3b42bfSRobert Love * fc_exch_mgr_del() - Delete an EM from a local port's list 24183a3b42bfSRobert Love * @ema: The exchange manager anchor identifying the EM to be deleted 24193a3b42bfSRobert Love */ 242096316099SVasu Dev void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema) 242196316099SVasu Dev { 242296316099SVasu Dev /* remove EM anchor from EM anchors list */ 242396316099SVasu Dev list_del(&ema->ema_list); 242496316099SVasu Dev kref_put(&ema->mp->kref, fc_exch_mgr_destroy); 242596316099SVasu Dev kfree(ema); 242696316099SVasu Dev } 242796316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_del); 242896316099SVasu Dev 2429174e1ebfSChris Leech /** 24303a3b42bfSRobert Love * fc_exch_mgr_list_clone() - Share all exchange manager objects 24313a3b42bfSRobert Love * @src: Source lport to clone exchange managers from 24323a3b42bfSRobert Love * @dst: New lport that takes references to all the exchange managers 2433174e1ebfSChris Leech */ 2434174e1ebfSChris Leech int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst) 2435174e1ebfSChris Leech { 2436174e1ebfSChris Leech struct fc_exch_mgr_anchor *ema, *tmp; 2437174e1ebfSChris Leech 2438174e1ebfSChris Leech list_for_each_entry(ema, &src->ema_list, ema_list) { 2439174e1ebfSChris Leech if (!fc_exch_mgr_add(dst, ema->mp, ema->match)) 2440174e1ebfSChris Leech goto err; 2441174e1ebfSChris Leech } 2442174e1ebfSChris Leech return 0; 2443174e1ebfSChris Leech err: 2444174e1ebfSChris Leech list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list) 2445174e1ebfSChris Leech fc_exch_mgr_del(ema); 2446174e1ebfSChris Leech return -ENOMEM; 2447174e1ebfSChris Leech } 244872fa396bSVasu Dev EXPORT_SYMBOL(fc_exch_mgr_list_clone); 2449174e1ebfSChris Leech 24503a3b42bfSRobert Love /** 24513a3b42bfSRobert Love * fc_exch_mgr_alloc() - Allocate an exchange manager 24523a3b42bfSRobert Love * @lport: The local port that the new EM will be associated with 24533a3b42bfSRobert Love * @class: The default FC class for new exchanges 24543a3b42bfSRobert Love * @min_xid: The minimum XID for exchanges from the new EM 24553a3b42bfSRobert Love * @max_xid: The maximum XID for exchanges from the new EM 24563a3b42bfSRobert Love * @match: The match routine for the new EM 24573a3b42bfSRobert Love */ 24583a3b42bfSRobert Love struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport, 245942e9a92fSRobert Love enum fc_class class, 246052ff878cSVasu Dev u16 min_xid, u16 max_xid, 246152ff878cSVasu Dev bool (*match)(struct fc_frame *)) 246242e9a92fSRobert Love { 246342e9a92fSRobert Love struct fc_exch_mgr *mp; 2464e4bc50beSVasu Dev u16 pool_exch_range; 2465e4bc50beSVasu Dev size_t pool_size; 2466e4bc50beSVasu Dev unsigned int cpu; 2467e4bc50beSVasu Dev struct fc_exch_pool *pool; 246842e9a92fSRobert Love 2469e4bc50beSVasu Dev if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN || 2470e4bc50beSVasu Dev (min_xid & fc_cpu_mask) != 0) { 24713a3b42bfSRobert Love FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n", 247242e9a92fSRobert Love min_xid, max_xid); 247342e9a92fSRobert Love return NULL; 247442e9a92fSRobert Love } 247542e9a92fSRobert Love 247642e9a92fSRobert Love /* 2477b2f0091fSVasu Dev * allocate memory for EM 247842e9a92fSRobert Love */ 2479b2f0091fSVasu Dev mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC); 248042e9a92fSRobert Love if (!mp) 248142e9a92fSRobert Love return NULL; 248242e9a92fSRobert Love 248342e9a92fSRobert Love mp->class = class; 24849ca1e182SHannes Reinecke mp->lport = lport; 248542e9a92fSRobert Love /* adjust em exch xid range for offload */ 248642e9a92fSRobert Love mp->min_xid = min_xid; 2487011a9008SSteven Clark 2488011a9008SSteven Clark /* reduce range so per cpu pool fits into PCPU_MIN_UNIT_SIZE pool */ 2489011a9008SSteven Clark pool_exch_range = (PCPU_MIN_UNIT_SIZE - sizeof(*pool)) / 2490011a9008SSteven Clark sizeof(struct fc_exch *); 2491011a9008SSteven Clark if ((max_xid - min_xid + 1) / (fc_cpu_mask + 1) > pool_exch_range) { 2492011a9008SSteven Clark mp->max_xid = pool_exch_range * (fc_cpu_mask + 1) + 2493011a9008SSteven Clark min_xid - 1; 2494011a9008SSteven Clark } else { 249542e9a92fSRobert Love mp->max_xid = max_xid; 2496011a9008SSteven Clark pool_exch_range = (mp->max_xid - mp->min_xid + 1) / 2497011a9008SSteven Clark (fc_cpu_mask + 1); 2498011a9008SSteven Clark } 249942e9a92fSRobert Love 250042e9a92fSRobert Love mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep); 250142e9a92fSRobert Love if (!mp->ep_pool) 250242e9a92fSRobert Love goto free_mp; 250342e9a92fSRobert Love 2504e4bc50beSVasu Dev /* 2505e4bc50beSVasu Dev * Setup per cpu exch pool with entire exchange id range equally 2506e4bc50beSVasu Dev * divided across all cpus. The exch pointers array memory is 2507e4bc50beSVasu Dev * allocated for exch range per pool. 2508e4bc50beSVasu Dev */ 2509e4bc50beSVasu Dev mp->pool_max_index = pool_exch_range - 1; 2510e4bc50beSVasu Dev 2511e4bc50beSVasu Dev /* 2512e4bc50beSVasu Dev * Allocate and initialize per cpu exch pool 2513e4bc50beSVasu Dev */ 2514e4bc50beSVasu Dev pool_size = sizeof(*pool) + pool_exch_range * sizeof(struct fc_exch *); 2515e4bc50beSVasu Dev mp->pool = __alloc_percpu(pool_size, __alignof__(struct fc_exch_pool)); 2516e4bc50beSVasu Dev if (!mp->pool) 2517e4bc50beSVasu Dev goto free_mempool; 2518e4bc50beSVasu Dev for_each_possible_cpu(cpu) { 2519e4bc50beSVasu Dev pool = per_cpu_ptr(mp->pool, cpu); 2520b6e3c840SVasu Dev pool->next_index = 0; 25212034c19cSHillf Danton pool->left = FC_XID_UNKNOWN; 25222034c19cSHillf Danton pool->right = FC_XID_UNKNOWN; 2523e4bc50beSVasu Dev spin_lock_init(&pool->lock); 2524e4bc50beSVasu Dev INIT_LIST_HEAD(&pool->ex_list); 2525e4bc50beSVasu Dev } 2526e4bc50beSVasu Dev 252752ff878cSVasu Dev kref_init(&mp->kref); 25283a3b42bfSRobert Love if (!fc_exch_mgr_add(lport, mp, match)) { 2529e4bc50beSVasu Dev free_percpu(mp->pool); 2530e4bc50beSVasu Dev goto free_mempool; 253152ff878cSVasu Dev } 253252ff878cSVasu Dev 253352ff878cSVasu Dev /* 253452ff878cSVasu Dev * Above kref_init() sets mp->kref to 1 and then 253552ff878cSVasu Dev * call to fc_exch_mgr_add incremented mp->kref again, 253652ff878cSVasu Dev * so adjust that extra increment. 253752ff878cSVasu Dev */ 253852ff878cSVasu Dev kref_put(&mp->kref, fc_exch_mgr_destroy); 253942e9a92fSRobert Love return mp; 254042e9a92fSRobert Love 2541e4bc50beSVasu Dev free_mempool: 2542e4bc50beSVasu Dev mempool_destroy(mp->ep_pool); 254342e9a92fSRobert Love free_mp: 254442e9a92fSRobert Love kfree(mp); 254542e9a92fSRobert Love return NULL; 254642e9a92fSRobert Love } 254742e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_alloc); 254842e9a92fSRobert Love 25493a3b42bfSRobert Love /** 25503a3b42bfSRobert Love * fc_exch_mgr_free() - Free all exchange managers on a local port 25513a3b42bfSRobert Love * @lport: The local port whose EMs are to be freed 25523a3b42bfSRobert Love */ 255352ff878cSVasu Dev void fc_exch_mgr_free(struct fc_lport *lport) 255442e9a92fSRobert Love { 255552ff878cSVasu Dev struct fc_exch_mgr_anchor *ema, *next; 255652ff878cSVasu Dev 25574ae1e19fSVasu Dev flush_workqueue(fc_exch_workqueue); 255852ff878cSVasu Dev list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list) 255952ff878cSVasu Dev fc_exch_mgr_del(ema); 256042e9a92fSRobert Love } 256142e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_free); 256242e9a92fSRobert Love 25633a3b42bfSRobert Love /** 25646c8cc1c0SKiran Patil * fc_find_ema() - Lookup and return appropriate Exchange Manager Anchor depending 25656c8cc1c0SKiran Patil * upon 'xid'. 25666c8cc1c0SKiran Patil * @f_ctl: f_ctl 25676c8cc1c0SKiran Patil * @lport: The local port the frame was received on 25686c8cc1c0SKiran Patil * @fh: The received frame header 25696c8cc1c0SKiran Patil */ 25706c8cc1c0SKiran Patil static struct fc_exch_mgr_anchor *fc_find_ema(u32 f_ctl, 25716c8cc1c0SKiran Patil struct fc_lport *lport, 25726c8cc1c0SKiran Patil struct fc_frame_header *fh) 25736c8cc1c0SKiran Patil { 25746c8cc1c0SKiran Patil struct fc_exch_mgr_anchor *ema; 25756c8cc1c0SKiran Patil u16 xid; 25766c8cc1c0SKiran Patil 25776c8cc1c0SKiran Patil if (f_ctl & FC_FC_EX_CTX) 25786c8cc1c0SKiran Patil xid = ntohs(fh->fh_ox_id); 25796c8cc1c0SKiran Patil else { 25806c8cc1c0SKiran Patil xid = ntohs(fh->fh_rx_id); 25816c8cc1c0SKiran Patil if (xid == FC_XID_UNKNOWN) 25826c8cc1c0SKiran Patil return list_entry(lport->ema_list.prev, 25836c8cc1c0SKiran Patil typeof(*ema), ema_list); 25846c8cc1c0SKiran Patil } 25856c8cc1c0SKiran Patil 25866c8cc1c0SKiran Patil list_for_each_entry(ema, &lport->ema_list, ema_list) { 25876c8cc1c0SKiran Patil if ((xid >= ema->mp->min_xid) && 25886c8cc1c0SKiran Patil (xid <= ema->mp->max_xid)) 25896c8cc1c0SKiran Patil return ema; 25906c8cc1c0SKiran Patil } 25916c8cc1c0SKiran Patil return NULL; 25926c8cc1c0SKiran Patil } 25936c8cc1c0SKiran Patil /** 25943a3b42bfSRobert Love * fc_exch_recv() - Handler for received frames 25953a3b42bfSRobert Love * @lport: The local port the frame was received on 25963a3b42bfSRobert Love * @fp: The received frame 259742e9a92fSRobert Love */ 25983a3b42bfSRobert Love void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp) 259942e9a92fSRobert Love { 260042e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 260152ff878cSVasu Dev struct fc_exch_mgr_anchor *ema; 26026c8cc1c0SKiran Patil u32 f_ctl; 260342e9a92fSRobert Love 260442e9a92fSRobert Love /* lport lock ? */ 26053a3b42bfSRobert Love if (!lport || lport->state == LPORT_ST_DISABLED) { 26063a3b42bfSRobert Love FC_LPORT_DBG(lport, "Receiving frames for an lport that " 26077414705eSRobert Love "has not been initialized correctly\n"); 260842e9a92fSRobert Love fc_frame_free(fp); 260942e9a92fSRobert Love return; 261042e9a92fSRobert Love } 261142e9a92fSRobert Love 261252ff878cSVasu Dev f_ctl = ntoh24(fh->fh_f_ctl); 26136c8cc1c0SKiran Patil ema = fc_find_ema(f_ctl, lport, fh); 26146c8cc1c0SKiran Patil if (!ema) { 26156c8cc1c0SKiran Patil FC_LPORT_DBG(lport, "Unable to find Exchange Manager Anchor," 26166c8cc1c0SKiran Patil "fc_ctl <0x%x>, xid <0x%x>\n", 26176c8cc1c0SKiran Patil f_ctl, 26186c8cc1c0SKiran Patil (f_ctl & FC_FC_EX_CTX) ? 26196c8cc1c0SKiran Patil ntohs(fh->fh_ox_id) : 26206c8cc1c0SKiran Patil ntohs(fh->fh_rx_id)); 262152ff878cSVasu Dev fc_frame_free(fp); 262252ff878cSVasu Dev return; 262352ff878cSVasu Dev } 262452ff878cSVasu Dev 262542e9a92fSRobert Love /* 262642e9a92fSRobert Love * If frame is marked invalid, just drop it. 262742e9a92fSRobert Love */ 262842e9a92fSRobert Love switch (fr_eof(fp)) { 262942e9a92fSRobert Love case FC_EOF_T: 263042e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) 263142e9a92fSRobert Love skb_trim(fp_skb(fp), fr_len(fp) - FC_FC_FILL(f_ctl)); 263242e9a92fSRobert Love /* fall through */ 263342e9a92fSRobert Love case FC_EOF_N: 263442e9a92fSRobert Love if (fh->fh_type == FC_TYPE_BLS) 263552ff878cSVasu Dev fc_exch_recv_bls(ema->mp, fp); 263642e9a92fSRobert Love else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) == 263742e9a92fSRobert Love FC_FC_EX_CTX) 263852ff878cSVasu Dev fc_exch_recv_seq_resp(ema->mp, fp); 263942e9a92fSRobert Love else if (f_ctl & FC_FC_SEQ_CTX) 264052ff878cSVasu Dev fc_exch_recv_resp(ema->mp, fp); 264192261156SJoe Eykholt else /* no EX_CTX and no SEQ_CTX */ 26423a3b42bfSRobert Love fc_exch_recv_req(lport, ema->mp, fp); 264342e9a92fSRobert Love break; 264442e9a92fSRobert Love default: 26453a3b42bfSRobert Love FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)", 26463a3b42bfSRobert Love fr_eof(fp)); 264742e9a92fSRobert Love fc_frame_free(fp); 264842e9a92fSRobert Love } 264942e9a92fSRobert Love } 265042e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_recv); 265142e9a92fSRobert Love 26523a3b42bfSRobert Love /** 26533a3b42bfSRobert Love * fc_exch_init() - Initialize the exchange layer for a local port 26543a3b42bfSRobert Love * @lport: The local port to initialize the exchange layer for 26553a3b42bfSRobert Love */ 26563a3b42bfSRobert Love int fc_exch_init(struct fc_lport *lport) 265742e9a92fSRobert Love { 26583a3b42bfSRobert Love if (!lport->tt.exch_mgr_reset) 26593a3b42bfSRobert Love lport->tt.exch_mgr_reset = fc_exch_mgr_reset; 266042e9a92fSRobert Love 266189f19a59SVasu Dev return 0; 266289f19a59SVasu Dev } 266389f19a59SVasu Dev EXPORT_SYMBOL(fc_exch_init); 266489f19a59SVasu Dev 266589f19a59SVasu Dev /** 266689f19a59SVasu Dev * fc_setup_exch_mgr() - Setup an exchange manager 266789f19a59SVasu Dev */ 266855204909SRandy Dunlap int fc_setup_exch_mgr(void) 266989f19a59SVasu Dev { 267089f19a59SVasu Dev fc_em_cachep = kmem_cache_create("libfc_em", sizeof(struct fc_exch), 267189f19a59SVasu Dev 0, SLAB_HWCACHE_ALIGN, NULL); 267289f19a59SVasu Dev if (!fc_em_cachep) 267389f19a59SVasu Dev return -ENOMEM; 267489f19a59SVasu Dev 2675e4bc50beSVasu Dev /* 2676e4bc50beSVasu Dev * Initialize fc_cpu_mask and fc_cpu_order. The 2677e4bc50beSVasu Dev * fc_cpu_mask is set for nr_cpu_ids rounded up 2678e4bc50beSVasu Dev * to order of 2's * power and order is stored 2679e4bc50beSVasu Dev * in fc_cpu_order as this is later required in 2680e4bc50beSVasu Dev * mapping between an exch id and exch array index 2681e4bc50beSVasu Dev * in per cpu exch pool. 2682e4bc50beSVasu Dev * 2683e4bc50beSVasu Dev * This round up is required to align fc_cpu_mask 2684e4bc50beSVasu Dev * to exchange id's lower bits such that all incoming 2685e4bc50beSVasu Dev * frames of an exchange gets delivered to the same 2686e4bc50beSVasu Dev * cpu on which exchange originated by simple bitwise 2687e4bc50beSVasu Dev * AND operation between fc_cpu_mask and exchange id. 2688e4bc50beSVasu Dev */ 2689a84ea8c7SBart Van Assche fc_cpu_order = ilog2(roundup_pow_of_two(nr_cpu_ids)); 2690a84ea8c7SBart Van Assche fc_cpu_mask = (1 << fc_cpu_order) - 1; 2691e4bc50beSVasu Dev 26924ae1e19fSVasu Dev fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue"); 26934ae1e19fSVasu Dev if (!fc_exch_workqueue) 26946f06e3a7SHillf Danton goto err; 269542e9a92fSRobert Love return 0; 26966f06e3a7SHillf Danton err: 26976f06e3a7SHillf Danton kmem_cache_destroy(fc_em_cachep); 26986f06e3a7SHillf Danton return -ENOMEM; 269942e9a92fSRobert Love } 270042e9a92fSRobert Love 27013a3b42bfSRobert Love /** 27023a3b42bfSRobert Love * fc_destroy_exch_mgr() - Destroy an exchange manager 27033a3b42bfSRobert Love */ 270455204909SRandy Dunlap void fc_destroy_exch_mgr(void) 270542e9a92fSRobert Love { 27064ae1e19fSVasu Dev destroy_workqueue(fc_exch_workqueue); 270742e9a92fSRobert Love kmem_cache_destroy(fc_em_cachep); 270842e9a92fSRobert Love } 2709