libfcoe.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. /*
  2. * Copyright (c) 2008-2009 Cisco Systems, Inc. All rights reserved.
  3. * Copyright (c) 2007-2008 Intel Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program; if not, write to the Free Software Foundation, Inc.,
  16. * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  17. *
  18. * Maintained at www.Open-FCoE.org
  19. */
  20. #ifndef _LIBFCOE_H
  21. #define _LIBFCOE_H
  22. #include <linux/etherdevice.h>
  23. #include <linux/if_ether.h>
  24. #include <linux/netdevice.h>
  25. #include <linux/skbuff.h>
  26. #include <linux/workqueue.h>
  27. #include <linux/random.h>
  28. #include <scsi/fc/fc_fcoe.h>
  29. #include <scsi/libfc.h>
  30. #define FCOE_MAX_CMD_LEN 16 /* Supported CDB length */
  31. /*
  32. * Max MTU for FCoE: 14 (FCoE header) + 24 (FC header) + 2112 (max FC payload)
  33. * + 4 (FC CRC) + 4 (FCoE trailer) = 2158 bytes
  34. */
  35. #define FCOE_MTU 2158
  36. /*
  37. * FIP tunable parameters.
  38. */
  39. #define FCOE_CTLR_START_DELAY 2000 /* mS after first adv. to choose FCF */
  40. #define FCOE_CTRL_SOL_TOV 2000 /* min. solicitation interval (mS) */
  41. #define FCOE_CTLR_FCF_LIMIT 20 /* max. number of FCF entries */
  42. #define FCOE_CTLR_VN2VN_LOGIN_LIMIT 3 /* max. VN2VN rport login retries */
  43. /**
  44. * enum fip_state - internal state of FCoE controller.
  45. * @FIP_ST_DISABLED: controller has been disabled or not yet enabled.
  46. * @FIP_ST_LINK_WAIT: the physical link is down or unusable.
  47. * @FIP_ST_AUTO: determining whether to use FIP or non-FIP mode.
  48. * @FIP_ST_NON_FIP: non-FIP mode selected.
  49. * @FIP_ST_ENABLED: FIP mode selected.
  50. * @FIP_ST_VNMP_START: VN2VN multipath mode start, wait
  51. * @FIP_ST_VNMP_PROBE1: VN2VN sent first probe, listening
  52. * @FIP_ST_VNMP_PROBE2: VN2VN sent second probe, listening
  53. * @FIP_ST_VNMP_CLAIM: VN2VN sent claim, waiting for responses
  54. * @FIP_ST_VNMP_UP: VN2VN multipath mode operation
  55. */
  56. enum fip_state {
  57. FIP_ST_DISABLED,
  58. FIP_ST_LINK_WAIT,
  59. FIP_ST_AUTO,
  60. FIP_ST_NON_FIP,
  61. FIP_ST_ENABLED,
  62. FIP_ST_VNMP_START,
  63. FIP_ST_VNMP_PROBE1,
  64. FIP_ST_VNMP_PROBE2,
  65. FIP_ST_VNMP_CLAIM,
  66. FIP_ST_VNMP_UP,
  67. };
  68. /*
  69. * Modes:
  70. * The mode is the state that is to be entered after link up.
  71. * It must not change after fcoe_ctlr_init() sets it.
  72. */
  73. #define FIP_MODE_AUTO FIP_ST_AUTO
  74. #define FIP_MODE_NON_FIP FIP_ST_NON_FIP
  75. #define FIP_MODE_FABRIC FIP_ST_ENABLED
  76. #define FIP_MODE_VN2VN FIP_ST_VNMP_START
  77. /**
  78. * struct fcoe_ctlr - FCoE Controller and FIP state
  79. * @state: internal FIP state for network link and FIP or non-FIP mode.
  80. * @mode: LLD-selected mode.
  81. * @lp: &fc_lport: libfc local port.
  82. * @sel_fcf: currently selected FCF, or NULL.
  83. * @fcfs: list of discovered FCFs.
  84. * @fcf_count: number of discovered FCF entries.
  85. * @sol_time: time when a multicast solicitation was last sent.
  86. * @sel_time: time after which to select an FCF.
  87. * @port_ka_time: time of next port keep-alive.
  88. * @ctlr_ka_time: time of next controller keep-alive.
  89. * @timer: timer struct used for all delayed events.
  90. * @timer_work: &work_struct for doing keep-alives and resets.
  91. * @recv_work: &work_struct for receiving FIP frames.
  92. * @fip_recv_list: list of received FIP frames.
  93. * @flogi_req: clone of FLOGI request sent
  94. * @rnd_state: state for pseudo-random number generator.
  95. * @port_id: proposed or selected local-port ID.
  96. * @user_mfs: configured maximum FC frame size, including FC header.
  97. * @flogi_oxid: exchange ID of most recent fabric login.
  98. * @flogi_req_send: send of FLOGI requested
  99. * @flogi_count: number of FLOGI attempts in AUTO mode.
  100. * @map_dest: use the FC_MAP mode for destination MAC addresses.
  101. * @spma: supports SPMA server-provided MACs mode
  102. * @probe_tries: number of FC_IDs probed
  103. * @dest_addr: MAC address of the selected FC forwarder.
  104. * @ctl_src_addr: the native MAC address of our local port.
  105. * @send: LLD-supplied function to handle sending FIP Ethernet frames
  106. * @update_mac: LLD-supplied function to handle changes to MAC addresses.
  107. * @get_src_addr: LLD-supplied function to supply a source MAC address.
  108. * @ctlr_mutex: lock protecting this structure.
  109. * @ctlr_lock: spinlock covering flogi_req
  110. *
  111. * This structure is used by all FCoE drivers. It contains information
  112. * needed by all FCoE low-level drivers (LLDs) as well as internal state
  113. * for FIP, and fields shared with the LLDS.
  114. */
  115. struct fcoe_ctlr {
  116. enum fip_state state;
  117. enum fip_state mode;
  118. struct fc_lport *lp;
  119. struct fcoe_fcf *sel_fcf;
  120. struct list_head fcfs;
  121. u16 fcf_count;
  122. unsigned long sol_time;
  123. unsigned long sel_time;
  124. unsigned long port_ka_time;
  125. unsigned long ctlr_ka_time;
  126. struct timer_list timer;
  127. struct work_struct timer_work;
  128. struct work_struct recv_work;
  129. struct sk_buff_head fip_recv_list;
  130. struct sk_buff *flogi_req;
  131. struct rnd_state rnd_state;
  132. u32 port_id;
  133. u16 user_mfs;
  134. u16 flogi_oxid;
  135. u8 flogi_req_send;
  136. u8 flogi_count;
  137. u8 map_dest;
  138. u8 spma;
  139. u8 probe_tries;
  140. u8 dest_addr[ETH_ALEN];
  141. u8 ctl_src_addr[ETH_ALEN];
  142. void (*send)(struct fcoe_ctlr *, struct sk_buff *);
  143. void (*update_mac)(struct fc_lport *, u8 *addr);
  144. u8 * (*get_src_addr)(struct fc_lport *);
  145. struct mutex ctlr_mutex;
  146. spinlock_t ctlr_lock;
  147. };
  148. /**
  149. * struct fcoe_fcf - Fibre-Channel Forwarder
  150. * @list: list linkage
  151. * @time: system time (jiffies) when an advertisement was last received
  152. * @switch_name: WWN of switch from advertisement
  153. * @fabric_name: WWN of fabric from advertisement
  154. * @fc_map: FC_MAP value from advertisement
  155. * @fcf_mac: Ethernet address of the FCF
  156. * @vfid: virtual fabric ID
  157. * @pri: selection priority, smaller values are better
  158. * @flogi_sent: current FLOGI sent to this FCF
  159. * @flags: flags received from advertisement
  160. * @fka_period: keep-alive period, in jiffies
  161. *
  162. * A Fibre-Channel Forwarder (FCF) is the entity on the Ethernet that
  163. * passes FCoE frames on to an FC fabric. This structure represents
  164. * one FCF from which advertisements have been received.
  165. *
  166. * When looking up an FCF, @switch_name, @fabric_name, @fc_map, @vfid, and
  167. * @fcf_mac together form the lookup key.
  168. */
  169. struct fcoe_fcf {
  170. struct list_head list;
  171. unsigned long time;
  172. u64 switch_name;
  173. u64 fabric_name;
  174. u32 fc_map;
  175. u16 vfid;
  176. u8 fcf_mac[ETH_ALEN];
  177. u8 pri;
  178. u8 flogi_sent;
  179. u16 flags;
  180. u32 fka_period;
  181. u8 fd_flags:1;
  182. };
  183. /**
  184. * struct fcoe_rport - VN2VN remote port
  185. * @time: time of create or last beacon packet received from node
  186. * @fcoe_len: max FCoE frame size, not including VLAN or Ethernet headers
  187. * @flags: flags from probe or claim
  188. * @login_count: number of unsuccessful rport logins to this port
  189. * @enode_mac: E_Node control MAC address
  190. * @vn_mac: VN_Node assigned MAC address for data
  191. */
  192. struct fcoe_rport {
  193. unsigned long time;
  194. u16 fcoe_len;
  195. u16 flags;
  196. u8 login_count;
  197. u8 enode_mac[ETH_ALEN];
  198. u8 vn_mac[ETH_ALEN];
  199. };
  200. /* FIP API functions */
  201. void fcoe_ctlr_init(struct fcoe_ctlr *, enum fip_state);
  202. void fcoe_ctlr_destroy(struct fcoe_ctlr *);
  203. void fcoe_ctlr_link_up(struct fcoe_ctlr *);
  204. int fcoe_ctlr_link_down(struct fcoe_ctlr *);
  205. int fcoe_ctlr_els_send(struct fcoe_ctlr *, struct fc_lport *, struct sk_buff *);
  206. void fcoe_ctlr_recv(struct fcoe_ctlr *, struct sk_buff *);
  207. int fcoe_ctlr_recv_flogi(struct fcoe_ctlr *, struct fc_lport *,
  208. struct fc_frame *);
  209. /* libfcoe funcs */
  210. u64 fcoe_wwn_from_mac(unsigned char mac[], unsigned int, unsigned int);
  211. int fcoe_libfc_config(struct fc_lport *, struct fcoe_ctlr *,
  212. const struct libfc_function_template *, int init_fcp);
  213. u32 fcoe_fc_crc(struct fc_frame *fp);
  214. int fcoe_start_io(struct sk_buff *skb);
  215. /**
  216. * is_fip_mode() - returns true if FIP mode selected.
  217. * @fip: FCoE controller.
  218. */
  219. static inline bool is_fip_mode(struct fcoe_ctlr *fip)
  220. {
  221. return fip->state == FIP_ST_ENABLED;
  222. }
  223. /* helper for FCoE SW HBA drivers, can include subven and subdev if needed. The
  224. * modpost would use pci_device_id table to auto-generate formatted module alias
  225. * into the corresponding .mod.c file, but there may or may not be a pci device
  226. * id table for FCoE drivers so we use the following helper for build the fcoe
  227. * driver module alias.
  228. */
  229. #define MODULE_ALIAS_FCOE_PCI(ven, dev) \
  230. MODULE_ALIAS("fcoe-pci:" \
  231. "v" __stringify(ven) \
  232. "d" __stringify(dev) "sv*sd*bc*sc*i*")
  233. /* the name of the default FCoE transport driver fcoe.ko */
  234. #define FCOE_TRANSPORT_DEFAULT "fcoe"
  235. /* struct fcoe_transport - The FCoE transport interface
  236. * @name: a vendor specific name for their FCoE transport driver
  237. * @attached: whether this transport is already attached
  238. * @list: list linkage to all attached transports
  239. * @match: handler to allow the transport driver to match up a given netdev
  240. * @create: handler to sysfs entry of create for FCoE instances
  241. * @destroy: handler to sysfs entry of destroy for FCoE instances
  242. * @enable: handler to sysfs entry of enable for FCoE instances
  243. * @disable: handler to sysfs entry of disable for FCoE instances
  244. */
  245. struct fcoe_transport {
  246. char name[IFNAMSIZ];
  247. bool attached;
  248. struct list_head list;
  249. bool (*match) (struct net_device *device);
  250. int (*create) (struct net_device *device, enum fip_state fip_mode);
  251. int (*destroy) (struct net_device *device);
  252. int (*enable) (struct net_device *device);
  253. int (*disable) (struct net_device *device);
  254. };
  255. /**
  256. * struct fcoe_percpu_s - The context for FCoE receive thread(s)
  257. * @thread: The thread context
  258. * @fcoe_rx_list: The queue of pending packets to process
  259. * @page: The memory page for calculating frame trailer CRCs
  260. * @crc_eof_offset: The offset into the CRC page pointing to available
  261. * memory for a new trailer
  262. */
  263. struct fcoe_percpu_s {
  264. struct task_struct *thread;
  265. struct sk_buff_head fcoe_rx_list;
  266. struct page *crc_eof_page;
  267. int crc_eof_offset;
  268. };
  269. /**
  270. * struct fcoe_port - The FCoE private structure
  271. * @priv: The associated fcoe interface. The structure is
  272. * defined by the low level driver
  273. * @lport: The associated local port
  274. * @fcoe_pending_queue: The pending Rx queue of skbs
  275. * @fcoe_pending_queue_active: Indicates if the pending queue is active
  276. * @max_queue_depth: Max queue depth of pending queue
  277. * @min_queue_depth: Min queue depth of pending queue
  278. * @timer: The queue timer
  279. * @destroy_work: Handle for work context
  280. * (to prevent RTNL deadlocks)
  281. * @data_srt_addr: Source address for data
  282. *
  283. * An instance of this structure is to be allocated along with the
  284. * Scsi_Host and libfc fc_lport structures.
  285. */
  286. struct fcoe_port {
  287. void *priv;
  288. struct fc_lport *lport;
  289. struct sk_buff_head fcoe_pending_queue;
  290. u8 fcoe_pending_queue_active;
  291. u32 max_queue_depth;
  292. u32 min_queue_depth;
  293. struct timer_list timer;
  294. struct work_struct destroy_work;
  295. u8 data_src_addr[ETH_ALEN];
  296. };
  297. void fcoe_clean_pending_queue(struct fc_lport *);
  298. void fcoe_check_wait_queue(struct fc_lport *lport, struct sk_buff *skb);
  299. void fcoe_queue_timer(ulong lport);
  300. int fcoe_get_paged_crc_eof(struct sk_buff *skb, int tlen,
  301. struct fcoe_percpu_s *fps);
  302. /**
  303. * struct netdev_list
  304. * A mapping from netdevice to fcoe_transport
  305. */
  306. struct fcoe_netdev_mapping {
  307. struct list_head list;
  308. struct net_device *netdev;
  309. struct fcoe_transport *ft;
  310. };
  311. /* fcoe transports registration and deregistration */
  312. int fcoe_transport_attach(struct fcoe_transport *ft);
  313. int fcoe_transport_detach(struct fcoe_transport *ft);
  314. #endif /* _LIBFCOE_H */