fcoe.c 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967
  1. /*
  2. * Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  16. *
  17. * Maintained at www.Open-FCoE.org
  18. */
  19. #include <linux/module.h>
  20. #include <linux/spinlock.h>
  21. #include <linux/netdevice.h>
  22. #include <linux/etherdevice.h>
  23. #include <linux/ethtool.h>
  24. #include <linux/if_ether.h>
  25. #include <linux/if_vlan.h>
  26. #include <linux/crc32.h>
  27. #include <linux/slab.h>
  28. #include <linux/cpu.h>
  29. #include <linux/fs.h>
  30. #include <linux/sysfs.h>
  31. #include <linux/ctype.h>
  32. #include <linux/workqueue.h>
  33. #include <net/dcbnl.h>
  34. #include <net/dcbevent.h>
  35. #include <scsi/scsi_tcq.h>
  36. #include <scsi/scsicam.h>
  37. #include <scsi/scsi_transport.h>
  38. #include <scsi/scsi_transport_fc.h>
  39. #include <net/rtnetlink.h>
  40. #include <scsi/fc/fc_encaps.h>
  41. #include <scsi/fc/fc_fip.h>
  42. #include <scsi/fc/fc_fcoe.h>
  43. #include <scsi/libfc.h>
  44. #include <scsi/fc_frame.h>
  45. #include <scsi/libfcoe.h>
  46. #include "fcoe.h"
  47. MODULE_AUTHOR("Open-FCoE.org");
  48. MODULE_DESCRIPTION("FCoE");
  49. MODULE_LICENSE("GPL v2");
  50. /* Performance tuning parameters for fcoe */
  51. static unsigned int fcoe_ddp_min = 4096;
  52. module_param_named(ddp_min, fcoe_ddp_min, uint, S_IRUGO | S_IWUSR);
  53. MODULE_PARM_DESC(ddp_min, "Minimum I/O size in bytes for " \
  54. "Direct Data Placement (DDP).");
  55. unsigned int fcoe_debug_logging;
  56. module_param_named(debug_logging, fcoe_debug_logging, int, S_IRUGO|S_IWUSR);
  57. MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels");
  58. static DEFINE_MUTEX(fcoe_config_mutex);
  59. static struct workqueue_struct *fcoe_wq;
  60. /* fcoe_percpu_clean completion. Waiter protected by fcoe_create_mutex */
  61. static DECLARE_COMPLETION(fcoe_flush_completion);
  62. /* fcoe host list */
  63. /* must only by accessed under the RTNL mutex */
  64. static LIST_HEAD(fcoe_hostlist);
  65. static DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
  66. /* Function Prototypes */
  67. static int fcoe_reset(struct Scsi_Host *);
  68. static int fcoe_xmit(struct fc_lport *, struct fc_frame *);
  69. static int fcoe_rcv(struct sk_buff *, struct net_device *,
  70. struct packet_type *, struct net_device *);
  71. static int fcoe_percpu_receive_thread(void *);
  72. static void fcoe_percpu_clean(struct fc_lport *);
  73. static int fcoe_link_ok(struct fc_lport *);
  74. static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *);
  75. static int fcoe_hostlist_add(const struct fc_lport *);
  76. static void fcoe_hostlist_del(const struct fc_lport *);
  77. static int fcoe_device_notification(struct notifier_block *, ulong, void *);
  78. static void fcoe_dev_setup(void);
  79. static void fcoe_dev_cleanup(void);
  80. static struct fcoe_interface
  81. *fcoe_hostlist_lookup_port(const struct net_device *);
  82. static int fcoe_fip_recv(struct sk_buff *, struct net_device *,
  83. struct packet_type *, struct net_device *);
  84. static void fcoe_fip_send(struct fcoe_ctlr *, struct sk_buff *);
  85. static void fcoe_update_src_mac(struct fc_lport *, u8 *);
  86. static u8 *fcoe_get_src_mac(struct fc_lport *);
  87. static void fcoe_destroy_work(struct work_struct *);
  88. static int fcoe_ddp_setup(struct fc_lport *, u16, struct scatterlist *,
  89. unsigned int);
  90. static int fcoe_ddp_done(struct fc_lport *, u16);
  91. static int fcoe_ddp_target(struct fc_lport *, u16, struct scatterlist *,
  92. unsigned int);
  93. static int fcoe_cpu_callback(struct notifier_block *, unsigned long, void *);
  94. static int fcoe_dcb_app_notification(struct notifier_block *notifier,
  95. ulong event, void *ptr);
  96. static bool fcoe_match(struct net_device *netdev);
  97. static int fcoe_create(struct net_device *netdev, enum fip_state fip_mode);
  98. static int fcoe_destroy(struct net_device *netdev);
  99. static int fcoe_enable(struct net_device *netdev);
  100. static int fcoe_disable(struct net_device *netdev);
  101. /* fcoe_syfs control interface handlers */
  102. static int fcoe_ctlr_alloc(struct net_device *netdev);
  103. static int fcoe_ctlr_enabled(struct fcoe_ctlr_device *cdev);
  104. static struct fc_seq *fcoe_elsct_send(struct fc_lport *,
  105. u32 did, struct fc_frame *,
  106. unsigned int op,
  107. void (*resp)(struct fc_seq *,
  108. struct fc_frame *,
  109. void *),
  110. void *, u32 timeout);
  111. static void fcoe_recv_frame(struct sk_buff *skb);
  112. /* notification function for packets from net device */
  113. static struct notifier_block fcoe_notifier = {
  114. .notifier_call = fcoe_device_notification,
  115. };
  116. /* notification function for CPU hotplug events */
  117. static struct notifier_block fcoe_cpu_notifier = {
  118. .notifier_call = fcoe_cpu_callback,
  119. };
  120. /* notification function for DCB events */
  121. static struct notifier_block dcb_notifier = {
  122. .notifier_call = fcoe_dcb_app_notification,
  123. };
  124. static struct scsi_transport_template *fcoe_nport_scsi_transport;
  125. static struct scsi_transport_template *fcoe_vport_scsi_transport;
  126. static int fcoe_vport_destroy(struct fc_vport *);
  127. static int fcoe_vport_create(struct fc_vport *, bool disabled);
  128. static int fcoe_vport_disable(struct fc_vport *, bool disable);
  129. static void fcoe_set_vport_symbolic_name(struct fc_vport *);
  130. static void fcoe_set_port_id(struct fc_lport *, u32, struct fc_frame *);
  131. static void fcoe_fcf_get_vlan_id(struct fcoe_fcf_device *);
  132. static struct fcoe_sysfs_function_template fcoe_sysfs_templ = {
  133. .set_fcoe_ctlr_mode = fcoe_ctlr_set_fip_mode,
  134. .set_fcoe_ctlr_enabled = fcoe_ctlr_enabled,
  135. .get_fcoe_ctlr_link_fail = fcoe_ctlr_get_lesb,
  136. .get_fcoe_ctlr_vlink_fail = fcoe_ctlr_get_lesb,
  137. .get_fcoe_ctlr_miss_fka = fcoe_ctlr_get_lesb,
  138. .get_fcoe_ctlr_symb_err = fcoe_ctlr_get_lesb,
  139. .get_fcoe_ctlr_err_block = fcoe_ctlr_get_lesb,
  140. .get_fcoe_ctlr_fcs_error = fcoe_ctlr_get_lesb,
  141. .get_fcoe_fcf_selected = fcoe_fcf_get_selected,
  142. .get_fcoe_fcf_vlan_id = fcoe_fcf_get_vlan_id,
  143. };
  144. static struct libfc_function_template fcoe_libfc_fcn_templ = {
  145. .frame_send = fcoe_xmit,
  146. .ddp_setup = fcoe_ddp_setup,
  147. .ddp_done = fcoe_ddp_done,
  148. .ddp_target = fcoe_ddp_target,
  149. .elsct_send = fcoe_elsct_send,
  150. .get_lesb = fcoe_get_lesb,
  151. .lport_set_port_id = fcoe_set_port_id,
  152. };
  153. static struct fc_function_template fcoe_nport_fc_functions = {
  154. .show_host_node_name = 1,
  155. .show_host_port_name = 1,
  156. .show_host_supported_classes = 1,
  157. .show_host_supported_fc4s = 1,
  158. .show_host_active_fc4s = 1,
  159. .show_host_maxframe_size = 1,
  160. .show_host_serial_number = 1,
  161. .show_host_manufacturer = 1,
  162. .show_host_model = 1,
  163. .show_host_model_description = 1,
  164. .show_host_hardware_version = 1,
  165. .show_host_driver_version = 1,
  166. .show_host_firmware_version = 1,
  167. .show_host_optionrom_version = 1,
  168. .show_host_port_id = 1,
  169. .show_host_supported_speeds = 1,
  170. .get_host_speed = fc_get_host_speed,
  171. .show_host_speed = 1,
  172. .show_host_port_type = 1,
  173. .get_host_port_state = fc_get_host_port_state,
  174. .show_host_port_state = 1,
  175. .show_host_symbolic_name = 1,
  176. .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
  177. .show_rport_maxframe_size = 1,
  178. .show_rport_supported_classes = 1,
  179. .show_host_fabric_name = 1,
  180. .show_starget_node_name = 1,
  181. .show_starget_port_name = 1,
  182. .show_starget_port_id = 1,
  183. .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
  184. .show_rport_dev_loss_tmo = 1,
  185. .get_fc_host_stats = fc_get_host_stats,
  186. .issue_fc_host_lip = fcoe_reset,
  187. .terminate_rport_io = fc_rport_terminate_io,
  188. .vport_create = fcoe_vport_create,
  189. .vport_delete = fcoe_vport_destroy,
  190. .vport_disable = fcoe_vport_disable,
  191. .set_vport_symbolic_name = fcoe_set_vport_symbolic_name,
  192. .bsg_request = fc_lport_bsg_request,
  193. };
  194. static struct fc_function_template fcoe_vport_fc_functions = {
  195. .show_host_node_name = 1,
  196. .show_host_port_name = 1,
  197. .show_host_supported_classes = 1,
  198. .show_host_supported_fc4s = 1,
  199. .show_host_active_fc4s = 1,
  200. .show_host_maxframe_size = 1,
  201. .show_host_serial_number = 1,
  202. .show_host_manufacturer = 1,
  203. .show_host_model = 1,
  204. .show_host_model_description = 1,
  205. .show_host_hardware_version = 1,
  206. .show_host_driver_version = 1,
  207. .show_host_firmware_version = 1,
  208. .show_host_optionrom_version = 1,
  209. .show_host_port_id = 1,
  210. .show_host_supported_speeds = 1,
  211. .get_host_speed = fc_get_host_speed,
  212. .show_host_speed = 1,
  213. .show_host_port_type = 1,
  214. .get_host_port_state = fc_get_host_port_state,
  215. .show_host_port_state = 1,
  216. .show_host_symbolic_name = 1,
  217. .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
  218. .show_rport_maxframe_size = 1,
  219. .show_rport_supported_classes = 1,
  220. .show_host_fabric_name = 1,
  221. .show_starget_node_name = 1,
  222. .show_starget_port_name = 1,
  223. .show_starget_port_id = 1,
  224. .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
  225. .show_rport_dev_loss_tmo = 1,
  226. .get_fc_host_stats = fc_get_host_stats,
  227. .issue_fc_host_lip = fcoe_reset,
  228. .terminate_rport_io = fc_rport_terminate_io,
  229. .bsg_request = fc_lport_bsg_request,
  230. };
  231. static struct scsi_host_template fcoe_shost_template = {
  232. .module = THIS_MODULE,
  233. .name = "FCoE Driver",
  234. .proc_name = FCOE_NAME,
  235. .queuecommand = fc_queuecommand,
  236. .eh_abort_handler = fc_eh_abort,
  237. .eh_device_reset_handler = fc_eh_device_reset,
  238. .eh_host_reset_handler = fc_eh_host_reset,
  239. .slave_alloc = fc_slave_alloc,
  240. .change_queue_depth = fc_change_queue_depth,
  241. .change_queue_type = scsi_change_queue_type,
  242. .this_id = -1,
  243. .cmd_per_lun = 3,
  244. .can_queue = FCOE_MAX_OUTSTANDING_COMMANDS,
  245. .use_clustering = ENABLE_CLUSTERING,
  246. .sg_tablesize = SG_ALL,
  247. .max_sectors = 0xffff,
  248. .use_blk_tags = 1,
  249. };
  250. /**
  251. * fcoe_interface_setup() - Setup a FCoE interface
  252. * @fcoe: The new FCoE interface
  253. * @netdev: The net device that the fcoe interface is on
  254. *
  255. * Returns : 0 for success
  256. * Locking: must be called with the RTNL mutex held
  257. */
  258. static int fcoe_interface_setup(struct fcoe_interface *fcoe,
  259. struct net_device *netdev)
  260. {
  261. struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
  262. struct netdev_hw_addr *ha;
  263. struct net_device *real_dev;
  264. u8 flogi_maddr[ETH_ALEN];
  265. const struct net_device_ops *ops;
  266. fcoe->netdev = netdev;
  267. /* Let LLD initialize for FCoE */
  268. ops = netdev->netdev_ops;
  269. if (ops->ndo_fcoe_enable) {
  270. if (ops->ndo_fcoe_enable(netdev))
  271. FCOE_NETDEV_DBG(netdev, "Failed to enable FCoE"
  272. " specific feature for LLD.\n");
  273. }
  274. /* Do not support for bonding device */
  275. if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) {
  276. FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n");
  277. return -EOPNOTSUPP;
  278. }
  279. /* look for SAN MAC address, if multiple SAN MACs exist, only
  280. * use the first one for SPMA */
  281. real_dev = (netdev->priv_flags & IFF_802_1Q_VLAN) ?
  282. vlan_dev_real_dev(netdev) : netdev;
  283. fcoe->realdev = real_dev;
  284. rcu_read_lock();
  285. for_each_dev_addr(real_dev, ha) {
  286. if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
  287. (is_valid_ether_addr(ha->addr))) {
  288. memcpy(fip->ctl_src_addr, ha->addr, ETH_ALEN);
  289. fip->spma = 1;
  290. break;
  291. }
  292. }
  293. rcu_read_unlock();
  294. /* setup Source Mac Address */
  295. if (!fip->spma)
  296. memcpy(fip->ctl_src_addr, netdev->dev_addr, netdev->addr_len);
  297. /*
  298. * Add FCoE MAC address as second unicast MAC address
  299. * or enter promiscuous mode if not capable of listening
  300. * for multiple unicast MACs.
  301. */
  302. memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
  303. dev_uc_add(netdev, flogi_maddr);
  304. if (fip->spma)
  305. dev_uc_add(netdev, fip->ctl_src_addr);
  306. if (fip->mode == FIP_MODE_VN2VN) {
  307. dev_mc_add(netdev, FIP_ALL_VN2VN_MACS);
  308. dev_mc_add(netdev, FIP_ALL_P2P_MACS);
  309. } else
  310. dev_mc_add(netdev, FIP_ALL_ENODE_MACS);
  311. /*
  312. * setup the receive function from ethernet driver
  313. * on the ethertype for the given device
  314. */
  315. fcoe->fcoe_packet_type.func = fcoe_rcv;
  316. fcoe->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
  317. fcoe->fcoe_packet_type.dev = netdev;
  318. dev_add_pack(&fcoe->fcoe_packet_type);
  319. fcoe->fip_packet_type.func = fcoe_fip_recv;
  320. fcoe->fip_packet_type.type = htons(ETH_P_FIP);
  321. fcoe->fip_packet_type.dev = netdev;
  322. dev_add_pack(&fcoe->fip_packet_type);
  323. return 0;
  324. }
  325. /**
  326. * fcoe_interface_create() - Create a FCoE interface on a net device
  327. * @netdev: The net device to create the FCoE interface on
  328. * @fip_mode: The mode to use for FIP
  329. *
  330. * Returns: pointer to a struct fcoe_interface or NULL on error
  331. */
  332. static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev,
  333. enum fip_state fip_mode)
  334. {
  335. struct fcoe_ctlr_device *ctlr_dev;
  336. struct fcoe_ctlr *ctlr;
  337. struct fcoe_interface *fcoe;
  338. int size;
  339. int err;
  340. if (!try_module_get(THIS_MODULE)) {
  341. FCOE_NETDEV_DBG(netdev,
  342. "Could not get a reference to the module\n");
  343. fcoe = ERR_PTR(-EBUSY);
  344. goto out;
  345. }
  346. size = sizeof(struct fcoe_ctlr) + sizeof(struct fcoe_interface);
  347. ctlr_dev = fcoe_ctlr_device_add(&netdev->dev, &fcoe_sysfs_templ,
  348. size);
  349. if (!ctlr_dev) {
  350. FCOE_DBG("Failed to add fcoe_ctlr_device\n");
  351. fcoe = ERR_PTR(-ENOMEM);
  352. goto out_putmod;
  353. }
  354. ctlr = fcoe_ctlr_device_priv(ctlr_dev);
  355. ctlr->cdev = ctlr_dev;
  356. fcoe = fcoe_ctlr_priv(ctlr);
  357. dev_hold(netdev);
  358. /*
  359. * Initialize FIP.
  360. */
  361. fcoe_ctlr_init(ctlr, fip_mode);
  362. ctlr->send = fcoe_fip_send;
  363. ctlr->update_mac = fcoe_update_src_mac;
  364. ctlr->get_src_addr = fcoe_get_src_mac;
  365. err = fcoe_interface_setup(fcoe, netdev);
  366. if (err) {
  367. fcoe_ctlr_destroy(ctlr);
  368. fcoe_ctlr_device_delete(ctlr_dev);
  369. dev_put(netdev);
  370. fcoe = ERR_PTR(err);
  371. goto out_putmod;
  372. }
  373. goto out;
  374. out_putmod:
  375. module_put(THIS_MODULE);
  376. out:
  377. return fcoe;
  378. }
  379. /**
  380. * fcoe_interface_remove() - remove FCoE interface from netdev
  381. * @fcoe: The FCoE interface to be cleaned up
  382. *
  383. * Caller must be holding the RTNL mutex
  384. */
  385. static void fcoe_interface_remove(struct fcoe_interface *fcoe)
  386. {
  387. struct net_device *netdev = fcoe->netdev;
  388. struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
  389. u8 flogi_maddr[ETH_ALEN];
  390. const struct net_device_ops *ops;
  391. /*
  392. * Don't listen for Ethernet packets anymore.
  393. * synchronize_net() ensures that the packet handlers are not running
  394. * on another CPU. dev_remove_pack() would do that, this calls the
  395. * unsyncronized version __dev_remove_pack() to avoid multiple delays.
  396. */
  397. __dev_remove_pack(&fcoe->fcoe_packet_type);
  398. __dev_remove_pack(&fcoe->fip_packet_type);
  399. synchronize_net();
  400. /* Delete secondary MAC addresses */
  401. memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
  402. dev_uc_del(netdev, flogi_maddr);
  403. if (fip->spma)
  404. dev_uc_del(netdev, fip->ctl_src_addr);
  405. if (fip->mode == FIP_MODE_VN2VN) {
  406. dev_mc_del(netdev, FIP_ALL_VN2VN_MACS);
  407. dev_mc_del(netdev, FIP_ALL_P2P_MACS);
  408. } else
  409. dev_mc_del(netdev, FIP_ALL_ENODE_MACS);
  410. /* Tell the LLD we are done w/ FCoE */
  411. ops = netdev->netdev_ops;
  412. if (ops->ndo_fcoe_disable) {
  413. if (ops->ndo_fcoe_disable(netdev))
  414. FCOE_NETDEV_DBG(netdev, "Failed to disable FCoE"
  415. " specific feature for LLD.\n");
  416. }
  417. fcoe->removed = 1;
  418. }
  419. /**
  420. * fcoe_interface_cleanup() - Clean up a FCoE interface
  421. * @fcoe: The FCoE interface to be cleaned up
  422. */
  423. static void fcoe_interface_cleanup(struct fcoe_interface *fcoe)
  424. {
  425. struct net_device *netdev = fcoe->netdev;
  426. struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
  427. rtnl_lock();
  428. if (!fcoe->removed)
  429. fcoe_interface_remove(fcoe);
  430. rtnl_unlock();
  431. /* Release the self-reference taken during fcoe_interface_create() */
  432. /* tear-down the FCoE controller */
  433. fcoe_ctlr_destroy(fip);
  434. scsi_host_put(fip->lp->host);
  435. dev_put(netdev);
  436. module_put(THIS_MODULE);
  437. }
  438. /**
  439. * fcoe_fip_recv() - Handler for received FIP frames
  440. * @skb: The receive skb
  441. * @netdev: The associated net device
  442. * @ptype: The packet_type structure which was used to register this handler
  443. * @orig_dev: The original net_device the the skb was received on.
  444. * (in case dev is a bond)
  445. *
  446. * Returns: 0 for success
  447. */
  448. static int fcoe_fip_recv(struct sk_buff *skb, struct net_device *netdev,
  449. struct packet_type *ptype,
  450. struct net_device *orig_dev)
  451. {
  452. struct fcoe_interface *fcoe;
  453. struct fcoe_ctlr *ctlr;
  454. fcoe = container_of(ptype, struct fcoe_interface, fip_packet_type);
  455. ctlr = fcoe_to_ctlr(fcoe);
  456. fcoe_ctlr_recv(ctlr, skb);
  457. return 0;
  458. }
  459. /**
  460. * fcoe_port_send() - Send an Ethernet-encapsulated FIP/FCoE frame
  461. * @port: The FCoE port
  462. * @skb: The FIP/FCoE packet to be sent
  463. */
  464. static void fcoe_port_send(struct fcoe_port *port, struct sk_buff *skb)
  465. {
  466. if (port->fcoe_pending_queue.qlen)
  467. fcoe_check_wait_queue(port->lport, skb);
  468. else if (fcoe_start_io(skb))
  469. fcoe_check_wait_queue(port->lport, skb);
  470. }
  471. /**
  472. * fcoe_fip_send() - Send an Ethernet-encapsulated FIP frame
  473. * @fip: The FCoE controller
  474. * @skb: The FIP packet to be sent
  475. */
  476. static void fcoe_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
  477. {
  478. skb->dev = fcoe_from_ctlr(fip)->netdev;
  479. fcoe_port_send(lport_priv(fip->lp), skb);
  480. }
  481. /**
  482. * fcoe_update_src_mac() - Update the Ethernet MAC filters
  483. * @lport: The local port to update the source MAC on
  484. * @addr: Unicast MAC address to add
  485. *
  486. * Remove any previously-set unicast MAC filter.
  487. * Add secondary FCoE MAC address filter for our OUI.
  488. */
  489. static void fcoe_update_src_mac(struct fc_lport *lport, u8 *addr)
  490. {
  491. struct fcoe_port *port = lport_priv(lport);
  492. struct fcoe_interface *fcoe = port->priv;
  493. if (!is_zero_ether_addr(port->data_src_addr))
  494. dev_uc_del(fcoe->netdev, port->data_src_addr);
  495. if (!is_zero_ether_addr(addr))
  496. dev_uc_add(fcoe->netdev, addr);
  497. memcpy(port->data_src_addr, addr, ETH_ALEN);
  498. }
  499. /**
  500. * fcoe_get_src_mac() - return the Ethernet source address for an lport
  501. * @lport: libfc lport
  502. */
  503. static u8 *fcoe_get_src_mac(struct fc_lport *lport)
  504. {
  505. struct fcoe_port *port = lport_priv(lport);
  506. return port->data_src_addr;
  507. }
  508. /**
  509. * fcoe_lport_config() - Set up a local port
  510. * @lport: The local port to be setup
  511. *
  512. * Returns: 0 for success
  513. */
  514. static int fcoe_lport_config(struct fc_lport *lport)
  515. {
  516. lport->link_up = 0;
  517. lport->qfull = 0;
  518. lport->max_retry_count = 3;
  519. lport->max_rport_retry_count = 3;
  520. lport->e_d_tov = 2 * 1000; /* FC-FS default */
  521. lport->r_a_tov = 2 * 2 * 1000;
  522. lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
  523. FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
  524. lport->does_npiv = 1;
  525. fc_lport_init_stats(lport);
  526. /* lport fc_lport related configuration */
  527. fc_lport_config(lport);
  528. /* offload related configuration */
  529. lport->crc_offload = 0;
  530. lport->seq_offload = 0;
  531. lport->lro_enabled = 0;
  532. lport->lro_xid = 0;
  533. lport->lso_max = 0;
  534. return 0;
  535. }
  536. /**
  537. * fcoe_netdev_features_change - Updates the lport's offload flags based
  538. * on the LLD netdev's FCoE feature flags
  539. */
  540. static void fcoe_netdev_features_change(struct fc_lport *lport,
  541. struct net_device *netdev)
  542. {
  543. mutex_lock(&lport->lp_mutex);
  544. if (netdev->features & NETIF_F_SG)
  545. lport->sg_supp = 1;
  546. else
  547. lport->sg_supp = 0;
  548. if (netdev->features & NETIF_F_FCOE_CRC) {
  549. lport->crc_offload = 1;
  550. FCOE_NETDEV_DBG(netdev, "Supports FCCRC offload\n");
  551. } else {
  552. lport->crc_offload = 0;
  553. }
  554. if (netdev->features & NETIF_F_FSO) {
  555. lport->seq_offload = 1;
  556. lport->lso_max = netdev->gso_max_size;
  557. FCOE_NETDEV_DBG(netdev, "Supports LSO for max len 0x%x\n",
  558. lport->lso_max);
  559. } else {
  560. lport->seq_offload = 0;
  561. lport->lso_max = 0;
  562. }
  563. if (netdev->fcoe_ddp_xid) {
  564. lport->lro_enabled = 1;
  565. lport->lro_xid = netdev->fcoe_ddp_xid;
  566. FCOE_NETDEV_DBG(netdev, "Supports LRO for max xid 0x%x\n",
  567. lport->lro_xid);
  568. } else {
  569. lport->lro_enabled = 0;
  570. lport->lro_xid = 0;
  571. }
  572. mutex_unlock(&lport->lp_mutex);
  573. }
  574. /**
  575. * fcoe_netdev_config() - Set up net devive for SW FCoE
  576. * @lport: The local port that is associated with the net device
  577. * @netdev: The associated net device
  578. *
  579. * Must be called after fcoe_lport_config() as it will use local port mutex
  580. *
  581. * Returns: 0 for success
  582. */
  583. static int fcoe_netdev_config(struct fc_lport *lport, struct net_device *netdev)
  584. {
  585. u32 mfs;
  586. u64 wwnn, wwpn;
  587. struct fcoe_interface *fcoe;
  588. struct fcoe_ctlr *ctlr;
  589. struct fcoe_port *port;
  590. /* Setup lport private data to point to fcoe softc */
  591. port = lport_priv(lport);
  592. fcoe = port->priv;
  593. ctlr = fcoe_to_ctlr(fcoe);
  594. /*
  595. * Determine max frame size based on underlying device and optional
  596. * user-configured limit. If the MFS is too low, fcoe_link_ok()
  597. * will return 0, so do this first.
  598. */
  599. mfs = netdev->mtu;
  600. if (netdev->features & NETIF_F_FCOE_MTU) {
  601. mfs = FCOE_MTU;
  602. FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs);
  603. }
  604. mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof));
  605. if (fc_set_mfs(lport, mfs))
  606. return -EINVAL;
  607. /* offload features support */
  608. fcoe_netdev_features_change(lport, netdev);
  609. skb_queue_head_init(&port->fcoe_pending_queue);
  610. port->fcoe_pending_queue_active = 0;
  611. setup_timer(&port->timer, fcoe_queue_timer, (unsigned long)lport);
  612. fcoe_link_speed_update(lport);
  613. if (!lport->vport) {
  614. if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN))
  615. wwnn = fcoe_wwn_from_mac(ctlr->ctl_src_addr, 1, 0);
  616. fc_set_wwnn(lport, wwnn);
  617. if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN))
  618. wwpn = fcoe_wwn_from_mac(ctlr->ctl_src_addr,
  619. 2, 0);
  620. fc_set_wwpn(lport, wwpn);
  621. }
  622. return 0;
  623. }
  624. /**
  625. * fcoe_shost_config() - Set up the SCSI host associated with a local port
  626. * @lport: The local port
  627. * @dev: The device associated with the SCSI host
  628. *
  629. * Must be called after fcoe_lport_config() and fcoe_netdev_config()
  630. *
  631. * Returns: 0 for success
  632. */
  633. static int fcoe_shost_config(struct fc_lport *lport, struct device *dev)
  634. {
  635. int rc = 0;
  636. /* lport scsi host config */
  637. lport->host->max_lun = FCOE_MAX_LUN;
  638. lport->host->max_id = FCOE_MAX_FCP_TARGET;
  639. lport->host->max_channel = 0;
  640. lport->host->max_cmd_len = FCOE_MAX_CMD_LEN;
  641. if (lport->vport)
  642. lport->host->transportt = fcoe_vport_scsi_transport;
  643. else
  644. lport->host->transportt = fcoe_nport_scsi_transport;
  645. /* add the new host to the SCSI-ml */
  646. rc = scsi_add_host(lport->host, dev);
  647. if (rc) {
  648. FCOE_NETDEV_DBG(fcoe_netdev(lport), "fcoe_shost_config: "
  649. "error on scsi_add_host\n");
  650. return rc;
  651. }
  652. if (!lport->vport)
  653. fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
  654. snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
  655. "%s v%s over %s", FCOE_NAME, FCOE_VERSION,
  656. fcoe_netdev(lport)->name);
  657. return 0;
  658. }
  659. /**
  660. * fcoe_fdmi_info() - Get FDMI related info from net devive for SW FCoE
  661. * @lport: The local port that is associated with the net device
  662. * @netdev: The associated net device
  663. *
  664. * Must be called after fcoe_shost_config() as it will use local port mutex
  665. *
  666. */
  667. static void fcoe_fdmi_info(struct fc_lport *lport, struct net_device *netdev)
  668. {
  669. struct fcoe_interface *fcoe;
  670. struct fcoe_port *port;
  671. struct net_device *realdev;
  672. int rc;
  673. port = lport_priv(lport);
  674. fcoe = port->priv;
  675. realdev = fcoe->realdev;
  676. if (!realdev)
  677. return;
  678. /* No FDMI state m/c for NPIV ports */
  679. if (lport->vport)
  680. return;
  681. if (realdev->netdev_ops->ndo_fcoe_get_hbainfo) {
  682. struct netdev_fcoe_hbainfo *fdmi;
  683. fdmi = kzalloc(sizeof(*fdmi), GFP_KERNEL);
  684. if (!fdmi)
  685. return;
  686. rc = realdev->netdev_ops->ndo_fcoe_get_hbainfo(realdev,
  687. fdmi);
  688. if (rc) {
  689. printk(KERN_INFO "fcoe: Failed to retrieve FDMI "
  690. "information from netdev.\n");
  691. return;
  692. }
  693. snprintf(fc_host_serial_number(lport->host),
  694. FC_SERIAL_NUMBER_SIZE,
  695. "%s",
  696. fdmi->serial_number);
  697. snprintf(fc_host_manufacturer(lport->host),
  698. FC_SERIAL_NUMBER_SIZE,
  699. "%s",
  700. fdmi->manufacturer);
  701. snprintf(fc_host_model(lport->host),
  702. FC_SYMBOLIC_NAME_SIZE,
  703. "%s",
  704. fdmi->model);
  705. snprintf(fc_host_model_description(lport->host),
  706. FC_SYMBOLIC_NAME_SIZE,
  707. "%s",
  708. fdmi->model_description);
  709. snprintf(fc_host_hardware_version(lport->host),
  710. FC_VERSION_STRING_SIZE,
  711. "%s",
  712. fdmi->hardware_version);
  713. snprintf(fc_host_driver_version(lport->host),
  714. FC_VERSION_STRING_SIZE,
  715. "%s",
  716. fdmi->driver_version);
  717. snprintf(fc_host_optionrom_version(lport->host),
  718. FC_VERSION_STRING_SIZE,
  719. "%s",
  720. fdmi->optionrom_version);
  721. snprintf(fc_host_firmware_version(lport->host),
  722. FC_VERSION_STRING_SIZE,
  723. "%s",
  724. fdmi->firmware_version);
  725. /* Enable FDMI lport states */
  726. lport->fdmi_enabled = 1;
  727. kfree(fdmi);
  728. } else {
  729. lport->fdmi_enabled = 0;
  730. printk(KERN_INFO "fcoe: No FDMI support.\n");
  731. }
  732. }
  733. /**
  734. * fcoe_oem_match() - The match routine for the offloaded exchange manager
  735. * @fp: The I/O frame
  736. *
  737. * This routine will be associated with an exchange manager (EM). When
  738. * the libfc exchange handling code is looking for an EM to use it will
  739. * call this routine and pass it the frame that it wishes to send. This
  740. * routine will return True if the associated EM is to be used and False
  741. * if the echange code should continue looking for an EM.
  742. *
  743. * The offload EM that this routine is associated with will handle any
  744. * packets that are for SCSI read requests.
  745. *
  746. * This has been enhanced to work when FCoE stack is operating in target
  747. * mode.
  748. *
  749. * Returns: True for read types I/O, otherwise returns false.
  750. */
  751. static bool fcoe_oem_match(struct fc_frame *fp)
  752. {
  753. struct fc_frame_header *fh = fc_frame_header_get(fp);
  754. struct fcp_cmnd *fcp;
  755. if (fc_fcp_is_read(fr_fsp(fp)) &&
  756. (fr_fsp(fp)->data_len > fcoe_ddp_min))
  757. return true;
  758. else if ((fr_fsp(fp) == NULL) &&
  759. (fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) &&
  760. (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN)) {
  761. fcp = fc_frame_payload_get(fp, sizeof(*fcp));
  762. if ((fcp->fc_flags & FCP_CFL_WRDATA) &&
  763. (ntohl(fcp->fc_dl) > fcoe_ddp_min))
  764. return true;
  765. }
  766. return false;
  767. }
  768. /**
  769. * fcoe_em_config() - Allocate and configure an exchange manager
  770. * @lport: The local port that the new EM will be associated with
  771. *
  772. * Returns: 0 on success
  773. */
  774. static inline int fcoe_em_config(struct fc_lport *lport)
  775. {
  776. struct fcoe_port *port = lport_priv(lport);
  777. struct fcoe_interface *fcoe = port->priv;
  778. struct fcoe_interface *oldfcoe = NULL;
  779. struct net_device *old_real_dev, *cur_real_dev;
  780. u16 min_xid = FCOE_MIN_XID;
  781. u16 max_xid = FCOE_MAX_XID;
  782. /*
  783. * Check if need to allocate an em instance for
  784. * offload exchange ids to be shared across all VN_PORTs/lport.
  785. */
  786. if (!lport->lro_enabled || !lport->lro_xid ||
  787. (lport->lro_xid >= max_xid)) {
  788. lport->lro_xid = 0;
  789. goto skip_oem;
  790. }
  791. /*
  792. * Reuse existing offload em instance in case
  793. * it is already allocated on real eth device
  794. */
  795. if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
  796. cur_real_dev = vlan_dev_real_dev(fcoe->netdev);
  797. else
  798. cur_real_dev = fcoe->netdev;
  799. list_for_each_entry(oldfcoe, &fcoe_hostlist, list) {
  800. if (oldfcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
  801. old_real_dev = vlan_dev_real_dev(oldfcoe->netdev);
  802. else
  803. old_real_dev = oldfcoe->netdev;
  804. if (cur_real_dev == old_real_dev) {
  805. fcoe->oem = oldfcoe->oem;
  806. break;
  807. }
  808. }
  809. if (fcoe->oem) {
  810. if (!fc_exch_mgr_add(lport, fcoe->oem, fcoe_oem_match)) {
  811. printk(KERN_ERR "fcoe_em_config: failed to add "
  812. "offload em:%p on interface:%s\n",
  813. fcoe->oem, fcoe->netdev->name);
  814. return -ENOMEM;
  815. }
  816. } else {
  817. fcoe->oem = fc_exch_mgr_alloc(lport, FC_CLASS_3,
  818. FCOE_MIN_XID, lport->lro_xid,
  819. fcoe_oem_match);
  820. if (!fcoe->oem) {
  821. printk(KERN_ERR "fcoe_em_config: failed to allocate "
  822. "em for offload exches on interface:%s\n",
  823. fcoe->netdev->name);
  824. return -ENOMEM;
  825. }
  826. }
  827. /*
  828. * Exclude offload EM xid range from next EM xid range.
  829. */
  830. min_xid += lport->lro_xid + 1;
  831. skip_oem:
  832. if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, min_xid, max_xid, NULL)) {
  833. printk(KERN_ERR "fcoe_em_config: failed to "
  834. "allocate em on interface %s\n", fcoe->netdev->name);
  835. return -ENOMEM;
  836. }
  837. return 0;
  838. }
  839. /**
  840. * fcoe_if_destroy() - Tear down a SW FCoE instance
  841. * @lport: The local port to be destroyed
  842. *
  843. */
  844. static void fcoe_if_destroy(struct fc_lport *lport)
  845. {
  846. struct fcoe_port *port = lport_priv(lport);
  847. struct fcoe_interface *fcoe = port->priv;
  848. struct net_device *netdev = fcoe->netdev;
  849. FCOE_NETDEV_DBG(netdev, "Destroying interface\n");
  850. /* Logout of the fabric */
  851. fc_fabric_logoff(lport);
  852. /* Cleanup the fc_lport */
  853. fc_lport_destroy(lport);
  854. /* Stop the transmit retry timer */
  855. del_timer_sync(&port->timer);
  856. /* Free existing transmit skbs */
  857. fcoe_clean_pending_queue(lport);
  858. rtnl_lock();
  859. if (!is_zero_ether_addr(port->data_src_addr))
  860. dev_uc_del(netdev, port->data_src_addr);
  861. if (lport->vport)
  862. synchronize_net();
  863. else
  864. fcoe_interface_remove(fcoe);
  865. rtnl_unlock();
  866. /* Free queued packets for the per-CPU receive threads */
  867. fcoe_percpu_clean(lport);
  868. /* Detach from the scsi-ml */
  869. fc_remove_host(lport->host);
  870. scsi_remove_host(lport->host);
  871. /* Destroy lport scsi_priv */
  872. fc_fcp_destroy(lport);
  873. /* There are no more rports or I/O, free the EM */
  874. fc_exch_mgr_free(lport);
  875. /* Free memory used by statistical counters */
  876. fc_lport_free_stats(lport);
  877. /*
  878. * Release the Scsi_Host for vport but hold on to
  879. * master lport until it fcoe interface fully cleaned-up.
  880. */
  881. if (lport->vport)
  882. scsi_host_put(lport->host);
  883. }
  884. /**
  885. * fcoe_ddp_setup() - Call a LLD's ddp_setup through the net device
  886. * @lport: The local port to setup DDP for
  887. * @xid: The exchange ID for this DDP transfer
  888. * @sgl: The scatterlist describing this transfer
  889. * @sgc: The number of sg items
  890. *
  891. * Returns: 0 if the DDP context was not configured
  892. */
  893. static int fcoe_ddp_setup(struct fc_lport *lport, u16 xid,
  894. struct scatterlist *sgl, unsigned int sgc)
  895. {
  896. struct net_device *netdev = fcoe_netdev(lport);
  897. if (netdev->netdev_ops->ndo_fcoe_ddp_setup)
  898. return netdev->netdev_ops->ndo_fcoe_ddp_setup(netdev,
  899. xid, sgl,
  900. sgc);
  901. return 0;
  902. }
  903. /**
  904. * fcoe_ddp_target() - Call a LLD's ddp_target through the net device
  905. * @lport: The local port to setup DDP for
  906. * @xid: The exchange ID for this DDP transfer
  907. * @sgl: The scatterlist describing this transfer
  908. * @sgc: The number of sg items
  909. *
  910. * Returns: 0 if the DDP context was not configured
  911. */
  912. static int fcoe_ddp_target(struct fc_lport *lport, u16 xid,
  913. struct scatterlist *sgl, unsigned int sgc)
  914. {
  915. struct net_device *netdev = fcoe_netdev(lport);
  916. if (netdev->netdev_ops->ndo_fcoe_ddp_target)
  917. return netdev->netdev_ops->ndo_fcoe_ddp_target(netdev, xid,
  918. sgl, sgc);
  919. return 0;
  920. }
  921. /**
  922. * fcoe_ddp_done() - Call a LLD's ddp_done through the net device
  923. * @lport: The local port to complete DDP on
  924. * @xid: The exchange ID for this DDP transfer
  925. *
  926. * Returns: the length of data that have been completed by DDP
  927. */
  928. static int fcoe_ddp_done(struct fc_lport *lport, u16 xid)
  929. {
  930. struct net_device *netdev = fcoe_netdev(lport);
  931. if (netdev->netdev_ops->ndo_fcoe_ddp_done)
  932. return netdev->netdev_ops->ndo_fcoe_ddp_done(netdev, xid);
  933. return 0;
  934. }
  935. /**
  936. * fcoe_if_create() - Create a FCoE instance on an interface
  937. * @fcoe: The FCoE interface to create a local port on
  938. * @parent: The device pointer to be the parent in sysfs for the SCSI host
  939. * @npiv: Indicates if the port is a vport or not
  940. *
  941. * Creates a fc_lport instance and a Scsi_Host instance and configure them.
  942. *
  943. * Returns: The allocated fc_lport or an error pointer
  944. */
  945. static struct fc_lport *fcoe_if_create(struct fcoe_interface *fcoe,
  946. struct device *parent, int npiv)
  947. {
  948. struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
  949. struct net_device *netdev = fcoe->netdev;
  950. struct fc_lport *lport, *n_port;
  951. struct fcoe_port *port;
  952. struct Scsi_Host *shost;
  953. int rc;
  954. /*
  955. * parent is only a vport if npiv is 1,
  956. * but we'll only use vport in that case so go ahead and set it
  957. */
  958. struct fc_vport *vport = dev_to_vport(parent);
  959. FCOE_NETDEV_DBG(netdev, "Create Interface\n");
  960. if (!npiv)
  961. lport = libfc_host_alloc(&fcoe_shost_template, sizeof(*port));
  962. else
  963. lport = libfc_vport_create(vport, sizeof(*port));
  964. if (!lport) {
  965. FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n");
  966. rc = -ENOMEM;
  967. goto out;
  968. }
  969. port = lport_priv(lport);
  970. port->lport = lport;
  971. port->priv = fcoe;
  972. port->get_netdev = fcoe_netdev;
  973. port->max_queue_depth = FCOE_MAX_QUEUE_DEPTH;
  974. port->min_queue_depth = FCOE_MIN_QUEUE_DEPTH;
  975. INIT_WORK(&port->destroy_work, fcoe_destroy_work);
  976. /*
  977. * Need to add the lport to the hostlist
  978. * so we catch NETDEV_CHANGE events.
  979. */
  980. fcoe_hostlist_add(lport);
  981. /* configure a fc_lport including the exchange manager */
  982. rc = fcoe_lport_config(lport);
  983. if (rc) {
  984. FCOE_NETDEV_DBG(netdev, "Could not configure lport for the "
  985. "interface\n");
  986. goto out_host_put;
  987. }
  988. if (npiv) {
  989. FCOE_NETDEV_DBG(netdev, "Setting vport names, "
  990. "%16.16llx %16.16llx\n",
  991. vport->node_name, vport->port_name);
  992. fc_set_wwnn(lport, vport->node_name);
  993. fc_set_wwpn(lport, vport->port_name);
  994. }
  995. /* configure lport network properties */
  996. rc = fcoe_netdev_config(lport, netdev);
  997. if (rc) {
  998. FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the "
  999. "interface\n");
  1000. goto out_lp_destroy;
  1001. }
  1002. /* configure lport scsi host properties */
  1003. rc = fcoe_shost_config(lport, parent);
  1004. if (rc) {
  1005. FCOE_NETDEV_DBG(netdev, "Could not configure shost for the "
  1006. "interface\n");
  1007. goto out_lp_destroy;
  1008. }
  1009. /* Initialize the library */
  1010. rc = fcoe_libfc_config(lport, ctlr, &fcoe_libfc_fcn_templ, 1);
  1011. if (rc) {
  1012. FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the "
  1013. "interface\n");
  1014. goto out_lp_destroy;
  1015. }
  1016. /* Initialized FDMI information */
  1017. fcoe_fdmi_info(lport, netdev);
  1018. /*
  1019. * fcoe_em_alloc() and fcoe_hostlist_add() both
  1020. * need to be atomic with respect to other changes to the
  1021. * hostlist since fcoe_em_alloc() looks for an existing EM
  1022. * instance on host list updated by fcoe_hostlist_add().
  1023. *
  1024. * This is currently handled through the fcoe_config_mutex
  1025. * begin held.
  1026. */
  1027. if (!npiv)
  1028. /* lport exch manager allocation */
  1029. rc = fcoe_em_config(lport);
  1030. else {
  1031. shost = vport_to_shost(vport);
  1032. n_port = shost_priv(shost);
  1033. rc = fc_exch_mgr_list_clone(n_port, lport);
  1034. }
  1035. if (rc) {
  1036. FCOE_NETDEV_DBG(netdev, "Could not configure the EM\n");
  1037. goto out_lp_destroy;
  1038. }
  1039. return lport;
  1040. out_lp_destroy:
  1041. fc_exch_mgr_free(lport);
  1042. out_host_put:
  1043. fcoe_hostlist_del(lport);
  1044. scsi_host_put(lport->host);
  1045. out:
  1046. return ERR_PTR(rc);
  1047. }
  1048. /**
  1049. * fcoe_if_init() - Initialization routine for fcoe.ko
  1050. *
  1051. * Attaches the SW FCoE transport to the FC transport
  1052. *
  1053. * Returns: 0 on success
  1054. */
  1055. static int __init fcoe_if_init(void)
  1056. {
  1057. /* attach to scsi transport */
  1058. fcoe_nport_scsi_transport =
  1059. fc_attach_transport(&fcoe_nport_fc_functions);
  1060. fcoe_vport_scsi_transport =
  1061. fc_attach_transport(&fcoe_vport_fc_functions);
  1062. if (!fcoe_nport_scsi_transport) {
  1063. printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n");
  1064. return -ENODEV;
  1065. }
  1066. return 0;
  1067. }
  1068. /**
  1069. * fcoe_if_exit() - Tear down fcoe.ko
  1070. *
  1071. * Detaches the SW FCoE transport from the FC transport
  1072. *
  1073. * Returns: 0 on success
  1074. */
  1075. static int __exit fcoe_if_exit(void)
  1076. {
  1077. fc_release_transport(fcoe_nport_scsi_transport);
  1078. fc_release_transport(fcoe_vport_scsi_transport);
  1079. fcoe_nport_scsi_transport = NULL;
  1080. fcoe_vport_scsi_transport = NULL;
  1081. return 0;
  1082. }
  1083. /**
  1084. * fcoe_percpu_thread_create() - Create a receive thread for an online CPU
  1085. * @cpu: The CPU index of the CPU to create a receive thread for
  1086. */
  1087. static void fcoe_percpu_thread_create(unsigned int cpu)
  1088. {
  1089. struct fcoe_percpu_s *p;
  1090. struct task_struct *thread;
  1091. p = &per_cpu(fcoe_percpu, cpu);
  1092. thread = kthread_create_on_node(fcoe_percpu_receive_thread,
  1093. (void *)p, cpu_to_node(cpu),
  1094. "fcoethread/%d", cpu);
  1095. if (likely(!IS_ERR(thread))) {
  1096. kthread_bind(thread, cpu);
  1097. wake_up_process(thread);
  1098. spin_lock_bh(&p->fcoe_rx_list.lock);
  1099. p->thread = thread;
  1100. spin_unlock_bh(&p->fcoe_rx_list.lock);
  1101. }
  1102. }
  1103. /**
  1104. * fcoe_percpu_thread_destroy() - Remove the receive thread of a CPU
  1105. * @cpu: The CPU index of the CPU whose receive thread is to be destroyed
  1106. *
  1107. * Destroys a per-CPU Rx thread. Any pending skbs are moved to the
  1108. * current CPU's Rx thread. If the thread being destroyed is bound to
  1109. * the CPU processing this context the skbs will be freed.
  1110. */
  1111. static void fcoe_percpu_thread_destroy(unsigned int cpu)
  1112. {
  1113. struct fcoe_percpu_s *p;
  1114. struct task_struct *thread;
  1115. struct page *crc_eof;
  1116. struct sk_buff *skb;
  1117. #ifdef CONFIG_SMP
  1118. struct fcoe_percpu_s *p0;
  1119. unsigned targ_cpu = get_cpu();
  1120. #endif /* CONFIG_SMP */
  1121. FCOE_DBG("Destroying receive thread for CPU %d\n", cpu);
  1122. /* Prevent any new skbs from being queued for this CPU. */
  1123. p = &per_cpu(fcoe_percpu, cpu);
  1124. spin_lock_bh(&p->fcoe_rx_list.lock);
  1125. thread = p->thread;
  1126. p->thread = NULL;
  1127. crc_eof = p->crc_eof_page;
  1128. p->crc_eof_page = NULL;
  1129. p->crc_eof_offset = 0;
  1130. spin_unlock_bh(&p->fcoe_rx_list.lock);
  1131. #ifdef CONFIG_SMP
  1132. /*
  1133. * Don't bother moving the skb's if this context is running
  1134. * on the same CPU that is having its thread destroyed. This
  1135. * can easily happen when the module is removed.
  1136. */
  1137. if (cpu != targ_cpu) {
  1138. p0 = &per_cpu(fcoe_percpu, targ_cpu);
  1139. spin_lock_bh(&p0->fcoe_rx_list.lock);
  1140. if (p0->thread) {
  1141. FCOE_DBG("Moving frames from CPU %d to CPU %d\n",
  1142. cpu, targ_cpu);
  1143. while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
  1144. __skb_queue_tail(&p0->fcoe_rx_list, skb);
  1145. spin_unlock_bh(&p0->fcoe_rx_list.lock);
  1146. } else {
  1147. /*
  1148. * The targeted CPU is not initialized and cannot accept
  1149. * new skbs. Unlock the targeted CPU and drop the skbs
  1150. * on the CPU that is going offline.
  1151. */
  1152. while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
  1153. kfree_skb(skb);
  1154. spin_unlock_bh(&p0->fcoe_rx_list.lock);
  1155. }
  1156. } else {
  1157. /*
  1158. * This scenario occurs when the module is being removed
  1159. * and all threads are being destroyed. skbs will continue
  1160. * to be shifted from the CPU thread that is being removed
  1161. * to the CPU thread associated with the CPU that is processing
  1162. * the module removal. Once there is only one CPU Rx thread it
  1163. * will reach this case and we will drop all skbs and later
  1164. * stop the thread.
  1165. */
  1166. spin_lock_bh(&p->fcoe_rx_list.lock);
  1167. while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
  1168. kfree_skb(skb);
  1169. spin_unlock_bh(&p->fcoe_rx_list.lock);
  1170. }
  1171. put_cpu();
  1172. #else
  1173. /*
  1174. * This a non-SMP scenario where the singular Rx thread is
  1175. * being removed. Free all skbs and stop the thread.
  1176. */
  1177. spin_lock_bh(&p->fcoe_rx_list.lock);
  1178. while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
  1179. kfree_skb(skb);
  1180. spin_unlock_bh(&p->fcoe_rx_list.lock);
  1181. #endif
  1182. if (thread)
  1183. kthread_stop(thread);
  1184. if (crc_eof)
  1185. put_page(crc_eof);
  1186. }
  1187. /**
  1188. * fcoe_cpu_callback() - Handler for CPU hotplug events
  1189. * @nfb: The callback data block
  1190. * @action: The event triggering the callback
  1191. * @hcpu: The index of the CPU that the event is for
  1192. *
  1193. * This creates or destroys per-CPU data for fcoe
  1194. *
  1195. * Returns NOTIFY_OK always.
  1196. */
  1197. static int fcoe_cpu_callback(struct notifier_block *nfb,
  1198. unsigned long action, void *hcpu)
  1199. {
  1200. unsigned cpu = (unsigned long)hcpu;
  1201. switch (action) {
  1202. case CPU_ONLINE:
  1203. case CPU_ONLINE_FROZEN:
  1204. FCOE_DBG("CPU %x online: Create Rx thread\n", cpu);
  1205. fcoe_percpu_thread_create(cpu);
  1206. break;
  1207. case CPU_DEAD:
  1208. case CPU_DEAD_FROZEN:
  1209. FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu);
  1210. fcoe_percpu_thread_destroy(cpu);
  1211. break;
  1212. default:
  1213. break;
  1214. }
  1215. return NOTIFY_OK;
  1216. }
  1217. /**
  1218. * fcoe_select_cpu() - Selects CPU to handle post-processing of incoming
  1219. * command.
  1220. *
  1221. * This routine selects next CPU based on cpumask to distribute
  1222. * incoming requests in round robin.
  1223. *
  1224. * Returns: int CPU number
  1225. */
  1226. static inline unsigned int fcoe_select_cpu(void)
  1227. {
  1228. static unsigned int selected_cpu;
  1229. selected_cpu = cpumask_next(selected_cpu, cpu_online_mask);
  1230. if (selected_cpu >= nr_cpu_ids)
  1231. selected_cpu = cpumask_first(cpu_online_mask);
  1232. return selected_cpu;
  1233. }
  1234. /**
  1235. * fcoe_rcv() - Receive packets from a net device
  1236. * @skb: The received packet
  1237. * @netdev: The net device that the packet was received on
  1238. * @ptype: The packet type context
  1239. * @olddev: The last device net device
  1240. *
  1241. * This routine is called by NET_RX_SOFTIRQ. It receives a packet, builds a
  1242. * FC frame and passes the frame to libfc.
  1243. *
  1244. * Returns: 0 for success
  1245. */
  1246. static int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev,
  1247. struct packet_type *ptype, struct net_device *olddev)
  1248. {
  1249. struct fc_lport *lport;
  1250. struct fcoe_rcv_info *fr;
  1251. struct fcoe_ctlr *ctlr;
  1252. struct fcoe_interface *fcoe;
  1253. struct fc_frame_header *fh;
  1254. struct fcoe_percpu_s *fps;
  1255. struct ethhdr *eh;
  1256. unsigned int cpu;
  1257. fcoe = container_of(ptype, struct fcoe_interface, fcoe_packet_type);
  1258. ctlr = fcoe_to_ctlr(fcoe);
  1259. lport = ctlr->lp;
  1260. if (unlikely(!lport)) {
  1261. FCOE_NETDEV_DBG(netdev, "Cannot find hba structure\n");
  1262. goto err2;
  1263. }
  1264. if (!lport->link_up)
  1265. goto err2;
  1266. FCOE_NETDEV_DBG(netdev,
  1267. "skb_info: len:%d data_len:%d head:%p data:%p tail:%p end:%p sum:%d dev:%s\n",
  1268. skb->len, skb->data_len, skb->head, skb->data,
  1269. skb_tail_pointer(skb), skb_end_pointer(skb),
  1270. skb->csum, skb->dev ? skb->dev->name : "<NULL>");
  1271. skb = skb_share_check(skb, GFP_ATOMIC);
  1272. if (skb == NULL)
  1273. return NET_RX_DROP;
  1274. eh = eth_hdr(skb);
  1275. if (is_fip_mode(ctlr) &&
  1276. !ether_addr_equal(eh->h_source, ctlr->dest_addr)) {
  1277. FCOE_NETDEV_DBG(netdev, "wrong source mac address:%pM\n",
  1278. eh->h_source);
  1279. goto err;
  1280. }
  1281. /*
  1282. * Check for minimum frame length, and make sure required FCoE
  1283. * and FC headers are pulled into the linear data area.
  1284. */
  1285. if (unlikely((skb->len < FCOE_MIN_FRAME) ||
  1286. !pskb_may_pull(skb, FCOE_HEADER_LEN)))
  1287. goto err;
  1288. skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
  1289. fh = (struct fc_frame_header *) skb_transport_header(skb);
  1290. if (ntoh24(&eh->h_dest[3]) != ntoh24(fh->fh_d_id)) {
  1291. FCOE_NETDEV_DBG(netdev, "FC frame d_id mismatch with MAC:%pM\n",
  1292. eh->h_dest);
  1293. goto err;
  1294. }
  1295. fr = fcoe_dev_from_skb(skb);
  1296. fr->fr_dev = lport;
  1297. /*
  1298. * In case the incoming frame's exchange is originated from
  1299. * the initiator, then received frame's exchange id is ANDed
  1300. * with fc_cpu_mask bits to get the same cpu on which exchange
  1301. * was originated, otherwise select cpu using rx exchange id
  1302. * or fcoe_select_cpu().
  1303. */
  1304. if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
  1305. cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
  1306. else {
  1307. if (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN)
  1308. cpu = fcoe_select_cpu();
  1309. else
  1310. cpu = ntohs(fh->fh_rx_id) & fc_cpu_mask;
  1311. }
  1312. if (cpu >= nr_cpu_ids)
  1313. goto err;
  1314. fps = &per_cpu(fcoe_percpu, cpu);
  1315. spin_lock(&fps->fcoe_rx_list.lock);
  1316. if (unlikely(!fps->thread)) {
  1317. /*
  1318. * The targeted CPU is not ready, let's target
  1319. * the first CPU now. For non-SMP systems this
  1320. * will check the same CPU twice.
  1321. */
  1322. FCOE_NETDEV_DBG(netdev, "CPU is online, but no receive thread "
  1323. "ready for incoming skb- using first online "
  1324. "CPU.\n");
  1325. spin_unlock(&fps->fcoe_rx_list.lock);
  1326. cpu = cpumask_first(cpu_online_mask);
  1327. fps = &per_cpu(fcoe_percpu, cpu);
  1328. spin_lock(&fps->fcoe_rx_list.lock);
  1329. if (!fps->thread) {
  1330. spin_unlock(&fps->fcoe_rx_list.lock);
  1331. goto err;
  1332. }
  1333. }
  1334. /*
  1335. * We now have a valid CPU that we're targeting for
  1336. * this skb. We also have this receive thread locked,
  1337. * so we're free to queue skbs into it's queue.
  1338. */
  1339. /*
  1340. * Note: We used to have a set of conditions under which we would
  1341. * call fcoe_recv_frame directly, rather than queuing to the rx list
  1342. * as it could save a few cycles, but doing so is prohibited, as
  1343. * fcoe_recv_frame has several paths that may sleep, which is forbidden
  1344. * in softirq context.
  1345. */
  1346. __skb_queue_tail(&fps->fcoe_rx_list, skb);
  1347. if (fps->thread->state == TASK_INTERRUPTIBLE)
  1348. wake_up_process(fps->thread);
  1349. spin_unlock(&fps->fcoe_rx_list.lock);
  1350. return NET_RX_SUCCESS;
  1351. err:
  1352. per_cpu_ptr(lport->stats, get_cpu())->ErrorFrames++;
  1353. put_cpu();
  1354. err2:
  1355. kfree_skb(skb);
  1356. return NET_RX_DROP;
  1357. }
  1358. /**
  1359. * fcoe_alloc_paged_crc_eof() - Allocate a page to be used for the trailer CRC
  1360. * @skb: The packet to be transmitted
  1361. * @tlen: The total length of the trailer
  1362. *
  1363. * Returns: 0 for success
  1364. */
  1365. static int fcoe_alloc_paged_crc_eof(struct sk_buff *skb, int tlen)
  1366. {
  1367. struct fcoe_percpu_s *fps;
  1368. int rc;
  1369. fps = &get_cpu_var(fcoe_percpu);
  1370. rc = fcoe_get_paged_crc_eof(skb, tlen, fps);
  1371. put_cpu_var(fcoe_percpu);
  1372. return rc;
  1373. }
  1374. /**
  1375. * fcoe_xmit() - Transmit a FCoE frame
  1376. * @lport: The local port that the frame is to be transmitted for
  1377. * @fp: The frame to be transmitted
  1378. *
  1379. * Return: 0 for success
  1380. */
  1381. static int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp)
  1382. {
  1383. int wlen;
  1384. u32 crc;
  1385. struct ethhdr *eh;
  1386. struct fcoe_crc_eof *cp;
  1387. struct sk_buff *skb;
  1388. struct fc_stats *stats;
  1389. struct fc_frame_header *fh;
  1390. unsigned int hlen; /* header length implies the version */
  1391. unsigned int tlen; /* trailer length */
  1392. unsigned int elen; /* eth header, may include vlan */
  1393. struct fcoe_port *port = lport_priv(lport);
  1394. struct fcoe_interface *fcoe = port->priv;
  1395. struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
  1396. u8 sof, eof;
  1397. struct fcoe_hdr *hp;
  1398. WARN_ON((fr_len(fp) % sizeof(u32)) != 0);
  1399. fh = fc_frame_header_get(fp);
  1400. skb = fp_skb(fp);
  1401. wlen = skb->len / FCOE_WORD_TO_BYTE;
  1402. if (!lport->link_up) {
  1403. kfree_skb(skb);
  1404. return 0;
  1405. }
  1406. if (unlikely(fh->fh_type == FC_TYPE_ELS) &&
  1407. fcoe_ctlr_els_send(ctlr, lport, skb))
  1408. return 0;
  1409. sof = fr_sof(fp);
  1410. eof = fr_eof(fp);
  1411. elen = sizeof(struct ethhdr);
  1412. hlen = sizeof(struct fcoe_hdr);
  1413. tlen = sizeof(struct fcoe_crc_eof);
  1414. wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
  1415. /* crc offload */
  1416. if (likely(lport->crc_offload)) {
  1417. skb->ip_summed = CHECKSUM_UNNECESSARY;
  1418. skb->csum_start = skb_headroom(skb);
  1419. skb->csum_offset = skb->len;
  1420. crc = 0;
  1421. } else {
  1422. skb->ip_summed = CHECKSUM_NONE;
  1423. crc = fcoe_fc_crc(fp);
  1424. }
  1425. /* copy port crc and eof to the skb buff */
  1426. if (skb_is_nonlinear(skb)) {
  1427. skb_frag_t *frag;
  1428. if (fcoe_alloc_paged_crc_eof(skb, tlen)) {
  1429. kfree_skb(skb);
  1430. return -ENOMEM;
  1431. }
  1432. frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
  1433. cp = kmap_atomic(skb_frag_page(frag))
  1434. + frag->page_offset;
  1435. } else {
  1436. cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
  1437. }
  1438. memset(cp, 0, sizeof(*cp));
  1439. cp->fcoe_eof = eof;
  1440. cp->fcoe_crc32 = cpu_to_le32(~crc);
  1441. if (skb_is_nonlinear(skb)) {
  1442. kunmap_atomic(cp);
  1443. cp = NULL;
  1444. }
  1445. /* adjust skb network/transport offsets to match mac/fcoe/port */
  1446. skb_push(skb, elen + hlen);
  1447. skb_reset_mac_header(skb);
  1448. skb_reset_network_header(skb);
  1449. skb->mac_len = elen;
  1450. skb->protocol = htons(ETH_P_FCOE);
  1451. skb->priority = fcoe->priority;
  1452. if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN &&
  1453. fcoe->realdev->features & NETIF_F_HW_VLAN_CTAG_TX) {
  1454. /* must set skb->dev before calling vlan_put_tag */
  1455. skb->dev = fcoe->realdev;
  1456. skb = __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
  1457. vlan_dev_vlan_id(fcoe->netdev));
  1458. if (!skb)
  1459. return -ENOMEM;
  1460. } else
  1461. skb->dev = fcoe->netdev;
  1462. /* fill up mac and fcoe headers */
  1463. eh = eth_hdr(skb);
  1464. eh->h_proto = htons(ETH_P_FCOE);
  1465. memcpy(eh->h_dest, ctlr->dest_addr, ETH_ALEN);
  1466. if (ctlr->map_dest)
  1467. memcpy(eh->h_dest + 3, fh->fh_d_id, 3);
  1468. if (unlikely(ctlr->flogi_oxid != FC_XID_UNKNOWN))
  1469. memcpy(eh->h_source, ctlr->ctl_src_addr, ETH_ALEN);
  1470. else
  1471. memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
  1472. hp = (struct fcoe_hdr *)(eh + 1);
  1473. memset(hp, 0, sizeof(*hp));
  1474. if (FC_FCOE_VER)
  1475. FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
  1476. hp->fcoe_sof = sof;
  1477. /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
  1478. if (lport->seq_offload && fr_max_payload(fp)) {
  1479. skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
  1480. skb_shinfo(skb)->gso_size = fr_max_payload(fp);
  1481. } else {
  1482. skb_shinfo(skb)->gso_type = 0;
  1483. skb_shinfo(skb)->gso_size = 0;
  1484. }
  1485. /* update tx stats: regardless if LLD fails */
  1486. stats = per_cpu_ptr(lport->stats, get_cpu());
  1487. stats->TxFrames++;
  1488. stats->TxWords += wlen;
  1489. put_cpu();
  1490. /* send down to lld */
  1491. fr_dev(fp) = lport;
  1492. fcoe_port_send(port, skb);
  1493. return 0;
  1494. }
  1495. /**
  1496. * fcoe_percpu_flush_done() - Indicate per-CPU queue flush completion
  1497. * @skb: The completed skb (argument required by destructor)
  1498. */
  1499. static void fcoe_percpu_flush_done(struct sk_buff *skb)
  1500. {
  1501. complete(&fcoe_flush_completion);
  1502. }
  1503. /**
  1504. * fcoe_filter_frames() - filter out bad fcoe frames, i.e. bad CRC
  1505. * @lport: The local port the frame was received on
  1506. * @fp: The received frame
  1507. *
  1508. * Return: 0 on passing filtering checks
  1509. */
  1510. static inline int fcoe_filter_frames(struct fc_lport *lport,
  1511. struct fc_frame *fp)
  1512. {
  1513. struct fcoe_ctlr *ctlr;
  1514. struct fcoe_interface *fcoe;
  1515. struct fc_frame_header *fh;
  1516. struct sk_buff *skb = (struct sk_buff *)fp;
  1517. struct fc_stats *stats;
  1518. /*
  1519. * We only check CRC if no offload is available and if it is
  1520. * it's solicited data, in which case, the FCP layer would
  1521. * check it during the copy.
  1522. */
  1523. if (lport->crc_offload && skb->ip_summed == CHECKSUM_UNNECESSARY)
  1524. fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
  1525. else
  1526. fr_flags(fp) |= FCPHF_CRC_UNCHECKED;
  1527. fh = (struct fc_frame_header *) skb_transport_header(skb);
  1528. fh = fc_frame_header_get(fp);
  1529. if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA && fh->fh_type == FC_TYPE_FCP)
  1530. return 0;
  1531. fcoe = ((struct fcoe_port *)lport_priv(lport))->priv;
  1532. ctlr = fcoe_to_ctlr(fcoe);
  1533. if (is_fip_mode(ctlr) && fc_frame_payload_op(fp) == ELS_LOGO &&
  1534. ntoh24(fh->fh_s_id) == FC_FID_FLOGI) {
  1535. FCOE_DBG("fcoe: dropping FCoE lport LOGO in fip mode\n");
  1536. return -EINVAL;
  1537. }
  1538. if (!(fr_flags(fp) & FCPHF_CRC_UNCHECKED) ||
  1539. le32_to_cpu(fr_crc(fp)) == ~crc32(~0, skb->data, skb->len)) {
  1540. fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
  1541. return 0;
  1542. }
  1543. stats = per_cpu_ptr(lport->stats, get_cpu());
  1544. stats->InvalidCRCCount++;
  1545. if (stats->InvalidCRCCount < 5)
  1546. printk(KERN_WARNING "fcoe: dropping frame with CRC error\n");
  1547. put_cpu();
  1548. return -EINVAL;
  1549. }
  1550. /**
  1551. * fcoe_recv_frame() - process a single received frame
  1552. * @skb: frame to process
  1553. */
  1554. static void fcoe_recv_frame(struct sk_buff *skb)
  1555. {
  1556. u32 fr_len;
  1557. struct fc_lport *lport;
  1558. struct fcoe_rcv_info *fr;
  1559. struct fc_stats *stats;
  1560. struct fcoe_crc_eof crc_eof;
  1561. struct fc_frame *fp;
  1562. struct fcoe_port *port;
  1563. struct fcoe_hdr *hp;
  1564. fr = fcoe_dev_from_skb(skb);
  1565. lport = fr->fr_dev;
  1566. if (unlikely(!lport)) {
  1567. if (skb->destructor != fcoe_percpu_flush_done)
  1568. FCOE_NETDEV_DBG(skb->dev, "NULL lport in skb\n");
  1569. kfree_skb(skb);
  1570. return;
  1571. }
  1572. FCOE_NETDEV_DBG(skb->dev,
  1573. "skb_info: len:%d data_len:%d head:%p data:%p tail:%p end:%p sum:%d dev:%s\n",
  1574. skb->len, skb->data_len,
  1575. skb->head, skb->data, skb_tail_pointer(skb),
  1576. skb_end_pointer(skb), skb->csum,
  1577. skb->dev ? skb->dev->name : "<NULL>");
  1578. port = lport_priv(lport);
  1579. skb_linearize(skb); /* check for skb_is_nonlinear is within skb_linearize */
  1580. /*
  1581. * Frame length checks and setting up the header pointers
  1582. * was done in fcoe_rcv already.
  1583. */
  1584. hp = (struct fcoe_hdr *) skb_network_header(skb);
  1585. stats = per_cpu_ptr(lport->stats, get_cpu());
  1586. if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) {
  1587. if (stats->ErrorFrames < 5)
  1588. printk(KERN_WARNING "fcoe: FCoE version "
  1589. "mismatch: The frame has "
  1590. "version %x, but the "
  1591. "initiator supports version "
  1592. "%x\n", FC_FCOE_DECAPS_VER(hp),
  1593. FC_FCOE_VER);
  1594. goto drop;
  1595. }
  1596. skb_pull(skb, sizeof(struct fcoe_hdr));
  1597. fr_len = skb->len - sizeof(struct fcoe_crc_eof);
  1598. stats->RxFrames++;
  1599. stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
  1600. fp = (struct fc_frame *)skb;
  1601. fc_frame_init(fp);
  1602. fr_dev(fp) = lport;
  1603. fr_sof(fp) = hp->fcoe_sof;
  1604. /* Copy out the CRC and EOF trailer for access */
  1605. if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof)))
  1606. goto drop;
  1607. fr_eof(fp) = crc_eof.fcoe_eof;
  1608. fr_crc(fp) = crc_eof.fcoe_crc32;
  1609. if (pskb_trim(skb, fr_len))
  1610. goto drop;
  1611. if (!fcoe_filter_frames(lport, fp)) {
  1612. put_cpu();
  1613. fc_exch_recv(lport, fp);
  1614. return;
  1615. }
  1616. drop:
  1617. stats->ErrorFrames++;
  1618. put_cpu();
  1619. kfree_skb(skb);
  1620. }
  1621. /**
  1622. * fcoe_percpu_receive_thread() - The per-CPU packet receive thread
  1623. * @arg: The per-CPU context
  1624. *
  1625. * Return: 0 for success
  1626. */
  1627. static int fcoe_percpu_receive_thread(void *arg)
  1628. {
  1629. struct fcoe_percpu_s *p = arg;
  1630. struct sk_buff *skb;
  1631. struct sk_buff_head tmp;
  1632. skb_queue_head_init(&tmp);
  1633. set_user_nice(current, MIN_NICE);
  1634. retry:
  1635. while (!kthread_should_stop()) {
  1636. spin_lock_bh(&p->fcoe_rx_list.lock);
  1637. skb_queue_splice_init(&p->fcoe_rx_list, &tmp);
  1638. if (!skb_queue_len(&tmp)) {
  1639. set_current_state(TASK_INTERRUPTIBLE);
  1640. spin_unlock_bh(&p->fcoe_rx_list.lock);
  1641. schedule();
  1642. goto retry;
  1643. }
  1644. spin_unlock_bh(&p->fcoe_rx_list.lock);
  1645. while ((skb = __skb_dequeue(&tmp)) != NULL)
  1646. fcoe_recv_frame(skb);
  1647. }
  1648. return 0;
  1649. }
  1650. /**
  1651. * fcoe_dev_setup() - Setup the link change notification interface
  1652. */
  1653. static void fcoe_dev_setup(void)
  1654. {
  1655. register_dcbevent_notifier(&dcb_notifier);
  1656. register_netdevice_notifier(&fcoe_notifier);
  1657. }
  1658. /**
  1659. * fcoe_dev_cleanup() - Cleanup the link change notification interface
  1660. */
  1661. static void fcoe_dev_cleanup(void)
  1662. {
  1663. unregister_dcbevent_notifier(&dcb_notifier);
  1664. unregister_netdevice_notifier(&fcoe_notifier);
  1665. }
  1666. static struct fcoe_interface *
  1667. fcoe_hostlist_lookup_realdev_port(struct net_device *netdev)
  1668. {
  1669. struct fcoe_interface *fcoe;
  1670. struct net_device *real_dev;
  1671. list_for_each_entry(fcoe, &fcoe_hostlist, list) {
  1672. if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
  1673. real_dev = vlan_dev_real_dev(fcoe->netdev);
  1674. else
  1675. real_dev = fcoe->netdev;
  1676. if (netdev == real_dev)
  1677. return fcoe;
  1678. }
  1679. return NULL;
  1680. }
  1681. static int fcoe_dcb_app_notification(struct notifier_block *notifier,
  1682. ulong event, void *ptr)
  1683. {
  1684. struct dcb_app_type *entry = ptr;
  1685. struct fcoe_ctlr *ctlr;
  1686. struct fcoe_interface *fcoe;
  1687. struct net_device *netdev;
  1688. int prio;
  1689. if (entry->app.selector != DCB_APP_IDTYPE_ETHTYPE)
  1690. return NOTIFY_OK;
  1691. netdev = dev_get_by_index(&init_net, entry->ifindex);
  1692. if (!netdev)
  1693. return NOTIFY_OK;
  1694. fcoe = fcoe_hostlist_lookup_realdev_port(netdev);
  1695. dev_put(netdev);
  1696. if (!fcoe)
  1697. return NOTIFY_OK;
  1698. ctlr = fcoe_to_ctlr(fcoe);
  1699. if (entry->dcbx & DCB_CAP_DCBX_VER_CEE)
  1700. prio = ffs(entry->app.priority) - 1;
  1701. else
  1702. prio = entry->app.priority;
  1703. if (prio < 0)
  1704. return NOTIFY_OK;
  1705. if (entry->app.protocol == ETH_P_FIP ||
  1706. entry->app.protocol == ETH_P_FCOE)
  1707. ctlr->priority = prio;
  1708. if (entry->app.protocol == ETH_P_FCOE)
  1709. fcoe->priority = prio;
  1710. return NOTIFY_OK;
  1711. }
  1712. /**
  1713. * fcoe_device_notification() - Handler for net device events
  1714. * @notifier: The context of the notification
  1715. * @event: The type of event
  1716. * @ptr: The net device that the event was on
  1717. *
  1718. * This function is called by the Ethernet driver in case of link change event.
  1719. *
  1720. * Returns: 0 for success
  1721. */
  1722. static int fcoe_device_notification(struct notifier_block *notifier,
  1723. ulong event, void *ptr)
  1724. {
  1725. struct fcoe_ctlr_device *cdev;
  1726. struct fc_lport *lport = NULL;
  1727. struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
  1728. struct fcoe_ctlr *ctlr;
  1729. struct fcoe_interface *fcoe;
  1730. struct fcoe_port *port;
  1731. struct fc_stats *stats;
  1732. u32 link_possible = 1;
  1733. u32 mfs;
  1734. int rc = NOTIFY_OK;
  1735. list_for_each_entry(fcoe, &fcoe_hostlist, list) {
  1736. if (fcoe->netdev == netdev) {
  1737. ctlr = fcoe_to_ctlr(fcoe);
  1738. lport = ctlr->lp;
  1739. break;
  1740. }
  1741. }
  1742. if (!lport) {
  1743. rc = NOTIFY_DONE;
  1744. goto out;
  1745. }
  1746. switch (event) {
  1747. case NETDEV_DOWN:
  1748. case NETDEV_GOING_DOWN:
  1749. link_possible = 0;
  1750. break;
  1751. case NETDEV_UP:
  1752. case NETDEV_CHANGE:
  1753. break;
  1754. case NETDEV_CHANGEMTU:
  1755. if (netdev->features & NETIF_F_FCOE_MTU)
  1756. break;
  1757. mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
  1758. sizeof(struct fcoe_crc_eof));
  1759. if (mfs >= FC_MIN_MAX_FRAME)
  1760. fc_set_mfs(lport, mfs);
  1761. break;
  1762. case NETDEV_REGISTER:
  1763. break;
  1764. case NETDEV_UNREGISTER:
  1765. list_del(&fcoe->list);
  1766. port = lport_priv(ctlr->lp);
  1767. queue_work(fcoe_wq, &port->destroy_work);
  1768. goto out;
  1769. break;
  1770. case NETDEV_FEAT_CHANGE:
  1771. fcoe_netdev_features_change(lport, netdev);
  1772. break;
  1773. default:
  1774. FCOE_NETDEV_DBG(netdev, "Unknown event %ld "
  1775. "from netdev netlink\n", event);
  1776. }
  1777. fcoe_link_speed_update(lport);
  1778. cdev = fcoe_ctlr_to_ctlr_dev(ctlr);
  1779. if (link_possible && !fcoe_link_ok(lport)) {
  1780. switch (cdev->enabled) {
  1781. case FCOE_CTLR_DISABLED:
  1782. pr_info("Link up while interface is disabled.\n");
  1783. break;
  1784. case FCOE_CTLR_ENABLED:
  1785. case FCOE_CTLR_UNUSED:
  1786. fcoe_ctlr_link_up(ctlr);
  1787. };
  1788. } else if (fcoe_ctlr_link_down(ctlr)) {
  1789. switch (cdev->enabled) {
  1790. case FCOE_CTLR_DISABLED:
  1791. pr_info("Link down while interface is disabled.\n");
  1792. break;
  1793. case FCOE_CTLR_ENABLED:
  1794. case FCOE_CTLR_UNUSED:
  1795. stats = per_cpu_ptr(lport->stats, get_cpu());
  1796. stats->LinkFailureCount++;
  1797. put_cpu();
  1798. fcoe_clean_pending_queue(lport);
  1799. };
  1800. }
  1801. out:
  1802. return rc;
  1803. }
  1804. /**
  1805. * fcoe_disable() - Disables a FCoE interface
  1806. * @netdev : The net_device object the Ethernet interface to create on
  1807. *
  1808. * Called from fcoe transport.
  1809. *
  1810. * Returns: 0 for success
  1811. *
  1812. * Deprecated: use fcoe_ctlr_enabled()
  1813. */
  1814. static int fcoe_disable(struct net_device *netdev)
  1815. {
  1816. struct fcoe_ctlr *ctlr;
  1817. struct fcoe_interface *fcoe;
  1818. int rc = 0;
  1819. mutex_lock(&fcoe_config_mutex);
  1820. rtnl_lock();
  1821. fcoe = fcoe_hostlist_lookup_port(netdev);
  1822. rtnl_unlock();
  1823. if (fcoe) {
  1824. ctlr = fcoe_to_ctlr(fcoe);
  1825. fcoe_ctlr_link_down(ctlr);
  1826. fcoe_clean_pending_queue(ctlr->lp);
  1827. } else
  1828. rc = -ENODEV;
  1829. mutex_unlock(&fcoe_config_mutex);
  1830. return rc;
  1831. }
  1832. /**
  1833. * fcoe_enable() - Enables a FCoE interface
  1834. * @netdev : The net_device object the Ethernet interface to create on
  1835. *
  1836. * Called from fcoe transport.
  1837. *
  1838. * Returns: 0 for success
  1839. */
  1840. static int fcoe_enable(struct net_device *netdev)
  1841. {
  1842. struct fcoe_ctlr *ctlr;
  1843. struct fcoe_interface *fcoe;
  1844. int rc = 0;
  1845. mutex_lock(&fcoe_config_mutex);
  1846. rtnl_lock();
  1847. fcoe = fcoe_hostlist_lookup_port(netdev);
  1848. rtnl_unlock();
  1849. if (!fcoe) {
  1850. rc = -ENODEV;
  1851. goto out;
  1852. }
  1853. ctlr = fcoe_to_ctlr(fcoe);
  1854. if (!fcoe_link_ok(ctlr->lp))
  1855. fcoe_ctlr_link_up(ctlr);
  1856. out:
  1857. mutex_unlock(&fcoe_config_mutex);
  1858. return rc;
  1859. }
  1860. /**
  1861. * fcoe_ctlr_enabled() - Enable or disable an FCoE Controller
  1862. * @cdev: The FCoE Controller that is being enabled or disabled
  1863. *
  1864. * fcoe_sysfs will ensure that the state of 'enabled' has
  1865. * changed, so no checking is necessary here. This routine simply
  1866. * calls fcoe_enable or fcoe_disable, both of which are deprecated.
  1867. * When those routines are removed the functionality can be merged
  1868. * here.
  1869. */
  1870. static int fcoe_ctlr_enabled(struct fcoe_ctlr_device *cdev)
  1871. {
  1872. struct fcoe_ctlr *ctlr = fcoe_ctlr_device_priv(cdev);
  1873. struct fc_lport *lport = ctlr->lp;
  1874. struct net_device *netdev = fcoe_netdev(lport);
  1875. switch (cdev->enabled) {
  1876. case FCOE_CTLR_ENABLED:
  1877. return fcoe_enable(netdev);
  1878. case FCOE_CTLR_DISABLED:
  1879. return fcoe_disable(netdev);
  1880. case FCOE_CTLR_UNUSED:
  1881. default:
  1882. return -ENOTSUPP;
  1883. };
  1884. }
  1885. /**
  1886. * fcoe_destroy() - Destroy a FCoE interface
  1887. * @netdev : The net_device object the Ethernet interface to create on
  1888. *
  1889. * Called from fcoe transport
  1890. *
  1891. * Returns: 0 for success
  1892. */
  1893. static int fcoe_destroy(struct net_device *netdev)
  1894. {
  1895. struct fcoe_ctlr *ctlr;
  1896. struct fcoe_interface *fcoe;
  1897. struct fc_lport *lport;
  1898. struct fcoe_port *port;
  1899. int rc = 0;
  1900. mutex_lock(&fcoe_config_mutex);
  1901. rtnl_lock();
  1902. fcoe = fcoe_hostlist_lookup_port(netdev);
  1903. if (!fcoe) {
  1904. rc = -ENODEV;
  1905. goto out_nodev;
  1906. }
  1907. ctlr = fcoe_to_ctlr(fcoe);
  1908. lport = ctlr->lp;
  1909. port = lport_priv(lport);
  1910. list_del(&fcoe->list);
  1911. queue_work(fcoe_wq, &port->destroy_work);
  1912. out_nodev:
  1913. rtnl_unlock();
  1914. mutex_unlock(&fcoe_config_mutex);
  1915. return rc;
  1916. }
  1917. /**
  1918. * fcoe_destroy_work() - Destroy a FCoE port in a deferred work context
  1919. * @work: Handle to the FCoE port to be destroyed
  1920. */
  1921. static void fcoe_destroy_work(struct work_struct *work)
  1922. {
  1923. struct fcoe_ctlr_device *cdev;
  1924. struct fcoe_ctlr *ctlr;
  1925. struct fcoe_port *port;
  1926. struct fcoe_interface *fcoe;
  1927. struct Scsi_Host *shost;
  1928. struct fc_host_attrs *fc_host;
  1929. unsigned long flags;
  1930. struct fc_vport *vport;
  1931. struct fc_vport *next_vport;
  1932. port = container_of(work, struct fcoe_port, destroy_work);
  1933. shost = port->lport->host;
  1934. fc_host = shost_to_fc_host(shost);
  1935. /* Loop through all the vports and mark them for deletion */
  1936. spin_lock_irqsave(shost->host_lock, flags);
  1937. list_for_each_entry_safe(vport, next_vport, &fc_host->vports, peers) {
  1938. if (vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING)) {
  1939. continue;
  1940. } else {
  1941. vport->flags |= FC_VPORT_DELETING;
  1942. queue_work(fc_host_work_q(shost),
  1943. &vport->vport_delete_work);
  1944. }
  1945. }
  1946. spin_unlock_irqrestore(shost->host_lock, flags);
  1947. flush_workqueue(fc_host_work_q(shost));
  1948. mutex_lock(&fcoe_config_mutex);
  1949. fcoe = port->priv;
  1950. ctlr = fcoe_to_ctlr(fcoe);
  1951. cdev = fcoe_ctlr_to_ctlr_dev(ctlr);
  1952. fcoe_if_destroy(port->lport);
  1953. fcoe_interface_cleanup(fcoe);
  1954. mutex_unlock(&fcoe_config_mutex);
  1955. fcoe_ctlr_device_delete(cdev);
  1956. }
  1957. /**
  1958. * fcoe_match() - Check if the FCoE is supported on the given netdevice
  1959. * @netdev : The net_device object the Ethernet interface to create on
  1960. *
  1961. * Called from fcoe transport.
  1962. *
  1963. * Returns: always returns true as this is the default FCoE transport,
  1964. * i.e., support all netdevs.
  1965. */
  1966. static bool fcoe_match(struct net_device *netdev)
  1967. {
  1968. return true;
  1969. }
  1970. /**
  1971. * fcoe_dcb_create() - Initialize DCB attributes and hooks
  1972. * @netdev: The net_device object of the L2 link that should be queried
  1973. * @port: The fcoe_port to bind FCoE APP priority with
  1974. * @
  1975. */
  1976. static void fcoe_dcb_create(struct fcoe_interface *fcoe)
  1977. {
  1978. #ifdef CONFIG_DCB
  1979. int dcbx;
  1980. u8 fup, up;
  1981. struct net_device *netdev = fcoe->realdev;
  1982. struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
  1983. struct dcb_app app = {
  1984. .priority = 0,
  1985. .protocol = ETH_P_FCOE
  1986. };
  1987. /* setup DCB priority attributes. */
  1988. if (netdev && netdev->dcbnl_ops && netdev->dcbnl_ops->getdcbx) {
  1989. dcbx = netdev->dcbnl_ops->getdcbx(netdev);
  1990. if (dcbx & DCB_CAP_DCBX_VER_IEEE) {
  1991. app.selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE;
  1992. up = dcb_ieee_getapp_mask(netdev, &app);
  1993. app.protocol = ETH_P_FIP;
  1994. fup = dcb_ieee_getapp_mask(netdev, &app);
  1995. } else {
  1996. app.selector = DCB_APP_IDTYPE_ETHTYPE;
  1997. up = dcb_getapp(netdev, &app);
  1998. app.protocol = ETH_P_FIP;
  1999. fup = dcb_getapp(netdev, &app);
  2000. }
  2001. fcoe->priority = ffs(up) ? ffs(up) - 1 : 0;
  2002. ctlr->priority = ffs(fup) ? ffs(fup) - 1 : fcoe->priority;
  2003. }
  2004. #endif
  2005. }
  2006. enum fcoe_create_link_state {
  2007. FCOE_CREATE_LINK_DOWN,
  2008. FCOE_CREATE_LINK_UP,
  2009. };
  2010. /**
  2011. * _fcoe_create() - (internal) Create a fcoe interface
  2012. * @netdev : The net_device object the Ethernet interface to create on
  2013. * @fip_mode: The FIP mode for this creation
  2014. * @link_state: The ctlr link state on creation
  2015. *
  2016. * Called from either the libfcoe 'create' module parameter
  2017. * via fcoe_create or from fcoe_syfs's ctlr_create file.
  2018. *
  2019. * libfcoe's 'create' module parameter is deprecated so some
  2020. * consolidation of code can be done when that interface is
  2021. * removed.
  2022. */
  2023. static int _fcoe_create(struct net_device *netdev, enum fip_state fip_mode,
  2024. enum fcoe_create_link_state link_state)
  2025. {
  2026. int rc = 0;
  2027. struct fcoe_ctlr_device *ctlr_dev;
  2028. struct fcoe_ctlr *ctlr;
  2029. struct fcoe_interface *fcoe;
  2030. struct fc_lport *lport;
  2031. mutex_lock(&fcoe_config_mutex);
  2032. rtnl_lock();
  2033. /* look for existing lport */
  2034. if (fcoe_hostlist_lookup(netdev)) {
  2035. rc = -EEXIST;
  2036. goto out_nodev;
  2037. }
  2038. fcoe = fcoe_interface_create(netdev, fip_mode);
  2039. if (IS_ERR(fcoe)) {
  2040. rc = PTR_ERR(fcoe);
  2041. goto out_nodev;
  2042. }
  2043. ctlr = fcoe_to_ctlr(fcoe);
  2044. ctlr_dev = fcoe_ctlr_to_ctlr_dev(ctlr);
  2045. lport = fcoe_if_create(fcoe, &ctlr_dev->dev, 0);
  2046. if (IS_ERR(lport)) {
  2047. printk(KERN_ERR "fcoe: Failed to create interface (%s)\n",
  2048. netdev->name);
  2049. rc = -EIO;
  2050. rtnl_unlock();
  2051. fcoe_interface_cleanup(fcoe);
  2052. mutex_unlock(&fcoe_config_mutex);
  2053. fcoe_ctlr_device_delete(ctlr_dev);
  2054. goto out;
  2055. }
  2056. /* Make this the "master" N_Port */
  2057. ctlr->lp = lport;
  2058. /* setup DCB priority attributes. */
  2059. fcoe_dcb_create(fcoe);
  2060. /* start FIP Discovery and FLOGI */
  2061. lport->boot_time = jiffies;
  2062. fc_fabric_login(lport);
  2063. /*
  2064. * If the fcoe_ctlr_device is to be set to DISABLED
  2065. * it must be done after the lport is added to the
  2066. * hostlist, but before the rtnl_lock is released.
  2067. * This is because the rtnl_lock protects the
  2068. * hostlist that fcoe_device_notification uses. If
  2069. * the FCoE Controller is intended to be created
  2070. * DISABLED then 'enabled' needs to be considered
  2071. * handling link events. 'enabled' must be set
  2072. * before the lport can be found in the hostlist
  2073. * when a link up event is received.
  2074. */
  2075. if (link_state == FCOE_CREATE_LINK_UP)
  2076. ctlr_dev->enabled = FCOE_CTLR_ENABLED;
  2077. else
  2078. ctlr_dev->enabled = FCOE_CTLR_DISABLED;
  2079. if (link_state == FCOE_CREATE_LINK_UP &&
  2080. !fcoe_link_ok(lport)) {
  2081. rtnl_unlock();
  2082. fcoe_ctlr_link_up(ctlr);
  2083. mutex_unlock(&fcoe_config_mutex);
  2084. return rc;
  2085. }
  2086. out_nodev:
  2087. rtnl_unlock();
  2088. mutex_unlock(&fcoe_config_mutex);
  2089. out:
  2090. return rc;
  2091. }
  2092. /**
  2093. * fcoe_create() - Create a fcoe interface
  2094. * @netdev : The net_device object the Ethernet interface to create on
  2095. * @fip_mode: The FIP mode for this creation
  2096. *
  2097. * Called from fcoe transport
  2098. *
  2099. * Returns: 0 for success
  2100. */
  2101. static int fcoe_create(struct net_device *netdev, enum fip_state fip_mode)
  2102. {
  2103. return _fcoe_create(netdev, fip_mode, FCOE_CREATE_LINK_UP);
  2104. }
  2105. /**
  2106. * fcoe_ctlr_alloc() - Allocate a fcoe interface from fcoe_sysfs
  2107. * @netdev: The net_device to be used by the allocated FCoE Controller
  2108. *
  2109. * This routine is called from fcoe_sysfs. It will start the fcoe_ctlr
  2110. * in a link_down state. The allows the user an opportunity to configure
  2111. * the FCoE Controller from sysfs before enabling the FCoE Controller.
  2112. *
  2113. * Creating in with this routine starts the FCoE Controller in Fabric
  2114. * mode. The user can change to VN2VN or another mode before enabling.
  2115. */
  2116. static int fcoe_ctlr_alloc(struct net_device *netdev)
  2117. {
  2118. return _fcoe_create(netdev, FIP_MODE_FABRIC,
  2119. FCOE_CREATE_LINK_DOWN);
  2120. }
  2121. /**
  2122. * fcoe_link_ok() - Check if the link is OK for a local port
  2123. * @lport: The local port to check link on
  2124. *
  2125. * Returns: 0 if link is UP and OK, -1 if not
  2126. *
  2127. */
  2128. static int fcoe_link_ok(struct fc_lport *lport)
  2129. {
  2130. struct net_device *netdev = fcoe_netdev(lport);
  2131. if (netif_oper_up(netdev))
  2132. return 0;
  2133. return -1;
  2134. }
  2135. /**
  2136. * fcoe_percpu_clean() - Clear all pending skbs for an local port
  2137. * @lport: The local port whose skbs are to be cleared
  2138. *
  2139. * Must be called with fcoe_create_mutex held to single-thread completion.
  2140. *
  2141. * This flushes the pending skbs by adding a new skb to each queue and
  2142. * waiting until they are all freed. This assures us that not only are
  2143. * there no packets that will be handled by the lport, but also that any
  2144. * threads already handling packet have returned.
  2145. */
  2146. static void fcoe_percpu_clean(struct fc_lport *lport)
  2147. {
  2148. struct fcoe_percpu_s *pp;
  2149. struct sk_buff *skb;
  2150. unsigned int cpu;
  2151. for_each_possible_cpu(cpu) {
  2152. pp = &per_cpu(fcoe_percpu, cpu);
  2153. if (!pp->thread || !cpu_online(cpu))
  2154. continue;
  2155. skb = dev_alloc_skb(0);
  2156. if (!skb)
  2157. continue;
  2158. skb->destructor = fcoe_percpu_flush_done;
  2159. spin_lock_bh(&pp->fcoe_rx_list.lock);
  2160. __skb_queue_tail(&pp->fcoe_rx_list, skb);
  2161. if (pp->fcoe_rx_list.qlen == 1)
  2162. wake_up_process(pp->thread);
  2163. spin_unlock_bh(&pp->fcoe_rx_list.lock);
  2164. wait_for_completion(&fcoe_flush_completion);
  2165. }
  2166. }
  2167. /**
  2168. * fcoe_reset() - Reset a local port
  2169. * @shost: The SCSI host associated with the local port to be reset
  2170. *
  2171. * Returns: Always 0 (return value required by FC transport template)
  2172. */
  2173. static int fcoe_reset(struct Scsi_Host *shost)
  2174. {
  2175. struct fc_lport *lport = shost_priv(shost);
  2176. struct fcoe_port *port = lport_priv(lport);
  2177. struct fcoe_interface *fcoe = port->priv;
  2178. struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
  2179. struct fcoe_ctlr_device *cdev = fcoe_ctlr_to_ctlr_dev(ctlr);
  2180. fcoe_ctlr_link_down(ctlr);
  2181. fcoe_clean_pending_queue(ctlr->lp);
  2182. if (cdev->enabled != FCOE_CTLR_DISABLED &&
  2183. !fcoe_link_ok(ctlr->lp))
  2184. fcoe_ctlr_link_up(ctlr);
  2185. return 0;
  2186. }
  2187. /**
  2188. * fcoe_hostlist_lookup_port() - Find the FCoE interface associated with a net device
  2189. * @netdev: The net device used as a key
  2190. *
  2191. * Locking: Must be called with the RNL mutex held.
  2192. *
  2193. * Returns: NULL or the FCoE interface
  2194. */
  2195. static struct fcoe_interface *
  2196. fcoe_hostlist_lookup_port(const struct net_device *netdev)
  2197. {
  2198. struct fcoe_interface *fcoe;
  2199. list_for_each_entry(fcoe, &fcoe_hostlist, list) {
  2200. if (fcoe->netdev == netdev)
  2201. return fcoe;
  2202. }
  2203. return NULL;
  2204. }
  2205. /**
  2206. * fcoe_hostlist_lookup() - Find the local port associated with a
  2207. * given net device
  2208. * @netdev: The netdevice used as a key
  2209. *
  2210. * Locking: Must be called with the RTNL mutex held
  2211. *
  2212. * Returns: NULL or the local port
  2213. */
  2214. static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev)
  2215. {
  2216. struct fcoe_ctlr *ctlr;
  2217. struct fcoe_interface *fcoe;
  2218. fcoe = fcoe_hostlist_lookup_port(netdev);
  2219. ctlr = fcoe_to_ctlr(fcoe);
  2220. return (fcoe) ? ctlr->lp : NULL;
  2221. }
  2222. /**
  2223. * fcoe_hostlist_add() - Add the FCoE interface identified by a local
  2224. * port to the hostlist
  2225. * @lport: The local port that identifies the FCoE interface to be added
  2226. *
  2227. * Locking: must be called with the RTNL mutex held
  2228. *
  2229. * Returns: 0 for success
  2230. */
  2231. static int fcoe_hostlist_add(const struct fc_lport *lport)
  2232. {
  2233. struct fcoe_interface *fcoe;
  2234. struct fcoe_port *port;
  2235. fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
  2236. if (!fcoe) {
  2237. port = lport_priv(lport);
  2238. fcoe = port->priv;
  2239. list_add_tail(&fcoe->list, &fcoe_hostlist);
  2240. }
  2241. return 0;
  2242. }
  2243. /**
  2244. * fcoe_hostlist_del() - Remove the FCoE interface identified by a local
  2245. * port to the hostlist
  2246. * @lport: The local port that identifies the FCoE interface to be added
  2247. *
  2248. * Locking: must be called with the RTNL mutex held
  2249. *
  2250. */
  2251. static void fcoe_hostlist_del(const struct fc_lport *lport)
  2252. {
  2253. struct fcoe_interface *fcoe;
  2254. struct fcoe_port *port;
  2255. port = lport_priv(lport);
  2256. fcoe = port->priv;
  2257. list_del(&fcoe->list);
  2258. return;
  2259. }
  2260. static struct fcoe_transport fcoe_sw_transport = {
  2261. .name = {FCOE_TRANSPORT_DEFAULT},
  2262. .attached = false,
  2263. .list = LIST_HEAD_INIT(fcoe_sw_transport.list),
  2264. .match = fcoe_match,
  2265. .alloc = fcoe_ctlr_alloc,
  2266. .create = fcoe_create,
  2267. .destroy = fcoe_destroy,
  2268. .enable = fcoe_enable,
  2269. .disable = fcoe_disable,
  2270. };
  2271. /**
  2272. * fcoe_init() - Initialize fcoe.ko
  2273. *
  2274. * Returns: 0 on success, or a negative value on failure
  2275. */
  2276. static int __init fcoe_init(void)
  2277. {
  2278. struct fcoe_percpu_s *p;
  2279. unsigned int cpu;
  2280. int rc = 0;
  2281. fcoe_wq = alloc_workqueue("fcoe", 0, 0);
  2282. if (!fcoe_wq)
  2283. return -ENOMEM;
  2284. /* register as a fcoe transport */
  2285. rc = fcoe_transport_attach(&fcoe_sw_transport);
  2286. if (rc) {
  2287. printk(KERN_ERR "failed to register an fcoe transport, check "
  2288. "if libfcoe is loaded\n");
  2289. return rc;
  2290. }
  2291. mutex_lock(&fcoe_config_mutex);
  2292. for_each_possible_cpu(cpu) {
  2293. p = &per_cpu(fcoe_percpu, cpu);
  2294. skb_queue_head_init(&p->fcoe_rx_list);
  2295. }
  2296. cpu_notifier_register_begin();
  2297. for_each_online_cpu(cpu)
  2298. fcoe_percpu_thread_create(cpu);
  2299. /* Initialize per CPU interrupt thread */
  2300. rc = __register_hotcpu_notifier(&fcoe_cpu_notifier);
  2301. if (rc)
  2302. goto out_free;
  2303. cpu_notifier_register_done();
  2304. /* Setup link change notification */
  2305. fcoe_dev_setup();
  2306. rc = fcoe_if_init();
  2307. if (rc)
  2308. goto out_free;
  2309. mutex_unlock(&fcoe_config_mutex);
  2310. return 0;
  2311. out_free:
  2312. for_each_online_cpu(cpu) {
  2313. fcoe_percpu_thread_destroy(cpu);
  2314. }
  2315. cpu_notifier_register_done();
  2316. mutex_unlock(&fcoe_config_mutex);
  2317. destroy_workqueue(fcoe_wq);
  2318. return rc;
  2319. }
  2320. module_init(fcoe_init);
  2321. /**
  2322. * fcoe_exit() - Clean up fcoe.ko
  2323. *
  2324. * Returns: 0 on success or a negative value on failure
  2325. */
  2326. static void __exit fcoe_exit(void)
  2327. {
  2328. struct fcoe_interface *fcoe, *tmp;
  2329. struct fcoe_ctlr *ctlr;
  2330. struct fcoe_port *port;
  2331. unsigned int cpu;
  2332. mutex_lock(&fcoe_config_mutex);
  2333. fcoe_dev_cleanup();
  2334. /* releases the associated fcoe hosts */
  2335. rtnl_lock();
  2336. list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list) {
  2337. ctlr = fcoe_to_ctlr(fcoe);
  2338. port = lport_priv(ctlr->lp);
  2339. fcoe_hostlist_del(port->lport);
  2340. queue_work(fcoe_wq, &port->destroy_work);
  2341. }
  2342. rtnl_unlock();
  2343. cpu_notifier_register_begin();
  2344. for_each_online_cpu(cpu)
  2345. fcoe_percpu_thread_destroy(cpu);
  2346. __unregister_hotcpu_notifier(&fcoe_cpu_notifier);
  2347. cpu_notifier_register_done();
  2348. mutex_unlock(&fcoe_config_mutex);
  2349. /*
  2350. * destroy_work's may be chained but destroy_workqueue()
  2351. * can take care of them. Just kill the fcoe_wq.
  2352. */
  2353. destroy_workqueue(fcoe_wq);
  2354. /*
  2355. * Detaching from the scsi transport must happen after all
  2356. * destroys are done on the fcoe_wq. destroy_workqueue will
  2357. * enusre the fcoe_wq is flushed.
  2358. */
  2359. fcoe_if_exit();
  2360. /* detach from fcoe transport */
  2361. fcoe_transport_detach(&fcoe_sw_transport);
  2362. }
  2363. module_exit(fcoe_exit);
  2364. /**
  2365. * fcoe_flogi_resp() - FCoE specific FLOGI and FDISC response handler
  2366. * @seq: active sequence in the FLOGI or FDISC exchange
  2367. * @fp: response frame, or error encoded in a pointer (timeout)
  2368. * @arg: pointer the the fcoe_ctlr structure
  2369. *
  2370. * This handles MAC address management for FCoE, then passes control on to
  2371. * the libfc FLOGI response handler.
  2372. */
  2373. static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
  2374. {
  2375. struct fcoe_ctlr *fip = arg;
  2376. struct fc_exch *exch = fc_seq_exch(seq);
  2377. struct fc_lport *lport = exch->lp;
  2378. u8 *mac;
  2379. if (IS_ERR(fp))
  2380. goto done;
  2381. mac = fr_cb(fp)->granted_mac;
  2382. /* pre-FIP */
  2383. if (is_zero_ether_addr(mac))
  2384. fcoe_ctlr_recv_flogi(fip, lport, fp);
  2385. if (!is_zero_ether_addr(mac))
  2386. fcoe_update_src_mac(lport, mac);
  2387. done:
  2388. fc_lport_flogi_resp(seq, fp, lport);
  2389. }
  2390. /**
  2391. * fcoe_logo_resp() - FCoE specific LOGO response handler
  2392. * @seq: active sequence in the LOGO exchange
  2393. * @fp: response frame, or error encoded in a pointer (timeout)
  2394. * @arg: pointer the the fcoe_ctlr structure
  2395. *
  2396. * This handles MAC address management for FCoE, then passes control on to
  2397. * the libfc LOGO response handler.
  2398. */
  2399. static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
  2400. {
  2401. struct fc_lport *lport = arg;
  2402. static u8 zero_mac[ETH_ALEN] = { 0 };
  2403. if (!IS_ERR(fp))
  2404. fcoe_update_src_mac(lport, zero_mac);
  2405. fc_lport_logo_resp(seq, fp, lport);
  2406. }
  2407. /**
  2408. * fcoe_elsct_send - FCoE specific ELS handler
  2409. *
  2410. * This does special case handling of FIP encapsualted ELS exchanges for FCoE,
  2411. * using FCoE specific response handlers and passing the FIP controller as
  2412. * the argument (the lport is still available from the exchange).
  2413. *
  2414. * Most of the work here is just handed off to the libfc routine.
  2415. */
  2416. static struct fc_seq *fcoe_elsct_send(struct fc_lport *lport, u32 did,
  2417. struct fc_frame *fp, unsigned int op,
  2418. void (*resp)(struct fc_seq *,
  2419. struct fc_frame *,
  2420. void *),
  2421. void *arg, u32 timeout)
  2422. {
  2423. struct fcoe_port *port = lport_priv(lport);
  2424. struct fcoe_interface *fcoe = port->priv;
  2425. struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
  2426. struct fc_frame_header *fh = fc_frame_header_get(fp);
  2427. switch (op) {
  2428. case ELS_FLOGI:
  2429. case ELS_FDISC:
  2430. if (lport->point_to_multipoint)
  2431. break;
  2432. return fc_elsct_send(lport, did, fp, op, fcoe_flogi_resp,
  2433. fip, timeout);
  2434. case ELS_LOGO:
  2435. /* only hook onto fabric logouts, not port logouts */
  2436. if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI)
  2437. break;
  2438. return fc_elsct_send(lport, did, fp, op, fcoe_logo_resp,
  2439. lport, timeout);
  2440. }
  2441. return fc_elsct_send(lport, did, fp, op, resp, arg, timeout);
  2442. }
  2443. /**
  2444. * fcoe_vport_create() - create an fc_host/scsi_host for a vport
  2445. * @vport: fc_vport object to create a new fc_host for
  2446. * @disabled: start the new fc_host in a disabled state by default?
  2447. *
  2448. * Returns: 0 for success
  2449. */
  2450. static int fcoe_vport_create(struct fc_vport *vport, bool disabled)
  2451. {
  2452. struct Scsi_Host *shost = vport_to_shost(vport);
  2453. struct fc_lport *n_port = shost_priv(shost);
  2454. struct fcoe_port *port = lport_priv(n_port);
  2455. struct fcoe_interface *fcoe = port->priv;
  2456. struct net_device *netdev = fcoe->netdev;
  2457. struct fc_lport *vn_port;
  2458. int rc;
  2459. char buf[32];
  2460. rc = fcoe_validate_vport_create(vport);
  2461. if (rc) {
  2462. fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
  2463. printk(KERN_ERR "fcoe: Failed to create vport, "
  2464. "WWPN (0x%s) already exists\n",
  2465. buf);
  2466. return rc;
  2467. }
  2468. mutex_lock(&fcoe_config_mutex);
  2469. rtnl_lock();
  2470. vn_port = fcoe_if_create(fcoe, &vport->dev, 1);
  2471. rtnl_unlock();
  2472. mutex_unlock(&fcoe_config_mutex);
  2473. if (IS_ERR(vn_port)) {
  2474. printk(KERN_ERR "fcoe: fcoe_vport_create(%s) failed\n",
  2475. netdev->name);
  2476. return -EIO;
  2477. }
  2478. if (disabled) {
  2479. fc_vport_set_state(vport, FC_VPORT_DISABLED);
  2480. } else {
  2481. vn_port->boot_time = jiffies;
  2482. fc_fabric_login(vn_port);
  2483. fc_vport_setlink(vn_port);
  2484. }
  2485. return 0;
  2486. }
  2487. /**
  2488. * fcoe_vport_destroy() - destroy the fc_host/scsi_host for a vport
  2489. * @vport: fc_vport object that is being destroyed
  2490. *
  2491. * Returns: 0 for success
  2492. */
  2493. static int fcoe_vport_destroy(struct fc_vport *vport)
  2494. {
  2495. struct Scsi_Host *shost = vport_to_shost(vport);
  2496. struct fc_lport *n_port = shost_priv(shost);
  2497. struct fc_lport *vn_port = vport->dd_data;
  2498. mutex_lock(&n_port->lp_mutex);
  2499. list_del(&vn_port->list);
  2500. mutex_unlock(&n_port->lp_mutex);
  2501. mutex_lock(&fcoe_config_mutex);
  2502. fcoe_if_destroy(vn_port);
  2503. mutex_unlock(&fcoe_config_mutex);
  2504. return 0;
  2505. }
  2506. /**
  2507. * fcoe_vport_disable() - change vport state
  2508. * @vport: vport to bring online/offline
  2509. * @disable: should the vport be disabled?
  2510. */
  2511. static int fcoe_vport_disable(struct fc_vport *vport, bool disable)
  2512. {
  2513. struct fc_lport *lport = vport->dd_data;
  2514. if (disable) {
  2515. fc_vport_set_state(vport, FC_VPORT_DISABLED);
  2516. fc_fabric_logoff(lport);
  2517. } else {
  2518. lport->boot_time = jiffies;
  2519. fc_fabric_login(lport);
  2520. fc_vport_setlink(lport);
  2521. }
  2522. return 0;
  2523. }
  2524. /**
  2525. * fcoe_vport_set_symbolic_name() - append vport string to symbolic name
  2526. * @vport: fc_vport with a new symbolic name string
  2527. *
  2528. * After generating a new symbolic name string, a new RSPN_ID request is
  2529. * sent to the name server. There is no response handler, so if it fails
  2530. * for some reason it will not be retried.
  2531. */
  2532. static void fcoe_set_vport_symbolic_name(struct fc_vport *vport)
  2533. {
  2534. struct fc_lport *lport = vport->dd_data;
  2535. struct fc_frame *fp;
  2536. size_t len;
  2537. snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
  2538. "%s v%s over %s : %s", FCOE_NAME, FCOE_VERSION,
  2539. fcoe_netdev(lport)->name, vport->symbolic_name);
  2540. if (lport->state != LPORT_ST_READY)
  2541. return;
  2542. len = strnlen(fc_host_symbolic_name(lport->host), 255);
  2543. fp = fc_frame_alloc(lport,
  2544. sizeof(struct fc_ct_hdr) +
  2545. sizeof(struct fc_ns_rspn) + len);
  2546. if (!fp)
  2547. return;
  2548. lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RSPN_ID,
  2549. NULL, NULL, 3 * lport->r_a_tov);
  2550. }
  2551. static void fcoe_fcf_get_vlan_id(struct fcoe_fcf_device *fcf_dev)
  2552. {
  2553. struct fcoe_ctlr_device *ctlr_dev =
  2554. fcoe_fcf_dev_to_ctlr_dev(fcf_dev);
  2555. struct fcoe_ctlr *ctlr = fcoe_ctlr_device_priv(ctlr_dev);
  2556. struct fcoe_interface *fcoe = fcoe_ctlr_priv(ctlr);
  2557. fcf_dev->vlan_id = vlan_dev_vlan_id(fcoe->netdev);
  2558. }
  2559. /**
  2560. * fcoe_set_port_id() - Callback from libfc when Port_ID is set.
  2561. * @lport: the local port
  2562. * @port_id: the port ID
  2563. * @fp: the received frame, if any, that caused the port_id to be set.
  2564. *
  2565. * This routine handles the case where we received a FLOGI and are
  2566. * entering point-to-point mode. We need to call fcoe_ctlr_recv_flogi()
  2567. * so it can set the non-mapped mode and gateway address.
  2568. *
  2569. * The FLOGI LS_ACC is handled by fcoe_flogi_resp().
  2570. */
  2571. static void fcoe_set_port_id(struct fc_lport *lport,
  2572. u32 port_id, struct fc_frame *fp)
  2573. {
  2574. struct fcoe_port *port = lport_priv(lport);
  2575. struct fcoe_interface *fcoe = port->priv;
  2576. struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
  2577. if (fp && fc_frame_payload_op(fp) == ELS_FLOGI)
  2578. fcoe_ctlr_recv_flogi(ctlr, lport, fp);
  2579. }