2 * Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved.
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.
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
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.
17 * Maintained at www.Open-FCoE.org
20 #include <linux/module.h>
21 #include <linux/version.h>
22 #include <linux/spinlock.h>
23 #include <linux/netdevice.h>
24 #include <linux/etherdevice.h>
25 #include <linux/ethtool.h>
26 #include <linux/if_ether.h>
27 #include <linux/if_vlan.h>
28 #include <linux/crc32.h>
29 #include <linux/slab.h>
30 #include <linux/cpu.h>
32 #include <linux/sysfs.h>
33 #include <linux/ctype.h>
34 #include <linux/workqueue.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>
41 #include <scsi/fc/fc_encaps.h>
42 #include <scsi/fc/fc_fip.h>
44 #include <scsi/libfc.h>
45 #include <scsi/fc_frame.h>
46 #include <scsi/libfcoe.h>
50 MODULE_AUTHOR("Open-FCoE.org");
51 MODULE_DESCRIPTION("FCoE");
52 MODULE_LICENSE("GPL v2");
54 /* Performance tuning parameters for fcoe */
55 static unsigned int fcoe_ddp_min
;
56 module_param_named(ddp_min
, fcoe_ddp_min
, uint
, S_IRUGO
| S_IWUSR
);
57 MODULE_PARM_DESC(ddp_min
, "Minimum I/O size in bytes for " \
58 "Direct Data Placement (DDP).");
60 DEFINE_MUTEX(fcoe_config_mutex
);
62 static struct workqueue_struct
*fcoe_wq
;
64 /* fcoe_percpu_clean completion. Waiter protected by fcoe_create_mutex */
65 static DECLARE_COMPLETION(fcoe_flush_completion
);
68 /* must only by accessed under the RTNL mutex */
69 LIST_HEAD(fcoe_hostlist
);
70 DEFINE_PER_CPU(struct fcoe_percpu_s
, fcoe_percpu
);
72 /* Function Prototypes */
73 static int fcoe_reset(struct Scsi_Host
*);
74 static int fcoe_xmit(struct fc_lport
*, struct fc_frame
*);
75 static int fcoe_rcv(struct sk_buff
*, struct net_device
*,
76 struct packet_type
*, struct net_device
*);
77 static int fcoe_percpu_receive_thread(void *);
78 static void fcoe_percpu_clean(struct fc_lport
*);
79 static int fcoe_link_speed_update(struct fc_lport
*);
80 static int fcoe_link_ok(struct fc_lport
*);
82 static struct fc_lport
*fcoe_hostlist_lookup(const struct net_device
*);
83 static int fcoe_hostlist_add(const struct fc_lport
*);
85 static int fcoe_device_notification(struct notifier_block
*, ulong
, void *);
86 static void fcoe_dev_setup(void);
87 static void fcoe_dev_cleanup(void);
88 static struct fcoe_interface
89 *fcoe_hostlist_lookup_port(const struct net_device
*);
91 static int fcoe_fip_recv(struct sk_buff
*, struct net_device
*,
92 struct packet_type
*, struct net_device
*);
94 static void fcoe_fip_send(struct fcoe_ctlr
*, struct sk_buff
*);
95 static void fcoe_update_src_mac(struct fc_lport
*, u8
*);
96 static u8
*fcoe_get_src_mac(struct fc_lport
*);
97 static void fcoe_destroy_work(struct work_struct
*);
99 static int fcoe_ddp_setup(struct fc_lport
*, u16
, struct scatterlist
*,
101 static int fcoe_ddp_done(struct fc_lport
*, u16
);
102 static int fcoe_ddp_target(struct fc_lport
*, u16
, struct scatterlist
*,
104 static int fcoe_cpu_callback(struct notifier_block
*, unsigned long, void *);
106 static bool fcoe_match(struct net_device
*netdev
);
107 static int fcoe_create(struct net_device
*netdev
, enum fip_state fip_mode
);
108 static int fcoe_destroy(struct net_device
*netdev
);
109 static int fcoe_enable(struct net_device
*netdev
);
110 static int fcoe_disable(struct net_device
*netdev
);
112 static struct fc_seq
*fcoe_elsct_send(struct fc_lport
*,
113 u32 did
, struct fc_frame
*,
115 void (*resp
)(struct fc_seq
*,
118 void *, u32 timeout
);
119 static void fcoe_recv_frame(struct sk_buff
*skb
);
121 static void fcoe_get_lesb(struct fc_lport
*, struct fc_els_lesb
*);
123 /* notification function for packets from net device */
124 static struct notifier_block fcoe_notifier
= {
125 .notifier_call
= fcoe_device_notification
,
128 /* notification function for CPU hotplug events */
129 static struct notifier_block fcoe_cpu_notifier
= {
130 .notifier_call
= fcoe_cpu_callback
,
133 static struct scsi_transport_template
*fcoe_nport_scsi_transport
;
134 static struct scsi_transport_template
*fcoe_vport_scsi_transport
;
136 static int fcoe_vport_destroy(struct fc_vport
*);
137 static int fcoe_vport_create(struct fc_vport
*, bool disabled
);
138 static int fcoe_vport_disable(struct fc_vport
*, bool disable
);
139 static void fcoe_set_vport_symbolic_name(struct fc_vport
*);
140 static void fcoe_set_port_id(struct fc_lport
*, u32
, struct fc_frame
*);
142 static struct libfc_function_template fcoe_libfc_fcn_templ
= {
143 .frame_send
= fcoe_xmit
,
144 .ddp_setup
= fcoe_ddp_setup
,
145 .ddp_done
= fcoe_ddp_done
,
146 .ddp_target
= fcoe_ddp_target
,
147 .elsct_send
= fcoe_elsct_send
,
148 .get_lesb
= fcoe_get_lesb
,
149 .lport_set_port_id
= fcoe_set_port_id
,
152 struct fc_function_template fcoe_nport_fc_functions
= {
153 .show_host_node_name
= 1,
154 .show_host_port_name
= 1,
155 .show_host_supported_classes
= 1,
156 .show_host_supported_fc4s
= 1,
157 .show_host_active_fc4s
= 1,
158 .show_host_maxframe_size
= 1,
160 .show_host_port_id
= 1,
161 .show_host_supported_speeds
= 1,
162 .get_host_speed
= fc_get_host_speed
,
163 .show_host_speed
= 1,
164 .show_host_port_type
= 1,
165 .get_host_port_state
= fc_get_host_port_state
,
166 .show_host_port_state
= 1,
167 .show_host_symbolic_name
= 1,
169 .dd_fcrport_size
= sizeof(struct fc_rport_libfc_priv
),
170 .show_rport_maxframe_size
= 1,
171 .show_rport_supported_classes
= 1,
173 .show_host_fabric_name
= 1,
174 .show_starget_node_name
= 1,
175 .show_starget_port_name
= 1,
176 .show_starget_port_id
= 1,
177 .set_rport_dev_loss_tmo
= fc_set_rport_loss_tmo
,
178 .show_rport_dev_loss_tmo
= 1,
179 .get_fc_host_stats
= fc_get_host_stats
,
180 .issue_fc_host_lip
= fcoe_reset
,
182 .terminate_rport_io
= fc_rport_terminate_io
,
184 .vport_create
= fcoe_vport_create
,
185 .vport_delete
= fcoe_vport_destroy
,
186 .vport_disable
= fcoe_vport_disable
,
187 .set_vport_symbolic_name
= fcoe_set_vport_symbolic_name
,
189 .bsg_request
= fc_lport_bsg_request
,
192 struct fc_function_template fcoe_vport_fc_functions
= {
193 .show_host_node_name
= 1,
194 .show_host_port_name
= 1,
195 .show_host_supported_classes
= 1,
196 .show_host_supported_fc4s
= 1,
197 .show_host_active_fc4s
= 1,
198 .show_host_maxframe_size
= 1,
200 .show_host_port_id
= 1,
201 .show_host_supported_speeds
= 1,
202 .get_host_speed
= fc_get_host_speed
,
203 .show_host_speed
= 1,
204 .show_host_port_type
= 1,
205 .get_host_port_state
= fc_get_host_port_state
,
206 .show_host_port_state
= 1,
207 .show_host_symbolic_name
= 1,
209 .dd_fcrport_size
= sizeof(struct fc_rport_libfc_priv
),
210 .show_rport_maxframe_size
= 1,
211 .show_rport_supported_classes
= 1,
213 .show_host_fabric_name
= 1,
214 .show_starget_node_name
= 1,
215 .show_starget_port_name
= 1,
216 .show_starget_port_id
= 1,
217 .set_rport_dev_loss_tmo
= fc_set_rport_loss_tmo
,
218 .show_rport_dev_loss_tmo
= 1,
219 .get_fc_host_stats
= fc_get_host_stats
,
220 .issue_fc_host_lip
= fcoe_reset
,
222 .terminate_rport_io
= fc_rport_terminate_io
,
224 .bsg_request
= fc_lport_bsg_request
,
227 static struct scsi_host_template fcoe_shost_template
= {
228 .module
= THIS_MODULE
,
229 .name
= "FCoE Driver",
230 .proc_name
= FCOE_NAME
,
231 .queuecommand
= fc_queuecommand
,
232 .eh_abort_handler
= fc_eh_abort
,
233 .eh_device_reset_handler
= fc_eh_device_reset
,
234 .eh_host_reset_handler
= fc_eh_host_reset
,
235 .slave_alloc
= fc_slave_alloc
,
236 .change_queue_depth
= fc_change_queue_depth
,
237 .change_queue_type
= fc_change_queue_type
,
240 .can_queue
= FCOE_MAX_OUTSTANDING_COMMANDS
,
241 .use_clustering
= ENABLE_CLUSTERING
,
242 .sg_tablesize
= SG_ALL
,
243 .max_sectors
= 0xffff,
247 * fcoe_interface_setup() - Setup a FCoE interface
248 * @fcoe: The new FCoE interface
249 * @netdev: The net device that the fcoe interface is on
251 * Returns : 0 for success
252 * Locking: must be called with the RTNL mutex held
254 static int fcoe_interface_setup(struct fcoe_interface
*fcoe
,
255 struct net_device
*netdev
)
257 struct fcoe_ctlr
*fip
= &fcoe
->ctlr
;
258 struct netdev_hw_addr
*ha
;
259 struct net_device
*real_dev
;
260 u8 flogi_maddr
[ETH_ALEN
];
261 const struct net_device_ops
*ops
;
263 fcoe
->netdev
= netdev
;
265 /* Let LLD initialize for FCoE */
266 ops
= netdev
->netdev_ops
;
267 if (ops
->ndo_fcoe_enable
) {
268 if (ops
->ndo_fcoe_enable(netdev
))
269 FCOE_NETDEV_DBG(netdev
, "Failed to enable FCoE"
270 " specific feature for LLD.\n");
273 /* Do not support for bonding device */
274 if (netdev
->priv_flags
& IFF_BONDING
&& netdev
->flags
& IFF_MASTER
) {
275 FCOE_NETDEV_DBG(netdev
, "Bonded interfaces not supported\n");
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
;
284 for_each_dev_addr(real_dev
, ha
) {
285 if ((ha
->type
== NETDEV_HW_ADDR_T_SAN
) &&
286 (is_valid_ether_addr(ha
->addr
))) {
287 memcpy(fip
->ctl_src_addr
, ha
->addr
, ETH_ALEN
);
294 /* setup Source Mac Address */
296 memcpy(fip
->ctl_src_addr
, netdev
->dev_addr
, netdev
->addr_len
);
299 * Add FCoE MAC address as second unicast MAC address
300 * or enter promiscuous mode if not capable of listening
301 * for multiple unicast MACs.
303 memcpy(flogi_maddr
, (u8
[6]) FC_FCOE_FLOGI_MAC
, ETH_ALEN
);
304 dev_uc_add(netdev
, flogi_maddr
);
306 dev_uc_add(netdev
, fip
->ctl_src_addr
);
307 if (fip
->mode
== FIP_MODE_VN2VN
) {
308 dev_mc_add(netdev
, FIP_ALL_VN2VN_MACS
);
309 dev_mc_add(netdev
, FIP_ALL_P2P_MACS
);
311 dev_mc_add(netdev
, FIP_ALL_ENODE_MACS
);
314 * setup the receive function from ethernet driver
315 * on the ethertype for the given device
317 fcoe
->fcoe_packet_type
.func
= fcoe_rcv
;
318 fcoe
->fcoe_packet_type
.type
= __constant_htons(ETH_P_FCOE
);
319 fcoe
->fcoe_packet_type
.dev
= netdev
;
320 dev_add_pack(&fcoe
->fcoe_packet_type
);
322 fcoe
->fip_packet_type
.func
= fcoe_fip_recv
;
323 fcoe
->fip_packet_type
.type
= htons(ETH_P_FIP
);
324 fcoe
->fip_packet_type
.dev
= netdev
;
325 dev_add_pack(&fcoe
->fip_packet_type
);
331 * fcoe_interface_create() - Create a FCoE interface on a net device
332 * @netdev: The net device to create the FCoE interface on
333 * @fip_mode: The mode to use for FIP
335 * Returns: pointer to a struct fcoe_interface or NULL on error
337 static struct fcoe_interface
*fcoe_interface_create(struct net_device
*netdev
,
338 enum fip_state fip_mode
)
340 struct fcoe_interface
*fcoe
;
343 if (!try_module_get(THIS_MODULE
)) {
344 FCOE_NETDEV_DBG(netdev
,
345 "Could not get a reference to the module\n");
346 fcoe
= ERR_PTR(-EBUSY
);
350 fcoe
= kzalloc(sizeof(*fcoe
), GFP_KERNEL
);
352 FCOE_NETDEV_DBG(netdev
, "Could not allocate fcoe structure\n");
353 fcoe
= ERR_PTR(-ENOMEM
);
358 kref_init(&fcoe
->kref
);
363 fcoe_ctlr_init(&fcoe
->ctlr
, fip_mode
);
364 fcoe
->ctlr
.send
= fcoe_fip_send
;
365 fcoe
->ctlr
.update_mac
= fcoe_update_src_mac
;
366 fcoe
->ctlr
.get_src_addr
= fcoe_get_src_mac
;
368 err
= fcoe_interface_setup(fcoe
, netdev
);
370 fcoe_ctlr_destroy(&fcoe
->ctlr
);
380 module_put(THIS_MODULE
);
386 * fcoe_interface_release() - fcoe_port kref release function
387 * @kref: Embedded reference count in an fcoe_interface struct
389 static void fcoe_interface_release(struct kref
*kref
)
391 struct fcoe_interface
*fcoe
;
392 struct net_device
*netdev
;
394 fcoe
= container_of(kref
, struct fcoe_interface
, kref
);
395 netdev
= fcoe
->netdev
;
396 /* tear-down the FCoE controller */
397 fcoe_ctlr_destroy(&fcoe
->ctlr
);
400 module_put(THIS_MODULE
);
404 * fcoe_interface_get() - Get a reference to a FCoE interface
405 * @fcoe: The FCoE interface to be held
407 static inline void fcoe_interface_get(struct fcoe_interface
*fcoe
)
409 kref_get(&fcoe
->kref
);
413 * fcoe_interface_put() - Put a reference to a FCoE interface
414 * @fcoe: The FCoE interface to be released
416 static inline void fcoe_interface_put(struct fcoe_interface
*fcoe
)
418 kref_put(&fcoe
->kref
, fcoe_interface_release
);
422 * fcoe_interface_cleanup() - Clean up a FCoE interface
423 * @fcoe: The FCoE interface to be cleaned up
425 * Caller must be holding the RTNL mutex
427 void fcoe_interface_cleanup(struct fcoe_interface
*fcoe
)
429 struct net_device
*netdev
= fcoe
->netdev
;
430 struct fcoe_ctlr
*fip
= &fcoe
->ctlr
;
431 u8 flogi_maddr
[ETH_ALEN
];
432 const struct net_device_ops
*ops
;
437 * Don't listen for Ethernet packets anymore.
438 * synchronize_net() ensures that the packet handlers are not running
439 * on another CPU. dev_remove_pack() would do that, this calls the
440 * unsyncronized version __dev_remove_pack() to avoid multiple delays.
442 __dev_remove_pack(&fcoe
->fcoe_packet_type
);
443 __dev_remove_pack(&fcoe
->fip_packet_type
);
446 /* Delete secondary MAC addresses */
447 memcpy(flogi_maddr
, (u8
[6]) FC_FCOE_FLOGI_MAC
, ETH_ALEN
);
448 dev_uc_del(netdev
, flogi_maddr
);
450 dev_uc_del(netdev
, fip
->ctl_src_addr
);
451 if (fip
->mode
== FIP_MODE_VN2VN
) {
452 dev_mc_del(netdev
, FIP_ALL_VN2VN_MACS
);
453 dev_mc_del(netdev
, FIP_ALL_P2P_MACS
);
455 dev_mc_del(netdev
, FIP_ALL_ENODE_MACS
);
457 /* Tell the LLD we are done w/ FCoE */
458 ops
= netdev
->netdev_ops
;
459 if (ops
->ndo_fcoe_disable
) {
460 if (ops
->ndo_fcoe_disable(netdev
))
461 FCOE_NETDEV_DBG(netdev
, "Failed to disable FCoE"
462 " specific feature for LLD.\n");
467 /* Release the self-reference taken during fcoe_interface_create() */
468 fcoe_interface_put(fcoe
);
472 * fcoe_fip_recv() - Handler for received FIP frames
473 * @skb: The receive skb
474 * @netdev: The associated net device
475 * @ptype: The packet_type structure which was used to register this handler
476 * @orig_dev: The original net_device the the skb was received on.
477 * (in case dev is a bond)
479 * Returns: 0 for success
481 static int fcoe_fip_recv(struct sk_buff
*skb
, struct net_device
*netdev
,
482 struct packet_type
*ptype
,
483 struct net_device
*orig_dev
)
485 struct fcoe_interface
*fcoe
;
487 fcoe
= container_of(ptype
, struct fcoe_interface
, fip_packet_type
);
488 fcoe_ctlr_recv(&fcoe
->ctlr
, skb
);
493 * fcoe_port_send() - Send an Ethernet-encapsulated FIP/FCoE frame
494 * @port: The FCoE port
495 * @skb: The FIP/FCoE packet to be sent
497 static void fcoe_port_send(struct fcoe_port
*port
, struct sk_buff
*skb
)
499 if (port
->fcoe_pending_queue
.qlen
)
500 fcoe_check_wait_queue(port
->lport
, skb
);
501 else if (fcoe_start_io(skb
))
502 fcoe_check_wait_queue(port
->lport
, skb
);
506 * fcoe_fip_send() - Send an Ethernet-encapsulated FIP frame
507 * @fip: The FCoE controller
508 * @skb: The FIP packet to be sent
510 static void fcoe_fip_send(struct fcoe_ctlr
*fip
, struct sk_buff
*skb
)
512 skb
->dev
= fcoe_from_ctlr(fip
)->netdev
;
513 fcoe_port_send(lport_priv(fip
->lp
), skb
);
517 * fcoe_update_src_mac() - Update the Ethernet MAC filters
518 * @lport: The local port to update the source MAC on
519 * @addr: Unicast MAC address to add
521 * Remove any previously-set unicast MAC filter.
522 * Add secondary FCoE MAC address filter for our OUI.
524 static void fcoe_update_src_mac(struct fc_lport
*lport
, u8
*addr
)
526 struct fcoe_port
*port
= lport_priv(lport
);
527 struct fcoe_interface
*fcoe
= port
->priv
;
530 if (!is_zero_ether_addr(port
->data_src_addr
))
531 dev_uc_del(fcoe
->netdev
, port
->data_src_addr
);
532 if (!is_zero_ether_addr(addr
))
533 dev_uc_add(fcoe
->netdev
, addr
);
534 memcpy(port
->data_src_addr
, addr
, ETH_ALEN
);
539 * fcoe_get_src_mac() - return the Ethernet source address for an lport
540 * @lport: libfc lport
542 static u8
*fcoe_get_src_mac(struct fc_lport
*lport
)
544 struct fcoe_port
*port
= lport_priv(lport
);
546 return port
->data_src_addr
;
550 * fcoe_lport_config() - Set up a local port
551 * @lport: The local port to be setup
553 * Returns: 0 for success
555 static int fcoe_lport_config(struct fc_lport
*lport
)
559 lport
->max_retry_count
= 3;
560 lport
->max_rport_retry_count
= 3;
561 lport
->e_d_tov
= 2 * 1000; /* FC-FS default */
562 lport
->r_a_tov
= 2 * 2 * 1000;
563 lport
->service_params
= (FCP_SPPF_INIT_FCN
| FCP_SPPF_RD_XRDY_DIS
|
564 FCP_SPPF_RETRY
| FCP_SPPF_CONF_COMPL
);
565 lport
->does_npiv
= 1;
567 fc_lport_init_stats(lport
);
569 /* lport fc_lport related configuration */
570 fc_lport_config(lport
);
572 /* offload related configuration */
573 lport
->crc_offload
= 0;
574 lport
->seq_offload
= 0;
575 lport
->lro_enabled
= 0;
583 * fcoe_netdev_features_change - Updates the lport's offload flags based
584 * on the LLD netdev's FCoE feature flags
586 static void fcoe_netdev_features_change(struct fc_lport
*lport
,
587 struct net_device
*netdev
)
589 mutex_lock(&lport
->lp_mutex
);
591 if (netdev
->features
& NETIF_F_SG
)
596 if (netdev
->features
& NETIF_F_FCOE_CRC
) {
597 lport
->crc_offload
= 1;
598 FCOE_NETDEV_DBG(netdev
, "Supports FCCRC offload\n");
600 lport
->crc_offload
= 0;
603 if (netdev
->features
& NETIF_F_FSO
) {
604 lport
->seq_offload
= 1;
605 lport
->lso_max
= netdev
->gso_max_size
;
606 FCOE_NETDEV_DBG(netdev
, "Supports LSO for max len 0x%x\n",
609 lport
->seq_offload
= 0;
613 if (netdev
->fcoe_ddp_xid
) {
614 lport
->lro_enabled
= 1;
615 lport
->lro_xid
= netdev
->fcoe_ddp_xid
;
616 FCOE_NETDEV_DBG(netdev
, "Supports LRO for max xid 0x%x\n",
619 lport
->lro_enabled
= 0;
623 mutex_unlock(&lport
->lp_mutex
);
627 * fcoe_netdev_config() - Set up net devive for SW FCoE
628 * @lport: The local port that is associated with the net device
629 * @netdev: The associated net device
631 * Must be called after fcoe_lport_config() as it will use local port mutex
633 * Returns: 0 for success
635 static int fcoe_netdev_config(struct fc_lport
*lport
, struct net_device
*netdev
)
639 struct fcoe_interface
*fcoe
;
640 struct fcoe_port
*port
;
642 /* Setup lport private data to point to fcoe softc */
643 port
= lport_priv(lport
);
647 * Determine max frame size based on underlying device and optional
648 * user-configured limit. If the MFS is too low, fcoe_link_ok()
649 * will return 0, so do this first.
652 if (netdev
->features
& NETIF_F_FCOE_MTU
) {
654 FCOE_NETDEV_DBG(netdev
, "Supports FCOE_MTU of %d bytes\n", mfs
);
656 mfs
-= (sizeof(struct fcoe_hdr
) + sizeof(struct fcoe_crc_eof
));
657 if (fc_set_mfs(lport
, mfs
))
660 /* offload features support */
661 fcoe_netdev_features_change(lport
, netdev
);
663 skb_queue_head_init(&port
->fcoe_pending_queue
);
664 port
->fcoe_pending_queue_active
= 0;
665 setup_timer(&port
->timer
, fcoe_queue_timer
, (unsigned long)lport
);
667 fcoe_link_speed_update(lport
);
670 if (fcoe_get_wwn(netdev
, &wwnn
, NETDEV_FCOE_WWNN
))
671 wwnn
= fcoe_wwn_from_mac(fcoe
->ctlr
.ctl_src_addr
, 1, 0);
672 fc_set_wwnn(lport
, wwnn
);
673 if (fcoe_get_wwn(netdev
, &wwpn
, NETDEV_FCOE_WWPN
))
674 wwpn
= fcoe_wwn_from_mac(fcoe
->ctlr
.ctl_src_addr
,
676 fc_set_wwpn(lport
, wwpn
);
683 * fcoe_shost_config() - Set up the SCSI host associated with a local port
684 * @lport: The local port
685 * @dev: The device associated with the SCSI host
687 * Must be called after fcoe_lport_config() and fcoe_netdev_config()
689 * Returns: 0 for success
691 static int fcoe_shost_config(struct fc_lport
*lport
, struct device
*dev
)
695 /* lport scsi host config */
696 lport
->host
->max_lun
= FCOE_MAX_LUN
;
697 lport
->host
->max_id
= FCOE_MAX_FCP_TARGET
;
698 lport
->host
->max_channel
= 0;
699 lport
->host
->max_cmd_len
= FCOE_MAX_CMD_LEN
;
702 lport
->host
->transportt
= fcoe_vport_scsi_transport
;
704 lport
->host
->transportt
= fcoe_nport_scsi_transport
;
706 /* add the new host to the SCSI-ml */
707 rc
= scsi_add_host(lport
->host
, dev
);
709 FCOE_NETDEV_DBG(fcoe_netdev(lport
), "fcoe_shost_config: "
710 "error on scsi_add_host\n");
715 fc_host_max_npiv_vports(lport
->host
) = USHRT_MAX
;
717 snprintf(fc_host_symbolic_name(lport
->host
), FC_SYMBOLIC_NAME_SIZE
,
718 "%s v%s over %s", FCOE_NAME
, FCOE_VERSION
,
719 fcoe_netdev(lport
)->name
);
725 * fcoe_oem_match() - The match routine for the offloaded exchange manager
728 * This routine will be associated with an exchange manager (EM). When
729 * the libfc exchange handling code is looking for an EM to use it will
730 * call this routine and pass it the frame that it wishes to send. This
731 * routine will return True if the associated EM is to be used and False
732 * if the echange code should continue looking for an EM.
734 * The offload EM that this routine is associated with will handle any
735 * packets that are for SCSI read requests.
737 * This has been enhanced to work when FCoE stack is operating in target
740 * Returns: True for read types I/O, otherwise returns false.
742 bool fcoe_oem_match(struct fc_frame
*fp
)
744 struct fc_frame_header
*fh
= fc_frame_header_get(fp
);
745 struct fcp_cmnd
*fcp
;
747 if (fc_fcp_is_read(fr_fsp(fp
)) &&
748 (fr_fsp(fp
)->data_len
> fcoe_ddp_min
))
750 else if (!(ntoh24(fh
->fh_f_ctl
) & FC_FC_EX_CTX
)) {
751 fcp
= fc_frame_payload_get(fp
, sizeof(*fcp
));
752 if (ntohs(fh
->fh_rx_id
) == FC_XID_UNKNOWN
&&
753 fcp
&& (ntohl(fcp
->fc_dl
) > fcoe_ddp_min
) &&
754 (fcp
->fc_flags
& FCP_CFL_WRDATA
))
761 * fcoe_em_config() - Allocate and configure an exchange manager
762 * @lport: The local port that the new EM will be associated with
764 * Returns: 0 on success
766 static inline int fcoe_em_config(struct fc_lport
*lport
)
768 struct fcoe_port
*port
= lport_priv(lport
);
769 struct fcoe_interface
*fcoe
= port
->priv
;
770 struct fcoe_interface
*oldfcoe
= NULL
;
771 struct net_device
*old_real_dev
, *cur_real_dev
;
772 u16 min_xid
= FCOE_MIN_XID
;
773 u16 max_xid
= FCOE_MAX_XID
;
776 * Check if need to allocate an em instance for
777 * offload exchange ids to be shared across all VN_PORTs/lport.
779 if (!lport
->lro_enabled
|| !lport
->lro_xid
||
780 (lport
->lro_xid
>= max_xid
)) {
786 * Reuse existing offload em instance in case
787 * it is already allocated on real eth device
789 if (fcoe
->netdev
->priv_flags
& IFF_802_1Q_VLAN
)
790 cur_real_dev
= vlan_dev_real_dev(fcoe
->netdev
);
792 cur_real_dev
= fcoe
->netdev
;
794 list_for_each_entry(oldfcoe
, &fcoe_hostlist
, list
) {
795 if (oldfcoe
->netdev
->priv_flags
& IFF_802_1Q_VLAN
)
796 old_real_dev
= vlan_dev_real_dev(oldfcoe
->netdev
);
798 old_real_dev
= oldfcoe
->netdev
;
800 if (cur_real_dev
== old_real_dev
) {
801 fcoe
->oem
= oldfcoe
->oem
;
807 if (!fc_exch_mgr_add(lport
, fcoe
->oem
, fcoe_oem_match
)) {
808 printk(KERN_ERR
"fcoe_em_config: failed to add "
809 "offload em:%p on interface:%s\n",
810 fcoe
->oem
, fcoe
->netdev
->name
);
814 fcoe
->oem
= fc_exch_mgr_alloc(lport
, FC_CLASS_3
,
815 FCOE_MIN_XID
, lport
->lro_xid
,
818 printk(KERN_ERR
"fcoe_em_config: failed to allocate "
819 "em for offload exches on interface:%s\n",
826 * Exclude offload EM xid range from next EM xid range.
828 min_xid
+= lport
->lro_xid
+ 1;
831 if (!fc_exch_mgr_alloc(lport
, FC_CLASS_3
, min_xid
, max_xid
, NULL
)) {
832 printk(KERN_ERR
"fcoe_em_config: failed to "
833 "allocate em on interface %s\n", fcoe
->netdev
->name
);
841 * fcoe_if_destroy() - Tear down a SW FCoE instance
842 * @lport: The local port to be destroyed
845 static void fcoe_if_destroy(struct fc_lport
*lport
)
847 struct fcoe_port
*port
= lport_priv(lport
);
848 struct fcoe_interface
*fcoe
= port
->priv
;
849 struct net_device
*netdev
= fcoe
->netdev
;
851 FCOE_NETDEV_DBG(netdev
, "Destroying interface\n");
853 /* Logout of the fabric */
854 fc_fabric_logoff(lport
);
856 /* Cleanup the fc_lport */
857 fc_lport_destroy(lport
);
859 /* Stop the transmit retry timer */
860 del_timer_sync(&port
->timer
);
862 /* Free existing transmit skbs */
863 fcoe_clean_pending_queue(lport
);
866 if (!is_zero_ether_addr(port
->data_src_addr
))
867 dev_uc_del(netdev
, port
->data_src_addr
);
870 /* Release reference held in fcoe_if_create() */
871 fcoe_interface_put(fcoe
);
873 /* Free queued packets for the per-CPU receive threads */
874 fcoe_percpu_clean(lport
);
876 /* Detach from the scsi-ml */
877 fc_remove_host(lport
->host
);
878 scsi_remove_host(lport
->host
);
880 /* Destroy lport scsi_priv */
881 fc_fcp_destroy(lport
);
883 /* There are no more rports or I/O, free the EM */
884 fc_exch_mgr_free(lport
);
886 /* Free memory used by statistical counters */
887 fc_lport_free_stats(lport
);
889 /* Release the Scsi_Host */
890 scsi_host_put(lport
->host
);
894 * fcoe_ddp_setup() - Call a LLD's ddp_setup through the net device
895 * @lport: The local port to setup DDP for
896 * @xid: The exchange ID for this DDP transfer
897 * @sgl: The scatterlist describing this transfer
898 * @sgc: The number of sg items
900 * Returns: 0 if the DDP context was not configured
902 static int fcoe_ddp_setup(struct fc_lport
*lport
, u16 xid
,
903 struct scatterlist
*sgl
, unsigned int sgc
)
905 struct net_device
*netdev
= fcoe_netdev(lport
);
907 if (netdev
->netdev_ops
->ndo_fcoe_ddp_setup
)
908 return netdev
->netdev_ops
->ndo_fcoe_ddp_setup(netdev
,
916 * fcoe_ddp_target() - Call a LLD's ddp_target through the net device
917 * @lport: The local port to setup DDP for
918 * @xid: The exchange ID for this DDP transfer
919 * @sgl: The scatterlist describing this transfer
920 * @sgc: The number of sg items
922 * Returns: 0 if the DDP context was not configured
924 static int fcoe_ddp_target(struct fc_lport
*lport
, u16 xid
,
925 struct scatterlist
*sgl
, unsigned int sgc
)
927 struct net_device
*netdev
= fcoe_netdev(lport
);
929 if (netdev
->netdev_ops
->ndo_fcoe_ddp_target
)
930 return netdev
->netdev_ops
->ndo_fcoe_ddp_target(netdev
, xid
,
938 * fcoe_ddp_done() - Call a LLD's ddp_done through the net device
939 * @lport: The local port to complete DDP on
940 * @xid: The exchange ID for this DDP transfer
942 * Returns: the length of data that have been completed by DDP
944 static int fcoe_ddp_done(struct fc_lport
*lport
, u16 xid
)
946 struct net_device
*netdev
= fcoe_netdev(lport
);
948 if (netdev
->netdev_ops
->ndo_fcoe_ddp_done
)
949 return netdev
->netdev_ops
->ndo_fcoe_ddp_done(netdev
, xid
);
954 * fcoe_if_create() - Create a FCoE instance on an interface
955 * @fcoe: The FCoE interface to create a local port on
956 * @parent: The device pointer to be the parent in sysfs for the SCSI host
957 * @npiv: Indicates if the port is a vport or not
959 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
961 * Returns: The allocated fc_lport or an error pointer
963 static struct fc_lport
*fcoe_if_create(struct fcoe_interface
*fcoe
,
964 struct device
*parent
, int npiv
)
966 struct net_device
*netdev
= fcoe
->netdev
;
967 struct fc_lport
*lport
, *n_port
;
968 struct fcoe_port
*port
;
969 struct Scsi_Host
*shost
;
972 * parent is only a vport if npiv is 1,
973 * but we'll only use vport in that case so go ahead and set it
975 struct fc_vport
*vport
= dev_to_vport(parent
);
977 FCOE_NETDEV_DBG(netdev
, "Create Interface\n");
980 lport
= libfc_host_alloc(&fcoe_shost_template
, sizeof(*port
));
982 lport
= libfc_vport_create(vport
, sizeof(*port
));
985 FCOE_NETDEV_DBG(netdev
, "Could not allocate host structure\n");
989 port
= lport_priv(lport
);
992 port
->max_queue_depth
= FCOE_MAX_QUEUE_DEPTH
;
993 port
->min_queue_depth
= FCOE_MIN_QUEUE_DEPTH
;
994 INIT_WORK(&port
->destroy_work
, fcoe_destroy_work
);
996 /* configure a fc_lport including the exchange manager */
997 rc
= fcoe_lport_config(lport
);
999 FCOE_NETDEV_DBG(netdev
, "Could not configure lport for the "
1005 FCOE_NETDEV_DBG(netdev
, "Setting vport names, "
1006 "%16.16llx %16.16llx\n",
1007 vport
->node_name
, vport
->port_name
);
1008 fc_set_wwnn(lport
, vport
->node_name
);
1009 fc_set_wwpn(lport
, vport
->port_name
);
1012 /* configure lport network properties */
1013 rc
= fcoe_netdev_config(lport
, netdev
);
1015 FCOE_NETDEV_DBG(netdev
, "Could not configure netdev for the "
1017 goto out_lp_destroy
;
1020 /* configure lport scsi host properties */
1021 rc
= fcoe_shost_config(lport
, parent
);
1023 FCOE_NETDEV_DBG(netdev
, "Could not configure shost for the "
1025 goto out_lp_destroy
;
1028 /* Initialize the library */
1029 rc
= fcoe_libfc_config(lport
, &fcoe
->ctlr
, &fcoe_libfc_fcn_templ
, 1);
1031 FCOE_NETDEV_DBG(netdev
, "Could not configure libfc for the "
1033 goto out_lp_destroy
;
1037 * fcoe_em_alloc() and fcoe_hostlist_add() both
1038 * need to be atomic with respect to other changes to the
1039 * hostlist since fcoe_em_alloc() looks for an existing EM
1040 * instance on host list updated by fcoe_hostlist_add().
1042 * This is currently handled through the fcoe_config_mutex
1046 /* lport exch manager allocation */
1047 rc
= fcoe_em_config(lport
);
1049 shost
= vport_to_shost(vport
);
1050 n_port
= shost_priv(shost
);
1051 rc
= fc_exch_mgr_list_clone(n_port
, lport
);
1055 FCOE_NETDEV_DBG(netdev
, "Could not configure the EM\n");
1056 goto out_lp_destroy
;
1059 fcoe_interface_get(fcoe
);
1063 fc_exch_mgr_free(lport
);
1065 scsi_host_put(lport
->host
);
1071 * fcoe_if_init() - Initialization routine for fcoe.ko
1073 * Attaches the SW FCoE transport to the FC transport
1075 * Returns: 0 on success
1077 static int __init
fcoe_if_init(void)
1079 /* attach to scsi transport */
1080 fcoe_nport_scsi_transport
=
1081 fc_attach_transport(&fcoe_nport_fc_functions
);
1082 fcoe_vport_scsi_transport
=
1083 fc_attach_transport(&fcoe_vport_fc_functions
);
1085 if (!fcoe_nport_scsi_transport
) {
1086 printk(KERN_ERR
"fcoe: Failed to attach to the FC transport\n");
1094 * fcoe_if_exit() - Tear down fcoe.ko
1096 * Detaches the SW FCoE transport from the FC transport
1098 * Returns: 0 on success
1100 int __exit
fcoe_if_exit(void)
1102 fc_release_transport(fcoe_nport_scsi_transport
);
1103 fc_release_transport(fcoe_vport_scsi_transport
);
1104 fcoe_nport_scsi_transport
= NULL
;
1105 fcoe_vport_scsi_transport
= NULL
;
1110 * fcoe_percpu_thread_create() - Create a receive thread for an online CPU
1111 * @cpu: The CPU index of the CPU to create a receive thread for
1113 static void fcoe_percpu_thread_create(unsigned int cpu
)
1115 struct fcoe_percpu_s
*p
;
1116 struct task_struct
*thread
;
1118 p
= &per_cpu(fcoe_percpu
, cpu
);
1120 thread
= kthread_create(fcoe_percpu_receive_thread
,
1121 (void *)p
, "fcoethread/%d", cpu
);
1123 if (likely(!IS_ERR(thread
))) {
1124 kthread_bind(thread
, cpu
);
1125 wake_up_process(thread
);
1127 spin_lock_bh(&p
->fcoe_rx_list
.lock
);
1129 spin_unlock_bh(&p
->fcoe_rx_list
.lock
);
1134 * fcoe_percpu_thread_destroy() - Remove the receive thread of a CPU
1135 * @cpu: The CPU index of the CPU whose receive thread is to be destroyed
1137 * Destroys a per-CPU Rx thread. Any pending skbs are moved to the
1138 * current CPU's Rx thread. If the thread being destroyed is bound to
1139 * the CPU processing this context the skbs will be freed.
1141 static void fcoe_percpu_thread_destroy(unsigned int cpu
)
1143 struct fcoe_percpu_s
*p
;
1144 struct task_struct
*thread
;
1145 struct page
*crc_eof
;
1146 struct sk_buff
*skb
;
1148 struct fcoe_percpu_s
*p0
;
1149 unsigned targ_cpu
= get_cpu();
1150 #endif /* CONFIG_SMP */
1152 FCOE_DBG("Destroying receive thread for CPU %d\n", cpu
);
1154 /* Prevent any new skbs from being queued for this CPU. */
1155 p
= &per_cpu(fcoe_percpu
, cpu
);
1156 spin_lock_bh(&p
->fcoe_rx_list
.lock
);
1159 crc_eof
= p
->crc_eof_page
;
1160 p
->crc_eof_page
= NULL
;
1161 p
->crc_eof_offset
= 0;
1162 spin_unlock_bh(&p
->fcoe_rx_list
.lock
);
1166 * Don't bother moving the skb's if this context is running
1167 * on the same CPU that is having its thread destroyed. This
1168 * can easily happen when the module is removed.
1170 if (cpu
!= targ_cpu
) {
1171 p0
= &per_cpu(fcoe_percpu
, targ_cpu
);
1172 spin_lock_bh(&p0
->fcoe_rx_list
.lock
);
1174 FCOE_DBG("Moving frames from CPU %d to CPU %d\n",
1177 while ((skb
= __skb_dequeue(&p
->fcoe_rx_list
)) != NULL
)
1178 __skb_queue_tail(&p0
->fcoe_rx_list
, skb
);
1179 spin_unlock_bh(&p0
->fcoe_rx_list
.lock
);
1182 * The targeted CPU is not initialized and cannot accept
1183 * new skbs. Unlock the targeted CPU and drop the skbs
1184 * on the CPU that is going offline.
1186 while ((skb
= __skb_dequeue(&p
->fcoe_rx_list
)) != NULL
)
1188 spin_unlock_bh(&p0
->fcoe_rx_list
.lock
);
1192 * This scenario occurs when the module is being removed
1193 * and all threads are being destroyed. skbs will continue
1194 * to be shifted from the CPU thread that is being removed
1195 * to the CPU thread associated with the CPU that is processing
1196 * the module removal. Once there is only one CPU Rx thread it
1197 * will reach this case and we will drop all skbs and later
1200 spin_lock_bh(&p
->fcoe_rx_list
.lock
);
1201 while ((skb
= __skb_dequeue(&p
->fcoe_rx_list
)) != NULL
)
1203 spin_unlock_bh(&p
->fcoe_rx_list
.lock
);
1208 * This a non-SMP scenario where the singular Rx thread is
1209 * being removed. Free all skbs and stop the thread.
1211 spin_lock_bh(&p
->fcoe_rx_list
.lock
);
1212 while ((skb
= __skb_dequeue(&p
->fcoe_rx_list
)) != NULL
)
1214 spin_unlock_bh(&p
->fcoe_rx_list
.lock
);
1218 kthread_stop(thread
);
1225 * fcoe_cpu_callback() - Handler for CPU hotplug events
1226 * @nfb: The callback data block
1227 * @action: The event triggering the callback
1228 * @hcpu: The index of the CPU that the event is for
1230 * This creates or destroys per-CPU data for fcoe
1232 * Returns NOTIFY_OK always.
1234 static int fcoe_cpu_callback(struct notifier_block
*nfb
,
1235 unsigned long action
, void *hcpu
)
1237 unsigned cpu
= (unsigned long)hcpu
;
1241 case CPU_ONLINE_FROZEN
:
1242 FCOE_DBG("CPU %x online: Create Rx thread\n", cpu
);
1243 fcoe_percpu_thread_create(cpu
);
1246 case CPU_DEAD_FROZEN
:
1247 FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu
);
1248 fcoe_percpu_thread_destroy(cpu
);
1257 * fcoe_select_cpu() - Selects CPU to handle post-processing of incoming
1260 * This routine selects next CPU based on cpumask to distribute
1261 * incoming requests in round robin.
1263 * Returns: int CPU number
1265 static inline unsigned int fcoe_select_cpu(void)
1267 static unsigned int selected_cpu
;
1269 selected_cpu
= cpumask_next(selected_cpu
, cpu_online_mask
);
1270 if (selected_cpu
>= nr_cpu_ids
)
1271 selected_cpu
= cpumask_first(cpu_online_mask
);
1273 return selected_cpu
;
1277 * fcoe_rcv() - Receive packets from a net device
1278 * @skb: The received packet
1279 * @netdev: The net device that the packet was received on
1280 * @ptype: The packet type context
1281 * @olddev: The last device net device
1283 * This routine is called by NET_RX_SOFTIRQ. It receives a packet, builds a
1284 * FC frame and passes the frame to libfc.
1286 * Returns: 0 for success
1288 int fcoe_rcv(struct sk_buff
*skb
, struct net_device
*netdev
,
1289 struct packet_type
*ptype
, struct net_device
*olddev
)
1291 struct fc_lport
*lport
;
1292 struct fcoe_rcv_info
*fr
;
1293 struct fcoe_interface
*fcoe
;
1294 struct fc_frame_header
*fh
;
1295 struct fcoe_percpu_s
*fps
;
1299 fcoe
= container_of(ptype
, struct fcoe_interface
, fcoe_packet_type
);
1300 lport
= fcoe
->ctlr
.lp
;
1301 if (unlikely(!lport
)) {
1302 FCOE_NETDEV_DBG(netdev
, "Cannot find hba structure");
1305 if (!lport
->link_up
)
1308 FCOE_NETDEV_DBG(netdev
, "skb_info: len:%d data_len:%d head:%p "
1309 "data:%p tail:%p end:%p sum:%d dev:%s",
1310 skb
->len
, skb
->data_len
, skb
->head
, skb
->data
,
1311 skb_tail_pointer(skb
), skb_end_pointer(skb
),
1312 skb
->csum
, skb
->dev
? skb
->dev
->name
: "<NULL>");
1316 if (is_fip_mode(&fcoe
->ctlr
) &&
1317 compare_ether_addr(eh
->h_source
, fcoe
->ctlr
.dest_addr
)) {
1318 FCOE_NETDEV_DBG(netdev
, "wrong source mac address:%pM\n",
1324 * Check for minimum frame length, and make sure required FCoE
1325 * and FC headers are pulled into the linear data area.
1327 if (unlikely((skb
->len
< FCOE_MIN_FRAME
) ||
1328 !pskb_may_pull(skb
, FCOE_HEADER_LEN
)))
1331 skb_set_transport_header(skb
, sizeof(struct fcoe_hdr
));
1332 fh
= (struct fc_frame_header
*) skb_transport_header(skb
);
1334 if (ntoh24(&eh
->h_dest
[3]) != ntoh24(fh
->fh_d_id
)) {
1335 FCOE_NETDEV_DBG(netdev
, "FC frame d_id mismatch with MAC:%pM\n",
1340 fr
= fcoe_dev_from_skb(skb
);
1344 * In case the incoming frame's exchange is originated from
1345 * the initiator, then received frame's exchange id is ANDed
1346 * with fc_cpu_mask bits to get the same cpu on which exchange
1347 * was originated, otherwise select cpu using rx exchange id
1348 * or fcoe_select_cpu().
1350 if (ntoh24(fh
->fh_f_ctl
) & FC_FC_EX_CTX
)
1351 cpu
= ntohs(fh
->fh_ox_id
) & fc_cpu_mask
;
1353 if (ntohs(fh
->fh_rx_id
) == FC_XID_UNKNOWN
)
1354 cpu
= fcoe_select_cpu();
1356 cpu
= ntohs(fh
->fh_rx_id
) & fc_cpu_mask
;
1359 if (cpu
>= nr_cpu_ids
)
1362 fps
= &per_cpu(fcoe_percpu
, cpu
);
1363 spin_lock_bh(&fps
->fcoe_rx_list
.lock
);
1364 if (unlikely(!fps
->thread
)) {
1366 * The targeted CPU is not ready, let's target
1367 * the first CPU now. For non-SMP systems this
1368 * will check the same CPU twice.
1370 FCOE_NETDEV_DBG(netdev
, "CPU is online, but no receive thread "
1371 "ready for incoming skb- using first online "
1374 spin_unlock_bh(&fps
->fcoe_rx_list
.lock
);
1375 cpu
= cpumask_first(cpu_online_mask
);
1376 fps
= &per_cpu(fcoe_percpu
, cpu
);
1377 spin_lock_bh(&fps
->fcoe_rx_list
.lock
);
1379 spin_unlock_bh(&fps
->fcoe_rx_list
.lock
);
1385 * We now have a valid CPU that we're targeting for
1386 * this skb. We also have this receive thread locked,
1387 * so we're free to queue skbs into it's queue.
1390 /* If this is a SCSI-FCP frame, and this is already executing on the
1391 * correct CPU, and the queue for this CPU is empty, then go ahead
1392 * and process the frame directly in the softirq context.
1393 * This lets us process completions without context switching from the
1394 * NET_RX softirq, to our receive processing thread, and then back to
1395 * BLOCK softirq context.
1397 if (fh
->fh_type
== FC_TYPE_FCP
&&
1398 cpu
== smp_processor_id() &&
1399 skb_queue_empty(&fps
->fcoe_rx_list
)) {
1400 spin_unlock_bh(&fps
->fcoe_rx_list
.lock
);
1401 fcoe_recv_frame(skb
);
1403 __skb_queue_tail(&fps
->fcoe_rx_list
, skb
);
1404 if (fps
->fcoe_rx_list
.qlen
== 1)
1405 wake_up_process(fps
->thread
);
1406 spin_unlock_bh(&fps
->fcoe_rx_list
.lock
);
1411 per_cpu_ptr(lport
->dev_stats
, get_cpu())->ErrorFrames
++;
1419 * fcoe_alloc_paged_crc_eof() - Allocate a page to be used for the trailer CRC
1420 * @skb: The packet to be transmitted
1421 * @tlen: The total length of the trailer
1423 * Returns: 0 for success
1425 static int fcoe_alloc_paged_crc_eof(struct sk_buff
*skb
, int tlen
)
1427 struct fcoe_percpu_s
*fps
;
1430 fps
= &get_cpu_var(fcoe_percpu
);
1431 rc
= fcoe_get_paged_crc_eof(skb
, tlen
, fps
);
1432 put_cpu_var(fcoe_percpu
);
1438 * fcoe_xmit() - Transmit a FCoE frame
1439 * @lport: The local port that the frame is to be transmitted for
1440 * @fp: The frame to be transmitted
1442 * Return: 0 for success
1444 int fcoe_xmit(struct fc_lport
*lport
, struct fc_frame
*fp
)
1449 struct fcoe_crc_eof
*cp
;
1450 struct sk_buff
*skb
;
1451 struct fcoe_dev_stats
*stats
;
1452 struct fc_frame_header
*fh
;
1453 unsigned int hlen
; /* header length implies the version */
1454 unsigned int tlen
; /* trailer length */
1455 unsigned int elen
; /* eth header, may include vlan */
1456 struct fcoe_port
*port
= lport_priv(lport
);
1457 struct fcoe_interface
*fcoe
= port
->priv
;
1459 struct fcoe_hdr
*hp
;
1461 WARN_ON((fr_len(fp
) % sizeof(u32
)) != 0);
1463 fh
= fc_frame_header_get(fp
);
1465 wlen
= skb
->len
/ FCOE_WORD_TO_BYTE
;
1467 if (!lport
->link_up
) {
1472 if (unlikely(fh
->fh_type
== FC_TYPE_ELS
) &&
1473 fcoe_ctlr_els_send(&fcoe
->ctlr
, lport
, skb
))
1479 elen
= sizeof(struct ethhdr
);
1480 hlen
= sizeof(struct fcoe_hdr
);
1481 tlen
= sizeof(struct fcoe_crc_eof
);
1482 wlen
= (skb
->len
- tlen
+ sizeof(crc
)) / FCOE_WORD_TO_BYTE
;
1485 if (likely(lport
->crc_offload
)) {
1486 skb
->ip_summed
= CHECKSUM_PARTIAL
;
1487 skb
->csum_start
= skb_headroom(skb
);
1488 skb
->csum_offset
= skb
->len
;
1491 skb
->ip_summed
= CHECKSUM_NONE
;
1492 crc
= fcoe_fc_crc(fp
);
1495 /* copy port crc and eof to the skb buff */
1496 if (skb_is_nonlinear(skb
)) {
1498 if (fcoe_alloc_paged_crc_eof(skb
, tlen
)) {
1502 frag
= &skb_shinfo(skb
)->frags
[skb_shinfo(skb
)->nr_frags
- 1];
1503 cp
= kmap_atomic(skb_frag_page(frag
), KM_SKB_DATA_SOFTIRQ
)
1504 + frag
->page_offset
;
1506 cp
= (struct fcoe_crc_eof
*)skb_put(skb
, tlen
);
1509 memset(cp
, 0, sizeof(*cp
));
1511 cp
->fcoe_crc32
= cpu_to_le32(~crc
);
1513 if (skb_is_nonlinear(skb
)) {
1514 kunmap_atomic(cp
, KM_SKB_DATA_SOFTIRQ
);
1518 /* adjust skb network/transport offsets to match mac/fcoe/port */
1519 skb_push(skb
, elen
+ hlen
);
1520 skb_reset_mac_header(skb
);
1521 skb_reset_network_header(skb
);
1522 skb
->mac_len
= elen
;
1523 skb
->protocol
= htons(ETH_P_FCOE
);
1524 skb
->dev
= fcoe
->netdev
;
1526 /* fill up mac and fcoe headers */
1528 eh
->h_proto
= htons(ETH_P_FCOE
);
1529 memcpy(eh
->h_dest
, fcoe
->ctlr
.dest_addr
, ETH_ALEN
);
1530 if (fcoe
->ctlr
.map_dest
)
1531 memcpy(eh
->h_dest
+ 3, fh
->fh_d_id
, 3);
1533 if (unlikely(fcoe
->ctlr
.flogi_oxid
!= FC_XID_UNKNOWN
))
1534 memcpy(eh
->h_source
, fcoe
->ctlr
.ctl_src_addr
, ETH_ALEN
);
1536 memcpy(eh
->h_source
, port
->data_src_addr
, ETH_ALEN
);
1538 hp
= (struct fcoe_hdr
*)(eh
+ 1);
1539 memset(hp
, 0, sizeof(*hp
));
1541 FC_FCOE_ENCAPS_VER(hp
, FC_FCOE_VER
);
1544 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
1545 if (lport
->seq_offload
&& fr_max_payload(fp
)) {
1546 skb_shinfo(skb
)->gso_type
= SKB_GSO_FCOE
;
1547 skb_shinfo(skb
)->gso_size
= fr_max_payload(fp
);
1549 skb_shinfo(skb
)->gso_type
= 0;
1550 skb_shinfo(skb
)->gso_size
= 0;
1552 /* update tx stats: regardless if LLD fails */
1553 stats
= per_cpu_ptr(lport
->dev_stats
, get_cpu());
1555 stats
->TxWords
+= wlen
;
1558 /* send down to lld */
1560 fcoe_port_send(port
, skb
);
1565 * fcoe_percpu_flush_done() - Indicate per-CPU queue flush completion
1566 * @skb: The completed skb (argument required by destructor)
1568 static void fcoe_percpu_flush_done(struct sk_buff
*skb
)
1570 complete(&fcoe_flush_completion
);
1574 * fcoe_filter_frames() - filter out bad fcoe frames, i.e. bad CRC
1575 * @lport: The local port the frame was received on
1576 * @fp: The received frame
1578 * Return: 0 on passing filtering checks
1580 static inline int fcoe_filter_frames(struct fc_lport
*lport
,
1581 struct fc_frame
*fp
)
1583 struct fcoe_interface
*fcoe
;
1584 struct fc_frame_header
*fh
;
1585 struct sk_buff
*skb
= (struct sk_buff
*)fp
;
1586 struct fcoe_dev_stats
*stats
;
1589 * We only check CRC if no offload is available and if it is
1590 * it's solicited data, in which case, the FCP layer would
1591 * check it during the copy.
1593 if (lport
->crc_offload
&& skb
->ip_summed
== CHECKSUM_UNNECESSARY
)
1594 fr_flags(fp
) &= ~FCPHF_CRC_UNCHECKED
;
1596 fr_flags(fp
) |= FCPHF_CRC_UNCHECKED
;
1598 fh
= (struct fc_frame_header
*) skb_transport_header(skb
);
1599 fh
= fc_frame_header_get(fp
);
1600 if (fh
->fh_r_ctl
== FC_RCTL_DD_SOL_DATA
&& fh
->fh_type
== FC_TYPE_FCP
)
1603 fcoe
= ((struct fcoe_port
*)lport_priv(lport
))->priv
;
1604 if (is_fip_mode(&fcoe
->ctlr
) && fc_frame_payload_op(fp
) == ELS_LOGO
&&
1605 ntoh24(fh
->fh_s_id
) == FC_FID_FLOGI
) {
1606 FCOE_DBG("fcoe: dropping FCoE lport LOGO in fip mode\n");
1610 if (!(fr_flags(fp
) & FCPHF_CRC_UNCHECKED
) ||
1611 le32_to_cpu(fr_crc(fp
)) == ~crc32(~0, skb
->data
, skb
->len
)) {
1612 fr_flags(fp
) &= ~FCPHF_CRC_UNCHECKED
;
1616 stats
= per_cpu_ptr(lport
->dev_stats
, get_cpu());
1617 stats
->InvalidCRCCount
++;
1618 if (stats
->InvalidCRCCount
< 5)
1619 printk(KERN_WARNING
"fcoe: dropping frame with CRC error\n");
1624 * fcoe_recv_frame() - process a single received frame
1625 * @skb: frame to process
1627 static void fcoe_recv_frame(struct sk_buff
*skb
)
1630 struct fc_lport
*lport
;
1631 struct fcoe_rcv_info
*fr
;
1632 struct fcoe_dev_stats
*stats
;
1633 struct fcoe_crc_eof crc_eof
;
1634 struct fc_frame
*fp
;
1635 struct fcoe_port
*port
;
1636 struct fcoe_hdr
*hp
;
1638 fr
= fcoe_dev_from_skb(skb
);
1640 if (unlikely(!lport
)) {
1641 if (skb
->destructor
!= fcoe_percpu_flush_done
)
1642 FCOE_NETDEV_DBG(skb
->dev
, "NULL lport in skb");
1647 FCOE_NETDEV_DBG(skb
->dev
, "skb_info: len:%d data_len:%d "
1648 "head:%p data:%p tail:%p end:%p sum:%d dev:%s",
1649 skb
->len
, skb
->data_len
,
1650 skb
->head
, skb
->data
, skb_tail_pointer(skb
),
1651 skb_end_pointer(skb
), skb
->csum
,
1652 skb
->dev
? skb
->dev
->name
: "<NULL>");
1654 port
= lport_priv(lport
);
1655 if (skb_is_nonlinear(skb
))
1656 skb_linearize(skb
); /* not ideal */
1659 * Frame length checks and setting up the header pointers
1660 * was done in fcoe_rcv already.
1662 hp
= (struct fcoe_hdr
*) skb_network_header(skb
);
1664 stats
= per_cpu_ptr(lport
->dev_stats
, get_cpu());
1665 if (unlikely(FC_FCOE_DECAPS_VER(hp
) != FC_FCOE_VER
)) {
1666 if (stats
->ErrorFrames
< 5)
1667 printk(KERN_WARNING
"fcoe: FCoE version "
1668 "mismatch: The frame has "
1669 "version %x, but the "
1670 "initiator supports version "
1671 "%x\n", FC_FCOE_DECAPS_VER(hp
),
1676 skb_pull(skb
, sizeof(struct fcoe_hdr
));
1677 fr_len
= skb
->len
- sizeof(struct fcoe_crc_eof
);
1680 stats
->RxWords
+= fr_len
/ FCOE_WORD_TO_BYTE
;
1682 fp
= (struct fc_frame
*)skb
;
1685 fr_sof(fp
) = hp
->fcoe_sof
;
1687 /* Copy out the CRC and EOF trailer for access */
1688 if (skb_copy_bits(skb
, fr_len
, &crc_eof
, sizeof(crc_eof
)))
1690 fr_eof(fp
) = crc_eof
.fcoe_eof
;
1691 fr_crc(fp
) = crc_eof
.fcoe_crc32
;
1692 if (pskb_trim(skb
, fr_len
))
1695 if (!fcoe_filter_frames(lport
, fp
)) {
1697 fc_exch_recv(lport
, fp
);
1701 stats
->ErrorFrames
++;
1707 * fcoe_percpu_receive_thread() - The per-CPU packet receive thread
1708 * @arg: The per-CPU context
1710 * Return: 0 for success
1712 int fcoe_percpu_receive_thread(void *arg
)
1714 struct fcoe_percpu_s
*p
= arg
;
1715 struct sk_buff
*skb
;
1717 set_user_nice(current
, -20);
1719 while (!kthread_should_stop()) {
1721 spin_lock_bh(&p
->fcoe_rx_list
.lock
);
1722 while ((skb
= __skb_dequeue(&p
->fcoe_rx_list
)) == NULL
) {
1723 set_current_state(TASK_INTERRUPTIBLE
);
1724 spin_unlock_bh(&p
->fcoe_rx_list
.lock
);
1726 set_current_state(TASK_RUNNING
);
1727 if (kthread_should_stop())
1729 spin_lock_bh(&p
->fcoe_rx_list
.lock
);
1731 spin_unlock_bh(&p
->fcoe_rx_list
.lock
);
1732 fcoe_recv_frame(skb
);
1738 * fcoe_dev_setup() - Setup the link change notification interface
1740 static void fcoe_dev_setup(void)
1742 register_netdevice_notifier(&fcoe_notifier
);
1746 * fcoe_dev_cleanup() - Cleanup the link change notification interface
1748 static void fcoe_dev_cleanup(void)
1750 unregister_netdevice_notifier(&fcoe_notifier
);
1754 * fcoe_device_notification() - Handler for net device events
1755 * @notifier: The context of the notification
1756 * @event: The type of event
1757 * @ptr: The net device that the event was on
1759 * This function is called by the Ethernet driver in case of link change event.
1761 * Returns: 0 for success
1763 static int fcoe_device_notification(struct notifier_block
*notifier
,
1764 ulong event
, void *ptr
)
1766 struct fc_lport
*lport
= NULL
;
1767 struct net_device
*netdev
= ptr
;
1768 struct fcoe_interface
*fcoe
;
1769 struct fcoe_port
*port
;
1770 struct fcoe_dev_stats
*stats
;
1771 u32 link_possible
= 1;
1775 list_for_each_entry(fcoe
, &fcoe_hostlist
, list
) {
1776 if (fcoe
->netdev
== netdev
) {
1777 lport
= fcoe
->ctlr
.lp
;
1788 case NETDEV_GOING_DOWN
:
1794 case NETDEV_CHANGEMTU
:
1795 if (netdev
->features
& NETIF_F_FCOE_MTU
)
1797 mfs
= netdev
->mtu
- (sizeof(struct fcoe_hdr
) +
1798 sizeof(struct fcoe_crc_eof
));
1799 if (mfs
>= FC_MIN_MAX_FRAME
)
1800 fc_set_mfs(lport
, mfs
);
1802 case NETDEV_REGISTER
:
1804 case NETDEV_UNREGISTER
:
1805 list_del(&fcoe
->list
);
1806 port
= lport_priv(fcoe
->ctlr
.lp
);
1807 queue_work(fcoe_wq
, &port
->destroy_work
);
1810 case NETDEV_FEAT_CHANGE
:
1811 fcoe_netdev_features_change(lport
, netdev
);
1814 FCOE_NETDEV_DBG(netdev
, "Unknown event %ld "
1815 "from netdev netlink\n", event
);
1818 fcoe_link_speed_update(lport
);
1820 if (link_possible
&& !fcoe_link_ok(lport
))
1821 fcoe_ctlr_link_up(&fcoe
->ctlr
);
1822 else if (fcoe_ctlr_link_down(&fcoe
->ctlr
)) {
1823 stats
= per_cpu_ptr(lport
->dev_stats
, get_cpu());
1824 stats
->LinkFailureCount
++;
1826 fcoe_clean_pending_queue(lport
);
1833 * fcoe_disable() - Disables a FCoE interface
1834 * @netdev : The net_device object the Ethernet interface to create on
1836 * Called from fcoe transport.
1838 * Returns: 0 for success
1840 static int fcoe_disable(struct net_device
*netdev
)
1842 struct fcoe_interface
*fcoe
;
1845 mutex_lock(&fcoe_config_mutex
);
1848 fcoe
= fcoe_hostlist_lookup_port(netdev
);
1852 fcoe_ctlr_link_down(&fcoe
->ctlr
);
1853 fcoe_clean_pending_queue(fcoe
->ctlr
.lp
);
1857 mutex_unlock(&fcoe_config_mutex
);
1862 * fcoe_enable() - Enables a FCoE interface
1863 * @netdev : The net_device object the Ethernet interface to create on
1865 * Called from fcoe transport.
1867 * Returns: 0 for success
1869 static int fcoe_enable(struct net_device
*netdev
)
1871 struct fcoe_interface
*fcoe
;
1874 mutex_lock(&fcoe_config_mutex
);
1876 fcoe
= fcoe_hostlist_lookup_port(netdev
);
1881 else if (!fcoe_link_ok(fcoe
->ctlr
.lp
))
1882 fcoe_ctlr_link_up(&fcoe
->ctlr
);
1884 mutex_unlock(&fcoe_config_mutex
);
1889 * fcoe_destroy() - Destroy a FCoE interface
1890 * @netdev : The net_device object the Ethernet interface to create on
1892 * Called from fcoe transport
1894 * Returns: 0 for success
1896 static int fcoe_destroy(struct net_device
*netdev
)
1898 struct fcoe_interface
*fcoe
;
1899 struct fc_lport
*lport
;
1900 struct fcoe_port
*port
;
1903 mutex_lock(&fcoe_config_mutex
);
1905 fcoe
= fcoe_hostlist_lookup_port(netdev
);
1910 lport
= fcoe
->ctlr
.lp
;
1911 port
= lport_priv(lport
);
1912 list_del(&fcoe
->list
);
1913 queue_work(fcoe_wq
, &port
->destroy_work
);
1916 mutex_unlock(&fcoe_config_mutex
);
1921 * fcoe_destroy_work() - Destroy a FCoE port in a deferred work context
1922 * @work: Handle to the FCoE port to be destroyed
1924 static void fcoe_destroy_work(struct work_struct
*work
)
1926 struct fcoe_port
*port
;
1927 struct fcoe_interface
*fcoe
;
1930 port
= container_of(work
, struct fcoe_port
, destroy_work
);
1931 mutex_lock(&fcoe_config_mutex
);
1933 /* set if this is an NPIV port */
1934 npiv
= port
->lport
->vport
? 1 : 0;
1937 fcoe_if_destroy(port
->lport
);
1939 /* Do not tear down the fcoe interface for NPIV port */
1941 fcoe_interface_cleanup(fcoe
);
1943 mutex_unlock(&fcoe_config_mutex
);
1947 * fcoe_match() - Check if the FCoE is supported on the given netdevice
1948 * @netdev : The net_device object the Ethernet interface to create on
1950 * Called from fcoe transport.
1952 * Returns: always returns true as this is the default FCoE transport,
1953 * i.e., support all netdevs.
1955 static bool fcoe_match(struct net_device
*netdev
)
1961 * fcoe_create() - Create a fcoe interface
1962 * @netdev : The net_device object the Ethernet interface to create on
1963 * @fip_mode: The FIP mode for this creation
1965 * Called from fcoe transport
1967 * Returns: 0 for success
1969 static int fcoe_create(struct net_device
*netdev
, enum fip_state fip_mode
)
1972 struct fcoe_interface
*fcoe
;
1973 struct fc_lport
*lport
;
1975 mutex_lock(&fcoe_config_mutex
);
1978 /* look for existing lport */
1979 if (fcoe_hostlist_lookup(netdev
)) {
1984 fcoe
= fcoe_interface_create(netdev
, fip_mode
);
1990 lport
= fcoe_if_create(fcoe
, &netdev
->dev
, 0);
1991 if (IS_ERR(lport
)) {
1992 printk(KERN_ERR
"fcoe: Failed to create interface (%s)\n",
1996 fcoe_interface_cleanup(fcoe
);
2000 /* Make this the "master" N_Port */
2001 fcoe
->ctlr
.lp
= lport
;
2003 /* add to lports list */
2004 fcoe_hostlist_add(lport
);
2006 /* start FIP Discovery and FLOGI */
2007 lport
->boot_time
= jiffies
;
2008 fc_fabric_login(lport
);
2009 if (!fcoe_link_ok(lport
))
2010 fcoe_ctlr_link_up(&fcoe
->ctlr
);
2015 mutex_unlock(&fcoe_config_mutex
);
2020 * fcoe_link_speed_update() - Update the supported and actual link speeds
2021 * @lport: The local port to update speeds for
2023 * Returns: 0 if the ethtool query was successful
2024 * -1 if the ethtool query failed
2026 int fcoe_link_speed_update(struct fc_lport
*lport
)
2028 struct net_device
*netdev
= fcoe_netdev(lport
);
2029 struct ethtool_cmd ecmd
;
2031 if (!dev_ethtool_get_settings(netdev
, &ecmd
)) {
2032 lport
->link_supported_speeds
&=
2033 ~(FC_PORTSPEED_1GBIT
| FC_PORTSPEED_10GBIT
);
2034 if (ecmd
.supported
& (SUPPORTED_1000baseT_Half
|
2035 SUPPORTED_1000baseT_Full
))
2036 lport
->link_supported_speeds
|= FC_PORTSPEED_1GBIT
;
2037 if (ecmd
.supported
& SUPPORTED_10000baseT_Full
)
2038 lport
->link_supported_speeds
|=
2039 FC_PORTSPEED_10GBIT
;
2040 switch (ethtool_cmd_speed(&ecmd
)) {
2042 lport
->link_speed
= FC_PORTSPEED_1GBIT
;
2045 lport
->link_speed
= FC_PORTSPEED_10GBIT
;
2054 * fcoe_link_ok() - Check if the link is OK for a local port
2055 * @lport: The local port to check link on
2057 * Returns: 0 if link is UP and OK, -1 if not
2060 int fcoe_link_ok(struct fc_lport
*lport
)
2062 struct net_device
*netdev
= fcoe_netdev(lport
);
2064 if (netif_oper_up(netdev
))
2070 * fcoe_percpu_clean() - Clear all pending skbs for an local port
2071 * @lport: The local port whose skbs are to be cleared
2073 * Must be called with fcoe_create_mutex held to single-thread completion.
2075 * This flushes the pending skbs by adding a new skb to each queue and
2076 * waiting until they are all freed. This assures us that not only are
2077 * there no packets that will be handled by the lport, but also that any
2078 * threads already handling packet have returned.
2080 void fcoe_percpu_clean(struct fc_lport
*lport
)
2082 struct fcoe_percpu_s
*pp
;
2083 struct fcoe_rcv_info
*fr
;
2084 struct sk_buff_head
*list
;
2085 struct sk_buff
*skb
, *next
;
2086 struct sk_buff
*head
;
2089 for_each_possible_cpu(cpu
) {
2090 pp
= &per_cpu(fcoe_percpu
, cpu
);
2091 spin_lock_bh(&pp
->fcoe_rx_list
.lock
);
2092 list
= &pp
->fcoe_rx_list
;
2094 for (skb
= head
; skb
!= (struct sk_buff
*)list
;
2097 fr
= fcoe_dev_from_skb(skb
);
2098 if (fr
->fr_dev
== lport
) {
2099 __skb_unlink(skb
, list
);
2104 if (!pp
->thread
|| !cpu_online(cpu
)) {
2105 spin_unlock_bh(&pp
->fcoe_rx_list
.lock
);
2109 skb
= dev_alloc_skb(0);
2111 spin_unlock_bh(&pp
->fcoe_rx_list
.lock
);
2114 skb
->destructor
= fcoe_percpu_flush_done
;
2116 __skb_queue_tail(&pp
->fcoe_rx_list
, skb
);
2117 if (pp
->fcoe_rx_list
.qlen
== 1)
2118 wake_up_process(pp
->thread
);
2119 spin_unlock_bh(&pp
->fcoe_rx_list
.lock
);
2121 wait_for_completion(&fcoe_flush_completion
);
2126 * fcoe_reset() - Reset a local port
2127 * @shost: The SCSI host associated with the local port to be reset
2129 * Returns: Always 0 (return value required by FC transport template)
2131 int fcoe_reset(struct Scsi_Host
*shost
)
2133 struct fc_lport
*lport
= shost_priv(shost
);
2134 struct fcoe_port
*port
= lport_priv(lport
);
2135 struct fcoe_interface
*fcoe
= port
->priv
;
2137 fcoe_ctlr_link_down(&fcoe
->ctlr
);
2138 fcoe_clean_pending_queue(fcoe
->ctlr
.lp
);
2139 if (!fcoe_link_ok(fcoe
->ctlr
.lp
))
2140 fcoe_ctlr_link_up(&fcoe
->ctlr
);
2145 * fcoe_hostlist_lookup_port() - Find the FCoE interface associated with a net device
2146 * @netdev: The net device used as a key
2148 * Locking: Must be called with the RNL mutex held.
2150 * Returns: NULL or the FCoE interface
2152 static struct fcoe_interface
*
2153 fcoe_hostlist_lookup_port(const struct net_device
*netdev
)
2155 struct fcoe_interface
*fcoe
;
2157 list_for_each_entry(fcoe
, &fcoe_hostlist
, list
) {
2158 if (fcoe
->netdev
== netdev
)
2165 * fcoe_hostlist_lookup() - Find the local port associated with a
2167 * @netdev: The netdevice used as a key
2169 * Locking: Must be called with the RTNL mutex held
2171 * Returns: NULL or the local port
2173 static struct fc_lport
*fcoe_hostlist_lookup(const struct net_device
*netdev
)
2175 struct fcoe_interface
*fcoe
;
2177 fcoe
= fcoe_hostlist_lookup_port(netdev
);
2178 return (fcoe
) ? fcoe
->ctlr
.lp
: NULL
;
2182 * fcoe_hostlist_add() - Add the FCoE interface identified by a local
2183 * port to the hostlist
2184 * @lport: The local port that identifies the FCoE interface to be added
2186 * Locking: must be called with the RTNL mutex held
2188 * Returns: 0 for success
2190 static int fcoe_hostlist_add(const struct fc_lport
*lport
)
2192 struct fcoe_interface
*fcoe
;
2193 struct fcoe_port
*port
;
2195 fcoe
= fcoe_hostlist_lookup_port(fcoe_netdev(lport
));
2197 port
= lport_priv(lport
);
2199 list_add_tail(&fcoe
->list
, &fcoe_hostlist
);
2205 static struct fcoe_transport fcoe_sw_transport
= {
2206 .name
= {FCOE_TRANSPORT_DEFAULT
},
2208 .list
= LIST_HEAD_INIT(fcoe_sw_transport
.list
),
2209 .match
= fcoe_match
,
2210 .create
= fcoe_create
,
2211 .destroy
= fcoe_destroy
,
2212 .enable
= fcoe_enable
,
2213 .disable
= fcoe_disable
,
2217 * fcoe_init() - Initialize fcoe.ko
2219 * Returns: 0 on success, or a negative value on failure
2221 static int __init
fcoe_init(void)
2223 struct fcoe_percpu_s
*p
;
2227 fcoe_wq
= alloc_workqueue("fcoe", 0, 0);
2231 /* register as a fcoe transport */
2232 rc
= fcoe_transport_attach(&fcoe_sw_transport
);
2234 printk(KERN_ERR
"failed to register an fcoe transport, check "
2235 "if libfcoe is loaded\n");
2239 mutex_lock(&fcoe_config_mutex
);
2241 for_each_possible_cpu(cpu
) {
2242 p
= &per_cpu(fcoe_percpu
, cpu
);
2243 skb_queue_head_init(&p
->fcoe_rx_list
);
2246 for_each_online_cpu(cpu
)
2247 fcoe_percpu_thread_create(cpu
);
2249 /* Initialize per CPU interrupt thread */
2250 rc
= register_hotcpu_notifier(&fcoe_cpu_notifier
);
2254 /* Setup link change notification */
2257 rc
= fcoe_if_init();
2261 mutex_unlock(&fcoe_config_mutex
);
2265 for_each_online_cpu(cpu
) {
2266 fcoe_percpu_thread_destroy(cpu
);
2268 mutex_unlock(&fcoe_config_mutex
);
2269 destroy_workqueue(fcoe_wq
);
2272 module_init(fcoe_init
);
2275 * fcoe_exit() - Clean up fcoe.ko
2277 * Returns: 0 on success or a negative value on failure
2279 static void __exit
fcoe_exit(void)
2281 struct fcoe_interface
*fcoe
, *tmp
;
2282 struct fcoe_port
*port
;
2285 mutex_lock(&fcoe_config_mutex
);
2289 /* releases the associated fcoe hosts */
2291 list_for_each_entry_safe(fcoe
, tmp
, &fcoe_hostlist
, list
) {
2292 list_del(&fcoe
->list
);
2293 port
= lport_priv(fcoe
->ctlr
.lp
);
2294 queue_work(fcoe_wq
, &port
->destroy_work
);
2298 unregister_hotcpu_notifier(&fcoe_cpu_notifier
);
2300 for_each_online_cpu(cpu
)
2301 fcoe_percpu_thread_destroy(cpu
);
2303 mutex_unlock(&fcoe_config_mutex
);
2306 * destroy_work's may be chained but destroy_workqueue()
2307 * can take care of them. Just kill the fcoe_wq.
2309 destroy_workqueue(fcoe_wq
);
2312 * Detaching from the scsi transport must happen after all
2313 * destroys are done on the fcoe_wq. destroy_workqueue will
2314 * enusre the fcoe_wq is flushed.
2318 /* detach from fcoe transport */
2319 fcoe_transport_detach(&fcoe_sw_transport
);
2321 module_exit(fcoe_exit
);
2324 * fcoe_flogi_resp() - FCoE specific FLOGI and FDISC response handler
2325 * @seq: active sequence in the FLOGI or FDISC exchange
2326 * @fp: response frame, or error encoded in a pointer (timeout)
2327 * @arg: pointer the the fcoe_ctlr structure
2329 * This handles MAC address management for FCoE, then passes control on to
2330 * the libfc FLOGI response handler.
2332 static void fcoe_flogi_resp(struct fc_seq
*seq
, struct fc_frame
*fp
, void *arg
)
2334 struct fcoe_ctlr
*fip
= arg
;
2335 struct fc_exch
*exch
= fc_seq_exch(seq
);
2336 struct fc_lport
*lport
= exch
->lp
;
2342 mac
= fr_cb(fp
)->granted_mac
;
2343 if (is_zero_ether_addr(mac
)) {
2345 if (fcoe_ctlr_recv_flogi(fip
, lport
, fp
)) {
2350 fcoe_update_src_mac(lport
, mac
);
2352 fc_lport_flogi_resp(seq
, fp
, lport
);
2356 * fcoe_logo_resp() - FCoE specific LOGO response handler
2357 * @seq: active sequence in the LOGO exchange
2358 * @fp: response frame, or error encoded in a pointer (timeout)
2359 * @arg: pointer the the fcoe_ctlr structure
2361 * This handles MAC address management for FCoE, then passes control on to
2362 * the libfc LOGO response handler.
2364 static void fcoe_logo_resp(struct fc_seq
*seq
, struct fc_frame
*fp
, void *arg
)
2366 struct fc_lport
*lport
= arg
;
2367 static u8 zero_mac
[ETH_ALEN
] = { 0 };
2370 fcoe_update_src_mac(lport
, zero_mac
);
2371 fc_lport_logo_resp(seq
, fp
, lport
);
2375 * fcoe_elsct_send - FCoE specific ELS handler
2377 * This does special case handling of FIP encapsualted ELS exchanges for FCoE,
2378 * using FCoE specific response handlers and passing the FIP controller as
2379 * the argument (the lport is still available from the exchange).
2381 * Most of the work here is just handed off to the libfc routine.
2383 static struct fc_seq
*fcoe_elsct_send(struct fc_lport
*lport
, u32 did
,
2384 struct fc_frame
*fp
, unsigned int op
,
2385 void (*resp
)(struct fc_seq
*,
2388 void *arg
, u32 timeout
)
2390 struct fcoe_port
*port
= lport_priv(lport
);
2391 struct fcoe_interface
*fcoe
= port
->priv
;
2392 struct fcoe_ctlr
*fip
= &fcoe
->ctlr
;
2393 struct fc_frame_header
*fh
= fc_frame_header_get(fp
);
2398 if (lport
->point_to_multipoint
)
2400 return fc_elsct_send(lport
, did
, fp
, op
, fcoe_flogi_resp
,
2403 /* only hook onto fabric logouts, not port logouts */
2404 if (ntoh24(fh
->fh_d_id
) != FC_FID_FLOGI
)
2406 return fc_elsct_send(lport
, did
, fp
, op
, fcoe_logo_resp
,
2409 return fc_elsct_send(lport
, did
, fp
, op
, resp
, arg
, timeout
);
2413 * fcoe_vport_create() - create an fc_host/scsi_host for a vport
2414 * @vport: fc_vport object to create a new fc_host for
2415 * @disabled: start the new fc_host in a disabled state by default?
2417 * Returns: 0 for success
2419 static int fcoe_vport_create(struct fc_vport
*vport
, bool disabled
)
2421 struct Scsi_Host
*shost
= vport_to_shost(vport
);
2422 struct fc_lport
*n_port
= shost_priv(shost
);
2423 struct fcoe_port
*port
= lport_priv(n_port
);
2424 struct fcoe_interface
*fcoe
= port
->priv
;
2425 struct net_device
*netdev
= fcoe
->netdev
;
2426 struct fc_lport
*vn_port
;
2430 rc
= fcoe_validate_vport_create(vport
);
2432 fcoe_wwn_to_str(vport
->port_name
, buf
, sizeof(buf
));
2433 printk(KERN_ERR
"fcoe: Failed to create vport, "
2434 "WWPN (0x%s) already exists\n",
2439 mutex_lock(&fcoe_config_mutex
);
2440 vn_port
= fcoe_if_create(fcoe
, &vport
->dev
, 1);
2441 mutex_unlock(&fcoe_config_mutex
);
2443 if (IS_ERR(vn_port
)) {
2444 printk(KERN_ERR
"fcoe: fcoe_vport_create(%s) failed\n",
2450 fc_vport_set_state(vport
, FC_VPORT_DISABLED
);
2452 vn_port
->boot_time
= jiffies
;
2453 fc_fabric_login(vn_port
);
2454 fc_vport_setlink(vn_port
);
2460 * fcoe_vport_destroy() - destroy the fc_host/scsi_host for a vport
2461 * @vport: fc_vport object that is being destroyed
2463 * Returns: 0 for success
2465 static int fcoe_vport_destroy(struct fc_vport
*vport
)
2467 struct Scsi_Host
*shost
= vport_to_shost(vport
);
2468 struct fc_lport
*n_port
= shost_priv(shost
);
2469 struct fc_lport
*vn_port
= vport
->dd_data
;
2470 struct fcoe_port
*port
= lport_priv(vn_port
);
2472 mutex_lock(&n_port
->lp_mutex
);
2473 list_del(&vn_port
->list
);
2474 mutex_unlock(&n_port
->lp_mutex
);
2475 queue_work(fcoe_wq
, &port
->destroy_work
);
2480 * fcoe_vport_disable() - change vport state
2481 * @vport: vport to bring online/offline
2482 * @disable: should the vport be disabled?
2484 static int fcoe_vport_disable(struct fc_vport
*vport
, bool disable
)
2486 struct fc_lport
*lport
= vport
->dd_data
;
2489 fc_vport_set_state(vport
, FC_VPORT_DISABLED
);
2490 fc_fabric_logoff(lport
);
2492 lport
->boot_time
= jiffies
;
2493 fc_fabric_login(lport
);
2494 fc_vport_setlink(lport
);
2501 * fcoe_vport_set_symbolic_name() - append vport string to symbolic name
2502 * @vport: fc_vport with a new symbolic name string
2504 * After generating a new symbolic name string, a new RSPN_ID request is
2505 * sent to the name server. There is no response handler, so if it fails
2506 * for some reason it will not be retried.
2508 static void fcoe_set_vport_symbolic_name(struct fc_vport
*vport
)
2510 struct fc_lport
*lport
= vport
->dd_data
;
2511 struct fc_frame
*fp
;
2514 snprintf(fc_host_symbolic_name(lport
->host
), FC_SYMBOLIC_NAME_SIZE
,
2515 "%s v%s over %s : %s", FCOE_NAME
, FCOE_VERSION
,
2516 fcoe_netdev(lport
)->name
, vport
->symbolic_name
);
2518 if (lport
->state
!= LPORT_ST_READY
)
2521 len
= strnlen(fc_host_symbolic_name(lport
->host
), 255);
2522 fp
= fc_frame_alloc(lport
,
2523 sizeof(struct fc_ct_hdr
) +
2524 sizeof(struct fc_ns_rspn
) + len
);
2527 lport
->tt
.elsct_send(lport
, FC_FID_DIR_SERV
, fp
, FC_NS_RSPN_ID
,
2528 NULL
, NULL
, 3 * lport
->r_a_tov
);
2532 * fcoe_get_lesb() - Fill the FCoE Link Error Status Block
2533 * @lport: the local port
2534 * @fc_lesb: the link error status block
2536 static void fcoe_get_lesb(struct fc_lport
*lport
,
2537 struct fc_els_lesb
*fc_lesb
)
2540 u32 lfc
, vlfc
, mdac
;
2541 struct fcoe_dev_stats
*devst
;
2542 struct fcoe_fc_els_lesb
*lesb
;
2543 struct rtnl_link_stats64 temp
;
2544 struct net_device
*netdev
= fcoe_netdev(lport
);
2549 lesb
= (struct fcoe_fc_els_lesb
*)fc_lesb
;
2550 memset(lesb
, 0, sizeof(*lesb
));
2551 for_each_possible_cpu(cpu
) {
2552 devst
= per_cpu_ptr(lport
->dev_stats
, cpu
);
2553 lfc
+= devst
->LinkFailureCount
;
2554 vlfc
+= devst
->VLinkFailureCount
;
2555 mdac
+= devst
->MissDiscAdvCount
;
2557 lesb
->lesb_link_fail
= htonl(lfc
);
2558 lesb
->lesb_vlink_fail
= htonl(vlfc
);
2559 lesb
->lesb_miss_fka
= htonl(mdac
);
2560 lesb
->lesb_fcs_error
= htonl(dev_get_stats(netdev
, &temp
)->rx_crc_errors
);
2564 * fcoe_set_port_id() - Callback from libfc when Port_ID is set.
2565 * @lport: the local port
2566 * @port_id: the port ID
2567 * @fp: the received frame, if any, that caused the port_id to be set.
2569 * This routine handles the case where we received a FLOGI and are
2570 * entering point-to-point mode. We need to call fcoe_ctlr_recv_flogi()
2571 * so it can set the non-mapped mode and gateway address.
2573 * The FLOGI LS_ACC is handled by fcoe_flogi_resp().
2575 static void fcoe_set_port_id(struct fc_lport
*lport
,
2576 u32 port_id
, struct fc_frame
*fp
)
2578 struct fcoe_port
*port
= lport_priv(lport
);
2579 struct fcoe_interface
*fcoe
= port
->priv
;
2581 if (fp
&& fc_frame_payload_op(fp
) == ELS_FLOGI
)
2582 fcoe_ctlr_recv_flogi(&fcoe
->ctlr
, lport
, fp
);