fc_exch.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502
  1. /*
  2. * Copyright(c) 2007 Intel Corporation. All rights reserved.
  3. * Copyright(c) 2008 Red Hat, Inc. All rights reserved.
  4. * Copyright(c) 2008 Mike Christie
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc.,
  17. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  18. *
  19. * Maintained at www.Open-FCoE.org
  20. */
  21. /*
  22. * Fibre Channel exchange and sequence handling.
  23. */
  24. #include <linux/timer.h>
  25. #include <linux/slab.h>
  26. #include <linux/err.h>
  27. #include <scsi/fc/fc_fc2.h>
  28. #include <scsi/libfc.h>
  29. #include <scsi/fc_encode.h>
  30. #include "fc_libfc.h"
  31. u16 fc_cpu_mask; /* cpu mask for possible cpus */
  32. EXPORT_SYMBOL(fc_cpu_mask);
  33. static u16 fc_cpu_order; /* 2's power to represent total possible cpus */
  34. static struct kmem_cache *fc_em_cachep; /* cache for exchanges */
  35. static struct workqueue_struct *fc_exch_workqueue;
  36. /*
  37. * Structure and function definitions for managing Fibre Channel Exchanges
  38. * and Sequences.
  39. *
  40. * The three primary structures used here are fc_exch_mgr, fc_exch, and fc_seq.
  41. *
  42. * fc_exch_mgr holds the exchange state for an N port
  43. *
  44. * fc_exch holds state for one exchange and links to its active sequence.
  45. *
  46. * fc_seq holds the state for an individual sequence.
  47. */
  48. /**
  49. * struct fc_exch_pool - Per cpu exchange pool
  50. * @next_index: Next possible free exchange index
  51. * @total_exches: Total allocated exchanges
  52. * @lock: Exch pool lock
  53. * @ex_list: List of exchanges
  54. *
  55. * This structure manages per cpu exchanges in array of exchange pointers.
  56. * This array is allocated followed by struct fc_exch_pool memory for
  57. * assigned range of exchanges to per cpu pool.
  58. */
  59. struct fc_exch_pool {
  60. spinlock_t lock;
  61. struct list_head ex_list;
  62. u16 next_index;
  63. u16 total_exches;
  64. /* two cache of free slot in exch array */
  65. u16 left;
  66. u16 right;
  67. } ____cacheline_aligned_in_smp;
  68. /**
  69. * struct fc_exch_mgr - The Exchange Manager (EM).
  70. * @class: Default class for new sequences
  71. * @kref: Reference counter
  72. * @min_xid: Minimum exchange ID
  73. * @max_xid: Maximum exchange ID
  74. * @ep_pool: Reserved exchange pointers
  75. * @pool_max_index: Max exch array index in exch pool
  76. * @pool: Per cpu exch pool
  77. * @stats: Statistics structure
  78. *
  79. * This structure is the center for creating exchanges and sequences.
  80. * It manages the allocation of exchange IDs.
  81. */
  82. struct fc_exch_mgr {
  83. struct fc_exch_pool *pool;
  84. mempool_t *ep_pool;
  85. enum fc_class class;
  86. struct kref kref;
  87. u16 min_xid;
  88. u16 max_xid;
  89. u16 pool_max_index;
  90. /*
  91. * currently exchange mgr stats are updated but not used.
  92. * either stats can be expose via sysfs or remove them
  93. * all together if not used XXX
  94. */
  95. struct {
  96. atomic_t no_free_exch;
  97. atomic_t no_free_exch_xid;
  98. atomic_t xid_not_found;
  99. atomic_t xid_busy;
  100. atomic_t seq_not_found;
  101. atomic_t non_bls_resp;
  102. } stats;
  103. };
  104. /**
  105. * struct fc_exch_mgr_anchor - primary structure for list of EMs
  106. * @ema_list: Exchange Manager Anchor list
  107. * @mp: Exchange Manager associated with this anchor
  108. * @match: Routine to determine if this anchor's EM should be used
  109. *
  110. * When walking the list of anchors the match routine will be called
  111. * for each anchor to determine if that EM should be used. The last
  112. * anchor in the list will always match to handle any exchanges not
  113. * handled by other EMs. The non-default EMs would be added to the
  114. * anchor list by HW that provides FCoE offloads.
  115. */
  116. struct fc_exch_mgr_anchor {
  117. struct list_head ema_list;
  118. struct fc_exch_mgr *mp;
  119. bool (*match)(struct fc_frame *);
  120. };
  121. static void fc_exch_rrq(struct fc_exch *);
  122. static void fc_seq_ls_acc(struct fc_frame *);
  123. static void fc_seq_ls_rjt(struct fc_frame *, enum fc_els_rjt_reason,
  124. enum fc_els_rjt_explan);
  125. static void fc_exch_els_rec(struct fc_frame *);
  126. static void fc_exch_els_rrq(struct fc_frame *);
  127. /*
  128. * Internal implementation notes.
  129. *
  130. * The exchange manager is one by default in libfc but LLD may choose
  131. * to have one per CPU. The sequence manager is one per exchange manager
  132. * and currently never separated.
  133. *
  134. * Section 9.8 in FC-FS-2 specifies: "The SEQ_ID is a one-byte field
  135. * assigned by the Sequence Initiator that shall be unique for a specific
  136. * D_ID and S_ID pair while the Sequence is open." Note that it isn't
  137. * qualified by exchange ID, which one might think it would be.
  138. * In practice this limits the number of open sequences and exchanges to 256
  139. * per session. For most targets we could treat this limit as per exchange.
  140. *
  141. * The exchange and its sequence are freed when the last sequence is received.
  142. * It's possible for the remote port to leave an exchange open without
  143. * sending any sequences.
  144. *
  145. * Notes on reference counts:
  146. *
  147. * Exchanges are reference counted and exchange gets freed when the reference
  148. * count becomes zero.
  149. *
  150. * Timeouts:
  151. * Sequences are timed out for E_D_TOV and R_A_TOV.
  152. *
  153. * Sequence event handling:
  154. *
  155. * The following events may occur on initiator sequences:
  156. *
  157. * Send.
  158. * For now, the whole thing is sent.
  159. * Receive ACK
  160. * This applies only to class F.
  161. * The sequence is marked complete.
  162. * ULP completion.
  163. * The upper layer calls fc_exch_done() when done
  164. * with exchange and sequence tuple.
  165. * RX-inferred completion.
  166. * When we receive the next sequence on the same exchange, we can
  167. * retire the previous sequence ID. (XXX not implemented).
  168. * Timeout.
  169. * R_A_TOV frees the sequence ID. If we're waiting for ACK,
  170. * E_D_TOV causes abort and calls upper layer response handler
  171. * with FC_EX_TIMEOUT error.
  172. * Receive RJT
  173. * XXX defer.
  174. * Send ABTS
  175. * On timeout.
  176. *
  177. * The following events may occur on recipient sequences:
  178. *
  179. * Receive
  180. * Allocate sequence for first frame received.
  181. * Hold during receive handler.
  182. * Release when final frame received.
  183. * Keep status of last N of these for the ELS RES command. XXX TBD.
  184. * Receive ABTS
  185. * Deallocate sequence
  186. * Send RJT
  187. * Deallocate
  188. *
  189. * For now, we neglect conditions where only part of a sequence was
  190. * received or transmitted, or where out-of-order receipt is detected.
  191. */
  192. /*
  193. * Locking notes:
  194. *
  195. * The EM code run in a per-CPU worker thread.
  196. *
  197. * To protect against concurrency between a worker thread code and timers,
  198. * sequence allocation and deallocation must be locked.
  199. * - exchange refcnt can be done atomicly without locks.
  200. * - sequence allocation must be locked by exch lock.
  201. * - If the EM pool lock and ex_lock must be taken at the same time, then the
  202. * EM pool lock must be taken before the ex_lock.
  203. */
  204. /*
  205. * opcode names for debugging.
  206. */
  207. static char *fc_exch_rctl_names[] = FC_RCTL_NAMES_INIT;
  208. /**
  209. * fc_exch_name_lookup() - Lookup name by opcode
  210. * @op: Opcode to be looked up
  211. * @table: Opcode/name table
  212. * @max_index: Index not to be exceeded
  213. *
  214. * This routine is used to determine a human-readable string identifying
  215. * a R_CTL opcode.
  216. */
  217. static inline const char *fc_exch_name_lookup(unsigned int op, char **table,
  218. unsigned int max_index)
  219. {
  220. const char *name = NULL;
  221. if (op < max_index)
  222. name = table[op];
  223. if (!name)
  224. name = "unknown";
  225. return name;
  226. }
  227. /**
  228. * fc_exch_rctl_name() - Wrapper routine for fc_exch_name_lookup()
  229. * @op: The opcode to be looked up
  230. */
  231. static const char *fc_exch_rctl_name(unsigned int op)
  232. {
  233. return fc_exch_name_lookup(op, fc_exch_rctl_names,
  234. ARRAY_SIZE(fc_exch_rctl_names));
  235. }
  236. /**
  237. * fc_exch_hold() - Increment an exchange's reference count
  238. * @ep: Echange to be held
  239. */
  240. static inline void fc_exch_hold(struct fc_exch *ep)
  241. {
  242. atomic_inc(&ep->ex_refcnt);
  243. }
  244. /**
  245. * fc_exch_setup_hdr() - Initialize a FC header by initializing some fields
  246. * and determine SOF and EOF.
  247. * @ep: The exchange to that will use the header
  248. * @fp: The frame whose header is to be modified
  249. * @f_ctl: F_CTL bits that will be used for the frame header
  250. *
  251. * The fields initialized by this routine are: fh_ox_id, fh_rx_id,
  252. * fh_seq_id, fh_seq_cnt and the SOF and EOF.
  253. */
  254. static void fc_exch_setup_hdr(struct fc_exch *ep, struct fc_frame *fp,
  255. u32 f_ctl)
  256. {
  257. struct fc_frame_header *fh = fc_frame_header_get(fp);
  258. u16 fill;
  259. fr_sof(fp) = ep->class;
  260. if (ep->seq.cnt)
  261. fr_sof(fp) = fc_sof_normal(ep->class);
  262. if (f_ctl & FC_FC_END_SEQ) {
  263. fr_eof(fp) = FC_EOF_T;
  264. if (fc_sof_needs_ack(ep->class))
  265. fr_eof(fp) = FC_EOF_N;
  266. /*
  267. * From F_CTL.
  268. * The number of fill bytes to make the length a 4-byte
  269. * multiple is the low order 2-bits of the f_ctl.
  270. * The fill itself will have been cleared by the frame
  271. * allocation.
  272. * After this, the length will be even, as expected by
  273. * the transport.
  274. */
  275. fill = fr_len(fp) & 3;
  276. if (fill) {
  277. fill = 4 - fill;
  278. /* TODO, this may be a problem with fragmented skb */
  279. skb_put(fp_skb(fp), fill);
  280. hton24(fh->fh_f_ctl, f_ctl | fill);
  281. }
  282. } else {
  283. WARN_ON(fr_len(fp) % 4 != 0); /* no pad to non last frame */
  284. fr_eof(fp) = FC_EOF_N;
  285. }
  286. /*
  287. * Initialize remainig fh fields
  288. * from fc_fill_fc_hdr
  289. */
  290. fh->fh_ox_id = htons(ep->oxid);
  291. fh->fh_rx_id = htons(ep->rxid);
  292. fh->fh_seq_id = ep->seq.id;
  293. fh->fh_seq_cnt = htons(ep->seq.cnt);
  294. }
  295. /**
  296. * fc_exch_release() - Decrement an exchange's reference count
  297. * @ep: Exchange to be released
  298. *
  299. * If the reference count reaches zero and the exchange is complete,
  300. * it is freed.
  301. */
  302. static void fc_exch_release(struct fc_exch *ep)
  303. {
  304. struct fc_exch_mgr *mp;
  305. if (atomic_dec_and_test(&ep->ex_refcnt)) {
  306. mp = ep->em;
  307. if (ep->destructor)
  308. ep->destructor(&ep->seq, ep->arg);
  309. WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE));
  310. mempool_free(ep, mp->ep_pool);
  311. }
  312. }
  313. /**
  314. * fc_exch_done_locked() - Complete an exchange with the exchange lock held
  315. * @ep: The exchange that is complete
  316. */
  317. static int fc_exch_done_locked(struct fc_exch *ep)
  318. {
  319. int rc = 1;
  320. /*
  321. * We must check for completion in case there are two threads
  322. * tyring to complete this. But the rrq code will reuse the
  323. * ep, and in that case we only clear the resp and set it as
  324. * complete, so it can be reused by the timer to send the rrq.
  325. */
  326. ep->resp = NULL;
  327. if (ep->state & FC_EX_DONE)
  328. return rc;
  329. ep->esb_stat |= ESB_ST_COMPLETE;
  330. if (!(ep->esb_stat & ESB_ST_REC_QUAL)) {
  331. ep->state |= FC_EX_DONE;
  332. if (cancel_delayed_work(&ep->timeout_work))
  333. atomic_dec(&ep->ex_refcnt); /* drop hold for timer */
  334. rc = 0;
  335. }
  336. return rc;
  337. }
  338. /**
  339. * fc_exch_ptr_get() - Return an exchange from an exchange pool
  340. * @pool: Exchange Pool to get an exchange from
  341. * @index: Index of the exchange within the pool
  342. *
  343. * Use the index to get an exchange from within an exchange pool. exches
  344. * will point to an array of exchange pointers. The index will select
  345. * the exchange within the array.
  346. */
  347. static inline struct fc_exch *fc_exch_ptr_get(struct fc_exch_pool *pool,
  348. u16 index)
  349. {
  350. struct fc_exch **exches = (struct fc_exch **)(pool + 1);
  351. return exches[index];
  352. }
  353. /**
  354. * fc_exch_ptr_set() - Assign an exchange to a slot in an exchange pool
  355. * @pool: The pool to assign the exchange to
  356. * @index: The index in the pool where the exchange will be assigned
  357. * @ep: The exchange to assign to the pool
  358. */
  359. static inline void fc_exch_ptr_set(struct fc_exch_pool *pool, u16 index,
  360. struct fc_exch *ep)
  361. {
  362. ((struct fc_exch **)(pool + 1))[index] = ep;
  363. }
  364. /**
  365. * fc_exch_delete() - Delete an exchange
  366. * @ep: The exchange to be deleted
  367. */
  368. static void fc_exch_delete(struct fc_exch *ep)
  369. {
  370. struct fc_exch_pool *pool;
  371. u16 index;
  372. pool = ep->pool;
  373. spin_lock_bh(&pool->lock);
  374. WARN_ON(pool->total_exches <= 0);
  375. pool->total_exches--;
  376. /* update cache of free slot */
  377. index = (ep->xid - ep->em->min_xid) >> fc_cpu_order;
  378. if (pool->left == FC_XID_UNKNOWN)
  379. pool->left = index;
  380. else if (pool->right == FC_XID_UNKNOWN)
  381. pool->right = index;
  382. else
  383. pool->next_index = index;
  384. fc_exch_ptr_set(pool, index, NULL);
  385. list_del(&ep->ex_list);
  386. spin_unlock_bh(&pool->lock);
  387. fc_exch_release(ep); /* drop hold for exch in mp */
  388. }
  389. /**
  390. * fc_exch_timer_set_locked() - Start a timer for an exchange w/ the
  391. * the exchange lock held
  392. * @ep: The exchange whose timer will start
  393. * @timer_msec: The timeout period
  394. *
  395. * Used for upper level protocols to time out the exchange.
  396. * The timer is cancelled when it fires or when the exchange completes.
  397. */
  398. static inline void fc_exch_timer_set_locked(struct fc_exch *ep,
  399. unsigned int timer_msec)
  400. {
  401. if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE))
  402. return;
  403. FC_EXCH_DBG(ep, "Exchange timer armed\n");
  404. if (queue_delayed_work(fc_exch_workqueue, &ep->timeout_work,
  405. msecs_to_jiffies(timer_msec)))
  406. fc_exch_hold(ep); /* hold for timer */
  407. }
  408. /**
  409. * fc_exch_timer_set() - Lock the exchange and set the timer
  410. * @ep: The exchange whose timer will start
  411. * @timer_msec: The timeout period
  412. */
  413. static void fc_exch_timer_set(struct fc_exch *ep, unsigned int timer_msec)
  414. {
  415. spin_lock_bh(&ep->ex_lock);
  416. fc_exch_timer_set_locked(ep, timer_msec);
  417. spin_unlock_bh(&ep->ex_lock);
  418. }
  419. /**
  420. * fc_seq_send() - Send a frame using existing sequence/exchange pair
  421. * @lport: The local port that the exchange will be sent on
  422. * @sp: The sequence to be sent
  423. * @fp: The frame to be sent on the exchange
  424. */
  425. static int fc_seq_send(struct fc_lport *lport, struct fc_seq *sp,
  426. struct fc_frame *fp)
  427. {
  428. struct fc_exch *ep;
  429. struct fc_frame_header *fh = fc_frame_header_get(fp);
  430. int error;
  431. u32 f_ctl;
  432. ep = fc_seq_exch(sp);
  433. WARN_ON((ep->esb_stat & ESB_ST_SEQ_INIT) != ESB_ST_SEQ_INIT);
  434. f_ctl = ntoh24(fh->fh_f_ctl);
  435. fc_exch_setup_hdr(ep, fp, f_ctl);
  436. fr_encaps(fp) = ep->encaps;
  437. /*
  438. * update sequence count if this frame is carrying
  439. * multiple FC frames when sequence offload is enabled
  440. * by LLD.
  441. */
  442. if (fr_max_payload(fp))
  443. sp->cnt += DIV_ROUND_UP((fr_len(fp) - sizeof(*fh)),
  444. fr_max_payload(fp));
  445. else
  446. sp->cnt++;
  447. /*
  448. * Send the frame.
  449. */
  450. error = lport->tt.frame_send(lport, fp);
  451. if (fh->fh_type == FC_TYPE_BLS)
  452. return error;
  453. /*
  454. * Update the exchange and sequence flags,
  455. * assuming all frames for the sequence have been sent.
  456. * We can only be called to send once for each sequence.
  457. */
  458. spin_lock_bh(&ep->ex_lock);
  459. ep->f_ctl = f_ctl & ~FC_FC_FIRST_SEQ; /* not first seq */
  460. if (f_ctl & FC_FC_SEQ_INIT)
  461. ep->esb_stat &= ~ESB_ST_SEQ_INIT;
  462. spin_unlock_bh(&ep->ex_lock);
  463. return error;
  464. }
  465. /**
  466. * fc_seq_alloc() - Allocate a sequence for a given exchange
  467. * @ep: The exchange to allocate a new sequence for
  468. * @seq_id: The sequence ID to be used
  469. *
  470. * We don't support multiple originated sequences on the same exchange.
  471. * By implication, any previously originated sequence on this exchange
  472. * is complete, and we reallocate the same sequence.
  473. */
  474. static struct fc_seq *fc_seq_alloc(struct fc_exch *ep, u8 seq_id)
  475. {
  476. struct fc_seq *sp;
  477. sp = &ep->seq;
  478. sp->ssb_stat = 0;
  479. sp->cnt = 0;
  480. sp->id = seq_id;
  481. return sp;
  482. }
  483. /**
  484. * fc_seq_start_next_locked() - Allocate a new sequence on the same
  485. * exchange as the supplied sequence
  486. * @sp: The sequence/exchange to get a new sequence for
  487. */
  488. static struct fc_seq *fc_seq_start_next_locked(struct fc_seq *sp)
  489. {
  490. struct fc_exch *ep = fc_seq_exch(sp);
  491. sp = fc_seq_alloc(ep, ep->seq_id++);
  492. FC_EXCH_DBG(ep, "f_ctl %6x seq %2x\n",
  493. ep->f_ctl, sp->id);
  494. return sp;
  495. }
  496. /**
  497. * fc_seq_start_next() - Lock the exchange and get a new sequence
  498. * for a given sequence/exchange pair
  499. * @sp: The sequence/exchange to get a new exchange for
  500. */
  501. static struct fc_seq *fc_seq_start_next(struct fc_seq *sp)
  502. {
  503. struct fc_exch *ep = fc_seq_exch(sp);
  504. spin_lock_bh(&ep->ex_lock);
  505. sp = fc_seq_start_next_locked(sp);
  506. spin_unlock_bh(&ep->ex_lock);
  507. return sp;
  508. }
  509. /*
  510. * Set the response handler for the exchange associated with a sequence.
  511. */
  512. static void fc_seq_set_resp(struct fc_seq *sp,
  513. void (*resp)(struct fc_seq *, struct fc_frame *,
  514. void *),
  515. void *arg)
  516. {
  517. struct fc_exch *ep = fc_seq_exch(sp);
  518. spin_lock_bh(&ep->ex_lock);
  519. ep->resp = resp;
  520. ep->arg = arg;
  521. spin_unlock_bh(&ep->ex_lock);
  522. }
  523. /**
  524. * fc_exch_abort_locked() - Abort an exchange
  525. * @ep: The exchange to be aborted
  526. * @timer_msec: The period of time to wait before aborting
  527. *
  528. * Locking notes: Called with exch lock held
  529. *
  530. * Return value: 0 on success else error code
  531. */
  532. static int fc_exch_abort_locked(struct fc_exch *ep,
  533. unsigned int timer_msec)
  534. {
  535. struct fc_seq *sp;
  536. struct fc_frame *fp;
  537. int error;
  538. if (ep->esb_stat & (ESB_ST_COMPLETE | ESB_ST_ABNORMAL) ||
  539. ep->state & (FC_EX_DONE | FC_EX_RST_CLEANUP))
  540. return -ENXIO;
  541. /*
  542. * Send the abort on a new sequence if possible.
  543. */
  544. sp = fc_seq_start_next_locked(&ep->seq);
  545. if (!sp)
  546. return -ENOMEM;
  547. ep->esb_stat |= ESB_ST_SEQ_INIT | ESB_ST_ABNORMAL;
  548. if (timer_msec)
  549. fc_exch_timer_set_locked(ep, timer_msec);
  550. /*
  551. * If not logged into the fabric, don't send ABTS but leave
  552. * sequence active until next timeout.
  553. */
  554. if (!ep->sid)
  555. return 0;
  556. /*
  557. * Send an abort for the sequence that timed out.
  558. */
  559. fp = fc_frame_alloc(ep->lp, 0);
  560. if (fp) {
  561. fc_fill_fc_hdr(fp, FC_RCTL_BA_ABTS, ep->did, ep->sid,
  562. FC_TYPE_BLS, FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0);
  563. error = fc_seq_send(ep->lp, sp, fp);
  564. } else
  565. error = -ENOBUFS;
  566. return error;
  567. }
  568. /**
  569. * fc_seq_exch_abort() - Abort an exchange and sequence
  570. * @req_sp: The sequence to be aborted
  571. * @timer_msec: The period of time to wait before aborting
  572. *
  573. * Generally called because of a timeout or an abort from the upper layer.
  574. *
  575. * Return value: 0 on success else error code
  576. */
  577. static int fc_seq_exch_abort(const struct fc_seq *req_sp,
  578. unsigned int timer_msec)
  579. {
  580. struct fc_exch *ep;
  581. int error;
  582. ep = fc_seq_exch(req_sp);
  583. spin_lock_bh(&ep->ex_lock);
  584. error = fc_exch_abort_locked(ep, timer_msec);
  585. spin_unlock_bh(&ep->ex_lock);
  586. return error;
  587. }
  588. /**
  589. * fc_exch_timeout() - Handle exchange timer expiration
  590. * @work: The work_struct identifying the exchange that timed out
  591. */
  592. static void fc_exch_timeout(struct work_struct *work)
  593. {
  594. struct fc_exch *ep = container_of(work, struct fc_exch,
  595. timeout_work.work);
  596. struct fc_seq *sp = &ep->seq;
  597. void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg);
  598. void *arg;
  599. u32 e_stat;
  600. int rc = 1;
  601. FC_EXCH_DBG(ep, "Exchange timed out\n");
  602. spin_lock_bh(&ep->ex_lock);
  603. if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE))
  604. goto unlock;
  605. e_stat = ep->esb_stat;
  606. if (e_stat & ESB_ST_COMPLETE) {
  607. ep->esb_stat = e_stat & ~ESB_ST_REC_QUAL;
  608. spin_unlock_bh(&ep->ex_lock);
  609. if (e_stat & ESB_ST_REC_QUAL)
  610. fc_exch_rrq(ep);
  611. goto done;
  612. } else {
  613. resp = ep->resp;
  614. arg = ep->arg;
  615. ep->resp = NULL;
  616. if (e_stat & ESB_ST_ABNORMAL)
  617. rc = fc_exch_done_locked(ep);
  618. spin_unlock_bh(&ep->ex_lock);
  619. if (!rc)
  620. fc_exch_delete(ep);
  621. if (resp)
  622. resp(sp, ERR_PTR(-FC_EX_TIMEOUT), arg);
  623. fc_seq_exch_abort(sp, 2 * ep->r_a_tov);
  624. goto done;
  625. }
  626. unlock:
  627. spin_unlock_bh(&ep->ex_lock);
  628. done:
  629. /*
  630. * This release matches the hold taken when the timer was set.
  631. */
  632. fc_exch_release(ep);
  633. }
  634. /**
  635. * fc_exch_em_alloc() - Allocate an exchange from a specified EM.
  636. * @lport: The local port that the exchange is for
  637. * @mp: The exchange manager that will allocate the exchange
  638. *
  639. * Returns pointer to allocated fc_exch with exch lock held.
  640. */
  641. static struct fc_exch *fc_exch_em_alloc(struct fc_lport *lport,
  642. struct fc_exch_mgr *mp)
  643. {
  644. struct fc_exch *ep;
  645. unsigned int cpu;
  646. u16 index;
  647. struct fc_exch_pool *pool;
  648. /* allocate memory for exchange */
  649. ep = mempool_alloc(mp->ep_pool, GFP_ATOMIC);
  650. if (!ep) {
  651. atomic_inc(&mp->stats.no_free_exch);
  652. goto out;
  653. }
  654. memset(ep, 0, sizeof(*ep));
  655. cpu = get_cpu();
  656. pool = per_cpu_ptr(mp->pool, cpu);
  657. spin_lock_bh(&pool->lock);
  658. put_cpu();
  659. /* peek cache of free slot */
  660. if (pool->left != FC_XID_UNKNOWN) {
  661. index = pool->left;
  662. pool->left = FC_XID_UNKNOWN;
  663. goto hit;
  664. }
  665. if (pool->right != FC_XID_UNKNOWN) {
  666. index = pool->right;
  667. pool->right = FC_XID_UNKNOWN;
  668. goto hit;
  669. }
  670. index = pool->next_index;
  671. /* allocate new exch from pool */
  672. while (fc_exch_ptr_get(pool, index)) {
  673. index = index == mp->pool_max_index ? 0 : index + 1;
  674. if (index == pool->next_index)
  675. goto err;
  676. }
  677. pool->next_index = index == mp->pool_max_index ? 0 : index + 1;
  678. hit:
  679. fc_exch_hold(ep); /* hold for exch in mp */
  680. spin_lock_init(&ep->ex_lock);
  681. /*
  682. * Hold exch lock for caller to prevent fc_exch_reset()
  683. * from releasing exch while fc_exch_alloc() caller is
  684. * still working on exch.
  685. */
  686. spin_lock_bh(&ep->ex_lock);
  687. fc_exch_ptr_set(pool, index, ep);
  688. list_add_tail(&ep->ex_list, &pool->ex_list);
  689. fc_seq_alloc(ep, ep->seq_id++);
  690. pool->total_exches++;
  691. spin_unlock_bh(&pool->lock);
  692. /*
  693. * update exchange
  694. */
  695. ep->oxid = ep->xid = (index << fc_cpu_order | cpu) + mp->min_xid;
  696. ep->em = mp;
  697. ep->pool = pool;
  698. ep->lp = lport;
  699. ep->f_ctl = FC_FC_FIRST_SEQ; /* next seq is first seq */
  700. ep->rxid = FC_XID_UNKNOWN;
  701. ep->class = mp->class;
  702. INIT_DELAYED_WORK(&ep->timeout_work, fc_exch_timeout);
  703. out:
  704. return ep;
  705. err:
  706. spin_unlock_bh(&pool->lock);
  707. atomic_inc(&mp->stats.no_free_exch_xid);
  708. mempool_free(ep, mp->ep_pool);
  709. return NULL;
  710. }
  711. /**
  712. * fc_exch_alloc() - Allocate an exchange from an EM on a
  713. * local port's list of EMs.
  714. * @lport: The local port that will own the exchange
  715. * @fp: The FC frame that the exchange will be for
  716. *
  717. * This function walks the list of exchange manager(EM)
  718. * anchors to select an EM for a new exchange allocation. The
  719. * EM is selected when a NULL match function pointer is encountered
  720. * or when a call to a match function returns true.
  721. */
  722. static inline struct fc_exch *fc_exch_alloc(struct fc_lport *lport,
  723. struct fc_frame *fp)
  724. {
  725. struct fc_exch_mgr_anchor *ema;
  726. list_for_each_entry(ema, &lport->ema_list, ema_list)
  727. if (!ema->match || ema->match(fp))
  728. return fc_exch_em_alloc(lport, ema->mp);
  729. return NULL;
  730. }
  731. /**
  732. * fc_exch_find() - Lookup and hold an exchange
  733. * @mp: The exchange manager to lookup the exchange from
  734. * @xid: The XID of the exchange to look up
  735. */
  736. static struct fc_exch *fc_exch_find(struct fc_exch_mgr *mp, u16 xid)
  737. {
  738. struct fc_exch_pool *pool;
  739. struct fc_exch *ep = NULL;
  740. if ((xid >= mp->min_xid) && (xid <= mp->max_xid)) {
  741. pool = per_cpu_ptr(mp->pool, xid & fc_cpu_mask);
  742. spin_lock_bh(&pool->lock);
  743. ep = fc_exch_ptr_get(pool, (xid - mp->min_xid) >> fc_cpu_order);
  744. if (ep && ep->xid == xid)
  745. fc_exch_hold(ep);
  746. spin_unlock_bh(&pool->lock);
  747. }
  748. return ep;
  749. }
  750. /**
  751. * fc_exch_done() - Indicate that an exchange/sequence tuple is complete and
  752. * the memory allocated for the related objects may be freed.
  753. * @sp: The sequence that has completed
  754. */
  755. static void fc_exch_done(struct fc_seq *sp)
  756. {
  757. struct fc_exch *ep = fc_seq_exch(sp);
  758. int rc;
  759. spin_lock_bh(&ep->ex_lock);
  760. rc = fc_exch_done_locked(ep);
  761. spin_unlock_bh(&ep->ex_lock);
  762. if (!rc)
  763. fc_exch_delete(ep);
  764. }
  765. /**
  766. * fc_exch_resp() - Allocate a new exchange for a response frame
  767. * @lport: The local port that the exchange was for
  768. * @mp: The exchange manager to allocate the exchange from
  769. * @fp: The response frame
  770. *
  771. * Sets the responder ID in the frame header.
  772. */
  773. static struct fc_exch *fc_exch_resp(struct fc_lport *lport,
  774. struct fc_exch_mgr *mp,
  775. struct fc_frame *fp)
  776. {
  777. struct fc_exch *ep;
  778. struct fc_frame_header *fh;
  779. ep = fc_exch_alloc(lport, fp);
  780. if (ep) {
  781. ep->class = fc_frame_class(fp);
  782. /*
  783. * Set EX_CTX indicating we're responding on this exchange.
  784. */
  785. ep->f_ctl |= FC_FC_EX_CTX; /* we're responding */
  786. ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not new */
  787. fh = fc_frame_header_get(fp);
  788. ep->sid = ntoh24(fh->fh_d_id);
  789. ep->did = ntoh24(fh->fh_s_id);
  790. ep->oid = ep->did;
  791. /*
  792. * Allocated exchange has placed the XID in the
  793. * originator field. Move it to the responder field,
  794. * and set the originator XID from the frame.
  795. */
  796. ep->rxid = ep->xid;
  797. ep->oxid = ntohs(fh->fh_ox_id);
  798. ep->esb_stat |= ESB_ST_RESP | ESB_ST_SEQ_INIT;
  799. if ((ntoh24(fh->fh_f_ctl) & FC_FC_SEQ_INIT) == 0)
  800. ep->esb_stat &= ~ESB_ST_SEQ_INIT;
  801. fc_exch_hold(ep); /* hold for caller */
  802. spin_unlock_bh(&ep->ex_lock); /* lock from fc_exch_alloc */
  803. }
  804. return ep;
  805. }
  806. /**
  807. * fc_seq_lookup_recip() - Find a sequence where the other end
  808. * originated the sequence
  809. * @lport: The local port that the frame was sent to
  810. * @mp: The Exchange Manager to lookup the exchange from
  811. * @fp: The frame associated with the sequence we're looking for
  812. *
  813. * If fc_pf_rjt_reason is FC_RJT_NONE then this function will have a hold
  814. * on the ep that should be released by the caller.
  815. */
  816. static enum fc_pf_rjt_reason fc_seq_lookup_recip(struct fc_lport *lport,
  817. struct fc_exch_mgr *mp,
  818. struct fc_frame *fp)
  819. {
  820. struct fc_frame_header *fh = fc_frame_header_get(fp);
  821. struct fc_exch *ep = NULL;
  822. struct fc_seq *sp = NULL;
  823. enum fc_pf_rjt_reason reject = FC_RJT_NONE;
  824. u32 f_ctl;
  825. u16 xid;
  826. f_ctl = ntoh24(fh->fh_f_ctl);
  827. WARN_ON((f_ctl & FC_FC_SEQ_CTX) != 0);
  828. /*
  829. * Lookup or create the exchange if we will be creating the sequence.
  830. */
  831. if (f_ctl & FC_FC_EX_CTX) {
  832. xid = ntohs(fh->fh_ox_id); /* we originated exch */
  833. ep = fc_exch_find(mp, xid);
  834. if (!ep) {
  835. atomic_inc(&mp->stats.xid_not_found);
  836. reject = FC_RJT_OX_ID;
  837. goto out;
  838. }
  839. if (ep->rxid == FC_XID_UNKNOWN)
  840. ep->rxid = ntohs(fh->fh_rx_id);
  841. else if (ep->rxid != ntohs(fh->fh_rx_id)) {
  842. reject = FC_RJT_OX_ID;
  843. goto rel;
  844. }
  845. } else {
  846. xid = ntohs(fh->fh_rx_id); /* we are the responder */
  847. /*
  848. * Special case for MDS issuing an ELS TEST with a
  849. * bad rxid of 0.
  850. * XXX take this out once we do the proper reject.
  851. */
  852. if (xid == 0 && fh->fh_r_ctl == FC_RCTL_ELS_REQ &&
  853. fc_frame_payload_op(fp) == ELS_TEST) {
  854. fh->fh_rx_id = htons(FC_XID_UNKNOWN);
  855. xid = FC_XID_UNKNOWN;
  856. }
  857. /*
  858. * new sequence - find the exchange
  859. */
  860. ep = fc_exch_find(mp, xid);
  861. if ((f_ctl & FC_FC_FIRST_SEQ) && fc_sof_is_init(fr_sof(fp))) {
  862. if (ep) {
  863. atomic_inc(&mp->stats.xid_busy);
  864. reject = FC_RJT_RX_ID;
  865. goto rel;
  866. }
  867. ep = fc_exch_resp(lport, mp, fp);
  868. if (!ep) {
  869. reject = FC_RJT_EXCH_EST; /* XXX */
  870. goto out;
  871. }
  872. xid = ep->xid; /* get our XID */
  873. } else if (!ep) {
  874. atomic_inc(&mp->stats.xid_not_found);
  875. reject = FC_RJT_RX_ID; /* XID not found */
  876. goto out;
  877. }
  878. }
  879. /*
  880. * At this point, we have the exchange held.
  881. * Find or create the sequence.
  882. */
  883. if (fc_sof_is_init(fr_sof(fp))) {
  884. sp = &ep->seq;
  885. sp->ssb_stat |= SSB_ST_RESP;
  886. sp->id = fh->fh_seq_id;
  887. } else {
  888. sp = &ep->seq;
  889. if (sp->id != fh->fh_seq_id) {
  890. atomic_inc(&mp->stats.seq_not_found);
  891. if (f_ctl & FC_FC_END_SEQ) {
  892. /*
  893. * Update sequence_id based on incoming last
  894. * frame of sequence exchange. This is needed
  895. * for FCoE target where DDP has been used
  896. * on target where, stack is indicated only
  897. * about last frame's (payload _header) header.
  898. * Whereas "seq_id" which is part of
  899. * frame_header is allocated by initiator
  900. * which is totally different from "seq_id"
  901. * allocated when XFER_RDY was sent by target.
  902. * To avoid false -ve which results into not
  903. * sending RSP, hence write request on other
  904. * end never finishes.
  905. */
  906. spin_lock_bh(&ep->ex_lock);
  907. sp->ssb_stat |= SSB_ST_RESP;
  908. sp->id = fh->fh_seq_id;
  909. spin_unlock_bh(&ep->ex_lock);
  910. } else {
  911. /* sequence/exch should exist */
  912. reject = FC_RJT_SEQ_ID;
  913. goto rel;
  914. }
  915. }
  916. }
  917. WARN_ON(ep != fc_seq_exch(sp));
  918. if (f_ctl & FC_FC_SEQ_INIT)
  919. ep->esb_stat |= ESB_ST_SEQ_INIT;
  920. fr_seq(fp) = sp;
  921. out:
  922. return reject;
  923. rel:
  924. fc_exch_done(&ep->seq);
  925. fc_exch_release(ep); /* hold from fc_exch_find/fc_exch_resp */
  926. return reject;
  927. }
  928. /**
  929. * fc_seq_lookup_orig() - Find a sequence where this end
  930. * originated the sequence
  931. * @mp: The Exchange Manager to lookup the exchange from
  932. * @fp: The frame associated with the sequence we're looking for
  933. *
  934. * Does not hold the sequence for the caller.
  935. */
  936. static struct fc_seq *fc_seq_lookup_orig(struct fc_exch_mgr *mp,
  937. struct fc_frame *fp)
  938. {
  939. struct fc_frame_header *fh = fc_frame_header_get(fp);
  940. struct fc_exch *ep;
  941. struct fc_seq *sp = NULL;
  942. u32 f_ctl;
  943. u16 xid;
  944. f_ctl = ntoh24(fh->fh_f_ctl);
  945. WARN_ON((f_ctl & FC_FC_SEQ_CTX) != FC_FC_SEQ_CTX);
  946. xid = ntohs((f_ctl & FC_FC_EX_CTX) ? fh->fh_ox_id : fh->fh_rx_id);
  947. ep = fc_exch_find(mp, xid);
  948. if (!ep)
  949. return NULL;
  950. if (ep->seq.id == fh->fh_seq_id) {
  951. /*
  952. * Save the RX_ID if we didn't previously know it.
  953. */
  954. sp = &ep->seq;
  955. if ((f_ctl & FC_FC_EX_CTX) != 0 &&
  956. ep->rxid == FC_XID_UNKNOWN) {
  957. ep->rxid = ntohs(fh->fh_rx_id);
  958. }
  959. }
  960. fc_exch_release(ep);
  961. return sp;
  962. }
  963. /**
  964. * fc_exch_set_addr() - Set the source and destination IDs for an exchange
  965. * @ep: The exchange to set the addresses for
  966. * @orig_id: The originator's ID
  967. * @resp_id: The responder's ID
  968. *
  969. * Note this must be done before the first sequence of the exchange is sent.
  970. */
  971. static void fc_exch_set_addr(struct fc_exch *ep,
  972. u32 orig_id, u32 resp_id)
  973. {
  974. ep->oid = orig_id;
  975. if (ep->esb_stat & ESB_ST_RESP) {
  976. ep->sid = resp_id;
  977. ep->did = orig_id;
  978. } else {
  979. ep->sid = orig_id;
  980. ep->did = resp_id;
  981. }
  982. }
  983. /**
  984. * fc_seq_els_rsp_send() - Send an ELS response using information from
  985. * the existing sequence/exchange.
  986. * @fp: The received frame
  987. * @els_cmd: The ELS command to be sent
  988. * @els_data: The ELS data to be sent
  989. *
  990. * The received frame is not freed.
  991. */
  992. static void fc_seq_els_rsp_send(struct fc_frame *fp, enum fc_els_cmd els_cmd,
  993. struct fc_seq_els_data *els_data)
  994. {
  995. switch (els_cmd) {
  996. case ELS_LS_RJT:
  997. fc_seq_ls_rjt(fp, els_data->reason, els_data->explan);
  998. break;
  999. case ELS_LS_ACC:
  1000. fc_seq_ls_acc(fp);
  1001. break;
  1002. case ELS_RRQ:
  1003. fc_exch_els_rrq(fp);
  1004. break;
  1005. case ELS_REC:
  1006. fc_exch_els_rec(fp);
  1007. break;
  1008. default:
  1009. FC_LPORT_DBG(fr_dev(fp), "Invalid ELS CMD:%x\n", els_cmd);
  1010. }
  1011. }
  1012. /**
  1013. * fc_seq_send_last() - Send a sequence that is the last in the exchange
  1014. * @sp: The sequence that is to be sent
  1015. * @fp: The frame that will be sent on the sequence
  1016. * @rctl: The R_CTL information to be sent
  1017. * @fh_type: The frame header type
  1018. */
  1019. static void fc_seq_send_last(struct fc_seq *sp, struct fc_frame *fp,
  1020. enum fc_rctl rctl, enum fc_fh_type fh_type)
  1021. {
  1022. u32 f_ctl;
  1023. struct fc_exch *ep = fc_seq_exch(sp);
  1024. f_ctl = FC_FC_LAST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT;
  1025. f_ctl |= ep->f_ctl;
  1026. fc_fill_fc_hdr(fp, rctl, ep->did, ep->sid, fh_type, f_ctl, 0);
  1027. fc_seq_send(ep->lp, sp, fp);
  1028. }
  1029. /**
  1030. * fc_seq_send_ack() - Send an acknowledgement that we've received a frame
  1031. * @sp: The sequence to send the ACK on
  1032. * @rx_fp: The received frame that is being acknoledged
  1033. *
  1034. * Send ACK_1 (or equiv.) indicating we received something.
  1035. */
  1036. static void fc_seq_send_ack(struct fc_seq *sp, const struct fc_frame *rx_fp)
  1037. {
  1038. struct fc_frame *fp;
  1039. struct fc_frame_header *rx_fh;
  1040. struct fc_frame_header *fh;
  1041. struct fc_exch *ep = fc_seq_exch(sp);
  1042. struct fc_lport *lport = ep->lp;
  1043. unsigned int f_ctl;
  1044. /*
  1045. * Don't send ACKs for class 3.
  1046. */
  1047. if (fc_sof_needs_ack(fr_sof(rx_fp))) {
  1048. fp = fc_frame_alloc(lport, 0);
  1049. if (!fp)
  1050. return;
  1051. fh = fc_frame_header_get(fp);
  1052. fh->fh_r_ctl = FC_RCTL_ACK_1;
  1053. fh->fh_type = FC_TYPE_BLS;
  1054. /*
  1055. * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22).
  1056. * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT.
  1057. * Bits 9-8 are meaningful (retransmitted or unidirectional).
  1058. * Last ACK uses bits 7-6 (continue sequence),
  1059. * bits 5-4 are meaningful (what kind of ACK to use).
  1060. */
  1061. rx_fh = fc_frame_header_get(rx_fp);
  1062. f_ctl = ntoh24(rx_fh->fh_f_ctl);
  1063. f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX |
  1064. FC_FC_FIRST_SEQ | FC_FC_LAST_SEQ |
  1065. FC_FC_END_SEQ | FC_FC_END_CONN | FC_FC_SEQ_INIT |
  1066. FC_FC_RETX_SEQ | FC_FC_UNI_TX;
  1067. f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX;
  1068. hton24(fh->fh_f_ctl, f_ctl);
  1069. fc_exch_setup_hdr(ep, fp, f_ctl);
  1070. fh->fh_seq_id = rx_fh->fh_seq_id;
  1071. fh->fh_seq_cnt = rx_fh->fh_seq_cnt;
  1072. fh->fh_parm_offset = htonl(1); /* ack single frame */
  1073. fr_sof(fp) = fr_sof(rx_fp);
  1074. if (f_ctl & FC_FC_END_SEQ)
  1075. fr_eof(fp) = FC_EOF_T;
  1076. else
  1077. fr_eof(fp) = FC_EOF_N;
  1078. lport->tt.frame_send(lport, fp);
  1079. }
  1080. }
  1081. /**
  1082. * fc_exch_send_ba_rjt() - Send BLS Reject
  1083. * @rx_fp: The frame being rejected
  1084. * @reason: The reason the frame is being rejected
  1085. * @explan: The explanation for the rejection
  1086. *
  1087. * This is for rejecting BA_ABTS only.
  1088. */
  1089. static void fc_exch_send_ba_rjt(struct fc_frame *rx_fp,
  1090. enum fc_ba_rjt_reason reason,
  1091. enum fc_ba_rjt_explan explan)
  1092. {
  1093. struct fc_frame *fp;
  1094. struct fc_frame_header *rx_fh;
  1095. struct fc_frame_header *fh;
  1096. struct fc_ba_rjt *rp;
  1097. struct fc_lport *lport;
  1098. unsigned int f_ctl;
  1099. lport = fr_dev(rx_fp);
  1100. fp = fc_frame_alloc(lport, sizeof(*rp));
  1101. if (!fp)
  1102. return;
  1103. fh = fc_frame_header_get(fp);
  1104. rx_fh = fc_frame_header_get(rx_fp);
  1105. memset(fh, 0, sizeof(*fh) + sizeof(*rp));
  1106. rp = fc_frame_payload_get(fp, sizeof(*rp));
  1107. rp->br_reason = reason;
  1108. rp->br_explan = explan;
  1109. /*
  1110. * seq_id, cs_ctl, df_ctl and param/offset are zero.
  1111. */
  1112. memcpy(fh->fh_s_id, rx_fh->fh_d_id, 3);
  1113. memcpy(fh->fh_d_id, rx_fh->fh_s_id, 3);
  1114. fh->fh_ox_id = rx_fh->fh_ox_id;
  1115. fh->fh_rx_id = rx_fh->fh_rx_id;
  1116. fh->fh_seq_cnt = rx_fh->fh_seq_cnt;
  1117. fh->fh_r_ctl = FC_RCTL_BA_RJT;
  1118. fh->fh_type = FC_TYPE_BLS;
  1119. /*
  1120. * Form f_ctl by inverting EX_CTX and SEQ_CTX (bits 23, 22).
  1121. * Echo FIRST_SEQ, LAST_SEQ, END_SEQ, END_CONN, SEQ_INIT.
  1122. * Bits 9-8 are meaningful (retransmitted or unidirectional).
  1123. * Last ACK uses bits 7-6 (continue sequence),
  1124. * bits 5-4 are meaningful (what kind of ACK to use).
  1125. * Always set LAST_SEQ, END_SEQ.
  1126. */
  1127. f_ctl = ntoh24(rx_fh->fh_f_ctl);
  1128. f_ctl &= FC_FC_EX_CTX | FC_FC_SEQ_CTX |
  1129. FC_FC_END_CONN | FC_FC_SEQ_INIT |
  1130. FC_FC_RETX_SEQ | FC_FC_UNI_TX;
  1131. f_ctl ^= FC_FC_EX_CTX | FC_FC_SEQ_CTX;
  1132. f_ctl |= FC_FC_LAST_SEQ | FC_FC_END_SEQ;
  1133. f_ctl &= ~FC_FC_FIRST_SEQ;
  1134. hton24(fh->fh_f_ctl, f_ctl);
  1135. fr_sof(fp) = fc_sof_class(fr_sof(rx_fp));
  1136. fr_eof(fp) = FC_EOF_T;
  1137. if (fc_sof_needs_ack(fr_sof(fp)))
  1138. fr_eof(fp) = FC_EOF_N;
  1139. lport->tt.frame_send(lport, fp);
  1140. }
  1141. /**
  1142. * fc_exch_recv_abts() - Handle an incoming ABTS
  1143. * @ep: The exchange the abort was on
  1144. * @rx_fp: The ABTS frame
  1145. *
  1146. * This would be for target mode usually, but could be due to lost
  1147. * FCP transfer ready, confirm or RRQ. We always handle this as an
  1148. * exchange abort, ignoring the parameter.
  1149. */
  1150. static void fc_exch_recv_abts(struct fc_exch *ep, struct fc_frame *rx_fp)
  1151. {
  1152. struct fc_frame *fp;
  1153. struct fc_ba_acc *ap;
  1154. struct fc_frame_header *fh;
  1155. struct fc_seq *sp;
  1156. if (!ep)
  1157. goto reject;
  1158. spin_lock_bh(&ep->ex_lock);
  1159. if (ep->esb_stat & ESB_ST_COMPLETE) {
  1160. spin_unlock_bh(&ep->ex_lock);
  1161. goto reject;
  1162. }
  1163. if (!(ep->esb_stat & ESB_ST_REC_QUAL))
  1164. fc_exch_hold(ep); /* hold for REC_QUAL */
  1165. ep->esb_stat |= ESB_ST_ABNORMAL | ESB_ST_REC_QUAL;
  1166. fc_exch_timer_set_locked(ep, ep->r_a_tov);
  1167. fp = fc_frame_alloc(ep->lp, sizeof(*ap));
  1168. if (!fp) {
  1169. spin_unlock_bh(&ep->ex_lock);
  1170. goto free;
  1171. }
  1172. fh = fc_frame_header_get(fp);
  1173. ap = fc_frame_payload_get(fp, sizeof(*ap));
  1174. memset(ap, 0, sizeof(*ap));
  1175. sp = &ep->seq;
  1176. ap->ba_high_seq_cnt = htons(0xffff);
  1177. if (sp->ssb_stat & SSB_ST_RESP) {
  1178. ap->ba_seq_id = sp->id;
  1179. ap->ba_seq_id_val = FC_BA_SEQ_ID_VAL;
  1180. ap->ba_high_seq_cnt = fh->fh_seq_cnt;
  1181. ap->ba_low_seq_cnt = htons(sp->cnt);
  1182. }
  1183. sp = fc_seq_start_next_locked(sp);
  1184. spin_unlock_bh(&ep->ex_lock);
  1185. fc_seq_send_last(sp, fp, FC_RCTL_BA_ACC, FC_TYPE_BLS);
  1186. fc_frame_free(rx_fp);
  1187. return;
  1188. reject:
  1189. fc_exch_send_ba_rjt(rx_fp, FC_BA_RJT_UNABLE, FC_BA_RJT_INV_XID);
  1190. free:
  1191. fc_frame_free(rx_fp);
  1192. }
  1193. /**
  1194. * fc_seq_assign() - Assign exchange and sequence for incoming request
  1195. * @lport: The local port that received the request
  1196. * @fp: The request frame
  1197. *
  1198. * On success, the sequence pointer will be returned and also in fr_seq(@fp).
  1199. * A reference will be held on the exchange/sequence for the caller, which
  1200. * must call fc_seq_release().
  1201. */
  1202. static struct fc_seq *fc_seq_assign(struct fc_lport *lport, struct fc_frame *fp)
  1203. {
  1204. struct fc_exch_mgr_anchor *ema;
  1205. WARN_ON(lport != fr_dev(fp));
  1206. WARN_ON(fr_seq(fp));
  1207. fr_seq(fp) = NULL;
  1208. list_for_each_entry(ema, &lport->ema_list, ema_list)
  1209. if ((!ema->match || ema->match(fp)) &&
  1210. fc_seq_lookup_recip(lport, ema->mp, fp) == FC_RJT_NONE)
  1211. break;
  1212. return fr_seq(fp);
  1213. }
  1214. /**
  1215. * fc_seq_release() - Release the hold
  1216. * @sp: The sequence.
  1217. */
  1218. static void fc_seq_release(struct fc_seq *sp)
  1219. {
  1220. fc_exch_release(fc_seq_exch(sp));
  1221. }
  1222. /**
  1223. * fc_exch_recv_req() - Handler for an incoming request
  1224. * @lport: The local port that received the request
  1225. * @mp: The EM that the exchange is on
  1226. * @fp: The request frame
  1227. *
  1228. * This is used when the other end is originating the exchange
  1229. * and the sequence.
  1230. */
  1231. static void fc_exch_recv_req(struct fc_lport *lport, struct fc_exch_mgr *mp,
  1232. struct fc_frame *fp)
  1233. {
  1234. struct fc_frame_header *fh = fc_frame_header_get(fp);
  1235. struct fc_seq *sp = NULL;
  1236. struct fc_exch *ep = NULL;
  1237. enum fc_pf_rjt_reason reject;
  1238. /* We can have the wrong fc_lport at this point with NPIV, which is a
  1239. * problem now that we know a new exchange needs to be allocated
  1240. */
  1241. lport = fc_vport_id_lookup(lport, ntoh24(fh->fh_d_id));
  1242. if (!lport) {
  1243. fc_frame_free(fp);
  1244. return;
  1245. }
  1246. fr_dev(fp) = lport;
  1247. BUG_ON(fr_seq(fp)); /* XXX remove later */
  1248. /*
  1249. * If the RX_ID is 0xffff, don't allocate an exchange.
  1250. * The upper-level protocol may request one later, if needed.
  1251. */
  1252. if (fh->fh_rx_id == htons(FC_XID_UNKNOWN))
  1253. return lport->tt.lport_recv(lport, fp);
  1254. reject = fc_seq_lookup_recip(lport, mp, fp);
  1255. if (reject == FC_RJT_NONE) {
  1256. sp = fr_seq(fp); /* sequence will be held */
  1257. ep = fc_seq_exch(sp);
  1258. fc_seq_send_ack(sp, fp);
  1259. ep->encaps = fr_encaps(fp);
  1260. /*
  1261. * Call the receive function.
  1262. *
  1263. * The receive function may allocate a new sequence
  1264. * over the old one, so we shouldn't change the
  1265. * sequence after this.
  1266. *
  1267. * The frame will be freed by the receive function.
  1268. * If new exch resp handler is valid then call that
  1269. * first.
  1270. */
  1271. if (ep->resp)
  1272. ep->resp(sp, fp, ep->arg);
  1273. else
  1274. lport->tt.lport_recv(lport, fp);
  1275. fc_exch_release(ep); /* release from lookup */
  1276. } else {
  1277. FC_LPORT_DBG(lport, "exch/seq lookup failed: reject %x\n",
  1278. reject);
  1279. fc_frame_free(fp);
  1280. }
  1281. }
  1282. /**
  1283. * fc_exch_recv_seq_resp() - Handler for an incoming response where the other
  1284. * end is the originator of the sequence that is a
  1285. * response to our initial exchange
  1286. * @mp: The EM that the exchange is on
  1287. * @fp: The response frame
  1288. */
  1289. static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp)
  1290. {
  1291. struct fc_frame_header *fh = fc_frame_header_get(fp);
  1292. struct fc_seq *sp;
  1293. struct fc_exch *ep;
  1294. enum fc_sof sof;
  1295. u32 f_ctl;
  1296. void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg);
  1297. void *ex_resp_arg;
  1298. int rc;
  1299. ep = fc_exch_find(mp, ntohs(fh->fh_ox_id));
  1300. if (!ep) {
  1301. atomic_inc(&mp->stats.xid_not_found);
  1302. goto out;
  1303. }
  1304. if (ep->esb_stat & ESB_ST_COMPLETE) {
  1305. atomic_inc(&mp->stats.xid_not_found);
  1306. goto rel;
  1307. }
  1308. if (ep->rxid == FC_XID_UNKNOWN)
  1309. ep->rxid = ntohs(fh->fh_rx_id);
  1310. if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) {
  1311. atomic_inc(&mp->stats.xid_not_found);
  1312. goto rel;
  1313. }
  1314. if (ep->did != ntoh24(fh->fh_s_id) &&
  1315. ep->did != FC_FID_FLOGI) {
  1316. atomic_inc(&mp->stats.xid_not_found);
  1317. goto rel;
  1318. }
  1319. sof = fr_sof(fp);
  1320. sp = &ep->seq;
  1321. if (fc_sof_is_init(sof)) {
  1322. sp->ssb_stat |= SSB_ST_RESP;
  1323. sp->id = fh->fh_seq_id;
  1324. } else if (sp->id != fh->fh_seq_id) {
  1325. atomic_inc(&mp->stats.seq_not_found);
  1326. goto rel;
  1327. }
  1328. f_ctl = ntoh24(fh->fh_f_ctl);
  1329. fr_seq(fp) = sp;
  1330. if (f_ctl & FC_FC_SEQ_INIT)
  1331. ep->esb_stat |= ESB_ST_SEQ_INIT;
  1332. if (fc_sof_needs_ack(sof))
  1333. fc_seq_send_ack(sp, fp);
  1334. resp = ep->resp;
  1335. ex_resp_arg = ep->arg;
  1336. if (fh->fh_type != FC_TYPE_FCP && fr_eof(fp) == FC_EOF_T &&
  1337. (f_ctl & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) ==
  1338. (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) {
  1339. spin_lock_bh(&ep->ex_lock);
  1340. resp = ep->resp;
  1341. rc = fc_exch_done_locked(ep);
  1342. WARN_ON(fc_seq_exch(sp) != ep);
  1343. spin_unlock_bh(&ep->ex_lock);
  1344. if (!rc)
  1345. fc_exch_delete(ep);
  1346. }
  1347. /*
  1348. * Call the receive function.
  1349. * The sequence is held (has a refcnt) for us,
  1350. * but not for the receive function.
  1351. *
  1352. * The receive function may allocate a new sequence
  1353. * over the old one, so we shouldn't change the
  1354. * sequence after this.
  1355. *
  1356. * The frame will be freed by the receive function.
  1357. * If new exch resp handler is valid then call that
  1358. * first.
  1359. */
  1360. if (resp)
  1361. resp(sp, fp, ex_resp_arg);
  1362. else
  1363. fc_frame_free(fp);
  1364. fc_exch_release(ep);
  1365. return;
  1366. rel:
  1367. fc_exch_release(ep);
  1368. out:
  1369. fc_frame_free(fp);
  1370. }
  1371. /**
  1372. * fc_exch_recv_resp() - Handler for a sequence where other end is
  1373. * responding to our sequence
  1374. * @mp: The EM that the exchange is on
  1375. * @fp: The response frame
  1376. */
  1377. static void fc_exch_recv_resp(struct fc_exch_mgr *mp, struct fc_frame *fp)
  1378. {
  1379. struct fc_seq *sp;
  1380. sp = fc_seq_lookup_orig(mp, fp); /* doesn't hold sequence */
  1381. if (!sp)
  1382. atomic_inc(&mp->stats.xid_not_found);
  1383. else
  1384. atomic_inc(&mp->stats.non_bls_resp);
  1385. fc_frame_free(fp);
  1386. }
  1387. /**
  1388. * fc_exch_abts_resp() - Handler for a response to an ABT
  1389. * @ep: The exchange that the frame is on
  1390. * @fp: The response frame
  1391. *
  1392. * This response would be to an ABTS cancelling an exchange or sequence.
  1393. * The response can be either BA_ACC or BA_RJT
  1394. */
  1395. static void fc_exch_abts_resp(struct fc_exch *ep, struct fc_frame *fp)
  1396. {
  1397. void (*resp)(struct fc_seq *, struct fc_frame *fp, void *arg);
  1398. void *ex_resp_arg;
  1399. struct fc_frame_header *fh;
  1400. struct fc_ba_acc *ap;
  1401. struct fc_seq *sp;
  1402. u16 low;
  1403. u16 high;
  1404. int rc = 1, has_rec = 0;
  1405. fh = fc_frame_header_get(fp);
  1406. FC_EXCH_DBG(ep, "exch: BLS rctl %x - %s\n", fh->fh_r_ctl,
  1407. fc_exch_rctl_name(fh->fh_r_ctl));
  1408. if (cancel_delayed_work_sync(&ep->timeout_work))
  1409. fc_exch_release(ep); /* release from pending timer hold */
  1410. spin_lock_bh(&ep->ex_lock);
  1411. switch (fh->fh_r_ctl) {
  1412. case FC_RCTL_BA_ACC:
  1413. ap = fc_frame_payload_get(fp, sizeof(*ap));
  1414. if (!ap)
  1415. break;
  1416. /*
  1417. * Decide whether to establish a Recovery Qualifier.
  1418. * We do this if there is a non-empty SEQ_CNT range and
  1419. * SEQ_ID is the same as the one we aborted.
  1420. */
  1421. low = ntohs(ap->ba_low_seq_cnt);
  1422. high = ntohs(ap->ba_high_seq_cnt);
  1423. if ((ep->esb_stat & ESB_ST_REC_QUAL) == 0 &&
  1424. (ap->ba_seq_id_val != FC_BA_SEQ_ID_VAL ||
  1425. ap->ba_seq_id == ep->seq_id) && low != high) {
  1426. ep->esb_stat |= ESB_ST_REC_QUAL;
  1427. fc_exch_hold(ep); /* hold for recovery qualifier */
  1428. has_rec = 1;
  1429. }
  1430. break;
  1431. case FC_RCTL_BA_RJT:
  1432. break;
  1433. default:
  1434. break;
  1435. }
  1436. resp = ep->resp;
  1437. ex_resp_arg = ep->arg;
  1438. /* do we need to do some other checks here. Can we reuse more of
  1439. * fc_exch_recv_seq_resp
  1440. */
  1441. sp = &ep->seq;
  1442. /*
  1443. * do we want to check END_SEQ as well as LAST_SEQ here?
  1444. */
  1445. if (ep->fh_type != FC_TYPE_FCP &&
  1446. ntoh24(fh->fh_f_ctl) & FC_FC_LAST_SEQ)
  1447. rc = fc_exch_done_locked(ep);
  1448. spin_unlock_bh(&ep->ex_lock);
  1449. if (!rc)
  1450. fc_exch_delete(ep);
  1451. if (resp)
  1452. resp(sp, fp, ex_resp_arg);
  1453. else
  1454. fc_frame_free(fp);
  1455. if (has_rec)
  1456. fc_exch_timer_set(ep, ep->r_a_tov);
  1457. }
  1458. /**
  1459. * fc_exch_recv_bls() - Handler for a BLS sequence
  1460. * @mp: The EM that the exchange is on
  1461. * @fp: The request frame
  1462. *
  1463. * The BLS frame is always a sequence initiated by the remote side.
  1464. * We may be either the originator or recipient of the exchange.
  1465. */
  1466. static void fc_exch_recv_bls(struct fc_exch_mgr *mp, struct fc_frame *fp)
  1467. {
  1468. struct fc_frame_header *fh;
  1469. struct fc_exch *ep;
  1470. u32 f_ctl;
  1471. fh = fc_frame_header_get(fp);
  1472. f_ctl = ntoh24(fh->fh_f_ctl);
  1473. fr_seq(fp) = NULL;
  1474. ep = fc_exch_find(mp, (f_ctl & FC_FC_EX_CTX) ?
  1475. ntohs(fh->fh_ox_id) : ntohs(fh->fh_rx_id));
  1476. if (ep && (f_ctl & FC_FC_SEQ_INIT)) {
  1477. spin_lock_bh(&ep->ex_lock);
  1478. ep->esb_stat |= ESB_ST_SEQ_INIT;
  1479. spin_unlock_bh(&ep->ex_lock);
  1480. }
  1481. if (f_ctl & FC_FC_SEQ_CTX) {
  1482. /*
  1483. * A response to a sequence we initiated.
  1484. * This should only be ACKs for class 2 or F.
  1485. */
  1486. switch (fh->fh_r_ctl) {
  1487. case FC_RCTL_ACK_1:
  1488. case FC_RCTL_ACK_0:
  1489. break;
  1490. default:
  1491. FC_EXCH_DBG(ep, "BLS rctl %x - %s received",
  1492. fh->fh_r_ctl,
  1493. fc_exch_rctl_name(fh->fh_r_ctl));
  1494. break;
  1495. }
  1496. fc_frame_free(fp);
  1497. } else {
  1498. switch (fh->fh_r_ctl) {
  1499. case FC_RCTL_BA_RJT:
  1500. case FC_RCTL_BA_ACC:
  1501. if (ep)
  1502. fc_exch_abts_resp(ep, fp);
  1503. else
  1504. fc_frame_free(fp);
  1505. break;
  1506. case FC_RCTL_BA_ABTS:
  1507. fc_exch_recv_abts(ep, fp);
  1508. break;
  1509. default: /* ignore junk */
  1510. fc_frame_free(fp);
  1511. break;
  1512. }
  1513. }
  1514. if (ep)
  1515. fc_exch_release(ep); /* release hold taken by fc_exch_find */
  1516. }
  1517. /**
  1518. * fc_seq_ls_acc() - Accept sequence with LS_ACC
  1519. * @rx_fp: The received frame, not freed here.
  1520. *
  1521. * If this fails due to allocation or transmit congestion, assume the
  1522. * originator will repeat the sequence.
  1523. */
  1524. static void fc_seq_ls_acc(struct fc_frame *rx_fp)
  1525. {
  1526. struct fc_lport *lport;
  1527. struct fc_els_ls_acc *acc;
  1528. struct fc_frame *fp;
  1529. lport = fr_dev(rx_fp);
  1530. fp = fc_frame_alloc(lport, sizeof(*acc));
  1531. if (!fp)
  1532. return;
  1533. acc = fc_frame_payload_get(fp, sizeof(*acc));
  1534. memset(acc, 0, sizeof(*acc));
  1535. acc->la_cmd = ELS_LS_ACC;
  1536. fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
  1537. lport->tt.frame_send(lport, fp);
  1538. }
  1539. /**
  1540. * fc_seq_ls_rjt() - Reject a sequence with ELS LS_RJT
  1541. * @rx_fp: The received frame, not freed here.
  1542. * @reason: The reason the sequence is being rejected
  1543. * @explan: The explanation for the rejection
  1544. *
  1545. * If this fails due to allocation or transmit congestion, assume the
  1546. * originator will repeat the sequence.
  1547. */
  1548. static void fc_seq_ls_rjt(struct fc_frame *rx_fp, enum fc_els_rjt_reason reason,
  1549. enum fc_els_rjt_explan explan)
  1550. {
  1551. struct fc_lport *lport;
  1552. struct fc_els_ls_rjt *rjt;
  1553. struct fc_frame *fp;
  1554. lport = fr_dev(rx_fp);
  1555. fp = fc_frame_alloc(lport, sizeof(*rjt));
  1556. if (!fp)
  1557. return;
  1558. rjt = fc_frame_payload_get(fp, sizeof(*rjt));
  1559. memset(rjt, 0, sizeof(*rjt));
  1560. rjt->er_cmd = ELS_LS_RJT;
  1561. rjt->er_reason = reason;
  1562. rjt->er_explan = explan;
  1563. fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
  1564. lport->tt.frame_send(lport, fp);
  1565. }
  1566. /**
  1567. * fc_exch_reset() - Reset an exchange
  1568. * @ep: The exchange to be reset
  1569. */
  1570. static void fc_exch_reset(struct fc_exch *ep)
  1571. {
  1572. struct fc_seq *sp;
  1573. void (*resp)(struct fc_seq *, struct fc_frame *, void *);
  1574. void *arg;
  1575. int rc = 1;
  1576. spin_lock_bh(&ep->ex_lock);
  1577. fc_exch_abort_locked(ep, 0);
  1578. ep->state |= FC_EX_RST_CLEANUP;
  1579. if (cancel_delayed_work(&ep->timeout_work))
  1580. atomic_dec(&ep->ex_refcnt); /* drop hold for timer */
  1581. resp = ep->resp;
  1582. ep->resp = NULL;
  1583. if (ep->esb_stat & ESB_ST_REC_QUAL)
  1584. atomic_dec(&ep->ex_refcnt); /* drop hold for rec_qual */
  1585. ep->esb_stat &= ~ESB_ST_REC_QUAL;
  1586. arg = ep->arg;
  1587. sp = &ep->seq;
  1588. rc = fc_exch_done_locked(ep);
  1589. spin_unlock_bh(&ep->ex_lock);
  1590. if (!rc)
  1591. fc_exch_delete(ep);
  1592. if (resp)
  1593. resp(sp, ERR_PTR(-FC_EX_CLOSED), arg);
  1594. }
  1595. /**
  1596. * fc_exch_pool_reset() - Reset a per cpu exchange pool
  1597. * @lport: The local port that the exchange pool is on
  1598. * @pool: The exchange pool to be reset
  1599. * @sid: The source ID
  1600. * @did: The destination ID
  1601. *
  1602. * Resets a per cpu exches pool, releasing all of its sequences
  1603. * and exchanges. If sid is non-zero then reset only exchanges
  1604. * we sourced from the local port's FID. If did is non-zero then
  1605. * only reset exchanges destined for the local port's FID.
  1606. */
  1607. static void fc_exch_pool_reset(struct fc_lport *lport,
  1608. struct fc_exch_pool *pool,
  1609. u32 sid, u32 did)
  1610. {
  1611. struct fc_exch *ep;
  1612. struct fc_exch *next;
  1613. spin_lock_bh(&pool->lock);
  1614. restart:
  1615. list_for_each_entry_safe(ep, next, &pool->ex_list, ex_list) {
  1616. if ((lport == ep->lp) &&
  1617. (sid == 0 || sid == ep->sid) &&
  1618. (did == 0 || did == ep->did)) {
  1619. fc_exch_hold(ep);
  1620. spin_unlock_bh(&pool->lock);
  1621. fc_exch_reset(ep);
  1622. fc_exch_release(ep);
  1623. spin_lock_bh(&pool->lock);
  1624. /*
  1625. * must restart loop incase while lock
  1626. * was down multiple eps were released.
  1627. */
  1628. goto restart;
  1629. }
  1630. }
  1631. spin_unlock_bh(&pool->lock);
  1632. }
  1633. /**
  1634. * fc_exch_mgr_reset() - Reset all EMs of a local port
  1635. * @lport: The local port whose EMs are to be reset
  1636. * @sid: The source ID
  1637. * @did: The destination ID
  1638. *
  1639. * Reset all EMs associated with a given local port. Release all
  1640. * sequences and exchanges. If sid is non-zero then reset only the
  1641. * exchanges sent from the local port's FID. If did is non-zero then
  1642. * reset only exchanges destined for the local port's FID.
  1643. */
  1644. void fc_exch_mgr_reset(struct fc_lport *lport, u32 sid, u32 did)
  1645. {
  1646. struct fc_exch_mgr_anchor *ema;
  1647. unsigned int cpu;
  1648. list_for_each_entry(ema, &lport->ema_list, ema_list) {
  1649. for_each_possible_cpu(cpu)
  1650. fc_exch_pool_reset(lport,
  1651. per_cpu_ptr(ema->mp->pool, cpu),
  1652. sid, did);
  1653. }
  1654. }
  1655. EXPORT_SYMBOL(fc_exch_mgr_reset);
  1656. /**
  1657. * fc_exch_lookup() - find an exchange
  1658. * @lport: The local port
  1659. * @xid: The exchange ID
  1660. *
  1661. * Returns exchange pointer with hold for caller, or NULL if not found.
  1662. */
  1663. static struct fc_exch *fc_exch_lookup(struct fc_lport *lport, u32 xid)
  1664. {
  1665. struct fc_exch_mgr_anchor *ema;
  1666. list_for_each_entry(ema, &lport->ema_list, ema_list)
  1667. if (ema->mp->min_xid <= xid && xid <= ema->mp->max_xid)
  1668. return fc_exch_find(ema->mp, xid);
  1669. return NULL;
  1670. }
  1671. /**
  1672. * fc_exch_els_rec() - Handler for ELS REC (Read Exchange Concise) requests
  1673. * @rfp: The REC frame, not freed here.
  1674. *
  1675. * Note that the requesting port may be different than the S_ID in the request.
  1676. */
  1677. static void fc_exch_els_rec(struct fc_frame *rfp)
  1678. {
  1679. struct fc_lport *lport;
  1680. struct fc_frame *fp;
  1681. struct fc_exch *ep;
  1682. struct fc_els_rec *rp;
  1683. struct fc_els_rec_acc *acc;
  1684. enum fc_els_rjt_reason reason = ELS_RJT_LOGIC;
  1685. enum fc_els_rjt_explan explan;
  1686. u32 sid;
  1687. u16 rxid;
  1688. u16 oxid;
  1689. lport = fr_dev(rfp);
  1690. rp = fc_frame_payload_get(rfp, sizeof(*rp));
  1691. explan = ELS_EXPL_INV_LEN;
  1692. if (!rp)
  1693. goto reject;
  1694. sid = ntoh24(rp->rec_s_id);
  1695. rxid = ntohs(rp->rec_rx_id);
  1696. oxid = ntohs(rp->rec_ox_id);
  1697. ep = fc_exch_lookup(lport,
  1698. sid == fc_host_port_id(lport->host) ? oxid : rxid);
  1699. explan = ELS_EXPL_OXID_RXID;
  1700. if (!ep)
  1701. goto reject;
  1702. if (ep->oid != sid || oxid != ep->oxid)
  1703. goto rel;
  1704. if (rxid != FC_XID_UNKNOWN && rxid != ep->rxid)
  1705. goto rel;
  1706. fp = fc_frame_alloc(lport, sizeof(*acc));
  1707. if (!fp)
  1708. goto out;
  1709. acc = fc_frame_payload_get(fp, sizeof(*acc));
  1710. memset(acc, 0, sizeof(*acc));
  1711. acc->reca_cmd = ELS_LS_ACC;
  1712. acc->reca_ox_id = rp->rec_ox_id;
  1713. memcpy(acc->reca_ofid, rp->rec_s_id, 3);
  1714. acc->reca_rx_id = htons(ep->rxid);
  1715. if (ep->sid == ep->oid)
  1716. hton24(acc->reca_rfid, ep->did);
  1717. else
  1718. hton24(acc->reca_rfid, ep->sid);
  1719. acc->reca_fc4value = htonl(ep->seq.rec_data);
  1720. acc->reca_e_stat = htonl(ep->esb_stat & (ESB_ST_RESP |
  1721. ESB_ST_SEQ_INIT |
  1722. ESB_ST_COMPLETE));
  1723. fc_fill_reply_hdr(fp, rfp, FC_RCTL_ELS_REP, 0);
  1724. lport->tt.frame_send(lport, fp);
  1725. out:
  1726. fc_exch_release(ep);
  1727. return;
  1728. rel:
  1729. fc_exch_release(ep);
  1730. reject:
  1731. fc_seq_ls_rjt(rfp, reason, explan);
  1732. }
  1733. /**
  1734. * fc_exch_rrq_resp() - Handler for RRQ responses
  1735. * @sp: The sequence that the RRQ is on
  1736. * @fp: The RRQ frame
  1737. * @arg: The exchange that the RRQ is on
  1738. *
  1739. * TODO: fix error handler.
  1740. */
  1741. static void fc_exch_rrq_resp(struct fc_seq *sp, struct fc_frame *fp, void *arg)
  1742. {
  1743. struct fc_exch *aborted_ep = arg;
  1744. unsigned int op;
  1745. if (IS_ERR(fp)) {
  1746. int err = PTR_ERR(fp);
  1747. if (err == -FC_EX_CLOSED || err == -FC_EX_TIMEOUT)
  1748. goto cleanup;
  1749. FC_EXCH_DBG(aborted_ep, "Cannot process RRQ, "
  1750. "frame error %d\n", err);
  1751. return;
  1752. }
  1753. op = fc_frame_payload_op(fp);
  1754. fc_frame_free(fp);
  1755. switch (op) {
  1756. case ELS_LS_RJT:
  1757. FC_EXCH_DBG(aborted_ep, "LS_RJT for RRQ");
  1758. /* fall through */
  1759. case ELS_LS_ACC:
  1760. goto cleanup;
  1761. default:
  1762. FC_EXCH_DBG(aborted_ep, "unexpected response op %x "
  1763. "for RRQ", op);
  1764. return;
  1765. }
  1766. cleanup:
  1767. fc_exch_done(&aborted_ep->seq);
  1768. /* drop hold for rec qual */
  1769. fc_exch_release(aborted_ep);
  1770. }
  1771. /**
  1772. * fc_exch_seq_send() - Send a frame using a new exchange and sequence
  1773. * @lport: The local port to send the frame on
  1774. * @fp: The frame to be sent
  1775. * @resp: The response handler for this request
  1776. * @destructor: The destructor for the exchange
  1777. * @arg: The argument to be passed to the response handler
  1778. * @timer_msec: The timeout period for the exchange
  1779. *
  1780. * The frame pointer with some of the header's fields must be
  1781. * filled before calling this routine, those fields are:
  1782. *
  1783. * - routing control
  1784. * - FC port did
  1785. * - FC port sid
  1786. * - FC header type
  1787. * - frame control
  1788. * - parameter or relative offset
  1789. */
  1790. static struct fc_seq *fc_exch_seq_send(struct fc_lport *lport,
  1791. struct fc_frame *fp,
  1792. void (*resp)(struct fc_seq *,
  1793. struct fc_frame *fp,
  1794. void *arg),
  1795. void (*destructor)(struct fc_seq *,
  1796. void *),
  1797. void *arg, u32 timer_msec)
  1798. {
  1799. struct fc_exch *ep;
  1800. struct fc_seq *sp = NULL;
  1801. struct fc_frame_header *fh;
  1802. struct fc_fcp_pkt *fsp = NULL;
  1803. int rc = 1;
  1804. ep = fc_exch_alloc(lport, fp);
  1805. if (!ep) {
  1806. fc_frame_free(fp);
  1807. return NULL;
  1808. }
  1809. ep->esb_stat |= ESB_ST_SEQ_INIT;
  1810. fh = fc_frame_header_get(fp);
  1811. fc_exch_set_addr(ep, ntoh24(fh->fh_s_id), ntoh24(fh->fh_d_id));
  1812. ep->resp = resp;
  1813. ep->destructor = destructor;
  1814. ep->arg = arg;
  1815. ep->r_a_tov = FC_DEF_R_A_TOV;
  1816. ep->lp = lport;
  1817. sp = &ep->seq;
  1818. ep->fh_type = fh->fh_type; /* save for possbile timeout handling */
  1819. ep->f_ctl = ntoh24(fh->fh_f_ctl);
  1820. fc_exch_setup_hdr(ep, fp, ep->f_ctl);
  1821. sp->cnt++;
  1822. if (ep->xid <= lport->lro_xid && fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) {
  1823. fsp = fr_fsp(fp);
  1824. fc_fcp_ddp_setup(fr_fsp(fp), ep->xid);
  1825. }
  1826. if (unlikely(lport->tt.frame_send(lport, fp)))
  1827. goto err;
  1828. if (timer_msec)
  1829. fc_exch_timer_set_locked(ep, timer_msec);
  1830. ep->f_ctl &= ~FC_FC_FIRST_SEQ; /* not first seq */
  1831. if (ep->f_ctl & FC_FC_SEQ_INIT)
  1832. ep->esb_stat &= ~ESB_ST_SEQ_INIT;
  1833. spin_unlock_bh(&ep->ex_lock);
  1834. return sp;
  1835. err:
  1836. if (fsp)
  1837. fc_fcp_ddp_done(fsp);
  1838. rc = fc_exch_done_locked(ep);
  1839. spin_unlock_bh(&ep->ex_lock);
  1840. if (!rc)
  1841. fc_exch_delete(ep);
  1842. return NULL;
  1843. }
  1844. /**
  1845. * fc_exch_rrq() - Send an ELS RRQ (Reinstate Recovery Qualifier) command
  1846. * @ep: The exchange to send the RRQ on
  1847. *
  1848. * This tells the remote port to stop blocking the use of
  1849. * the exchange and the seq_cnt range.
  1850. */
  1851. static void fc_exch_rrq(struct fc_exch *ep)
  1852. {
  1853. struct fc_lport *lport;
  1854. struct fc_els_rrq *rrq;
  1855. struct fc_frame *fp;
  1856. u32 did;
  1857. lport = ep->lp;
  1858. fp = fc_frame_alloc(lport, sizeof(*rrq));
  1859. if (!fp)
  1860. goto retry;
  1861. rrq = fc_frame_payload_get(fp, sizeof(*rrq));
  1862. memset(rrq, 0, sizeof(*rrq));
  1863. rrq->rrq_cmd = ELS_RRQ;
  1864. hton24(rrq->rrq_s_id, ep->sid);
  1865. rrq->rrq_ox_id = htons(ep->oxid);
  1866. rrq->rrq_rx_id = htons(ep->rxid);
  1867. did = ep->did;
  1868. if (ep->esb_stat & ESB_ST_RESP)
  1869. did = ep->sid;
  1870. fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, did,
  1871. lport->port_id, FC_TYPE_ELS,
  1872. FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0);
  1873. if (fc_exch_seq_send(lport, fp, fc_exch_rrq_resp, NULL, ep,
  1874. lport->e_d_tov))
  1875. return;
  1876. retry:
  1877. spin_lock_bh(&ep->ex_lock);
  1878. if (ep->state & (FC_EX_RST_CLEANUP | FC_EX_DONE)) {
  1879. spin_unlock_bh(&ep->ex_lock);
  1880. /* drop hold for rec qual */
  1881. fc_exch_release(ep);
  1882. return;
  1883. }
  1884. ep->esb_stat |= ESB_ST_REC_QUAL;
  1885. fc_exch_timer_set_locked(ep, ep->r_a_tov);
  1886. spin_unlock_bh(&ep->ex_lock);
  1887. }
  1888. /**
  1889. * fc_exch_els_rrq() - Handler for ELS RRQ (Reset Recovery Qualifier) requests
  1890. * @fp: The RRQ frame, not freed here.
  1891. */
  1892. static void fc_exch_els_rrq(struct fc_frame *fp)
  1893. {
  1894. struct fc_lport *lport;
  1895. struct fc_exch *ep = NULL; /* request or subject exchange */
  1896. struct fc_els_rrq *rp;
  1897. u32 sid;
  1898. u16 xid;
  1899. enum fc_els_rjt_explan explan;
  1900. lport = fr_dev(fp);
  1901. rp = fc_frame_payload_get(fp, sizeof(*rp));
  1902. explan = ELS_EXPL_INV_LEN;
  1903. if (!rp)
  1904. goto reject;
  1905. /*
  1906. * lookup subject exchange.
  1907. */
  1908. sid = ntoh24(rp->rrq_s_id); /* subject source */
  1909. xid = fc_host_port_id(lport->host) == sid ?
  1910. ntohs(rp->rrq_ox_id) : ntohs(rp->rrq_rx_id);
  1911. ep = fc_exch_lookup(lport, xid);
  1912. explan = ELS_EXPL_OXID_RXID;
  1913. if (!ep)
  1914. goto reject;
  1915. spin_lock_bh(&ep->ex_lock);
  1916. if (ep->oxid != ntohs(rp->rrq_ox_id))
  1917. goto unlock_reject;
  1918. if (ep->rxid != ntohs(rp->rrq_rx_id) &&
  1919. ep->rxid != FC_XID_UNKNOWN)
  1920. goto unlock_reject;
  1921. explan = ELS_EXPL_SID;
  1922. if (ep->sid != sid)
  1923. goto unlock_reject;
  1924. /*
  1925. * Clear Recovery Qualifier state, and cancel timer if complete.
  1926. */
  1927. if (ep->esb_stat & ESB_ST_REC_QUAL) {
  1928. ep->esb_stat &= ~ESB_ST_REC_QUAL;
  1929. atomic_dec(&ep->ex_refcnt); /* drop hold for rec qual */
  1930. }
  1931. if (ep->esb_stat & ESB_ST_COMPLETE) {
  1932. if (cancel_delayed_work(&ep->timeout_work))
  1933. atomic_dec(&ep->ex_refcnt); /* drop timer hold */
  1934. }
  1935. spin_unlock_bh(&ep->ex_lock);
  1936. /*
  1937. * Send LS_ACC.
  1938. */
  1939. fc_seq_ls_acc(fp);
  1940. goto out;
  1941. unlock_reject:
  1942. spin_unlock_bh(&ep->ex_lock);
  1943. reject:
  1944. fc_seq_ls_rjt(fp, ELS_RJT_LOGIC, explan);
  1945. out:
  1946. if (ep)
  1947. fc_exch_release(ep); /* drop hold from fc_exch_find */
  1948. }
  1949. /**
  1950. * fc_exch_mgr_add() - Add an exchange manager to a local port's list of EMs
  1951. * @lport: The local port to add the exchange manager to
  1952. * @mp: The exchange manager to be added to the local port
  1953. * @match: The match routine that indicates when this EM should be used
  1954. */
  1955. struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport,
  1956. struct fc_exch_mgr *mp,
  1957. bool (*match)(struct fc_frame *))
  1958. {
  1959. struct fc_exch_mgr_anchor *ema;
  1960. ema = kmalloc(sizeof(*ema), GFP_ATOMIC);
  1961. if (!ema)
  1962. return ema;
  1963. ema->mp = mp;
  1964. ema->match = match;
  1965. /* add EM anchor to EM anchors list */
  1966. list_add_tail(&ema->ema_list, &lport->ema_list);
  1967. kref_get(&mp->kref);
  1968. return ema;
  1969. }
  1970. EXPORT_SYMBOL(fc_exch_mgr_add);
  1971. /**
  1972. * fc_exch_mgr_destroy() - Destroy an exchange manager
  1973. * @kref: The reference to the EM to be destroyed
  1974. */
  1975. static void fc_exch_mgr_destroy(struct kref *kref)
  1976. {
  1977. struct fc_exch_mgr *mp = container_of(kref, struct fc_exch_mgr, kref);
  1978. mempool_destroy(mp->ep_pool);
  1979. free_percpu(mp->pool);
  1980. kfree(mp);
  1981. }
  1982. /**
  1983. * fc_exch_mgr_del() - Delete an EM from a local port's list
  1984. * @ema: The exchange manager anchor identifying the EM to be deleted
  1985. */
  1986. void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema)
  1987. {
  1988. /* remove EM anchor from EM anchors list */
  1989. list_del(&ema->ema_list);
  1990. kref_put(&ema->mp->kref, fc_exch_mgr_destroy);
  1991. kfree(ema);
  1992. }
  1993. EXPORT_SYMBOL(fc_exch_mgr_del);
  1994. /**
  1995. * fc_exch_mgr_list_clone() - Share all exchange manager objects
  1996. * @src: Source lport to clone exchange managers from
  1997. * @dst: New lport that takes references to all the exchange managers
  1998. */
  1999. int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst)
  2000. {
  2001. struct fc_exch_mgr_anchor *ema, *tmp;
  2002. list_for_each_entry(ema, &src->ema_list, ema_list) {
  2003. if (!fc_exch_mgr_add(dst, ema->mp, ema->match))
  2004. goto err;
  2005. }
  2006. return 0;
  2007. err:
  2008. list_for_each_entry_safe(ema, tmp, &dst->ema_list, ema_list)
  2009. fc_exch_mgr_del(ema);
  2010. return -ENOMEM;
  2011. }
  2012. EXPORT_SYMBOL(fc_exch_mgr_list_clone);
  2013. /**
  2014. * fc_exch_mgr_alloc() - Allocate an exchange manager
  2015. * @lport: The local port that the new EM will be associated with
  2016. * @class: The default FC class for new exchanges
  2017. * @min_xid: The minimum XID for exchanges from the new EM
  2018. * @max_xid: The maximum XID for exchanges from the new EM
  2019. * @match: The match routine for the new EM
  2020. */
  2021. struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lport,
  2022. enum fc_class class,
  2023. u16 min_xid, u16 max_xid,
  2024. bool (*match)(struct fc_frame *))
  2025. {
  2026. struct fc_exch_mgr *mp;
  2027. u16 pool_exch_range;
  2028. size_t pool_size;
  2029. unsigned int cpu;
  2030. struct fc_exch_pool *pool;
  2031. if (max_xid <= min_xid || max_xid == FC_XID_UNKNOWN ||
  2032. (min_xid & fc_cpu_mask) != 0) {
  2033. FC_LPORT_DBG(lport, "Invalid min_xid 0x:%x and max_xid 0x:%x\n",
  2034. min_xid, max_xid);
  2035. return NULL;
  2036. }
  2037. /*
  2038. * allocate memory for EM
  2039. */
  2040. mp = kzalloc(sizeof(struct fc_exch_mgr), GFP_ATOMIC);
  2041. if (!mp)
  2042. return NULL;
  2043. mp->class = class;
  2044. /* adjust em exch xid range for offload */
  2045. mp->min_xid = min_xid;
  2046. mp->max_xid = max_xid;
  2047. mp->ep_pool = mempool_create_slab_pool(2, fc_em_cachep);
  2048. if (!mp->ep_pool)
  2049. goto free_mp;
  2050. /*
  2051. * Setup per cpu exch pool with entire exchange id range equally
  2052. * divided across all cpus. The exch pointers array memory is
  2053. * allocated for exch range per pool.
  2054. */
  2055. pool_exch_range = (mp->max_xid - mp->min_xid + 1) / (fc_cpu_mask + 1);
  2056. mp->pool_max_index = pool_exch_range - 1;
  2057. /*
  2058. * Allocate and initialize per cpu exch pool
  2059. */
  2060. pool_size = sizeof(*pool) + pool_exch_range * sizeof(struct fc_exch *);
  2061. mp->pool = __alloc_percpu(pool_size, __alignof__(struct fc_exch_pool));
  2062. if (!mp->pool)
  2063. goto free_mempool;
  2064. for_each_possible_cpu(cpu) {
  2065. pool = per_cpu_ptr(mp->pool, cpu);
  2066. pool->left = FC_XID_UNKNOWN;
  2067. pool->right = FC_XID_UNKNOWN;
  2068. spin_lock_init(&pool->lock);
  2069. INIT_LIST_HEAD(&pool->ex_list);
  2070. }
  2071. kref_init(&mp->kref);
  2072. if (!fc_exch_mgr_add(lport, mp, match)) {
  2073. free_percpu(mp->pool);
  2074. goto free_mempool;
  2075. }
  2076. /*
  2077. * Above kref_init() sets mp->kref to 1 and then
  2078. * call to fc_exch_mgr_add incremented mp->kref again,
  2079. * so adjust that extra increment.
  2080. */
  2081. kref_put(&mp->kref, fc_exch_mgr_destroy);
  2082. return mp;
  2083. free_mempool:
  2084. mempool_destroy(mp->ep_pool);
  2085. free_mp:
  2086. kfree(mp);
  2087. return NULL;
  2088. }
  2089. EXPORT_SYMBOL(fc_exch_mgr_alloc);
  2090. /**
  2091. * fc_exch_mgr_free() - Free all exchange managers on a local port
  2092. * @lport: The local port whose EMs are to be freed
  2093. */
  2094. void fc_exch_mgr_free(struct fc_lport *lport)
  2095. {
  2096. struct fc_exch_mgr_anchor *ema, *next;
  2097. flush_workqueue(fc_exch_workqueue);
  2098. list_for_each_entry_safe(ema, next, &lport->ema_list, ema_list)
  2099. fc_exch_mgr_del(ema);
  2100. }
  2101. EXPORT_SYMBOL(fc_exch_mgr_free);
  2102. /**
  2103. * fc_find_ema() - Lookup and return appropriate Exchange Manager Anchor depending
  2104. * upon 'xid'.
  2105. * @f_ctl: f_ctl
  2106. * @lport: The local port the frame was received on
  2107. * @fh: The received frame header
  2108. */
  2109. static struct fc_exch_mgr_anchor *fc_find_ema(u32 f_ctl,
  2110. struct fc_lport *lport,
  2111. struct fc_frame_header *fh)
  2112. {
  2113. struct fc_exch_mgr_anchor *ema;
  2114. u16 xid;
  2115. if (f_ctl & FC_FC_EX_CTX)
  2116. xid = ntohs(fh->fh_ox_id);
  2117. else {
  2118. xid = ntohs(fh->fh_rx_id);
  2119. if (xid == FC_XID_UNKNOWN)
  2120. return list_entry(lport->ema_list.prev,
  2121. typeof(*ema), ema_list);
  2122. }
  2123. list_for_each_entry(ema, &lport->ema_list, ema_list) {
  2124. if ((xid >= ema->mp->min_xid) &&
  2125. (xid <= ema->mp->max_xid))
  2126. return ema;
  2127. }
  2128. return NULL;
  2129. }
  2130. /**
  2131. * fc_exch_recv() - Handler for received frames
  2132. * @lport: The local port the frame was received on
  2133. * @fp: The received frame
  2134. */
  2135. void fc_exch_recv(struct fc_lport *lport, struct fc_frame *fp)
  2136. {
  2137. struct fc_frame_header *fh = fc_frame_header_get(fp);
  2138. struct fc_exch_mgr_anchor *ema;
  2139. u32 f_ctl;
  2140. /* lport lock ? */
  2141. if (!lport || lport->state == LPORT_ST_DISABLED) {
  2142. FC_LPORT_DBG(lport, "Receiving frames for an lport that "
  2143. "has not been initialized correctly\n");
  2144. fc_frame_free(fp);
  2145. return;
  2146. }
  2147. f_ctl = ntoh24(fh->fh_f_ctl);
  2148. ema = fc_find_ema(f_ctl, lport, fh);
  2149. if (!ema) {
  2150. FC_LPORT_DBG(lport, "Unable to find Exchange Manager Anchor,"
  2151. "fc_ctl <0x%x>, xid <0x%x>\n",
  2152. f_ctl,
  2153. (f_ctl & FC_FC_EX_CTX) ?
  2154. ntohs(fh->fh_ox_id) :
  2155. ntohs(fh->fh_rx_id));
  2156. fc_frame_free(fp);
  2157. return;
  2158. }
  2159. /*
  2160. * If frame is marked invalid, just drop it.
  2161. */
  2162. switch (fr_eof(fp)) {
  2163. case FC_EOF_T:
  2164. if (f_ctl & FC_FC_END_SEQ)
  2165. skb_trim(fp_skb(fp), fr_len(fp) - FC_FC_FILL(f_ctl));
  2166. /* fall through */
  2167. case FC_EOF_N:
  2168. if (fh->fh_type == FC_TYPE_BLS)
  2169. fc_exch_recv_bls(ema->mp, fp);
  2170. else if ((f_ctl & (FC_FC_EX_CTX | FC_FC_SEQ_CTX)) ==
  2171. FC_FC_EX_CTX)
  2172. fc_exch_recv_seq_resp(ema->mp, fp);
  2173. else if (f_ctl & FC_FC_SEQ_CTX)
  2174. fc_exch_recv_resp(ema->mp, fp);
  2175. else /* no EX_CTX and no SEQ_CTX */
  2176. fc_exch_recv_req(lport, ema->mp, fp);
  2177. break;
  2178. default:
  2179. FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)",
  2180. fr_eof(fp));
  2181. fc_frame_free(fp);
  2182. }
  2183. }
  2184. EXPORT_SYMBOL(fc_exch_recv);
  2185. /**
  2186. * fc_exch_init() - Initialize the exchange layer for a local port
  2187. * @lport: The local port to initialize the exchange layer for
  2188. */
  2189. int fc_exch_init(struct fc_lport *lport)
  2190. {
  2191. if (!lport->tt.seq_start_next)
  2192. lport->tt.seq_start_next = fc_seq_start_next;
  2193. if (!lport->tt.seq_set_resp)
  2194. lport->tt.seq_set_resp = fc_seq_set_resp;
  2195. if (!lport->tt.exch_seq_send)
  2196. lport->tt.exch_seq_send = fc_exch_seq_send;
  2197. if (!lport->tt.seq_send)
  2198. lport->tt.seq_send = fc_seq_send;
  2199. if (!lport->tt.seq_els_rsp_send)
  2200. lport->tt.seq_els_rsp_send = fc_seq_els_rsp_send;
  2201. if (!lport->tt.exch_done)
  2202. lport->tt.exch_done = fc_exch_done;
  2203. if (!lport->tt.exch_mgr_reset)
  2204. lport->tt.exch_mgr_reset = fc_exch_mgr_reset;
  2205. if (!lport->tt.seq_exch_abort)
  2206. lport->tt.seq_exch_abort = fc_seq_exch_abort;
  2207. if (!lport->tt.seq_assign)
  2208. lport->tt.seq_assign = fc_seq_assign;
  2209. if (!lport->tt.seq_release)
  2210. lport->tt.seq_release = fc_seq_release;
  2211. return 0;
  2212. }
  2213. EXPORT_SYMBOL(fc_exch_init);
  2214. /**
  2215. * fc_setup_exch_mgr() - Setup an exchange manager
  2216. */
  2217. int fc_setup_exch_mgr(void)
  2218. {
  2219. fc_em_cachep = kmem_cache_create("libfc_em", sizeof(struct fc_exch),
  2220. 0, SLAB_HWCACHE_ALIGN, NULL);
  2221. if (!fc_em_cachep)
  2222. return -ENOMEM;
  2223. /*
  2224. * Initialize fc_cpu_mask and fc_cpu_order. The
  2225. * fc_cpu_mask is set for nr_cpu_ids rounded up
  2226. * to order of 2's * power and order is stored
  2227. * in fc_cpu_order as this is later required in
  2228. * mapping between an exch id and exch array index
  2229. * in per cpu exch pool.
  2230. *
  2231. * This round up is required to align fc_cpu_mask
  2232. * to exchange id's lower bits such that all incoming
  2233. * frames of an exchange gets delivered to the same
  2234. * cpu on which exchange originated by simple bitwise
  2235. * AND operation between fc_cpu_mask and exchange id.
  2236. */
  2237. fc_cpu_mask = 1;
  2238. fc_cpu_order = 0;
  2239. while (fc_cpu_mask < nr_cpu_ids) {
  2240. fc_cpu_mask <<= 1;
  2241. fc_cpu_order++;
  2242. }
  2243. fc_cpu_mask--;
  2244. fc_exch_workqueue = create_singlethread_workqueue("fc_exch_workqueue");
  2245. if (!fc_exch_workqueue)
  2246. goto err;
  2247. return 0;
  2248. err:
  2249. kmem_cache_destroy(fc_em_cachep);
  2250. return -ENOMEM;
  2251. }
  2252. /**
  2253. * fc_destroy_exch_mgr() - Destroy an exchange manager
  2254. */
  2255. void fc_destroy_exch_mgr(void)
  2256. {
  2257. destroy_workqueue(fc_exch_workqueue);
  2258. kmem_cache_destroy(fc_em_cachep);
  2259. }