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 */ 605*f1d61e6eSHannes Reinecke void fc_seq_set_resp(struct fc_seq *sp, 606*f1d61e6eSHannes 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 } 626*f1d61e6eSHannes 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 942fa068832SChris Leech if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) { 9439ca1e182SHannes Reinecke pr_err("host%u: lport %6.6x: xid %d invalid CPU %d\n:", 9449ca1e182SHannes Reinecke lport->host->host_no, lport->port_id, xid, cpu); 945fa068832SChris Leech return NULL; 946fa068832SChris Leech } 94742e9a92fSRobert Love 94842e9a92fSRobert Love if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) { 949fa068832SChris Leech pool = per_cpu_ptr(mp->pool, cpu); 950b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 951b2f0091fSVasu Dev ep = fc_exch_ptr_get(pool, (xid - mp->min_xid) >> fc_cpu_order); 9529ca1e182SHannes Reinecke if (ep == &fc_quarantine_exch) { 9539ca1e182SHannes Reinecke FC_LPORT_DBG(lport, "xid %x quarantined\n", xid); 9549ca1e182SHannes Reinecke ep = NULL; 9559ca1e182SHannes Reinecke } 9568d080236SBart Van Assche if (ep) { 9578d080236SBart Van Assche WARN_ON(ep->xid != xid); 95842e9a92fSRobert Love fc_exch_hold(ep); 9598d080236SBart Van Assche } 960b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 96142e9a92fSRobert Love } 96242e9a92fSRobert Love return ep; 96342e9a92fSRobert Love } 96442e9a92fSRobert Love 9651a7b75aeSRobert Love 9661a7b75aeSRobert Love /** 9671a7b75aeSRobert Love * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and 9681a7b75aeSRobert Love * the memory allocated for the related objects may be freed. 9693a3b42bfSRobert Love * @sp: The sequence that has completed 9707030fd62SBart Van Assche * 9717030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 9721a7b75aeSRobert Love */ 973768c72ccSHannes Reinecke void fc_exch_done(struct fc_seq *sp) 97442e9a92fSRobert Love { 97542e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 97642e9a92fSRobert Love int rc; 97742e9a92fSRobert Love 97842e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 97942e9a92fSRobert Love rc = fc_exch_done_locked(ep); 98042e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 9817030fd62SBart Van Assche 9827030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 98342e9a92fSRobert Love if (!rc) 984b2f0091fSVasu Dev fc_exch_delete(ep); 98542e9a92fSRobert Love } 986768c72ccSHannes Reinecke EXPORT_SYMBOL(fc_exch_done); 98742e9a92fSRobert Love 9883a3b42bfSRobert Love /** 9893a3b42bfSRobert Love * fc_exch_resp() - Allocate a new exchange for a response frame 9903a3b42bfSRobert Love * @lport: The local port that the exchange was for 9913a3b42bfSRobert Love * @mp: The exchange manager to allocate the exchange from 9923a3b42bfSRobert Love * @fp: The response frame 9933a3b42bfSRobert Love * 99442e9a92fSRobert Love * Sets the responder ID in the frame header. 99542e9a92fSRobert Love */ 99652ff878cSVasu Dev static struct fc_exch *fc_exch_resp(struct fc_lport *lport, 99752ff878cSVasu Dev struct fc_exch_mgr *mp, 99852ff878cSVasu Dev struct fc_frame *fp) 99942e9a92fSRobert Love { 100042e9a92fSRobert Love struct fc_exch *ep; 100142e9a92fSRobert Love struct fc_frame_header *fh; 100242e9a92fSRobert Love 100352ff878cSVasu Dev ep = fc_exch_alloc(lport, fp); 100442e9a92fSRobert Love if (ep) { 100542e9a92fSRobert Love ep->class = fc_frame_class(fp); 100642e9a92fSRobert Love 100742e9a92fSRobert Love /* 100842e9a92fSRobert Love * Set EX_CTX indicating we're responding on this exchange. 100942e9a92fSRobert Love */ 101042e9a92fSRobert Love ep->f_ctl |= FC_FC_EX_CTX; /* we're responding */ 101142e9a92fSRobert Love ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not new */ 101242e9a92fSRobert Love fh = fc_frame_header_get(fp); 101342e9a92fSRobert Love ep->sid = ntoh24(fh->fh_d_id); 101442e9a92fSRobert Love ep->did = ntoh24(fh->fh_s_id); 101542e9a92fSRobert Love ep->oid = ep->did; 101642e9a92fSRobert Love 101742e9a92fSRobert Love /* 101842e9a92fSRobert Love * Allocated exchange has placed the XID in the 101942e9a92fSRobert Love * originator field. Move it to the responder field, 102042e9a92fSRobert Love * and set the originator XID from the frame. 102142e9a92fSRobert Love */ 102242e9a92fSRobert Love ep->rxid = ep->xid; 102342e9a92fSRobert Love ep->oxid = ntohs(fh->fh_ox_id); 102442e9a92fSRobert Love ep->esb_stat |= ESB_ST_RESP | ESB_ST_SEQ_INIT; 102542e9a92fSRobert Love if ((ntoh24(fh->fh_f_ctl) & FC_FC_SEQ_INIT) == 0) 102642e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 102742e9a92fSRobert Love 102842e9a92fSRobert Love fc_exch_hold(ep); /* hold for caller */ 102952ff878cSVasu Dev spin_unlock_bh(&ep->ex_lock); /* lock from fc_exch_alloc */ 103042e9a92fSRobert Love } 103142e9a92fSRobert Love return ep; 103242e9a92fSRobert Love } 103342e9a92fSRobert Love 10343a3b42bfSRobert Love /** 10353a3b42bfSRobert Love * fc_seq_lookup_recip() - Find a sequence where the other end 10363a3b42bfSRobert Love * originated the sequence 10373a3b42bfSRobert Love * @lport: The local port that the frame was sent to 10383a3b42bfSRobert Love * @mp: The Exchange Manager to lookup the exchange from 10393a3b42bfSRobert Love * @fp: The frame associated with the sequence we're looking for 10403a3b42bfSRobert Love * 104142e9a92fSRobert Love * If fc_pf_rjt_reason is FC_RJT_NONE then this function will have a hold 104242e9a92fSRobert Love * on the ep that should be released by the caller. 104342e9a92fSRobert Love */ 104452ff878cSVasu Dev static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport, 104552ff878cSVasu Dev struct fc_exch_mgr *mp, 1046b2ab99c9SRobert Love struct fc_frame *fp) 104742e9a92fSRobert Love { 104842e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 104942e9a92fSRobert Love struct fc_exch *ep = NULL; 105042e9a92fSRobert Love struct fc_seq *sp = NULL; 105142e9a92fSRobert Love enum fc_pf_rjt_reason reject = FC_RJT_NONE; 105242e9a92fSRobert Love u32 f_ctl; 105342e9a92fSRobert Love u16 xid; 105442e9a92fSRobert Love 105542e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 105642e9a92fSRobert Love WARN_ON((f_ctl & FC_FC_SEQ_CTX) != 0); 105742e9a92fSRobert Love 105842e9a92fSRobert Love /* 105942e9a92fSRobert Love * Lookup or create the exchange if we will be creating the sequence. 106042e9a92fSRobert Love */ 106142e9a92fSRobert Love if (f_ctl & FC_FC_EX_CTX) { 106242e9a92fSRobert Love xid = ntohs(fh->fh_ox_id); /* we originated exch */ 106342e9a92fSRobert Love ep = fc_exch_find(mp, xid); 106442e9a92fSRobert Love if (!ep) { 106542e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 106642e9a92fSRobert Love reject = FC_RJT_OX_ID; 106742e9a92fSRobert Love goto out; 106842e9a92fSRobert Love } 106942e9a92fSRobert Love if (ep->rxid == FC_XID_UNKNOWN) 107042e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 107142e9a92fSRobert Love else if (ep->rxid != ntohs(fh->fh_rx_id)) { 107242e9a92fSRobert Love reject = FC_RJT_OX_ID; 107342e9a92fSRobert Love goto rel; 107442e9a92fSRobert Love } 107542e9a92fSRobert Love } else { 107642e9a92fSRobert Love xid = ntohs(fh->fh_rx_id); /* we are the responder */ 107742e9a92fSRobert Love 107842e9a92fSRobert Love /* 107942e9a92fSRobert Love * Special case for MDS issuing an ELS TEST with a 108042e9a92fSRobert Love * bad rxid of 0. 108142e9a92fSRobert Love * XXX take this out once we do the proper reject. 108242e9a92fSRobert Love */ 108342e9a92fSRobert Love if (xid == 0 && fh->fh_r_ctl == FC_RCTL_ELS_REQ && 108442e9a92fSRobert Love fc_frame_payload_op(fp) == ELS_TEST) { 108542e9a92fSRobert Love fh->fh_rx_id = htons(FC_XID_UNKNOWN); 108642e9a92fSRobert Love xid = FC_XID_UNKNOWN; 108742e9a92fSRobert Love } 108842e9a92fSRobert Love 108942e9a92fSRobert Love /* 109042e9a92fSRobert Love * new sequence - find the exchange 109142e9a92fSRobert Love */ 109242e9a92fSRobert Love ep = fc_exch_find(mp, xid); 109342e9a92fSRobert Love if ((f_ctl & FC_FC_FIRST_SEQ) && fc_sof_is_init(fr_sof(fp))) { 109442e9a92fSRobert Love if (ep) { 109542e9a92fSRobert Love atomic_inc(&mp->stats.xid_busy); 109642e9a92fSRobert Love reject = FC_RJT_RX_ID; 109742e9a92fSRobert Love goto rel; 109842e9a92fSRobert Love } 109952ff878cSVasu Dev ep = fc_exch_resp(lport, mp, fp); 110042e9a92fSRobert Love if (!ep) { 110142e9a92fSRobert Love reject = FC_RJT_EXCH_EST; /* XXX */ 110242e9a92fSRobert Love goto out; 110342e9a92fSRobert Love } 110442e9a92fSRobert Love xid = ep->xid; /* get our XID */ 110542e9a92fSRobert Love } else if (!ep) { 110642e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 110742e9a92fSRobert Love reject = FC_RJT_RX_ID; /* XID not found */ 110842e9a92fSRobert Love goto out; 110942e9a92fSRobert Love } 111042e9a92fSRobert Love } 111142e9a92fSRobert Love 11125d73bea2SBart Van Assche spin_lock_bh(&ep->ex_lock); 111342e9a92fSRobert Love /* 111442e9a92fSRobert Love * At this point, we have the exchange held. 111542e9a92fSRobert Love * Find or create the sequence. 111642e9a92fSRobert Love */ 111742e9a92fSRobert Love if (fc_sof_is_init(fr_sof(fp))) { 1118a104c844SVasu Dev sp = &ep->seq; 111942e9a92fSRobert Love sp->ssb_stat |= SSB_ST_RESP; 1120b3667f91SJoe Eykholt sp->id = fh->fh_seq_id; 112142e9a92fSRobert Love } else { 112242e9a92fSRobert Love sp = &ep->seq; 112342e9a92fSRobert Love if (sp->id != fh->fh_seq_id) { 112442e9a92fSRobert Love atomic_inc(&mp->stats.seq_not_found); 1125e3e65c69SKiran Patil if (f_ctl & FC_FC_END_SEQ) { 1126e3e65c69SKiran Patil /* 1127e3e65c69SKiran Patil * Update sequence_id based on incoming last 1128e3e65c69SKiran Patil * frame of sequence exchange. This is needed 11291bd49b48SVasu Dev * for FC target where DDP has been used 1130e3e65c69SKiran Patil * on target where, stack is indicated only 1131e3e65c69SKiran Patil * about last frame's (payload _header) header. 1132e3e65c69SKiran Patil * Whereas "seq_id" which is part of 1133e3e65c69SKiran Patil * frame_header is allocated by initiator 1134e3e65c69SKiran Patil * which is totally different from "seq_id" 1135e3e65c69SKiran Patil * allocated when XFER_RDY was sent by target. 1136e3e65c69SKiran Patil * To avoid false -ve which results into not 1137e3e65c69SKiran Patil * sending RSP, hence write request on other 1138e3e65c69SKiran Patil * end never finishes. 1139e3e65c69SKiran Patil */ 1140e3e65c69SKiran Patil sp->ssb_stat |= SSB_ST_RESP; 1141e3e65c69SKiran Patil sp->id = fh->fh_seq_id; 1142e3e65c69SKiran Patil } else { 11435d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 11445d73bea2SBart Van Assche 1145e3e65c69SKiran Patil /* sequence/exch should exist */ 1146e3e65c69SKiran Patil reject = FC_RJT_SEQ_ID; 114742e9a92fSRobert Love goto rel; 114842e9a92fSRobert Love } 114942e9a92fSRobert Love } 1150e3e65c69SKiran Patil } 115142e9a92fSRobert Love WARN_ON(ep != fc_seq_exch(sp)); 115242e9a92fSRobert Love 115342e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_INIT) 115442e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 11555d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 115642e9a92fSRobert Love 115742e9a92fSRobert Love fr_seq(fp) = sp; 115842e9a92fSRobert Love out: 115942e9a92fSRobert Love return reject; 116042e9a92fSRobert Love rel: 116142e9a92fSRobert Love fc_exch_done(&ep->seq); 116242e9a92fSRobert Love fc_exch_release(ep); /* hold from fc_exch_find/fc_exch_resp */ 116342e9a92fSRobert Love return reject; 116442e9a92fSRobert Love } 116542e9a92fSRobert Love 11663a3b42bfSRobert Love /** 11673a3b42bfSRobert Love * fc_seq_lookup_orig() - Find a sequence where this end 11683a3b42bfSRobert Love * originated the sequence 11693a3b42bfSRobert Love * @mp: The Exchange Manager to lookup the exchange from 11703a3b42bfSRobert Love * @fp: The frame associated with the sequence we're looking for 11713a3b42bfSRobert Love * 117242e9a92fSRobert Love * Does not hold the sequence for the caller. 117342e9a92fSRobert Love */ 117442e9a92fSRobert Love static struct fc_seq *fc_seq_lookup_orig(struct fc_exch_mgr *mp, 117542e9a92fSRobert Love struct fc_frame *fp) 117642e9a92fSRobert Love { 117742e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 117842e9a92fSRobert Love struct fc_exch *ep; 117942e9a92fSRobert Love struct fc_seq *sp = NULL; 118042e9a92fSRobert Love u32 f_ctl; 118142e9a92fSRobert Love u16 xid; 118242e9a92fSRobert Love 118342e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 118442e9a92fSRobert Love WARN_ON((f_ctl & FC_FC_SEQ_CTX) != FC_FC_SEQ_CTX); 118542e9a92fSRobert Love xid = ntohs((f_ctl & FC_FC_EX_CTX) ? fh->fh_ox_id : fh->fh_rx_id); 118642e9a92fSRobert Love ep = fc_exch_find(mp, xid); 118742e9a92fSRobert Love if (!ep) 118842e9a92fSRobert Love return NULL; 118942e9a92fSRobert Love if (ep->seq.id == fh->fh_seq_id) { 119042e9a92fSRobert Love /* 119142e9a92fSRobert Love * Save the RX_ID if we didn't previously know it. 119242e9a92fSRobert Love */ 119342e9a92fSRobert Love sp = &ep->seq; 119442e9a92fSRobert Love if ((f_ctl & FC_FC_EX_CTX) != 0 && 119542e9a92fSRobert Love ep->rxid == FC_XID_UNKNOWN) { 119642e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 119742e9a92fSRobert Love } 119842e9a92fSRobert Love } 119942e9a92fSRobert Love fc_exch_release(ep); 120042e9a92fSRobert Love return sp; 120142e9a92fSRobert Love } 120242e9a92fSRobert Love 12033a3b42bfSRobert Love /** 12043a3b42bfSRobert Love * fc_exch_set_addr() - Set the source and destination IDs for an exchange 12053a3b42bfSRobert Love * @ep: The exchange to set the addresses for 12063a3b42bfSRobert Love * @orig_id: The originator's ID 12073a3b42bfSRobert Love * @resp_id: The responder's ID 12083a3b42bfSRobert Love * 120942e9a92fSRobert Love * Note this must be done before the first sequence of the exchange is sent. 121042e9a92fSRobert Love */ 121142e9a92fSRobert Love static void fc_exch_set_addr(struct fc_exch *ep, 121242e9a92fSRobert Love u32 orig_id, u32 resp_id) 121342e9a92fSRobert Love { 121442e9a92fSRobert Love ep->oid = orig_id; 121542e9a92fSRobert Love if (ep->esb_stat & ESB_ST_RESP) { 121642e9a92fSRobert Love ep->sid = resp_id; 121742e9a92fSRobert Love ep->did = orig_id; 121842e9a92fSRobert Love } else { 121942e9a92fSRobert Love ep->sid = orig_id; 122042e9a92fSRobert Love ep->did = resp_id; 122142e9a92fSRobert Love } 122242e9a92fSRobert Love } 122342e9a92fSRobert Love 12241a7b75aeSRobert Love /** 122525985edcSLucas De Marchi * fc_seq_els_rsp_send() - Send an ELS response using information from 12263a3b42bfSRobert Love * the existing sequence/exchange. 122792261156SJoe Eykholt * @fp: The received frame 12283a3b42bfSRobert Love * @els_cmd: The ELS command to be sent 12293a3b42bfSRobert Love * @els_data: The ELS data to be sent 123092261156SJoe Eykholt * 123192261156SJoe Eykholt * The received frame is not freed. 123242e9a92fSRobert Love */ 12337ab24dd1SHannes Reinecke void fc_seq_els_rsp_send(struct fc_frame *fp, enum fc_els_cmd els_cmd, 123442e9a92fSRobert Love struct fc_seq_els_data *els_data) 123542e9a92fSRobert Love { 123642e9a92fSRobert Love switch (els_cmd) { 123742e9a92fSRobert Love case ELS_LS_RJT: 123892261156SJoe Eykholt fc_seq_ls_rjt(fp, els_data->reason, els_data->explan); 123942e9a92fSRobert Love break; 124042e9a92fSRobert Love case ELS_LS_ACC: 124192261156SJoe Eykholt fc_seq_ls_acc(fp); 124242e9a92fSRobert Love break; 124342e9a92fSRobert Love case ELS_RRQ: 124492261156SJoe Eykholt fc_exch_els_rrq(fp); 124542e9a92fSRobert Love break; 124642e9a92fSRobert Love case ELS_REC: 124792261156SJoe Eykholt fc_exch_els_rec(fp); 124842e9a92fSRobert Love break; 124942e9a92fSRobert Love default: 125092261156SJoe Eykholt FC_LPORT_DBG(fr_dev(fp), "Invalid ELS CMD:%x\n", els_cmd); 125142e9a92fSRobert Love } 125242e9a92fSRobert Love } 12537ab24dd1SHannes Reinecke EXPORT_SYMBOL_GPL(fc_seq_els_rsp_send); 125442e9a92fSRobert Love 12553a3b42bfSRobert Love /** 12563a3b42bfSRobert Love * fc_seq_send_last() - Send a sequence that is the last in the exchange 12573a3b42bfSRobert Love * @sp: The sequence that is to be sent 12583a3b42bfSRobert Love * @fp: The frame that will be sent on the sequence 12593a3b42bfSRobert Love * @rctl: The R_CTL information to be sent 12603a3b42bfSRobert Love * @fh_type: The frame header type 126142e9a92fSRobert Love */ 126242e9a92fSRobert Love static void fc_seq_send_last(struct fc_seq *sp, struct fc_frame *fp, 126342e9a92fSRobert Love enum fc_rctl rctl, enum fc_fh_type fh_type) 126442e9a92fSRobert Love { 126542e9a92fSRobert Love u32 f_ctl; 126642e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 126742e9a92fSRobert Love 126842e9a92fSRobert Love f_ctl = FC_FC_LAST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT; 126942e9a92fSRobert Love f_ctl |= ep->f_ctl; 127042e9a92fSRobert Love fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0); 1271fb00cc23SNeil Horman fc_seq_send_locked(ep->lp, sp, fp); 127242e9a92fSRobert Love } 127342e9a92fSRobert Love 12743a3b42bfSRobert Love /** 12753a3b42bfSRobert Love * fc_seq_send_ack() - Send an acknowledgement that we've received a frame 12763a3b42bfSRobert Love * @sp: The sequence to send the ACK on 12773a3b42bfSRobert Love * @rx_fp: The received frame that is being acknoledged 12783a3b42bfSRobert Love * 127942e9a92fSRobert Love * Send ACK_1 (or equiv.) indicating we received something. 128042e9a92fSRobert Love */ 128142e9a92fSRobert Love static void fc_seq_send_ack(struct fc_seq *sp, const struct fc_frame *rx_fp) 128242e9a92fSRobert Love { 128342e9a92fSRobert Love struct fc_frame *fp; 128442e9a92fSRobert Love struct fc_frame_header *rx_fh; 128542e9a92fSRobert Love struct fc_frame_header *fh; 128642e9a92fSRobert Love struct fc_exch *ep = fc_seq_exch(sp); 12873a3b42bfSRobert Love struct fc_lport *lport = ep->lp; 128842e9a92fSRobert Love unsigned int f_ctl; 128942e9a92fSRobert Love 129042e9a92fSRobert Love /* 129142e9a92fSRobert Love * Don't send ACKs for class 3. 129242e9a92fSRobert Love */ 129342e9a92fSRobert Love if (fc_sof_needs_ack(fr_sof(rx_fp))) { 12943a3b42bfSRobert Love fp = fc_frame_alloc(lport, 0); 129557d3ec7eSHannes Reinecke if (!fp) { 129657d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop ACK request, out of memory\n"); 129742e9a92fSRobert Love return; 129857d3ec7eSHannes Reinecke } 129942e9a92fSRobert Love 130042e9a92fSRobert Love fh = fc_frame_header_get(fp); 130142e9a92fSRobert Love fh->fh_r_ctl = FC_RCTL_ACK_1; 130242e9a92fSRobert Love fh->fh_type = FC_TYPE_BLS; 130342e9a92fSRobert Love 130442e9a92fSRobert Love /* 130542e9a92fSRobert Love * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). 130642e9a92fSRobert Love * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. 130742e9a92fSRobert Love * Bits 9-8 are meaningful (retransmitted or unidirectional). 130842e9a92fSRobert Love * Last ACK uses bits 7-6 (continue sequence), 130942e9a92fSRobert Love * bits 5-4 are meaningful (what kind of ACK to use). 131042e9a92fSRobert Love */ 131142e9a92fSRobert Love rx_fh = fc_frame_header_get(rx_fp); 131242e9a92fSRobert Love f_ctl = ntoh24(rx_fh->fh_f_ctl); 131342e9a92fSRobert Love f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | 131442e9a92fSRobert Love FC_FC_FIRST_SEQ | FC_FC_LAST_SEQ | 131542e9a92fSRobert Love FC_FC_END_SEQ | FC_FC_END_CONN | FC_FC_SEQ_INIT | 131642e9a92fSRobert Love FC_FC_RETX_SEQ | FC_FC_UNI_TX; 131742e9a92fSRobert Love f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; 131842e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl); 131942e9a92fSRobert Love 132042e9a92fSRobert Love fc_exch_setup_hdr(ep, fp, f_ctl); 132142e9a92fSRobert Love fh->fh_seq_id = rx_fh->fh_seq_id; 132242e9a92fSRobert Love fh->fh_seq_cnt = rx_fh->fh_seq_cnt; 132342e9a92fSRobert Love fh->fh_parm_offset = htonl(1); /* ack single frame */ 132442e9a92fSRobert Love 132542e9a92fSRobert Love fr_sof(fp) = fr_sof(rx_fp); 132642e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) 132742e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 132842e9a92fSRobert Love else 132942e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 133042e9a92fSRobert Love 13313a3b42bfSRobert Love lport->tt.frame_send(lport, fp); 133242e9a92fSRobert Love } 133342e9a92fSRobert Love } 133442e9a92fSRobert Love 13353a3b42bfSRobert Love /** 13363a3b42bfSRobert Love * fc_exch_send_ba_rjt() - Send BLS Reject 13373a3b42bfSRobert Love * @rx_fp: The frame being rejected 13383a3b42bfSRobert Love * @reason: The reason the frame is being rejected 133925985edcSLucas De Marchi * @explan: The explanation for the rejection 13403a3b42bfSRobert Love * 134142e9a92fSRobert Love * This is for rejecting BA_ABTS only. 134242e9a92fSRobert Love */ 1343b2ab99c9SRobert Love static void fc_exch_send_ba_rjt(struct fc_frame *rx_fp, 1344b2ab99c9SRobert Love enum fc_ba_rjt_reason reason, 134542e9a92fSRobert Love enum fc_ba_rjt_explan explan) 134642e9a92fSRobert Love { 134742e9a92fSRobert Love struct fc_frame *fp; 134842e9a92fSRobert Love struct fc_frame_header *rx_fh; 134942e9a92fSRobert Love struct fc_frame_header *fh; 135042e9a92fSRobert Love struct fc_ba_rjt *rp; 135157d3ec7eSHannes Reinecke struct fc_seq *sp; 13523a3b42bfSRobert Love struct fc_lport *lport; 135342e9a92fSRobert Love unsigned int f_ctl; 135442e9a92fSRobert Love 13553a3b42bfSRobert Love lport = fr_dev(rx_fp); 135657d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 13573a3b42bfSRobert Love fp = fc_frame_alloc(lport, sizeof(*rp)); 135857d3ec7eSHannes Reinecke if (!fp) { 135957d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 136057d3ec7eSHannes Reinecke "Drop BA_RJT request, out of memory\n"); 136142e9a92fSRobert Love return; 136257d3ec7eSHannes Reinecke } 136342e9a92fSRobert Love fh = fc_frame_header_get(fp); 136442e9a92fSRobert Love rx_fh = fc_frame_header_get(rx_fp); 136542e9a92fSRobert Love 136642e9a92fSRobert Love memset(fh, 0, sizeof(*fh) + sizeof(*rp)); 136742e9a92fSRobert Love 136842e9a92fSRobert Love rp = fc_frame_payload_get(fp, sizeof(*rp)); 136942e9a92fSRobert Love rp->br_reason = reason; 137042e9a92fSRobert Love rp->br_explan = explan; 137142e9a92fSRobert Love 137242e9a92fSRobert Love /* 137342e9a92fSRobert Love * seq_id, cs_ctl, df_ctl and param/offset are zero. 137442e9a92fSRobert Love */ 137542e9a92fSRobert Love memcpy(fh->fh_s_id, rx_fh->fh_d_id, 3); 137642e9a92fSRobert Love memcpy(fh->fh_d_id, rx_fh->fh_s_id, 3); 13771d490ce3SJoe Eykholt fh->fh_ox_id = rx_fh->fh_ox_id; 13781d490ce3SJoe Eykholt fh->fh_rx_id = rx_fh->fh_rx_id; 137942e9a92fSRobert Love fh->fh_seq_cnt = rx_fh->fh_seq_cnt; 138042e9a92fSRobert Love fh->fh_r_ctl = FC_RCTL_BA_RJT; 138142e9a92fSRobert Love fh->fh_type = FC_TYPE_BLS; 138242e9a92fSRobert Love 138342e9a92fSRobert Love /* 138442e9a92fSRobert Love * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22). 138542e9a92fSRobert Love * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT. 138642e9a92fSRobert Love * Bits 9-8 are meaningful (retransmitted or unidirectional). 138742e9a92fSRobert Love * Last ACK uses bits 7-6 (continue sequence), 138842e9a92fSRobert Love * bits 5-4 are meaningful (what kind of ACK to use). 138942e9a92fSRobert Love * Always set LAST_SEQ, END_SEQ. 139042e9a92fSRobert Love */ 139142e9a92fSRobert Love f_ctl = ntoh24(rx_fh->fh_f_ctl); 139242e9a92fSRobert Love f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX | 139342e9a92fSRobert Love FC_FC_END_CONN | FC_FC_SEQ_INIT | 139442e9a92fSRobert Love FC_FC_RETX_SEQ | FC_FC_UNI_TX; 139542e9a92fSRobert Love f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX; 139642e9a92fSRobert Love f_ctl |= FC_FC_LAST_SEQ | FC_FC_END_SEQ; 139742e9a92fSRobert Love f_ctl &= ~FC_FC_FIRST_SEQ; 139842e9a92fSRobert Love hton24(fh->fh_f_ctl, f_ctl); 139942e9a92fSRobert Love 140042e9a92fSRobert Love fr_sof(fp) = fc_sof_class(fr_sof(rx_fp)); 140142e9a92fSRobert Love fr_eof(fp) = FC_EOF_T; 140242e9a92fSRobert Love if (fc_sof_needs_ack(fr_sof(fp))) 140342e9a92fSRobert Love fr_eof(fp) = FC_EOF_N; 140442e9a92fSRobert Love 14053a3b42bfSRobert Love lport->tt.frame_send(lport, fp); 140642e9a92fSRobert Love } 140742e9a92fSRobert Love 14083a3b42bfSRobert Love /** 14093a3b42bfSRobert Love * fc_exch_recv_abts() - Handle an incoming ABTS 14103a3b42bfSRobert Love * @ep: The exchange the abort was on 14113a3b42bfSRobert Love * @rx_fp: The ABTS frame 14123a3b42bfSRobert Love * 14133a3b42bfSRobert Love * This would be for target mode usually, but could be due to lost 14143a3b42bfSRobert Love * FCP transfer ready, confirm or RRQ. We always handle this as an 14153a3b42bfSRobert Love * exchange abort, ignoring the parameter. 141642e9a92fSRobert Love */ 141742e9a92fSRobert Love static void fc_exch_recv_abts(struct fc_exch *ep, struct fc_frame *rx_fp) 141842e9a92fSRobert Love { 141942e9a92fSRobert Love struct fc_frame *fp; 142042e9a92fSRobert Love struct fc_ba_acc *ap; 142142e9a92fSRobert Love struct fc_frame_header *fh; 142242e9a92fSRobert Love struct fc_seq *sp; 142342e9a92fSRobert Love 142442e9a92fSRobert Love if (!ep) 142542e9a92fSRobert Love goto reject; 1426f95b35cfSBart Van Assche 142757d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: ABTS received\n"); 1428f95b35cfSBart Van Assche fp = fc_frame_alloc(ep->lp, sizeof(*ap)); 142957d3ec7eSHannes Reinecke if (!fp) { 143057d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop ABTS request, out of memory\n"); 1431f95b35cfSBart Van Assche goto free; 143257d3ec7eSHannes Reinecke } 1433f95b35cfSBart Van Assche 143442e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 143542e9a92fSRobert Love if (ep->esb_stat & ESB_ST_COMPLETE) { 143642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 143757d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: ABTS rejected, exchange complete\n"); 1438f95b35cfSBart Van Assche fc_frame_free(fp); 143942e9a92fSRobert Love goto reject; 144042e9a92fSRobert Love } 1441cae7b6ddSBart Van Assche if (!(ep->esb_stat & ESB_ST_REC_QUAL)) { 1442cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_REC_QUAL; 144342e9a92fSRobert Love fc_exch_hold(ep); /* hold for REC_QUAL */ 1444cae7b6ddSBart Van Assche } 144542e9a92fSRobert Love fc_exch_timer_set_locked(ep, ep->r_a_tov); 144642e9a92fSRobert Love fh = fc_frame_header_get(fp); 144742e9a92fSRobert Love ap = fc_frame_payload_get(fp, sizeof(*ap)); 144842e9a92fSRobert Love memset(ap, 0, sizeof(*ap)); 144942e9a92fSRobert Love sp = &ep->seq; 145042e9a92fSRobert Love ap->ba_high_seq_cnt = htons(0xffff); 145142e9a92fSRobert Love if (sp->ssb_stat & SSB_ST_RESP) { 145242e9a92fSRobert Love ap->ba_seq_id = sp->id; 145342e9a92fSRobert Love ap->ba_seq_id_val = FC_BA_SEQ_ID_VAL; 145442e9a92fSRobert Love ap->ba_high_seq_cnt = fh->fh_seq_cnt; 145542e9a92fSRobert Love ap->ba_low_seq_cnt = htons(sp->cnt); 145642e9a92fSRobert Love } 1457a7e84f2bSVasu Dev sp = fc_seq_start_next_locked(sp); 145842e9a92fSRobert Love fc_seq_send_last(sp, fp, FC_RCTL_BA_ACC, FC_TYPE_BLS); 1459cae7b6ddSBart Van Assche ep->esb_stat |= ESB_ST_ABNORMAL; 1460fb00cc23SNeil Horman spin_unlock_bh(&ep->ex_lock); 1461f95b35cfSBart Van Assche 1462f95b35cfSBart Van Assche free: 146342e9a92fSRobert Love fc_frame_free(rx_fp); 146442e9a92fSRobert Love return; 146542e9a92fSRobert Love 146642e9a92fSRobert Love reject: 146742e9a92fSRobert Love fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID); 1468f95b35cfSBart Van Assche goto free; 146942e9a92fSRobert Love } 147042e9a92fSRobert Love 14713a3b42bfSRobert Love /** 1472239e8104SJoe Eykholt * fc_seq_assign() - Assign exchange and sequence for incoming request 1473239e8104SJoe Eykholt * @lport: The local port that received the request 1474239e8104SJoe Eykholt * @fp: The request frame 1475239e8104SJoe Eykholt * 1476239e8104SJoe Eykholt * On success, the sequence pointer will be returned and also in fr_seq(@fp). 147762bdb645SJoe Eykholt * A reference will be held on the exchange/sequence for the caller, which 147862bdb645SJoe Eykholt * must call fc_seq_release(). 1479239e8104SJoe Eykholt */ 1480239e8104SJoe Eykholt static struct fc_seq *fc_seq_assign(struct fc_lport *lport, struct fc_frame *fp) 1481239e8104SJoe Eykholt { 1482239e8104SJoe Eykholt struct fc_exch_mgr_anchor *ema; 1483239e8104SJoe Eykholt 1484239e8104SJoe Eykholt WARN_ON(lport != fr_dev(fp)); 1485239e8104SJoe Eykholt WARN_ON(fr_seq(fp)); 1486239e8104SJoe Eykholt fr_seq(fp) = NULL; 1487239e8104SJoe Eykholt 1488239e8104SJoe Eykholt list_for_each_entry(ema, &lport->ema_list, ema_list) 1489239e8104SJoe Eykholt if ((!ema->match || ema->match(fp)) && 1490530994d6SHillf Danton fc_seq_lookup_recip(lport, ema->mp, fp) == FC_RJT_NONE) 1491239e8104SJoe Eykholt break; 1492239e8104SJoe Eykholt return fr_seq(fp); 1493239e8104SJoe Eykholt } 1494239e8104SJoe Eykholt 1495239e8104SJoe Eykholt /** 149662bdb645SJoe Eykholt * fc_seq_release() - Release the hold 149762bdb645SJoe Eykholt * @sp: The sequence. 149862bdb645SJoe Eykholt */ 149962bdb645SJoe Eykholt static void fc_seq_release(struct fc_seq *sp) 150062bdb645SJoe Eykholt { 150162bdb645SJoe Eykholt fc_exch_release(fc_seq_exch(sp)); 150262bdb645SJoe Eykholt } 150362bdb645SJoe Eykholt 150462bdb645SJoe Eykholt /** 150592261156SJoe Eykholt * fc_exch_recv_req() - Handler for an incoming request 15063a3b42bfSRobert Love * @lport: The local port that received the request 15073a3b42bfSRobert Love * @mp: The EM that the exchange is on 15083a3b42bfSRobert Love * @fp: The request frame 150992261156SJoe Eykholt * 151092261156SJoe Eykholt * This is used when the other end is originating the exchange 151192261156SJoe Eykholt * and the sequence. 151242e9a92fSRobert Love */ 15133a3b42bfSRobert Love static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp, 151442e9a92fSRobert Love struct fc_frame *fp) 151542e9a92fSRobert Love { 151642e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 151742e9a92fSRobert Love struct fc_seq *sp = NULL; 151842e9a92fSRobert Love struct fc_exch *ep = NULL; 151942e9a92fSRobert Love enum fc_pf_rjt_reason reject; 152042e9a92fSRobert Love 1521174e1ebfSChris Leech /* We can have the wrong fc_lport at this point with NPIV, which is a 1522174e1ebfSChris Leech * problem now that we know a new exchange needs to be allocated 1523174e1ebfSChris Leech */ 15243a3b42bfSRobert Love lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id)); 15253a3b42bfSRobert Love if (!lport) { 1526174e1ebfSChris Leech fc_frame_free(fp); 1527174e1ebfSChris Leech return; 1528174e1ebfSChris Leech } 152992261156SJoe Eykholt fr_dev(fp) = lport; 1530174e1ebfSChris Leech 153192261156SJoe Eykholt BUG_ON(fr_seq(fp)); /* XXX remove later */ 153292261156SJoe Eykholt 153392261156SJoe Eykholt /* 153492261156SJoe Eykholt * If the RX_ID is 0xffff, don't allocate an exchange. 153592261156SJoe Eykholt * The upper-level protocol may request one later, if needed. 153692261156SJoe Eykholt */ 153792261156SJoe Eykholt if (fh->fh_rx_id == htons(FC_XID_UNKNOWN)) 1538c5cb444cSHannes Reinecke return fc_lport_recv(lport, fp); 153992261156SJoe Eykholt 15403a3b42bfSRobert Love reject = fc_seq_lookup_recip(lport, mp, fp); 154142e9a92fSRobert Love if (reject == FC_RJT_NONE) { 154242e9a92fSRobert Love sp = fr_seq(fp); /* sequence will be held */ 154342e9a92fSRobert Love ep = fc_seq_exch(sp); 154442e9a92fSRobert Love fc_seq_send_ack(sp, fp); 1545f60e12e9SJoe Eykholt ep->encaps = fr_encaps(fp); 154642e9a92fSRobert Love 154742e9a92fSRobert Love /* 154842e9a92fSRobert Love * Call the receive function. 154942e9a92fSRobert Love * 155042e9a92fSRobert Love * The receive function may allocate a new sequence 155142e9a92fSRobert Love * over the old one, so we shouldn't change the 155242e9a92fSRobert Love * sequence after this. 155342e9a92fSRobert Love * 155442e9a92fSRobert Love * The frame will be freed by the receive function. 155542e9a92fSRobert Love * If new exch resp handler is valid then call that 155642e9a92fSRobert Love * first. 155742e9a92fSRobert Love */ 15587030fd62SBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1559c5cb444cSHannes Reinecke fc_lport_recv(lport, fp); 156042e9a92fSRobert Love fc_exch_release(ep); /* release from lookup */ 156142e9a92fSRobert Love } else { 15623a3b42bfSRobert Love FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n", 15633a3b42bfSRobert Love reject); 156442e9a92fSRobert Love fc_frame_free(fp); 156542e9a92fSRobert Love } 156642e9a92fSRobert Love } 156742e9a92fSRobert Love 15683a3b42bfSRobert Love /** 15693a3b42bfSRobert Love * fc_exch_recv_seq_resp() - Handler for an incoming response where the other 15703a3b42bfSRobert Love * end is the originator of the sequence that is a 15713a3b42bfSRobert Love * response to our initial exchange 15723a3b42bfSRobert Love * @mp: The EM that the exchange is on 15733a3b42bfSRobert Love * @fp: The response frame 157442e9a92fSRobert Love */ 157542e9a92fSRobert Love static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) 157642e9a92fSRobert Love { 157742e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 157842e9a92fSRobert Love struct fc_seq *sp; 157942e9a92fSRobert Love struct fc_exch *ep; 158042e9a92fSRobert Love enum fc_sof sof; 158142e9a92fSRobert Love u32 f_ctl; 158242e9a92fSRobert Love int rc; 158342e9a92fSRobert Love 158442e9a92fSRobert Love ep = fc_exch_find(mp, ntohs(fh->fh_ox_id)); 158542e9a92fSRobert Love if (!ep) { 158642e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 158742e9a92fSRobert Love goto out; 158842e9a92fSRobert Love } 158930121d14SSteve Ma if (ep->esb_stat & ESB_ST_COMPLETE) { 159030121d14SSteve Ma atomic_inc(&mp->stats.xid_not_found); 15918236554aSHillf Danton goto rel; 159230121d14SSteve Ma } 159342e9a92fSRobert Love if (ep->rxid == FC_XID_UNKNOWN) 159442e9a92fSRobert Love ep->rxid = ntohs(fh->fh_rx_id); 159542e9a92fSRobert Love if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) { 159642e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 159742e9a92fSRobert Love goto rel; 159842e9a92fSRobert Love } 159942e9a92fSRobert Love if (ep->did != ntoh24(fh->fh_s_id) && 160042e9a92fSRobert Love ep->did != FC_FID_FLOGI) { 160142e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 160242e9a92fSRobert Love goto rel; 160342e9a92fSRobert Love } 160442e9a92fSRobert Love sof = fr_sof(fp); 160542e9a92fSRobert Love sp = &ep->seq; 1606b3667f91SJoe Eykholt if (fc_sof_is_init(sof)) { 1607a104c844SVasu Dev sp->ssb_stat |= SSB_ST_RESP; 1608b3667f91SJoe Eykholt sp->id = fh->fh_seq_id; 160942e9a92fSRobert Love } 1610a104c844SVasu Dev 161142e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 161242e9a92fSRobert Love fr_seq(fp) = sp; 16135d73bea2SBart Van Assche 16145d73bea2SBart Van Assche spin_lock_bh(&ep->ex_lock); 161542e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_INIT) 161642e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 16175d73bea2SBart Van Assche spin_unlock_bh(&ep->ex_lock); 161842e9a92fSRobert Love 161942e9a92fSRobert Love if (fc_sof_needs_ack(sof)) 162042e9a92fSRobert Love fc_seq_send_ack(sp, fp); 162142e9a92fSRobert Love 162242e9a92fSRobert Love if (fh->fh_type != FC_TYPE_FCP && fr_eof(fp) == FC_EOF_T && 162342e9a92fSRobert Love (f_ctl & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) == 162442e9a92fSRobert Love (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) { 162542e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 162642e9a92fSRobert Love rc = fc_exch_done_locked(ep); 162742e9a92fSRobert Love WARN_ON(fc_seq_exch(sp) != ep); 162842e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 162942e9a92fSRobert Love if (!rc) 1630b2f0091fSVasu Dev fc_exch_delete(ep); 163142e9a92fSRobert Love } 163242e9a92fSRobert Love 163342e9a92fSRobert Love /* 163442e9a92fSRobert Love * Call the receive function. 163542e9a92fSRobert Love * The sequence is held (has a refcnt) for us, 163642e9a92fSRobert Love * but not for the receive function. 163742e9a92fSRobert Love * 163842e9a92fSRobert Love * The receive function may allocate a new sequence 163942e9a92fSRobert Love * over the old one, so we shouldn't change the 164042e9a92fSRobert Love * sequence after this. 164142e9a92fSRobert Love * 164242e9a92fSRobert Love * The frame will be freed by the receive function. 164342e9a92fSRobert Love * If new exch resp handler is valid then call that 164442e9a92fSRobert Love * first. 164542e9a92fSRobert Love */ 1646f6979adeSBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1647f6979adeSBart Van Assche fc_frame_free(fp); 16487030fd62SBart Van Assche 164942e9a92fSRobert Love fc_exch_release(ep); 165042e9a92fSRobert Love return; 165142e9a92fSRobert Love rel: 165242e9a92fSRobert Love fc_exch_release(ep); 165342e9a92fSRobert Love out: 165442e9a92fSRobert Love fc_frame_free(fp); 165542e9a92fSRobert Love } 165642e9a92fSRobert Love 16573a3b42bfSRobert Love /** 16583a3b42bfSRobert Love * fc_exch_recv_resp() - Handler for a sequence where other end is 16593a3b42bfSRobert Love * responding to our sequence 16603a3b42bfSRobert Love * @mp: The EM that the exchange is on 16613a3b42bfSRobert Love * @fp: The response frame 166242e9a92fSRobert Love */ 166342e9a92fSRobert Love static void fc_exch_recv_resp(struct fc_exch_mgr *mp, struct fc_frame *fp) 166442e9a92fSRobert Love { 166542e9a92fSRobert Love struct fc_seq *sp; 166642e9a92fSRobert Love 166742e9a92fSRobert Love sp = fc_seq_lookup_orig(mp, fp); /* doesn't hold sequence */ 1668d459b7eaSRobert Love 1669d459b7eaSRobert Love if (!sp) 167042e9a92fSRobert Love atomic_inc(&mp->stats.xid_not_found); 1671d459b7eaSRobert Love else 167242e9a92fSRobert Love atomic_inc(&mp->stats.non_bls_resp); 1673d459b7eaSRobert Love 167442e9a92fSRobert Love fc_frame_free(fp); 167542e9a92fSRobert Love } 167642e9a92fSRobert Love 16773a3b42bfSRobert Love /** 16783a3b42bfSRobert Love * fc_exch_abts_resp() - Handler for a response to an ABT 16793a3b42bfSRobert Love * @ep: The exchange that the frame is on 16803a3b42bfSRobert Love * @fp: The response frame 16813a3b42bfSRobert Love * 16823a3b42bfSRobert Love * This response would be to an ABTS cancelling an exchange or sequence. 16833a3b42bfSRobert Love * The response can be either BA_ACC or BA_RJT 168442e9a92fSRobert Love */ 168542e9a92fSRobert Love static void fc_exch_abts_resp(struct fc_exch *ep, struct fc_frame *fp) 168642e9a92fSRobert Love { 168742e9a92fSRobert Love struct fc_frame_header *fh; 168842e9a92fSRobert Love struct fc_ba_acc *ap; 168942e9a92fSRobert Love struct fc_seq *sp; 169042e9a92fSRobert Love u16 low; 169142e9a92fSRobert Love u16 high; 169242e9a92fSRobert Love int rc = 1, has_rec = 0; 169342e9a92fSRobert Love 169442e9a92fSRobert Love fh = fc_frame_header_get(fp); 16957414705eSRobert Love FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl, 16967414705eSRobert Love fc_exch_rctl_name(fh->fh_r_ctl)); 169742e9a92fSRobert Love 1698b29a4f30SVasu Dev if (cancel_delayed_work_sync(&ep->timeout_work)) { 16993a292605SRobert Love FC_EXCH_DBG(ep, "Exchange timer canceled due to ABTS response\n"); 170042e9a92fSRobert Love fc_exch_release(ep); /* release from pending timer hold */ 1701b29a4f30SVasu Dev } 170242e9a92fSRobert Love 170342e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 170442e9a92fSRobert Love switch (fh->fh_r_ctl) { 170542e9a92fSRobert Love case FC_RCTL_BA_ACC: 170642e9a92fSRobert Love ap = fc_frame_payload_get(fp, sizeof(*ap)); 170742e9a92fSRobert Love if (!ap) 170842e9a92fSRobert Love break; 170942e9a92fSRobert Love 171042e9a92fSRobert Love /* 171142e9a92fSRobert Love * Decide whether to establish a Recovery Qualifier. 171242e9a92fSRobert Love * We do this if there is a non-empty SEQ_CNT range and 171342e9a92fSRobert Love * SEQ_ID is the same as the one we aborted. 171442e9a92fSRobert Love */ 171542e9a92fSRobert Love low = ntohs(ap->ba_low_seq_cnt); 171642e9a92fSRobert Love high = ntohs(ap->ba_high_seq_cnt); 171742e9a92fSRobert Love if ((ep->esb_stat & ESB_ST_REC_QUAL) == 0 && 171842e9a92fSRobert Love (ap->ba_seq_id_val != FC_BA_SEQ_ID_VAL || 171942e9a92fSRobert Love ap->ba_seq_id == ep->seq_id) && low != high) { 172042e9a92fSRobert Love ep->esb_stat |= ESB_ST_REC_QUAL; 172142e9a92fSRobert Love fc_exch_hold(ep); /* hold for recovery qualifier */ 172242e9a92fSRobert Love has_rec = 1; 172342e9a92fSRobert Love } 172442e9a92fSRobert Love break; 172542e9a92fSRobert Love case FC_RCTL_BA_RJT: 172642e9a92fSRobert Love break; 172742e9a92fSRobert Love default: 172842e9a92fSRobert Love break; 172942e9a92fSRobert Love } 173042e9a92fSRobert Love 173142e9a92fSRobert Love /* do we need to do some other checks here. Can we reuse more of 173242e9a92fSRobert Love * fc_exch_recv_seq_resp 173342e9a92fSRobert Love */ 173442e9a92fSRobert Love sp = &ep->seq; 173542e9a92fSRobert Love /* 173642e9a92fSRobert Love * do we want to check END_SEQ as well as LAST_SEQ here? 173742e9a92fSRobert Love */ 173842e9a92fSRobert Love if (ep->fh_type != FC_TYPE_FCP && 173942e9a92fSRobert Love ntoh24(fh->fh_f_ctl) & FC_FC_LAST_SEQ) 174042e9a92fSRobert Love rc = fc_exch_done_locked(ep); 174142e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 17427030fd62SBart Van Assche 17437030fd62SBart Van Assche fc_exch_hold(ep); 174442e9a92fSRobert Love if (!rc) 1745b2f0091fSVasu Dev fc_exch_delete(ep); 1746f6979adeSBart Van Assche if (!fc_invoke_resp(ep, sp, fp)) 1747f6979adeSBart Van Assche fc_frame_free(fp); 174842e9a92fSRobert Love if (has_rec) 174942e9a92fSRobert Love fc_exch_timer_set(ep, ep->r_a_tov); 17507030fd62SBart Van Assche fc_exch_release(ep); 175142e9a92fSRobert Love } 175242e9a92fSRobert Love 17533a3b42bfSRobert Love /** 17543a3b42bfSRobert Love * fc_exch_recv_bls() - Handler for a BLS sequence 17553a3b42bfSRobert Love * @mp: The EM that the exchange is on 17563a3b42bfSRobert Love * @fp: The request frame 17573a3b42bfSRobert Love * 17583a3b42bfSRobert Love * The BLS frame is always a sequence initiated by the remote side. 175942e9a92fSRobert Love * We may be either the originator or recipient of the exchange. 176042e9a92fSRobert Love */ 176142e9a92fSRobert Love static void fc_exch_recv_bls(struct fc_exch_mgr *mp, struct fc_frame *fp) 176242e9a92fSRobert Love { 176342e9a92fSRobert Love struct fc_frame_header *fh; 176442e9a92fSRobert Love struct fc_exch *ep; 176542e9a92fSRobert Love u32 f_ctl; 176642e9a92fSRobert Love 176742e9a92fSRobert Love fh = fc_frame_header_get(fp); 176842e9a92fSRobert Love f_ctl = ntoh24(fh->fh_f_ctl); 176942e9a92fSRobert Love fr_seq(fp) = NULL; 177042e9a92fSRobert Love 177142e9a92fSRobert Love ep = fc_exch_find(mp, (f_ctl & FC_FC_EX_CTX) ? 177242e9a92fSRobert Love ntohs(fh->fh_ox_id) : ntohs(fh->fh_rx_id)); 177342e9a92fSRobert Love if (ep && (f_ctl & FC_FC_SEQ_INIT)) { 177442e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 177542e9a92fSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 177642e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 177742e9a92fSRobert Love } 177842e9a92fSRobert Love if (f_ctl & FC_FC_SEQ_CTX) { 177942e9a92fSRobert Love /* 178042e9a92fSRobert Love * A response to a sequence we initiated. 178142e9a92fSRobert Love * This should only be ACKs for class 2 or F. 178242e9a92fSRobert Love */ 178342e9a92fSRobert Love switch (fh->fh_r_ctl) { 178442e9a92fSRobert Love case FC_RCTL_ACK_1: 178542e9a92fSRobert Love case FC_RCTL_ACK_0: 178642e9a92fSRobert Love break; 178742e9a92fSRobert Love default: 1788d4042e9cSBhanu Prakash Gollapudi if (ep) 1789b20d9bfdSBart Van Assche FC_EXCH_DBG(ep, "BLS rctl %x - %s received\n", 179042e9a92fSRobert Love fh->fh_r_ctl, 179142e9a92fSRobert Love fc_exch_rctl_name(fh->fh_r_ctl)); 179242e9a92fSRobert Love break; 179342e9a92fSRobert Love } 179442e9a92fSRobert Love fc_frame_free(fp); 179542e9a92fSRobert Love } else { 179642e9a92fSRobert Love switch (fh->fh_r_ctl) { 179742e9a92fSRobert Love case FC_RCTL_BA_RJT: 179842e9a92fSRobert Love case FC_RCTL_BA_ACC: 179942e9a92fSRobert Love if (ep) 180042e9a92fSRobert Love fc_exch_abts_resp(ep, fp); 180142e9a92fSRobert Love else 180242e9a92fSRobert Love fc_frame_free(fp); 180342e9a92fSRobert Love break; 180442e9a92fSRobert Love case FC_RCTL_BA_ABTS: 1805b73aa56eSHannes Reinecke if (ep) 180642e9a92fSRobert Love fc_exch_recv_abts(ep, fp); 1807b73aa56eSHannes Reinecke else 1808b73aa56eSHannes Reinecke fc_frame_free(fp); 180942e9a92fSRobert Love break; 181042e9a92fSRobert Love default: /* ignore junk */ 181142e9a92fSRobert Love fc_frame_free(fp); 181242e9a92fSRobert Love break; 181342e9a92fSRobert Love } 181442e9a92fSRobert Love } 181542e9a92fSRobert Love if (ep) 181642e9a92fSRobert Love fc_exch_release(ep); /* release hold taken by fc_exch_find */ 181742e9a92fSRobert Love } 181842e9a92fSRobert Love 18193a3b42bfSRobert Love /** 18203a3b42bfSRobert Love * fc_seq_ls_acc() - Accept sequence with LS_ACC 182192261156SJoe Eykholt * @rx_fp: The received frame, not freed here. 18223a3b42bfSRobert Love * 182342e9a92fSRobert Love * If this fails due to allocation or transmit congestion, assume the 182442e9a92fSRobert Love * originator will repeat the sequence. 182542e9a92fSRobert Love */ 182692261156SJoe Eykholt static void fc_seq_ls_acc(struct fc_frame *rx_fp) 182742e9a92fSRobert Love { 182892261156SJoe Eykholt struct fc_lport *lport; 182942e9a92fSRobert Love struct fc_els_ls_acc *acc; 183042e9a92fSRobert Love struct fc_frame *fp; 183157d3ec7eSHannes Reinecke struct fc_seq *sp; 183242e9a92fSRobert Love 183392261156SJoe Eykholt lport = fr_dev(rx_fp); 183457d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 183592261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*acc)); 183657d3ec7eSHannes Reinecke if (!fp) { 183757d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 183857d3ec7eSHannes Reinecke "exch: drop LS_ACC, out of memory\n"); 183992261156SJoe Eykholt return; 184057d3ec7eSHannes Reinecke } 184142e9a92fSRobert Love acc = fc_frame_payload_get(fp, sizeof(*acc)); 184242e9a92fSRobert Love memset(acc, 0, sizeof(*acc)); 184342e9a92fSRobert Love acc->la_cmd = ELS_LS_ACC; 184492261156SJoe Eykholt fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0); 184592261156SJoe Eykholt lport->tt.frame_send(lport, fp); 184642e9a92fSRobert Love } 184742e9a92fSRobert Love 18483a3b42bfSRobert Love /** 18493a3b42bfSRobert Love * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT 185092261156SJoe Eykholt * @rx_fp: The received frame, not freed here. 18513a3b42bfSRobert Love * @reason: The reason the sequence is being rejected 185292261156SJoe Eykholt * @explan: The explanation for the rejection 18533a3b42bfSRobert Love * 185442e9a92fSRobert Love * If this fails due to allocation or transmit congestion, assume the 185542e9a92fSRobert Love * originator will repeat the sequence. 185642e9a92fSRobert Love */ 185792261156SJoe Eykholt static void fc_seq_ls_rjt(struct fc_frame *rx_fp, enum fc_els_rjt_reason reason, 185842e9a92fSRobert Love enum fc_els_rjt_explan explan) 185942e9a92fSRobert Love { 186092261156SJoe Eykholt struct fc_lport *lport; 186142e9a92fSRobert Love struct fc_els_ls_rjt *rjt; 186242e9a92fSRobert Love struct fc_frame *fp; 186357d3ec7eSHannes Reinecke struct fc_seq *sp; 186442e9a92fSRobert Love 186592261156SJoe Eykholt lport = fr_dev(rx_fp); 186657d3ec7eSHannes Reinecke sp = fr_seq(rx_fp); 186792261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*rjt)); 186857d3ec7eSHannes Reinecke if (!fp) { 186957d3ec7eSHannes Reinecke FC_EXCH_DBG(fc_seq_exch(sp), 187057d3ec7eSHannes Reinecke "exch: drop LS_ACC, out of memory\n"); 187192261156SJoe Eykholt return; 187257d3ec7eSHannes Reinecke } 187342e9a92fSRobert Love rjt = fc_frame_payload_get(fp, sizeof(*rjt)); 187442e9a92fSRobert Love memset(rjt, 0, sizeof(*rjt)); 187542e9a92fSRobert Love rjt->er_cmd = ELS_LS_RJT; 187642e9a92fSRobert Love rjt->er_reason = reason; 187742e9a92fSRobert Love rjt->er_explan = explan; 187892261156SJoe Eykholt fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0); 187992261156SJoe Eykholt lport->tt.frame_send(lport, fp); 188042e9a92fSRobert Love } 188142e9a92fSRobert Love 18823a3b42bfSRobert Love /** 18833a3b42bfSRobert Love * fc_exch_reset() - Reset an exchange 18843a3b42bfSRobert Love * @ep: The exchange to be reset 18857030fd62SBart Van Assche * 18867030fd62SBart Van Assche * Note: May sleep if invoked from outside a response handler. 18873a3b42bfSRobert Love */ 188842e9a92fSRobert Love static void fc_exch_reset(struct fc_exch *ep) 188942e9a92fSRobert Love { 189042e9a92fSRobert Love struct fc_seq *sp; 189142e9a92fSRobert Love int rc = 1; 189242e9a92fSRobert Love 189342e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 189442e9a92fSRobert Love ep->state |= FC_EX_RST_CLEANUP; 1895b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 189642e9a92fSRobert Love if (ep->esb_stat & ESB_ST_REC_QUAL) 189742e9a92fSRobert Love atomic_dec(&ep->ex_refcnt); /* drop hold for rec_qual */ 189842e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_REC_QUAL; 189942e9a92fSRobert Love sp = &ep->seq; 190042e9a92fSRobert Love rc = fc_exch_done_locked(ep); 190142e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 19027030fd62SBart Van Assche 19037030fd62SBart Van Assche fc_exch_hold(ep); 19047030fd62SBart Van Assche 190542e9a92fSRobert Love if (!rc) 1906b2f0091fSVasu Dev fc_exch_delete(ep); 190742e9a92fSRobert Love 19087030fd62SBart Van Assche fc_invoke_resp(ep, sp, ERR_PTR(-FC_EX_CLOSED)); 19097030fd62SBart Van Assche fc_seq_set_resp(sp, NULL, ep->arg); 19107030fd62SBart Van Assche fc_exch_release(ep); 191142e9a92fSRobert Love } 191242e9a92fSRobert Love 1913b2f0091fSVasu Dev /** 19143a3b42bfSRobert Love * fc_exch_pool_reset() - Reset a per cpu exchange pool 19153a3b42bfSRobert Love * @lport: The local port that the exchange pool is on 19163a3b42bfSRobert Love * @pool: The exchange pool to be reset 19173a3b42bfSRobert Love * @sid: The source ID 19183a3b42bfSRobert Love * @did: The destination ID 1919b2f0091fSVasu Dev * 19203a3b42bfSRobert Love * Resets a per cpu exches pool, releasing all of its sequences 19213a3b42bfSRobert Love * and exchanges. If sid is non-zero then reset only exchanges 19223a3b42bfSRobert Love * we sourced from the local port's FID. If did is non-zero then 19233a3b42bfSRobert Love * only reset exchanges destined for the local port's FID. 192442e9a92fSRobert Love */ 1925b2f0091fSVasu Dev static void fc_exch_pool_reset(struct fc_lport *lport, 1926b2f0091fSVasu Dev struct fc_exch_pool *pool, 1927b2f0091fSVasu Dev u32 sid, u32 did) 192842e9a92fSRobert Love { 192942e9a92fSRobert Love struct fc_exch *ep; 193042e9a92fSRobert Love struct fc_exch *next; 193142e9a92fSRobert Love 1932b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 193342e9a92fSRobert Love restart: 1934b2f0091fSVasu Dev list_for_each_entry_safe(ep, next, &pool->ex_list, ex_list) { 1935b2f0091fSVasu Dev if ((lport == ep->lp) && 193652ff878cSVasu Dev (sid == 0 || sid == ep->sid) && 193742e9a92fSRobert Love (did == 0 || did == ep->did)) { 193842e9a92fSRobert Love fc_exch_hold(ep); 1939b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 194042e9a92fSRobert Love 194142e9a92fSRobert Love fc_exch_reset(ep); 194242e9a92fSRobert Love 194342e9a92fSRobert Love fc_exch_release(ep); 1944b2f0091fSVasu Dev spin_lock_bh(&pool->lock); 194542e9a92fSRobert Love 194642e9a92fSRobert Love /* 194752ff878cSVasu Dev * must restart loop incase while lock 194852ff878cSVasu Dev * was down multiple eps were released. 194942e9a92fSRobert Love */ 195042e9a92fSRobert Love goto restart; 195142e9a92fSRobert Love } 195242e9a92fSRobert Love } 1953b6e3c840SVasu Dev pool->next_index = 0; 1954b6e3c840SVasu Dev pool->left = FC_XID_UNKNOWN; 1955b6e3c840SVasu Dev pool->right = FC_XID_UNKNOWN; 1956b2f0091fSVasu Dev spin_unlock_bh(&pool->lock); 1957b2f0091fSVasu Dev } 1958b2f0091fSVasu Dev 1959b2f0091fSVasu Dev /** 19603a3b42bfSRobert Love * fc_exch_mgr_reset() - Reset all EMs of a local port 19613a3b42bfSRobert Love * @lport: The local port whose EMs are to be reset 19623a3b42bfSRobert Love * @sid: The source ID 19633a3b42bfSRobert Love * @did: The destination ID 1964b2f0091fSVasu Dev * 19653a3b42bfSRobert Love * Reset all EMs associated with a given local port. Release all 19663a3b42bfSRobert Love * sequences and exchanges. If sid is non-zero then reset only the 19673a3b42bfSRobert Love * exchanges sent from the local port's FID. If did is non-zero then 19683a3b42bfSRobert Love * reset only exchanges destined for the local port's FID. 1969b2f0091fSVasu Dev */ 1970b2f0091fSVasu Dev void fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did) 1971b2f0091fSVasu Dev { 1972b2f0091fSVasu Dev struct fc_exch_mgr_anchor *ema; 1973b2f0091fSVasu Dev unsigned int cpu; 1974b2f0091fSVasu Dev 1975b2f0091fSVasu Dev list_for_each_entry(ema, &lport->ema_list, ema_list) { 1976b2f0091fSVasu Dev for_each_possible_cpu(cpu) 1977b2f0091fSVasu Dev fc_exch_pool_reset(lport, 1978b2f0091fSVasu Dev per_cpu_ptr(ema->mp->pool, cpu), 1979b2f0091fSVasu Dev sid, did); 198042e9a92fSRobert Love } 198152ff878cSVasu Dev } 198242e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_reset); 198342e9a92fSRobert Love 19843a3b42bfSRobert Love /** 198592261156SJoe Eykholt * fc_exch_lookup() - find an exchange 198692261156SJoe Eykholt * @lport: The local port 198792261156SJoe Eykholt * @xid: The exchange ID 198892261156SJoe Eykholt * 198992261156SJoe Eykholt * Returns exchange pointer with hold for caller, or NULL if not found. 199092261156SJoe Eykholt */ 199192261156SJoe Eykholt static struct fc_exch *fc_exch_lookup(struct fc_lport *lport, u32 xid) 199292261156SJoe Eykholt { 199392261156SJoe Eykholt struct fc_exch_mgr_anchor *ema; 199492261156SJoe Eykholt 199592261156SJoe Eykholt list_for_each_entry(ema, &lport->ema_list, ema_list) 199692261156SJoe Eykholt if (ema->mp->min_xid <= xid && xid <= ema->mp->max_xid) 199792261156SJoe Eykholt return fc_exch_find(ema->mp, xid); 199892261156SJoe Eykholt return NULL; 199992261156SJoe Eykholt } 200092261156SJoe Eykholt 200192261156SJoe Eykholt /** 20023a3b42bfSRobert Love * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests 200392261156SJoe Eykholt * @rfp: The REC frame, not freed here. 20043a3b42bfSRobert Love * 200542e9a92fSRobert Love * Note that the requesting port may be different than the S_ID in the request. 200642e9a92fSRobert Love */ 200792261156SJoe Eykholt static void fc_exch_els_rec(struct fc_frame *rfp) 200842e9a92fSRobert Love { 200992261156SJoe Eykholt struct fc_lport *lport; 201042e9a92fSRobert Love struct fc_frame *fp; 201142e9a92fSRobert Love struct fc_exch *ep; 201242e9a92fSRobert Love struct fc_els_rec *rp; 201342e9a92fSRobert Love struct fc_els_rec_acc *acc; 201442e9a92fSRobert Love enum fc_els_rjt_reason reason = ELS_RJT_LOGIC; 201542e9a92fSRobert Love enum fc_els_rjt_explan explan; 201642e9a92fSRobert Love u32 sid; 2017e0a25286SHannes Reinecke u16 xid, rxid, oxid; 201842e9a92fSRobert Love 201992261156SJoe Eykholt lport = fr_dev(rfp); 202042e9a92fSRobert Love rp = fc_frame_payload_get(rfp, sizeof(*rp)); 202142e9a92fSRobert Love explan = ELS_EXPL_INV_LEN; 202242e9a92fSRobert Love if (!rp) 202342e9a92fSRobert Love goto reject; 202442e9a92fSRobert Love sid = ntoh24(rp->rec_s_id); 202542e9a92fSRobert Love rxid = ntohs(rp->rec_rx_id); 202642e9a92fSRobert Love oxid = ntohs(rp->rec_ox_id); 202742e9a92fSRobert Love 202842e9a92fSRobert Love explan = ELS_EXPL_OXID_RXID; 2029e0a25286SHannes Reinecke if (sid == fc_host_port_id(lport->host)) 2030e0a25286SHannes Reinecke xid = oxid; 2031e0a25286SHannes Reinecke else 2032e0a25286SHannes Reinecke xid = rxid; 2033e0a25286SHannes Reinecke if (xid == FC_XID_UNKNOWN) { 2034e0a25286SHannes Reinecke FC_LPORT_DBG(lport, 2035e0a25286SHannes Reinecke "REC request from %x: invalid rxid %x oxid %x\n", 2036e0a25286SHannes Reinecke sid, rxid, oxid); 2037e0a25286SHannes Reinecke goto reject; 2038e0a25286SHannes Reinecke } 2039e0a25286SHannes Reinecke ep = fc_exch_lookup(lport, xid); 204057d3ec7eSHannes Reinecke if (!ep) { 204157d3ec7eSHannes Reinecke FC_LPORT_DBG(lport, 204257d3ec7eSHannes Reinecke "REC request from %x: rxid %x oxid %x not found\n", 204357d3ec7eSHannes Reinecke sid, rxid, oxid); 204442e9a92fSRobert Love goto reject; 204557d3ec7eSHannes Reinecke } 204657d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "REC request from %x: rxid %x oxid %x\n", 204757d3ec7eSHannes Reinecke sid, rxid, oxid); 204892261156SJoe Eykholt if (ep->oid != sid || oxid != ep->oxid) 204992261156SJoe Eykholt goto rel; 205092261156SJoe Eykholt if (rxid != FC_XID_UNKNOWN && rxid != ep->rxid) 205192261156SJoe Eykholt goto rel; 205292261156SJoe Eykholt fp = fc_frame_alloc(lport, sizeof(*acc)); 205357d3ec7eSHannes Reinecke if (!fp) { 205457d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "Drop REC request, out of memory\n"); 205542e9a92fSRobert Love goto out; 205657d3ec7eSHannes Reinecke } 205792261156SJoe Eykholt 205842e9a92fSRobert Love acc = fc_frame_payload_get(fp, sizeof(*acc)); 205942e9a92fSRobert Love memset(acc, 0, sizeof(*acc)); 206042e9a92fSRobert Love acc->reca_cmd = ELS_LS_ACC; 206142e9a92fSRobert Love acc->reca_ox_id = rp->rec_ox_id; 206242e9a92fSRobert Love memcpy(acc->reca_ofid, rp->rec_s_id, 3); 206342e9a92fSRobert Love acc->reca_rx_id = htons(ep->rxid); 206442e9a92fSRobert Love if (ep->sid == ep->oid) 206542e9a92fSRobert Love hton24(acc->reca_rfid, ep->did); 206642e9a92fSRobert Love else 206742e9a92fSRobert Love hton24(acc->reca_rfid, ep->sid); 206842e9a92fSRobert Love acc->reca_fc4value = htonl(ep->seq.rec_data); 206942e9a92fSRobert Love acc->reca_e_stat = htonl(ep->esb_stat & (ESB_ST_RESP | 207042e9a92fSRobert Love ESB_ST_SEQ_INIT | 207142e9a92fSRobert Love ESB_ST_COMPLETE)); 207292261156SJoe Eykholt fc_fill_reply_hdr(fp, rfp, FC_RCTL_ELS_REP, 0); 207392261156SJoe Eykholt lport->tt.frame_send(lport, fp); 207442e9a92fSRobert Love out: 207542e9a92fSRobert Love fc_exch_release(ep); 207642e9a92fSRobert Love return; 207742e9a92fSRobert Love 207842e9a92fSRobert Love rel: 207942e9a92fSRobert Love fc_exch_release(ep); 208042e9a92fSRobert Love reject: 208192261156SJoe Eykholt fc_seq_ls_rjt(rfp, reason, explan); 208242e9a92fSRobert Love } 208342e9a92fSRobert Love 20843a3b42bfSRobert Love /** 20853a3b42bfSRobert Love * fc_exch_rrq_resp() - Handler for RRQ responses 20863a3b42bfSRobert Love * @sp: The sequence that the RRQ is on 20873a3b42bfSRobert Love * @fp: The RRQ frame 20883a3b42bfSRobert Love * @arg: The exchange that the RRQ is on 208942e9a92fSRobert Love * 209042e9a92fSRobert Love * TODO: fix error handler. 209142e9a92fSRobert Love */ 209242e9a92fSRobert Love static void fc_exch_rrq_resp(struct fc_seq *sp, struct fc_frame *fp, void *arg) 209342e9a92fSRobert Love { 209442e9a92fSRobert Love struct fc_exch *aborted_ep = arg; 209542e9a92fSRobert Love unsigned int op; 209642e9a92fSRobert Love 209742e9a92fSRobert Love if (IS_ERR(fp)) { 209842e9a92fSRobert Love int err = PTR_ERR(fp); 209942e9a92fSRobert Love 210078342da3SVasu Dev if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT) 210142e9a92fSRobert Love goto cleanup; 21027414705eSRobert Love FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, " 21037414705eSRobert Love "frame error %d\n", err); 210442e9a92fSRobert Love return; 210542e9a92fSRobert Love } 210642e9a92fSRobert Love 210742e9a92fSRobert Love op = fc_frame_payload_op(fp); 210842e9a92fSRobert Love fc_frame_free(fp); 210942e9a92fSRobert Love 211042e9a92fSRobert Love switch (op) { 211142e9a92fSRobert Love case ELS_LS_RJT: 2112b20d9bfdSBart Van Assche FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ\n"); 211342e9a92fSRobert Love /* fall through */ 211442e9a92fSRobert Love case ELS_LS_ACC: 211542e9a92fSRobert Love goto cleanup; 211642e9a92fSRobert Love default: 2117b20d9bfdSBart Van Assche FC_EXCH_DBG(aborted_ep, "unexpected response op %x for RRQ\n", 2118b20d9bfdSBart Van Assche op); 211942e9a92fSRobert Love return; 212042e9a92fSRobert Love } 212142e9a92fSRobert Love 212242e9a92fSRobert Love cleanup: 212342e9a92fSRobert Love fc_exch_done(&aborted_ep->seq); 212442e9a92fSRobert Love /* drop hold for rec qual */ 212542e9a92fSRobert Love fc_exch_release(aborted_ep); 212642e9a92fSRobert Love } 212742e9a92fSRobert Love 21281a7b75aeSRobert Love 21291a7b75aeSRobert Love /** 21303a3b42bfSRobert Love * fc_exch_seq_send() - Send a frame using a new exchange and sequence 21313a3b42bfSRobert Love * @lport: The local port to send the frame on 21323a3b42bfSRobert Love * @fp: The frame to be sent 21333a3b42bfSRobert Love * @resp: The response handler for this request 21343a3b42bfSRobert Love * @destructor: The destructor for the exchange 21353a3b42bfSRobert Love * @arg: The argument to be passed to the response handler 21363a3b42bfSRobert Love * @timer_msec: The timeout period for the exchange 21373a3b42bfSRobert Love * 21383afd2d15SHannes Reinecke * The exchange response handler is set in this routine to resp() 21393afd2d15SHannes Reinecke * function pointer. It can be called in two scenarios: if a timeout 21403afd2d15SHannes Reinecke * occurs or if a response frame is received for the exchange. The 21413afd2d15SHannes Reinecke * fc_frame pointer in response handler will also indicate timeout 21423afd2d15SHannes Reinecke * as error using IS_ERR related macros. 21433afd2d15SHannes Reinecke * 21443afd2d15SHannes Reinecke * The exchange destructor handler is also set in this routine. 21453afd2d15SHannes Reinecke * The destructor handler is invoked by EM layer when exchange 21463afd2d15SHannes Reinecke * is about to free, this can be used by caller to free its 21473afd2d15SHannes Reinecke * resources along with exchange free. 21483afd2d15SHannes Reinecke * 21493afd2d15SHannes Reinecke * The arg is passed back to resp and destructor handler. 21503afd2d15SHannes Reinecke * 21513afd2d15SHannes Reinecke * The timeout value (in msec) for an exchange is set if non zero 21523afd2d15SHannes Reinecke * timer_msec argument is specified. The timer is canceled when 21533afd2d15SHannes Reinecke * it fires or when the exchange is done. The exchange timeout handler 21543afd2d15SHannes Reinecke * is registered by EM layer. 21553afd2d15SHannes Reinecke * 21563a3b42bfSRobert Love * The frame pointer with some of the header's fields must be 21573a3b42bfSRobert Love * filled before calling this routine, those fields are: 21583a3b42bfSRobert Love * 21593a3b42bfSRobert Love * - routing control 21603a3b42bfSRobert Love * - FC port did 21613a3b42bfSRobert Love * - FC port sid 21623a3b42bfSRobert Love * - FC header type 21633a3b42bfSRobert Love * - frame control 21643a3b42bfSRobert Love * - parameter or relative offset 21651a7b75aeSRobert Love */ 21663afd2d15SHannes Reinecke struct fc_seq *fc_exch_seq_send(struct fc_lport *lport, 21671a7b75aeSRobert Love struct fc_frame *fp, 21681a7b75aeSRobert Love void (*resp)(struct fc_seq *, 21691a7b75aeSRobert Love struct fc_frame *fp, 21701a7b75aeSRobert Love void *arg), 21713afd2d15SHannes Reinecke void (*destructor)(struct fc_seq *, void *), 21721a7b75aeSRobert Love void *arg, u32 timer_msec) 21731a7b75aeSRobert Love { 21741a7b75aeSRobert Love struct fc_exch *ep; 21751a7b75aeSRobert Love struct fc_seq *sp = NULL; 21761a7b75aeSRobert Love struct fc_frame_header *fh; 21773ee17f59SYi Zou struct fc_fcp_pkt *fsp = NULL; 21781a7b75aeSRobert Love int rc = 1; 21791a7b75aeSRobert Love 21803a3b42bfSRobert Love ep = fc_exch_alloc(lport, fp); 21811a7b75aeSRobert Love if (!ep) { 21821a7b75aeSRobert Love fc_frame_free(fp); 21831a7b75aeSRobert Love return NULL; 21841a7b75aeSRobert Love } 21851a7b75aeSRobert Love ep->esb_stat |= ESB_ST_SEQ_INIT; 21861a7b75aeSRobert Love fh = fc_frame_header_get(fp); 21871a7b75aeSRobert Love fc_exch_set_addr(ep, ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id)); 21881a7b75aeSRobert Love ep->resp = resp; 21891a7b75aeSRobert Love ep->destructor = destructor; 21901a7b75aeSRobert Love ep->arg = arg; 2191f7ce413cSHannes Reinecke ep->r_a_tov = lport->r_a_tov; 21923a3b42bfSRobert Love ep->lp = lport; 21931a7b75aeSRobert Love sp = &ep->seq; 21941a7b75aeSRobert Love 21951a7b75aeSRobert Love ep->fh_type = fh->fh_type; /* save for possbile timeout handling */ 21961a7b75aeSRobert Love ep->f_ctl = ntoh24(fh->fh_f_ctl); 21971a7b75aeSRobert Love fc_exch_setup_hdr(ep, fp, ep->f_ctl); 21981a7b75aeSRobert Love sp->cnt++; 21991a7b75aeSRobert Love 22003ee17f59SYi Zou if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) { 22013ee17f59SYi Zou fsp = fr_fsp(fp); 22021a7b75aeSRobert Love fc_fcp_ddp_setup(fr_fsp(fp), ep->xid); 22033ee17f59SYi Zou } 22041a7b75aeSRobert Love 22053a3b42bfSRobert Love if (unlikely(lport->tt.frame_send(lport, fp))) 22061a7b75aeSRobert Love goto err; 22071a7b75aeSRobert Love 22081a7b75aeSRobert Love if (timer_msec) 22091a7b75aeSRobert Love fc_exch_timer_set_locked(ep, timer_msec); 22101a7b75aeSRobert Love ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not first seq */ 22111a7b75aeSRobert Love 22121a7b75aeSRobert Love if (ep->f_ctl & FC_FC_SEQ_INIT) 22131a7b75aeSRobert Love ep->esb_stat &= ~ESB_ST_SEQ_INIT; 22141a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 22151a7b75aeSRobert Love return sp; 22161a7b75aeSRobert Love err: 22173ee17f59SYi Zou if (fsp) 22183ee17f59SYi Zou fc_fcp_ddp_done(fsp); 22191a7b75aeSRobert Love rc = fc_exch_done_locked(ep); 22201a7b75aeSRobert Love spin_unlock_bh(&ep->ex_lock); 22211a7b75aeSRobert Love if (!rc) 22221a7b75aeSRobert Love fc_exch_delete(ep); 22231a7b75aeSRobert Love return NULL; 22241a7b75aeSRobert Love } 22253afd2d15SHannes Reinecke EXPORT_SYMBOL(fc_exch_seq_send); 22261a7b75aeSRobert Love 22273a3b42bfSRobert Love /** 22283a3b42bfSRobert Love * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command 22293a3b42bfSRobert Love * @ep: The exchange to send the RRQ on 22303a3b42bfSRobert Love * 223142e9a92fSRobert Love * This tells the remote port to stop blocking the use of 223242e9a92fSRobert Love * the exchange and the seq_cnt range. 223342e9a92fSRobert Love */ 223442e9a92fSRobert Love static void fc_exch_rrq(struct fc_exch *ep) 223542e9a92fSRobert Love { 22363a3b42bfSRobert Love struct fc_lport *lport; 223742e9a92fSRobert Love struct fc_els_rrq *rrq; 223842e9a92fSRobert Love struct fc_frame *fp; 223942e9a92fSRobert Love u32 did; 224042e9a92fSRobert Love 22413a3b42bfSRobert Love lport = ep->lp; 224242e9a92fSRobert Love 22433a3b42bfSRobert Love fp = fc_frame_alloc(lport, sizeof(*rrq)); 224442e9a92fSRobert Love if (!fp) 2245a0cc1eccSVasu Dev goto retry; 2246a0cc1eccSVasu Dev 224742e9a92fSRobert Love rrq = fc_frame_payload_get(fp, sizeof(*rrq)); 224842e9a92fSRobert Love memset(rrq, 0, sizeof(*rrq)); 224942e9a92fSRobert Love rrq->rrq_cmd = ELS_RRQ; 225042e9a92fSRobert Love hton24(rrq->rrq_s_id, ep->sid); 225142e9a92fSRobert Love rrq->rrq_ox_id = htons(ep->oxid); 225242e9a92fSRobert Love rrq->rrq_rx_id = htons(ep->rxid); 225342e9a92fSRobert Love 225442e9a92fSRobert Love did = ep->did; 225542e9a92fSRobert Love if (ep->esb_stat & ESB_ST_RESP) 225642e9a92fSRobert Love did = ep->sid; 225742e9a92fSRobert Love 225842e9a92fSRobert Love fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, did, 22597b2787ecSRobert Love lport->port_id, FC_TYPE_ELS, 226042e9a92fSRobert Love FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0); 226142e9a92fSRobert Love 22623a3b42bfSRobert Love if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep, 22633a3b42bfSRobert Love lport->e_d_tov)) 2264a0cc1eccSVasu Dev return; 2265a0cc1eccSVasu Dev 2266a0cc1eccSVasu Dev retry: 226757d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "exch: RRQ send failed\n"); 2268a0cc1eccSVasu Dev spin_lock_bh(&ep->ex_lock); 2269a0cc1eccSVasu Dev if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) { 2270a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 2271a0cc1eccSVasu Dev /* drop hold for rec qual */ 2272a0cc1eccSVasu Dev fc_exch_release(ep); 227342e9a92fSRobert Love return; 227442e9a92fSRobert Love } 2275a0cc1eccSVasu Dev ep->esb_stat |= ESB_ST_REC_QUAL; 2276a0cc1eccSVasu Dev fc_exch_timer_set_locked(ep, ep->r_a_tov); 2277a0cc1eccSVasu Dev spin_unlock_bh(&ep->ex_lock); 227842e9a92fSRobert Love } 227942e9a92fSRobert Love 22803a3b42bfSRobert Love /** 22813a3b42bfSRobert Love * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests 228292261156SJoe Eykholt * @fp: The RRQ frame, not freed here. 228342e9a92fSRobert Love */ 228492261156SJoe Eykholt static void fc_exch_els_rrq(struct fc_frame *fp) 228542e9a92fSRobert Love { 228692261156SJoe Eykholt struct fc_lport *lport; 22873f127ad9SVasu Dev struct fc_exch *ep = NULL; /* request or subject exchange */ 228842e9a92fSRobert Love struct fc_els_rrq *rp; 228942e9a92fSRobert Love u32 sid; 229042e9a92fSRobert Love u16 xid; 229142e9a92fSRobert Love enum fc_els_rjt_explan explan; 229242e9a92fSRobert Love 229392261156SJoe Eykholt lport = fr_dev(fp); 229442e9a92fSRobert Love rp = fc_frame_payload_get(fp, sizeof(*rp)); 229542e9a92fSRobert Love explan = ELS_EXPL_INV_LEN; 229642e9a92fSRobert Love if (!rp) 229742e9a92fSRobert Love goto reject; 229842e9a92fSRobert Love 229942e9a92fSRobert Love /* 230042e9a92fSRobert Love * lookup subject exchange. 230142e9a92fSRobert Love */ 230242e9a92fSRobert Love sid = ntoh24(rp->rrq_s_id); /* subject source */ 230392261156SJoe Eykholt xid = fc_host_port_id(lport->host) == sid ? 230492261156SJoe Eykholt ntohs(rp->rrq_ox_id) : ntohs(rp->rrq_rx_id); 230592261156SJoe Eykholt ep = fc_exch_lookup(lport, xid); 230642e9a92fSRobert Love explan = ELS_EXPL_OXID_RXID; 230742e9a92fSRobert Love if (!ep) 230842e9a92fSRobert Love goto reject; 230942e9a92fSRobert Love spin_lock_bh(&ep->ex_lock); 231057d3ec7eSHannes Reinecke FC_EXCH_DBG(ep, "RRQ request from %x: xid %x rxid %x oxid %x\n", 231157d3ec7eSHannes Reinecke sid, xid, ntohs(rp->rrq_rx_id), ntohs(rp->rrq_ox_id)); 231242e9a92fSRobert Love if (ep->oxid != ntohs(rp->rrq_ox_id)) 231342e9a92fSRobert Love goto unlock_reject; 231442e9a92fSRobert Love if (ep->rxid != ntohs(rp->rrq_rx_id) && 231542e9a92fSRobert Love ep->rxid != FC_XID_UNKNOWN) 231642e9a92fSRobert Love goto unlock_reject; 231742e9a92fSRobert Love explan = ELS_EXPL_SID; 231842e9a92fSRobert Love if (ep->sid != sid) 231942e9a92fSRobert Love goto unlock_reject; 232042e9a92fSRobert Love 232142e9a92fSRobert Love /* 232242e9a92fSRobert Love * Clear Recovery Qualifier state, and cancel timer if complete. 232342e9a92fSRobert Love */ 232442e9a92fSRobert Love if (ep->esb_stat & ESB_ST_REC_QUAL) { 232542e9a92fSRobert Love ep->esb_stat &= ~ESB_ST_REC_QUAL; 232642e9a92fSRobert Love atomic_dec(&ep->ex_refcnt); /* drop hold for rec qual */ 232742e9a92fSRobert Love } 2328b29a4f30SVasu Dev if (ep->esb_stat & ESB_ST_COMPLETE) 2329b29a4f30SVasu Dev fc_exch_timer_cancel(ep); 233042e9a92fSRobert Love 233142e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 233242e9a92fSRobert Love 233342e9a92fSRobert Love /* 233442e9a92fSRobert Love * Send LS_ACC. 233542e9a92fSRobert Love */ 233692261156SJoe Eykholt fc_seq_ls_acc(fp); 23373f127ad9SVasu Dev goto out; 233842e9a92fSRobert Love 233942e9a92fSRobert Love unlock_reject: 234042e9a92fSRobert Love spin_unlock_bh(&ep->ex_lock); 234142e9a92fSRobert Love reject: 234292261156SJoe Eykholt fc_seq_ls_rjt(fp, ELS_RJT_LOGIC, explan); 23433f127ad9SVasu Dev out: 23443f127ad9SVasu Dev if (ep) 23453f127ad9SVasu Dev fc_exch_release(ep); /* drop hold from fc_exch_find */ 234642e9a92fSRobert Love } 234742e9a92fSRobert Love 23483a3b42bfSRobert Love /** 23494e5fae7aSVasu Dev * fc_exch_update_stats() - update exches stats to lport 23504e5fae7aSVasu Dev * @lport: The local port to update exchange manager stats 23514e5fae7aSVasu Dev */ 23524e5fae7aSVasu Dev void fc_exch_update_stats(struct fc_lport *lport) 23534e5fae7aSVasu Dev { 23544e5fae7aSVasu Dev struct fc_host_statistics *st; 23554e5fae7aSVasu Dev struct fc_exch_mgr_anchor *ema; 23564e5fae7aSVasu Dev struct fc_exch_mgr *mp; 23574e5fae7aSVasu Dev 23584e5fae7aSVasu Dev st = &lport->host_stats; 23594e5fae7aSVasu Dev 23604e5fae7aSVasu Dev list_for_each_entry(ema, &lport->ema_list, ema_list) { 23614e5fae7aSVasu Dev mp = ema->mp; 23624e5fae7aSVasu Dev st->fc_no_free_exch += atomic_read(&mp->stats.no_free_exch); 23634e5fae7aSVasu Dev st->fc_no_free_exch_xid += 23644e5fae7aSVasu Dev atomic_read(&mp->stats.no_free_exch_xid); 23654e5fae7aSVasu Dev st->fc_xid_not_found += atomic_read(&mp->stats.xid_not_found); 23664e5fae7aSVasu Dev st->fc_xid_busy += atomic_read(&mp->stats.xid_busy); 23674e5fae7aSVasu Dev st->fc_seq_not_found += atomic_read(&mp->stats.seq_not_found); 23684e5fae7aSVasu Dev st->fc_non_bls_resp += atomic_read(&mp->stats.non_bls_resp); 23694e5fae7aSVasu Dev } 23704e5fae7aSVasu Dev } 23714e5fae7aSVasu Dev EXPORT_SYMBOL(fc_exch_update_stats); 23724e5fae7aSVasu Dev 23734e5fae7aSVasu Dev /** 23743a3b42bfSRobert Love * fc_exch_mgr_add() - Add an exchange manager to a local port's list of EMs 23753a3b42bfSRobert Love * @lport: The local port to add the exchange manager to 23763a3b42bfSRobert Love * @mp: The exchange manager to be added to the local port 23773a3b42bfSRobert Love * @match: The match routine that indicates when this EM should be used 23783a3b42bfSRobert Love */ 237996316099SVasu Dev struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport, 238096316099SVasu Dev struct fc_exch_mgr *mp, 238196316099SVasu Dev bool (*match)(struct fc_frame *)) 238296316099SVasu Dev { 238396316099SVasu Dev struct fc_exch_mgr_anchor *ema; 238496316099SVasu Dev 238596316099SVasu Dev ema = kmalloc(sizeof(*ema), GFP_ATOMIC); 238696316099SVasu Dev if (!ema) 238796316099SVasu Dev return ema; 238896316099SVasu Dev 238996316099SVasu Dev ema->mp = mp; 239096316099SVasu Dev ema->match = match; 239196316099SVasu Dev /* add EM anchor to EM anchors list */ 239296316099SVasu Dev list_add_tail(&ema->ema_list, &lport->ema_list); 239396316099SVasu Dev kref_get(&mp->kref); 239496316099SVasu Dev return ema; 239596316099SVasu Dev } 239696316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_add); 239796316099SVasu Dev 23983a3b42bfSRobert Love /** 23993a3b42bfSRobert Love * fc_exch_mgr_destroy() - Destroy an exchange manager 24003a3b42bfSRobert Love * @kref: The reference to the EM to be destroyed 24013a3b42bfSRobert Love */ 240296316099SVasu Dev static void fc_exch_mgr_destroy(struct kref *kref) 240396316099SVasu Dev { 240496316099SVasu Dev struct fc_exch_mgr *mp = container_of(kref, struct fc_exch_mgr, kref); 240596316099SVasu Dev 240696316099SVasu Dev mempool_destroy(mp->ep_pool); 2407e4bc50beSVasu Dev free_percpu(mp->pool); 240896316099SVasu Dev kfree(mp); 240996316099SVasu Dev } 241096316099SVasu Dev 24113a3b42bfSRobert Love /** 24123a3b42bfSRobert Love * fc_exch_mgr_del() - Delete an EM from a local port's list 24133a3b42bfSRobert Love * @ema: The exchange manager anchor identifying the EM to be deleted 24143a3b42bfSRobert Love */ 241596316099SVasu Dev void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema) 241696316099SVasu Dev { 241796316099SVasu Dev /* remove EM anchor from EM anchors list */ 241896316099SVasu Dev list_del(&ema->ema_list); 241996316099SVasu Dev kref_put(&ema->mp->kref, fc_exch_mgr_destroy); 242096316099SVasu Dev kfree(ema); 242196316099SVasu Dev } 242296316099SVasu Dev EXPORT_SYMBOL(fc_exch_mgr_del); 242396316099SVasu Dev 2424174e1ebfSChris Leech /** 24253a3b42bfSRobert Love * fc_exch_mgr_list_clone() - Share all exchange manager objects 24263a3b42bfSRobert Love * @src: Source lport to clone exchange managers from 24273a3b42bfSRobert Love * @dst: New lport that takes references to all the exchange managers 2428174e1ebfSChris Leech */ 2429174e1ebfSChris Leech int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst) 2430174e1ebfSChris Leech { 2431174e1ebfSChris Leech struct fc_exch_mgr_anchor *ema, *tmp; 2432174e1ebfSChris Leech 2433174e1ebfSChris Leech list_for_each_entry(ema, &src->ema_list, ema_list) { 2434174e1ebfSChris Leech if (!fc_exch_mgr_add(dst, ema->mp, ema->match)) 2435174e1ebfSChris Leech goto err; 2436174e1ebfSChris Leech } 2437174e1ebfSChris Leech return 0; 2438174e1ebfSChris Leech err: 2439174e1ebfSChris Leech list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list) 2440174e1ebfSChris Leech fc_exch_mgr_del(ema); 2441174e1ebfSChris Leech return -ENOMEM; 2442174e1ebfSChris Leech } 244372fa396bSVasu Dev EXPORT_SYMBOL(fc_exch_mgr_list_clone); 2444174e1ebfSChris Leech 24453a3b42bfSRobert Love /** 24463a3b42bfSRobert Love * fc_exch_mgr_alloc() - Allocate an exchange manager 24473a3b42bfSRobert Love * @lport: The local port that the new EM will be associated with 24483a3b42bfSRobert Love * @class: The default FC class for new exchanges 24493a3b42bfSRobert Love * @min_xid: The minimum XID for exchanges from the new EM 24503a3b42bfSRobert Love * @max_xid: The maximum XID for exchanges from the new EM 24513a3b42bfSRobert Love * @match: The match routine for the new EM 24523a3b42bfSRobert Love */ 24533a3b42bfSRobert Love struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport, 245442e9a92fSRobert Love enum fc_class class, 245552ff878cSVasu Dev u16 min_xid, u16 max_xid, 245652ff878cSVasu Dev bool (*match)(struct fc_frame *)) 245742e9a92fSRobert Love { 245842e9a92fSRobert Love struct fc_exch_mgr *mp; 2459e4bc50beSVasu Dev u16 pool_exch_range; 2460e4bc50beSVasu Dev size_t pool_size; 2461e4bc50beSVasu Dev unsigned int cpu; 2462e4bc50beSVasu Dev struct fc_exch_pool *pool; 246342e9a92fSRobert Love 2464e4bc50beSVasu Dev if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN || 2465e4bc50beSVasu Dev (min_xid & fc_cpu_mask) != 0) { 24663a3b42bfSRobert Love FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n", 246742e9a92fSRobert Love min_xid, max_xid); 246842e9a92fSRobert Love return NULL; 246942e9a92fSRobert Love } 247042e9a92fSRobert Love 247142e9a92fSRobert Love /* 2472b2f0091fSVasu Dev * allocate memory for EM 247342e9a92fSRobert Love */ 2474b2f0091fSVasu Dev mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC); 247542e9a92fSRobert Love if (!mp) 247642e9a92fSRobert Love return NULL; 247742e9a92fSRobert Love 247842e9a92fSRobert Love mp->class = class; 24799ca1e182SHannes Reinecke mp->lport = lport; 248042e9a92fSRobert Love /* adjust em exch xid range for offload */ 248142e9a92fSRobert Love mp->min_xid = min_xid; 2482011a9008SSteven Clark 2483011a9008SSteven Clark /* reduce range so per cpu pool fits into PCPU_MIN_UNIT_SIZE pool */ 2484011a9008SSteven Clark pool_exch_range = (PCPU_MIN_UNIT_SIZE - sizeof(*pool)) / 2485011a9008SSteven Clark sizeof(struct fc_exch *); 2486011a9008SSteven Clark if ((max_xid - min_xid + 1) / (fc_cpu_mask + 1) > pool_exch_range) { 2487011a9008SSteven Clark mp->max_xid = pool_exch_range * (fc_cpu_mask + 1) + 2488011a9008SSteven Clark min_xid - 1; 2489011a9008SSteven Clark } else { 249042e9a92fSRobert Love mp->max_xid = max_xid; 2491011a9008SSteven Clark pool_exch_range = (mp->max_xid - mp->min_xid + 1) / 2492011a9008SSteven Clark (fc_cpu_mask + 1); 2493011a9008SSteven Clark } 249442e9a92fSRobert Love 249542e9a92fSRobert Love mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep); 249642e9a92fSRobert Love if (!mp->ep_pool) 249742e9a92fSRobert Love goto free_mp; 249842e9a92fSRobert Love 2499e4bc50beSVasu Dev /* 2500e4bc50beSVasu Dev * Setup per cpu exch pool with entire exchange id range equally 2501e4bc50beSVasu Dev * divided across all cpus. The exch pointers array memory is 2502e4bc50beSVasu Dev * allocated for exch range per pool. 2503e4bc50beSVasu Dev */ 2504e4bc50beSVasu Dev mp->pool_max_index = pool_exch_range - 1; 2505e4bc50beSVasu Dev 2506e4bc50beSVasu Dev /* 2507e4bc50beSVasu Dev * Allocate and initialize per cpu exch pool 2508e4bc50beSVasu Dev */ 2509e4bc50beSVasu Dev pool_size = sizeof(*pool) + pool_exch_range * sizeof(struct fc_exch *); 2510e4bc50beSVasu Dev mp->pool = __alloc_percpu(pool_size, __alignof__(struct fc_exch_pool)); 2511e4bc50beSVasu Dev if (!mp->pool) 2512e4bc50beSVasu Dev goto free_mempool; 2513e4bc50beSVasu Dev for_each_possible_cpu(cpu) { 2514e4bc50beSVasu Dev pool = per_cpu_ptr(mp->pool, cpu); 2515b6e3c840SVasu Dev pool->next_index = 0; 25162034c19cSHillf Danton pool->left = FC_XID_UNKNOWN; 25172034c19cSHillf Danton pool->right = FC_XID_UNKNOWN; 2518e4bc50beSVasu Dev spin_lock_init(&pool->lock); 2519e4bc50beSVasu Dev INIT_LIST_HEAD(&pool->ex_list); 2520e4bc50beSVasu Dev } 2521e4bc50beSVasu Dev 252252ff878cSVasu Dev kref_init(&mp->kref); 25233a3b42bfSRobert Love if (!fc_exch_mgr_add(lport, mp, match)) { 2524e4bc50beSVasu Dev free_percpu(mp->pool); 2525e4bc50beSVasu Dev goto free_mempool; 252652ff878cSVasu Dev } 252752ff878cSVasu Dev 252852ff878cSVasu Dev /* 252952ff878cSVasu Dev * Above kref_init() sets mp->kref to 1 and then 253052ff878cSVasu Dev * call to fc_exch_mgr_add incremented mp->kref again, 253152ff878cSVasu Dev * so adjust that extra increment. 253252ff878cSVasu Dev */ 253352ff878cSVasu Dev kref_put(&mp->kref, fc_exch_mgr_destroy); 253442e9a92fSRobert Love return mp; 253542e9a92fSRobert Love 2536e4bc50beSVasu Dev free_mempool: 2537e4bc50beSVasu Dev mempool_destroy(mp->ep_pool); 253842e9a92fSRobert Love free_mp: 253942e9a92fSRobert Love kfree(mp); 254042e9a92fSRobert Love return NULL; 254142e9a92fSRobert Love } 254242e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_alloc); 254342e9a92fSRobert Love 25443a3b42bfSRobert Love /** 25453a3b42bfSRobert Love * fc_exch_mgr_free() - Free all exchange managers on a local port 25463a3b42bfSRobert Love * @lport: The local port whose EMs are to be freed 25473a3b42bfSRobert Love */ 254852ff878cSVasu Dev void fc_exch_mgr_free(struct fc_lport *lport) 254942e9a92fSRobert Love { 255052ff878cSVasu Dev struct fc_exch_mgr_anchor *ema, *next; 255152ff878cSVasu Dev 25524ae1e19fSVasu Dev flush_workqueue(fc_exch_workqueue); 255352ff878cSVasu Dev list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list) 255452ff878cSVasu Dev fc_exch_mgr_del(ema); 255542e9a92fSRobert Love } 255642e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_mgr_free); 255742e9a92fSRobert Love 25583a3b42bfSRobert Love /** 25596c8cc1c0SKiran Patil * fc_find_ema() - Lookup and return appropriate Exchange Manager Anchor depending 25606c8cc1c0SKiran Patil * upon 'xid'. 25616c8cc1c0SKiran Patil * @f_ctl: f_ctl 25626c8cc1c0SKiran Patil * @lport: The local port the frame was received on 25636c8cc1c0SKiran Patil * @fh: The received frame header 25646c8cc1c0SKiran Patil */ 25656c8cc1c0SKiran Patil static struct fc_exch_mgr_anchor *fc_find_ema(u32 f_ctl, 25666c8cc1c0SKiran Patil struct fc_lport *lport, 25676c8cc1c0SKiran Patil struct fc_frame_header *fh) 25686c8cc1c0SKiran Patil { 25696c8cc1c0SKiran Patil struct fc_exch_mgr_anchor *ema; 25706c8cc1c0SKiran Patil u16 xid; 25716c8cc1c0SKiran Patil 25726c8cc1c0SKiran Patil if (f_ctl & FC_FC_EX_CTX) 25736c8cc1c0SKiran Patil xid = ntohs(fh->fh_ox_id); 25746c8cc1c0SKiran Patil else { 25756c8cc1c0SKiran Patil xid = ntohs(fh->fh_rx_id); 25766c8cc1c0SKiran Patil if (xid == FC_XID_UNKNOWN) 25776c8cc1c0SKiran Patil return list_entry(lport->ema_list.prev, 25786c8cc1c0SKiran Patil typeof(*ema), ema_list); 25796c8cc1c0SKiran Patil } 25806c8cc1c0SKiran Patil 25816c8cc1c0SKiran Patil list_for_each_entry(ema, &lport->ema_list, ema_list) { 25826c8cc1c0SKiran Patil if ((xid >= ema->mp->min_xid) && 25836c8cc1c0SKiran Patil (xid <= ema->mp->max_xid)) 25846c8cc1c0SKiran Patil return ema; 25856c8cc1c0SKiran Patil } 25866c8cc1c0SKiran Patil return NULL; 25876c8cc1c0SKiran Patil } 25886c8cc1c0SKiran Patil /** 25893a3b42bfSRobert Love * fc_exch_recv() - Handler for received frames 25903a3b42bfSRobert Love * @lport: The local port the frame was received on 25913a3b42bfSRobert Love * @fp: The received frame 259242e9a92fSRobert Love */ 25933a3b42bfSRobert Love void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp) 259442e9a92fSRobert Love { 259542e9a92fSRobert Love struct fc_frame_header *fh = fc_frame_header_get(fp); 259652ff878cSVasu Dev struct fc_exch_mgr_anchor *ema; 25976c8cc1c0SKiran Patil u32 f_ctl; 259842e9a92fSRobert Love 259942e9a92fSRobert Love /* lport lock ? */ 26003a3b42bfSRobert Love if (!lport || lport->state == LPORT_ST_DISABLED) { 26013a3b42bfSRobert Love FC_LPORT_DBG(lport, "Receiving frames for an lport that " 26027414705eSRobert Love "has not been initialized correctly\n"); 260342e9a92fSRobert Love fc_frame_free(fp); 260442e9a92fSRobert Love return; 260542e9a92fSRobert Love } 260642e9a92fSRobert Love 260752ff878cSVasu Dev f_ctl = ntoh24(fh->fh_f_ctl); 26086c8cc1c0SKiran Patil ema = fc_find_ema(f_ctl, lport, fh); 26096c8cc1c0SKiran Patil if (!ema) { 26106c8cc1c0SKiran Patil FC_LPORT_DBG(lport, "Unable to find Exchange Manager Anchor," 26116c8cc1c0SKiran Patil "fc_ctl <0x%x>, xid <0x%x>\n", 26126c8cc1c0SKiran Patil f_ctl, 26136c8cc1c0SKiran Patil (f_ctl & FC_FC_EX_CTX) ? 26146c8cc1c0SKiran Patil ntohs(fh->fh_ox_id) : 26156c8cc1c0SKiran Patil ntohs(fh->fh_rx_id)); 261652ff878cSVasu Dev fc_frame_free(fp); 261752ff878cSVasu Dev return; 261852ff878cSVasu Dev } 261952ff878cSVasu Dev 262042e9a92fSRobert Love /* 262142e9a92fSRobert Love * If frame is marked invalid, just drop it. 262242e9a92fSRobert Love */ 262342e9a92fSRobert Love switch (fr_eof(fp)) { 262442e9a92fSRobert Love case FC_EOF_T: 262542e9a92fSRobert Love if (f_ctl & FC_FC_END_SEQ) 262642e9a92fSRobert Love skb_trim(fp_skb(fp), fr_len(fp) - FC_FC_FILL(f_ctl)); 262742e9a92fSRobert Love /* fall through */ 262842e9a92fSRobert Love case FC_EOF_N: 262942e9a92fSRobert Love if (fh->fh_type == FC_TYPE_BLS) 263052ff878cSVasu Dev fc_exch_recv_bls(ema->mp, fp); 263142e9a92fSRobert Love else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) == 263242e9a92fSRobert Love FC_FC_EX_CTX) 263352ff878cSVasu Dev fc_exch_recv_seq_resp(ema->mp, fp); 263442e9a92fSRobert Love else if (f_ctl & FC_FC_SEQ_CTX) 263552ff878cSVasu Dev fc_exch_recv_resp(ema->mp, fp); 263692261156SJoe Eykholt else /* no EX_CTX and no SEQ_CTX */ 26373a3b42bfSRobert Love fc_exch_recv_req(lport, ema->mp, fp); 263842e9a92fSRobert Love break; 263942e9a92fSRobert Love default: 26403a3b42bfSRobert Love FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)", 26413a3b42bfSRobert Love fr_eof(fp)); 264242e9a92fSRobert Love fc_frame_free(fp); 264342e9a92fSRobert Love } 264442e9a92fSRobert Love } 264542e9a92fSRobert Love EXPORT_SYMBOL(fc_exch_recv); 264642e9a92fSRobert Love 26473a3b42bfSRobert Love /** 26483a3b42bfSRobert Love * fc_exch_init() - Initialize the exchange layer for a local port 26493a3b42bfSRobert Love * @lport: The local port to initialize the exchange layer for 26503a3b42bfSRobert Love */ 26513a3b42bfSRobert Love int fc_exch_init(struct fc_lport *lport) 265242e9a92fSRobert Love { 26533a3b42bfSRobert Love if (!lport->tt.exch_mgr_reset) 26543a3b42bfSRobert Love lport->tt.exch_mgr_reset = fc_exch_mgr_reset; 265542e9a92fSRobert Love 2656239e8104SJoe Eykholt if (!lport->tt.seq_assign) 2657239e8104SJoe Eykholt lport->tt.seq_assign = fc_seq_assign; 2658239e8104SJoe Eykholt 265962bdb645SJoe Eykholt if (!lport->tt.seq_release) 266062bdb645SJoe Eykholt lport->tt.seq_release = fc_seq_release; 266162bdb645SJoe Eykholt 266289f19a59SVasu Dev return 0; 266389f19a59SVasu Dev } 266489f19a59SVasu Dev EXPORT_SYMBOL(fc_exch_init); 266589f19a59SVasu Dev 266689f19a59SVasu Dev /** 266789f19a59SVasu Dev * fc_setup_exch_mgr() - Setup an exchange manager 266889f19a59SVasu Dev */ 266955204909SRandy Dunlap int fc_setup_exch_mgr(void) 267089f19a59SVasu Dev { 267189f19a59SVasu Dev fc_em_cachep = kmem_cache_create("libfc_em", sizeof(struct fc_exch), 267289f19a59SVasu Dev 0, SLAB_HWCACHE_ALIGN, NULL); 267389f19a59SVasu Dev if (!fc_em_cachep) 267489f19a59SVasu Dev return -ENOMEM; 267589f19a59SVasu Dev 2676e4bc50beSVasu Dev /* 2677e4bc50beSVasu Dev * Initialize fc_cpu_mask and fc_cpu_order. The 2678e4bc50beSVasu Dev * fc_cpu_mask is set for nr_cpu_ids rounded up 2679e4bc50beSVasu Dev * to order of 2's * power and order is stored 2680e4bc50beSVasu Dev * in fc_cpu_order as this is later required in 2681e4bc50beSVasu Dev * mapping between an exch id and exch array index 2682e4bc50beSVasu Dev * in per cpu exch pool. 2683e4bc50beSVasu Dev * 2684e4bc50beSVasu Dev * This round up is required to align fc_cpu_mask 2685e4bc50beSVasu Dev * to exchange id's lower bits such that all incoming 2686e4bc50beSVasu Dev * frames of an exchange gets delivered to the same 2687e4bc50beSVasu Dev * cpu on which exchange originated by simple bitwise 2688e4bc50beSVasu Dev * AND operation between fc_cpu_mask and exchange id. 2689e4bc50beSVasu Dev */ 2690a84ea8c7SBart Van Assche fc_cpu_order = ilog2(roundup_pow_of_two(nr_cpu_ids)); 2691a84ea8c7SBart Van Assche fc_cpu_mask = (1 << fc_cpu_order) - 1; 2692e4bc50beSVasu Dev 26934ae1e19fSVasu Dev fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue"); 26944ae1e19fSVasu Dev if (!fc_exch_workqueue) 26956f06e3a7SHillf Danton goto err; 269642e9a92fSRobert Love return 0; 26976f06e3a7SHillf Danton err: 26986f06e3a7SHillf Danton kmem_cache_destroy(fc_em_cachep); 26996f06e3a7SHillf Danton return -ENOMEM; 270042e9a92fSRobert Love } 270142e9a92fSRobert Love 27023a3b42bfSRobert Love /** 27033a3b42bfSRobert Love * fc_destroy_exch_mgr() - Destroy an exchange manager 27043a3b42bfSRobert Love */ 270555204909SRandy Dunlap void fc_destroy_exch_mgr(void) 270642e9a92fSRobert Love { 27074ae1e19fSVasu Dev destroy_workqueue(fc_exch_workqueue); 270842e9a92fSRobert Love kmem_cache_destroy(fc_em_cachep); 270942e9a92fSRobert Love } 2710