blob: ab6ea60f2aee84cfe65ca73f12774fdfb0bb0915 [file] [log] [blame]
Robert Love85b4aa42008-12-09 15:10:24 -08001/*
Chris Leechaf7f85d2009-08-25 13:59:24 -07002 * Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved.
Robert Love85b4aa42008-12-09 15:10:24 -08003 *
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
20#include <linux/module.h>
21#include <linux/version.h>
Robert Love85b4aa42008-12-09 15:10:24 -080022#include <linux/spinlock.h>
Robert Love85b4aa42008-12-09 15:10:24 -080023#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>
Robert Love85b4aa42008-12-09 15:10:24 -080028#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Robert Love85b4aa42008-12-09 15:10:24 -080030#include <linux/cpu.h>
31#include <linux/fs.h>
32#include <linux/sysfs.h>
33#include <linux/ctype.h>
34#include <scsi/scsi_tcq.h>
35#include <scsi/scsicam.h>
36#include <scsi/scsi_transport.h>
37#include <scsi/scsi_transport_fc.h>
38#include <net/rtnetlink.h>
39
40#include <scsi/fc/fc_encaps.h>
Joe Eykholt97c83892009-03-17 11:42:40 -070041#include <scsi/fc/fc_fip.h>
Robert Love85b4aa42008-12-09 15:10:24 -080042
43#include <scsi/libfc.h>
44#include <scsi/fc_frame.h>
45#include <scsi/libfcoe.h>
Robert Love85b4aa42008-12-09 15:10:24 -080046
Vasu Devfdd78022009-03-17 11:42:24 -070047#include "fcoe.h"
48
Robert Love85b4aa42008-12-09 15:10:24 -080049MODULE_AUTHOR("Open-FCoE.org");
50MODULE_DESCRIPTION("FCoE");
Vasu Dev9b34ecf2009-03-17 11:42:13 -070051MODULE_LICENSE("GPL v2");
Robert Love85b4aa42008-12-09 15:10:24 -080052
Yi Zou05cc7392009-08-25 13:59:03 -070053/* Performance tuning parameters for fcoe */
54static unsigned int fcoe_ddp_min;
55module_param_named(ddp_min, fcoe_ddp_min, uint, S_IRUGO | S_IWUSR);
56MODULE_PARM_DESC(ddp_min, "Minimum I/O size in bytes for " \
57 "Direct Data Placement (DDP).");
58
Chris Leechdfc1d0f2009-08-25 14:00:13 -070059DEFINE_MUTEX(fcoe_config_mutex);
60
Joe Eykholte7a51992009-08-25 14:04:08 -070061/* fcoe_percpu_clean completion. Waiter protected by fcoe_create_mutex */
62static DECLARE_COMPLETION(fcoe_flush_completion);
63
Robert Love85b4aa42008-12-09 15:10:24 -080064/* fcoe host list */
Chris Leech090eb6c2009-08-25 14:00:28 -070065/* must only by accessed under the RTNL mutex */
Robert Love85b4aa42008-12-09 15:10:24 -080066LIST_HEAD(fcoe_hostlist);
Robert Love5e5e92d2009-03-17 11:41:35 -070067DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -080068
Chris Leechdd3fd722009-04-21 16:27:36 -070069/* Function Prototypes */
Robert Love1875f272009-11-03 11:47:50 -080070static int fcoe_reset(struct Scsi_Host *);
Vasu Devfdd78022009-03-17 11:42:24 -070071static int fcoe_xmit(struct fc_lport *, struct fc_frame *);
72static int fcoe_rcv(struct sk_buff *, struct net_device *,
73 struct packet_type *, struct net_device *);
Robert Love1875f272009-11-03 11:47:50 -080074static int fcoe_percpu_receive_thread(void *);
75static void fcoe_clean_pending_queue(struct fc_lport *);
76static void fcoe_percpu_clean(struct fc_lport *);
Robert Love5e4f8fe2010-05-07 15:18:35 -070077static int fcoe_link_speed_update(struct fc_lport *);
Robert Love1875f272009-11-03 11:47:50 -080078static int fcoe_link_ok(struct fc_lport *);
Vasu Devfdd78022009-03-17 11:42:24 -070079
80static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *);
81static int fcoe_hostlist_add(const struct fc_lport *);
Vasu Devfdd78022009-03-17 11:42:24 -070082
Vasu Dev4bb6b512009-05-06 10:52:34 -070083static void fcoe_check_wait_queue(struct fc_lport *, struct sk_buff *);
Robert Love85b4aa42008-12-09 15:10:24 -080084static int fcoe_device_notification(struct notifier_block *, ulong, void *);
85static void fcoe_dev_setup(void);
86static void fcoe_dev_cleanup(void);
Robert Love1875f272009-11-03 11:47:50 -080087static struct fcoe_interface
88*fcoe_hostlist_lookup_port(const struct net_device *);
Robert Love85b4aa42008-12-09 15:10:24 -080089
Robert Love1875f272009-11-03 11:47:50 -080090static int fcoe_fip_recv(struct sk_buff *, struct net_device *,
91 struct packet_type *, struct net_device *);
92
93static void fcoe_fip_send(struct fcoe_ctlr *, struct sk_buff *);
94static void fcoe_update_src_mac(struct fc_lport *, u8 *);
95static u8 *fcoe_get_src_mac(struct fc_lport *);
96static void fcoe_destroy_work(struct work_struct *);
97
98static int fcoe_ddp_setup(struct fc_lport *, u16, struct scatterlist *,
99 unsigned int);
100static int fcoe_ddp_done(struct fc_lport *, u16);
101
102static int fcoe_cpu_callback(struct notifier_block *, unsigned long, void *);
103
104static int fcoe_create(const char *, struct kernel_param *);
105static int fcoe_destroy(const char *, struct kernel_param *);
Vasu Dev55a66d32009-12-10 09:59:31 -0800106static int fcoe_enable(const char *, struct kernel_param *);
107static int fcoe_disable(const char *, struct kernel_param *);
Robert Love1875f272009-11-03 11:47:50 -0800108
Robert Love1875f272009-11-03 11:47:50 -0800109static struct fc_seq *fcoe_elsct_send(struct fc_lport *,
110 u32 did, struct fc_frame *,
111 unsigned int op,
112 void (*resp)(struct fc_seq *,
113 struct fc_frame *,
114 void *),
115 void *, u32 timeout);
Chris Leech859b7b62009-11-20 14:54:47 -0800116static void fcoe_recv_frame(struct sk_buff *skb);
Robert Love1875f272009-11-03 11:47:50 -0800117
Yi Zoub84056b2009-11-20 14:55:19 -0800118static void fcoe_get_lesb(struct fc_lport *, struct fc_els_lesb *);
119
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700120module_param_call(create, fcoe_create, NULL, (void *)FIP_MODE_AUTO, S_IWUSR);
Robert Love1875f272009-11-03 11:47:50 -0800121__MODULE_PARM_TYPE(create, "string");
Vasu Dev55a66d32009-12-10 09:59:31 -0800122MODULE_PARM_DESC(create, " Creates fcoe instance on a ethernet interface");
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700123module_param_call(create_vn2vn, fcoe_create, NULL,
124 (void *)FIP_MODE_VN2VN, S_IWUSR);
125__MODULE_PARM_TYPE(create_vn2vn, "string");
126MODULE_PARM_DESC(create_vn2vn, " Creates a VN_node to VN_node FCoE instance "
127 "on an Ethernet interface");
Robert Love1875f272009-11-03 11:47:50 -0800128module_param_call(destroy, fcoe_destroy, NULL, NULL, S_IWUSR);
129__MODULE_PARM_TYPE(destroy, "string");
Vasu Dev55a66d32009-12-10 09:59:31 -0800130MODULE_PARM_DESC(destroy, " Destroys fcoe instance on a ethernet interface");
131module_param_call(enable, fcoe_enable, NULL, NULL, S_IWUSR);
132__MODULE_PARM_TYPE(enable, "string");
133MODULE_PARM_DESC(enable, " Enables fcoe on a ethernet interface.");
134module_param_call(disable, fcoe_disable, NULL, NULL, S_IWUSR);
135__MODULE_PARM_TYPE(disable, "string");
136MODULE_PARM_DESC(disable, " Disables fcoe on a ethernet interface.");
Robert Love1875f272009-11-03 11:47:50 -0800137
138/* notification function for packets from net device */
Robert Love85b4aa42008-12-09 15:10:24 -0800139static struct notifier_block fcoe_notifier = {
140 .notifier_call = fcoe_device_notification,
141};
142
Robert Love1875f272009-11-03 11:47:50 -0800143/* notification function for CPU hotplug events */
144static struct notifier_block fcoe_cpu_notifier = {
145 .notifier_call = fcoe_cpu_callback,
146};
147
Chris Leeche9084bb2009-11-03 11:46:34 -0800148static struct scsi_transport_template *fcoe_transport_template;
149static struct scsi_transport_template *fcoe_vport_transport_template;
Vasu Dev7f349142009-03-27 09:06:31 -0700150
Robert Love1875f272009-11-03 11:47:50 -0800151static int fcoe_vport_destroy(struct fc_vport *);
152static int fcoe_vport_create(struct fc_vport *, bool disabled);
153static int fcoe_vport_disable(struct fc_vport *, bool disable);
154static void fcoe_set_vport_symbolic_name(struct fc_vport *);
Joe Eykholt7d65b0d2010-03-12 16:08:02 -0800155static void fcoe_set_port_id(struct fc_lport *, u32, struct fc_frame *);
Robert Love1875f272009-11-03 11:47:50 -0800156
157static struct libfc_function_template fcoe_libfc_fcn_templ = {
158 .frame_send = fcoe_xmit,
159 .ddp_setup = fcoe_ddp_setup,
160 .ddp_done = fcoe_ddp_done,
161 .elsct_send = fcoe_elsct_send,
Yi Zoub84056b2009-11-20 14:55:19 -0800162 .get_lesb = fcoe_get_lesb,
Joe Eykholt7d65b0d2010-03-12 16:08:02 -0800163 .lport_set_port_id = fcoe_set_port_id,
Robert Love1875f272009-11-03 11:47:50 -0800164};
Chris Leech9a057532009-11-03 11:46:40 -0800165
Vasu Dev7f349142009-03-27 09:06:31 -0700166struct fc_function_template fcoe_transport_function = {
167 .show_host_node_name = 1,
168 .show_host_port_name = 1,
169 .show_host_supported_classes = 1,
170 .show_host_supported_fc4s = 1,
171 .show_host_active_fc4s = 1,
172 .show_host_maxframe_size = 1,
173
174 .show_host_port_id = 1,
175 .show_host_supported_speeds = 1,
176 .get_host_speed = fc_get_host_speed,
177 .show_host_speed = 1,
178 .show_host_port_type = 1,
179 .get_host_port_state = fc_get_host_port_state,
180 .show_host_port_state = 1,
181 .show_host_symbolic_name = 1,
182
183 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
184 .show_rport_maxframe_size = 1,
185 .show_rport_supported_classes = 1,
186
187 .show_host_fabric_name = 1,
188 .show_starget_node_name = 1,
189 .show_starget_port_name = 1,
190 .show_starget_port_id = 1,
191 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
192 .show_rport_dev_loss_tmo = 1,
193 .get_fc_host_stats = fc_get_host_stats,
194 .issue_fc_host_lip = fcoe_reset,
195
196 .terminate_rport_io = fc_rport_terminate_io,
Chris Leech9a057532009-11-03 11:46:40 -0800197
198 .vport_create = fcoe_vport_create,
199 .vport_delete = fcoe_vport_destroy,
200 .vport_disable = fcoe_vport_disable,
Chris Leechdc8596d2009-11-03 11:47:18 -0800201 .set_vport_symbolic_name = fcoe_set_vport_symbolic_name,
Steve Maa51ab392009-11-03 11:47:34 -0800202
203 .bsg_request = fc_lport_bsg_request,
Vasu Dev7f349142009-03-27 09:06:31 -0700204};
205
Chris Leeche9084bb2009-11-03 11:46:34 -0800206struct fc_function_template fcoe_vport_transport_function = {
207 .show_host_node_name = 1,
208 .show_host_port_name = 1,
209 .show_host_supported_classes = 1,
210 .show_host_supported_fc4s = 1,
211 .show_host_active_fc4s = 1,
212 .show_host_maxframe_size = 1,
213
214 .show_host_port_id = 1,
215 .show_host_supported_speeds = 1,
216 .get_host_speed = fc_get_host_speed,
217 .show_host_speed = 1,
218 .show_host_port_type = 1,
219 .get_host_port_state = fc_get_host_port_state,
220 .show_host_port_state = 1,
221 .show_host_symbolic_name = 1,
222
223 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
224 .show_rport_maxframe_size = 1,
225 .show_rport_supported_classes = 1,
226
227 .show_host_fabric_name = 1,
228 .show_starget_node_name = 1,
229 .show_starget_port_name = 1,
230 .show_starget_port_id = 1,
231 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
232 .show_rport_dev_loss_tmo = 1,
233 .get_fc_host_stats = fc_get_host_stats,
234 .issue_fc_host_lip = fcoe_reset,
235
236 .terminate_rport_io = fc_rport_terminate_io,
Steve Maa51ab392009-11-03 11:47:34 -0800237
238 .bsg_request = fc_lport_bsg_request,
Chris Leeche9084bb2009-11-03 11:46:34 -0800239};
240
Vasu Dev7f349142009-03-27 09:06:31 -0700241static struct scsi_host_template fcoe_shost_template = {
242 .module = THIS_MODULE,
243 .name = "FCoE Driver",
244 .proc_name = FCOE_NAME,
245 .queuecommand = fc_queuecommand,
246 .eh_abort_handler = fc_eh_abort,
247 .eh_device_reset_handler = fc_eh_device_reset,
248 .eh_host_reset_handler = fc_eh_host_reset,
249 .slave_alloc = fc_slave_alloc,
250 .change_queue_depth = fc_change_queue_depth,
251 .change_queue_type = fc_change_queue_type,
252 .this_id = -1,
Vasu Dev14caf442009-10-15 17:46:55 -0700253 .cmd_per_lun = 3,
Vasu Dev7f349142009-03-27 09:06:31 -0700254 .can_queue = FCOE_MAX_OUTSTANDING_COMMANDS,
255 .use_clustering = ENABLE_CLUSTERING,
256 .sg_tablesize = SG_ALL,
257 .max_sectors = 0xffff,
258};
259
Chris Leech54b649f2009-08-25 14:00:07 -0700260/**
Robert Love1875f272009-11-03 11:47:50 -0800261 * fcoe_interface_setup() - Setup a FCoE interface
262 * @fcoe: The new FCoE interface
263 * @netdev: The net device that the fcoe interface is on
Chris Leech54b649f2009-08-25 14:00:07 -0700264 *
265 * Returns : 0 for success
Chris Leech2e70e242009-08-25 14:00:23 -0700266 * Locking: must be called with the RTNL mutex held
Chris Leech54b649f2009-08-25 14:00:07 -0700267 */
268static int fcoe_interface_setup(struct fcoe_interface *fcoe,
269 struct net_device *netdev)
270{
271 struct fcoe_ctlr *fip = &fcoe->ctlr;
272 struct netdev_hw_addr *ha;
Yi Zou5bab87e2009-11-03 11:49:43 -0800273 struct net_device *real_dev;
Chris Leech54b649f2009-08-25 14:00:07 -0700274 u8 flogi_maddr[ETH_ALEN];
Yi Zoub7a727f2009-10-21 16:28:03 -0700275 const struct net_device_ops *ops;
Chris Leech54b649f2009-08-25 14:00:07 -0700276
277 fcoe->netdev = netdev;
278
Yi Zoub7a727f2009-10-21 16:28:03 -0700279 /* Let LLD initialize for FCoE */
280 ops = netdev->netdev_ops;
281 if (ops->ndo_fcoe_enable) {
282 if (ops->ndo_fcoe_enable(netdev))
283 FCOE_NETDEV_DBG(netdev, "Failed to enable FCoE"
284 " specific feature for LLD.\n");
285 }
286
Chris Leech54b649f2009-08-25 14:00:07 -0700287 /* Do not support for bonding device */
288 if ((netdev->priv_flags & IFF_MASTER_ALB) ||
289 (netdev->priv_flags & IFF_SLAVE_INACTIVE) ||
290 (netdev->priv_flags & IFF_MASTER_8023AD)) {
john fastabend59d92512009-11-03 11:48:44 -0800291 FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n");
Chris Leech54b649f2009-08-25 14:00:07 -0700292 return -EOPNOTSUPP;
293 }
294
295 /* look for SAN MAC address, if multiple SAN MACs exist, only
296 * use the first one for SPMA */
Yi Zou5bab87e2009-11-03 11:49:43 -0800297 real_dev = (netdev->priv_flags & IFF_802_1Q_VLAN) ?
298 vlan_dev_real_dev(netdev) : netdev;
Chris Leech54b649f2009-08-25 14:00:07 -0700299 rcu_read_lock();
Yi Zou5bab87e2009-11-03 11:49:43 -0800300 for_each_dev_addr(real_dev, ha) {
Chris Leech54b649f2009-08-25 14:00:07 -0700301 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
Yi Zoubf361702009-11-03 11:49:38 -0800302 (is_valid_ether_addr(ha->addr))) {
Chris Leech54b649f2009-08-25 14:00:07 -0700303 memcpy(fip->ctl_src_addr, ha->addr, ETH_ALEN);
304 fip->spma = 1;
305 break;
306 }
307 }
308 rcu_read_unlock();
309
310 /* setup Source Mac Address */
311 if (!fip->spma)
312 memcpy(fip->ctl_src_addr, netdev->dev_addr, netdev->addr_len);
313
314 /*
315 * Add FCoE MAC address as second unicast MAC address
316 * or enter promiscuous mode if not capable of listening
317 * for multiple unicast MACs.
318 */
Chris Leech54b649f2009-08-25 14:00:07 -0700319 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000320 dev_uc_add(netdev, flogi_maddr);
Chris Leech54b649f2009-08-25 14:00:07 -0700321 if (fip->spma)
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000322 dev_uc_add(netdev, fip->ctl_src_addr);
Joe Eykholte10f8c62010-07-20 15:20:30 -0700323 if (fip->mode == FIP_MODE_VN2VN) {
324 dev_mc_add(netdev, FIP_ALL_VN2VN_MACS);
325 dev_mc_add(netdev, FIP_ALL_P2P_MACS);
326 } else
327 dev_mc_add(netdev, FIP_ALL_ENODE_MACS);
Chris Leech54b649f2009-08-25 14:00:07 -0700328
329 /*
330 * setup the receive function from ethernet driver
331 * on the ethertype for the given device
332 */
333 fcoe->fcoe_packet_type.func = fcoe_rcv;
334 fcoe->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
335 fcoe->fcoe_packet_type.dev = netdev;
336 dev_add_pack(&fcoe->fcoe_packet_type);
337
338 fcoe->fip_packet_type.func = fcoe_fip_recv;
339 fcoe->fip_packet_type.type = htons(ETH_P_FIP);
340 fcoe->fip_packet_type.dev = netdev;
341 dev_add_pack(&fcoe->fip_packet_type);
342
343 return 0;
344}
345
Vasu Dev7f349142009-03-27 09:06:31 -0700346/**
Robert Love1875f272009-11-03 11:47:50 -0800347 * fcoe_interface_create() - Create a FCoE interface on a net device
348 * @netdev: The net device to create the FCoE interface on
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700349 * @fip_mode: The mode to use for FIP
Chris Leech030f4e02009-08-25 14:00:02 -0700350 *
351 * Returns: pointer to a struct fcoe_interface or NULL on error
352 */
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700353static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev,
354 enum fip_state fip_mode)
Chris Leech030f4e02009-08-25 14:00:02 -0700355{
356 struct fcoe_interface *fcoe;
john fastabend59d92512009-11-03 11:48:44 -0800357 int err;
Chris Leech030f4e02009-08-25 14:00:02 -0700358
359 fcoe = kzalloc(sizeof(*fcoe), GFP_KERNEL);
360 if (!fcoe) {
361 FCOE_NETDEV_DBG(netdev, "Could not allocate fcoe structure\n");
362 return NULL;
363 }
364
Chris Leech2e70e242009-08-25 14:00:23 -0700365 dev_hold(netdev);
Chris Leech030f4e02009-08-25 14:00:02 -0700366 kref_init(&fcoe->kref);
Chris Leech54b649f2009-08-25 14:00:07 -0700367
368 /*
369 * Initialize FIP.
370 */
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700371 fcoe_ctlr_init(&fcoe->ctlr, fip_mode);
Chris Leech54b649f2009-08-25 14:00:07 -0700372 fcoe->ctlr.send = fcoe_fip_send;
373 fcoe->ctlr.update_mac = fcoe_update_src_mac;
Chris Leech11b56182009-11-03 11:46:29 -0800374 fcoe->ctlr.get_src_addr = fcoe_get_src_mac;
Chris Leech54b649f2009-08-25 14:00:07 -0700375
john fastabend59d92512009-11-03 11:48:44 -0800376 err = fcoe_interface_setup(fcoe, netdev);
377 if (err) {
378 fcoe_ctlr_destroy(&fcoe->ctlr);
379 kfree(fcoe);
380 dev_put(netdev);
381 return NULL;
382 }
Chris Leech030f4e02009-08-25 14:00:02 -0700383
384 return fcoe;
385}
386
387/**
Robert Love1875f272009-11-03 11:47:50 -0800388 * fcoe_interface_cleanup() - Clean up a FCoE interface
389 * @fcoe: The FCoE interface to be cleaned up
Chris Leech2e70e242009-08-25 14:00:23 -0700390 *
391 * Caller must be holding the RTNL mutex
Chris Leech54b649f2009-08-25 14:00:07 -0700392 */
393void fcoe_interface_cleanup(struct fcoe_interface *fcoe)
394{
395 struct net_device *netdev = fcoe->netdev;
396 struct fcoe_ctlr *fip = &fcoe->ctlr;
397 u8 flogi_maddr[ETH_ALEN];
Yi Zoub7a727f2009-10-21 16:28:03 -0700398 const struct net_device_ops *ops;
Chris Leech54b649f2009-08-25 14:00:07 -0700399
400 /*
401 * Don't listen for Ethernet packets anymore.
402 * synchronize_net() ensures that the packet handlers are not running
403 * on another CPU. dev_remove_pack() would do that, this calls the
404 * unsyncronized version __dev_remove_pack() to avoid multiple delays.
405 */
406 __dev_remove_pack(&fcoe->fcoe_packet_type);
407 __dev_remove_pack(&fcoe->fip_packet_type);
408 synchronize_net();
409
Chris Leech54b649f2009-08-25 14:00:07 -0700410 /* Delete secondary MAC addresses */
Chris Leech54b649f2009-08-25 14:00:07 -0700411 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000412 dev_uc_del(netdev, flogi_maddr);
Chris Leech54b649f2009-08-25 14:00:07 -0700413 if (fip->spma)
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000414 dev_uc_del(netdev, fip->ctl_src_addr);
Joe Eykholte10f8c62010-07-20 15:20:30 -0700415 if (fip->mode == FIP_MODE_VN2VN) {
416 dev_mc_del(netdev, FIP_ALL_VN2VN_MACS);
417 dev_mc_del(netdev, FIP_ALL_P2P_MACS);
418 } else
419 dev_mc_del(netdev, FIP_ALL_ENODE_MACS);
Yi Zoub7a727f2009-10-21 16:28:03 -0700420
421 /* Tell the LLD we are done w/ FCoE */
422 ops = netdev->netdev_ops;
423 if (ops->ndo_fcoe_disable) {
424 if (ops->ndo_fcoe_disable(netdev))
425 FCOE_NETDEV_DBG(netdev, "Failed to disable FCoE"
426 " specific feature for LLD.\n");
427 }
Chris Leech54b649f2009-08-25 14:00:07 -0700428}
429
430/**
Chris Leech030f4e02009-08-25 14:00:02 -0700431 * fcoe_interface_release() - fcoe_port kref release function
Robert Love1875f272009-11-03 11:47:50 -0800432 * @kref: Embedded reference count in an fcoe_interface struct
Chris Leech030f4e02009-08-25 14:00:02 -0700433 */
434static void fcoe_interface_release(struct kref *kref)
435{
436 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -0700437 struct net_device *netdev;
Chris Leech030f4e02009-08-25 14:00:02 -0700438
439 fcoe = container_of(kref, struct fcoe_interface, kref);
Chris Leech2e70e242009-08-25 14:00:23 -0700440 netdev = fcoe->netdev;
441 /* tear-down the FCoE controller */
442 fcoe_ctlr_destroy(&fcoe->ctlr);
Chris Leech030f4e02009-08-25 14:00:02 -0700443 kfree(fcoe);
Chris Leech2e70e242009-08-25 14:00:23 -0700444 dev_put(netdev);
Chris Leech030f4e02009-08-25 14:00:02 -0700445}
446
447/**
Robert Love1875f272009-11-03 11:47:50 -0800448 * fcoe_interface_get() - Get a reference to a FCoE interface
449 * @fcoe: The FCoE interface to be held
Chris Leech030f4e02009-08-25 14:00:02 -0700450 */
451static inline void fcoe_interface_get(struct fcoe_interface *fcoe)
452{
453 kref_get(&fcoe->kref);
454}
455
456/**
Robert Love1875f272009-11-03 11:47:50 -0800457 * fcoe_interface_put() - Put a reference to a FCoE interface
458 * @fcoe: The FCoE interface to be released
Chris Leech030f4e02009-08-25 14:00:02 -0700459 */
460static inline void fcoe_interface_put(struct fcoe_interface *fcoe)
461{
462 kref_put(&fcoe->kref, fcoe_interface_release);
463}
464
465/**
Robert Love1875f272009-11-03 11:47:50 -0800466 * fcoe_fip_recv() - Handler for received FIP frames
467 * @skb: The receive skb
468 * @netdev: The associated net device
469 * @ptype: The packet_type structure which was used to register this handler
470 * @orig_dev: The original net_device the the skb was received on.
471 * (in case dev is a bond)
Vasu Devab6b85c2009-05-17 12:33:08 +0000472 *
473 * Returns: 0 for success
474 */
Robert Love1875f272009-11-03 11:47:50 -0800475static int fcoe_fip_recv(struct sk_buff *skb, struct net_device *netdev,
Vasu Devab6b85c2009-05-17 12:33:08 +0000476 struct packet_type *ptype,
477 struct net_device *orig_dev)
478{
Chris Leech259ad852009-08-25 13:59:41 -0700479 struct fcoe_interface *fcoe;
Vasu Devab6b85c2009-05-17 12:33:08 +0000480
Chris Leech259ad852009-08-25 13:59:41 -0700481 fcoe = container_of(ptype, struct fcoe_interface, fip_packet_type);
Chris Leech3fe9a0b2009-08-25 13:59:46 -0700482 fcoe_ctlr_recv(&fcoe->ctlr, skb);
Vasu Devab6b85c2009-05-17 12:33:08 +0000483 return 0;
484}
485
486/**
Robert Love1875f272009-11-03 11:47:50 -0800487 * fcoe_fip_send() - Send an Ethernet-encapsulated FIP frame
488 * @fip: The FCoE controller
489 * @skb: The FIP packet to be sent
Vasu Devab6b85c2009-05-17 12:33:08 +0000490 */
491static void fcoe_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
492{
Chris Leech3fe9a0b2009-08-25 13:59:46 -0700493 skb->dev = fcoe_from_ctlr(fip)->netdev;
Vasu Devab6b85c2009-05-17 12:33:08 +0000494 dev_queue_xmit(skb);
495}
496
497/**
Robert Love1875f272009-11-03 11:47:50 -0800498 * fcoe_update_src_mac() - Update the Ethernet MAC filters
499 * @lport: The local port to update the source MAC on
500 * @addr: Unicast MAC address to add
Vasu Devab6b85c2009-05-17 12:33:08 +0000501 *
502 * Remove any previously-set unicast MAC filter.
503 * Add secondary FCoE MAC address filter for our OUI.
504 */
Chris Leech11b56182009-11-03 11:46:29 -0800505static void fcoe_update_src_mac(struct fc_lport *lport, u8 *addr)
Vasu Devab6b85c2009-05-17 12:33:08 +0000506{
Chris Leech11b56182009-11-03 11:46:29 -0800507 struct fcoe_port *port = lport_priv(lport);
508 struct fcoe_interface *fcoe = port->fcoe;
Vasu Devab6b85c2009-05-17 12:33:08 +0000509
Vasu Devab6b85c2009-05-17 12:33:08 +0000510 rtnl_lock();
Chris Leech11b56182009-11-03 11:46:29 -0800511 if (!is_zero_ether_addr(port->data_src_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000512 dev_uc_del(fcoe->netdev, port->data_src_addr);
Chris Leech11b56182009-11-03 11:46:29 -0800513 if (!is_zero_ether_addr(addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000514 dev_uc_add(fcoe->netdev, addr);
Chris Leech11b56182009-11-03 11:46:29 -0800515 memcpy(port->data_src_addr, addr, ETH_ALEN);
Vasu Devab6b85c2009-05-17 12:33:08 +0000516 rtnl_unlock();
517}
518
519/**
Chris Leech11b56182009-11-03 11:46:29 -0800520 * fcoe_get_src_mac() - return the Ethernet source address for an lport
521 * @lport: libfc lport
522 */
523static u8 *fcoe_get_src_mac(struct fc_lport *lport)
524{
525 struct fcoe_port *port = lport_priv(lport);
526
527 return port->data_src_addr;
528}
529
530/**
Robert Love1875f272009-11-03 11:47:50 -0800531 * fcoe_lport_config() - Set up a local port
532 * @lport: The local port to be setup
Vasu Dev7f349142009-03-27 09:06:31 -0700533 *
534 * Returns: 0 for success
535 */
Robert Love1875f272009-11-03 11:47:50 -0800536static int fcoe_lport_config(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700537{
Robert Love1875f272009-11-03 11:47:50 -0800538 lport->link_up = 0;
539 lport->qfull = 0;
540 lport->max_retry_count = 3;
541 lport->max_rport_retry_count = 3;
542 lport->e_d_tov = 2 * 1000; /* FC-FS default */
543 lport->r_a_tov = 2 * 2 * 1000;
544 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
545 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
546 lport->does_npiv = 1;
Vasu Dev7f349142009-03-27 09:06:31 -0700547
Robert Love1875f272009-11-03 11:47:50 -0800548 fc_lport_init_stats(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700549
550 /* lport fc_lport related configuration */
Robert Love1875f272009-11-03 11:47:50 -0800551 fc_lport_config(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700552
553 /* offload related configuration */
Robert Love1875f272009-11-03 11:47:50 -0800554 lport->crc_offload = 0;
555 lport->seq_offload = 0;
556 lport->lro_enabled = 0;
557 lport->lro_xid = 0;
558 lport->lso_max = 0;
Vasu Dev7f349142009-03-27 09:06:31 -0700559
560 return 0;
561}
562
563/**
Robert Love1875f272009-11-03 11:47:50 -0800564 * fcoe_queue_timer() - The fcoe queue timer
565 * @lport: The local port
Vasu Dev1047f222009-05-06 10:52:40 -0700566 *
567 * Calls fcoe_check_wait_queue on timeout
Vasu Dev1047f222009-05-06 10:52:40 -0700568 */
Robert Love1875f272009-11-03 11:47:50 -0800569static void fcoe_queue_timer(ulong lport)
Vasu Dev1047f222009-05-06 10:52:40 -0700570{
Robert Love1875f272009-11-03 11:47:50 -0800571 fcoe_check_wait_queue((struct fc_lport *)lport, NULL);
Vasu Dev1047f222009-05-06 10:52:40 -0700572}
573
574/**
Yi Zoudcece412009-11-20 15:22:21 -0800575 * fcoe_get_wwn() - Get the world wide name from LLD if it supports it
576 * @netdev: the associated net device
577 * @wwn: the output WWN
578 * @type: the type of WWN (WWPN or WWNN)
579 *
580 * Returns: 0 for success
581 */
582static int fcoe_get_wwn(struct net_device *netdev, u64 *wwn, int type)
583{
584 const struct net_device_ops *ops = netdev->netdev_ops;
585
586 if (ops->ndo_fcoe_get_wwn)
587 return ops->ndo_fcoe_get_wwn(netdev, wwn, type);
588 return -EINVAL;
589}
590
591/**
Robert Love1875f272009-11-03 11:47:50 -0800592 * fcoe_netdev_config() - Set up net devive for SW FCoE
593 * @lport: The local port that is associated with the net device
594 * @netdev: The associated net device
Vasu Dev7f349142009-03-27 09:06:31 -0700595 *
Robert Love1875f272009-11-03 11:47:50 -0800596 * Must be called after fcoe_lport_config() as it will use local port mutex
Vasu Dev7f349142009-03-27 09:06:31 -0700597 *
Robert Love1875f272009-11-03 11:47:50 -0800598 * Returns: 0 for success
Vasu Dev7f349142009-03-27 09:06:31 -0700599 */
Robert Love1875f272009-11-03 11:47:50 -0800600static int fcoe_netdev_config(struct fc_lport *lport, struct net_device *netdev)
Vasu Dev7f349142009-03-27 09:06:31 -0700601{
602 u32 mfs;
603 u64 wwnn, wwpn;
Chris Leech25024982009-08-25 13:59:35 -0700604 struct fcoe_interface *fcoe;
Chris Leech014f5c32009-08-25 13:59:30 -0700605 struct fcoe_port *port;
Yi Zoucc0136c2009-11-03 11:49:59 -0800606 int vid = 0;
Vasu Dev7f349142009-03-27 09:06:31 -0700607
608 /* Setup lport private data to point to fcoe softc */
Robert Love1875f272009-11-03 11:47:50 -0800609 port = lport_priv(lport);
Chris Leech25024982009-08-25 13:59:35 -0700610 fcoe = port->fcoe;
Vasu Dev7f349142009-03-27 09:06:31 -0700611
612 /*
613 * Determine max frame size based on underlying device and optional
614 * user-configured limit. If the MFS is too low, fcoe_link_ok()
615 * will return 0, so do this first.
616 */
Yi Zou7221d7e2009-10-21 16:27:52 -0700617 mfs = netdev->mtu;
618 if (netdev->features & NETIF_F_FCOE_MTU) {
619 mfs = FCOE_MTU;
620 FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs);
621 }
622 mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof));
Robert Love1875f272009-11-03 11:47:50 -0800623 if (fc_set_mfs(lport, mfs))
Vasu Dev7f349142009-03-27 09:06:31 -0700624 return -EINVAL;
625
Vasu Dev7f349142009-03-27 09:06:31 -0700626 /* offload features support */
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700627 if (netdev->features & NETIF_F_SG)
Robert Love1875f272009-11-03 11:47:50 -0800628 lport->sg_supp = 1;
Vasu Dev7f349142009-03-27 09:06:31 -0700629
Vasu Dev7f349142009-03-27 09:06:31 -0700630 if (netdev->features & NETIF_F_FCOE_CRC) {
Robert Love1875f272009-11-03 11:47:50 -0800631 lport->crc_offload = 1;
Robert Loved5488eb2009-06-10 15:30:59 -0700632 FCOE_NETDEV_DBG(netdev, "Supports FCCRC offload\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700633 }
Vasu Dev7f349142009-03-27 09:06:31 -0700634 if (netdev->features & NETIF_F_FSO) {
Robert Love1875f272009-11-03 11:47:50 -0800635 lport->seq_offload = 1;
636 lport->lso_max = netdev->gso_max_size;
Robert Loved5488eb2009-06-10 15:30:59 -0700637 FCOE_NETDEV_DBG(netdev, "Supports LSO for max len 0x%x\n",
Robert Love1875f272009-11-03 11:47:50 -0800638 lport->lso_max);
Vasu Dev7f349142009-03-27 09:06:31 -0700639 }
Vasu Dev7f349142009-03-27 09:06:31 -0700640 if (netdev->fcoe_ddp_xid) {
Robert Love1875f272009-11-03 11:47:50 -0800641 lport->lro_enabled = 1;
642 lport->lro_xid = netdev->fcoe_ddp_xid;
Robert Loved5488eb2009-06-10 15:30:59 -0700643 FCOE_NETDEV_DBG(netdev, "Supports LRO for max xid 0x%x\n",
Robert Love1875f272009-11-03 11:47:50 -0800644 lport->lro_xid);
Vasu Dev7f349142009-03-27 09:06:31 -0700645 }
Chris Leech014f5c32009-08-25 13:59:30 -0700646 skb_queue_head_init(&port->fcoe_pending_queue);
647 port->fcoe_pending_queue_active = 0;
Robert Love1875f272009-11-03 11:47:50 -0800648 setup_timer(&port->timer, fcoe_queue_timer, (unsigned long)lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700649
Robert Love5e4f8fe2010-05-07 15:18:35 -0700650 fcoe_link_speed_update(lport);
651
Robert Love1875f272009-11-03 11:47:50 -0800652 if (!lport->vport) {
Yi Zoucc0136c2009-11-03 11:49:59 -0800653 /*
654 * Use NAA 1&2 (FC-FS Rev. 2.0, Sec. 15) to generate WWNN/WWPN:
655 * For WWNN, we use NAA 1 w/ bit 27-16 of word 0 as 0.
656 * For WWPN, we use NAA 2 w/ bit 27-16 of word 0 from VLAN ID
657 */
658 if (netdev->priv_flags & IFF_802_1Q_VLAN)
659 vid = vlan_dev_vlan_id(netdev);
Yi Zoudcece412009-11-20 15:22:21 -0800660
661 if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN))
662 wwnn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr, 1, 0);
Robert Love1875f272009-11-03 11:47:50 -0800663 fc_set_wwnn(lport, wwnn);
Yi Zoudcece412009-11-20 15:22:21 -0800664 if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN))
665 wwpn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr,
666 2, vid);
Robert Love1875f272009-11-03 11:47:50 -0800667 fc_set_wwpn(lport, wwpn);
Chris Leech9a057532009-11-03 11:46:40 -0800668 }
Vasu Dev7f349142009-03-27 09:06:31 -0700669
Vasu Dev7f349142009-03-27 09:06:31 -0700670 return 0;
671}
672
673/**
Robert Love1875f272009-11-03 11:47:50 -0800674 * fcoe_shost_config() - Set up the SCSI host associated with a local port
675 * @lport: The local port
Robert Love1875f272009-11-03 11:47:50 -0800676 * @dev: The device associated with the SCSI host
Vasu Dev7f349142009-03-27 09:06:31 -0700677 *
678 * Must be called after fcoe_lport_config() and fcoe_netdev_config()
679 *
Robert Love1875f272009-11-03 11:47:50 -0800680 * Returns: 0 for success
Vasu Dev7f349142009-03-27 09:06:31 -0700681 */
Vasu Dev8ba00a42010-04-09 14:22:54 -0700682static int fcoe_shost_config(struct fc_lport *lport, struct device *dev)
Vasu Dev7f349142009-03-27 09:06:31 -0700683{
684 int rc = 0;
685
686 /* lport scsi host config */
Robert Love1875f272009-11-03 11:47:50 -0800687 lport->host->max_lun = FCOE_MAX_LUN;
688 lport->host->max_id = FCOE_MAX_FCP_TARGET;
689 lport->host->max_channel = 0;
Vasu Devda87bfa2010-04-09 14:22:59 -0700690 lport->host->max_cmd_len = FCOE_MAX_CMD_LEN;
691
Robert Love1875f272009-11-03 11:47:50 -0800692 if (lport->vport)
693 lport->host->transportt = fcoe_vport_transport_template;
Chris Leeche9084bb2009-11-03 11:46:34 -0800694 else
Robert Love1875f272009-11-03 11:47:50 -0800695 lport->host->transportt = fcoe_transport_template;
Vasu Dev7f349142009-03-27 09:06:31 -0700696
697 /* add the new host to the SCSI-ml */
Robert Love1875f272009-11-03 11:47:50 -0800698 rc = scsi_add_host(lport->host, dev);
Vasu Dev7f349142009-03-27 09:06:31 -0700699 if (rc) {
Robert Love1875f272009-11-03 11:47:50 -0800700 FCOE_NETDEV_DBG(fcoe_netdev(lport), "fcoe_shost_config: "
Robert Loved5488eb2009-06-10 15:30:59 -0700701 "error on scsi_add_host\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700702 return rc;
703 }
Chris Leech9a057532009-11-03 11:46:40 -0800704
Robert Love1875f272009-11-03 11:47:50 -0800705 if (!lport->vport)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700706 fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
Chris Leech9a057532009-11-03 11:46:40 -0800707
Robert Love1875f272009-11-03 11:47:50 -0800708 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
Chris Leech5baa17c2009-11-03 11:46:56 -0800709 "%s v%s over %s", FCOE_NAME, FCOE_VERSION,
Robert Love1875f272009-11-03 11:47:50 -0800710 fcoe_netdev(lport)->name);
Vasu Dev7f349142009-03-27 09:06:31 -0700711
712 return 0;
713}
714
Robert Love1875f272009-11-03 11:47:50 -0800715/**
716 * fcoe_oem_match() - The match routine for the offloaded exchange manager
717 * @fp: The I/O frame
Vasu Devd7179682009-07-29 17:05:21 -0700718 *
Robert Love1875f272009-11-03 11:47:50 -0800719 * This routine will be associated with an exchange manager (EM). When
720 * the libfc exchange handling code is looking for an EM to use it will
721 * call this routine and pass it the frame that it wishes to send. This
722 * routine will return True if the associated EM is to be used and False
723 * if the echange code should continue looking for an EM.
724 *
725 * The offload EM that this routine is associated with will handle any
726 * packets that are for SCSI read requests.
727 *
728 * Returns: True for read types I/O, otherwise returns false.
Vasu Devd7179682009-07-29 17:05:21 -0700729 */
730bool fcoe_oem_match(struct fc_frame *fp)
731{
Yi Zou05cc7392009-08-25 13:59:03 -0700732 return fc_fcp_is_read(fr_fsp(fp)) &&
733 (fr_fsp(fp)->data_len > fcoe_ddp_min);
Vasu Devd7179682009-07-29 17:05:21 -0700734}
735
Vasu Dev7f349142009-03-27 09:06:31 -0700736/**
Robert Love1875f272009-11-03 11:47:50 -0800737 * fcoe_em_config() - Allocate and configure an exchange manager
738 * @lport: The local port that the new EM will be associated with
Vasu Dev7f349142009-03-27 09:06:31 -0700739 *
Robert Love1875f272009-11-03 11:47:50 -0800740 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -0700741 */
Robert Love1875f272009-11-03 11:47:50 -0800742static inline int fcoe_em_config(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700743{
Robert Love1875f272009-11-03 11:47:50 -0800744 struct fcoe_port *port = lport_priv(lport);
Chris Leech25024982009-08-25 13:59:35 -0700745 struct fcoe_interface *fcoe = port->fcoe;
746 struct fcoe_interface *oldfcoe = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700747 struct net_device *old_real_dev, *cur_real_dev;
Vasu Devd7179682009-07-29 17:05:21 -0700748 u16 min_xid = FCOE_MIN_XID;
749 u16 max_xid = FCOE_MAX_XID;
750
751 /*
752 * Check if need to allocate an em instance for
753 * offload exchange ids to be shared across all VN_PORTs/lport.
754 */
Robert Love1875f272009-11-03 11:47:50 -0800755 if (!lport->lro_enabled || !lport->lro_xid ||
756 (lport->lro_xid >= max_xid)) {
757 lport->lro_xid = 0;
Vasu Devd7179682009-07-29 17:05:21 -0700758 goto skip_oem;
759 }
760
761 /*
762 * Reuse existing offload em instance in case
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700763 * it is already allocated on real eth device
Vasu Devd7179682009-07-29 17:05:21 -0700764 */
Chris Leech25024982009-08-25 13:59:35 -0700765 if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
766 cur_real_dev = vlan_dev_real_dev(fcoe->netdev);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700767 else
Chris Leech25024982009-08-25 13:59:35 -0700768 cur_real_dev = fcoe->netdev;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700769
Chris Leech25024982009-08-25 13:59:35 -0700770 list_for_each_entry(oldfcoe, &fcoe_hostlist, list) {
Chris Leech25024982009-08-25 13:59:35 -0700771 if (oldfcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
772 old_real_dev = vlan_dev_real_dev(oldfcoe->netdev);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700773 else
Chris Leech25024982009-08-25 13:59:35 -0700774 old_real_dev = oldfcoe->netdev;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700775
776 if (cur_real_dev == old_real_dev) {
Chris Leech991cbb62009-08-25 13:59:51 -0700777 fcoe->oem = oldfcoe->oem;
Vasu Devd7179682009-07-29 17:05:21 -0700778 break;
779 }
780 }
781
Chris Leech991cbb62009-08-25 13:59:51 -0700782 if (fcoe->oem) {
Robert Love1875f272009-11-03 11:47:50 -0800783 if (!fc_exch_mgr_add(lport, fcoe->oem, fcoe_oem_match)) {
Vasu Devd7179682009-07-29 17:05:21 -0700784 printk(KERN_ERR "fcoe_em_config: failed to add "
785 "offload em:%p on interface:%s\n",
Chris Leech991cbb62009-08-25 13:59:51 -0700786 fcoe->oem, fcoe->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700787 return -ENOMEM;
788 }
789 } else {
Robert Love1875f272009-11-03 11:47:50 -0800790 fcoe->oem = fc_exch_mgr_alloc(lport, FC_CLASS_3,
791 FCOE_MIN_XID, lport->lro_xid,
792 fcoe_oem_match);
Chris Leech991cbb62009-08-25 13:59:51 -0700793 if (!fcoe->oem) {
Vasu Devd7179682009-07-29 17:05:21 -0700794 printk(KERN_ERR "fcoe_em_config: failed to allocate "
795 "em for offload exches on interface:%s\n",
Chris Leech25024982009-08-25 13:59:35 -0700796 fcoe->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700797 return -ENOMEM;
798 }
799 }
800
801 /*
802 * Exclude offload EM xid range from next EM xid range.
803 */
Robert Love1875f272009-11-03 11:47:50 -0800804 min_xid += lport->lro_xid + 1;
Vasu Devd7179682009-07-29 17:05:21 -0700805
806skip_oem:
Robert Love1875f272009-11-03 11:47:50 -0800807 if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, min_xid, max_xid, NULL)) {
Vasu Devd7179682009-07-29 17:05:21 -0700808 printk(KERN_ERR "fcoe_em_config: failed to "
Chris Leech25024982009-08-25 13:59:35 -0700809 "allocate em on interface %s\n", fcoe->netdev->name);
Vasu Dev7f349142009-03-27 09:06:31 -0700810 return -ENOMEM;
Vasu Devd7179682009-07-29 17:05:21 -0700811 }
Vasu Dev7f349142009-03-27 09:06:31 -0700812
813 return 0;
814}
815
816/**
Robert Love1875f272009-11-03 11:47:50 -0800817 * fcoe_if_destroy() - Tear down a SW FCoE instance
818 * @lport: The local port to be destroyed
Vasu Dev34ce27b2010-05-07 15:18:46 -0700819 *
820 * Locking: must be called with the RTNL mutex held and RTNL mutex
821 * needed to be dropped by this function since not dropping RTNL
822 * would cause circular locking warning on synchronous fip worker
823 * cancelling thru fcoe_interface_put invoked by this function.
824 *
Vasu Dev7f349142009-03-27 09:06:31 -0700825 */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700826static void fcoe_if_destroy(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700827{
Chris Leech014f5c32009-08-25 13:59:30 -0700828 struct fcoe_port *port = lport_priv(lport);
829 struct fcoe_interface *fcoe = port->fcoe;
Chris Leech25024982009-08-25 13:59:35 -0700830 struct net_device *netdev = fcoe->netdev;
Vasu Dev7f349142009-03-27 09:06:31 -0700831
Robert Loved5488eb2009-06-10 15:30:59 -0700832 FCOE_NETDEV_DBG(netdev, "Destroying interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700833
Vasu Dev7f349142009-03-27 09:06:31 -0700834 /* Logout of the fabric */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700835 fc_fabric_logoff(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700836
Vasu Dev7f349142009-03-27 09:06:31 -0700837 /* Cleanup the fc_lport */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700838 fc_lport_destroy(lport);
839 fc_fcp_destroy(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700840
Chris Leech54b649f2009-08-25 14:00:07 -0700841 /* Stop the transmit retry timer */
842 del_timer_sync(&port->timer);
843
844 /* Free existing transmit skbs */
845 fcoe_clean_pending_queue(lport);
846
Chris Leech11b56182009-11-03 11:46:29 -0800847 if (!is_zero_ether_addr(port->data_src_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000848 dev_uc_del(netdev, port->data_src_addr);
Chris Leech11b56182009-11-03 11:46:29 -0800849 rtnl_unlock();
850
Chris Leech54b649f2009-08-25 14:00:07 -0700851 /* receives may not be stopped until after this */
852 fcoe_interface_put(fcoe);
853
854 /* Free queued packets for the per-CPU receive threads */
855 fcoe_percpu_clean(lport);
856
Vasu Dev7f349142009-03-27 09:06:31 -0700857 /* Detach from the scsi-ml */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700858 fc_remove_host(lport->host);
859 scsi_remove_host(lport->host);
Vasu Dev7f349142009-03-27 09:06:31 -0700860
861 /* There are no more rports or I/O, free the EM */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700862 fc_exch_mgr_free(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700863
Vasu Dev7f349142009-03-27 09:06:31 -0700864 /* Free memory used by statistical counters */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700865 fc_lport_free_stats(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700866
Chris Leech2e70e242009-08-25 14:00:23 -0700867 /* Release the Scsi_Host */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700868 scsi_host_put(lport->host);
Vasu Dev15af9742010-05-07 15:19:03 -0700869 module_put(THIS_MODULE);
Vasu Dev7f349142009-03-27 09:06:31 -0700870}
871
Robert Love1875f272009-11-03 11:47:50 -0800872/**
873 * fcoe_ddp_setup() - Call a LLD's ddp_setup through the net device
874 * @lport: The local port to setup DDP for
875 * @xid: The exchange ID for this DDP transfer
876 * @sgl: The scatterlist describing this transfer
877 * @sgc: The number of sg items
Vasu Dev7f349142009-03-27 09:06:31 -0700878 *
Robert Love1875f272009-11-03 11:47:50 -0800879 * Returns: 0 if the DDP context was not configured
Vasu Dev7f349142009-03-27 09:06:31 -0700880 */
Robert Love1875f272009-11-03 11:47:50 -0800881static int fcoe_ddp_setup(struct fc_lport *lport, u16 xid,
882 struct scatterlist *sgl, unsigned int sgc)
Vasu Dev7f349142009-03-27 09:06:31 -0700883{
Robert Love1875f272009-11-03 11:47:50 -0800884 struct net_device *netdev = fcoe_netdev(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700885
Robert Love1875f272009-11-03 11:47:50 -0800886 if (netdev->netdev_ops->ndo_fcoe_ddp_setup)
887 return netdev->netdev_ops->ndo_fcoe_ddp_setup(netdev,
888 xid, sgl,
889 sgc);
Vasu Dev7f349142009-03-27 09:06:31 -0700890
891 return 0;
892}
893
Vasu Dev7f349142009-03-27 09:06:31 -0700894/**
Robert Love1875f272009-11-03 11:47:50 -0800895 * fcoe_ddp_done() - Call a LLD's ddp_done through the net device
896 * @lport: The local port to complete DDP on
897 * @xid: The exchange ID for this DDP transfer
Vasu Dev7f349142009-03-27 09:06:31 -0700898 *
Robert Love1875f272009-11-03 11:47:50 -0800899 * Returns: the length of data that have been completed by DDP
900 */
901static int fcoe_ddp_done(struct fc_lport *lport, u16 xid)
902{
903 struct net_device *netdev = fcoe_netdev(lport);
904
905 if (netdev->netdev_ops->ndo_fcoe_ddp_done)
906 return netdev->netdev_ops->ndo_fcoe_ddp_done(netdev, xid);
907 return 0;
908}
909
910/**
911 * fcoe_if_create() - Create a FCoE instance on an interface
912 * @fcoe: The FCoE interface to create a local port on
913 * @parent: The device pointer to be the parent in sysfs for the SCSI host
914 * @npiv: Indicates if the port is a vport or not
Vasu Dev7f349142009-03-27 09:06:31 -0700915 *
Robert Love1875f272009-11-03 11:47:50 -0800916 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
917 *
918 * Returns: The allocated fc_lport or an error pointer
Vasu Dev7f349142009-03-27 09:06:31 -0700919 */
Chris Leech030f4e02009-08-25 14:00:02 -0700920static struct fc_lport *fcoe_if_create(struct fcoe_interface *fcoe,
Chris Leech9a057532009-11-03 11:46:40 -0800921 struct device *parent, int npiv)
Vasu Dev7f349142009-03-27 09:06:31 -0700922{
Robert Love1875f272009-11-03 11:47:50 -0800923 struct net_device *netdev = fcoe->netdev;
Chris Leechaf7f85d2009-08-25 13:59:24 -0700924 struct fc_lport *lport = NULL;
Chris Leech014f5c32009-08-25 13:59:30 -0700925 struct fcoe_port *port;
Robert Love1875f272009-11-03 11:47:50 -0800926 int rc;
Chris Leech9a057532009-11-03 11:46:40 -0800927 /*
928 * parent is only a vport if npiv is 1,
929 * but we'll only use vport in that case so go ahead and set it
930 */
931 struct fc_vport *vport = dev_to_vport(parent);
Vasu Dev7f349142009-03-27 09:06:31 -0700932
Robert Loved5488eb2009-06-10 15:30:59 -0700933 FCOE_NETDEV_DBG(netdev, "Create Interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700934
Chris Leech9a057532009-11-03 11:46:40 -0800935 if (!npiv) {
936 lport = libfc_host_alloc(&fcoe_shost_template,
937 sizeof(struct fcoe_port));
938 } else {
939 lport = libfc_vport_create(vport,
940 sizeof(struct fcoe_port));
941 }
Chris Leech86221962009-11-03 11:46:08 -0800942 if (!lport) {
Chris Leech014f5c32009-08-25 13:59:30 -0700943 FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n");
944 rc = -ENOMEM;
Chris Leech030f4e02009-08-25 14:00:02 -0700945 goto out;
Chris Leech014f5c32009-08-25 13:59:30 -0700946 }
Chris Leech014f5c32009-08-25 13:59:30 -0700947 port = lport_priv(lport);
Chris Leech2e70e242009-08-25 14:00:23 -0700948 port->lport = lport;
Chris Leech014f5c32009-08-25 13:59:30 -0700949 port->fcoe = fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -0700950 INIT_WORK(&port->destroy_work, fcoe_destroy_work);
Vasu Dev7f349142009-03-27 09:06:31 -0700951
Robert Love1875f272009-11-03 11:47:50 -0800952 /* configure a fc_lport including the exchange manager */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700953 rc = fcoe_lport_config(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700954 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700955 FCOE_NETDEV_DBG(netdev, "Could not configure lport for the "
956 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700957 goto out_host_put;
958 }
959
Chris Leech9a057532009-11-03 11:46:40 -0800960 if (npiv) {
Chris Leech9f8f3aa2010-04-09 14:23:16 -0700961 FCOE_NETDEV_DBG(netdev, "Setting vport names, "
962 "%16.16llx %16.16llx\n",
Robert Love1875f272009-11-03 11:47:50 -0800963 vport->node_name, vport->port_name);
Chris Leech9a057532009-11-03 11:46:40 -0800964 fc_set_wwnn(lport, vport->node_name);
965 fc_set_wwpn(lport, vport->port_name);
966 }
967
Vasu Devab6b85c2009-05-17 12:33:08 +0000968 /* configure lport network properties */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700969 rc = fcoe_netdev_config(lport, netdev);
Vasu Devab6b85c2009-05-17 12:33:08 +0000970 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700971 FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the "
972 "interface\n");
Chris Leech54b649f2009-08-25 14:00:07 -0700973 goto out_lp_destroy;
Vasu Devab6b85c2009-05-17 12:33:08 +0000974 }
Joe Eykholt97c83892009-03-17 11:42:40 -0700975
Vasu Dev7f349142009-03-27 09:06:31 -0700976 /* configure lport scsi host properties */
Vasu Dev8ba00a42010-04-09 14:22:54 -0700977 rc = fcoe_shost_config(lport, parent);
Vasu Dev7f349142009-03-27 09:06:31 -0700978 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700979 FCOE_NETDEV_DBG(netdev, "Could not configure shost for the "
980 "interface\n");
Chris Leech54b649f2009-08-25 14:00:07 -0700981 goto out_lp_destroy;
Vasu Dev7f349142009-03-27 09:06:31 -0700982 }
983
Vasu Dev7f349142009-03-27 09:06:31 -0700984 /* Initialize the library */
Joe Eykholte10f8c62010-07-20 15:20:30 -0700985 rc = fcoe_libfc_config(lport, &fcoe->ctlr, &fcoe_libfc_fcn_templ, 1);
Vasu Dev7f349142009-03-27 09:06:31 -0700986 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700987 FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the "
988 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700989 goto out_lp_destroy;
990 }
991
Chris Leech9a057532009-11-03 11:46:40 -0800992 if (!npiv) {
993 /*
994 * fcoe_em_alloc() and fcoe_hostlist_add() both
995 * need to be atomic with respect to other changes to the
996 * hostlist since fcoe_em_alloc() looks for an existing EM
997 * instance on host list updated by fcoe_hostlist_add().
998 *
999 * This is currently handled through the fcoe_config_mutex
1000 * begin held.
1001 */
Chris Leechc863df32009-08-25 14:00:18 -07001002
Chris Leech9a057532009-11-03 11:46:40 -08001003 /* lport exch manager allocation */
1004 rc = fcoe_em_config(lport);
1005 if (rc) {
1006 FCOE_NETDEV_DBG(netdev, "Could not configure the EM "
Robert Love1875f272009-11-03 11:47:50 -08001007 "for the interface\n");
Chris Leech9a057532009-11-03 11:46:40 -08001008 goto out_lp_destroy;
1009 }
Vasu Dev96316092009-07-29 17:05:00 -07001010 }
1011
Chris Leech030f4e02009-08-25 14:00:02 -07001012 fcoe_interface_get(fcoe);
Chris Leechaf7f85d2009-08-25 13:59:24 -07001013 return lport;
Vasu Dev7f349142009-03-27 09:06:31 -07001014
1015out_lp_destroy:
Chris Leechaf7f85d2009-08-25 13:59:24 -07001016 fc_exch_mgr_free(lport);
Vasu Dev7f349142009-03-27 09:06:31 -07001017out_host_put:
Chris Leechaf7f85d2009-08-25 13:59:24 -07001018 scsi_host_put(lport->host);
1019out:
1020 return ERR_PTR(rc);
Vasu Dev7f349142009-03-27 09:06:31 -07001021}
1022
1023/**
Robert Love1875f272009-11-03 11:47:50 -08001024 * fcoe_if_init() - Initialization routine for fcoe.ko
Vasu Dev7f349142009-03-27 09:06:31 -07001025 *
Robert Love1875f272009-11-03 11:47:50 -08001026 * Attaches the SW FCoE transport to the FC transport
1027 *
1028 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -07001029 */
1030static int __init fcoe_if_init(void)
1031{
1032 /* attach to scsi transport */
Chris Leeche9084bb2009-11-03 11:46:34 -08001033 fcoe_transport_template = fc_attach_transport(&fcoe_transport_function);
1034 fcoe_vport_transport_template =
1035 fc_attach_transport(&fcoe_vport_transport_function);
Vasu Dev7f349142009-03-27 09:06:31 -07001036
Chris Leeche9084bb2009-11-03 11:46:34 -08001037 if (!fcoe_transport_template) {
Robert Loved5488eb2009-06-10 15:30:59 -07001038 printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n");
Vasu Dev7f349142009-03-27 09:06:31 -07001039 return -ENODEV;
1040 }
1041
1042 return 0;
1043}
1044
1045/**
Robert Love1875f272009-11-03 11:47:50 -08001046 * fcoe_if_exit() - Tear down fcoe.ko
Vasu Dev7f349142009-03-27 09:06:31 -07001047 *
Robert Love1875f272009-11-03 11:47:50 -08001048 * Detaches the SW FCoE transport from the FC transport
1049 *
1050 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -07001051 */
1052int __exit fcoe_if_exit(void)
1053{
Chris Leeche9084bb2009-11-03 11:46:34 -08001054 fc_release_transport(fcoe_transport_template);
1055 fc_release_transport(fcoe_vport_transport_template);
1056 fcoe_transport_template = NULL;
1057 fcoe_vport_transport_template = NULL;
Vasu Dev7f349142009-03-27 09:06:31 -07001058 return 0;
1059}
1060
Robert Love85b4aa42008-12-09 15:10:24 -08001061/**
Robert Love1875f272009-11-03 11:47:50 -08001062 * fcoe_percpu_thread_create() - Create a receive thread for an online CPU
1063 * @cpu: The CPU index of the CPU to create a receive thread for
Robert Love8976f422009-03-17 11:41:46 -07001064 */
1065static void fcoe_percpu_thread_create(unsigned int cpu)
1066{
1067 struct fcoe_percpu_s *p;
1068 struct task_struct *thread;
1069
1070 p = &per_cpu(fcoe_percpu, cpu);
1071
1072 thread = kthread_create(fcoe_percpu_receive_thread,
1073 (void *)p, "fcoethread/%d", cpu);
1074
Joe Eykholte7a51992009-08-25 14:04:08 -07001075 if (likely(!IS_ERR(thread))) {
Robert Love8976f422009-03-17 11:41:46 -07001076 kthread_bind(thread, cpu);
1077 wake_up_process(thread);
1078
1079 spin_lock_bh(&p->fcoe_rx_list.lock);
1080 p->thread = thread;
1081 spin_unlock_bh(&p->fcoe_rx_list.lock);
1082 }
1083}
1084
1085/**
Robert Love1875f272009-11-03 11:47:50 -08001086 * fcoe_percpu_thread_destroy() - Remove the receive thread of a CPU
1087 * @cpu: The CPU index of the CPU whose receive thread is to be destroyed
Robert Love8976f422009-03-17 11:41:46 -07001088 *
1089 * Destroys a per-CPU Rx thread. Any pending skbs are moved to the
1090 * current CPU's Rx thread. If the thread being destroyed is bound to
1091 * the CPU processing this context the skbs will be freed.
1092 */
1093static void fcoe_percpu_thread_destroy(unsigned int cpu)
1094{
1095 struct fcoe_percpu_s *p;
1096 struct task_struct *thread;
1097 struct page *crc_eof;
1098 struct sk_buff *skb;
1099#ifdef CONFIG_SMP
1100 struct fcoe_percpu_s *p0;
Joe Eykholtf018b732010-03-12 16:08:55 -08001101 unsigned targ_cpu = get_cpu();
Robert Love8976f422009-03-17 11:41:46 -07001102#endif /* CONFIG_SMP */
1103
Robert Loved5488eb2009-06-10 15:30:59 -07001104 FCOE_DBG("Destroying receive thread for CPU %d\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001105
1106 /* Prevent any new skbs from being queued for this CPU. */
1107 p = &per_cpu(fcoe_percpu, cpu);
1108 spin_lock_bh(&p->fcoe_rx_list.lock);
1109 thread = p->thread;
1110 p->thread = NULL;
1111 crc_eof = p->crc_eof_page;
1112 p->crc_eof_page = NULL;
1113 p->crc_eof_offset = 0;
1114 spin_unlock_bh(&p->fcoe_rx_list.lock);
1115
1116#ifdef CONFIG_SMP
1117 /*
1118 * Don't bother moving the skb's if this context is running
1119 * on the same CPU that is having its thread destroyed. This
1120 * can easily happen when the module is removed.
1121 */
1122 if (cpu != targ_cpu) {
1123 p0 = &per_cpu(fcoe_percpu, targ_cpu);
1124 spin_lock_bh(&p0->fcoe_rx_list.lock);
1125 if (p0->thread) {
Robert Loved5488eb2009-06-10 15:30:59 -07001126 FCOE_DBG("Moving frames from CPU %d to CPU %d\n",
1127 cpu, targ_cpu);
Robert Love8976f422009-03-17 11:41:46 -07001128
1129 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1130 __skb_queue_tail(&p0->fcoe_rx_list, skb);
1131 spin_unlock_bh(&p0->fcoe_rx_list.lock);
1132 } else {
1133 /*
1134 * The targeted CPU is not initialized and cannot accept
Robert Love1875f272009-11-03 11:47:50 -08001135 * new skbs. Unlock the targeted CPU and drop the skbs
Robert Love8976f422009-03-17 11:41:46 -07001136 * on the CPU that is going offline.
1137 */
1138 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1139 kfree_skb(skb);
1140 spin_unlock_bh(&p0->fcoe_rx_list.lock);
1141 }
1142 } else {
1143 /*
1144 * This scenario occurs when the module is being removed
1145 * and all threads are being destroyed. skbs will continue
1146 * to be shifted from the CPU thread that is being removed
1147 * to the CPU thread associated with the CPU that is processing
1148 * the module removal. Once there is only one CPU Rx thread it
1149 * will reach this case and we will drop all skbs and later
1150 * stop the thread.
1151 */
1152 spin_lock_bh(&p->fcoe_rx_list.lock);
1153 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1154 kfree_skb(skb);
1155 spin_unlock_bh(&p->fcoe_rx_list.lock);
1156 }
Joe Eykholtf018b732010-03-12 16:08:55 -08001157 put_cpu();
Robert Love8976f422009-03-17 11:41:46 -07001158#else
1159 /*
Chris Leechdd3fd722009-04-21 16:27:36 -07001160 * This a non-SMP scenario where the singular Rx thread is
Robert Love8976f422009-03-17 11:41:46 -07001161 * being removed. Free all skbs and stop the thread.
1162 */
1163 spin_lock_bh(&p->fcoe_rx_list.lock);
1164 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1165 kfree_skb(skb);
1166 spin_unlock_bh(&p->fcoe_rx_list.lock);
1167#endif
1168
1169 if (thread)
1170 kthread_stop(thread);
1171
1172 if (crc_eof)
1173 put_page(crc_eof);
1174}
1175
1176/**
Robert Love1875f272009-11-03 11:47:50 -08001177 * fcoe_cpu_callback() - Handler for CPU hotplug events
1178 * @nfb: The callback data block
1179 * @action: The event triggering the callback
1180 * @hcpu: The index of the CPU that the event is for
Robert Love8976f422009-03-17 11:41:46 -07001181 *
Robert Love1875f272009-11-03 11:47:50 -08001182 * This creates or destroys per-CPU data for fcoe
Robert Love8976f422009-03-17 11:41:46 -07001183 *
1184 * Returns NOTIFY_OK always.
1185 */
1186static int fcoe_cpu_callback(struct notifier_block *nfb,
1187 unsigned long action, void *hcpu)
1188{
1189 unsigned cpu = (unsigned long)hcpu;
1190
1191 switch (action) {
1192 case CPU_ONLINE:
1193 case CPU_ONLINE_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -07001194 FCOE_DBG("CPU %x online: Create Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001195 fcoe_percpu_thread_create(cpu);
1196 break;
1197 case CPU_DEAD:
1198 case CPU_DEAD_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -07001199 FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001200 fcoe_percpu_thread_destroy(cpu);
1201 break;
1202 default:
1203 break;
1204 }
1205 return NOTIFY_OK;
1206}
1207
Robert Love8976f422009-03-17 11:41:46 -07001208/**
Robert Love1875f272009-11-03 11:47:50 -08001209 * fcoe_rcv() - Receive packets from a net device
1210 * @skb: The received packet
1211 * @netdev: The net device that the packet was received on
1212 * @ptype: The packet type context
1213 * @olddev: The last device net device
Robert Love85b4aa42008-12-09 15:10:24 -08001214 *
Robert Love1875f272009-11-03 11:47:50 -08001215 * This routine is called by NET_RX_SOFTIRQ. It receives a packet, builds a
1216 * FC frame and passes the frame to libfc.
Robert Love85b4aa42008-12-09 15:10:24 -08001217 *
1218 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001219 */
Robert Love1875f272009-11-03 11:47:50 -08001220int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev,
Robert Love85b4aa42008-12-09 15:10:24 -08001221 struct packet_type *ptype, struct net_device *olddev)
1222{
Robert Love1875f272009-11-03 11:47:50 -08001223 struct fc_lport *lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001224 struct fcoe_rcv_info *fr;
Chris Leech259ad852009-08-25 13:59:41 -07001225 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001226 struct fc_frame_header *fh;
Robert Love85b4aa42008-12-09 15:10:24 -08001227 struct fcoe_percpu_s *fps;
Vasu Dev519e5132010-07-20 15:19:32 -07001228 struct fcoe_port *port;
1229 struct ethhdr *eh;
Vasu Devb2f00912009-08-25 13:58:53 -07001230 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08001231
Chris Leech259ad852009-08-25 13:59:41 -07001232 fcoe = container_of(ptype, struct fcoe_interface, fcoe_packet_type);
Robert Love1875f272009-11-03 11:47:50 -08001233 lport = fcoe->ctlr.lp;
1234 if (unlikely(!lport)) {
1235 FCOE_NETDEV_DBG(netdev, "Cannot find hba structure");
Robert Love85b4aa42008-12-09 15:10:24 -08001236 goto err2;
1237 }
Robert Love1875f272009-11-03 11:47:50 -08001238 if (!lport->link_up)
Joe Eykholt97c83892009-03-17 11:42:40 -07001239 goto err2;
Robert Love85b4aa42008-12-09 15:10:24 -08001240
Robert Love1875f272009-11-03 11:47:50 -08001241 FCOE_NETDEV_DBG(netdev, "skb_info: len:%d data_len:%d head:%p "
Robert Loved5488eb2009-06-10 15:30:59 -07001242 "data:%p tail:%p end:%p sum:%d dev:%s",
1243 skb->len, skb->data_len, skb->head, skb->data,
1244 skb_tail_pointer(skb), skb_end_pointer(skb),
1245 skb->csum, skb->dev ? skb->dev->name : "<NULL>");
Robert Love85b4aa42008-12-09 15:10:24 -08001246
Vasu Dev519e5132010-07-20 15:19:32 -07001247 /* check for mac addresses */
1248 eh = eth_hdr(skb);
1249 port = lport_priv(lport);
1250 if (compare_ether_addr(eh->h_dest, port->data_src_addr) &&
1251 compare_ether_addr(eh->h_dest, fcoe->ctlr.ctl_src_addr) &&
1252 compare_ether_addr(eh->h_dest, (u8[6])FC_FCOE_FLOGI_MAC)) {
1253 FCOE_NETDEV_DBG(netdev, "wrong destination mac address:%pM\n",
1254 eh->h_dest);
1255 goto err;
1256 }
1257
1258 if (is_fip_mode(&fcoe->ctlr) &&
1259 compare_ether_addr(eh->h_source, fcoe->ctlr.dest_addr)) {
1260 FCOE_NETDEV_DBG(netdev, "wrong source mac address:%pM\n",
1261 eh->h_source);
Robert Love85b4aa42008-12-09 15:10:24 -08001262 goto err;
1263 }
1264
1265 /*
1266 * Check for minimum frame length, and make sure required FCoE
1267 * and FC headers are pulled into the linear data area.
1268 */
1269 if (unlikely((skb->len < FCOE_MIN_FRAME) ||
Robert Love1875f272009-11-03 11:47:50 -08001270 !pskb_may_pull(skb, FCOE_HEADER_LEN)))
Robert Love85b4aa42008-12-09 15:10:24 -08001271 goto err;
1272
1273 skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
1274 fh = (struct fc_frame_header *) skb_transport_header(skb);
1275
Robert Love85b4aa42008-12-09 15:10:24 -08001276 fr = fcoe_dev_from_skb(skb);
Robert Love1875f272009-11-03 11:47:50 -08001277 fr->fr_dev = lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001278 fr->ptype = ptype;
Robert Love5e5e92d2009-03-17 11:41:35 -07001279
Robert Love85b4aa42008-12-09 15:10:24 -08001280 /*
Vasu Devb2f00912009-08-25 13:58:53 -07001281 * In case the incoming frame's exchange is originated from
1282 * the initiator, then received frame's exchange id is ANDed
1283 * with fc_cpu_mask bits to get the same cpu on which exchange
1284 * was originated, otherwise just use the current cpu.
Robert Love85b4aa42008-12-09 15:10:24 -08001285 */
Vasu Devb2f00912009-08-25 13:58:53 -07001286 if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
1287 cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
1288 else
1289 cpu = smp_processor_id();
Robert Love5e5e92d2009-03-17 11:41:35 -07001290
Robert Love8976f422009-03-17 11:41:46 -07001291 fps = &per_cpu(fcoe_percpu, cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001292 spin_lock_bh(&fps->fcoe_rx_list.lock);
Robert Love8976f422009-03-17 11:41:46 -07001293 if (unlikely(!fps->thread)) {
1294 /*
1295 * The targeted CPU is not ready, let's target
1296 * the first CPU now. For non-SMP systems this
1297 * will check the same CPU twice.
1298 */
Robert Love1875f272009-11-03 11:47:50 -08001299 FCOE_NETDEV_DBG(netdev, "CPU is online, but no receive thread "
Robert Loved5488eb2009-06-10 15:30:59 -07001300 "ready for incoming skb- using first online "
1301 "CPU.\n");
Robert Love8976f422009-03-17 11:41:46 -07001302
1303 spin_unlock_bh(&fps->fcoe_rx_list.lock);
Rusty Russell69571772009-12-17 11:43:14 -06001304 cpu = cpumask_first(cpu_online_mask);
Robert Love8976f422009-03-17 11:41:46 -07001305 fps = &per_cpu(fcoe_percpu, cpu);
1306 spin_lock_bh(&fps->fcoe_rx_list.lock);
1307 if (!fps->thread) {
1308 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1309 goto err;
1310 }
1311 }
1312
1313 /*
1314 * We now have a valid CPU that we're targeting for
1315 * this skb. We also have this receive thread locked,
1316 * so we're free to queue skbs into it's queue.
1317 */
Robert Love85b4aa42008-12-09 15:10:24 -08001318
Chris Leech859b7b62009-11-20 14:54:47 -08001319 /* If this is a SCSI-FCP frame, and this is already executing on the
1320 * correct CPU, and the queue for this CPU is empty, then go ahead
1321 * and process the frame directly in the softirq context.
1322 * This lets us process completions without context switching from the
1323 * NET_RX softirq, to our receive processing thread, and then back to
1324 * BLOCK softirq context.
1325 */
1326 if (fh->fh_type == FC_TYPE_FCP &&
1327 cpu == smp_processor_id() &&
1328 skb_queue_empty(&fps->fcoe_rx_list)) {
1329 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1330 fcoe_recv_frame(skb);
1331 } else {
1332 __skb_queue_tail(&fps->fcoe_rx_list, skb);
1333 if (fps->fcoe_rx_list.qlen == 1)
1334 wake_up_process(fps->thread);
1335 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1336 }
Robert Love85b4aa42008-12-09 15:10:24 -08001337
1338 return 0;
1339err:
Joe Eykholtf018b732010-03-12 16:08:55 -08001340 per_cpu_ptr(lport->dev_stats, get_cpu())->ErrorFrames++;
1341 put_cpu();
Robert Love85b4aa42008-12-09 15:10:24 -08001342err2:
1343 kfree_skb(skb);
1344 return -1;
1345}
Robert Love85b4aa42008-12-09 15:10:24 -08001346
1347/**
Robert Love1875f272009-11-03 11:47:50 -08001348 * fcoe_start_io() - Start FCoE I/O
1349 * @skb: The packet to be transmitted
1350 *
1351 * This routine is called from the net device to start transmitting
1352 * FCoE packets.
Robert Love85b4aa42008-12-09 15:10:24 -08001353 *
1354 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001355 */
Robert Love85b4aa42008-12-09 15:10:24 -08001356static inline int fcoe_start_io(struct sk_buff *skb)
1357{
Chris Leech18fa11e2009-11-03 11:50:05 -08001358 struct sk_buff *nskb;
Robert Love85b4aa42008-12-09 15:10:24 -08001359 int rc;
1360
Chris Leech18fa11e2009-11-03 11:50:05 -08001361 nskb = skb_clone(skb, GFP_ATOMIC);
1362 rc = dev_queue_xmit(nskb);
Robert Love85b4aa42008-12-09 15:10:24 -08001363 if (rc != 0)
1364 return rc;
1365 kfree_skb(skb);
1366 return 0;
1367}
1368
1369/**
Robert Love1875f272009-11-03 11:47:50 -08001370 * fcoe_get_paged_crc_eof() - Allocate a page to be used for the trailer CRC
1371 * @skb: The packet to be transmitted
1372 * @tlen: The total length of the trailer
1373 *
1374 * This routine allocates a page for frame trailers. The page is re-used if
1375 * there is enough room left on it for the current trailer. If there isn't
1376 * enough buffer left a new page is allocated for the trailer. Reference to
1377 * the page from this function as well as the skbs using the page fragments
1378 * ensure that the page is freed at the appropriate time.
Robert Love85b4aa42008-12-09 15:10:24 -08001379 *
1380 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001381 */
Robert Love85b4aa42008-12-09 15:10:24 -08001382static int fcoe_get_paged_crc_eof(struct sk_buff *skb, int tlen)
1383{
1384 struct fcoe_percpu_s *fps;
1385 struct page *page;
Robert Love85b4aa42008-12-09 15:10:24 -08001386
Robert Love5e5e92d2009-03-17 11:41:35 -07001387 fps = &get_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001388 page = fps->crc_eof_page;
1389 if (!page) {
1390 page = alloc_page(GFP_ATOMIC);
1391 if (!page) {
Robert Love5e5e92d2009-03-17 11:41:35 -07001392 put_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001393 return -ENOMEM;
1394 }
1395 fps->crc_eof_page = page;
Robert Love8976f422009-03-17 11:41:46 -07001396 fps->crc_eof_offset = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001397 }
1398
1399 get_page(page);
1400 skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, page,
1401 fps->crc_eof_offset, tlen);
1402 skb->len += tlen;
1403 skb->data_len += tlen;
1404 skb->truesize += tlen;
1405 fps->crc_eof_offset += sizeof(struct fcoe_crc_eof);
1406
1407 if (fps->crc_eof_offset >= PAGE_SIZE) {
1408 fps->crc_eof_page = NULL;
1409 fps->crc_eof_offset = 0;
1410 put_page(page);
1411 }
Robert Love5e5e92d2009-03-17 11:41:35 -07001412 put_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001413 return 0;
1414}
1415
1416/**
Robert Love1875f272009-11-03 11:47:50 -08001417 * fcoe_fc_crc() - Calculates the CRC for a given frame
1418 * @fp: The frame to be checksumed
Robert Love85b4aa42008-12-09 15:10:24 -08001419 *
Robert Love1875f272009-11-03 11:47:50 -08001420 * This uses crc32() routine to calculate the CRC for a frame
1421 *
1422 * Return: The 32 bit CRC value
Robert Love34f42a02009-02-27 10:55:45 -08001423 */
Robert Love85b4aa42008-12-09 15:10:24 -08001424u32 fcoe_fc_crc(struct fc_frame *fp)
1425{
1426 struct sk_buff *skb = fp_skb(fp);
1427 struct skb_frag_struct *frag;
1428 unsigned char *data;
1429 unsigned long off, len, clen;
1430 u32 crc;
1431 unsigned i;
1432
1433 crc = crc32(~0, skb->data, skb_headlen(skb));
1434
1435 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1436 frag = &skb_shinfo(skb)->frags[i];
1437 off = frag->page_offset;
1438 len = frag->size;
1439 while (len > 0) {
1440 clen = min(len, PAGE_SIZE - (off & ~PAGE_MASK));
1441 data = kmap_atomic(frag->page + (off >> PAGE_SHIFT),
1442 KM_SKB_DATA_SOFTIRQ);
1443 crc = crc32(crc, data + (off & ~PAGE_MASK), clen);
1444 kunmap_atomic(data, KM_SKB_DATA_SOFTIRQ);
1445 off += clen;
1446 len -= clen;
1447 }
1448 }
1449 return crc;
1450}
Robert Love85b4aa42008-12-09 15:10:24 -08001451
1452/**
Robert Love1875f272009-11-03 11:47:50 -08001453 * fcoe_xmit() - Transmit a FCoE frame
1454 * @lport: The local port that the frame is to be transmitted for
1455 * @fp: The frame to be transmitted
Robert Love85b4aa42008-12-09 15:10:24 -08001456 *
Robert Love1875f272009-11-03 11:47:50 -08001457 * Return: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001458 */
Robert Love1875f272009-11-03 11:47:50 -08001459int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp)
Robert Love85b4aa42008-12-09 15:10:24 -08001460{
Vasu Dev4bb6b512009-05-06 10:52:34 -07001461 int wlen;
Robert Love85b4aa42008-12-09 15:10:24 -08001462 u32 crc;
1463 struct ethhdr *eh;
1464 struct fcoe_crc_eof *cp;
1465 struct sk_buff *skb;
1466 struct fcoe_dev_stats *stats;
1467 struct fc_frame_header *fh;
1468 unsigned int hlen; /* header length implies the version */
1469 unsigned int tlen; /* trailer length */
1470 unsigned int elen; /* eth header, may include vlan */
Robert Love1875f272009-11-03 11:47:50 -08001471 struct fcoe_port *port = lport_priv(lport);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001472 struct fcoe_interface *fcoe = port->fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001473 u8 sof, eof;
1474 struct fcoe_hdr *hp;
1475
1476 WARN_ON((fr_len(fp) % sizeof(u32)) != 0);
1477
Robert Love85b4aa42008-12-09 15:10:24 -08001478 fh = fc_frame_header_get(fp);
Joe Eykholt97c83892009-03-17 11:42:40 -07001479 skb = fp_skb(fp);
1480 wlen = skb->len / FCOE_WORD_TO_BYTE;
1481
Robert Love1875f272009-11-03 11:47:50 -08001482 if (!lport->link_up) {
Dan Carpenter3caf02e2009-04-21 16:27:25 -07001483 kfree_skb(skb);
Joe Eykholt97c83892009-03-17 11:42:40 -07001484 return 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001485 }
1486
Joe Eykholt9860eeb2010-03-12 16:07:52 -08001487 if (unlikely(fh->fh_type == FC_TYPE_ELS) &&
Robert Love1875f272009-11-03 11:47:50 -08001488 fcoe_ctlr_els_send(&fcoe->ctlr, lport, skb))
Joe Eykholt97c83892009-03-17 11:42:40 -07001489 return 0;
1490
Robert Love85b4aa42008-12-09 15:10:24 -08001491 sof = fr_sof(fp);
1492 eof = fr_eof(fp);
1493
Vasu Dev4e57e1c2009-05-06 10:52:46 -07001494 elen = sizeof(struct ethhdr);
Robert Love85b4aa42008-12-09 15:10:24 -08001495 hlen = sizeof(struct fcoe_hdr);
1496 tlen = sizeof(struct fcoe_crc_eof);
1497 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
1498
1499 /* crc offload */
Robert Love1875f272009-11-03 11:47:50 -08001500 if (likely(lport->crc_offload)) {
Yi Zou39ca9a02009-02-27 14:07:15 -08001501 skb->ip_summed = CHECKSUM_PARTIAL;
Robert Love85b4aa42008-12-09 15:10:24 -08001502 skb->csum_start = skb_headroom(skb);
1503 skb->csum_offset = skb->len;
1504 crc = 0;
1505 } else {
1506 skb->ip_summed = CHECKSUM_NONE;
1507 crc = fcoe_fc_crc(fp);
1508 }
1509
Chris Leech014f5c32009-08-25 13:59:30 -07001510 /* copy port crc and eof to the skb buff */
Robert Love85b4aa42008-12-09 15:10:24 -08001511 if (skb_is_nonlinear(skb)) {
1512 skb_frag_t *frag;
1513 if (fcoe_get_paged_crc_eof(skb, tlen)) {
Roel Kluine9041582009-02-27 10:56:22 -08001514 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001515 return -ENOMEM;
1516 }
1517 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
1518 cp = kmap_atomic(frag->page, KM_SKB_DATA_SOFTIRQ)
1519 + frag->page_offset;
1520 } else {
1521 cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
1522 }
1523
1524 memset(cp, 0, sizeof(*cp));
1525 cp->fcoe_eof = eof;
1526 cp->fcoe_crc32 = cpu_to_le32(~crc);
1527
1528 if (skb_is_nonlinear(skb)) {
1529 kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ);
1530 cp = NULL;
1531 }
1532
Chris Leech014f5c32009-08-25 13:59:30 -07001533 /* adjust skb network/transport offsets to match mac/fcoe/port */
Robert Love85b4aa42008-12-09 15:10:24 -08001534 skb_push(skb, elen + hlen);
1535 skb_reset_mac_header(skb);
1536 skb_reset_network_header(skb);
1537 skb->mac_len = elen;
Yi Zou211c7382009-02-27 14:06:37 -08001538 skb->protocol = htons(ETH_P_FCOE);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001539 skb->dev = fcoe->netdev;
Robert Love85b4aa42008-12-09 15:10:24 -08001540
1541 /* fill up mac and fcoe headers */
1542 eh = eth_hdr(skb);
1543 eh->h_proto = htons(ETH_P_FCOE);
Joe Eykholtcd229e42010-07-20 15:20:40 -07001544 memcpy(eh->h_dest, fcoe->ctlr.dest_addr, ETH_ALEN);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001545 if (fcoe->ctlr.map_dest)
Joe Eykholtcd229e42010-07-20 15:20:40 -07001546 memcpy(eh->h_dest + 3, fh->fh_d_id, 3);
Robert Love85b4aa42008-12-09 15:10:24 -08001547
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001548 if (unlikely(fcoe->ctlr.flogi_oxid != FC_XID_UNKNOWN))
1549 memcpy(eh->h_source, fcoe->ctlr.ctl_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001550 else
Chris Leech11b56182009-11-03 11:46:29 -08001551 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001552
1553 hp = (struct fcoe_hdr *)(eh + 1);
1554 memset(hp, 0, sizeof(*hp));
1555 if (FC_FCOE_VER)
1556 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
1557 hp->fcoe_sof = sof;
1558
Yi Zou39ca9a02009-02-27 14:07:15 -08001559 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
Robert Love1875f272009-11-03 11:47:50 -08001560 if (lport->seq_offload && fr_max_payload(fp)) {
Yi Zou39ca9a02009-02-27 14:07:15 -08001561 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
1562 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
1563 } else {
1564 skb_shinfo(skb)->gso_type = 0;
1565 skb_shinfo(skb)->gso_size = 0;
1566 }
Robert Love85b4aa42008-12-09 15:10:24 -08001567 /* update tx stats: regardless if LLD fails */
Joe Eykholtf018b732010-03-12 16:08:55 -08001568 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
Robert Love582b45b2009-03-31 15:51:50 -07001569 stats->TxFrames++;
1570 stats->TxWords += wlen;
Joe Eykholtf018b732010-03-12 16:08:55 -08001571 put_cpu();
Robert Love85b4aa42008-12-09 15:10:24 -08001572
1573 /* send down to lld */
Robert Love1875f272009-11-03 11:47:50 -08001574 fr_dev(fp) = lport;
Chris Leech014f5c32009-08-25 13:59:30 -07001575 if (port->fcoe_pending_queue.qlen)
Robert Love1875f272009-11-03 11:47:50 -08001576 fcoe_check_wait_queue(lport, skb);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001577 else if (fcoe_start_io(skb))
Robert Love1875f272009-11-03 11:47:50 -08001578 fcoe_check_wait_queue(lport, skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001579
1580 return 0;
1581}
Robert Love85b4aa42008-12-09 15:10:24 -08001582
Robert Love34f42a02009-02-27 10:55:45 -08001583/**
Robert Love1875f272009-11-03 11:47:50 -08001584 * fcoe_percpu_flush_done() - Indicate per-CPU queue flush completion
1585 * @skb: The completed skb (argument required by destructor)
Joe Eykholte7a51992009-08-25 14:04:08 -07001586 */
1587static void fcoe_percpu_flush_done(struct sk_buff *skb)
1588{
1589 complete(&fcoe_flush_completion);
1590}
1591
1592/**
Chris Leech859b7b62009-11-20 14:54:47 -08001593 * fcoe_recv_frame() - process a single received frame
1594 * @skb: frame to process
1595 */
1596static void fcoe_recv_frame(struct sk_buff *skb)
1597{
1598 u32 fr_len;
1599 struct fc_lport *lport;
1600 struct fcoe_rcv_info *fr;
1601 struct fcoe_dev_stats *stats;
1602 struct fc_frame_header *fh;
1603 struct fcoe_crc_eof crc_eof;
1604 struct fc_frame *fp;
Chris Leech859b7b62009-11-20 14:54:47 -08001605 struct fcoe_port *port;
1606 struct fcoe_hdr *hp;
1607
1608 fr = fcoe_dev_from_skb(skb);
1609 lport = fr->fr_dev;
1610 if (unlikely(!lport)) {
1611 if (skb->destructor != fcoe_percpu_flush_done)
1612 FCOE_NETDEV_DBG(skb->dev, "NULL lport in skb");
1613 kfree_skb(skb);
1614 return;
1615 }
1616
1617 FCOE_NETDEV_DBG(skb->dev, "skb_info: len:%d data_len:%d "
1618 "head:%p data:%p tail:%p end:%p sum:%d dev:%s",
1619 skb->len, skb->data_len,
1620 skb->head, skb->data, skb_tail_pointer(skb),
1621 skb_end_pointer(skb), skb->csum,
1622 skb->dev ? skb->dev->name : "<NULL>");
1623
Chris Leech859b7b62009-11-20 14:54:47 -08001624 port = lport_priv(lport);
1625 if (skb_is_nonlinear(skb))
1626 skb_linearize(skb); /* not ideal */
Chris Leech859b7b62009-11-20 14:54:47 -08001627
1628 /*
1629 * Frame length checks and setting up the header pointers
1630 * was done in fcoe_rcv already.
1631 */
1632 hp = (struct fcoe_hdr *) skb_network_header(skb);
1633 fh = (struct fc_frame_header *) skb_transport_header(skb);
1634
Joe Eykholtf018b732010-03-12 16:08:55 -08001635 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
Chris Leech859b7b62009-11-20 14:54:47 -08001636 if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) {
1637 if (stats->ErrorFrames < 5)
1638 printk(KERN_WARNING "fcoe: FCoE version "
1639 "mismatch: The frame has "
1640 "version %x, but the "
1641 "initiator supports version "
1642 "%x\n", FC_FCOE_DECAPS_VER(hp),
1643 FC_FCOE_VER);
Joe Eykholtf018b732010-03-12 16:08:55 -08001644 goto drop;
Chris Leech859b7b62009-11-20 14:54:47 -08001645 }
1646
1647 skb_pull(skb, sizeof(struct fcoe_hdr));
1648 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
1649
1650 stats->RxFrames++;
1651 stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
1652
1653 fp = (struct fc_frame *)skb;
1654 fc_frame_init(fp);
1655 fr_dev(fp) = lport;
1656 fr_sof(fp) = hp->fcoe_sof;
1657
1658 /* Copy out the CRC and EOF trailer for access */
Joe Eykholtf018b732010-03-12 16:08:55 -08001659 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof)))
1660 goto drop;
Chris Leech859b7b62009-11-20 14:54:47 -08001661 fr_eof(fp) = crc_eof.fcoe_eof;
1662 fr_crc(fp) = crc_eof.fcoe_crc32;
Joe Eykholtf018b732010-03-12 16:08:55 -08001663 if (pskb_trim(skb, fr_len))
1664 goto drop;
Chris Leech859b7b62009-11-20 14:54:47 -08001665
1666 /*
1667 * We only check CRC if no offload is available and if it is
1668 * it's solicited data, in which case, the FCP layer would
1669 * check it during the copy.
1670 */
1671 if (lport->crc_offload &&
1672 skb->ip_summed == CHECKSUM_UNNECESSARY)
1673 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1674 else
1675 fr_flags(fp) |= FCPHF_CRC_UNCHECKED;
1676
1677 fh = fc_frame_header_get(fp);
Joe Eykholtf018b732010-03-12 16:08:55 -08001678 if ((fh->fh_r_ctl != FC_RCTL_DD_SOL_DATA ||
1679 fh->fh_type != FC_TYPE_FCP) &&
1680 (fr_flags(fp) & FCPHF_CRC_UNCHECKED)) {
Chris Leech859b7b62009-11-20 14:54:47 -08001681 if (le32_to_cpu(fr_crc(fp)) !=
1682 ~crc32(~0, skb->data, fr_len)) {
1683 if (stats->InvalidCRCCount < 5)
1684 printk(KERN_WARNING "fcoe: dropping "
1685 "frame with CRC error\n");
1686 stats->InvalidCRCCount++;
Joe Eykholtf018b732010-03-12 16:08:55 -08001687 goto drop;
Chris Leech859b7b62009-11-20 14:54:47 -08001688 }
1689 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1690 }
Joe Eykholtf018b732010-03-12 16:08:55 -08001691 put_cpu();
Chris Leech859b7b62009-11-20 14:54:47 -08001692 fc_exch_recv(lport, fp);
Joe Eykholtf018b732010-03-12 16:08:55 -08001693 return;
1694
1695drop:
1696 stats->ErrorFrames++;
1697 put_cpu();
1698 kfree_skb(skb);
Chris Leech859b7b62009-11-20 14:54:47 -08001699}
1700
1701/**
Robert Love1875f272009-11-03 11:47:50 -08001702 * fcoe_percpu_receive_thread() - The per-CPU packet receive thread
1703 * @arg: The per-CPU context
Robert Love85b4aa42008-12-09 15:10:24 -08001704 *
1705 * Return: 0 for success
Robert Love85b4aa42008-12-09 15:10:24 -08001706 */
1707int fcoe_percpu_receive_thread(void *arg)
1708{
1709 struct fcoe_percpu_s *p = arg;
Robert Love85b4aa42008-12-09 15:10:24 -08001710 struct sk_buff *skb;
Robert Love85b4aa42008-12-09 15:10:24 -08001711
Robert Love4469c192009-02-27 10:56:38 -08001712 set_user_nice(current, -20);
Robert Love85b4aa42008-12-09 15:10:24 -08001713
1714 while (!kthread_should_stop()) {
1715
1716 spin_lock_bh(&p->fcoe_rx_list.lock);
1717 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) == NULL) {
1718 set_current_state(TASK_INTERRUPTIBLE);
1719 spin_unlock_bh(&p->fcoe_rx_list.lock);
1720 schedule();
1721 set_current_state(TASK_RUNNING);
1722 if (kthread_should_stop())
1723 return 0;
1724 spin_lock_bh(&p->fcoe_rx_list.lock);
1725 }
1726 spin_unlock_bh(&p->fcoe_rx_list.lock);
Chris Leech859b7b62009-11-20 14:54:47 -08001727 fcoe_recv_frame(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001728 }
1729 return 0;
1730}
1731
1732/**
Robert Love1875f272009-11-03 11:47:50 -08001733 * fcoe_check_wait_queue() - Attempt to clear the transmit backlog
1734 * @lport: The local port whose backlog is to be cleared
Robert Love85b4aa42008-12-09 15:10:24 -08001735 *
Robert Love1875f272009-11-03 11:47:50 -08001736 * This empties the wait_queue, dequeues the head of the wait_queue queue
1737 * and calls fcoe_start_io() for each packet. If all skb have been
1738 * transmitted it returns the qlen. If an error occurs it restores
1739 * wait_queue (to try again later) and returns -1.
Robert Love85b4aa42008-12-09 15:10:24 -08001740 *
Robert Love1875f272009-11-03 11:47:50 -08001741 * The wait_queue is used when the skb transmit fails. The failed skb
1742 * will go in the wait_queue which will be emptied by the timer function or
Robert Love85b4aa42008-12-09 15:10:24 -08001743 * by the next skb transmit.
Robert Love34f42a02009-02-27 10:55:45 -08001744 */
Robert Love1875f272009-11-03 11:47:50 -08001745static void fcoe_check_wait_queue(struct fc_lport *lport, struct sk_buff *skb)
Robert Love85b4aa42008-12-09 15:10:24 -08001746{
Robert Love1875f272009-11-03 11:47:50 -08001747 struct fcoe_port *port = lport_priv(lport);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001748 int rc;
Robert Love85b4aa42008-12-09 15:10:24 -08001749
Chris Leech014f5c32009-08-25 13:59:30 -07001750 spin_lock_bh(&port->fcoe_pending_queue.lock);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001751
1752 if (skb)
Chris Leech014f5c32009-08-25 13:59:30 -07001753 __skb_queue_tail(&port->fcoe_pending_queue, skb);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001754
Chris Leech014f5c32009-08-25 13:59:30 -07001755 if (port->fcoe_pending_queue_active)
Vasu Devc826a312009-02-27 10:56:27 -08001756 goto out;
Chris Leech014f5c32009-08-25 13:59:30 -07001757 port->fcoe_pending_queue_active = 1;
Chris Leech55c8baf2009-02-27 10:56:32 -08001758
Chris Leech014f5c32009-08-25 13:59:30 -07001759 while (port->fcoe_pending_queue.qlen) {
Chris Leech55c8baf2009-02-27 10:56:32 -08001760 /* keep qlen > 0 until fcoe_start_io succeeds */
Chris Leech014f5c32009-08-25 13:59:30 -07001761 port->fcoe_pending_queue.qlen++;
1762 skb = __skb_dequeue(&port->fcoe_pending_queue);
Chris Leech55c8baf2009-02-27 10:56:32 -08001763
Chris Leech014f5c32009-08-25 13:59:30 -07001764 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Chris Leech55c8baf2009-02-27 10:56:32 -08001765 rc = fcoe_start_io(skb);
Chris Leech014f5c32009-08-25 13:59:30 -07001766 spin_lock_bh(&port->fcoe_pending_queue.lock);
Chris Leech55c8baf2009-02-27 10:56:32 -08001767
1768 if (rc) {
Chris Leech014f5c32009-08-25 13:59:30 -07001769 __skb_queue_head(&port->fcoe_pending_queue, skb);
Chris Leech55c8baf2009-02-27 10:56:32 -08001770 /* undo temporary increment above */
Chris Leech014f5c32009-08-25 13:59:30 -07001771 port->fcoe_pending_queue.qlen--;
Chris Leech55c8baf2009-02-27 10:56:32 -08001772 break;
Robert Love85b4aa42008-12-09 15:10:24 -08001773 }
Chris Leech55c8baf2009-02-27 10:56:32 -08001774 /* undo temporary increment above */
Chris Leech014f5c32009-08-25 13:59:30 -07001775 port->fcoe_pending_queue.qlen--;
Robert Love85b4aa42008-12-09 15:10:24 -08001776 }
Chris Leech55c8baf2009-02-27 10:56:32 -08001777
Chris Leech014f5c32009-08-25 13:59:30 -07001778 if (port->fcoe_pending_queue.qlen < FCOE_LOW_QUEUE_DEPTH)
Robert Love1875f272009-11-03 11:47:50 -08001779 lport->qfull = 0;
Chris Leech014f5c32009-08-25 13:59:30 -07001780 if (port->fcoe_pending_queue.qlen && !timer_pending(&port->timer))
1781 mod_timer(&port->timer, jiffies + 2);
1782 port->fcoe_pending_queue_active = 0;
Vasu Devc826a312009-02-27 10:56:27 -08001783out:
Chris Leech014f5c32009-08-25 13:59:30 -07001784 if (port->fcoe_pending_queue.qlen > FCOE_MAX_QUEUE_DEPTH)
Robert Love1875f272009-11-03 11:47:50 -08001785 lport->qfull = 1;
Chris Leech014f5c32009-08-25 13:59:30 -07001786 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Vasu Dev4bb6b512009-05-06 10:52:34 -07001787 return;
Robert Love85b4aa42008-12-09 15:10:24 -08001788}
1789
1790/**
Robert Love1875f272009-11-03 11:47:50 -08001791 * fcoe_dev_setup() - Setup the link change notification interface
Robert Love34f42a02009-02-27 10:55:45 -08001792 */
Randy Dunlapb0d428a2009-04-27 21:49:31 -07001793static void fcoe_dev_setup(void)
Robert Love85b4aa42008-12-09 15:10:24 -08001794{
Robert Love85b4aa42008-12-09 15:10:24 -08001795 register_netdevice_notifier(&fcoe_notifier);
1796}
1797
1798/**
Robert Love1875f272009-11-03 11:47:50 -08001799 * fcoe_dev_cleanup() - Cleanup the link change notification interface
Robert Love34f42a02009-02-27 10:55:45 -08001800 */
Robert Love85b4aa42008-12-09 15:10:24 -08001801static void fcoe_dev_cleanup(void)
1802{
1803 unregister_netdevice_notifier(&fcoe_notifier);
1804}
1805
1806/**
Robert Love1875f272009-11-03 11:47:50 -08001807 * fcoe_device_notification() - Handler for net device events
1808 * @notifier: The context of the notification
1809 * @event: The type of event
1810 * @ptr: The net device that the event was on
Robert Love85b4aa42008-12-09 15:10:24 -08001811 *
Robert Love1875f272009-11-03 11:47:50 -08001812 * This function is called by the Ethernet driver in case of link change event.
Robert Love85b4aa42008-12-09 15:10:24 -08001813 *
1814 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001815 */
Robert Love85b4aa42008-12-09 15:10:24 -08001816static int fcoe_device_notification(struct notifier_block *notifier,
1817 ulong event, void *ptr)
1818{
Robert Love1875f272009-11-03 11:47:50 -08001819 struct fc_lport *lport = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001820 struct net_device *netdev = ptr;
Chris Leech014f5c32009-08-25 13:59:30 -07001821 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -07001822 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08001823 struct fcoe_dev_stats *stats;
Joe Eykholt97c83892009-03-17 11:42:40 -07001824 u32 link_possible = 1;
Robert Love85b4aa42008-12-09 15:10:24 -08001825 u32 mfs;
1826 int rc = NOTIFY_OK;
1827
Chris Leech014f5c32009-08-25 13:59:30 -07001828 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
Chris Leech25024982009-08-25 13:59:35 -07001829 if (fcoe->netdev == netdev) {
Robert Love1875f272009-11-03 11:47:50 -08001830 lport = fcoe->ctlr.lp;
Robert Love85b4aa42008-12-09 15:10:24 -08001831 break;
1832 }
1833 }
Robert Love1875f272009-11-03 11:47:50 -08001834 if (!lport) {
Robert Love85b4aa42008-12-09 15:10:24 -08001835 rc = NOTIFY_DONE;
1836 goto out;
1837 }
1838
Robert Love85b4aa42008-12-09 15:10:24 -08001839 switch (event) {
1840 case NETDEV_DOWN:
1841 case NETDEV_GOING_DOWN:
Joe Eykholt97c83892009-03-17 11:42:40 -07001842 link_possible = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001843 break;
1844 case NETDEV_UP:
1845 case NETDEV_CHANGE:
Robert Love85b4aa42008-12-09 15:10:24 -08001846 break;
1847 case NETDEV_CHANGEMTU:
Yi Zou7221d7e2009-10-21 16:27:52 -07001848 if (netdev->features & NETIF_F_FCOE_MTU)
1849 break;
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001850 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
1851 sizeof(struct fcoe_crc_eof));
Robert Love85b4aa42008-12-09 15:10:24 -08001852 if (mfs >= FC_MIN_MAX_FRAME)
Robert Love1875f272009-11-03 11:47:50 -08001853 fc_set_mfs(lport, mfs);
Robert Love85b4aa42008-12-09 15:10:24 -08001854 break;
1855 case NETDEV_REGISTER:
1856 break;
Chris Leech2e70e242009-08-25 14:00:23 -07001857 case NETDEV_UNREGISTER:
1858 list_del(&fcoe->list);
1859 port = lport_priv(fcoe->ctlr.lp);
1860 fcoe_interface_cleanup(fcoe);
1861 schedule_work(&port->destroy_work);
1862 goto out;
1863 break;
Robert Love85b4aa42008-12-09 15:10:24 -08001864 default:
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001865 FCOE_NETDEV_DBG(netdev, "Unknown event %ld "
Robert Loved5488eb2009-06-10 15:30:59 -07001866 "from netdev netlink\n", event);
Robert Love85b4aa42008-12-09 15:10:24 -08001867 }
Robert Love5e4f8fe2010-05-07 15:18:35 -07001868
1869 fcoe_link_speed_update(lport);
1870
Robert Love1875f272009-11-03 11:47:50 -08001871 if (link_possible && !fcoe_link_ok(lport))
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001872 fcoe_ctlr_link_up(&fcoe->ctlr);
1873 else if (fcoe_ctlr_link_down(&fcoe->ctlr)) {
Joe Eykholtf018b732010-03-12 16:08:55 -08001874 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
Joe Eykholt97c83892009-03-17 11:42:40 -07001875 stats->LinkFailureCount++;
Joe Eykholtf018b732010-03-12 16:08:55 -08001876 put_cpu();
Robert Love1875f272009-11-03 11:47:50 -08001877 fcoe_clean_pending_queue(lport);
Robert Love85b4aa42008-12-09 15:10:24 -08001878 }
1879out:
1880 return rc;
1881}
1882
1883/**
Robert Love1875f272009-11-03 11:47:50 -08001884 * fcoe_if_to_netdev() - Parse a name buffer to get a net device
1885 * @buffer: The name of the net device
Robert Love85b4aa42008-12-09 15:10:24 -08001886 *
Robert Love1875f272009-11-03 11:47:50 -08001887 * Returns: NULL or a ptr to net_device
Robert Love34f42a02009-02-27 10:55:45 -08001888 */
Robert Love85b4aa42008-12-09 15:10:24 -08001889static struct net_device *fcoe_if_to_netdev(const char *buffer)
1890{
1891 char *cp;
1892 char ifname[IFNAMSIZ + 2];
1893
1894 if (buffer) {
1895 strlcpy(ifname, buffer, IFNAMSIZ);
1896 cp = ifname + strlen(ifname);
1897 while (--cp >= ifname && *cp == '\n')
1898 *cp = '\0';
1899 return dev_get_by_name(&init_net, ifname);
1900 }
1901 return NULL;
1902}
1903
1904/**
Vasu Dev55a66d32009-12-10 09:59:31 -08001905 * fcoe_disable() - Disables a FCoE interface
1906 * @buffer: The name of the Ethernet interface to be disabled
1907 * @kp: The associated kernel parameter
1908 *
1909 * Called from sysfs.
1910 *
1911 * Returns: 0 for success
1912 */
1913static int fcoe_disable(const char *buffer, struct kernel_param *kp)
1914{
1915 struct fcoe_interface *fcoe;
1916 struct net_device *netdev;
1917 int rc = 0;
1918
1919 mutex_lock(&fcoe_config_mutex);
1920#ifdef CONFIG_FCOE_MODULE
1921 /*
1922 * Make sure the module has been initialized, and is not about to be
1923 * removed. Module paramter sysfs files are writable before the
1924 * module_init function is called and after module_exit.
1925 */
1926 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1927 rc = -ENODEV;
1928 goto out_nodev;
1929 }
1930#endif
1931
1932 netdev = fcoe_if_to_netdev(buffer);
1933 if (!netdev) {
1934 rc = -ENODEV;
1935 goto out_nodev;
1936 }
1937
Vasu Dev34ce27b2010-05-07 15:18:46 -07001938 if (!rtnl_trylock()) {
1939 dev_put(netdev);
1940 mutex_unlock(&fcoe_config_mutex);
1941 return restart_syscall();
1942 }
1943
Vasu Dev55a66d32009-12-10 09:59:31 -08001944 fcoe = fcoe_hostlist_lookup_port(netdev);
1945 rtnl_unlock();
1946
Chris Leech9ee50e42010-04-09 14:22:23 -07001947 if (fcoe) {
Chris Leech9ee50e42010-04-09 14:22:23 -07001948 fcoe_ctlr_link_down(&fcoe->ctlr);
Vasu Dev9d4cbc02010-07-20 15:19:26 -07001949 fcoe_clean_pending_queue(fcoe->ctlr.lp);
Chris Leech9ee50e42010-04-09 14:22:23 -07001950 } else
Vasu Dev55a66d32009-12-10 09:59:31 -08001951 rc = -ENODEV;
1952
1953 dev_put(netdev);
1954out_nodev:
1955 mutex_unlock(&fcoe_config_mutex);
1956 return rc;
1957}
1958
1959/**
1960 * fcoe_enable() - Enables a FCoE interface
1961 * @buffer: The name of the Ethernet interface to be enabled
1962 * @kp: The associated kernel parameter
1963 *
1964 * Called from sysfs.
1965 *
1966 * Returns: 0 for success
1967 */
1968static int fcoe_enable(const char *buffer, struct kernel_param *kp)
1969{
1970 struct fcoe_interface *fcoe;
1971 struct net_device *netdev;
1972 int rc = 0;
1973
1974 mutex_lock(&fcoe_config_mutex);
1975#ifdef CONFIG_FCOE_MODULE
1976 /*
1977 * Make sure the module has been initialized, and is not about to be
1978 * removed. Module paramter sysfs files are writable before the
1979 * module_init function is called and after module_exit.
1980 */
1981 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
1982 rc = -ENODEV;
1983 goto out_nodev;
1984 }
1985#endif
1986
1987 netdev = fcoe_if_to_netdev(buffer);
1988 if (!netdev) {
1989 rc = -ENODEV;
1990 goto out_nodev;
1991 }
1992
Vasu Dev34ce27b2010-05-07 15:18:46 -07001993 if (!rtnl_trylock()) {
1994 dev_put(netdev);
1995 mutex_unlock(&fcoe_config_mutex);
1996 return restart_syscall();
1997 }
1998
Vasu Dev55a66d32009-12-10 09:59:31 -08001999 fcoe = fcoe_hostlist_lookup_port(netdev);
2000 rtnl_unlock();
2001
Vasu Dev9d4cbc02010-07-20 15:19:26 -07002002 if (!fcoe)
Vasu Dev55a66d32009-12-10 09:59:31 -08002003 rc = -ENODEV;
Vasu Dev9d4cbc02010-07-20 15:19:26 -07002004 else if (!fcoe_link_ok(fcoe->ctlr.lp))
2005 fcoe_ctlr_link_up(&fcoe->ctlr);
Vasu Dev55a66d32009-12-10 09:59:31 -08002006
2007 dev_put(netdev);
2008out_nodev:
2009 mutex_unlock(&fcoe_config_mutex);
2010 return rc;
2011}
2012
2013/**
Robert Love1875f272009-11-03 11:47:50 -08002014 * fcoe_destroy() - Destroy a FCoE interface
2015 * @buffer: The name of the Ethernet interface to be destroyed
2016 * @kp: The associated kernel parameter
2017 *
2018 * Called from sysfs.
Robert Love85b4aa42008-12-09 15:10:24 -08002019 *
2020 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08002021 */
Robert Love85b4aa42008-12-09 15:10:24 -08002022static int fcoe_destroy(const char *buffer, struct kernel_param *kp)
2023{
Chris Leech030f4e02009-08-25 14:00:02 -07002024 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -07002025 struct net_device *netdev;
Mike Christie8eca3552009-10-21 16:27:44 -07002026 int rc = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08002027
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002028 mutex_lock(&fcoe_config_mutex);
2029#ifdef CONFIG_FCOE_MODULE
2030 /*
2031 * Make sure the module has been initialized, and is not about to be
2032 * removed. Module paramter sysfs files are writable before the
2033 * module_init function is called and after module_exit.
2034 */
2035 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
2036 rc = -ENODEV;
2037 goto out_nodev;
2038 }
2039#endif
2040
Robert Love85b4aa42008-12-09 15:10:24 -08002041 netdev = fcoe_if_to_netdev(buffer);
2042 if (!netdev) {
2043 rc = -ENODEV;
2044 goto out_nodev;
2045 }
Chris Leech2e70e242009-08-25 14:00:23 -07002046
Vasu Dev34ce27b2010-05-07 15:18:46 -07002047 if (!rtnl_trylock()) {
2048 dev_put(netdev);
2049 mutex_unlock(&fcoe_config_mutex);
2050 return restart_syscall();
2051 }
2052
Chris Leech2e70e242009-08-25 14:00:23 -07002053 fcoe = fcoe_hostlist_lookup_port(netdev);
2054 if (!fcoe) {
Chris Leech090eb6c2009-08-25 14:00:28 -07002055 rtnl_unlock();
Robert Love85b4aa42008-12-09 15:10:24 -08002056 rc = -ENODEV;
2057 goto out_putdev;
2058 }
Chris Leech2e70e242009-08-25 14:00:23 -07002059 list_del(&fcoe->list);
Chris Leech2e70e242009-08-25 14:00:23 -07002060 fcoe_interface_cleanup(fcoe);
Vasu Dev34ce27b2010-05-07 15:18:46 -07002061 /* RTNL mutex is dropped by fcoe_if_destroy */
Chris Leech2e70e242009-08-25 14:00:23 -07002062 fcoe_if_destroy(fcoe->ctlr.lp);
Rob Love6409ea62010-01-21 10:16:05 -08002063
Robert Love85b4aa42008-12-09 15:10:24 -08002064out_putdev:
2065 dev_put(netdev);
2066out_nodev:
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002067 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08002068 return rc;
2069}
2070
Robert Love1875f272009-11-03 11:47:50 -08002071/**
2072 * fcoe_destroy_work() - Destroy a FCoE port in a deferred work context
2073 * @work: Handle to the FCoE port to be destroyed
2074 */
Chris Leech2e70e242009-08-25 14:00:23 -07002075static void fcoe_destroy_work(struct work_struct *work)
2076{
2077 struct fcoe_port *port;
2078
2079 port = container_of(work, struct fcoe_port, destroy_work);
2080 mutex_lock(&fcoe_config_mutex);
Vasu Dev34ce27b2010-05-07 15:18:46 -07002081 rtnl_lock();
2082 /* RTNL mutex is dropped by fcoe_if_destroy */
Chris Leech2e70e242009-08-25 14:00:23 -07002083 fcoe_if_destroy(port->lport);
2084 mutex_unlock(&fcoe_config_mutex);
2085}
2086
Robert Love85b4aa42008-12-09 15:10:24 -08002087/**
Robert Love1875f272009-11-03 11:47:50 -08002088 * fcoe_create() - Create a fcoe interface
2089 * @buffer: The name of the Ethernet interface to create on
2090 * @kp: The associated kernel param
2091 *
2092 * Called from sysfs.
Robert Love85b4aa42008-12-09 15:10:24 -08002093 *
2094 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08002095 */
Robert Love85b4aa42008-12-09 15:10:24 -08002096static int fcoe_create(const char *buffer, struct kernel_param *kp)
2097{
Joe Eykholt1dd454d2010-07-20 15:20:46 -07002098 enum fip_state fip_mode = (enum fip_state)(long)kp->arg;
Robert Love85b4aa42008-12-09 15:10:24 -08002099 int rc;
Chris Leech030f4e02009-08-25 14:00:02 -07002100 struct fcoe_interface *fcoe;
Chris Leechaf7f85d2009-08-25 13:59:24 -07002101 struct fc_lport *lport;
Robert Love85b4aa42008-12-09 15:10:24 -08002102 struct net_device *netdev;
2103
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002104 mutex_lock(&fcoe_config_mutex);
Vasu Dev34ce27b2010-05-07 15:18:46 -07002105
2106 if (!rtnl_trylock()) {
2107 mutex_unlock(&fcoe_config_mutex);
2108 return restart_syscall();
2109 }
2110
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002111#ifdef CONFIG_FCOE_MODULE
2112 /*
2113 * Make sure the module has been initialized, and is not about to be
2114 * removed. Module paramter sysfs files are writable before the
2115 * module_init function is called and after module_exit.
2116 */
2117 if (THIS_MODULE->state != MODULE_STATE_LIVE) {
2118 rc = -ENODEV;
Vasu Dev721cafa2010-05-07 15:18:19 -07002119 goto out_nomod;
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002120 }
2121#endif
2122
Rob Love6409ea62010-01-21 10:16:05 -08002123 if (!try_module_get(THIS_MODULE)) {
2124 rc = -EINVAL;
2125 goto out_nomod;
2126 }
2127
Robert Love85b4aa42008-12-09 15:10:24 -08002128 netdev = fcoe_if_to_netdev(buffer);
2129 if (!netdev) {
2130 rc = -ENODEV;
2131 goto out_nodev;
2132 }
Chris Leech2e70e242009-08-25 14:00:23 -07002133
Robert Love85b4aa42008-12-09 15:10:24 -08002134 /* look for existing lport */
2135 if (fcoe_hostlist_lookup(netdev)) {
2136 rc = -EEXIST;
2137 goto out_putdev;
2138 }
Robert Love85b4aa42008-12-09 15:10:24 -08002139
Joe Eykholt1dd454d2010-07-20 15:20:46 -07002140 fcoe = fcoe_interface_create(netdev, fip_mode);
Chris Leech030f4e02009-08-25 14:00:02 -07002141 if (!fcoe) {
2142 rc = -ENOMEM;
2143 goto out_putdev;
2144 }
2145
Chris Leech9a057532009-11-03 11:46:40 -08002146 lport = fcoe_if_create(fcoe, &netdev->dev, 0);
Chris Leechaf7f85d2009-08-25 13:59:24 -07002147 if (IS_ERR(lport)) {
Robert Loved5488eb2009-06-10 15:30:59 -07002148 printk(KERN_ERR "fcoe: Failed to create interface (%s)\n",
Robert Love85b4aa42008-12-09 15:10:24 -08002149 netdev->name);
Robert Love85b4aa42008-12-09 15:10:24 -08002150 rc = -EIO;
Chris Leech2e70e242009-08-25 14:00:23 -07002151 fcoe_interface_cleanup(fcoe);
Chris Leech030f4e02009-08-25 14:00:02 -07002152 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08002153 }
Chris Leech030f4e02009-08-25 14:00:02 -07002154
Chris Leech54b649f2009-08-25 14:00:07 -07002155 /* Make this the "master" N_Port */
2156 fcoe->ctlr.lp = lport;
Chris Leech030f4e02009-08-25 14:00:02 -07002157
Chris Leechc863df32009-08-25 14:00:18 -07002158 /* add to lports list */
2159 fcoe_hostlist_add(lport);
2160
Chris Leech54b649f2009-08-25 14:00:07 -07002161 /* start FIP Discovery and FLOGI */
2162 lport->boot_time = jiffies;
2163 fc_fabric_login(lport);
2164 if (!fcoe_link_ok(lport))
2165 fcoe_ctlr_link_up(&fcoe->ctlr);
2166
Chris Leech54b649f2009-08-25 14:00:07 -07002167 /*
2168 * Release from init in fcoe_interface_create(), on success lport
2169 * should be holding a reference taken in fcoe_if_create().
2170 */
Chris Leech030f4e02009-08-25 14:00:02 -07002171 fcoe_interface_put(fcoe);
Rob Love6409ea62010-01-21 10:16:05 -08002172 dev_put(netdev);
2173 rtnl_unlock();
2174 mutex_unlock(&fcoe_config_mutex);
2175
2176 return 0;
2177out_free:
2178 fcoe_interface_put(fcoe);
Robert Love85b4aa42008-12-09 15:10:24 -08002179out_putdev:
2180 dev_put(netdev);
2181out_nodev:
Rob Love6409ea62010-01-21 10:16:05 -08002182 module_put(THIS_MODULE);
2183out_nomod:
Vasu Dev34ce27b2010-05-07 15:18:46 -07002184 rtnl_unlock();
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002185 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08002186 return rc;
2187}
2188
Robert Love34f42a02009-02-27 10:55:45 -08002189/**
Robert Love5e4f8fe2010-05-07 15:18:35 -07002190 * fcoe_link_speed_update() - Update the supported and actual link speeds
2191 * @lport: The local port to update speeds for
Robert Love85b4aa42008-12-09 15:10:24 -08002192 *
Robert Love5e4f8fe2010-05-07 15:18:35 -07002193 * Returns: 0 if the ethtool query was successful
2194 * -1 if the ethtool query failed
Robert Love85b4aa42008-12-09 15:10:24 -08002195 */
Robert Love5e4f8fe2010-05-07 15:18:35 -07002196int fcoe_link_speed_update(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002197{
Robert Love1875f272009-11-03 11:47:50 -08002198 struct fcoe_port *port = lport_priv(lport);
2199 struct net_device *netdev = port->fcoe->netdev;
Robert Love85b4aa42008-12-09 15:10:24 -08002200 struct ethtool_cmd ecmd = { ETHTOOL_GSET };
Robert Love85b4aa42008-12-09 15:10:24 -08002201
Robert Love5e4f8fe2010-05-07 15:18:35 -07002202 if (!dev_ethtool_get_settings(netdev, &ecmd)) {
Robert Love1875f272009-11-03 11:47:50 -08002203 lport->link_supported_speeds &=
Yi Zou2f718d62009-07-29 17:04:01 -07002204 ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
2205 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
2206 SUPPORTED_1000baseT_Full))
Robert Love1875f272009-11-03 11:47:50 -08002207 lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
Yi Zou2f718d62009-07-29 17:04:01 -07002208 if (ecmd.supported & SUPPORTED_10000baseT_Full)
Robert Love1875f272009-11-03 11:47:50 -08002209 lport->link_supported_speeds |=
Yi Zou2f718d62009-07-29 17:04:01 -07002210 FC_PORTSPEED_10GBIT;
2211 if (ecmd.speed == SPEED_1000)
Robert Love1875f272009-11-03 11:47:50 -08002212 lport->link_speed = FC_PORTSPEED_1GBIT;
Yi Zou2f718d62009-07-29 17:04:01 -07002213 if (ecmd.speed == SPEED_10000)
Robert Love1875f272009-11-03 11:47:50 -08002214 lport->link_speed = FC_PORTSPEED_10GBIT;
Robert Love85b4aa42008-12-09 15:10:24 -08002215
Yi Zou2f718d62009-07-29 17:04:01 -07002216 return 0;
2217 }
2218 return -1;
Robert Love85b4aa42008-12-09 15:10:24 -08002219}
Robert Love85b4aa42008-12-09 15:10:24 -08002220
Robert Love34f42a02009-02-27 10:55:45 -08002221/**
Robert Love5e4f8fe2010-05-07 15:18:35 -07002222 * fcoe_link_ok() - Check if the link is OK for a local port
2223 * @lport: The local port to check link on
2224 *
2225 * Returns: 0 if link is UP and OK, -1 if not
2226 *
2227 */
2228int fcoe_link_ok(struct fc_lport *lport)
2229{
2230 struct fcoe_port *port = lport_priv(lport);
2231 struct net_device *netdev = port->fcoe->netdev;
2232
2233 if (netif_oper_up(netdev))
2234 return 0;
2235 return -1;
2236}
2237
2238/**
Robert Love1875f272009-11-03 11:47:50 -08002239 * fcoe_percpu_clean() - Clear all pending skbs for an local port
2240 * @lport: The local port whose skbs are to be cleared
Joe Eykholte7a51992009-08-25 14:04:08 -07002241 *
2242 * Must be called with fcoe_create_mutex held to single-thread completion.
2243 *
2244 * This flushes the pending skbs by adding a new skb to each queue and
2245 * waiting until they are all freed. This assures us that not only are
2246 * there no packets that will be handled by the lport, but also that any
2247 * threads already handling packet have returned.
Robert Love85b4aa42008-12-09 15:10:24 -08002248 */
Robert Love1875f272009-11-03 11:47:50 -08002249void fcoe_percpu_clean(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002250{
Robert Love85b4aa42008-12-09 15:10:24 -08002251 struct fcoe_percpu_s *pp;
2252 struct fcoe_rcv_info *fr;
2253 struct sk_buff_head *list;
2254 struct sk_buff *skb, *next;
2255 struct sk_buff *head;
Robert Love5e5e92d2009-03-17 11:41:35 -07002256 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08002257
Robert Love5e5e92d2009-03-17 11:41:35 -07002258 for_each_possible_cpu(cpu) {
2259 pp = &per_cpu(fcoe_percpu, cpu);
2260 spin_lock_bh(&pp->fcoe_rx_list.lock);
2261 list = &pp->fcoe_rx_list;
2262 head = list->next;
2263 for (skb = head; skb != (struct sk_buff *)list;
2264 skb = next) {
2265 next = skb->next;
2266 fr = fcoe_dev_from_skb(skb);
Robert Love1875f272009-11-03 11:47:50 -08002267 if (fr->fr_dev == lport) {
Robert Love5e5e92d2009-03-17 11:41:35 -07002268 __skb_unlink(skb, list);
2269 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08002270 }
Robert Love85b4aa42008-12-09 15:10:24 -08002271 }
Joe Eykholte7a51992009-08-25 14:04:08 -07002272
2273 if (!pp->thread || !cpu_online(cpu)) {
2274 spin_unlock_bh(&pp->fcoe_rx_list.lock);
2275 continue;
2276 }
2277
2278 skb = dev_alloc_skb(0);
2279 if (!skb) {
2280 spin_unlock_bh(&pp->fcoe_rx_list.lock);
2281 continue;
2282 }
2283 skb->destructor = fcoe_percpu_flush_done;
2284
2285 __skb_queue_tail(&pp->fcoe_rx_list, skb);
2286 if (pp->fcoe_rx_list.qlen == 1)
2287 wake_up_process(pp->thread);
Robert Love5e5e92d2009-03-17 11:41:35 -07002288 spin_unlock_bh(&pp->fcoe_rx_list.lock);
Joe Eykholte7a51992009-08-25 14:04:08 -07002289
2290 wait_for_completion(&fcoe_flush_completion);
Robert Love85b4aa42008-12-09 15:10:24 -08002291 }
2292}
Robert Love85b4aa42008-12-09 15:10:24 -08002293
2294/**
Robert Love34f42a02009-02-27 10:55:45 -08002295 * fcoe_clean_pending_queue() - Dequeue a skb and free it
Robert Love1875f272009-11-03 11:47:50 -08002296 * @lport: The local port to dequeue a skb on
Robert Love34f42a02009-02-27 10:55:45 -08002297 */
Robert Love1875f272009-11-03 11:47:50 -08002298void fcoe_clean_pending_queue(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002299{
Robert Love1875f272009-11-03 11:47:50 -08002300 struct fcoe_port *port = lport_priv(lport);
Robert Love85b4aa42008-12-09 15:10:24 -08002301 struct sk_buff *skb;
2302
Chris Leech014f5c32009-08-25 13:59:30 -07002303 spin_lock_bh(&port->fcoe_pending_queue.lock);
2304 while ((skb = __skb_dequeue(&port->fcoe_pending_queue)) != NULL) {
2305 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08002306 kfree_skb(skb);
Chris Leech014f5c32009-08-25 13:59:30 -07002307 spin_lock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08002308 }
Chris Leech014f5c32009-08-25 13:59:30 -07002309 spin_unlock_bh(&port->fcoe_pending_queue.lock);
Robert Love85b4aa42008-12-09 15:10:24 -08002310}
Robert Love85b4aa42008-12-09 15:10:24 -08002311
2312/**
Robert Love1875f272009-11-03 11:47:50 -08002313 * fcoe_reset() - Reset a local port
2314 * @shost: The SCSI host associated with the local port to be reset
Robert Love85b4aa42008-12-09 15:10:24 -08002315 *
Robert Love1875f272009-11-03 11:47:50 -08002316 * Returns: Always 0 (return value required by FC transport template)
Robert Love85b4aa42008-12-09 15:10:24 -08002317 */
2318int fcoe_reset(struct Scsi_Host *shost)
2319{
2320 struct fc_lport *lport = shost_priv(shost);
2321 fc_lport_reset(lport);
2322 return 0;
2323}
Robert Love85b4aa42008-12-09 15:10:24 -08002324
Robert Love34f42a02009-02-27 10:55:45 -08002325/**
Robert Love1875f272009-11-03 11:47:50 -08002326 * fcoe_hostlist_lookup_port() - Find the FCoE interface associated with a net device
2327 * @netdev: The net device used as a key
Robert Love85b4aa42008-12-09 15:10:24 -08002328 *
Robert Love1875f272009-11-03 11:47:50 -08002329 * Locking: Must be called with the RNL mutex held.
2330 *
2331 * Returns: NULL or the FCoE interface
Robert Love85b4aa42008-12-09 15:10:24 -08002332 */
Chris Leech014f5c32009-08-25 13:59:30 -07002333static struct fcoe_interface *
Robert Love1875f272009-11-03 11:47:50 -08002334fcoe_hostlist_lookup_port(const struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08002335{
Chris Leech014f5c32009-08-25 13:59:30 -07002336 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002337
Chris Leech014f5c32009-08-25 13:59:30 -07002338 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
Robert Love1875f272009-11-03 11:47:50 -08002339 if (fcoe->netdev == netdev)
Chris Leech014f5c32009-08-25 13:59:30 -07002340 return fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002341 }
Robert Love85b4aa42008-12-09 15:10:24 -08002342 return NULL;
2343}
2344
Robert Love34f42a02009-02-27 10:55:45 -08002345/**
Robert Love1875f272009-11-03 11:47:50 -08002346 * fcoe_hostlist_lookup() - Find the local port associated with a
2347 * given net device
2348 * @netdev: The netdevice used as a key
Robert Love85b4aa42008-12-09 15:10:24 -08002349 *
Robert Love1875f272009-11-03 11:47:50 -08002350 * Locking: Must be called with the RTNL mutex held
2351 *
2352 * Returns: NULL or the local port
Robert Love85b4aa42008-12-09 15:10:24 -08002353 */
Chris Leech090eb6c2009-08-25 14:00:28 -07002354static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08002355{
Chris Leech014f5c32009-08-25 13:59:30 -07002356 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002357
Chris Leech014f5c32009-08-25 13:59:30 -07002358 fcoe = fcoe_hostlist_lookup_port(netdev);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07002359 return (fcoe) ? fcoe->ctlr.lp : NULL;
Robert Love85b4aa42008-12-09 15:10:24 -08002360}
Robert Love85b4aa42008-12-09 15:10:24 -08002361
Robert Love34f42a02009-02-27 10:55:45 -08002362/**
Robert Love1875f272009-11-03 11:47:50 -08002363 * fcoe_hostlist_add() - Add the FCoE interface identified by a local
2364 * port to the hostlist
2365 * @lport: The local port that identifies the FCoE interface to be added
2366 *
2367 * Locking: must be called with the RTNL mutex held
Robert Love85b4aa42008-12-09 15:10:24 -08002368 *
2369 * Returns: 0 for success
2370 */
Chris Leech090eb6c2009-08-25 14:00:28 -07002371static int fcoe_hostlist_add(const struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002372{
Chris Leech014f5c32009-08-25 13:59:30 -07002373 struct fcoe_interface *fcoe;
2374 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08002375
Chris Leech014f5c32009-08-25 13:59:30 -07002376 fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
2377 if (!fcoe) {
2378 port = lport_priv(lport);
2379 fcoe = port->fcoe;
2380 list_add_tail(&fcoe->list, &fcoe_hostlist);
Robert Love85b4aa42008-12-09 15:10:24 -08002381 }
2382 return 0;
2383}
Robert Love85b4aa42008-12-09 15:10:24 -08002384
Robert Love34f42a02009-02-27 10:55:45 -08002385/**
Robert Love1875f272009-11-03 11:47:50 -08002386 * fcoe_init() - Initialize fcoe.ko
Robert Love85b4aa42008-12-09 15:10:24 -08002387 *
Robert Love1875f272009-11-03 11:47:50 -08002388 * Returns: 0 on success, or a negative value on failure
Robert Love34f42a02009-02-27 10:55:45 -08002389 */
Robert Love85b4aa42008-12-09 15:10:24 -08002390static int __init fcoe_init(void)
2391{
Robert Love1875f272009-11-03 11:47:50 -08002392 struct fcoe_percpu_s *p;
Robert Love38eccab2009-03-17 11:41:30 -07002393 unsigned int cpu;
Robert Love8976f422009-03-17 11:41:46 -07002394 int rc = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08002395
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002396 mutex_lock(&fcoe_config_mutex);
2397
Robert Love38eccab2009-03-17 11:41:30 -07002398 for_each_possible_cpu(cpu) {
Robert Love5e5e92d2009-03-17 11:41:35 -07002399 p = &per_cpu(fcoe_percpu, cpu);
Robert Love38eccab2009-03-17 11:41:30 -07002400 skb_queue_head_init(&p->fcoe_rx_list);
2401 }
2402
Robert Love8976f422009-03-17 11:41:46 -07002403 for_each_online_cpu(cpu)
2404 fcoe_percpu_thread_create(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08002405
Robert Love8976f422009-03-17 11:41:46 -07002406 /* Initialize per CPU interrupt thread */
2407 rc = register_hotcpu_notifier(&fcoe_cpu_notifier);
2408 if (rc)
2409 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08002410
Robert Love8976f422009-03-17 11:41:46 -07002411 /* Setup link change notification */
Robert Love85b4aa42008-12-09 15:10:24 -08002412 fcoe_dev_setup();
2413
Chris Leech5892c322009-08-25 13:59:14 -07002414 rc = fcoe_if_init();
2415 if (rc)
2416 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08002417
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002418 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08002419 return 0;
Robert Love8976f422009-03-17 11:41:46 -07002420
2421out_free:
2422 for_each_online_cpu(cpu) {
2423 fcoe_percpu_thread_destroy(cpu);
2424 }
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002425 mutex_unlock(&fcoe_config_mutex);
Robert Love8976f422009-03-17 11:41:46 -07002426 return rc;
Robert Love85b4aa42008-12-09 15:10:24 -08002427}
2428module_init(fcoe_init);
2429
2430/**
Robert Love1875f272009-11-03 11:47:50 -08002431 * fcoe_exit() - Clean up fcoe.ko
Robert Love85b4aa42008-12-09 15:10:24 -08002432 *
Robert Love1875f272009-11-03 11:47:50 -08002433 * Returns: 0 on success or a negative value on failure
Robert Love34f42a02009-02-27 10:55:45 -08002434 */
Robert Love85b4aa42008-12-09 15:10:24 -08002435static void __exit fcoe_exit(void)
2436{
Chris Leech014f5c32009-08-25 13:59:30 -07002437 struct fcoe_interface *fcoe, *tmp;
Chris Leech2e70e242009-08-25 14:00:23 -07002438 struct fcoe_port *port;
Robert Love1875f272009-11-03 11:47:50 -08002439 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08002440
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002441 mutex_lock(&fcoe_config_mutex);
2442
Robert Love85b4aa42008-12-09 15:10:24 -08002443 fcoe_dev_cleanup();
2444
Vasu Dev5919a592009-03-27 09:03:29 -07002445 /* releases the associated fcoe hosts */
Chris Leech090eb6c2009-08-25 14:00:28 -07002446 rtnl_lock();
2447 list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list) {
Chris Leechc863df32009-08-25 14:00:18 -07002448 list_del(&fcoe->list);
Chris Leech2e70e242009-08-25 14:00:23 -07002449 port = lport_priv(fcoe->ctlr.lp);
Chris Leech2e70e242009-08-25 14:00:23 -07002450 fcoe_interface_cleanup(fcoe);
Chris Leech2e70e242009-08-25 14:00:23 -07002451 schedule_work(&port->destroy_work);
Chris Leechc863df32009-08-25 14:00:18 -07002452 }
Chris Leech090eb6c2009-08-25 14:00:28 -07002453 rtnl_unlock();
Robert Love85b4aa42008-12-09 15:10:24 -08002454
Robert Love8976f422009-03-17 11:41:46 -07002455 unregister_hotcpu_notifier(&fcoe_cpu_notifier);
2456
Chris Leech014f5c32009-08-25 13:59:30 -07002457 for_each_online_cpu(cpu)
Robert Love8976f422009-03-17 11:41:46 -07002458 fcoe_percpu_thread_destroy(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08002459
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002460 mutex_unlock(&fcoe_config_mutex);
Chris Leech2e70e242009-08-25 14:00:23 -07002461
2462 /* flush any asyncronous interface destroys,
2463 * this should happen after the netdev notifier is unregistered */
2464 flush_scheduled_work();
Chris Leech9a057532009-11-03 11:46:40 -08002465 /* That will flush out all the N_Ports on the hostlist, but now we
2466 * may have NPIV VN_Ports scheduled for destruction */
2467 flush_scheduled_work();
Chris Leech2e70e242009-08-25 14:00:23 -07002468
2469 /* detach from scsi transport
2470 * must happen after all destroys are done, therefor after the flush */
2471 fcoe_if_exit();
Robert Love85b4aa42008-12-09 15:10:24 -08002472}
2473module_exit(fcoe_exit);
Chris Leech11b56182009-11-03 11:46:29 -08002474
2475/**
2476 * fcoe_flogi_resp() - FCoE specific FLOGI and FDISC response handler
2477 * @seq: active sequence in the FLOGI or FDISC exchange
2478 * @fp: response frame, or error encoded in a pointer (timeout)
2479 * @arg: pointer the the fcoe_ctlr structure
2480 *
2481 * This handles MAC address managment for FCoE, then passes control on to
2482 * the libfc FLOGI response handler.
2483 */
2484static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2485{
2486 struct fcoe_ctlr *fip = arg;
2487 struct fc_exch *exch = fc_seq_exch(seq);
2488 struct fc_lport *lport = exch->lp;
2489 u8 *mac;
2490
2491 if (IS_ERR(fp))
2492 goto done;
2493
2494 mac = fr_cb(fp)->granted_mac;
2495 if (is_zero_ether_addr(mac)) {
2496 /* pre-FIP */
Joe Eykholt386309c2009-11-03 11:49:16 -08002497 if (fcoe_ctlr_recv_flogi(fip, lport, fp)) {
Chris Leech11b56182009-11-03 11:46:29 -08002498 fc_frame_free(fp);
2499 return;
2500 }
Chris Leech11b56182009-11-03 11:46:29 -08002501 }
Joe Eykholt386309c2009-11-03 11:49:16 -08002502 fcoe_update_src_mac(lport, mac);
Chris Leech11b56182009-11-03 11:46:29 -08002503done:
2504 fc_lport_flogi_resp(seq, fp, lport);
2505}
2506
2507/**
2508 * fcoe_logo_resp() - FCoE specific LOGO response handler
2509 * @seq: active sequence in the LOGO exchange
2510 * @fp: response frame, or error encoded in a pointer (timeout)
2511 * @arg: pointer the the fcoe_ctlr structure
2512 *
2513 * This handles MAC address managment for FCoE, then passes control on to
2514 * the libfc LOGO response handler.
2515 */
2516static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2517{
Joe Eykholt386309c2009-11-03 11:49:16 -08002518 struct fc_lport *lport = arg;
Chris Leech11b56182009-11-03 11:46:29 -08002519 static u8 zero_mac[ETH_ALEN] = { 0 };
2520
2521 if (!IS_ERR(fp))
Joe Eykholt386309c2009-11-03 11:49:16 -08002522 fcoe_update_src_mac(lport, zero_mac);
Chris Leech11b56182009-11-03 11:46:29 -08002523 fc_lport_logo_resp(seq, fp, lport);
2524}
2525
2526/**
2527 * fcoe_elsct_send - FCoE specific ELS handler
2528 *
2529 * This does special case handling of FIP encapsualted ELS exchanges for FCoE,
2530 * using FCoE specific response handlers and passing the FIP controller as
2531 * the argument (the lport is still available from the exchange).
2532 *
2533 * Most of the work here is just handed off to the libfc routine.
2534 */
Robert Love1875f272009-11-03 11:47:50 -08002535static struct fc_seq *fcoe_elsct_send(struct fc_lport *lport, u32 did,
2536 struct fc_frame *fp, unsigned int op,
2537 void (*resp)(struct fc_seq *,
2538 struct fc_frame *,
2539 void *),
2540 void *arg, u32 timeout)
Chris Leech11b56182009-11-03 11:46:29 -08002541{
2542 struct fcoe_port *port = lport_priv(lport);
2543 struct fcoe_interface *fcoe = port->fcoe;
2544 struct fcoe_ctlr *fip = &fcoe->ctlr;
2545 struct fc_frame_header *fh = fc_frame_header_get(fp);
2546
2547 switch (op) {
2548 case ELS_FLOGI:
2549 case ELS_FDISC:
Joe Eykholte10f8c62010-07-20 15:20:30 -07002550 if (lport->point_to_multipoint)
2551 break;
Chris Leech11b56182009-11-03 11:46:29 -08002552 return fc_elsct_send(lport, did, fp, op, fcoe_flogi_resp,
2553 fip, timeout);
2554 case ELS_LOGO:
2555 /* only hook onto fabric logouts, not port logouts */
2556 if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI)
2557 break;
2558 return fc_elsct_send(lport, did, fp, op, fcoe_logo_resp,
Joe Eykholt386309c2009-11-03 11:49:16 -08002559 lport, timeout);
Chris Leech11b56182009-11-03 11:46:29 -08002560 }
2561 return fc_elsct_send(lport, did, fp, op, resp, arg, timeout);
2562}
2563
Chris Leech9a057532009-11-03 11:46:40 -08002564/**
2565 * fcoe_vport_create() - create an fc_host/scsi_host for a vport
2566 * @vport: fc_vport object to create a new fc_host for
2567 * @disabled: start the new fc_host in a disabled state by default?
2568 *
2569 * Returns: 0 for success
2570 */
2571static int fcoe_vport_create(struct fc_vport *vport, bool disabled)
2572{
2573 struct Scsi_Host *shost = vport_to_shost(vport);
2574 struct fc_lport *n_port = shost_priv(shost);
2575 struct fcoe_port *port = lport_priv(n_port);
2576 struct fcoe_interface *fcoe = port->fcoe;
2577 struct net_device *netdev = fcoe->netdev;
2578 struct fc_lport *vn_port;
2579
2580 mutex_lock(&fcoe_config_mutex);
2581 vn_port = fcoe_if_create(fcoe, &vport->dev, 1);
2582 mutex_unlock(&fcoe_config_mutex);
2583
2584 if (IS_ERR(vn_port)) {
2585 printk(KERN_ERR "fcoe: fcoe_vport_create(%s) failed\n",
2586 netdev->name);
2587 return -EIO;
2588 }
2589
2590 if (disabled) {
2591 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2592 } else {
2593 vn_port->boot_time = jiffies;
2594 fc_fabric_login(vn_port);
2595 fc_vport_setlink(vn_port);
2596 }
2597 return 0;
2598}
2599
2600/**
2601 * fcoe_vport_destroy() - destroy the fc_host/scsi_host for a vport
2602 * @vport: fc_vport object that is being destroyed
2603 *
2604 * Returns: 0 for success
2605 */
2606static int fcoe_vport_destroy(struct fc_vport *vport)
2607{
2608 struct Scsi_Host *shost = vport_to_shost(vport);
2609 struct fc_lport *n_port = shost_priv(shost);
2610 struct fc_lport *vn_port = vport->dd_data;
2611 struct fcoe_port *port = lport_priv(vn_port);
2612
2613 mutex_lock(&n_port->lp_mutex);
2614 list_del(&vn_port->list);
2615 mutex_unlock(&n_port->lp_mutex);
2616 schedule_work(&port->destroy_work);
2617 return 0;
2618}
2619
2620/**
2621 * fcoe_vport_disable() - change vport state
2622 * @vport: vport to bring online/offline
2623 * @disable: should the vport be disabled?
2624 */
2625static int fcoe_vport_disable(struct fc_vport *vport, bool disable)
2626{
2627 struct fc_lport *lport = vport->dd_data;
2628
2629 if (disable) {
2630 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2631 fc_fabric_logoff(lport);
2632 } else {
2633 lport->boot_time = jiffies;
2634 fc_fabric_login(lport);
2635 fc_vport_setlink(lport);
2636 }
2637
2638 return 0;
2639}
2640
Chris Leechdc8596d2009-11-03 11:47:18 -08002641/**
2642 * fcoe_vport_set_symbolic_name() - append vport string to symbolic name
2643 * @vport: fc_vport with a new symbolic name string
2644 *
2645 * After generating a new symbolic name string, a new RSPN_ID request is
2646 * sent to the name server. There is no response handler, so if it fails
2647 * for some reason it will not be retried.
2648 */
2649static void fcoe_set_vport_symbolic_name(struct fc_vport *vport)
2650{
2651 struct fc_lport *lport = vport->dd_data;
2652 struct fc_frame *fp;
2653 size_t len;
2654
2655 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
2656 "%s v%s over %s : %s", FCOE_NAME, FCOE_VERSION,
2657 fcoe_netdev(lport)->name, vport->symbolic_name);
2658
2659 if (lport->state != LPORT_ST_READY)
2660 return;
2661
2662 len = strnlen(fc_host_symbolic_name(lport->host), 255);
2663 fp = fc_frame_alloc(lport,
2664 sizeof(struct fc_ct_hdr) +
2665 sizeof(struct fc_ns_rspn) + len);
2666 if (!fp)
2667 return;
2668 lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RSPN_ID,
Joe Eykholtb94f8952009-11-03 11:50:21 -08002669 NULL, NULL, 3 * lport->r_a_tov);
Chris Leechdc8596d2009-11-03 11:47:18 -08002670}
Yi Zoub84056b2009-11-20 14:55:19 -08002671
2672/**
2673 * fcoe_get_lesb() - Fill the FCoE Link Error Status Block
2674 * @lport: the local port
2675 * @fc_lesb: the link error status block
2676 */
2677static void fcoe_get_lesb(struct fc_lport *lport,
2678 struct fc_els_lesb *fc_lesb)
2679{
2680 unsigned int cpu;
2681 u32 lfc, vlfc, mdac;
2682 struct fcoe_dev_stats *devst;
2683 struct fcoe_fc_els_lesb *lesb;
2684 struct net_device *netdev = fcoe_netdev(lport);
2685
2686 lfc = 0;
2687 vlfc = 0;
2688 mdac = 0;
2689 lesb = (struct fcoe_fc_els_lesb *)fc_lesb;
2690 memset(lesb, 0, sizeof(*lesb));
2691 for_each_possible_cpu(cpu) {
2692 devst = per_cpu_ptr(lport->dev_stats, cpu);
2693 lfc += devst->LinkFailureCount;
2694 vlfc += devst->VLinkFailureCount;
2695 mdac += devst->MissDiscAdvCount;
2696 }
2697 lesb->lesb_link_fail = htonl(lfc);
2698 lesb->lesb_vlink_fail = htonl(vlfc);
2699 lesb->lesb_miss_fka = htonl(mdac);
2700 lesb->lesb_fcs_error = htonl(dev_get_stats(netdev)->rx_crc_errors);
2701}
Joe Eykholt7d65b0d2010-03-12 16:08:02 -08002702
2703/**
2704 * fcoe_set_port_id() - Callback from libfc when Port_ID is set.
2705 * @lport: the local port
2706 * @port_id: the port ID
2707 * @fp: the received frame, if any, that caused the port_id to be set.
2708 *
2709 * This routine handles the case where we received a FLOGI and are
2710 * entering point-to-point mode. We need to call fcoe_ctlr_recv_flogi()
2711 * so it can set the non-mapped mode and gateway address.
2712 *
2713 * The FLOGI LS_ACC is handled by fcoe_flogi_resp().
2714 */
2715static void fcoe_set_port_id(struct fc_lport *lport,
2716 u32 port_id, struct fc_frame *fp)
2717{
2718 struct fcoe_port *port = lport_priv(lport);
2719 struct fcoe_interface *fcoe = port->fcoe;
2720
2721 if (fp && fc_frame_payload_op(fp) == ELS_FLOGI)
2722 fcoe_ctlr_recv_flogi(&fcoe->ctlr, lport, fp);
2723}