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