blob: f3f440c955f3e60e2efe9deaf12002b304f625f5 [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>
Robert Love85b4aa42008-12-09 15:10:24 -080021#include <linux/spinlock.h>
Robert Love85b4aa42008-12-09 15:10:24 -080022#include <linux/netdevice.h>
23#include <linux/etherdevice.h>
24#include <linux/ethtool.h>
25#include <linux/if_ether.h>
26#include <linux/if_vlan.h>
Robert Love85b4aa42008-12-09 15:10:24 -080027#include <linux/crc32.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Robert Love85b4aa42008-12-09 15:10:24 -080029#include <linux/cpu.h>
30#include <linux/fs.h>
31#include <linux/sysfs.h>
32#include <linux/ctype.h>
Tejun Heo2ca32b42011-01-28 16:05:32 -080033#include <linux/workqueue.h>
Robert Love85b4aa42008-12-09 15:10:24 -080034#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 Devfdd780272009-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 */
Vasu Dev860eca22011-09-27 21:38:18 -070054static unsigned int fcoe_ddp_min = 4096;
Yi Zou05cc7392009-08-25 13:59:03 -070055module_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
Tejun Heo2ca32b42011-01-28 16:05:32 -080061static struct workqueue_struct *fcoe_wq;
62
Joe Eykholte7a51992009-08-25 14:04:08 -070063/* fcoe_percpu_clean completion. Waiter protected by fcoe_create_mutex */
64static DECLARE_COMPLETION(fcoe_flush_completion);
65
Robert Love85b4aa42008-12-09 15:10:24 -080066/* fcoe host list */
Chris Leech090eb6c2009-08-25 14:00:28 -070067/* must only by accessed under the RTNL mutex */
Robert Love85b4aa42008-12-09 15:10:24 -080068LIST_HEAD(fcoe_hostlist);
Robert Love5e5e92d2009-03-17 11:41:35 -070069DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -080070
Chris Leechdd3fd722009-04-21 16:27:36 -070071/* Function Prototypes */
Robert Love1875f272009-11-03 11:47:50 -080072static int fcoe_reset(struct Scsi_Host *);
Vasu Devfdd780272009-03-17 11:42:24 -070073static int fcoe_xmit(struct fc_lport *, struct fc_frame *);
74static int fcoe_rcv(struct sk_buff *, struct net_device *,
75 struct packet_type *, struct net_device *);
Robert Love1875f272009-11-03 11:47:50 -080076static int fcoe_percpu_receive_thread(void *);
Robert Love1875f272009-11-03 11:47:50 -080077static void fcoe_percpu_clean(struct fc_lport *);
Robert Love5e4f8fe2010-05-07 15:18:35 -070078static int fcoe_link_speed_update(struct fc_lport *);
Robert Love1875f272009-11-03 11:47:50 -080079static int fcoe_link_ok(struct fc_lport *);
Vasu Devfdd780272009-03-17 11:42:24 -070080
81static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *);
82static int fcoe_hostlist_add(const struct fc_lport *);
Vasu Devfdd780272009-03-17 11:42:24 -070083
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);
Yi Zou71f89492011-06-20 16:59:10 -0700101static int fcoe_ddp_target(struct fc_lport *, u16, struct scatterlist *,
102 unsigned int);
Robert Love1875f272009-11-03 11:47:50 -0800103static int fcoe_cpu_callback(struct notifier_block *, unsigned long, void *);
104
Yi Zou78a58242011-01-28 16:05:16 -0800105static bool fcoe_match(struct net_device *netdev);
106static int fcoe_create(struct net_device *netdev, enum fip_state fip_mode);
107static int fcoe_destroy(struct net_device *netdev);
108static int fcoe_enable(struct net_device *netdev);
109static int fcoe_disable(struct net_device *netdev);
Robert Love1875f272009-11-03 11:47:50 -0800110
Robert Love1875f272009-11-03 11:47:50 -0800111static struct fc_seq *fcoe_elsct_send(struct fc_lport *,
112 u32 did, struct fc_frame *,
113 unsigned int op,
114 void (*resp)(struct fc_seq *,
115 struct fc_frame *,
116 void *),
117 void *, u32 timeout);
Chris Leech859b7b62009-11-20 14:54:47 -0800118static void fcoe_recv_frame(struct sk_buff *skb);
Robert Love1875f272009-11-03 11:47:50 -0800119
Yi Zoub84056b2009-11-20 14:55:19 -0800120static void fcoe_get_lesb(struct fc_lport *, struct fc_els_lesb *);
121
Robert Love1875f272009-11-03 11:47:50 -0800122/* notification function for packets from net device */
Robert Love85b4aa42008-12-09 15:10:24 -0800123static struct notifier_block fcoe_notifier = {
124 .notifier_call = fcoe_device_notification,
125};
126
Robert Love1875f272009-11-03 11:47:50 -0800127/* notification function for CPU hotplug events */
128static struct notifier_block fcoe_cpu_notifier = {
129 .notifier_call = fcoe_cpu_callback,
130};
131
Yi Zou8ca86f82011-01-28 16:05:11 -0800132static struct scsi_transport_template *fcoe_nport_scsi_transport;
133static struct scsi_transport_template *fcoe_vport_scsi_transport;
Vasu Dev7f349142009-03-27 09:06:31 -0700134
Robert Love1875f272009-11-03 11:47:50 -0800135static int fcoe_vport_destroy(struct fc_vport *);
136static int fcoe_vport_create(struct fc_vport *, bool disabled);
137static int fcoe_vport_disable(struct fc_vport *, bool disable);
138static void fcoe_set_vport_symbolic_name(struct fc_vport *);
Joe Eykholt7d65b0d2010-03-12 16:08:02 -0800139static void fcoe_set_port_id(struct fc_lport *, u32, struct fc_frame *);
Robert Love1875f272009-11-03 11:47:50 -0800140
141static struct libfc_function_template fcoe_libfc_fcn_templ = {
142 .frame_send = fcoe_xmit,
143 .ddp_setup = fcoe_ddp_setup,
144 .ddp_done = fcoe_ddp_done,
Yi Zou71f89492011-06-20 16:59:10 -0700145 .ddp_target = fcoe_ddp_target,
Robert Love1875f272009-11-03 11:47:50 -0800146 .elsct_send = fcoe_elsct_send,
Yi Zoub84056b2009-11-20 14:55:19 -0800147 .get_lesb = fcoe_get_lesb,
Joe Eykholt7d65b0d2010-03-12 16:08:02 -0800148 .lport_set_port_id = fcoe_set_port_id,
Robert Love1875f272009-11-03 11:47:50 -0800149};
Chris Leech9a057532009-11-03 11:46:40 -0800150
Yi Zou8ca86f82011-01-28 16:05:11 -0800151struct fc_function_template fcoe_nport_fc_functions = {
Vasu Dev7f349142009-03-27 09:06:31 -0700152 .show_host_node_name = 1,
153 .show_host_port_name = 1,
154 .show_host_supported_classes = 1,
155 .show_host_supported_fc4s = 1,
156 .show_host_active_fc4s = 1,
157 .show_host_maxframe_size = 1,
158
159 .show_host_port_id = 1,
160 .show_host_supported_speeds = 1,
161 .get_host_speed = fc_get_host_speed,
162 .show_host_speed = 1,
163 .show_host_port_type = 1,
164 .get_host_port_state = fc_get_host_port_state,
165 .show_host_port_state = 1,
166 .show_host_symbolic_name = 1,
167
168 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
169 .show_rport_maxframe_size = 1,
170 .show_rport_supported_classes = 1,
171
172 .show_host_fabric_name = 1,
173 .show_starget_node_name = 1,
174 .show_starget_port_name = 1,
175 .show_starget_port_id = 1,
176 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
177 .show_rport_dev_loss_tmo = 1,
178 .get_fc_host_stats = fc_get_host_stats,
179 .issue_fc_host_lip = fcoe_reset,
180
181 .terminate_rport_io = fc_rport_terminate_io,
Chris Leech9a057532009-11-03 11:46:40 -0800182
183 .vport_create = fcoe_vport_create,
184 .vport_delete = fcoe_vport_destroy,
185 .vport_disable = fcoe_vport_disable,
Chris Leechdc8596d2009-11-03 11:47:18 -0800186 .set_vport_symbolic_name = fcoe_set_vport_symbolic_name,
Steve Maa51ab392009-11-03 11:47:34 -0800187
188 .bsg_request = fc_lport_bsg_request,
Vasu Dev7f349142009-03-27 09:06:31 -0700189};
190
Yi Zou8ca86f82011-01-28 16:05:11 -0800191struct fc_function_template fcoe_vport_fc_functions = {
Chris Leeche9084bb2009-11-03 11:46:34 -0800192 .show_host_node_name = 1,
193 .show_host_port_name = 1,
194 .show_host_supported_classes = 1,
195 .show_host_supported_fc4s = 1,
196 .show_host_active_fc4s = 1,
197 .show_host_maxframe_size = 1,
198
199 .show_host_port_id = 1,
200 .show_host_supported_speeds = 1,
201 .get_host_speed = fc_get_host_speed,
202 .show_host_speed = 1,
203 .show_host_port_type = 1,
204 .get_host_port_state = fc_get_host_port_state,
205 .show_host_port_state = 1,
206 .show_host_symbolic_name = 1,
207
208 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
209 .show_rport_maxframe_size = 1,
210 .show_rport_supported_classes = 1,
211
212 .show_host_fabric_name = 1,
213 .show_starget_node_name = 1,
214 .show_starget_port_name = 1,
215 .show_starget_port_id = 1,
216 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
217 .show_rport_dev_loss_tmo = 1,
218 .get_fc_host_stats = fc_get_host_stats,
219 .issue_fc_host_lip = fcoe_reset,
220
221 .terminate_rport_io = fc_rport_terminate_io,
Steve Maa51ab392009-11-03 11:47:34 -0800222
223 .bsg_request = fc_lport_bsg_request,
Chris Leeche9084bb2009-11-03 11:46:34 -0800224};
225
Vasu Dev7f349142009-03-27 09:06:31 -0700226static struct scsi_host_template fcoe_shost_template = {
227 .module = THIS_MODULE,
228 .name = "FCoE Driver",
229 .proc_name = FCOE_NAME,
230 .queuecommand = fc_queuecommand,
231 .eh_abort_handler = fc_eh_abort,
232 .eh_device_reset_handler = fc_eh_device_reset,
233 .eh_host_reset_handler = fc_eh_host_reset,
234 .slave_alloc = fc_slave_alloc,
235 .change_queue_depth = fc_change_queue_depth,
236 .change_queue_type = fc_change_queue_type,
237 .this_id = -1,
Vasu Dev14caf442009-10-15 17:46:55 -0700238 .cmd_per_lun = 3,
Vasu Dev7f349142009-03-27 09:06:31 -0700239 .can_queue = FCOE_MAX_OUTSTANDING_COMMANDS,
240 .use_clustering = ENABLE_CLUSTERING,
241 .sg_tablesize = SG_ALL,
242 .max_sectors = 0xffff,
243};
244
Chris Leech54b649f2009-08-25 14:00:07 -0700245/**
Robert Love1875f272009-11-03 11:47:50 -0800246 * fcoe_interface_setup() - Setup a FCoE interface
247 * @fcoe: The new FCoE interface
248 * @netdev: The net device that the fcoe interface is on
Chris Leech54b649f2009-08-25 14:00:07 -0700249 *
250 * Returns : 0 for success
Chris Leech2e70e242009-08-25 14:00:23 -0700251 * Locking: must be called with the RTNL mutex held
Chris Leech54b649f2009-08-25 14:00:07 -0700252 */
253static int fcoe_interface_setup(struct fcoe_interface *fcoe,
254 struct net_device *netdev)
255{
256 struct fcoe_ctlr *fip = &fcoe->ctlr;
257 struct netdev_hw_addr *ha;
Yi Zou5bab87e2009-11-03 11:49:43 -0800258 struct net_device *real_dev;
Chris Leech54b649f2009-08-25 14:00:07 -0700259 u8 flogi_maddr[ETH_ALEN];
Yi Zoub7a727f2009-10-21 16:28:03 -0700260 const struct net_device_ops *ops;
Chris Leech54b649f2009-08-25 14:00:07 -0700261
262 fcoe->netdev = netdev;
263
Yi Zoub7a727f2009-10-21 16:28:03 -0700264 /* Let LLD initialize for FCoE */
265 ops = netdev->netdev_ops;
266 if (ops->ndo_fcoe_enable) {
267 if (ops->ndo_fcoe_enable(netdev))
268 FCOE_NETDEV_DBG(netdev, "Failed to enable FCoE"
269 " specific feature for LLD.\n");
270 }
271
Chris Leech54b649f2009-08-25 14:00:07 -0700272 /* Do not support for bonding device */
Jiri Pirkocc8bdf02011-03-01 20:05:35 +0000273 if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) {
john fastabend59d92512009-11-03 11:48:44 -0800274 FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n");
Chris Leech54b649f2009-08-25 14:00:07 -0700275 return -EOPNOTSUPP;
276 }
277
278 /* look for SAN MAC address, if multiple SAN MACs exist, only
279 * use the first one for SPMA */
Yi Zou5bab87e2009-11-03 11:49:43 -0800280 real_dev = (netdev->priv_flags & IFF_802_1Q_VLAN) ?
281 vlan_dev_real_dev(netdev) : netdev;
Vasu Devd1483bb2011-09-27 21:38:13 -0700282 fcoe->realdev = real_dev;
Chris Leech54b649f2009-08-25 14:00:07 -0700283 rcu_read_lock();
Yi Zou5bab87e2009-11-03 11:49:43 -0800284 for_each_dev_addr(real_dev, ha) {
Chris Leech54b649f2009-08-25 14:00:07 -0700285 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
Yi Zoubf361702009-11-03 11:49:38 -0800286 (is_valid_ether_addr(ha->addr))) {
Chris Leech54b649f2009-08-25 14:00:07 -0700287 memcpy(fip->ctl_src_addr, ha->addr, ETH_ALEN);
288 fip->spma = 1;
289 break;
290 }
291 }
292 rcu_read_unlock();
293
294 /* setup Source Mac Address */
295 if (!fip->spma)
296 memcpy(fip->ctl_src_addr, netdev->dev_addr, netdev->addr_len);
297
298 /*
299 * Add FCoE MAC address as second unicast MAC address
300 * or enter promiscuous mode if not capable of listening
301 * for multiple unicast MACs.
302 */
Chris Leech54b649f2009-08-25 14:00:07 -0700303 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000304 dev_uc_add(netdev, flogi_maddr);
Chris Leech54b649f2009-08-25 14:00:07 -0700305 if (fip->spma)
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000306 dev_uc_add(netdev, fip->ctl_src_addr);
Joe Eykholte10f8c62010-07-20 15:20:30 -0700307 if (fip->mode == FIP_MODE_VN2VN) {
308 dev_mc_add(netdev, FIP_ALL_VN2VN_MACS);
309 dev_mc_add(netdev, FIP_ALL_P2P_MACS);
310 } else
311 dev_mc_add(netdev, FIP_ALL_ENODE_MACS);
Chris Leech54b649f2009-08-25 14:00:07 -0700312
313 /*
314 * setup the receive function from ethernet driver
315 * on the ethertype for the given device
316 */
317 fcoe->fcoe_packet_type.func = fcoe_rcv;
318 fcoe->fcoe_packet_type.type = __constant_htons(ETH_P_FCOE);
319 fcoe->fcoe_packet_type.dev = netdev;
320 dev_add_pack(&fcoe->fcoe_packet_type);
321
322 fcoe->fip_packet_type.func = fcoe_fip_recv;
323 fcoe->fip_packet_type.type = htons(ETH_P_FIP);
324 fcoe->fip_packet_type.dev = netdev;
325 dev_add_pack(&fcoe->fip_packet_type);
326
327 return 0;
328}
329
Vasu Dev7f349142009-03-27 09:06:31 -0700330/**
Robert Love1875f272009-11-03 11:47:50 -0800331 * fcoe_interface_create() - Create a FCoE interface on a net device
332 * @netdev: The net device to create the FCoE interface on
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700333 * @fip_mode: The mode to use for FIP
Chris Leech030f4e02009-08-25 14:00:02 -0700334 *
335 * Returns: pointer to a struct fcoe_interface or NULL on error
336 */
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700337static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev,
338 enum fip_state fip_mode)
Chris Leech030f4e02009-08-25 14:00:02 -0700339{
340 struct fcoe_interface *fcoe;
john fastabend59d92512009-11-03 11:48:44 -0800341 int err;
Chris Leech030f4e02009-08-25 14:00:02 -0700342
Robert Love7287fb92011-01-28 16:03:47 -0800343 if (!try_module_get(THIS_MODULE)) {
344 FCOE_NETDEV_DBG(netdev,
345 "Could not get a reference to the module\n");
346 fcoe = ERR_PTR(-EBUSY);
347 goto out;
348 }
349
Chris Leech030f4e02009-08-25 14:00:02 -0700350 fcoe = kzalloc(sizeof(*fcoe), GFP_KERNEL);
351 if (!fcoe) {
352 FCOE_NETDEV_DBG(netdev, "Could not allocate fcoe structure\n");
Robert Love7287fb92011-01-28 16:03:47 -0800353 fcoe = ERR_PTR(-ENOMEM);
354 goto out_nomod;
Chris Leech030f4e02009-08-25 14:00:02 -0700355 }
356
Chris Leech2e70e242009-08-25 14:00:23 -0700357 dev_hold(netdev);
Chris Leech030f4e02009-08-25 14:00:02 -0700358 kref_init(&fcoe->kref);
Chris Leech54b649f2009-08-25 14:00:07 -0700359
360 /*
361 * Initialize FIP.
362 */
Joe Eykholt1dd454d2010-07-20 15:20:46 -0700363 fcoe_ctlr_init(&fcoe->ctlr, fip_mode);
Chris Leech54b649f2009-08-25 14:00:07 -0700364 fcoe->ctlr.send = fcoe_fip_send;
365 fcoe->ctlr.update_mac = fcoe_update_src_mac;
Chris Leech11b56182009-11-03 11:46:29 -0800366 fcoe->ctlr.get_src_addr = fcoe_get_src_mac;
Chris Leech54b649f2009-08-25 14:00:07 -0700367
john fastabend59d92512009-11-03 11:48:44 -0800368 err = fcoe_interface_setup(fcoe, netdev);
369 if (err) {
370 fcoe_ctlr_destroy(&fcoe->ctlr);
371 kfree(fcoe);
372 dev_put(netdev);
Robert Love7287fb92011-01-28 16:03:47 -0800373 fcoe = ERR_PTR(err);
374 goto out_nomod;
john fastabend59d92512009-11-03 11:48:44 -0800375 }
Chris Leech030f4e02009-08-25 14:00:02 -0700376
Robert Love7287fb92011-01-28 16:03:47 -0800377 goto out;
378
379out_nomod:
380 module_put(THIS_MODULE);
381out:
Chris Leech030f4e02009-08-25 14:00:02 -0700382 return fcoe;
383}
384
385/**
386 * fcoe_interface_release() - fcoe_port kref release function
Robert Love1875f272009-11-03 11:47:50 -0800387 * @kref: Embedded reference count in an fcoe_interface struct
Chris Leech030f4e02009-08-25 14:00:02 -0700388 */
389static void fcoe_interface_release(struct kref *kref)
390{
391 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -0700392 struct net_device *netdev;
Chris Leech030f4e02009-08-25 14:00:02 -0700393
394 fcoe = container_of(kref, struct fcoe_interface, kref);
Chris Leech2e70e242009-08-25 14:00:23 -0700395 netdev = fcoe->netdev;
396 /* tear-down the FCoE controller */
397 fcoe_ctlr_destroy(&fcoe->ctlr);
Chris Leech030f4e02009-08-25 14:00:02 -0700398 kfree(fcoe);
Chris Leech2e70e242009-08-25 14:00:23 -0700399 dev_put(netdev);
Robert Love7287fb92011-01-28 16:03:47 -0800400 module_put(THIS_MODULE);
Chris Leech030f4e02009-08-25 14:00:02 -0700401}
402
403/**
Robert Love1875f272009-11-03 11:47:50 -0800404 * fcoe_interface_get() - Get a reference to a FCoE interface
405 * @fcoe: The FCoE interface to be held
Chris Leech030f4e02009-08-25 14:00:02 -0700406 */
407static inline void fcoe_interface_get(struct fcoe_interface *fcoe)
408{
409 kref_get(&fcoe->kref);
410}
411
412/**
Robert Love1875f272009-11-03 11:47:50 -0800413 * fcoe_interface_put() - Put a reference to a FCoE interface
414 * @fcoe: The FCoE interface to be released
Chris Leech030f4e02009-08-25 14:00:02 -0700415 */
416static inline void fcoe_interface_put(struct fcoe_interface *fcoe)
417{
418 kref_put(&fcoe->kref, fcoe_interface_release);
419}
420
421/**
Vasu Devf04ca1b2011-04-01 16:06:45 -0700422 * fcoe_interface_cleanup() - Clean up a FCoE interface
423 * @fcoe: The FCoE interface to be cleaned up
424 *
425 * Caller must be holding the RTNL mutex
426 */
427void fcoe_interface_cleanup(struct fcoe_interface *fcoe)
428{
429 struct net_device *netdev = fcoe->netdev;
430 struct fcoe_ctlr *fip = &fcoe->ctlr;
431 u8 flogi_maddr[ETH_ALEN];
432 const struct net_device_ops *ops;
Vasu Devf04ca1b2011-04-01 16:06:45 -0700433
Robert Love848e7d52011-08-25 12:40:47 -0700434 rtnl_lock();
435
Vasu Devf04ca1b2011-04-01 16:06:45 -0700436 /*
437 * Don't listen for Ethernet packets anymore.
438 * synchronize_net() ensures that the packet handlers are not running
439 * on another CPU. dev_remove_pack() would do that, this calls the
440 * unsyncronized version __dev_remove_pack() to avoid multiple delays.
441 */
442 __dev_remove_pack(&fcoe->fcoe_packet_type);
443 __dev_remove_pack(&fcoe->fip_packet_type);
444 synchronize_net();
445
446 /* Delete secondary MAC addresses */
447 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
448 dev_uc_del(netdev, flogi_maddr);
449 if (fip->spma)
450 dev_uc_del(netdev, fip->ctl_src_addr);
451 if (fip->mode == FIP_MODE_VN2VN) {
452 dev_mc_del(netdev, FIP_ALL_VN2VN_MACS);
453 dev_mc_del(netdev, FIP_ALL_P2P_MACS);
454 } else
455 dev_mc_del(netdev, FIP_ALL_ENODE_MACS);
456
Vasu Devf04ca1b2011-04-01 16:06:45 -0700457 /* Tell the LLD we are done w/ FCoE */
458 ops = netdev->netdev_ops;
459 if (ops->ndo_fcoe_disable) {
460 if (ops->ndo_fcoe_disable(netdev))
461 FCOE_NETDEV_DBG(netdev, "Failed to disable FCoE"
462 " specific feature for LLD.\n");
463 }
Neerav Parikhb2085a42011-06-20 16:59:51 -0700464
Robert Love848e7d52011-08-25 12:40:47 -0700465 rtnl_unlock();
466
Neerav Parikhb2085a42011-06-20 16:59:51 -0700467 /* Release the self-reference taken during fcoe_interface_create() */
Vasu Devf04ca1b2011-04-01 16:06:45 -0700468 fcoe_interface_put(fcoe);
469}
470
471/**
Robert Love1875f272009-11-03 11:47:50 -0800472 * fcoe_fip_recv() - Handler for received FIP frames
473 * @skb: The receive skb
474 * @netdev: The associated net device
475 * @ptype: The packet_type structure which was used to register this handler
476 * @orig_dev: The original net_device the the skb was received on.
477 * (in case dev is a bond)
Vasu Devab6b85c2009-05-17 12:33:08 +0000478 *
479 * Returns: 0 for success
480 */
Robert Love1875f272009-11-03 11:47:50 -0800481static int fcoe_fip_recv(struct sk_buff *skb, struct net_device *netdev,
Vasu Devab6b85c2009-05-17 12:33:08 +0000482 struct packet_type *ptype,
483 struct net_device *orig_dev)
484{
Chris Leech259ad852009-08-25 13:59:41 -0700485 struct fcoe_interface *fcoe;
Vasu Devab6b85c2009-05-17 12:33:08 +0000486
Chris Leech259ad852009-08-25 13:59:41 -0700487 fcoe = container_of(ptype, struct fcoe_interface, fip_packet_type);
Chris Leech3fe9a0b2009-08-25 13:59:46 -0700488 fcoe_ctlr_recv(&fcoe->ctlr, skb);
Vasu Devab6b85c2009-05-17 12:33:08 +0000489 return 0;
490}
491
492/**
Vasu Dev980f5152011-07-27 15:11:05 -0700493 * fcoe_port_send() - Send an Ethernet-encapsulated FIP/FCoE frame
494 * @port: The FCoE port
495 * @skb: The FIP/FCoE packet to be sent
496 */
497static void fcoe_port_send(struct fcoe_port *port, struct sk_buff *skb)
498{
499 if (port->fcoe_pending_queue.qlen)
500 fcoe_check_wait_queue(port->lport, skb);
501 else if (fcoe_start_io(skb))
502 fcoe_check_wait_queue(port->lport, skb);
503}
504
505/**
Robert Love1875f272009-11-03 11:47:50 -0800506 * fcoe_fip_send() - Send an Ethernet-encapsulated FIP frame
507 * @fip: The FCoE controller
508 * @skb: The FIP packet to be sent
Vasu Devab6b85c2009-05-17 12:33:08 +0000509 */
510static void fcoe_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
511{
Chris Leech3fe9a0b2009-08-25 13:59:46 -0700512 skb->dev = fcoe_from_ctlr(fip)->netdev;
Vasu Dev980f5152011-07-27 15:11:05 -0700513 fcoe_port_send(lport_priv(fip->lp), skb);
Vasu Devab6b85c2009-05-17 12:33:08 +0000514}
515
516/**
Robert Love1875f272009-11-03 11:47:50 -0800517 * fcoe_update_src_mac() - Update the Ethernet MAC filters
518 * @lport: The local port to update the source MAC on
519 * @addr: Unicast MAC address to add
Vasu Devab6b85c2009-05-17 12:33:08 +0000520 *
521 * Remove any previously-set unicast MAC filter.
522 * Add secondary FCoE MAC address filter for our OUI.
523 */
Chris Leech11b56182009-11-03 11:46:29 -0800524static void fcoe_update_src_mac(struct fc_lport *lport, u8 *addr)
Vasu Devab6b85c2009-05-17 12:33:08 +0000525{
Chris Leech11b56182009-11-03 11:46:29 -0800526 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800527 struct fcoe_interface *fcoe = port->priv;
Vasu Devab6b85c2009-05-17 12:33:08 +0000528
Vasu Devab6b85c2009-05-17 12:33:08 +0000529 rtnl_lock();
Chris Leech11b56182009-11-03 11:46:29 -0800530 if (!is_zero_ether_addr(port->data_src_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000531 dev_uc_del(fcoe->netdev, port->data_src_addr);
Chris Leech11b56182009-11-03 11:46:29 -0800532 if (!is_zero_ether_addr(addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000533 dev_uc_add(fcoe->netdev, addr);
Chris Leech11b56182009-11-03 11:46:29 -0800534 memcpy(port->data_src_addr, addr, ETH_ALEN);
Vasu Devab6b85c2009-05-17 12:33:08 +0000535 rtnl_unlock();
536}
537
538/**
Chris Leech11b56182009-11-03 11:46:29 -0800539 * fcoe_get_src_mac() - return the Ethernet source address for an lport
540 * @lport: libfc lport
541 */
542static u8 *fcoe_get_src_mac(struct fc_lport *lport)
543{
544 struct fcoe_port *port = lport_priv(lport);
545
546 return port->data_src_addr;
547}
548
549/**
Robert Love1875f272009-11-03 11:47:50 -0800550 * fcoe_lport_config() - Set up a local port
551 * @lport: The local port to be setup
Vasu Dev7f349142009-03-27 09:06:31 -0700552 *
553 * Returns: 0 for success
554 */
Robert Love1875f272009-11-03 11:47:50 -0800555static int fcoe_lport_config(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700556{
Robert Love1875f272009-11-03 11:47:50 -0800557 lport->link_up = 0;
558 lport->qfull = 0;
559 lport->max_retry_count = 3;
560 lport->max_rport_retry_count = 3;
561 lport->e_d_tov = 2 * 1000; /* FC-FS default */
562 lport->r_a_tov = 2 * 2 * 1000;
563 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
564 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
565 lport->does_npiv = 1;
Vasu Dev7f349142009-03-27 09:06:31 -0700566
Robert Love1875f272009-11-03 11:47:50 -0800567 fc_lport_init_stats(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700568
569 /* lport fc_lport related configuration */
Robert Love1875f272009-11-03 11:47:50 -0800570 fc_lport_config(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700571
572 /* offload related configuration */
Robert Love1875f272009-11-03 11:47:50 -0800573 lport->crc_offload = 0;
574 lport->seq_offload = 0;
575 lport->lro_enabled = 0;
576 lport->lro_xid = 0;
577 lport->lso_max = 0;
Vasu Dev7f349142009-03-27 09:06:31 -0700578
579 return 0;
580}
581
582/**
Yi Zou54a5b212010-07-20 15:21:17 -0700583 * fcoe_netdev_features_change - Updates the lport's offload flags based
584 * on the LLD netdev's FCoE feature flags
585 */
586static void fcoe_netdev_features_change(struct fc_lport *lport,
587 struct net_device *netdev)
588{
589 mutex_lock(&lport->lp_mutex);
590
591 if (netdev->features & NETIF_F_SG)
592 lport->sg_supp = 1;
593 else
594 lport->sg_supp = 0;
595
596 if (netdev->features & NETIF_F_FCOE_CRC) {
597 lport->crc_offload = 1;
598 FCOE_NETDEV_DBG(netdev, "Supports FCCRC offload\n");
599 } else {
600 lport->crc_offload = 0;
601 }
602
603 if (netdev->features & NETIF_F_FSO) {
604 lport->seq_offload = 1;
605 lport->lso_max = netdev->gso_max_size;
606 FCOE_NETDEV_DBG(netdev, "Supports LSO for max len 0x%x\n",
607 lport->lso_max);
608 } else {
609 lport->seq_offload = 0;
610 lport->lso_max = 0;
611 }
612
613 if (netdev->fcoe_ddp_xid) {
614 lport->lro_enabled = 1;
615 lport->lro_xid = netdev->fcoe_ddp_xid;
616 FCOE_NETDEV_DBG(netdev, "Supports LRO for max xid 0x%x\n",
617 lport->lro_xid);
618 } else {
619 lport->lro_enabled = 0;
620 lport->lro_xid = 0;
621 }
622
623 mutex_unlock(&lport->lp_mutex);
624}
625
626/**
Robert Love1875f272009-11-03 11:47:50 -0800627 * fcoe_netdev_config() - Set up net devive for SW FCoE
628 * @lport: The local port that is associated with the net device
629 * @netdev: The associated net device
Vasu Dev7f349142009-03-27 09:06:31 -0700630 *
Robert Love1875f272009-11-03 11:47:50 -0800631 * Must be called after fcoe_lport_config() as it will use local port mutex
Vasu Dev7f349142009-03-27 09:06:31 -0700632 *
Robert Love1875f272009-11-03 11:47:50 -0800633 * Returns: 0 for success
Vasu Dev7f349142009-03-27 09:06:31 -0700634 */
Robert Love1875f272009-11-03 11:47:50 -0800635static int fcoe_netdev_config(struct fc_lport *lport, struct net_device *netdev)
Vasu Dev7f349142009-03-27 09:06:31 -0700636{
637 u32 mfs;
638 u64 wwnn, wwpn;
Chris Leech25024982009-08-25 13:59:35 -0700639 struct fcoe_interface *fcoe;
Chris Leech014f5c32009-08-25 13:59:30 -0700640 struct fcoe_port *port;
Vasu Dev7f349142009-03-27 09:06:31 -0700641
642 /* Setup lport private data to point to fcoe softc */
Robert Love1875f272009-11-03 11:47:50 -0800643 port = lport_priv(lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800644 fcoe = port->priv;
Vasu Dev7f349142009-03-27 09:06:31 -0700645
646 /*
647 * Determine max frame size based on underlying device and optional
648 * user-configured limit. If the MFS is too low, fcoe_link_ok()
649 * will return 0, so do this first.
650 */
Yi Zou7221d7e2009-10-21 16:27:52 -0700651 mfs = netdev->mtu;
652 if (netdev->features & NETIF_F_FCOE_MTU) {
653 mfs = FCOE_MTU;
654 FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs);
655 }
656 mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof));
Robert Love1875f272009-11-03 11:47:50 -0800657 if (fc_set_mfs(lport, mfs))
Vasu Dev7f349142009-03-27 09:06:31 -0700658 return -EINVAL;
659
Vasu Dev7f349142009-03-27 09:06:31 -0700660 /* offload features support */
Yi Zou54a5b212010-07-20 15:21:17 -0700661 fcoe_netdev_features_change(lport, netdev);
Vasu Dev7f349142009-03-27 09:06:31 -0700662
Chris Leech014f5c32009-08-25 13:59:30 -0700663 skb_queue_head_init(&port->fcoe_pending_queue);
664 port->fcoe_pending_queue_active = 0;
Robert Love1875f272009-11-03 11:47:50 -0800665 setup_timer(&port->timer, fcoe_queue_timer, (unsigned long)lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700666
Robert Love5e4f8fe2010-05-07 15:18:35 -0700667 fcoe_link_speed_update(lport);
668
Robert Love1875f272009-11-03 11:47:50 -0800669 if (!lport->vport) {
Yi Zoudcece412009-11-20 15:22:21 -0800670 if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN))
671 wwnn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr, 1, 0);
Robert Love1875f272009-11-03 11:47:50 -0800672 fc_set_wwnn(lport, wwnn);
Yi Zoudcece412009-11-20 15:22:21 -0800673 if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN))
674 wwpn = fcoe_wwn_from_mac(fcoe->ctlr.ctl_src_addr,
Vasu Devcf4aebca2010-07-20 15:21:22 -0700675 2, 0);
Robert Love1875f272009-11-03 11:47:50 -0800676 fc_set_wwpn(lport, wwpn);
Chris Leech9a057532009-11-03 11:46:40 -0800677 }
Vasu Dev7f349142009-03-27 09:06:31 -0700678
Vasu Dev7f349142009-03-27 09:06:31 -0700679 return 0;
680}
681
682/**
Robert Love1875f272009-11-03 11:47:50 -0800683 * fcoe_shost_config() - Set up the SCSI host associated with a local port
684 * @lport: The local port
Robert Love1875f272009-11-03 11:47:50 -0800685 * @dev: The device associated with the SCSI host
Vasu Dev7f349142009-03-27 09:06:31 -0700686 *
687 * Must be called after fcoe_lport_config() and fcoe_netdev_config()
688 *
Robert Love1875f272009-11-03 11:47:50 -0800689 * Returns: 0 for success
Vasu Dev7f349142009-03-27 09:06:31 -0700690 */
Vasu Dev8ba00a42010-04-09 14:22:54 -0700691static int fcoe_shost_config(struct fc_lport *lport, struct device *dev)
Vasu Dev7f349142009-03-27 09:06:31 -0700692{
693 int rc = 0;
694
695 /* lport scsi host config */
Robert Love1875f272009-11-03 11:47:50 -0800696 lport->host->max_lun = FCOE_MAX_LUN;
697 lport->host->max_id = FCOE_MAX_FCP_TARGET;
698 lport->host->max_channel = 0;
Vasu Devda87bfa2010-04-09 14:22:59 -0700699 lport->host->max_cmd_len = FCOE_MAX_CMD_LEN;
700
Robert Love1875f272009-11-03 11:47:50 -0800701 if (lport->vport)
Yi Zou8ca86f82011-01-28 16:05:11 -0800702 lport->host->transportt = fcoe_vport_scsi_transport;
Chris Leeche9084bb2009-11-03 11:46:34 -0800703 else
Yi Zou8ca86f82011-01-28 16:05:11 -0800704 lport->host->transportt = fcoe_nport_scsi_transport;
Vasu Dev7f349142009-03-27 09:06:31 -0700705
706 /* add the new host to the SCSI-ml */
Robert Love1875f272009-11-03 11:47:50 -0800707 rc = scsi_add_host(lport->host, dev);
Vasu Dev7f349142009-03-27 09:06:31 -0700708 if (rc) {
Robert Love1875f272009-11-03 11:47:50 -0800709 FCOE_NETDEV_DBG(fcoe_netdev(lport), "fcoe_shost_config: "
Robert Loved5488eb2009-06-10 15:30:59 -0700710 "error on scsi_add_host\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700711 return rc;
712 }
Chris Leech9a057532009-11-03 11:46:40 -0800713
Robert Love1875f272009-11-03 11:47:50 -0800714 if (!lport->vport)
Alexey Dobriyan4be929b2010-05-24 14:33:03 -0700715 fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
Chris Leech9a057532009-11-03 11:46:40 -0800716
Robert Love1875f272009-11-03 11:47:50 -0800717 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
Chris Leech5baa17c2009-11-03 11:46:56 -0800718 "%s v%s over %s", FCOE_NAME, FCOE_VERSION,
Robert Love1875f272009-11-03 11:47:50 -0800719 fcoe_netdev(lport)->name);
Vasu Dev7f349142009-03-27 09:06:31 -0700720
721 return 0;
722}
723
Robert Love1875f272009-11-03 11:47:50 -0800724/**
725 * fcoe_oem_match() - The match routine for the offloaded exchange manager
726 * @fp: The I/O frame
Vasu Devd7179682009-07-29 17:05:21 -0700727 *
Robert Love1875f272009-11-03 11:47:50 -0800728 * This routine will be associated with an exchange manager (EM). When
729 * the libfc exchange handling code is looking for an EM to use it will
730 * call this routine and pass it the frame that it wishes to send. This
731 * routine will return True if the associated EM is to be used and False
732 * if the echange code should continue looking for an EM.
733 *
734 * The offload EM that this routine is associated with will handle any
735 * packets that are for SCSI read requests.
736 *
Kiran Patil1ff99182011-06-20 16:59:15 -0700737 * This has been enhanced to work when FCoE stack is operating in target
738 * mode.
739 *
Robert Love1875f272009-11-03 11:47:50 -0800740 * Returns: True for read types I/O, otherwise returns false.
Vasu Devd7179682009-07-29 17:05:21 -0700741 */
742bool fcoe_oem_match(struct fc_frame *fp)
743{
Kiran Patil1ff99182011-06-20 16:59:15 -0700744 struct fc_frame_header *fh = fc_frame_header_get(fp);
745 struct fcp_cmnd *fcp;
746
747 if (fc_fcp_is_read(fr_fsp(fp)) &&
748 (fr_fsp(fp)->data_len > fcoe_ddp_min))
749 return true;
750 else if (!(ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)) {
751 fcp = fc_frame_payload_get(fp, sizeof(*fcp));
752 if (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN &&
753 fcp && (ntohl(fcp->fc_dl) > fcoe_ddp_min) &&
754 (fcp->fc_flags & FCP_CFL_WRDATA))
755 return true;
756 }
757 return false;
Vasu Devd7179682009-07-29 17:05:21 -0700758}
759
Vasu Dev7f349142009-03-27 09:06:31 -0700760/**
Robert Love1875f272009-11-03 11:47:50 -0800761 * fcoe_em_config() - Allocate and configure an exchange manager
762 * @lport: The local port that the new EM will be associated with
Vasu Dev7f349142009-03-27 09:06:31 -0700763 *
Robert Love1875f272009-11-03 11:47:50 -0800764 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -0700765 */
Robert Love1875f272009-11-03 11:47:50 -0800766static inline int fcoe_em_config(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700767{
Robert Love1875f272009-11-03 11:47:50 -0800768 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800769 struct fcoe_interface *fcoe = port->priv;
Chris Leech25024982009-08-25 13:59:35 -0700770 struct fcoe_interface *oldfcoe = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700771 struct net_device *old_real_dev, *cur_real_dev;
Vasu Devd7179682009-07-29 17:05:21 -0700772 u16 min_xid = FCOE_MIN_XID;
773 u16 max_xid = FCOE_MAX_XID;
774
775 /*
776 * Check if need to allocate an em instance for
777 * offload exchange ids to be shared across all VN_PORTs/lport.
778 */
Robert Love1875f272009-11-03 11:47:50 -0800779 if (!lport->lro_enabled || !lport->lro_xid ||
780 (lport->lro_xid >= max_xid)) {
781 lport->lro_xid = 0;
Vasu Devd7179682009-07-29 17:05:21 -0700782 goto skip_oem;
783 }
784
785 /*
786 * Reuse existing offload em instance in case
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700787 * it is already allocated on real eth device
Vasu Devd7179682009-07-29 17:05:21 -0700788 */
Chris Leech25024982009-08-25 13:59:35 -0700789 if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
790 cur_real_dev = vlan_dev_real_dev(fcoe->netdev);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700791 else
Chris Leech25024982009-08-25 13:59:35 -0700792 cur_real_dev = fcoe->netdev;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700793
Chris Leech25024982009-08-25 13:59:35 -0700794 list_for_each_entry(oldfcoe, &fcoe_hostlist, list) {
Chris Leech25024982009-08-25 13:59:35 -0700795 if (oldfcoe->netdev->priv_flags & IFF_802_1Q_VLAN)
796 old_real_dev = vlan_dev_real_dev(oldfcoe->netdev);
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700797 else
Chris Leech25024982009-08-25 13:59:35 -0700798 old_real_dev = oldfcoe->netdev;
Vasu Dev1d1b88d2009-07-29 17:05:45 -0700799
800 if (cur_real_dev == old_real_dev) {
Chris Leech991cbb62009-08-25 13:59:51 -0700801 fcoe->oem = oldfcoe->oem;
Vasu Devd7179682009-07-29 17:05:21 -0700802 break;
803 }
804 }
805
Chris Leech991cbb62009-08-25 13:59:51 -0700806 if (fcoe->oem) {
Robert Love1875f272009-11-03 11:47:50 -0800807 if (!fc_exch_mgr_add(lport, fcoe->oem, fcoe_oem_match)) {
Vasu Devd7179682009-07-29 17:05:21 -0700808 printk(KERN_ERR "fcoe_em_config: failed to add "
809 "offload em:%p on interface:%s\n",
Chris Leech991cbb62009-08-25 13:59:51 -0700810 fcoe->oem, fcoe->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700811 return -ENOMEM;
812 }
813 } else {
Robert Love1875f272009-11-03 11:47:50 -0800814 fcoe->oem = fc_exch_mgr_alloc(lport, FC_CLASS_3,
815 FCOE_MIN_XID, lport->lro_xid,
816 fcoe_oem_match);
Chris Leech991cbb62009-08-25 13:59:51 -0700817 if (!fcoe->oem) {
Vasu Devd7179682009-07-29 17:05:21 -0700818 printk(KERN_ERR "fcoe_em_config: failed to allocate "
819 "em for offload exches on interface:%s\n",
Chris Leech25024982009-08-25 13:59:35 -0700820 fcoe->netdev->name);
Vasu Devd7179682009-07-29 17:05:21 -0700821 return -ENOMEM;
822 }
823 }
824
825 /*
826 * Exclude offload EM xid range from next EM xid range.
827 */
Robert Love1875f272009-11-03 11:47:50 -0800828 min_xid += lport->lro_xid + 1;
Vasu Devd7179682009-07-29 17:05:21 -0700829
830skip_oem:
Robert Love1875f272009-11-03 11:47:50 -0800831 if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, min_xid, max_xid, NULL)) {
Vasu Devd7179682009-07-29 17:05:21 -0700832 printk(KERN_ERR "fcoe_em_config: failed to "
Chris Leech25024982009-08-25 13:59:35 -0700833 "allocate em on interface %s\n", fcoe->netdev->name);
Vasu Dev7f349142009-03-27 09:06:31 -0700834 return -ENOMEM;
Vasu Devd7179682009-07-29 17:05:21 -0700835 }
Vasu Dev7f349142009-03-27 09:06:31 -0700836
837 return 0;
838}
839
840/**
Robert Love1875f272009-11-03 11:47:50 -0800841 * fcoe_if_destroy() - Tear down a SW FCoE instance
842 * @lport: The local port to be destroyed
Vasu Dev34ce27b2010-05-07 15:18:46 -0700843 *
Vasu Dev7f349142009-03-27 09:06:31 -0700844 */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700845static void fcoe_if_destroy(struct fc_lport *lport)
Vasu Dev7f349142009-03-27 09:06:31 -0700846{
Neerav Parikhb2085a42011-06-20 16:59:51 -0700847 struct fcoe_port *port = lport_priv(lport);
848 struct fcoe_interface *fcoe = port->priv;
849 struct net_device *netdev = fcoe->netdev;
850
851 FCOE_NETDEV_DBG(netdev, "Destroying interface\n");
852
853 /* Logout of the fabric */
854 fc_fabric_logoff(lport);
855
856 /* Cleanup the fc_lport */
857 fc_lport_destroy(lport);
858
859 /* Stop the transmit retry timer */
860 del_timer_sync(&port->timer);
861
862 /* Free existing transmit skbs */
863 fcoe_clean_pending_queue(lport);
864
865 rtnl_lock();
866 if (!is_zero_ether_addr(port->data_src_addr))
867 dev_uc_del(netdev, port->data_src_addr);
868 rtnl_unlock();
869
870 /* Release reference held in fcoe_if_create() */
871 fcoe_interface_put(fcoe);
872
Chris Leech54b649f2009-08-25 14:00:07 -0700873 /* Free queued packets for the per-CPU receive threads */
874 fcoe_percpu_clean(lport);
875
Vasu Dev7f349142009-03-27 09:06:31 -0700876 /* Detach from the scsi-ml */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700877 fc_remove_host(lport->host);
878 scsi_remove_host(lport->host);
Vasu Dev7f349142009-03-27 09:06:31 -0700879
Yi Zou80e736f2010-11-30 16:18:07 -0800880 /* Destroy lport scsi_priv */
881 fc_fcp_destroy(lport);
882
Vasu Dev7f349142009-03-27 09:06:31 -0700883 /* There are no more rports or I/O, free the EM */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700884 fc_exch_mgr_free(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700885
Vasu Dev7f349142009-03-27 09:06:31 -0700886 /* Free memory used by statistical counters */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700887 fc_lport_free_stats(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700888
Chris Leech2e70e242009-08-25 14:00:23 -0700889 /* Release the Scsi_Host */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700890 scsi_host_put(lport->host);
Vasu Dev7f349142009-03-27 09:06:31 -0700891}
892
Robert Love1875f272009-11-03 11:47:50 -0800893/**
894 * fcoe_ddp_setup() - Call a LLD's ddp_setup through the net device
895 * @lport: The local port to setup DDP for
896 * @xid: The exchange ID for this DDP transfer
897 * @sgl: The scatterlist describing this transfer
898 * @sgc: The number of sg items
Vasu Dev7f349142009-03-27 09:06:31 -0700899 *
Robert Love1875f272009-11-03 11:47:50 -0800900 * Returns: 0 if the DDP context was not configured
Vasu Dev7f349142009-03-27 09:06:31 -0700901 */
Robert Love1875f272009-11-03 11:47:50 -0800902static int fcoe_ddp_setup(struct fc_lport *lport, u16 xid,
903 struct scatterlist *sgl, unsigned int sgc)
Vasu Dev7f349142009-03-27 09:06:31 -0700904{
Robert Love1875f272009-11-03 11:47:50 -0800905 struct net_device *netdev = fcoe_netdev(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700906
Robert Love1875f272009-11-03 11:47:50 -0800907 if (netdev->netdev_ops->ndo_fcoe_ddp_setup)
908 return netdev->netdev_ops->ndo_fcoe_ddp_setup(netdev,
909 xid, sgl,
910 sgc);
Vasu Dev7f349142009-03-27 09:06:31 -0700911
912 return 0;
913}
914
Vasu Dev7f349142009-03-27 09:06:31 -0700915/**
Yi Zou71f89492011-06-20 16:59:10 -0700916 * fcoe_ddp_target() - Call a LLD's ddp_target through the net device
917 * @lport: The local port to setup DDP for
918 * @xid: The exchange ID for this DDP transfer
919 * @sgl: The scatterlist describing this transfer
920 * @sgc: The number of sg items
921 *
922 * Returns: 0 if the DDP context was not configured
923 */
924static int fcoe_ddp_target(struct fc_lport *lport, u16 xid,
925 struct scatterlist *sgl, unsigned int sgc)
926{
927 struct net_device *netdev = fcoe_netdev(lport);
928
929 if (netdev->netdev_ops->ndo_fcoe_ddp_target)
930 return netdev->netdev_ops->ndo_fcoe_ddp_target(netdev, xid,
931 sgl, sgc);
932
933 return 0;
934}
935
936
937/**
Robert Love1875f272009-11-03 11:47:50 -0800938 * fcoe_ddp_done() - Call a LLD's ddp_done through the net device
939 * @lport: The local port to complete DDP on
940 * @xid: The exchange ID for this DDP transfer
Vasu Dev7f349142009-03-27 09:06:31 -0700941 *
Robert Love1875f272009-11-03 11:47:50 -0800942 * Returns: the length of data that have been completed by DDP
943 */
944static int fcoe_ddp_done(struct fc_lport *lport, u16 xid)
945{
946 struct net_device *netdev = fcoe_netdev(lport);
947
948 if (netdev->netdev_ops->ndo_fcoe_ddp_done)
949 return netdev->netdev_ops->ndo_fcoe_ddp_done(netdev, xid);
950 return 0;
951}
952
953/**
954 * fcoe_if_create() - Create a FCoE instance on an interface
955 * @fcoe: The FCoE interface to create a local port on
956 * @parent: The device pointer to be the parent in sysfs for the SCSI host
957 * @npiv: Indicates if the port is a vport or not
Vasu Dev7f349142009-03-27 09:06:31 -0700958 *
Robert Love1875f272009-11-03 11:47:50 -0800959 * Creates a fc_lport instance and a Scsi_Host instance and configure them.
960 *
961 * Returns: The allocated fc_lport or an error pointer
Vasu Dev7f349142009-03-27 09:06:31 -0700962 */
Chris Leech030f4e02009-08-25 14:00:02 -0700963static struct fc_lport *fcoe_if_create(struct fcoe_interface *fcoe,
Chris Leech9a057532009-11-03 11:46:40 -0800964 struct device *parent, int npiv)
Vasu Dev7f349142009-03-27 09:06:31 -0700965{
Robert Love1875f272009-11-03 11:47:50 -0800966 struct net_device *netdev = fcoe->netdev;
Vasu Dev72fa3962011-02-25 15:03:01 -0800967 struct fc_lport *lport, *n_port;
Chris Leech014f5c32009-08-25 13:59:30 -0700968 struct fcoe_port *port;
Vasu Dev72fa3962011-02-25 15:03:01 -0800969 struct Scsi_Host *shost;
Robert Love1875f272009-11-03 11:47:50 -0800970 int rc;
Chris Leech9a057532009-11-03 11:46:40 -0800971 /*
972 * parent is only a vport if npiv is 1,
973 * but we'll only use vport in that case so go ahead and set it
974 */
975 struct fc_vport *vport = dev_to_vport(parent);
Vasu Dev7f349142009-03-27 09:06:31 -0700976
Robert Loved5488eb2009-06-10 15:30:59 -0700977 FCOE_NETDEV_DBG(netdev, "Create Interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -0700978
Vasu Dev72fa3962011-02-25 15:03:01 -0800979 if (!npiv)
980 lport = libfc_host_alloc(&fcoe_shost_template, sizeof(*port));
981 else
982 lport = libfc_vport_create(vport, sizeof(*port));
983
Chris Leech86221962009-11-03 11:46:08 -0800984 if (!lport) {
Chris Leech014f5c32009-08-25 13:59:30 -0700985 FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n");
986 rc = -ENOMEM;
Chris Leech030f4e02009-08-25 14:00:02 -0700987 goto out;
Chris Leech014f5c32009-08-25 13:59:30 -0700988 }
Chris Leech014f5c32009-08-25 13:59:30 -0700989 port = lport_priv(lport);
Chris Leech2e70e242009-08-25 14:00:23 -0700990 port->lport = lport;
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800991 port->priv = fcoe;
992 port->max_queue_depth = FCOE_MAX_QUEUE_DEPTH;
993 port->min_queue_depth = FCOE_MIN_QUEUE_DEPTH;
Chris Leech2e70e242009-08-25 14:00:23 -0700994 INIT_WORK(&port->destroy_work, fcoe_destroy_work);
Vasu Dev7f349142009-03-27 09:06:31 -0700995
Robert Love1875f272009-11-03 11:47:50 -0800996 /* configure a fc_lport including the exchange manager */
Chris Leechaf7f85d2009-08-25 13:59:24 -0700997 rc = fcoe_lport_config(lport);
Vasu Dev7f349142009-03-27 09:06:31 -0700998 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -0700999 FCOE_NETDEV_DBG(netdev, "Could not configure lport for the "
1000 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -07001001 goto out_host_put;
1002 }
1003
Chris Leech9a057532009-11-03 11:46:40 -08001004 if (npiv) {
Chris Leech9f8f3aa2010-04-09 14:23:16 -07001005 FCOE_NETDEV_DBG(netdev, "Setting vport names, "
1006 "%16.16llx %16.16llx\n",
Robert Love1875f272009-11-03 11:47:50 -08001007 vport->node_name, vport->port_name);
Chris Leech9a057532009-11-03 11:46:40 -08001008 fc_set_wwnn(lport, vport->node_name);
1009 fc_set_wwpn(lport, vport->port_name);
1010 }
1011
Vasu Devab6b85c2009-05-17 12:33:08 +00001012 /* configure lport network properties */
Chris Leechaf7f85d2009-08-25 13:59:24 -07001013 rc = fcoe_netdev_config(lport, netdev);
Vasu Devab6b85c2009-05-17 12:33:08 +00001014 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -07001015 FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the "
1016 "interface\n");
Chris Leech54b649f2009-08-25 14:00:07 -07001017 goto out_lp_destroy;
Vasu Devab6b85c2009-05-17 12:33:08 +00001018 }
Joe Eykholt97c83892009-03-17 11:42:40 -07001019
Vasu Dev7f349142009-03-27 09:06:31 -07001020 /* configure lport scsi host properties */
Vasu Dev8ba00a42010-04-09 14:22:54 -07001021 rc = fcoe_shost_config(lport, parent);
Vasu Dev7f349142009-03-27 09:06:31 -07001022 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -07001023 FCOE_NETDEV_DBG(netdev, "Could not configure shost for the "
1024 "interface\n");
Chris Leech54b649f2009-08-25 14:00:07 -07001025 goto out_lp_destroy;
Vasu Dev7f349142009-03-27 09:06:31 -07001026 }
1027
Vasu Dev7f349142009-03-27 09:06:31 -07001028 /* Initialize the library */
Joe Eykholte10f8c62010-07-20 15:20:30 -07001029 rc = fcoe_libfc_config(lport, &fcoe->ctlr, &fcoe_libfc_fcn_templ, 1);
Vasu Dev7f349142009-03-27 09:06:31 -07001030 if (rc) {
Robert Loved5488eb2009-06-10 15:30:59 -07001031 FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the "
1032 "interface\n");
Vasu Dev7f349142009-03-27 09:06:31 -07001033 goto out_lp_destroy;
1034 }
1035
Vasu Dev72fa3962011-02-25 15:03:01 -08001036 /*
1037 * fcoe_em_alloc() and fcoe_hostlist_add() both
1038 * need to be atomic with respect to other changes to the
1039 * hostlist since fcoe_em_alloc() looks for an existing EM
1040 * instance on host list updated by fcoe_hostlist_add().
1041 *
1042 * This is currently handled through the fcoe_config_mutex
1043 * begin held.
1044 */
1045 if (!npiv)
Chris Leech9a057532009-11-03 11:46:40 -08001046 /* lport exch manager allocation */
1047 rc = fcoe_em_config(lport);
Vasu Dev72fa3962011-02-25 15:03:01 -08001048 else {
1049 shost = vport_to_shost(vport);
1050 n_port = shost_priv(shost);
1051 rc = fc_exch_mgr_list_clone(n_port, lport);
1052 }
1053
1054 if (rc) {
1055 FCOE_NETDEV_DBG(netdev, "Could not configure the EM\n");
1056 goto out_lp_destroy;
Vasu Dev96316092009-07-29 17:05:00 -07001057 }
1058
Chris Leech030f4e02009-08-25 14:00:02 -07001059 fcoe_interface_get(fcoe);
Chris Leechaf7f85d2009-08-25 13:59:24 -07001060 return lport;
Vasu Dev7f349142009-03-27 09:06:31 -07001061
1062out_lp_destroy:
Chris Leechaf7f85d2009-08-25 13:59:24 -07001063 fc_exch_mgr_free(lport);
Vasu Dev7f349142009-03-27 09:06:31 -07001064out_host_put:
Chris Leechaf7f85d2009-08-25 13:59:24 -07001065 scsi_host_put(lport->host);
1066out:
1067 return ERR_PTR(rc);
Vasu Dev7f349142009-03-27 09:06:31 -07001068}
1069
1070/**
Robert Love1875f272009-11-03 11:47:50 -08001071 * fcoe_if_init() - Initialization routine for fcoe.ko
Vasu Dev7f349142009-03-27 09:06:31 -07001072 *
Robert Love1875f272009-11-03 11:47:50 -08001073 * Attaches the SW FCoE transport to the FC transport
1074 *
1075 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -07001076 */
1077static int __init fcoe_if_init(void)
1078{
1079 /* attach to scsi transport */
Yi Zou8ca86f82011-01-28 16:05:11 -08001080 fcoe_nport_scsi_transport =
1081 fc_attach_transport(&fcoe_nport_fc_functions);
1082 fcoe_vport_scsi_transport =
1083 fc_attach_transport(&fcoe_vport_fc_functions);
Vasu Dev7f349142009-03-27 09:06:31 -07001084
Yi Zou8ca86f82011-01-28 16:05:11 -08001085 if (!fcoe_nport_scsi_transport) {
Robert Loved5488eb2009-06-10 15:30:59 -07001086 printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n");
Vasu Dev7f349142009-03-27 09:06:31 -07001087 return -ENODEV;
1088 }
1089
1090 return 0;
1091}
1092
1093/**
Robert Love1875f272009-11-03 11:47:50 -08001094 * fcoe_if_exit() - Tear down fcoe.ko
Vasu Dev7f349142009-03-27 09:06:31 -07001095 *
Robert Love1875f272009-11-03 11:47:50 -08001096 * Detaches the SW FCoE transport from the FC transport
1097 *
1098 * Returns: 0 on success
Vasu Dev7f349142009-03-27 09:06:31 -07001099 */
1100int __exit fcoe_if_exit(void)
1101{
Yi Zou8ca86f82011-01-28 16:05:11 -08001102 fc_release_transport(fcoe_nport_scsi_transport);
1103 fc_release_transport(fcoe_vport_scsi_transport);
1104 fcoe_nport_scsi_transport = NULL;
1105 fcoe_vport_scsi_transport = NULL;
Vasu Dev7f349142009-03-27 09:06:31 -07001106 return 0;
1107}
1108
Robert Love85b4aa42008-12-09 15:10:24 -08001109/**
Robert Love1875f272009-11-03 11:47:50 -08001110 * fcoe_percpu_thread_create() - Create a receive thread for an online CPU
1111 * @cpu: The CPU index of the CPU to create a receive thread for
Robert Love8976f422009-03-17 11:41:46 -07001112 */
1113static void fcoe_percpu_thread_create(unsigned int cpu)
1114{
1115 struct fcoe_percpu_s *p;
1116 struct task_struct *thread;
1117
1118 p = &per_cpu(fcoe_percpu, cpu);
1119
Eric Dumazet5c609ff2011-09-27 21:37:52 -07001120 thread = kthread_create_on_node(fcoe_percpu_receive_thread,
1121 (void *)p, cpu_to_node(cpu),
1122 "fcoethread/%d", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001123
Joe Eykholte7a51992009-08-25 14:04:08 -07001124 if (likely(!IS_ERR(thread))) {
Robert Love8976f422009-03-17 11:41:46 -07001125 kthread_bind(thread, cpu);
1126 wake_up_process(thread);
1127
1128 spin_lock_bh(&p->fcoe_rx_list.lock);
1129 p->thread = thread;
1130 spin_unlock_bh(&p->fcoe_rx_list.lock);
1131 }
1132}
1133
1134/**
Robert Love1875f272009-11-03 11:47:50 -08001135 * fcoe_percpu_thread_destroy() - Remove the receive thread of a CPU
1136 * @cpu: The CPU index of the CPU whose receive thread is to be destroyed
Robert Love8976f422009-03-17 11:41:46 -07001137 *
1138 * Destroys a per-CPU Rx thread. Any pending skbs are moved to the
1139 * current CPU's Rx thread. If the thread being destroyed is bound to
1140 * the CPU processing this context the skbs will be freed.
1141 */
1142static void fcoe_percpu_thread_destroy(unsigned int cpu)
1143{
1144 struct fcoe_percpu_s *p;
1145 struct task_struct *thread;
1146 struct page *crc_eof;
1147 struct sk_buff *skb;
1148#ifdef CONFIG_SMP
1149 struct fcoe_percpu_s *p0;
Joe Eykholtf018b732010-03-12 16:08:55 -08001150 unsigned targ_cpu = get_cpu();
Robert Love8976f422009-03-17 11:41:46 -07001151#endif /* CONFIG_SMP */
1152
Robert Loved5488eb2009-06-10 15:30:59 -07001153 FCOE_DBG("Destroying receive thread for CPU %d\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001154
1155 /* Prevent any new skbs from being queued for this CPU. */
1156 p = &per_cpu(fcoe_percpu, cpu);
1157 spin_lock_bh(&p->fcoe_rx_list.lock);
1158 thread = p->thread;
1159 p->thread = NULL;
1160 crc_eof = p->crc_eof_page;
1161 p->crc_eof_page = NULL;
1162 p->crc_eof_offset = 0;
1163 spin_unlock_bh(&p->fcoe_rx_list.lock);
1164
1165#ifdef CONFIG_SMP
1166 /*
1167 * Don't bother moving the skb's if this context is running
1168 * on the same CPU that is having its thread destroyed. This
1169 * can easily happen when the module is removed.
1170 */
1171 if (cpu != targ_cpu) {
1172 p0 = &per_cpu(fcoe_percpu, targ_cpu);
1173 spin_lock_bh(&p0->fcoe_rx_list.lock);
1174 if (p0->thread) {
Robert Loved5488eb2009-06-10 15:30:59 -07001175 FCOE_DBG("Moving frames from CPU %d to CPU %d\n",
1176 cpu, targ_cpu);
Robert Love8976f422009-03-17 11:41:46 -07001177
1178 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1179 __skb_queue_tail(&p0->fcoe_rx_list, skb);
1180 spin_unlock_bh(&p0->fcoe_rx_list.lock);
1181 } else {
1182 /*
1183 * The targeted CPU is not initialized and cannot accept
Robert Love1875f272009-11-03 11:47:50 -08001184 * new skbs. Unlock the targeted CPU and drop the skbs
Robert Love8976f422009-03-17 11:41:46 -07001185 * on the CPU that is going offline.
1186 */
1187 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1188 kfree_skb(skb);
1189 spin_unlock_bh(&p0->fcoe_rx_list.lock);
1190 }
1191 } else {
1192 /*
1193 * This scenario occurs when the module is being removed
1194 * and all threads are being destroyed. skbs will continue
1195 * to be shifted from the CPU thread that is being removed
1196 * to the CPU thread associated with the CPU that is processing
1197 * the module removal. Once there is only one CPU Rx thread it
1198 * will reach this case and we will drop all skbs and later
1199 * stop the thread.
1200 */
1201 spin_lock_bh(&p->fcoe_rx_list.lock);
1202 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1203 kfree_skb(skb);
1204 spin_unlock_bh(&p->fcoe_rx_list.lock);
1205 }
Joe Eykholtf018b732010-03-12 16:08:55 -08001206 put_cpu();
Robert Love8976f422009-03-17 11:41:46 -07001207#else
1208 /*
Chris Leechdd3fd722009-04-21 16:27:36 -07001209 * This a non-SMP scenario where the singular Rx thread is
Robert Love8976f422009-03-17 11:41:46 -07001210 * being removed. Free all skbs and stop the thread.
1211 */
1212 spin_lock_bh(&p->fcoe_rx_list.lock);
1213 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) != NULL)
1214 kfree_skb(skb);
1215 spin_unlock_bh(&p->fcoe_rx_list.lock);
1216#endif
1217
1218 if (thread)
1219 kthread_stop(thread);
1220
1221 if (crc_eof)
1222 put_page(crc_eof);
1223}
1224
1225/**
Robert Love1875f272009-11-03 11:47:50 -08001226 * fcoe_cpu_callback() - Handler for CPU hotplug events
1227 * @nfb: The callback data block
1228 * @action: The event triggering the callback
1229 * @hcpu: The index of the CPU that the event is for
Robert Love8976f422009-03-17 11:41:46 -07001230 *
Robert Love1875f272009-11-03 11:47:50 -08001231 * This creates or destroys per-CPU data for fcoe
Robert Love8976f422009-03-17 11:41:46 -07001232 *
1233 * Returns NOTIFY_OK always.
1234 */
1235static int fcoe_cpu_callback(struct notifier_block *nfb,
1236 unsigned long action, void *hcpu)
1237{
1238 unsigned cpu = (unsigned long)hcpu;
1239
1240 switch (action) {
1241 case CPU_ONLINE:
1242 case CPU_ONLINE_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -07001243 FCOE_DBG("CPU %x online: Create Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001244 fcoe_percpu_thread_create(cpu);
1245 break;
1246 case CPU_DEAD:
1247 case CPU_DEAD_FROZEN:
Robert Loved5488eb2009-06-10 15:30:59 -07001248 FCOE_DBG("CPU %x offline: Remove Rx thread\n", cpu);
Robert Love8976f422009-03-17 11:41:46 -07001249 fcoe_percpu_thread_destroy(cpu);
1250 break;
1251 default:
1252 break;
1253 }
1254 return NOTIFY_OK;
1255}
1256
Robert Love8976f422009-03-17 11:41:46 -07001257/**
Kiran Patil064287e2011-06-20 16:59:20 -07001258 * fcoe_select_cpu() - Selects CPU to handle post-processing of incoming
1259 * command.
Kiran Patil064287e2011-06-20 16:59:20 -07001260 *
Vasu Devd2722812011-07-27 15:11:10 -07001261 * This routine selects next CPU based on cpumask to distribute
1262 * incoming requests in round robin.
Kiran Patil064287e2011-06-20 16:59:20 -07001263 *
Vasu Devd2722812011-07-27 15:11:10 -07001264 * Returns: int CPU number
Kiran Patil064287e2011-06-20 16:59:20 -07001265 */
Vasu Devd2722812011-07-27 15:11:10 -07001266static inline unsigned int fcoe_select_cpu(void)
Kiran Patil064287e2011-06-20 16:59:20 -07001267{
1268 static unsigned int selected_cpu;
1269
Vasu Devd2722812011-07-27 15:11:10 -07001270 selected_cpu = cpumask_next(selected_cpu, cpu_online_mask);
1271 if (selected_cpu >= nr_cpu_ids)
1272 selected_cpu = cpumask_first(cpu_online_mask);
1273
Kiran Patil064287e2011-06-20 16:59:20 -07001274 return selected_cpu;
1275}
1276
1277/**
Robert Love1875f272009-11-03 11:47:50 -08001278 * fcoe_rcv() - Receive packets from a net device
1279 * @skb: The received packet
1280 * @netdev: The net device that the packet was received on
1281 * @ptype: The packet type context
1282 * @olddev: The last device net device
Robert Love85b4aa42008-12-09 15:10:24 -08001283 *
Robert Love1875f272009-11-03 11:47:50 -08001284 * This routine is called by NET_RX_SOFTIRQ. It receives a packet, builds a
1285 * FC frame and passes the frame to libfc.
Robert Love85b4aa42008-12-09 15:10:24 -08001286 *
1287 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001288 */
Robert Love1875f272009-11-03 11:47:50 -08001289int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev,
Robert Love85b4aa42008-12-09 15:10:24 -08001290 struct packet_type *ptype, struct net_device *olddev)
1291{
Robert Love1875f272009-11-03 11:47:50 -08001292 struct fc_lport *lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001293 struct fcoe_rcv_info *fr;
Chris Leech259ad852009-08-25 13:59:41 -07001294 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08001295 struct fc_frame_header *fh;
Robert Love85b4aa42008-12-09 15:10:24 -08001296 struct fcoe_percpu_s *fps;
Vasu Dev519e5132010-07-20 15:19:32 -07001297 struct ethhdr *eh;
Vasu Devb2f00912009-08-25 13:58:53 -07001298 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08001299
Chris Leech259ad852009-08-25 13:59:41 -07001300 fcoe = container_of(ptype, struct fcoe_interface, fcoe_packet_type);
Robert Love1875f272009-11-03 11:47:50 -08001301 lport = fcoe->ctlr.lp;
1302 if (unlikely(!lport)) {
1303 FCOE_NETDEV_DBG(netdev, "Cannot find hba structure");
Robert Love85b4aa42008-12-09 15:10:24 -08001304 goto err2;
1305 }
Robert Love1875f272009-11-03 11:47:50 -08001306 if (!lport->link_up)
Joe Eykholt97c83892009-03-17 11:42:40 -07001307 goto err2;
Robert Love85b4aa42008-12-09 15:10:24 -08001308
Robert Love1875f272009-11-03 11:47:50 -08001309 FCOE_NETDEV_DBG(netdev, "skb_info: len:%d data_len:%d head:%p "
Robert Loved5488eb2009-06-10 15:30:59 -07001310 "data:%p tail:%p end:%p sum:%d dev:%s",
1311 skb->len, skb->data_len, skb->head, skb->data,
1312 skb_tail_pointer(skb), skb_end_pointer(skb),
1313 skb->csum, skb->dev ? skb->dev->name : "<NULL>");
Robert Love85b4aa42008-12-09 15:10:24 -08001314
Vasu Dev519e5132010-07-20 15:19:32 -07001315 eh = eth_hdr(skb);
Vasu Dev519e5132010-07-20 15:19:32 -07001316
1317 if (is_fip_mode(&fcoe->ctlr) &&
1318 compare_ether_addr(eh->h_source, fcoe->ctlr.dest_addr)) {
1319 FCOE_NETDEV_DBG(netdev, "wrong source mac address:%pM\n",
1320 eh->h_source);
Robert Love85b4aa42008-12-09 15:10:24 -08001321 goto err;
1322 }
1323
1324 /*
1325 * Check for minimum frame length, and make sure required FCoE
1326 * and FC headers are pulled into the linear data area.
1327 */
1328 if (unlikely((skb->len < FCOE_MIN_FRAME) ||
Robert Love1875f272009-11-03 11:47:50 -08001329 !pskb_may_pull(skb, FCOE_HEADER_LEN)))
Robert Love85b4aa42008-12-09 15:10:24 -08001330 goto err;
1331
1332 skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
1333 fh = (struct fc_frame_header *) skb_transport_header(skb);
1334
Robert Love0ee31cb2010-10-08 17:12:46 -07001335 if (ntoh24(&eh->h_dest[3]) != ntoh24(fh->fh_d_id)) {
1336 FCOE_NETDEV_DBG(netdev, "FC frame d_id mismatch with MAC:%pM\n",
1337 eh->h_dest);
1338 goto err;
1339 }
1340
Robert Love85b4aa42008-12-09 15:10:24 -08001341 fr = fcoe_dev_from_skb(skb);
Robert Love1875f272009-11-03 11:47:50 -08001342 fr->fr_dev = lport;
Robert Love5e5e92d2009-03-17 11:41:35 -07001343
Robert Love85b4aa42008-12-09 15:10:24 -08001344 /*
Vasu Devb2f00912009-08-25 13:58:53 -07001345 * In case the incoming frame's exchange is originated from
1346 * the initiator, then received frame's exchange id is ANDed
1347 * with fc_cpu_mask bits to get the same cpu on which exchange
Vasu Devd2722812011-07-27 15:11:10 -07001348 * was originated, otherwise select cpu using rx exchange id
1349 * or fcoe_select_cpu().
Robert Love85b4aa42008-12-09 15:10:24 -08001350 */
Vasu Devb2f00912009-08-25 13:58:53 -07001351 if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
1352 cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
Kiran Patil064287e2011-06-20 16:59:20 -07001353 else {
Vasu Devd2722812011-07-27 15:11:10 -07001354 if (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN)
1355 cpu = fcoe_select_cpu();
1356 else
Kiran Patil29bdd2b2011-06-20 16:59:25 -07001357 cpu = ntohs(fh->fh_rx_id) & fc_cpu_mask;
Kiran Patil064287e2011-06-20 16:59:20 -07001358 }
Vasu Dev324f6672011-07-27 15:10:39 -07001359
1360 if (cpu >= nr_cpu_ids)
1361 goto err;
1362
Robert Love8976f422009-03-17 11:41:46 -07001363 fps = &per_cpu(fcoe_percpu, cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001364 spin_lock_bh(&fps->fcoe_rx_list.lock);
Robert Love8976f422009-03-17 11:41:46 -07001365 if (unlikely(!fps->thread)) {
1366 /*
1367 * The targeted CPU is not ready, let's target
1368 * the first CPU now. For non-SMP systems this
1369 * will check the same CPU twice.
1370 */
Robert Love1875f272009-11-03 11:47:50 -08001371 FCOE_NETDEV_DBG(netdev, "CPU is online, but no receive thread "
Robert Loved5488eb2009-06-10 15:30:59 -07001372 "ready for incoming skb- using first online "
1373 "CPU.\n");
Robert Love8976f422009-03-17 11:41:46 -07001374
1375 spin_unlock_bh(&fps->fcoe_rx_list.lock);
Rusty Russell69571772009-12-17 11:43:14 -06001376 cpu = cpumask_first(cpu_online_mask);
Robert Love8976f422009-03-17 11:41:46 -07001377 fps = &per_cpu(fcoe_percpu, cpu);
1378 spin_lock_bh(&fps->fcoe_rx_list.lock);
1379 if (!fps->thread) {
1380 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1381 goto err;
1382 }
1383 }
1384
1385 /*
1386 * We now have a valid CPU that we're targeting for
1387 * this skb. We also have this receive thread locked,
1388 * so we're free to queue skbs into it's queue.
1389 */
Robert Love85b4aa42008-12-09 15:10:24 -08001390
Chris Leech859b7b62009-11-20 14:54:47 -08001391 /* If this is a SCSI-FCP frame, and this is already executing on the
1392 * correct CPU, and the queue for this CPU is empty, then go ahead
1393 * and process the frame directly in the softirq context.
1394 * This lets us process completions without context switching from the
1395 * NET_RX softirq, to our receive processing thread, and then back to
1396 * BLOCK softirq context.
1397 */
1398 if (fh->fh_type == FC_TYPE_FCP &&
1399 cpu == smp_processor_id() &&
1400 skb_queue_empty(&fps->fcoe_rx_list)) {
1401 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1402 fcoe_recv_frame(skb);
1403 } else {
1404 __skb_queue_tail(&fps->fcoe_rx_list, skb);
1405 if (fps->fcoe_rx_list.qlen == 1)
1406 wake_up_process(fps->thread);
1407 spin_unlock_bh(&fps->fcoe_rx_list.lock);
1408 }
Robert Love85b4aa42008-12-09 15:10:24 -08001409
1410 return 0;
1411err:
Joe Eykholtf018b732010-03-12 16:08:55 -08001412 per_cpu_ptr(lport->dev_stats, get_cpu())->ErrorFrames++;
1413 put_cpu();
Robert Love85b4aa42008-12-09 15:10:24 -08001414err2:
1415 kfree_skb(skb);
1416 return -1;
1417}
Robert Love85b4aa42008-12-09 15:10:24 -08001418
1419/**
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001420 * fcoe_alloc_paged_crc_eof() - Allocate a page to be used for the trailer CRC
Robert Love1875f272009-11-03 11:47:50 -08001421 * @skb: The packet to be transmitted
1422 * @tlen: The total length of the trailer
1423 *
Robert Love85b4aa42008-12-09 15:10:24 -08001424 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001425 */
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001426static int fcoe_alloc_paged_crc_eof(struct sk_buff *skb, int tlen)
Robert Love85b4aa42008-12-09 15:10:24 -08001427{
1428 struct fcoe_percpu_s *fps;
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001429 int rc;
Robert Love85b4aa42008-12-09 15:10:24 -08001430
Robert Love5e5e92d2009-03-17 11:41:35 -07001431 fps = &get_cpu_var(fcoe_percpu);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001432 rc = fcoe_get_paged_crc_eof(skb, tlen, fps);
Robert Love5e5e92d2009-03-17 11:41:35 -07001433 put_cpu_var(fcoe_percpu);
Robert Love85b4aa42008-12-09 15:10:24 -08001434
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001435 return rc;
Robert Love85b4aa42008-12-09 15:10:24 -08001436}
Robert Love85b4aa42008-12-09 15:10:24 -08001437
1438/**
Robert Love1875f272009-11-03 11:47:50 -08001439 * fcoe_xmit() - Transmit a FCoE frame
1440 * @lport: The local port that the frame is to be transmitted for
1441 * @fp: The frame to be transmitted
Robert Love85b4aa42008-12-09 15:10:24 -08001442 *
Robert Love1875f272009-11-03 11:47:50 -08001443 * Return: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001444 */
Robert Love1875f272009-11-03 11:47:50 -08001445int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp)
Robert Love85b4aa42008-12-09 15:10:24 -08001446{
Vasu Dev4bb6b512009-05-06 10:52:34 -07001447 int wlen;
Robert Love85b4aa42008-12-09 15:10:24 -08001448 u32 crc;
1449 struct ethhdr *eh;
1450 struct fcoe_crc_eof *cp;
1451 struct sk_buff *skb;
1452 struct fcoe_dev_stats *stats;
1453 struct fc_frame_header *fh;
1454 unsigned int hlen; /* header length implies the version */
1455 unsigned int tlen; /* trailer length */
1456 unsigned int elen; /* eth header, may include vlan */
Robert Love1875f272009-11-03 11:47:50 -08001457 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001458 struct fcoe_interface *fcoe = port->priv;
Robert Love85b4aa42008-12-09 15:10:24 -08001459 u8 sof, eof;
1460 struct fcoe_hdr *hp;
1461
1462 WARN_ON((fr_len(fp) % sizeof(u32)) != 0);
1463
Robert Love85b4aa42008-12-09 15:10:24 -08001464 fh = fc_frame_header_get(fp);
Joe Eykholt97c83892009-03-17 11:42:40 -07001465 skb = fp_skb(fp);
1466 wlen = skb->len / FCOE_WORD_TO_BYTE;
1467
Robert Love1875f272009-11-03 11:47:50 -08001468 if (!lport->link_up) {
Dan Carpenter3caf02e2009-04-21 16:27:25 -07001469 kfree_skb(skb);
Joe Eykholt97c83892009-03-17 11:42:40 -07001470 return 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001471 }
1472
Joe Eykholt9860eeb2010-03-12 16:07:52 -08001473 if (unlikely(fh->fh_type == FC_TYPE_ELS) &&
Robert Love1875f272009-11-03 11:47:50 -08001474 fcoe_ctlr_els_send(&fcoe->ctlr, lport, skb))
Joe Eykholt97c83892009-03-17 11:42:40 -07001475 return 0;
1476
Robert Love85b4aa42008-12-09 15:10:24 -08001477 sof = fr_sof(fp);
1478 eof = fr_eof(fp);
1479
Vasu Dev4e57e1c2009-05-06 10:52:46 -07001480 elen = sizeof(struct ethhdr);
Robert Love85b4aa42008-12-09 15:10:24 -08001481 hlen = sizeof(struct fcoe_hdr);
1482 tlen = sizeof(struct fcoe_crc_eof);
1483 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
1484
1485 /* crc offload */
Robert Love1875f272009-11-03 11:47:50 -08001486 if (likely(lport->crc_offload)) {
Yi Zou39ca9a02009-02-27 14:07:15 -08001487 skb->ip_summed = CHECKSUM_PARTIAL;
Robert Love85b4aa42008-12-09 15:10:24 -08001488 skb->csum_start = skb_headroom(skb);
1489 skb->csum_offset = skb->len;
1490 crc = 0;
1491 } else {
1492 skb->ip_summed = CHECKSUM_NONE;
1493 crc = fcoe_fc_crc(fp);
1494 }
1495
Chris Leech014f5c32009-08-25 13:59:30 -07001496 /* copy port crc and eof to the skb buff */
Robert Love85b4aa42008-12-09 15:10:24 -08001497 if (skb_is_nonlinear(skb)) {
1498 skb_frag_t *frag;
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001499 if (fcoe_alloc_paged_crc_eof(skb, tlen)) {
Roel Kluine9041582009-02-27 10:56:22 -08001500 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001501 return -ENOMEM;
1502 }
1503 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
Ian Campbell165c68d2011-08-24 22:28:15 +00001504 cp = kmap_atomic(skb_frag_page(frag), KM_SKB_DATA_SOFTIRQ)
Robert Love85b4aa42008-12-09 15:10:24 -08001505 + frag->page_offset;
1506 } else {
1507 cp = (struct fcoe_crc_eof *)skb_put(skb, tlen);
1508 }
1509
1510 memset(cp, 0, sizeof(*cp));
1511 cp->fcoe_eof = eof;
1512 cp->fcoe_crc32 = cpu_to_le32(~crc);
1513
1514 if (skb_is_nonlinear(skb)) {
1515 kunmap_atomic(cp, KM_SKB_DATA_SOFTIRQ);
1516 cp = NULL;
1517 }
1518
Chris Leech014f5c32009-08-25 13:59:30 -07001519 /* adjust skb network/transport offsets to match mac/fcoe/port */
Robert Love85b4aa42008-12-09 15:10:24 -08001520 skb_push(skb, elen + hlen);
1521 skb_reset_mac_header(skb);
1522 skb_reset_network_header(skb);
1523 skb->mac_len = elen;
Yi Zou211c7382009-02-27 14:06:37 -08001524 skb->protocol = htons(ETH_P_FCOE);
Vasu Devd1483bb2011-09-27 21:38:13 -07001525 if (fcoe->netdev->priv_flags & IFF_802_1Q_VLAN &&
1526 fcoe->realdev->features & NETIF_F_HW_VLAN_TX) {
1527 skb->vlan_tci = VLAN_TAG_PRESENT |
1528 vlan_dev_vlan_id(fcoe->netdev);
1529 skb->dev = fcoe->realdev;
1530 } else
1531 skb->dev = fcoe->netdev;
Robert Love85b4aa42008-12-09 15:10:24 -08001532
1533 /* fill up mac and fcoe headers */
1534 eh = eth_hdr(skb);
1535 eh->h_proto = htons(ETH_P_FCOE);
Joe Eykholtcd229e42010-07-20 15:20:40 -07001536 memcpy(eh->h_dest, fcoe->ctlr.dest_addr, ETH_ALEN);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001537 if (fcoe->ctlr.map_dest)
Joe Eykholtcd229e42010-07-20 15:20:40 -07001538 memcpy(eh->h_dest + 3, fh->fh_d_id, 3);
Robert Love85b4aa42008-12-09 15:10:24 -08001539
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001540 if (unlikely(fcoe->ctlr.flogi_oxid != FC_XID_UNKNOWN))
1541 memcpy(eh->h_source, fcoe->ctlr.ctl_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001542 else
Chris Leech11b56182009-11-03 11:46:29 -08001543 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
Robert Love85b4aa42008-12-09 15:10:24 -08001544
1545 hp = (struct fcoe_hdr *)(eh + 1);
1546 memset(hp, 0, sizeof(*hp));
1547 if (FC_FCOE_VER)
1548 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
1549 hp->fcoe_sof = sof;
1550
Yi Zou39ca9a02009-02-27 14:07:15 -08001551 /* fcoe lso, mss is in max_payload which is non-zero for FCP data */
Robert Love1875f272009-11-03 11:47:50 -08001552 if (lport->seq_offload && fr_max_payload(fp)) {
Yi Zou39ca9a02009-02-27 14:07:15 -08001553 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
1554 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
1555 } else {
1556 skb_shinfo(skb)->gso_type = 0;
1557 skb_shinfo(skb)->gso_size = 0;
1558 }
Robert Love85b4aa42008-12-09 15:10:24 -08001559 /* update tx stats: regardless if LLD fails */
Joe Eykholtf018b732010-03-12 16:08:55 -08001560 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
Robert Love582b45b2009-03-31 15:51:50 -07001561 stats->TxFrames++;
1562 stats->TxWords += wlen;
Joe Eykholtf018b732010-03-12 16:08:55 -08001563 put_cpu();
Robert Love85b4aa42008-12-09 15:10:24 -08001564
1565 /* send down to lld */
Robert Love1875f272009-11-03 11:47:50 -08001566 fr_dev(fp) = lport;
Vasu Dev980f5152011-07-27 15:11:05 -07001567 fcoe_port_send(port, skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001568 return 0;
1569}
Robert Love85b4aa42008-12-09 15:10:24 -08001570
Robert Love34f42a02009-02-27 10:55:45 -08001571/**
Robert Love1875f272009-11-03 11:47:50 -08001572 * fcoe_percpu_flush_done() - Indicate per-CPU queue flush completion
1573 * @skb: The completed skb (argument required by destructor)
Joe Eykholte7a51992009-08-25 14:04:08 -07001574 */
1575static void fcoe_percpu_flush_done(struct sk_buff *skb)
1576{
1577 complete(&fcoe_flush_completion);
1578}
1579
1580/**
Vasu Dev52ee8322011-01-28 16:03:52 -08001581 * fcoe_filter_frames() - filter out bad fcoe frames, i.e. bad CRC
1582 * @lport: The local port the frame was received on
1583 * @fp: The received frame
1584 *
1585 * Return: 0 on passing filtering checks
1586 */
1587static inline int fcoe_filter_frames(struct fc_lport *lport,
1588 struct fc_frame *fp)
1589{
1590 struct fcoe_interface *fcoe;
1591 struct fc_frame_header *fh;
1592 struct sk_buff *skb = (struct sk_buff *)fp;
1593 struct fcoe_dev_stats *stats;
1594
1595 /*
1596 * We only check CRC if no offload is available and if it is
1597 * it's solicited data, in which case, the FCP layer would
1598 * check it during the copy.
1599 */
1600 if (lport->crc_offload && skb->ip_summed == CHECKSUM_UNNECESSARY)
1601 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1602 else
1603 fr_flags(fp) |= FCPHF_CRC_UNCHECKED;
1604
1605 fh = (struct fc_frame_header *) skb_transport_header(skb);
1606 fh = fc_frame_header_get(fp);
1607 if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA && fh->fh_type == FC_TYPE_FCP)
1608 return 0;
1609
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08001610 fcoe = ((struct fcoe_port *)lport_priv(lport))->priv;
Vasu Dev52ee8322011-01-28 16:03:52 -08001611 if (is_fip_mode(&fcoe->ctlr) && fc_frame_payload_op(fp) == ELS_LOGO &&
1612 ntoh24(fh->fh_s_id) == FC_FID_FLOGI) {
1613 FCOE_DBG("fcoe: dropping FCoE lport LOGO in fip mode\n");
1614 return -EINVAL;
1615 }
1616
Dan Carpenterf2f96d22011-02-25 15:03:23 -08001617 if (!(fr_flags(fp) & FCPHF_CRC_UNCHECKED) ||
Vasu Dev52ee8322011-01-28 16:03:52 -08001618 le32_to_cpu(fr_crc(fp)) == ~crc32(~0, skb->data, skb->len)) {
1619 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1620 return 0;
1621 }
1622
1623 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
1624 stats->InvalidCRCCount++;
1625 if (stats->InvalidCRCCount < 5)
1626 printk(KERN_WARNING "fcoe: dropping frame with CRC error\n");
Thomas Gleixner7e1e7ea2011-11-11 20:52:01 +01001627 put_cpu();
Vasu Dev52ee8322011-01-28 16:03:52 -08001628 return -EINVAL;
1629}
1630
1631/**
Chris Leech859b7b62009-11-20 14:54:47 -08001632 * fcoe_recv_frame() - process a single received frame
1633 * @skb: frame to process
1634 */
1635static void fcoe_recv_frame(struct sk_buff *skb)
1636{
1637 u32 fr_len;
1638 struct fc_lport *lport;
1639 struct fcoe_rcv_info *fr;
1640 struct fcoe_dev_stats *stats;
Chris Leech859b7b62009-11-20 14:54:47 -08001641 struct fcoe_crc_eof crc_eof;
1642 struct fc_frame *fp;
Chris Leech859b7b62009-11-20 14:54:47 -08001643 struct fcoe_port *port;
1644 struct fcoe_hdr *hp;
1645
1646 fr = fcoe_dev_from_skb(skb);
1647 lport = fr->fr_dev;
1648 if (unlikely(!lport)) {
1649 if (skb->destructor != fcoe_percpu_flush_done)
1650 FCOE_NETDEV_DBG(skb->dev, "NULL lport in skb");
1651 kfree_skb(skb);
1652 return;
1653 }
1654
1655 FCOE_NETDEV_DBG(skb->dev, "skb_info: len:%d data_len:%d "
1656 "head:%p data:%p tail:%p end:%p sum:%d dev:%s",
1657 skb->len, skb->data_len,
1658 skb->head, skb->data, skb_tail_pointer(skb),
1659 skb_end_pointer(skb), skb->csum,
1660 skb->dev ? skb->dev->name : "<NULL>");
1661
Chris Leech859b7b62009-11-20 14:54:47 -08001662 port = lport_priv(lport);
1663 if (skb_is_nonlinear(skb))
1664 skb_linearize(skb); /* not ideal */
Chris Leech859b7b62009-11-20 14:54:47 -08001665
1666 /*
1667 * Frame length checks and setting up the header pointers
1668 * was done in fcoe_rcv already.
1669 */
1670 hp = (struct fcoe_hdr *) skb_network_header(skb);
Chris Leech859b7b62009-11-20 14:54:47 -08001671
Joe Eykholtf018b732010-03-12 16:08:55 -08001672 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
Chris Leech859b7b62009-11-20 14:54:47 -08001673 if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) {
1674 if (stats->ErrorFrames < 5)
1675 printk(KERN_WARNING "fcoe: FCoE version "
1676 "mismatch: The frame has "
1677 "version %x, but the "
1678 "initiator supports version "
1679 "%x\n", FC_FCOE_DECAPS_VER(hp),
1680 FC_FCOE_VER);
Joe Eykholtf018b732010-03-12 16:08:55 -08001681 goto drop;
Chris Leech859b7b62009-11-20 14:54:47 -08001682 }
1683
1684 skb_pull(skb, sizeof(struct fcoe_hdr));
1685 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
1686
1687 stats->RxFrames++;
1688 stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
1689
1690 fp = (struct fc_frame *)skb;
1691 fc_frame_init(fp);
1692 fr_dev(fp) = lport;
1693 fr_sof(fp) = hp->fcoe_sof;
1694
1695 /* Copy out the CRC and EOF trailer for access */
Joe Eykholtf018b732010-03-12 16:08:55 -08001696 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof)))
1697 goto drop;
Chris Leech859b7b62009-11-20 14:54:47 -08001698 fr_eof(fp) = crc_eof.fcoe_eof;
1699 fr_crc(fp) = crc_eof.fcoe_crc32;
Joe Eykholtf018b732010-03-12 16:08:55 -08001700 if (pskb_trim(skb, fr_len))
1701 goto drop;
Chris Leech859b7b62009-11-20 14:54:47 -08001702
Vasu Dev52ee8322011-01-28 16:03:52 -08001703 if (!fcoe_filter_frames(lport, fp)) {
1704 put_cpu();
1705 fc_exch_recv(lport, fp);
1706 return;
Chris Leech859b7b62009-11-20 14:54:47 -08001707 }
Joe Eykholtf018b732010-03-12 16:08:55 -08001708drop:
1709 stats->ErrorFrames++;
1710 put_cpu();
1711 kfree_skb(skb);
Chris Leech859b7b62009-11-20 14:54:47 -08001712}
1713
1714/**
Robert Love1875f272009-11-03 11:47:50 -08001715 * fcoe_percpu_receive_thread() - The per-CPU packet receive thread
1716 * @arg: The per-CPU context
Robert Love85b4aa42008-12-09 15:10:24 -08001717 *
1718 * Return: 0 for success
Robert Love85b4aa42008-12-09 15:10:24 -08001719 */
1720int fcoe_percpu_receive_thread(void *arg)
1721{
1722 struct fcoe_percpu_s *p = arg;
Robert Love85b4aa42008-12-09 15:10:24 -08001723 struct sk_buff *skb;
Robert Love85b4aa42008-12-09 15:10:24 -08001724
Robert Love4469c192009-02-27 10:56:38 -08001725 set_user_nice(current, -20);
Robert Love85b4aa42008-12-09 15:10:24 -08001726
1727 while (!kthread_should_stop()) {
1728
1729 spin_lock_bh(&p->fcoe_rx_list.lock);
1730 while ((skb = __skb_dequeue(&p->fcoe_rx_list)) == NULL) {
1731 set_current_state(TASK_INTERRUPTIBLE);
1732 spin_unlock_bh(&p->fcoe_rx_list.lock);
1733 schedule();
1734 set_current_state(TASK_RUNNING);
1735 if (kthread_should_stop())
1736 return 0;
1737 spin_lock_bh(&p->fcoe_rx_list.lock);
1738 }
1739 spin_unlock_bh(&p->fcoe_rx_list.lock);
Chris Leech859b7b62009-11-20 14:54:47 -08001740 fcoe_recv_frame(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08001741 }
1742 return 0;
1743}
1744
1745/**
Robert Love1875f272009-11-03 11:47:50 -08001746 * fcoe_dev_setup() - Setup the link change notification interface
Robert Love34f42a02009-02-27 10:55:45 -08001747 */
Randy Dunlapb0d428a2009-04-27 21:49:31 -07001748static void fcoe_dev_setup(void)
Robert Love85b4aa42008-12-09 15:10:24 -08001749{
Robert Love85b4aa42008-12-09 15:10:24 -08001750 register_netdevice_notifier(&fcoe_notifier);
1751}
1752
1753/**
Robert Love1875f272009-11-03 11:47:50 -08001754 * fcoe_dev_cleanup() - Cleanup the link change notification interface
Robert Love34f42a02009-02-27 10:55:45 -08001755 */
Robert Love85b4aa42008-12-09 15:10:24 -08001756static void fcoe_dev_cleanup(void)
1757{
1758 unregister_netdevice_notifier(&fcoe_notifier);
1759}
1760
1761/**
Robert Love1875f272009-11-03 11:47:50 -08001762 * fcoe_device_notification() - Handler for net device events
1763 * @notifier: The context of the notification
1764 * @event: The type of event
1765 * @ptr: The net device that the event was on
Robert Love85b4aa42008-12-09 15:10:24 -08001766 *
Robert Love1875f272009-11-03 11:47:50 -08001767 * This function is called by the Ethernet driver in case of link change event.
Robert Love85b4aa42008-12-09 15:10:24 -08001768 *
1769 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001770 */
Robert Love85b4aa42008-12-09 15:10:24 -08001771static int fcoe_device_notification(struct notifier_block *notifier,
1772 ulong event, void *ptr)
1773{
Robert Love1875f272009-11-03 11:47:50 -08001774 struct fc_lport *lport = NULL;
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001775 struct net_device *netdev = ptr;
Chris Leech014f5c32009-08-25 13:59:30 -07001776 struct fcoe_interface *fcoe;
Chris Leech2e70e242009-08-25 14:00:23 -07001777 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08001778 struct fcoe_dev_stats *stats;
Joe Eykholt97c83892009-03-17 11:42:40 -07001779 u32 link_possible = 1;
Robert Love85b4aa42008-12-09 15:10:24 -08001780 u32 mfs;
1781 int rc = NOTIFY_OK;
1782
Chris Leech014f5c32009-08-25 13:59:30 -07001783 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
Chris Leech25024982009-08-25 13:59:35 -07001784 if (fcoe->netdev == netdev) {
Robert Love1875f272009-11-03 11:47:50 -08001785 lport = fcoe->ctlr.lp;
Robert Love85b4aa42008-12-09 15:10:24 -08001786 break;
1787 }
1788 }
Robert Love1875f272009-11-03 11:47:50 -08001789 if (!lport) {
Robert Love85b4aa42008-12-09 15:10:24 -08001790 rc = NOTIFY_DONE;
1791 goto out;
1792 }
1793
Robert Love85b4aa42008-12-09 15:10:24 -08001794 switch (event) {
1795 case NETDEV_DOWN:
1796 case NETDEV_GOING_DOWN:
Joe Eykholt97c83892009-03-17 11:42:40 -07001797 link_possible = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001798 break;
1799 case NETDEV_UP:
1800 case NETDEV_CHANGE:
Robert Love85b4aa42008-12-09 15:10:24 -08001801 break;
1802 case NETDEV_CHANGEMTU:
Yi Zou7221d7e2009-10-21 16:27:52 -07001803 if (netdev->features & NETIF_F_FCOE_MTU)
1804 break;
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001805 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
1806 sizeof(struct fcoe_crc_eof));
Robert Love85b4aa42008-12-09 15:10:24 -08001807 if (mfs >= FC_MIN_MAX_FRAME)
Robert Love1875f272009-11-03 11:47:50 -08001808 fc_set_mfs(lport, mfs);
Robert Love85b4aa42008-12-09 15:10:24 -08001809 break;
1810 case NETDEV_REGISTER:
1811 break;
Chris Leech2e70e242009-08-25 14:00:23 -07001812 case NETDEV_UNREGISTER:
1813 list_del(&fcoe->list);
1814 port = lport_priv(fcoe->ctlr.lp);
Tejun Heo2ca32b42011-01-28 16:05:32 -08001815 queue_work(fcoe_wq, &port->destroy_work);
Chris Leech2e70e242009-08-25 14:00:23 -07001816 goto out;
1817 break;
Yi Zou54a5b212010-07-20 15:21:17 -07001818 case NETDEV_FEAT_CHANGE:
1819 fcoe_netdev_features_change(lport, netdev);
1820 break;
Robert Love85b4aa42008-12-09 15:10:24 -08001821 default:
Vasu Dev1d1b88d2009-07-29 17:05:45 -07001822 FCOE_NETDEV_DBG(netdev, "Unknown event %ld "
Robert Loved5488eb2009-06-10 15:30:59 -07001823 "from netdev netlink\n", event);
Robert Love85b4aa42008-12-09 15:10:24 -08001824 }
Robert Love5e4f8fe2010-05-07 15:18:35 -07001825
1826 fcoe_link_speed_update(lport);
1827
Robert Love1875f272009-11-03 11:47:50 -08001828 if (link_possible && !fcoe_link_ok(lport))
Chris Leech3fe9a0b2009-08-25 13:59:46 -07001829 fcoe_ctlr_link_up(&fcoe->ctlr);
1830 else if (fcoe_ctlr_link_down(&fcoe->ctlr)) {
Joe Eykholtf018b732010-03-12 16:08:55 -08001831 stats = per_cpu_ptr(lport->dev_stats, get_cpu());
Joe Eykholt97c83892009-03-17 11:42:40 -07001832 stats->LinkFailureCount++;
Joe Eykholtf018b732010-03-12 16:08:55 -08001833 put_cpu();
Robert Love1875f272009-11-03 11:47:50 -08001834 fcoe_clean_pending_queue(lport);
Robert Love85b4aa42008-12-09 15:10:24 -08001835 }
1836out:
1837 return rc;
1838}
1839
1840/**
Vasu Dev55a66d32009-12-10 09:59:31 -08001841 * fcoe_disable() - Disables a FCoE interface
Yi Zou78a58242011-01-28 16:05:16 -08001842 * @netdev : The net_device object the Ethernet interface to create on
Vasu Dev55a66d32009-12-10 09:59:31 -08001843 *
Yi Zou78a58242011-01-28 16:05:16 -08001844 * Called from fcoe transport.
Vasu Dev55a66d32009-12-10 09:59:31 -08001845 *
1846 * Returns: 0 for success
1847 */
Yi Zou78a58242011-01-28 16:05:16 -08001848static int fcoe_disable(struct net_device *netdev)
Vasu Dev55a66d32009-12-10 09:59:31 -08001849{
1850 struct fcoe_interface *fcoe;
Vasu Dev55a66d32009-12-10 09:59:31 -08001851 int rc = 0;
1852
1853 mutex_lock(&fcoe_config_mutex);
Vasu Dev55a66d32009-12-10 09:59:31 -08001854
Robert Loveee5df622011-04-01 16:05:59 -07001855 rtnl_lock();
Vasu Dev55a66d32009-12-10 09:59:31 -08001856 fcoe = fcoe_hostlist_lookup_port(netdev);
1857 rtnl_unlock();
1858
Chris Leech9ee50e42010-04-09 14:22:23 -07001859 if (fcoe) {
Chris Leech9ee50e42010-04-09 14:22:23 -07001860 fcoe_ctlr_link_down(&fcoe->ctlr);
Vasu Dev9d4cbc02010-07-20 15:19:26 -07001861 fcoe_clean_pending_queue(fcoe->ctlr.lp);
Chris Leech9ee50e42010-04-09 14:22:23 -07001862 } else
Vasu Dev55a66d32009-12-10 09:59:31 -08001863 rc = -ENODEV;
1864
Vasu Dev55a66d32009-12-10 09:59:31 -08001865 mutex_unlock(&fcoe_config_mutex);
1866 return rc;
1867}
1868
1869/**
1870 * fcoe_enable() - Enables a FCoE interface
Yi Zou78a58242011-01-28 16:05:16 -08001871 * @netdev : The net_device object the Ethernet interface to create on
Vasu Dev55a66d32009-12-10 09:59:31 -08001872 *
Yi Zou78a58242011-01-28 16:05:16 -08001873 * Called from fcoe transport.
Vasu Dev55a66d32009-12-10 09:59:31 -08001874 *
1875 * Returns: 0 for success
1876 */
Yi Zou78a58242011-01-28 16:05:16 -08001877static int fcoe_enable(struct net_device *netdev)
Vasu Dev55a66d32009-12-10 09:59:31 -08001878{
1879 struct fcoe_interface *fcoe;
Vasu Dev55a66d32009-12-10 09:59:31 -08001880 int rc = 0;
1881
1882 mutex_lock(&fcoe_config_mutex);
Robert Loveee5df622011-04-01 16:05:59 -07001883 rtnl_lock();
Vasu Dev55a66d32009-12-10 09:59:31 -08001884 fcoe = fcoe_hostlist_lookup_port(netdev);
1885 rtnl_unlock();
1886
Vasu Dev9d4cbc02010-07-20 15:19:26 -07001887 if (!fcoe)
Vasu Dev55a66d32009-12-10 09:59:31 -08001888 rc = -ENODEV;
Vasu Dev9d4cbc02010-07-20 15:19:26 -07001889 else if (!fcoe_link_ok(fcoe->ctlr.lp))
1890 fcoe_ctlr_link_up(&fcoe->ctlr);
Vasu Dev55a66d32009-12-10 09:59:31 -08001891
Vasu Dev55a66d32009-12-10 09:59:31 -08001892 mutex_unlock(&fcoe_config_mutex);
1893 return rc;
1894}
1895
1896/**
Robert Love1875f272009-11-03 11:47:50 -08001897 * fcoe_destroy() - Destroy a FCoE interface
Yi Zou78a58242011-01-28 16:05:16 -08001898 * @netdev : The net_device object the Ethernet interface to create on
Robert Love1875f272009-11-03 11:47:50 -08001899 *
Yi Zou78a58242011-01-28 16:05:16 -08001900 * Called from fcoe transport
Robert Love85b4aa42008-12-09 15:10:24 -08001901 *
1902 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001903 */
Yi Zou78a58242011-01-28 16:05:16 -08001904static int fcoe_destroy(struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08001905{
Chris Leech030f4e02009-08-25 14:00:02 -07001906 struct fcoe_interface *fcoe;
Vasu Devf04ca1b2011-04-01 16:06:45 -07001907 struct fc_lport *lport;
Neerav Parikhb2085a42011-06-20 16:59:51 -07001908 struct fcoe_port *port;
Mike Christie8eca355f2009-10-21 16:27:44 -07001909 int rc = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08001910
Chris Leechdfc1d0f2009-08-25 14:00:13 -07001911 mutex_lock(&fcoe_config_mutex);
Robert Loveee5df622011-04-01 16:05:59 -07001912 rtnl_lock();
Chris Leech2e70e242009-08-25 14:00:23 -07001913 fcoe = fcoe_hostlist_lookup_port(netdev);
1914 if (!fcoe) {
Robert Love85b4aa42008-12-09 15:10:24 -08001915 rc = -ENODEV;
Yi Zou78a58242011-01-28 16:05:16 -08001916 goto out_nodev;
Robert Love85b4aa42008-12-09 15:10:24 -08001917 }
Vasu Devf04ca1b2011-04-01 16:06:45 -07001918 lport = fcoe->ctlr.lp;
Neerav Parikhb2085a42011-06-20 16:59:51 -07001919 port = lport_priv(lport);
Yi Zou54a5b212010-07-20 15:21:17 -07001920 list_del(&fcoe->list);
Neerav Parikhb2085a42011-06-20 16:59:51 -07001921 queue_work(fcoe_wq, &port->destroy_work);
Robert Love85b4aa42008-12-09 15:10:24 -08001922out_nodev:
Neerav Parikhb2085a42011-06-20 16:59:51 -07001923 rtnl_unlock();
Chris Leechdfc1d0f2009-08-25 14:00:13 -07001924 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08001925 return rc;
1926}
1927
Robert Love1875f272009-11-03 11:47:50 -08001928/**
1929 * fcoe_destroy_work() - Destroy a FCoE port in a deferred work context
1930 * @work: Handle to the FCoE port to be destroyed
1931 */
Chris Leech2e70e242009-08-25 14:00:23 -07001932static void fcoe_destroy_work(struct work_struct *work)
1933{
1934 struct fcoe_port *port;
Neerav Parikhb2085a42011-06-20 16:59:51 -07001935 struct fcoe_interface *fcoe;
1936 int npiv = 0;
Chris Leech2e70e242009-08-25 14:00:23 -07001937
1938 port = container_of(work, struct fcoe_port, destroy_work);
1939 mutex_lock(&fcoe_config_mutex);
Neerav Parikhb2085a42011-06-20 16:59:51 -07001940
1941 /* set if this is an NPIV port */
1942 npiv = port->lport->vport ? 1 : 0;
1943
1944 fcoe = port->priv;
Chris Leech2e70e242009-08-25 14:00:23 -07001945 fcoe_if_destroy(port->lport);
Neerav Parikhb2085a42011-06-20 16:59:51 -07001946
1947 /* Do not tear down the fcoe interface for NPIV port */
Robert Love848e7d52011-08-25 12:40:47 -07001948 if (!npiv)
Neerav Parikhb2085a42011-06-20 16:59:51 -07001949 fcoe_interface_cleanup(fcoe);
Neerav Parikhb2085a42011-06-20 16:59:51 -07001950
Chris Leech2e70e242009-08-25 14:00:23 -07001951 mutex_unlock(&fcoe_config_mutex);
1952}
1953
Robert Love85b4aa42008-12-09 15:10:24 -08001954/**
Yi Zou78a58242011-01-28 16:05:16 -08001955 * fcoe_match() - Check if the FCoE is supported on the given netdevice
1956 * @netdev : The net_device object the Ethernet interface to create on
Robert Love1875f272009-11-03 11:47:50 -08001957 *
Yi Zou78a58242011-01-28 16:05:16 -08001958 * Called from fcoe transport.
1959 *
1960 * Returns: always returns true as this is the default FCoE transport,
1961 * i.e., support all netdevs.
1962 */
1963static bool fcoe_match(struct net_device *netdev)
1964{
1965 return true;
1966}
1967
1968/**
1969 * fcoe_create() - Create a fcoe interface
1970 * @netdev : The net_device object the Ethernet interface to create on
1971 * @fip_mode: The FIP mode for this creation
1972 *
1973 * Called from fcoe transport
Robert Love85b4aa42008-12-09 15:10:24 -08001974 *
1975 * Returns: 0 for success
Robert Love34f42a02009-02-27 10:55:45 -08001976 */
Yi Zou78a58242011-01-28 16:05:16 -08001977static int fcoe_create(struct net_device *netdev, enum fip_state fip_mode)
Robert Love85b4aa42008-12-09 15:10:24 -08001978{
Neerav Parikhb2085a42011-06-20 16:59:51 -07001979 int rc = 0;
Chris Leech030f4e02009-08-25 14:00:02 -07001980 struct fcoe_interface *fcoe;
Chris Leechaf7f85d2009-08-25 13:59:24 -07001981 struct fc_lport *lport;
Robert Love85b4aa42008-12-09 15:10:24 -08001982
Chris Leechdfc1d0f2009-08-25 14:00:13 -07001983 mutex_lock(&fcoe_config_mutex);
Robert Loveee5df622011-04-01 16:05:59 -07001984 rtnl_lock();
Vasu Dev34ce27b2010-05-07 15:18:46 -07001985
Robert Love85b4aa42008-12-09 15:10:24 -08001986 /* look for existing lport */
1987 if (fcoe_hostlist_lookup(netdev)) {
1988 rc = -EEXIST;
Yi Zou78a58242011-01-28 16:05:16 -08001989 goto out_nodev;
Robert Love85b4aa42008-12-09 15:10:24 -08001990 }
Robert Love85b4aa42008-12-09 15:10:24 -08001991
Joe Eykholt1dd454d2010-07-20 15:20:46 -07001992 fcoe = fcoe_interface_create(netdev, fip_mode);
Robert Love7287fb92011-01-28 16:03:47 -08001993 if (IS_ERR(fcoe)) {
1994 rc = PTR_ERR(fcoe);
Yi Zou78a58242011-01-28 16:05:16 -08001995 goto out_nodev;
Chris Leech030f4e02009-08-25 14:00:02 -07001996 }
1997
Chris Leech9a057532009-11-03 11:46:40 -08001998 lport = fcoe_if_create(fcoe, &netdev->dev, 0);
Chris Leechaf7f85d2009-08-25 13:59:24 -07001999 if (IS_ERR(lport)) {
Robert Loved5488eb2009-06-10 15:30:59 -07002000 printk(KERN_ERR "fcoe: Failed to create interface (%s)\n",
Robert Love85b4aa42008-12-09 15:10:24 -08002001 netdev->name);
Robert Love85b4aa42008-12-09 15:10:24 -08002002 rc = -EIO;
Robert Love848e7d52011-08-25 12:40:47 -07002003 rtnl_unlock();
Chris Leech2e70e242009-08-25 14:00:23 -07002004 fcoe_interface_cleanup(fcoe);
Robert Love848e7d52011-08-25 12:40:47 -07002005 goto out_nortnl;
Robert Love85b4aa42008-12-09 15:10:24 -08002006 }
Chris Leech030f4e02009-08-25 14:00:02 -07002007
Chris Leech54b649f2009-08-25 14:00:07 -07002008 /* Make this the "master" N_Port */
2009 fcoe->ctlr.lp = lport;
Chris Leech030f4e02009-08-25 14:00:02 -07002010
Chris Leechc863df32009-08-25 14:00:18 -07002011 /* add to lports list */
2012 fcoe_hostlist_add(lport);
2013
Chris Leech54b649f2009-08-25 14:00:07 -07002014 /* start FIP Discovery and FLOGI */
2015 lport->boot_time = jiffies;
2016 fc_fabric_login(lport);
2017 if (!fcoe_link_ok(lport))
2018 fcoe_ctlr_link_up(&fcoe->ctlr);
2019
Robert Love85b4aa42008-12-09 15:10:24 -08002020out_nodev:
Vasu Dev34ce27b2010-05-07 15:18:46 -07002021 rtnl_unlock();
Robert Love848e7d52011-08-25 12:40:47 -07002022out_nortnl:
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002023 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08002024 return rc;
2025}
2026
Robert Love34f42a02009-02-27 10:55:45 -08002027/**
Robert Love5e4f8fe2010-05-07 15:18:35 -07002028 * fcoe_link_speed_update() - Update the supported and actual link speeds
2029 * @lport: The local port to update speeds for
Robert Love85b4aa42008-12-09 15:10:24 -08002030 *
Robert Love5e4f8fe2010-05-07 15:18:35 -07002031 * Returns: 0 if the ethtool query was successful
2032 * -1 if the ethtool query failed
Robert Love85b4aa42008-12-09 15:10:24 -08002033 */
Robert Love5e4f8fe2010-05-07 15:18:35 -07002034int fcoe_link_speed_update(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002035{
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08002036 struct net_device *netdev = fcoe_netdev(lport);
David Decotigny8ae6daca2011-04-27 18:32:38 +00002037 struct ethtool_cmd ecmd;
Robert Love85b4aa42008-12-09 15:10:24 -08002038
Jiri Pirko4bc71cb2011-09-03 03:34:30 +00002039 if (!__ethtool_get_settings(netdev, &ecmd)) {
Robert Love1875f272009-11-03 11:47:50 -08002040 lport->link_supported_speeds &=
Yi Zou2f718d62009-07-29 17:04:01 -07002041 ~(FC_PORTSPEED_1GBIT | FC_PORTSPEED_10GBIT);
2042 if (ecmd.supported & (SUPPORTED_1000baseT_Half |
2043 SUPPORTED_1000baseT_Full))
Robert Love1875f272009-11-03 11:47:50 -08002044 lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
Yi Zou2f718d62009-07-29 17:04:01 -07002045 if (ecmd.supported & SUPPORTED_10000baseT_Full)
Robert Love1875f272009-11-03 11:47:50 -08002046 lport->link_supported_speeds |=
Yi Zou2f718d62009-07-29 17:04:01 -07002047 FC_PORTSPEED_10GBIT;
David Decotigny8ae6daca2011-04-27 18:32:38 +00002048 switch (ethtool_cmd_speed(&ecmd)) {
2049 case SPEED_1000:
Robert Love1875f272009-11-03 11:47:50 -08002050 lport->link_speed = FC_PORTSPEED_1GBIT;
David Decotigny8ae6daca2011-04-27 18:32:38 +00002051 break;
2052 case SPEED_10000:
Robert Love1875f272009-11-03 11:47:50 -08002053 lport->link_speed = FC_PORTSPEED_10GBIT;
David Decotigny8ae6daca2011-04-27 18:32:38 +00002054 break;
2055 }
Yi Zou2f718d62009-07-29 17:04:01 -07002056 return 0;
2057 }
2058 return -1;
Robert Love85b4aa42008-12-09 15:10:24 -08002059}
Robert Love85b4aa42008-12-09 15:10:24 -08002060
Robert Love34f42a02009-02-27 10:55:45 -08002061/**
Robert Love5e4f8fe2010-05-07 15:18:35 -07002062 * fcoe_link_ok() - Check if the link is OK for a local port
2063 * @lport: The local port to check link on
2064 *
2065 * Returns: 0 if link is UP and OK, -1 if not
2066 *
2067 */
2068int fcoe_link_ok(struct fc_lport *lport)
2069{
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08002070 struct net_device *netdev = fcoe_netdev(lport);
Robert Love5e4f8fe2010-05-07 15:18:35 -07002071
2072 if (netif_oper_up(netdev))
2073 return 0;
2074 return -1;
2075}
2076
2077/**
Robert Love1875f272009-11-03 11:47:50 -08002078 * fcoe_percpu_clean() - Clear all pending skbs for an local port
2079 * @lport: The local port whose skbs are to be cleared
Joe Eykholte7a51992009-08-25 14:04:08 -07002080 *
2081 * Must be called with fcoe_create_mutex held to single-thread completion.
2082 *
2083 * This flushes the pending skbs by adding a new skb to each queue and
2084 * waiting until they are all freed. This assures us that not only are
2085 * there no packets that will be handled by the lport, but also that any
2086 * threads already handling packet have returned.
Robert Love85b4aa42008-12-09 15:10:24 -08002087 */
Robert Love1875f272009-11-03 11:47:50 -08002088void fcoe_percpu_clean(struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002089{
Robert Love85b4aa42008-12-09 15:10:24 -08002090 struct fcoe_percpu_s *pp;
2091 struct fcoe_rcv_info *fr;
2092 struct sk_buff_head *list;
2093 struct sk_buff *skb, *next;
2094 struct sk_buff *head;
Robert Love5e5e92d2009-03-17 11:41:35 -07002095 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08002096
Robert Love5e5e92d2009-03-17 11:41:35 -07002097 for_each_possible_cpu(cpu) {
2098 pp = &per_cpu(fcoe_percpu, cpu);
2099 spin_lock_bh(&pp->fcoe_rx_list.lock);
2100 list = &pp->fcoe_rx_list;
2101 head = list->next;
2102 for (skb = head; skb != (struct sk_buff *)list;
2103 skb = next) {
2104 next = skb->next;
2105 fr = fcoe_dev_from_skb(skb);
Robert Love1875f272009-11-03 11:47:50 -08002106 if (fr->fr_dev == lport) {
Robert Love5e5e92d2009-03-17 11:41:35 -07002107 __skb_unlink(skb, list);
2108 kfree_skb(skb);
Robert Love85b4aa42008-12-09 15:10:24 -08002109 }
Robert Love85b4aa42008-12-09 15:10:24 -08002110 }
Joe Eykholte7a51992009-08-25 14:04:08 -07002111
2112 if (!pp->thread || !cpu_online(cpu)) {
2113 spin_unlock_bh(&pp->fcoe_rx_list.lock);
2114 continue;
2115 }
2116
2117 skb = dev_alloc_skb(0);
2118 if (!skb) {
2119 spin_unlock_bh(&pp->fcoe_rx_list.lock);
2120 continue;
2121 }
2122 skb->destructor = fcoe_percpu_flush_done;
2123
2124 __skb_queue_tail(&pp->fcoe_rx_list, skb);
2125 if (pp->fcoe_rx_list.qlen == 1)
2126 wake_up_process(pp->thread);
Robert Love5e5e92d2009-03-17 11:41:35 -07002127 spin_unlock_bh(&pp->fcoe_rx_list.lock);
Joe Eykholte7a51992009-08-25 14:04:08 -07002128
2129 wait_for_completion(&fcoe_flush_completion);
Robert Love85b4aa42008-12-09 15:10:24 -08002130 }
2131}
Robert Love85b4aa42008-12-09 15:10:24 -08002132
2133/**
Robert Love1875f272009-11-03 11:47:50 -08002134 * fcoe_reset() - Reset a local port
2135 * @shost: The SCSI host associated with the local port to be reset
Robert Love85b4aa42008-12-09 15:10:24 -08002136 *
Robert Love1875f272009-11-03 11:47:50 -08002137 * Returns: Always 0 (return value required by FC transport template)
Robert Love85b4aa42008-12-09 15:10:24 -08002138 */
2139int fcoe_reset(struct Scsi_Host *shost)
2140{
2141 struct fc_lport *lport = shost_priv(shost);
Vasu Devd2f80952011-02-25 15:03:28 -08002142 struct fcoe_port *port = lport_priv(lport);
2143 struct fcoe_interface *fcoe = port->priv;
2144
2145 fcoe_ctlr_link_down(&fcoe->ctlr);
2146 fcoe_clean_pending_queue(fcoe->ctlr.lp);
2147 if (!fcoe_link_ok(fcoe->ctlr.lp))
2148 fcoe_ctlr_link_up(&fcoe->ctlr);
Robert Love85b4aa42008-12-09 15:10:24 -08002149 return 0;
2150}
Robert Love85b4aa42008-12-09 15:10:24 -08002151
Robert Love34f42a02009-02-27 10:55:45 -08002152/**
Robert Love1875f272009-11-03 11:47:50 -08002153 * fcoe_hostlist_lookup_port() - Find the FCoE interface associated with a net device
2154 * @netdev: The net device used as a key
Robert Love85b4aa42008-12-09 15:10:24 -08002155 *
Robert Love1875f272009-11-03 11:47:50 -08002156 * Locking: Must be called with the RNL mutex held.
2157 *
2158 * Returns: NULL or the FCoE interface
Robert Love85b4aa42008-12-09 15:10:24 -08002159 */
Chris Leech014f5c32009-08-25 13:59:30 -07002160static struct fcoe_interface *
Robert Love1875f272009-11-03 11:47:50 -08002161fcoe_hostlist_lookup_port(const struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08002162{
Chris Leech014f5c32009-08-25 13:59:30 -07002163 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002164
Chris Leech014f5c32009-08-25 13:59:30 -07002165 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
Robert Love1875f272009-11-03 11:47:50 -08002166 if (fcoe->netdev == netdev)
Chris Leech014f5c32009-08-25 13:59:30 -07002167 return fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002168 }
Robert Love85b4aa42008-12-09 15:10:24 -08002169 return NULL;
2170}
2171
Robert Love34f42a02009-02-27 10:55:45 -08002172/**
Robert Love1875f272009-11-03 11:47:50 -08002173 * fcoe_hostlist_lookup() - Find the local port associated with a
2174 * given net device
2175 * @netdev: The netdevice used as a key
Robert Love85b4aa42008-12-09 15:10:24 -08002176 *
Robert Love1875f272009-11-03 11:47:50 -08002177 * Locking: Must be called with the RTNL mutex held
2178 *
2179 * Returns: NULL or the local port
Robert Love85b4aa42008-12-09 15:10:24 -08002180 */
Chris Leech090eb6c2009-08-25 14:00:28 -07002181static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev)
Robert Love85b4aa42008-12-09 15:10:24 -08002182{
Chris Leech014f5c32009-08-25 13:59:30 -07002183 struct fcoe_interface *fcoe;
Robert Love85b4aa42008-12-09 15:10:24 -08002184
Chris Leech014f5c32009-08-25 13:59:30 -07002185 fcoe = fcoe_hostlist_lookup_port(netdev);
Chris Leech3fe9a0b2009-08-25 13:59:46 -07002186 return (fcoe) ? fcoe->ctlr.lp : NULL;
Robert Love85b4aa42008-12-09 15:10:24 -08002187}
Robert Love85b4aa42008-12-09 15:10:24 -08002188
Robert Love34f42a02009-02-27 10:55:45 -08002189/**
Robert Love1875f272009-11-03 11:47:50 -08002190 * fcoe_hostlist_add() - Add the FCoE interface identified by a local
2191 * port to the hostlist
2192 * @lport: The local port that identifies the FCoE interface to be added
2193 *
2194 * Locking: must be called with the RTNL mutex held
Robert Love85b4aa42008-12-09 15:10:24 -08002195 *
2196 * Returns: 0 for success
2197 */
Chris Leech090eb6c2009-08-25 14:00:28 -07002198static int fcoe_hostlist_add(const struct fc_lport *lport)
Robert Love85b4aa42008-12-09 15:10:24 -08002199{
Chris Leech014f5c32009-08-25 13:59:30 -07002200 struct fcoe_interface *fcoe;
2201 struct fcoe_port *port;
Robert Love85b4aa42008-12-09 15:10:24 -08002202
Chris Leech014f5c32009-08-25 13:59:30 -07002203 fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
2204 if (!fcoe) {
2205 port = lport_priv(lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08002206 fcoe = port->priv;
Chris Leech014f5c32009-08-25 13:59:30 -07002207 list_add_tail(&fcoe->list, &fcoe_hostlist);
Robert Love85b4aa42008-12-09 15:10:24 -08002208 }
2209 return 0;
2210}
Robert Love85b4aa42008-12-09 15:10:24 -08002211
Yi Zou78a58242011-01-28 16:05:16 -08002212
2213static struct fcoe_transport fcoe_sw_transport = {
2214 .name = {FCOE_TRANSPORT_DEFAULT},
2215 .attached = false,
2216 .list = LIST_HEAD_INIT(fcoe_sw_transport.list),
2217 .match = fcoe_match,
2218 .create = fcoe_create,
2219 .destroy = fcoe_destroy,
2220 .enable = fcoe_enable,
2221 .disable = fcoe_disable,
2222};
2223
Robert Love34f42a02009-02-27 10:55:45 -08002224/**
Robert Love1875f272009-11-03 11:47:50 -08002225 * fcoe_init() - Initialize fcoe.ko
Robert Love85b4aa42008-12-09 15:10:24 -08002226 *
Robert Love1875f272009-11-03 11:47:50 -08002227 * Returns: 0 on success, or a negative value on failure
Robert Love34f42a02009-02-27 10:55:45 -08002228 */
Robert Love85b4aa42008-12-09 15:10:24 -08002229static int __init fcoe_init(void)
2230{
Robert Love1875f272009-11-03 11:47:50 -08002231 struct fcoe_percpu_s *p;
Robert Love38eccab2009-03-17 11:41:30 -07002232 unsigned int cpu;
Robert Love8976f422009-03-17 11:41:46 -07002233 int rc = 0;
Robert Love85b4aa42008-12-09 15:10:24 -08002234
Tejun Heo2ca32b42011-01-28 16:05:32 -08002235 fcoe_wq = alloc_workqueue("fcoe", 0, 0);
2236 if (!fcoe_wq)
2237 return -ENOMEM;
2238
Yi Zou78a58242011-01-28 16:05:16 -08002239 /* register as a fcoe transport */
2240 rc = fcoe_transport_attach(&fcoe_sw_transport);
2241 if (rc) {
2242 printk(KERN_ERR "failed to register an fcoe transport, check "
2243 "if libfcoe is loaded\n");
2244 return rc;
2245 }
2246
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002247 mutex_lock(&fcoe_config_mutex);
2248
Robert Love38eccab2009-03-17 11:41:30 -07002249 for_each_possible_cpu(cpu) {
Robert Love5e5e92d2009-03-17 11:41:35 -07002250 p = &per_cpu(fcoe_percpu, cpu);
Robert Love38eccab2009-03-17 11:41:30 -07002251 skb_queue_head_init(&p->fcoe_rx_list);
2252 }
2253
Robert Love8976f422009-03-17 11:41:46 -07002254 for_each_online_cpu(cpu)
2255 fcoe_percpu_thread_create(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08002256
Robert Love8976f422009-03-17 11:41:46 -07002257 /* Initialize per CPU interrupt thread */
2258 rc = register_hotcpu_notifier(&fcoe_cpu_notifier);
2259 if (rc)
2260 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08002261
Robert Love8976f422009-03-17 11:41:46 -07002262 /* Setup link change notification */
Robert Love85b4aa42008-12-09 15:10:24 -08002263 fcoe_dev_setup();
2264
Chris Leech5892c322009-08-25 13:59:14 -07002265 rc = fcoe_if_init();
2266 if (rc)
2267 goto out_free;
Robert Love85b4aa42008-12-09 15:10:24 -08002268
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002269 mutex_unlock(&fcoe_config_mutex);
Robert Love85b4aa42008-12-09 15:10:24 -08002270 return 0;
Robert Love8976f422009-03-17 11:41:46 -07002271
2272out_free:
2273 for_each_online_cpu(cpu) {
2274 fcoe_percpu_thread_destroy(cpu);
2275 }
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002276 mutex_unlock(&fcoe_config_mutex);
Tejun Heo2ca32b42011-01-28 16:05:32 -08002277 destroy_workqueue(fcoe_wq);
Robert Love8976f422009-03-17 11:41:46 -07002278 return rc;
Robert Love85b4aa42008-12-09 15:10:24 -08002279}
2280module_init(fcoe_init);
2281
2282/**
Robert Love1875f272009-11-03 11:47:50 -08002283 * fcoe_exit() - Clean up fcoe.ko
Robert Love85b4aa42008-12-09 15:10:24 -08002284 *
Robert Love1875f272009-11-03 11:47:50 -08002285 * Returns: 0 on success or a negative value on failure
Robert Love34f42a02009-02-27 10:55:45 -08002286 */
Robert Love85b4aa42008-12-09 15:10:24 -08002287static void __exit fcoe_exit(void)
2288{
Chris Leech014f5c32009-08-25 13:59:30 -07002289 struct fcoe_interface *fcoe, *tmp;
Chris Leech2e70e242009-08-25 14:00:23 -07002290 struct fcoe_port *port;
Robert Love1875f272009-11-03 11:47:50 -08002291 unsigned int cpu;
Robert Love85b4aa42008-12-09 15:10:24 -08002292
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002293 mutex_lock(&fcoe_config_mutex);
2294
Robert Love85b4aa42008-12-09 15:10:24 -08002295 fcoe_dev_cleanup();
2296
Vasu Dev5919a592009-03-27 09:03:29 -07002297 /* releases the associated fcoe hosts */
Chris Leech090eb6c2009-08-25 14:00:28 -07002298 rtnl_lock();
2299 list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list) {
Chris Leechc863df32009-08-25 14:00:18 -07002300 list_del(&fcoe->list);
Chris Leech2e70e242009-08-25 14:00:23 -07002301 port = lport_priv(fcoe->ctlr.lp);
Tejun Heo2ca32b42011-01-28 16:05:32 -08002302 queue_work(fcoe_wq, &port->destroy_work);
Chris Leechc863df32009-08-25 14:00:18 -07002303 }
Chris Leech090eb6c2009-08-25 14:00:28 -07002304 rtnl_unlock();
Robert Love85b4aa42008-12-09 15:10:24 -08002305
Robert Love8976f422009-03-17 11:41:46 -07002306 unregister_hotcpu_notifier(&fcoe_cpu_notifier);
2307
Chris Leech014f5c32009-08-25 13:59:30 -07002308 for_each_online_cpu(cpu)
Robert Love8976f422009-03-17 11:41:46 -07002309 fcoe_percpu_thread_destroy(cpu);
Robert Love85b4aa42008-12-09 15:10:24 -08002310
Chris Leechdfc1d0f2009-08-25 14:00:13 -07002311 mutex_unlock(&fcoe_config_mutex);
Chris Leech2e70e242009-08-25 14:00:23 -07002312
Tejun Heo2ca32b42011-01-28 16:05:32 -08002313 /*
2314 * destroy_work's may be chained but destroy_workqueue()
2315 * can take care of them. Just kill the fcoe_wq.
2316 */
2317 destroy_workqueue(fcoe_wq);
Chris Leech2e70e242009-08-25 14:00:23 -07002318
Tejun Heo2ca32b42011-01-28 16:05:32 -08002319 /*
2320 * Detaching from the scsi transport must happen after all
2321 * destroys are done on the fcoe_wq. destroy_workqueue will
2322 * enusre the fcoe_wq is flushed.
2323 */
Chris Leech2e70e242009-08-25 14:00:23 -07002324 fcoe_if_exit();
Yi Zou78a58242011-01-28 16:05:16 -08002325
2326 /* detach from fcoe transport */
2327 fcoe_transport_detach(&fcoe_sw_transport);
Robert Love85b4aa42008-12-09 15:10:24 -08002328}
2329module_exit(fcoe_exit);
Chris Leech11b56182009-11-03 11:46:29 -08002330
2331/**
2332 * fcoe_flogi_resp() - FCoE specific FLOGI and FDISC response handler
2333 * @seq: active sequence in the FLOGI or FDISC exchange
2334 * @fp: response frame, or error encoded in a pointer (timeout)
2335 * @arg: pointer the the fcoe_ctlr structure
2336 *
Uwe Kleine-König65155b32010-06-11 12:17:01 +02002337 * This handles MAC address management for FCoE, then passes control on to
Chris Leech11b56182009-11-03 11:46:29 -08002338 * the libfc FLOGI response handler.
2339 */
2340static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2341{
2342 struct fcoe_ctlr *fip = arg;
2343 struct fc_exch *exch = fc_seq_exch(seq);
2344 struct fc_lport *lport = exch->lp;
2345 u8 *mac;
2346
2347 if (IS_ERR(fp))
2348 goto done;
2349
2350 mac = fr_cb(fp)->granted_mac;
Vasu Dev907c07d2011-10-28 11:34:23 -07002351 /* pre-FIP */
2352 if (is_zero_ether_addr(mac))
2353 fcoe_ctlr_recv_flogi(fip, lport, fp);
2354 if (!is_zero_ether_addr(mac))
2355 fcoe_update_src_mac(lport, mac);
Chris Leech11b56182009-11-03 11:46:29 -08002356done:
2357 fc_lport_flogi_resp(seq, fp, lport);
2358}
2359
2360/**
2361 * fcoe_logo_resp() - FCoE specific LOGO response handler
2362 * @seq: active sequence in the LOGO exchange
2363 * @fp: response frame, or error encoded in a pointer (timeout)
2364 * @arg: pointer the the fcoe_ctlr structure
2365 *
Uwe Kleine-König65155b32010-06-11 12:17:01 +02002366 * This handles MAC address management for FCoE, then passes control on to
Chris Leech11b56182009-11-03 11:46:29 -08002367 * the libfc LOGO response handler.
2368 */
2369static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2370{
Joe Eykholt386309ce2009-11-03 11:49:16 -08002371 struct fc_lport *lport = arg;
Chris Leech11b56182009-11-03 11:46:29 -08002372 static u8 zero_mac[ETH_ALEN] = { 0 };
2373
2374 if (!IS_ERR(fp))
Joe Eykholt386309ce2009-11-03 11:49:16 -08002375 fcoe_update_src_mac(lport, zero_mac);
Chris Leech11b56182009-11-03 11:46:29 -08002376 fc_lport_logo_resp(seq, fp, lport);
2377}
2378
2379/**
2380 * fcoe_elsct_send - FCoE specific ELS handler
2381 *
2382 * This does special case handling of FIP encapsualted ELS exchanges for FCoE,
2383 * using FCoE specific response handlers and passing the FIP controller as
2384 * the argument (the lport is still available from the exchange).
2385 *
2386 * Most of the work here is just handed off to the libfc routine.
2387 */
Robert Love1875f272009-11-03 11:47:50 -08002388static struct fc_seq *fcoe_elsct_send(struct fc_lport *lport, u32 did,
2389 struct fc_frame *fp, unsigned int op,
2390 void (*resp)(struct fc_seq *,
2391 struct fc_frame *,
2392 void *),
2393 void *arg, u32 timeout)
Chris Leech11b56182009-11-03 11:46:29 -08002394{
2395 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08002396 struct fcoe_interface *fcoe = port->priv;
Chris Leech11b56182009-11-03 11:46:29 -08002397 struct fcoe_ctlr *fip = &fcoe->ctlr;
2398 struct fc_frame_header *fh = fc_frame_header_get(fp);
2399
2400 switch (op) {
2401 case ELS_FLOGI:
2402 case ELS_FDISC:
Joe Eykholte10f8c62010-07-20 15:20:30 -07002403 if (lport->point_to_multipoint)
2404 break;
Chris Leech11b56182009-11-03 11:46:29 -08002405 return fc_elsct_send(lport, did, fp, op, fcoe_flogi_resp,
2406 fip, timeout);
2407 case ELS_LOGO:
2408 /* only hook onto fabric logouts, not port logouts */
2409 if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI)
2410 break;
2411 return fc_elsct_send(lport, did, fp, op, fcoe_logo_resp,
Joe Eykholt386309ce2009-11-03 11:49:16 -08002412 lport, timeout);
Chris Leech11b56182009-11-03 11:46:29 -08002413 }
2414 return fc_elsct_send(lport, did, fp, op, resp, arg, timeout);
2415}
2416
Chris Leech9a057532009-11-03 11:46:40 -08002417/**
2418 * fcoe_vport_create() - create an fc_host/scsi_host for a vport
2419 * @vport: fc_vport object to create a new fc_host for
2420 * @disabled: start the new fc_host in a disabled state by default?
2421 *
2422 * Returns: 0 for success
2423 */
2424static int fcoe_vport_create(struct fc_vport *vport, bool disabled)
2425{
2426 struct Scsi_Host *shost = vport_to_shost(vport);
2427 struct fc_lport *n_port = shost_priv(shost);
2428 struct fcoe_port *port = lport_priv(n_port);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08002429 struct fcoe_interface *fcoe = port->priv;
Chris Leech9a057532009-11-03 11:46:40 -08002430 struct net_device *netdev = fcoe->netdev;
2431 struct fc_lport *vn_port;
Neerav Parikhbdf25212011-05-16 16:45:29 -07002432 int rc;
2433 char buf[32];
2434
2435 rc = fcoe_validate_vport_create(vport);
2436 if (rc) {
Bhanu Prakash Gollapudid8348952011-08-04 17:38:49 -07002437 fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
Neerav Parikhbdf25212011-05-16 16:45:29 -07002438 printk(KERN_ERR "fcoe: Failed to create vport, "
2439 "WWPN (0x%s) already exists\n",
2440 buf);
2441 return rc;
2442 }
Chris Leech9a057532009-11-03 11:46:40 -08002443
2444 mutex_lock(&fcoe_config_mutex);
Jiri Pirko4bc71cb2011-09-03 03:34:30 +00002445 rtnl_lock();
Chris Leech9a057532009-11-03 11:46:40 -08002446 vn_port = fcoe_if_create(fcoe, &vport->dev, 1);
Jiri Pirko4bc71cb2011-09-03 03:34:30 +00002447 rtnl_unlock();
Chris Leech9a057532009-11-03 11:46:40 -08002448 mutex_unlock(&fcoe_config_mutex);
2449
2450 if (IS_ERR(vn_port)) {
2451 printk(KERN_ERR "fcoe: fcoe_vport_create(%s) failed\n",
2452 netdev->name);
2453 return -EIO;
2454 }
2455
2456 if (disabled) {
2457 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2458 } else {
2459 vn_port->boot_time = jiffies;
2460 fc_fabric_login(vn_port);
2461 fc_vport_setlink(vn_port);
2462 }
2463 return 0;
2464}
2465
2466/**
2467 * fcoe_vport_destroy() - destroy the fc_host/scsi_host for a vport
2468 * @vport: fc_vport object that is being destroyed
2469 *
2470 * Returns: 0 for success
2471 */
2472static int fcoe_vport_destroy(struct fc_vport *vport)
2473{
2474 struct Scsi_Host *shost = vport_to_shost(vport);
2475 struct fc_lport *n_port = shost_priv(shost);
2476 struct fc_lport *vn_port = vport->dd_data;
2477 struct fcoe_port *port = lport_priv(vn_port);
2478
2479 mutex_lock(&n_port->lp_mutex);
2480 list_del(&vn_port->list);
2481 mutex_unlock(&n_port->lp_mutex);
Tejun Heo2ca32b42011-01-28 16:05:32 -08002482 queue_work(fcoe_wq, &port->destroy_work);
Chris Leech9a057532009-11-03 11:46:40 -08002483 return 0;
2484}
2485
2486/**
2487 * fcoe_vport_disable() - change vport state
2488 * @vport: vport to bring online/offline
2489 * @disable: should the vport be disabled?
2490 */
2491static int fcoe_vport_disable(struct fc_vport *vport, bool disable)
2492{
2493 struct fc_lport *lport = vport->dd_data;
2494
2495 if (disable) {
2496 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2497 fc_fabric_logoff(lport);
2498 } else {
2499 lport->boot_time = jiffies;
2500 fc_fabric_login(lport);
2501 fc_vport_setlink(lport);
2502 }
2503
2504 return 0;
2505}
2506
Chris Leechdc8596d2009-11-03 11:47:18 -08002507/**
2508 * fcoe_vport_set_symbolic_name() - append vport string to symbolic name
2509 * @vport: fc_vport with a new symbolic name string
2510 *
2511 * After generating a new symbolic name string, a new RSPN_ID request is
2512 * sent to the name server. There is no response handler, so if it fails
2513 * for some reason it will not be retried.
2514 */
2515static void fcoe_set_vport_symbolic_name(struct fc_vport *vport)
2516{
2517 struct fc_lport *lport = vport->dd_data;
2518 struct fc_frame *fp;
2519 size_t len;
2520
2521 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
2522 "%s v%s over %s : %s", FCOE_NAME, FCOE_VERSION,
2523 fcoe_netdev(lport)->name, vport->symbolic_name);
2524
2525 if (lport->state != LPORT_ST_READY)
2526 return;
2527
2528 len = strnlen(fc_host_symbolic_name(lport->host), 255);
2529 fp = fc_frame_alloc(lport,
2530 sizeof(struct fc_ct_hdr) +
2531 sizeof(struct fc_ns_rspn) + len);
2532 if (!fp)
2533 return;
2534 lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RSPN_ID,
Joe Eykholtb94f8952009-11-03 11:50:21 -08002535 NULL, NULL, 3 * lport->r_a_tov);
Chris Leechdc8596d2009-11-03 11:47:18 -08002536}
Yi Zoub84056b2009-11-20 14:55:19 -08002537
2538/**
2539 * fcoe_get_lesb() - Fill the FCoE Link Error Status Block
2540 * @lport: the local port
2541 * @fc_lesb: the link error status block
2542 */
2543static void fcoe_get_lesb(struct fc_lport *lport,
2544 struct fc_els_lesb *fc_lesb)
2545{
Yi Zoub84056b2009-11-20 14:55:19 -08002546 struct net_device *netdev = fcoe_netdev(lport);
2547
Bhanu Prakash Gollapudi814740d2011-10-03 16:45:01 -07002548 __fcoe_get_lesb(lport, fc_lesb, netdev);
Yi Zoub84056b2009-11-20 14:55:19 -08002549}
Joe Eykholt7d65b0d2010-03-12 16:08:02 -08002550
2551/**
2552 * fcoe_set_port_id() - Callback from libfc when Port_ID is set.
2553 * @lport: the local port
2554 * @port_id: the port ID
2555 * @fp: the received frame, if any, that caused the port_id to be set.
2556 *
2557 * This routine handles the case where we received a FLOGI and are
2558 * entering point-to-point mode. We need to call fcoe_ctlr_recv_flogi()
2559 * so it can set the non-mapped mode and gateway address.
2560 *
2561 * The FLOGI LS_ACC is handled by fcoe_flogi_resp().
2562 */
2563static void fcoe_set_port_id(struct fc_lport *lport,
2564 u32 port_id, struct fc_frame *fp)
2565{
2566 struct fcoe_port *port = lport_priv(lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -08002567 struct fcoe_interface *fcoe = port->priv;
Joe Eykholt7d65b0d2010-03-12 16:08:02 -08002568
2569 if (fp && fc_frame_payload_op(fp) == ELS_FLOGI)
2570 fcoe_ctlr_recv_flogi(&fcoe->ctlr, lport, fp);
2571}