1
2
3
4
5
6
7
8#include <linux/module.h>
9#include <linux/spinlock.h>
10#include <linux/netdevice.h>
11#include <linux/etherdevice.h>
12#include <linux/ethtool.h>
13#include <linux/if_ether.h>
14#include <linux/if_vlan.h>
15#include <linux/crc32.h>
16#include <linux/slab.h>
17#include <linux/cpu.h>
18#include <linux/fs.h>
19#include <linux/sysfs.h>
20#include <linux/ctype.h>
21#include <linux/workqueue.h>
22#include <net/dcbnl.h>
23#include <net/dcbevent.h>
24#include <scsi/scsi_tcq.h>
25#include <scsi/scsicam.h>
26#include <scsi/scsi_transport.h>
27#include <scsi/scsi_transport_fc.h>
28#include <net/rtnetlink.h>
29
30#include <scsi/fc/fc_encaps.h>
31#include <scsi/fc/fc_fip.h>
32#include <scsi/fc/fc_fcoe.h>
33
34#include <scsi/libfc.h>
35#include <scsi/fc_frame.h>
36#include <scsi/libfcoe.h>
37
38#include "fcoe.h"
39
40MODULE_AUTHOR("Open-FCoE.org");
41MODULE_DESCRIPTION("FCoE");
42MODULE_LICENSE("GPL v2");
43
44
45static unsigned int fcoe_ddp_min = 4096;
46module_param_named(ddp_min, fcoe_ddp_min, uint, S_IRUGO | S_IWUSR);
47MODULE_PARM_DESC(ddp_min, "Minimum I/O size in bytes for " \
48 "Direct Data Placement (DDP).");
49
50unsigned int fcoe_debug_logging;
51module_param_named(debug_logging, fcoe_debug_logging, int, S_IRUGO|S_IWUSR);
52MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels");
53
54static unsigned int fcoe_e_d_tov = 2 * 1000;
55module_param_named(e_d_tov, fcoe_e_d_tov, int, S_IRUGO|S_IWUSR);
56MODULE_PARM_DESC(e_d_tov, "E_D_TOV in ms, default 2000");
57
58static unsigned int fcoe_r_a_tov = 2 * 2 * 1000;
59module_param_named(r_a_tov, fcoe_r_a_tov, int, S_IRUGO|S_IWUSR);
60MODULE_PARM_DESC(r_a_tov, "R_A_TOV in ms, default 4000");
61
62static DEFINE_MUTEX(fcoe_config_mutex);
63
64static struct workqueue_struct *fcoe_wq;
65
66
67
68static LIST_HEAD(fcoe_hostlist);
69static DEFINE_PER_CPU(struct fcoe_percpu_s, fcoe_percpu);
70
71
72static int fcoe_reset(struct Scsi_Host *);
73static 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 *);
76static void fcoe_percpu_clean(struct fc_lport *);
77static int fcoe_link_ok(struct fc_lport *);
78
79static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *);
80static int fcoe_hostlist_add(const struct fc_lport *);
81static void fcoe_hostlist_del(const struct fc_lport *);
82
83static int fcoe_device_notification(struct notifier_block *, ulong, void *);
84static void fcoe_dev_setup(void);
85static void fcoe_dev_cleanup(void);
86static struct fcoe_interface
87*fcoe_hostlist_lookup_port(const struct net_device *);
88
89static int fcoe_fip_recv(struct sk_buff *, struct net_device *,
90 struct packet_type *, struct net_device *);
91static int fcoe_fip_vlan_recv(struct sk_buff *, struct net_device *,
92 struct packet_type *, struct net_device *);
93
94static void fcoe_fip_send(struct fcoe_ctlr *, struct sk_buff *);
95static void fcoe_update_src_mac(struct fc_lport *, u8 *);
96static u8 *fcoe_get_src_mac(struct fc_lport *);
97static void fcoe_destroy_work(struct work_struct *);
98
99static int fcoe_ddp_setup(struct fc_lport *, u16, struct scatterlist *,
100 unsigned int);
101static int fcoe_ddp_done(struct fc_lport *, u16);
102static int fcoe_ddp_target(struct fc_lport *, u16, struct scatterlist *,
103 unsigned int);
104static int fcoe_dcb_app_notification(struct notifier_block *notifier,
105 ulong event, void *ptr);
106
107static bool fcoe_match(struct net_device *netdev);
108static int fcoe_create(struct net_device *netdev, enum fip_mode fip_mode);
109static int fcoe_destroy(struct net_device *netdev);
110static int fcoe_enable(struct net_device *netdev);
111static int fcoe_disable(struct net_device *netdev);
112
113
114static int fcoe_ctlr_alloc(struct net_device *netdev);
115static int fcoe_ctlr_enabled(struct fcoe_ctlr_device *cdev);
116static void fcoe_ctlr_mode(struct fcoe_ctlr_device *ctlr_dev);
117
118static struct fc_seq *fcoe_elsct_send(struct fc_lport *,
119 u32 did, struct fc_frame *,
120 unsigned int op,
121 void (*resp)(struct fc_seq *,
122 struct fc_frame *,
123 void *),
124 void *, u32 timeout);
125static void fcoe_recv_frame(struct sk_buff *skb);
126
127
128static struct notifier_block fcoe_notifier = {
129 .notifier_call = fcoe_device_notification,
130};
131
132
133static struct notifier_block dcb_notifier = {
134 .notifier_call = fcoe_dcb_app_notification,
135};
136
137static struct scsi_transport_template *fcoe_nport_scsi_transport;
138static struct scsi_transport_template *fcoe_vport_scsi_transport;
139
140static int fcoe_vport_destroy(struct fc_vport *);
141static int fcoe_vport_create(struct fc_vport *, bool disabled);
142static int fcoe_vport_disable(struct fc_vport *, bool disable);
143static void fcoe_set_vport_symbolic_name(struct fc_vport *);
144static void fcoe_set_port_id(struct fc_lport *, u32, struct fc_frame *);
145static void fcoe_fcf_get_vlan_id(struct fcoe_fcf_device *);
146static void fcoe_vport_remove(struct fc_lport *);
147
148static struct fcoe_sysfs_function_template fcoe_sysfs_templ = {
149 .set_fcoe_ctlr_mode = fcoe_ctlr_mode,
150 .set_fcoe_ctlr_enabled = fcoe_ctlr_enabled,
151 .get_fcoe_ctlr_link_fail = fcoe_ctlr_get_lesb,
152 .get_fcoe_ctlr_vlink_fail = fcoe_ctlr_get_lesb,
153 .get_fcoe_ctlr_miss_fka = fcoe_ctlr_get_lesb,
154 .get_fcoe_ctlr_symb_err = fcoe_ctlr_get_lesb,
155 .get_fcoe_ctlr_err_block = fcoe_ctlr_get_lesb,
156 .get_fcoe_ctlr_fcs_error = fcoe_ctlr_get_lesb,
157
158 .get_fcoe_fcf_selected = fcoe_fcf_get_selected,
159 .get_fcoe_fcf_vlan_id = fcoe_fcf_get_vlan_id,
160};
161
162static struct libfc_function_template fcoe_libfc_fcn_templ = {
163 .frame_send = fcoe_xmit,
164 .ddp_setup = fcoe_ddp_setup,
165 .ddp_done = fcoe_ddp_done,
166 .ddp_target = fcoe_ddp_target,
167 .elsct_send = fcoe_elsct_send,
168 .get_lesb = fcoe_get_lesb,
169 .lport_set_port_id = fcoe_set_port_id,
170};
171
172static struct fc_function_template fcoe_nport_fc_functions = {
173 .show_host_node_name = 1,
174 .show_host_port_name = 1,
175 .show_host_supported_classes = 1,
176 .show_host_supported_fc4s = 1,
177 .show_host_active_fc4s = 1,
178 .show_host_maxframe_size = 1,
179 .show_host_serial_number = 1,
180 .show_host_manufacturer = 1,
181 .show_host_model = 1,
182 .show_host_model_description = 1,
183 .show_host_hardware_version = 1,
184 .show_host_driver_version = 1,
185 .show_host_firmware_version = 1,
186 .show_host_optionrom_version = 1,
187
188 .show_host_port_id = 1,
189 .show_host_supported_speeds = 1,
190 .get_host_speed = fc_get_host_speed,
191 .show_host_speed = 1,
192 .show_host_port_type = 1,
193 .get_host_port_state = fc_get_host_port_state,
194 .show_host_port_state = 1,
195 .show_host_symbolic_name = 1,
196
197 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
198 .show_rport_maxframe_size = 1,
199 .show_rport_supported_classes = 1,
200
201 .show_host_fabric_name = 1,
202 .show_starget_node_name = 1,
203 .show_starget_port_name = 1,
204 .show_starget_port_id = 1,
205 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
206 .show_rport_dev_loss_tmo = 1,
207 .get_fc_host_stats = fc_get_host_stats,
208 .issue_fc_host_lip = fcoe_reset,
209
210 .terminate_rport_io = fc_rport_terminate_io,
211
212 .vport_create = fcoe_vport_create,
213 .vport_delete = fcoe_vport_destroy,
214 .vport_disable = fcoe_vport_disable,
215 .set_vport_symbolic_name = fcoe_set_vport_symbolic_name,
216
217 .bsg_request = fc_lport_bsg_request,
218};
219
220static struct fc_function_template fcoe_vport_fc_functions = {
221 .show_host_node_name = 1,
222 .show_host_port_name = 1,
223 .show_host_supported_classes = 1,
224 .show_host_supported_fc4s = 1,
225 .show_host_active_fc4s = 1,
226 .show_host_maxframe_size = 1,
227 .show_host_serial_number = 1,
228 .show_host_manufacturer = 1,
229 .show_host_model = 1,
230 .show_host_model_description = 1,
231 .show_host_hardware_version = 1,
232 .show_host_driver_version = 1,
233 .show_host_firmware_version = 1,
234 .show_host_optionrom_version = 1,
235
236 .show_host_port_id = 1,
237 .show_host_supported_speeds = 1,
238 .get_host_speed = fc_get_host_speed,
239 .show_host_speed = 1,
240 .show_host_port_type = 1,
241 .get_host_port_state = fc_get_host_port_state,
242 .show_host_port_state = 1,
243 .show_host_symbolic_name = 1,
244
245 .dd_fcrport_size = sizeof(struct fc_rport_libfc_priv),
246 .show_rport_maxframe_size = 1,
247 .show_rport_supported_classes = 1,
248
249 .show_host_fabric_name = 1,
250 .show_starget_node_name = 1,
251 .show_starget_port_name = 1,
252 .show_starget_port_id = 1,
253 .set_rport_dev_loss_tmo = fc_set_rport_loss_tmo,
254 .show_rport_dev_loss_tmo = 1,
255 .get_fc_host_stats = fc_get_host_stats,
256 .issue_fc_host_lip = fcoe_reset,
257
258 .terminate_rport_io = fc_rport_terminate_io,
259
260 .bsg_request = fc_lport_bsg_request,
261};
262
263static struct scsi_host_template fcoe_shost_template = {
264 .module = THIS_MODULE,
265 .name = "FCoE Driver",
266 .proc_name = FCOE_NAME,
267 .queuecommand = fc_queuecommand,
268 .eh_timed_out = fc_eh_timed_out,
269 .eh_abort_handler = fc_eh_abort,
270 .eh_device_reset_handler = fc_eh_device_reset,
271 .eh_host_reset_handler = fc_eh_host_reset,
272 .slave_alloc = fc_slave_alloc,
273 .change_queue_depth = scsi_change_queue_depth,
274 .this_id = -1,
275 .cmd_per_lun = 3,
276 .can_queue = FCOE_MAX_OUTSTANDING_COMMANDS,
277 .sg_tablesize = SG_ALL,
278 .max_sectors = 0xffff,
279 .track_queue_depth = 1,
280};
281
282
283
284
285
286
287
288
289
290static int fcoe_interface_setup(struct fcoe_interface *fcoe,
291 struct net_device *netdev)
292{
293 struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
294 struct netdev_hw_addr *ha;
295 struct net_device *real_dev;
296 u8 flogi_maddr[ETH_ALEN];
297 const struct net_device_ops *ops;
298
299 fcoe->netdev = netdev;
300
301
302 ops = netdev->netdev_ops;
303 if (ops->ndo_fcoe_enable) {
304 if (ops->ndo_fcoe_enable(netdev))
305 FCOE_NETDEV_DBG(netdev, "Failed to enable FCoE"
306 " specific feature for LLD.\n");
307 }
308
309
310 if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) {
311 FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n");
312 return -EOPNOTSUPP;
313 }
314
315
316
317 real_dev = is_vlan_dev(netdev) ? vlan_dev_real_dev(netdev) : netdev;
318 fcoe->realdev = real_dev;
319 rcu_read_lock();
320 for_each_dev_addr(real_dev, ha) {
321 if ((ha->type == NETDEV_HW_ADDR_T_SAN) &&
322 (is_valid_ether_addr(ha->addr))) {
323 memcpy(fip->ctl_src_addr, ha->addr, ETH_ALEN);
324 fip->spma = 1;
325 break;
326 }
327 }
328 rcu_read_unlock();
329
330
331 if (!fip->spma)
332 memcpy(fip->ctl_src_addr, netdev->dev_addr, netdev->addr_len);
333
334
335
336
337
338
339 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
340 dev_uc_add(netdev, flogi_maddr);
341 if (fip->spma)
342 dev_uc_add(netdev, fip->ctl_src_addr);
343 if (fip->mode == FIP_MODE_VN2VN) {
344 dev_mc_add(netdev, FIP_ALL_VN2VN_MACS);
345 dev_mc_add(netdev, FIP_ALL_P2P_MACS);
346 } else
347 dev_mc_add(netdev, FIP_ALL_ENODE_MACS);
348
349
350
351
352
353 fcoe->fcoe_packet_type.func = fcoe_rcv;
354 fcoe->fcoe_packet_type.type = htons(ETH_P_FCOE);
355 fcoe->fcoe_packet_type.dev = netdev;
356 dev_add_pack(&fcoe->fcoe_packet_type);
357
358 fcoe->fip_packet_type.func = fcoe_fip_recv;
359 fcoe->fip_packet_type.type = htons(ETH_P_FIP);
360 fcoe->fip_packet_type.dev = netdev;
361 dev_add_pack(&fcoe->fip_packet_type);
362
363 if (netdev != real_dev) {
364 fcoe->fip_vlan_packet_type.func = fcoe_fip_vlan_recv;
365 fcoe->fip_vlan_packet_type.type = htons(ETH_P_FIP);
366 fcoe->fip_vlan_packet_type.dev = real_dev;
367 dev_add_pack(&fcoe->fip_vlan_packet_type);
368 }
369 return 0;
370}
371
372
373
374
375
376
377
378
379static struct fcoe_interface *fcoe_interface_create(struct net_device *netdev,
380 enum fip_mode fip_mode)
381{
382 struct fcoe_ctlr_device *ctlr_dev;
383 struct fcoe_ctlr *ctlr;
384 struct fcoe_interface *fcoe;
385 int size;
386 int err;
387
388 if (!try_module_get(THIS_MODULE)) {
389 FCOE_NETDEV_DBG(netdev,
390 "Could not get a reference to the module\n");
391 fcoe = ERR_PTR(-EBUSY);
392 goto out;
393 }
394
395 size = sizeof(struct fcoe_ctlr) + sizeof(struct fcoe_interface);
396 ctlr_dev = fcoe_ctlr_device_add(&netdev->dev, &fcoe_sysfs_templ,
397 size);
398 if (!ctlr_dev) {
399 FCOE_DBG("Failed to add fcoe_ctlr_device\n");
400 fcoe = ERR_PTR(-ENOMEM);
401 goto out_putmod;
402 }
403
404 ctlr = fcoe_ctlr_device_priv(ctlr_dev);
405 ctlr->cdev = ctlr_dev;
406 fcoe = fcoe_ctlr_priv(ctlr);
407
408 dev_hold(netdev);
409
410
411
412
413 fcoe_ctlr_init(ctlr, fip_mode);
414 ctlr->send = fcoe_fip_send;
415 ctlr->update_mac = fcoe_update_src_mac;
416 ctlr->get_src_addr = fcoe_get_src_mac;
417
418 err = fcoe_interface_setup(fcoe, netdev);
419 if (err) {
420 fcoe_ctlr_destroy(ctlr);
421 fcoe_ctlr_device_delete(ctlr_dev);
422 dev_put(netdev);
423 fcoe = ERR_PTR(err);
424 goto out_putmod;
425 }
426
427 goto out;
428
429out_putmod:
430 module_put(THIS_MODULE);
431out:
432 return fcoe;
433}
434
435
436
437
438
439
440
441static void fcoe_interface_remove(struct fcoe_interface *fcoe)
442{
443 struct net_device *netdev = fcoe->netdev;
444 struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
445 u8 flogi_maddr[ETH_ALEN];
446 const struct net_device_ops *ops;
447
448
449
450
451
452
453
454 __dev_remove_pack(&fcoe->fcoe_packet_type);
455 __dev_remove_pack(&fcoe->fip_packet_type);
456 if (netdev != fcoe->realdev)
457 __dev_remove_pack(&fcoe->fip_vlan_packet_type);
458 synchronize_net();
459
460
461 memcpy(flogi_maddr, (u8[6]) FC_FCOE_FLOGI_MAC, ETH_ALEN);
462 dev_uc_del(netdev, flogi_maddr);
463 if (fip->spma)
464 dev_uc_del(netdev, fip->ctl_src_addr);
465 if (fip->mode == FIP_MODE_VN2VN) {
466 dev_mc_del(netdev, FIP_ALL_VN2VN_MACS);
467 dev_mc_del(netdev, FIP_ALL_P2P_MACS);
468 } else
469 dev_mc_del(netdev, FIP_ALL_ENODE_MACS);
470
471
472 ops = netdev->netdev_ops;
473 if (ops->ndo_fcoe_disable) {
474 if (ops->ndo_fcoe_disable(netdev))
475 FCOE_NETDEV_DBG(netdev, "Failed to disable FCoE"
476 " specific feature for LLD.\n");
477 }
478 fcoe->removed = 1;
479}
480
481
482
483
484
485
486static void fcoe_interface_cleanup(struct fcoe_interface *fcoe)
487{
488 struct net_device *netdev = fcoe->netdev;
489 struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
490
491
492
493 fcoe_ctlr_destroy(fip);
494 scsi_host_put(fip->lp->host);
495 dev_put(netdev);
496 module_put(THIS_MODULE);
497}
498
499
500
501
502
503
504
505
506
507
508
509static int fcoe_fip_recv(struct sk_buff *skb, struct net_device *netdev,
510 struct packet_type *ptype,
511 struct net_device *orig_dev)
512{
513 struct fcoe_interface *fcoe;
514 struct fcoe_ctlr *ctlr;
515
516 fcoe = container_of(ptype, struct fcoe_interface, fip_packet_type);
517 ctlr = fcoe_to_ctlr(fcoe);
518 fcoe_ctlr_recv(ctlr, skb);
519 return 0;
520}
521
522
523
524
525
526
527
528
529
530
531
532static int fcoe_fip_vlan_recv(struct sk_buff *skb, struct net_device *netdev,
533 struct packet_type *ptype,
534 struct net_device *orig_dev)
535{
536 struct fcoe_interface *fcoe;
537 struct fcoe_ctlr *ctlr;
538
539 fcoe = container_of(ptype, struct fcoe_interface, fip_vlan_packet_type);
540 ctlr = fcoe_to_ctlr(fcoe);
541 fcoe_ctlr_recv(ctlr, skb);
542 return 0;
543}
544
545
546
547
548
549
550static void fcoe_port_send(struct fcoe_port *port, struct sk_buff *skb)
551{
552 if (port->fcoe_pending_queue.qlen)
553 fcoe_check_wait_queue(port->lport, skb);
554 else if (fcoe_start_io(skb))
555 fcoe_check_wait_queue(port->lport, skb);
556}
557
558
559
560
561
562
563static void fcoe_fip_send(struct fcoe_ctlr *fip, struct sk_buff *skb)
564{
565 struct fcoe_interface *fcoe = fcoe_from_ctlr(fip);
566 struct fip_frame {
567 struct ethhdr eth;
568 struct fip_header fip;
569 } __packed *frame;
570
571
572
573
574 frame = (struct fip_frame *)skb->data;
575 if (ntohs(frame->eth.h_proto) == ETH_P_FIP &&
576 ntohs(frame->fip.fip_op) == FIP_OP_VLAN &&
577 fcoe->realdev != fcoe->netdev)
578 skb->dev = fcoe->realdev;
579 else
580 skb->dev = fcoe->netdev;
581 fcoe_port_send(lport_priv(fip->lp), skb);
582}
583
584
585
586
587
588
589
590
591
592static void fcoe_update_src_mac(struct fc_lport *lport, u8 *addr)
593{
594 struct fcoe_port *port = lport_priv(lport);
595 struct fcoe_interface *fcoe = port->priv;
596
597 if (!is_zero_ether_addr(port->data_src_addr))
598 dev_uc_del(fcoe->netdev, port->data_src_addr);
599 if (!is_zero_ether_addr(addr))
600 dev_uc_add(fcoe->netdev, addr);
601 memcpy(port->data_src_addr, addr, ETH_ALEN);
602}
603
604
605
606
607
608static u8 *fcoe_get_src_mac(struct fc_lport *lport)
609{
610 struct fcoe_port *port = lport_priv(lport);
611
612 return port->data_src_addr;
613}
614
615
616
617
618
619
620
621static int fcoe_lport_config(struct fc_lport *lport)
622{
623 lport->link_up = 0;
624 lport->qfull = 0;
625 lport->max_retry_count = 3;
626 lport->max_rport_retry_count = 3;
627 lport->e_d_tov = fcoe_e_d_tov;
628 lport->r_a_tov = fcoe_r_a_tov;
629 lport->service_params = (FCP_SPPF_INIT_FCN | FCP_SPPF_RD_XRDY_DIS |
630 FCP_SPPF_RETRY | FCP_SPPF_CONF_COMPL);
631 lport->does_npiv = 1;
632
633 fc_lport_init_stats(lport);
634
635
636 fc_lport_config(lport);
637
638
639 lport->crc_offload = 0;
640 lport->seq_offload = 0;
641 lport->lro_enabled = 0;
642 lport->lro_xid = 0;
643 lport->lso_max = 0;
644
645 return 0;
646}
647
648
649
650
651
652static void fcoe_netdev_features_change(struct fc_lport *lport,
653 struct net_device *netdev)
654{
655 mutex_lock(&lport->lp_mutex);
656
657 if (netdev->features & NETIF_F_SG)
658 lport->sg_supp = 1;
659 else
660 lport->sg_supp = 0;
661
662 if (netdev->features & NETIF_F_FCOE_CRC) {
663 lport->crc_offload = 1;
664 FCOE_NETDEV_DBG(netdev, "Supports FCCRC offload\n");
665 } else {
666 lport->crc_offload = 0;
667 }
668
669 if (netdev->features & NETIF_F_FSO) {
670 lport->seq_offload = 1;
671 lport->lso_max = netdev->gso_max_size;
672 FCOE_NETDEV_DBG(netdev, "Supports LSO for max len 0x%x\n",
673 lport->lso_max);
674 } else {
675 lport->seq_offload = 0;
676 lport->lso_max = 0;
677 }
678
679 if (netdev->fcoe_ddp_xid) {
680 lport->lro_enabled = 1;
681 lport->lro_xid = netdev->fcoe_ddp_xid;
682 FCOE_NETDEV_DBG(netdev, "Supports LRO for max xid 0x%x\n",
683 lport->lro_xid);
684 } else {
685 lport->lro_enabled = 0;
686 lport->lro_xid = 0;
687 }
688
689 mutex_unlock(&lport->lp_mutex);
690}
691
692
693
694
695
696
697
698
699
700
701static int fcoe_netdev_config(struct fc_lport *lport, struct net_device *netdev)
702{
703 u32 mfs;
704 u64 wwnn, wwpn;
705 struct fcoe_interface *fcoe;
706 struct fcoe_ctlr *ctlr;
707 struct fcoe_port *port;
708
709
710 port = lport_priv(lport);
711 fcoe = port->priv;
712 ctlr = fcoe_to_ctlr(fcoe);
713
714
715 if (is_vlan_dev(netdev))
716 lport->vlan = vlan_dev_vlan_id(netdev);
717 else
718 lport->vlan = 0;
719
720
721
722
723
724
725 mfs = netdev->mtu;
726 if (netdev->features & NETIF_F_FCOE_MTU) {
727 mfs = FCOE_MTU;
728 FCOE_NETDEV_DBG(netdev, "Supports FCOE_MTU of %d bytes\n", mfs);
729 }
730 mfs -= (sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof));
731 if (fc_set_mfs(lport, mfs))
732 return -EINVAL;
733
734
735 fcoe_netdev_features_change(lport, netdev);
736
737 skb_queue_head_init(&port->fcoe_pending_queue);
738 port->fcoe_pending_queue_active = 0;
739 timer_setup(&port->timer, fcoe_queue_timer, 0);
740
741 fcoe_link_speed_update(lport);
742
743 if (!lport->vport) {
744 if (fcoe_get_wwn(netdev, &wwnn, NETDEV_FCOE_WWNN))
745 wwnn = fcoe_wwn_from_mac(ctlr->ctl_src_addr, 1, 0);
746 fc_set_wwnn(lport, wwnn);
747 if (fcoe_get_wwn(netdev, &wwpn, NETDEV_FCOE_WWPN))
748 wwpn = fcoe_wwn_from_mac(ctlr->ctl_src_addr,
749 2, 0);
750 fc_set_wwpn(lport, wwpn);
751 }
752
753 return 0;
754}
755
756
757
758
759
760
761
762
763
764
765static int fcoe_shost_config(struct fc_lport *lport, struct device *dev)
766{
767 int rc = 0;
768
769
770 lport->host->max_lun = FCOE_MAX_LUN;
771 lport->host->max_id = FCOE_MAX_FCP_TARGET;
772 lport->host->max_channel = 0;
773 lport->host->max_cmd_len = FCOE_MAX_CMD_LEN;
774
775 if (lport->vport)
776 lport->host->transportt = fcoe_vport_scsi_transport;
777 else
778 lport->host->transportt = fcoe_nport_scsi_transport;
779
780
781 rc = scsi_add_host(lport->host, dev);
782 if (rc) {
783 FCOE_NETDEV_DBG(fcoe_netdev(lport), "fcoe_shost_config: "
784 "error on scsi_add_host\n");
785 return rc;
786 }
787
788 if (!lport->vport)
789 fc_host_max_npiv_vports(lport->host) = USHRT_MAX;
790
791 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
792 "%s v%s over %s", FCOE_NAME, FCOE_VERSION,
793 fcoe_netdev(lport)->name);
794
795 return 0;
796}
797
798
799
800
801
802
803
804
805
806
807static void fcoe_fdmi_info(struct fc_lport *lport, struct net_device *netdev)
808{
809 struct fcoe_interface *fcoe;
810 struct fcoe_port *port;
811 struct net_device *realdev;
812 int rc;
813
814 port = lport_priv(lport);
815 fcoe = port->priv;
816 realdev = fcoe->realdev;
817
818
819 if (lport->vport)
820 return;
821
822 if (realdev->netdev_ops->ndo_fcoe_get_hbainfo) {
823 struct netdev_fcoe_hbainfo *fdmi;
824 fdmi = kzalloc(sizeof(*fdmi), GFP_KERNEL);
825 if (!fdmi)
826 return;
827
828 rc = realdev->netdev_ops->ndo_fcoe_get_hbainfo(realdev,
829 fdmi);
830 if (rc) {
831 printk(KERN_INFO "fcoe: Failed to retrieve FDMI "
832 "information from netdev.\n");
833 return;
834 }
835
836 snprintf(fc_host_serial_number(lport->host),
837 FC_SERIAL_NUMBER_SIZE,
838 "%s",
839 fdmi->serial_number);
840 snprintf(fc_host_manufacturer(lport->host),
841 FC_SERIAL_NUMBER_SIZE,
842 "%s",
843 fdmi->manufacturer);
844 snprintf(fc_host_model(lport->host),
845 FC_SYMBOLIC_NAME_SIZE,
846 "%s",
847 fdmi->model);
848 snprintf(fc_host_model_description(lport->host),
849 FC_SYMBOLIC_NAME_SIZE,
850 "%s",
851 fdmi->model_description);
852 snprintf(fc_host_hardware_version(lport->host),
853 FC_VERSION_STRING_SIZE,
854 "%s",
855 fdmi->hardware_version);
856 snprintf(fc_host_driver_version(lport->host),
857 FC_VERSION_STRING_SIZE,
858 "%s",
859 fdmi->driver_version);
860 snprintf(fc_host_optionrom_version(lport->host),
861 FC_VERSION_STRING_SIZE,
862 "%s",
863 fdmi->optionrom_version);
864 snprintf(fc_host_firmware_version(lport->host),
865 FC_VERSION_STRING_SIZE,
866 "%s",
867 fdmi->firmware_version);
868
869
870 lport->fdmi_enabled = 1;
871 kfree(fdmi);
872 } else {
873 lport->fdmi_enabled = 0;
874 printk(KERN_INFO "fcoe: No FDMI support.\n");
875 }
876}
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896static bool fcoe_oem_match(struct fc_frame *fp)
897{
898 struct fc_frame_header *fh = fc_frame_header_get(fp);
899 struct fcp_cmnd *fcp;
900
901 if (fc_fcp_is_read(fr_fsp(fp)) &&
902 (fr_fsp(fp)->data_len > fcoe_ddp_min))
903 return true;
904 else if ((fr_fsp(fp) == NULL) &&
905 (fh->fh_r_ctl == FC_RCTL_DD_UNSOL_CMD) &&
906 (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN)) {
907 fcp = fc_frame_payload_get(fp, sizeof(*fcp));
908 if ((fcp->fc_flags & FCP_CFL_WRDATA) &&
909 (ntohl(fcp->fc_dl) > fcoe_ddp_min))
910 return true;
911 }
912 return false;
913}
914
915
916
917
918
919
920
921static inline int fcoe_em_config(struct fc_lport *lport)
922{
923 struct fcoe_port *port = lport_priv(lport);
924 struct fcoe_interface *fcoe = port->priv;
925 struct fcoe_interface *oldfcoe = NULL;
926 struct net_device *old_real_dev, *cur_real_dev;
927 u16 min_xid = FCOE_MIN_XID;
928 u16 max_xid = FCOE_MAX_XID;
929
930
931
932
933
934 if (!lport->lro_enabled || !lport->lro_xid ||
935 (lport->lro_xid >= max_xid)) {
936 lport->lro_xid = 0;
937 goto skip_oem;
938 }
939
940
941
942
943
944 if (is_vlan_dev(fcoe->netdev))
945 cur_real_dev = vlan_dev_real_dev(fcoe->netdev);
946 else
947 cur_real_dev = fcoe->netdev;
948
949 list_for_each_entry(oldfcoe, &fcoe_hostlist, list) {
950 if (is_vlan_dev(oldfcoe->netdev))
951 old_real_dev = vlan_dev_real_dev(oldfcoe->netdev);
952 else
953 old_real_dev = oldfcoe->netdev;
954
955 if (cur_real_dev == old_real_dev) {
956 fcoe->oem = oldfcoe->oem;
957 break;
958 }
959 }
960
961 if (fcoe->oem) {
962 if (!fc_exch_mgr_add(lport, fcoe->oem, fcoe_oem_match)) {
963 printk(KERN_ERR "fcoe_em_config: failed to add "
964 "offload em:%p on interface:%s\n",
965 fcoe->oem, fcoe->netdev->name);
966 return -ENOMEM;
967 }
968 } else {
969 fcoe->oem = fc_exch_mgr_alloc(lport, FC_CLASS_3,
970 FCOE_MIN_XID, lport->lro_xid,
971 fcoe_oem_match);
972 if (!fcoe->oem) {
973 printk(KERN_ERR "fcoe_em_config: failed to allocate "
974 "em for offload exches on interface:%s\n",
975 fcoe->netdev->name);
976 return -ENOMEM;
977 }
978 }
979
980
981
982
983 min_xid += lport->lro_xid + 1;
984
985skip_oem:
986 if (!fc_exch_mgr_alloc(lport, FC_CLASS_3, min_xid, max_xid, NULL)) {
987 printk(KERN_ERR "fcoe_em_config: failed to "
988 "allocate em on interface %s\n", fcoe->netdev->name);
989 return -ENOMEM;
990 }
991
992 return 0;
993}
994
995
996
997
998
999
1000
1001
1002static void fcoe_if_destroy(struct fc_lport *lport)
1003{
1004 struct fcoe_port *port = lport_priv(lport);
1005 struct fcoe_interface *fcoe = port->priv;
1006 struct net_device *netdev = fcoe->netdev;
1007
1008 FCOE_NETDEV_DBG(netdev, "Destroying interface\n");
1009
1010
1011 fc_fabric_logoff(lport);
1012
1013
1014 fc_lport_destroy(lport);
1015
1016
1017 del_timer_sync(&port->timer);
1018
1019
1020 fcoe_clean_pending_queue(lport);
1021
1022 if (!is_zero_ether_addr(port->data_src_addr))
1023 dev_uc_del(netdev, port->data_src_addr);
1024 if (lport->vport)
1025 synchronize_net();
1026 else
1027 fcoe_interface_remove(fcoe);
1028
1029
1030 fcoe_percpu_clean(lport);
1031
1032
1033 fc_remove_host(lport->host);
1034 scsi_remove_host(lport->host);
1035
1036
1037 fc_fcp_destroy(lport);
1038
1039
1040 fc_exch_mgr_free(lport);
1041
1042
1043 fc_lport_free_stats(lport);
1044
1045
1046
1047
1048
1049 if (lport->vport)
1050 scsi_host_put(lport->host);
1051}
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062static int fcoe_ddp_setup(struct fc_lport *lport, u16 xid,
1063 struct scatterlist *sgl, unsigned int sgc)
1064{
1065 struct net_device *netdev = fcoe_netdev(lport);
1066
1067 if (netdev->netdev_ops->ndo_fcoe_ddp_setup)
1068 return netdev->netdev_ops->ndo_fcoe_ddp_setup(netdev,
1069 xid, sgl,
1070 sgc);
1071
1072 return 0;
1073}
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084static int fcoe_ddp_target(struct fc_lport *lport, u16 xid,
1085 struct scatterlist *sgl, unsigned int sgc)
1086{
1087 struct net_device *netdev = fcoe_netdev(lport);
1088
1089 if (netdev->netdev_ops->ndo_fcoe_ddp_target)
1090 return netdev->netdev_ops->ndo_fcoe_ddp_target(netdev, xid,
1091 sgl, sgc);
1092
1093 return 0;
1094}
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104static int fcoe_ddp_done(struct fc_lport *lport, u16 xid)
1105{
1106 struct net_device *netdev = fcoe_netdev(lport);
1107
1108 if (netdev->netdev_ops->ndo_fcoe_ddp_done)
1109 return netdev->netdev_ops->ndo_fcoe_ddp_done(netdev, xid);
1110 return 0;
1111}
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123static struct fc_lport *fcoe_if_create(struct fcoe_interface *fcoe,
1124 struct device *parent, int npiv)
1125{
1126 struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
1127 struct net_device *netdev = fcoe->netdev;
1128 struct fc_lport *lport, *n_port;
1129 struct fcoe_port *port;
1130 struct Scsi_Host *shost;
1131 int rc;
1132
1133
1134
1135
1136 struct fc_vport *vport = dev_to_vport(parent);
1137
1138 FCOE_NETDEV_DBG(netdev, "Create Interface\n");
1139
1140 if (!npiv)
1141 lport = libfc_host_alloc(&fcoe_shost_template, sizeof(*port));
1142 else
1143 lport = libfc_vport_create(vport, sizeof(*port));
1144
1145 if (!lport) {
1146 FCOE_NETDEV_DBG(netdev, "Could not allocate host structure\n");
1147 rc = -ENOMEM;
1148 goto out;
1149 }
1150 port = lport_priv(lport);
1151 port->lport = lport;
1152 port->priv = fcoe;
1153 port->get_netdev = fcoe_netdev;
1154 port->max_queue_depth = FCOE_MAX_QUEUE_DEPTH;
1155 port->min_queue_depth = FCOE_MIN_QUEUE_DEPTH;
1156 INIT_WORK(&port->destroy_work, fcoe_destroy_work);
1157
1158
1159
1160
1161
1162 fcoe_hostlist_add(lport);
1163
1164
1165 rc = fcoe_lport_config(lport);
1166 if (rc) {
1167 FCOE_NETDEV_DBG(netdev, "Could not configure lport for the "
1168 "interface\n");
1169 goto out_host_put;
1170 }
1171
1172 if (npiv) {
1173 FCOE_NETDEV_DBG(netdev, "Setting vport names, "
1174 "%16.16llx %16.16llx\n",
1175 vport->node_name, vport->port_name);
1176 fc_set_wwnn(lport, vport->node_name);
1177 fc_set_wwpn(lport, vport->port_name);
1178 }
1179
1180
1181 rc = fcoe_netdev_config(lport, netdev);
1182 if (rc) {
1183 FCOE_NETDEV_DBG(netdev, "Could not configure netdev for the "
1184 "interface\n");
1185 goto out_lp_destroy;
1186 }
1187
1188
1189 rc = fcoe_shost_config(lport, parent);
1190 if (rc) {
1191 FCOE_NETDEV_DBG(netdev, "Could not configure shost for the "
1192 "interface\n");
1193 goto out_lp_destroy;
1194 }
1195
1196
1197 rc = fcoe_libfc_config(lport, ctlr, &fcoe_libfc_fcn_templ, 1);
1198 if (rc) {
1199 FCOE_NETDEV_DBG(netdev, "Could not configure libfc for the "
1200 "interface\n");
1201 goto out_lp_destroy;
1202 }
1203
1204
1205 fcoe_fdmi_info(lport, netdev);
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216 if (!npiv)
1217
1218 rc = fcoe_em_config(lport);
1219 else {
1220 shost = vport_to_shost(vport);
1221 n_port = shost_priv(shost);
1222 rc = fc_exch_mgr_list_clone(n_port, lport);
1223 }
1224
1225 if (rc) {
1226 FCOE_NETDEV_DBG(netdev, "Could not configure the EM\n");
1227 goto out_lp_destroy;
1228 }
1229
1230 return lport;
1231
1232out_lp_destroy:
1233 fc_exch_mgr_free(lport);
1234out_host_put:
1235 fcoe_hostlist_del(lport);
1236 scsi_host_put(lport->host);
1237out:
1238 return ERR_PTR(rc);
1239}
1240
1241
1242
1243
1244
1245
1246
1247
1248static int __init fcoe_if_init(void)
1249{
1250
1251 fcoe_nport_scsi_transport =
1252 fc_attach_transport(&fcoe_nport_fc_functions);
1253 fcoe_vport_scsi_transport =
1254 fc_attach_transport(&fcoe_vport_fc_functions);
1255
1256 if (!fcoe_nport_scsi_transport) {
1257 printk(KERN_ERR "fcoe: Failed to attach to the FC transport\n");
1258 return -ENODEV;
1259 }
1260
1261 return 0;
1262}
1263
1264
1265
1266
1267
1268
1269
1270
1271static int __exit fcoe_if_exit(void)
1272{
1273 fc_release_transport(fcoe_nport_scsi_transport);
1274 fc_release_transport(fcoe_vport_scsi_transport);
1275 fcoe_nport_scsi_transport = NULL;
1276 fcoe_vport_scsi_transport = NULL;
1277 return 0;
1278}
1279
1280static void fcoe_thread_cleanup_local(unsigned int cpu)
1281{
1282 struct page *crc_eof;
1283 struct fcoe_percpu_s *p;
1284
1285 p = per_cpu_ptr(&fcoe_percpu, cpu);
1286 spin_lock_bh(&p->fcoe_rx_list.lock);
1287 crc_eof = p->crc_eof_page;
1288 p->crc_eof_page = NULL;
1289 p->crc_eof_offset = 0;
1290 spin_unlock_bh(&p->fcoe_rx_list.lock);
1291
1292 if (crc_eof)
1293 put_page(crc_eof);
1294 flush_work(&p->work);
1295}
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306static inline unsigned int fcoe_select_cpu(void)
1307{
1308 static unsigned int selected_cpu;
1309
1310 selected_cpu = cpumask_next(selected_cpu, cpu_online_mask);
1311 if (selected_cpu >= nr_cpu_ids)
1312 selected_cpu = cpumask_first(cpu_online_mask);
1313
1314 return selected_cpu;
1315}
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329static int fcoe_rcv(struct sk_buff *skb, struct net_device *netdev,
1330 struct packet_type *ptype, struct net_device *olddev)
1331{
1332 struct fc_lport *lport;
1333 struct fcoe_rcv_info *fr;
1334 struct fcoe_ctlr *ctlr;
1335 struct fcoe_interface *fcoe;
1336 struct fc_frame_header *fh;
1337 struct fcoe_percpu_s *fps;
1338 struct ethhdr *eh;
1339 unsigned int cpu;
1340
1341 fcoe = container_of(ptype, struct fcoe_interface, fcoe_packet_type);
1342 ctlr = fcoe_to_ctlr(fcoe);
1343 lport = ctlr->lp;
1344 if (unlikely(!lport)) {
1345 FCOE_NETDEV_DBG(netdev, "Cannot find hba structure\n");
1346 goto err2;
1347 }
1348 if (!lport->link_up)
1349 goto err2;
1350
1351 FCOE_NETDEV_DBG(netdev,
1352 "skb_info: len:%d data_len:%d head:%p data:%p tail:%p end:%p sum:%d dev:%s\n",
1353 skb->len, skb->data_len, skb->head, skb->data,
1354 skb_tail_pointer(skb), skb_end_pointer(skb),
1355 skb->csum, skb->dev ? skb->dev->name : "<NULL>");
1356
1357
1358 skb = skb_share_check(skb, GFP_ATOMIC);
1359
1360 if (skb == NULL)
1361 return NET_RX_DROP;
1362
1363 eh = eth_hdr(skb);
1364
1365 if (is_fip_mode(ctlr) &&
1366 !ether_addr_equal(eh->h_source, ctlr->dest_addr)) {
1367 FCOE_NETDEV_DBG(netdev, "wrong source mac address:%pM\n",
1368 eh->h_source);
1369 goto err;
1370 }
1371
1372
1373
1374
1375
1376 if (unlikely((skb->len < FCOE_MIN_FRAME) ||
1377 !pskb_may_pull(skb, FCOE_HEADER_LEN)))
1378 goto err;
1379
1380 skb_set_transport_header(skb, sizeof(struct fcoe_hdr));
1381 fh = (struct fc_frame_header *) skb_transport_header(skb);
1382
1383 if (ntoh24(&eh->h_dest[3]) != ntoh24(fh->fh_d_id)) {
1384 FCOE_NETDEV_DBG(netdev, "FC frame d_id mismatch with MAC:%pM\n",
1385 eh->h_dest);
1386 goto err;
1387 }
1388
1389 fr = fcoe_dev_from_skb(skb);
1390 fr->fr_dev = lport;
1391
1392
1393
1394
1395
1396
1397
1398
1399 if (ntoh24(fh->fh_f_ctl) & FC_FC_EX_CTX)
1400 cpu = ntohs(fh->fh_ox_id) & fc_cpu_mask;
1401 else {
1402 if (ntohs(fh->fh_rx_id) == FC_XID_UNKNOWN)
1403 cpu = fcoe_select_cpu();
1404 else
1405 cpu = ntohs(fh->fh_rx_id) & fc_cpu_mask;
1406 }
1407
1408 if (cpu >= nr_cpu_ids)
1409 goto err;
1410
1411 fps = &per_cpu(fcoe_percpu, cpu);
1412 spin_lock(&fps->fcoe_rx_list.lock);
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426 __skb_queue_tail(&fps->fcoe_rx_list, skb);
1427 schedule_work_on(cpu, &fps->work);
1428 spin_unlock(&fps->fcoe_rx_list.lock);
1429
1430 return NET_RX_SUCCESS;
1431err:
1432 per_cpu_ptr(lport->stats, get_cpu())->ErrorFrames++;
1433 put_cpu();
1434err2:
1435 kfree_skb(skb);
1436 return NET_RX_DROP;
1437}
1438
1439
1440
1441
1442
1443
1444
1445
1446static int fcoe_alloc_paged_crc_eof(struct sk_buff *skb, int tlen)
1447{
1448 struct fcoe_percpu_s *fps;
1449 int rc;
1450
1451 fps = &get_cpu_var(fcoe_percpu);
1452 rc = fcoe_get_paged_crc_eof(skb, tlen, fps);
1453 put_cpu_var(fcoe_percpu);
1454
1455 return rc;
1456}
1457
1458
1459
1460
1461
1462
1463
1464
1465static int fcoe_xmit(struct fc_lport *lport, struct fc_frame *fp)
1466{
1467 int wlen;
1468 u32 crc;
1469 struct ethhdr *eh;
1470 struct fcoe_crc_eof *cp;
1471 struct sk_buff *skb;
1472 struct fc_stats *stats;
1473 struct fc_frame_header *fh;
1474 unsigned int hlen;
1475 unsigned int tlen;
1476 unsigned int elen;
1477 struct fcoe_port *port = lport_priv(lport);
1478 struct fcoe_interface *fcoe = port->priv;
1479 struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
1480 u8 sof, eof;
1481 struct fcoe_hdr *hp;
1482
1483 WARN_ON((fr_len(fp) % sizeof(u32)) != 0);
1484
1485 fh = fc_frame_header_get(fp);
1486 skb = fp_skb(fp);
1487 wlen = skb->len / FCOE_WORD_TO_BYTE;
1488
1489 if (!lport->link_up) {
1490 kfree_skb(skb);
1491 return 0;
1492 }
1493
1494 if (unlikely(fh->fh_type == FC_TYPE_ELS) &&
1495 fcoe_ctlr_els_send(ctlr, lport, skb))
1496 return 0;
1497
1498 sof = fr_sof(fp);
1499 eof = fr_eof(fp);
1500
1501 elen = sizeof(struct ethhdr);
1502 hlen = sizeof(struct fcoe_hdr);
1503 tlen = sizeof(struct fcoe_crc_eof);
1504 wlen = (skb->len - tlen + sizeof(crc)) / FCOE_WORD_TO_BYTE;
1505
1506
1507 if (likely(lport->crc_offload)) {
1508 skb->ip_summed = CHECKSUM_PARTIAL;
1509 skb->csum_start = skb_headroom(skb);
1510 skb->csum_offset = skb->len;
1511 crc = 0;
1512 } else {
1513 skb->ip_summed = CHECKSUM_NONE;
1514 crc = fcoe_fc_crc(fp);
1515 }
1516
1517
1518 if (skb_is_nonlinear(skb)) {
1519 skb_frag_t *frag;
1520 if (fcoe_alloc_paged_crc_eof(skb, tlen)) {
1521 kfree_skb(skb);
1522 return -ENOMEM;
1523 }
1524 frag = &skb_shinfo(skb)->frags[skb_shinfo(skb)->nr_frags - 1];
1525 cp = kmap_atomic(skb_frag_page(frag))
1526 + frag->page_offset;
1527 } else {
1528 cp = skb_put(skb, tlen);
1529 }
1530
1531 memset(cp, 0, sizeof(*cp));
1532 cp->fcoe_eof = eof;
1533 cp->fcoe_crc32 = cpu_to_le32(~crc);
1534
1535 if (skb_is_nonlinear(skb)) {
1536 kunmap_atomic(cp);
1537 cp = NULL;
1538 }
1539
1540
1541 skb_push(skb, elen + hlen);
1542 skb_reset_mac_header(skb);
1543 skb_reset_network_header(skb);
1544 skb->mac_len = elen;
1545 skb->protocol = htons(ETH_P_FCOE);
1546 skb->priority = fcoe->priority;
1547
1548 if (is_vlan_dev(fcoe->netdev) &&
1549 fcoe->realdev->features & NETIF_F_HW_VLAN_CTAG_TX) {
1550
1551 skb->dev = fcoe->realdev;
1552 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
1553 vlan_dev_vlan_id(fcoe->netdev));
1554 } else
1555 skb->dev = fcoe->netdev;
1556
1557
1558 eh = eth_hdr(skb);
1559 eh->h_proto = htons(ETH_P_FCOE);
1560 memcpy(eh->h_dest, ctlr->dest_addr, ETH_ALEN);
1561 if (ctlr->map_dest)
1562 memcpy(eh->h_dest + 3, fh->fh_d_id, 3);
1563
1564 if (unlikely(ctlr->flogi_oxid != FC_XID_UNKNOWN))
1565 memcpy(eh->h_source, ctlr->ctl_src_addr, ETH_ALEN);
1566 else
1567 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN);
1568
1569 hp = (struct fcoe_hdr *)(eh + 1);
1570 memset(hp, 0, sizeof(*hp));
1571 if (FC_FCOE_VER)
1572 FC_FCOE_ENCAPS_VER(hp, FC_FCOE_VER);
1573 hp->fcoe_sof = sof;
1574
1575
1576 if (lport->seq_offload && fr_max_payload(fp)) {
1577 skb_shinfo(skb)->gso_type = SKB_GSO_FCOE;
1578 skb_shinfo(skb)->gso_size = fr_max_payload(fp);
1579 } else {
1580 skb_shinfo(skb)->gso_type = 0;
1581 skb_shinfo(skb)->gso_size = 0;
1582 }
1583
1584 stats = per_cpu_ptr(lport->stats, get_cpu());
1585 stats->TxFrames++;
1586 stats->TxWords += wlen;
1587 put_cpu();
1588
1589
1590 fr_dev(fp) = lport;
1591 fcoe_port_send(port, skb);
1592 return 0;
1593}
1594
1595
1596
1597
1598
1599
1600
1601
1602static inline int fcoe_filter_frames(struct fc_lport *lport,
1603 struct fc_frame *fp)
1604{
1605 struct fcoe_ctlr *ctlr;
1606 struct fcoe_interface *fcoe;
1607 struct fc_frame_header *fh;
1608 struct sk_buff *skb = (struct sk_buff *)fp;
1609 struct fc_stats *stats;
1610
1611
1612
1613
1614
1615
1616 if (lport->crc_offload && skb->ip_summed == CHECKSUM_UNNECESSARY)
1617 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1618 else
1619 fr_flags(fp) |= FCPHF_CRC_UNCHECKED;
1620
1621 fh = (struct fc_frame_header *) skb_transport_header(skb);
1622 fh = fc_frame_header_get(fp);
1623 if (fh->fh_r_ctl == FC_RCTL_DD_SOL_DATA && fh->fh_type == FC_TYPE_FCP)
1624 return 0;
1625
1626 fcoe = ((struct fcoe_port *)lport_priv(lport))->priv;
1627 ctlr = fcoe_to_ctlr(fcoe);
1628 if (is_fip_mode(ctlr) && fc_frame_payload_op(fp) == ELS_LOGO &&
1629 ntoh24(fh->fh_s_id) == FC_FID_FLOGI) {
1630 FCOE_DBG("fcoe: dropping FCoE lport LOGO in fip mode\n");
1631 return -EINVAL;
1632 }
1633
1634 if (!(fr_flags(fp) & FCPHF_CRC_UNCHECKED) ||
1635 le32_to_cpu(fr_crc(fp)) == ~crc32(~0, skb->data, skb->len)) {
1636 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED;
1637 return 0;
1638 }
1639
1640 stats = per_cpu_ptr(lport->stats, get_cpu());
1641 stats->InvalidCRCCount++;
1642 if (stats->InvalidCRCCount < 5)
1643 printk(KERN_WARNING "fcoe: dropping frame with CRC error\n");
1644 put_cpu();
1645 return -EINVAL;
1646}
1647
1648
1649
1650
1651
1652static void fcoe_recv_frame(struct sk_buff *skb)
1653{
1654 u32 fr_len;
1655 struct fc_lport *lport;
1656 struct fcoe_rcv_info *fr;
1657 struct fc_stats *stats;
1658 struct fcoe_crc_eof crc_eof;
1659 struct fc_frame *fp;
1660 struct fcoe_hdr *hp;
1661
1662 fr = fcoe_dev_from_skb(skb);
1663 lport = fr->fr_dev;
1664 if (unlikely(!lport)) {
1665 FCOE_NETDEV_DBG(skb->dev, "NULL lport in skb\n");
1666 kfree_skb(skb);
1667 return;
1668 }
1669
1670 FCOE_NETDEV_DBG(skb->dev,
1671 "skb_info: len:%d data_len:%d head:%p data:%p tail:%p end:%p sum:%d dev:%s\n",
1672 skb->len, skb->data_len,
1673 skb->head, skb->data, skb_tail_pointer(skb),
1674 skb_end_pointer(skb), skb->csum,
1675 skb->dev ? skb->dev->name : "<NULL>");
1676
1677 skb_linearize(skb);
1678
1679
1680
1681
1682
1683 hp = (struct fcoe_hdr *) skb_network_header(skb);
1684
1685 stats = per_cpu_ptr(lport->stats, get_cpu());
1686 if (unlikely(FC_FCOE_DECAPS_VER(hp) != FC_FCOE_VER)) {
1687 if (stats->ErrorFrames < 5)
1688 printk(KERN_WARNING "fcoe: FCoE version "
1689 "mismatch: The frame has "
1690 "version %x, but the "
1691 "initiator supports version "
1692 "%x\n", FC_FCOE_DECAPS_VER(hp),
1693 FC_FCOE_VER);
1694 goto drop;
1695 }
1696
1697 skb_pull(skb, sizeof(struct fcoe_hdr));
1698 fr_len = skb->len - sizeof(struct fcoe_crc_eof);
1699
1700 stats->RxFrames++;
1701 stats->RxWords += fr_len / FCOE_WORD_TO_BYTE;
1702
1703 fp = (struct fc_frame *)skb;
1704 fc_frame_init(fp);
1705 fr_dev(fp) = lport;
1706 fr_sof(fp) = hp->fcoe_sof;
1707
1708
1709 if (skb_copy_bits(skb, fr_len, &crc_eof, sizeof(crc_eof)))
1710 goto drop;
1711 fr_eof(fp) = crc_eof.fcoe_eof;
1712 fr_crc(fp) = crc_eof.fcoe_crc32;
1713 if (pskb_trim(skb, fr_len))
1714 goto drop;
1715
1716 if (!fcoe_filter_frames(lport, fp)) {
1717 put_cpu();
1718 fc_exch_recv(lport, fp);
1719 return;
1720 }
1721drop:
1722 stats->ErrorFrames++;
1723 put_cpu();
1724 kfree_skb(skb);
1725}
1726
1727
1728
1729
1730
1731
1732static void fcoe_receive_work(struct work_struct *work)
1733{
1734 struct fcoe_percpu_s *p;
1735 struct sk_buff *skb;
1736 struct sk_buff_head tmp;
1737
1738 p = container_of(work, struct fcoe_percpu_s, work);
1739 skb_queue_head_init(&tmp);
1740
1741 spin_lock_bh(&p->fcoe_rx_list.lock);
1742 skb_queue_splice_init(&p->fcoe_rx_list, &tmp);
1743 spin_unlock_bh(&p->fcoe_rx_list.lock);
1744
1745 if (!skb_queue_len(&tmp))
1746 return;
1747
1748 while ((skb = __skb_dequeue(&tmp)))
1749 fcoe_recv_frame(skb);
1750}
1751
1752
1753
1754
1755static void fcoe_dev_setup(void)
1756{
1757 register_dcbevent_notifier(&dcb_notifier);
1758 register_netdevice_notifier(&fcoe_notifier);
1759}
1760
1761
1762
1763
1764static void fcoe_dev_cleanup(void)
1765{
1766 unregister_dcbevent_notifier(&dcb_notifier);
1767 unregister_netdevice_notifier(&fcoe_notifier);
1768}
1769
1770static struct fcoe_interface *
1771fcoe_hostlist_lookup_realdev_port(struct net_device *netdev)
1772{
1773 struct fcoe_interface *fcoe;
1774 struct net_device *real_dev;
1775
1776 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
1777 if (is_vlan_dev(fcoe->netdev))
1778 real_dev = vlan_dev_real_dev(fcoe->netdev);
1779 else
1780 real_dev = fcoe->netdev;
1781
1782 if (netdev == real_dev)
1783 return fcoe;
1784 }
1785 return NULL;
1786}
1787
1788static int fcoe_dcb_app_notification(struct notifier_block *notifier,
1789 ulong event, void *ptr)
1790{
1791 struct dcb_app_type *entry = ptr;
1792 struct fcoe_ctlr *ctlr;
1793 struct fcoe_interface *fcoe;
1794 struct net_device *netdev;
1795 int prio;
1796
1797 if (entry->app.selector != DCB_APP_IDTYPE_ETHTYPE)
1798 return NOTIFY_OK;
1799
1800 netdev = dev_get_by_index(&init_net, entry->ifindex);
1801 if (!netdev)
1802 return NOTIFY_OK;
1803
1804 fcoe = fcoe_hostlist_lookup_realdev_port(netdev);
1805 dev_put(netdev);
1806 if (!fcoe)
1807 return NOTIFY_OK;
1808
1809 ctlr = fcoe_to_ctlr(fcoe);
1810
1811 if (entry->dcbx & DCB_CAP_DCBX_VER_CEE)
1812 prio = ffs(entry->app.priority) - 1;
1813 else
1814 prio = entry->app.priority;
1815
1816 if (prio < 0)
1817 return NOTIFY_OK;
1818
1819 if (entry->app.protocol == ETH_P_FIP ||
1820 entry->app.protocol == ETH_P_FCOE)
1821 ctlr->priority = prio;
1822
1823 if (entry->app.protocol == ETH_P_FCOE)
1824 fcoe->priority = prio;
1825
1826 return NOTIFY_OK;
1827}
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839static int fcoe_device_notification(struct notifier_block *notifier,
1840 ulong event, void *ptr)
1841{
1842 struct fcoe_ctlr_device *cdev;
1843 struct fc_lport *lport = NULL;
1844 struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
1845 struct fcoe_ctlr *ctlr;
1846 struct fcoe_interface *fcoe;
1847 struct fc_stats *stats;
1848 u32 link_possible = 1;
1849 u32 mfs;
1850 int rc = NOTIFY_OK;
1851
1852 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
1853 if (fcoe->netdev == netdev) {
1854 ctlr = fcoe_to_ctlr(fcoe);
1855 lport = ctlr->lp;
1856 break;
1857 }
1858 }
1859 if (!lport) {
1860 rc = NOTIFY_DONE;
1861 goto out;
1862 }
1863
1864 switch (event) {
1865 case NETDEV_DOWN:
1866 case NETDEV_GOING_DOWN:
1867 link_possible = 0;
1868 break;
1869 case NETDEV_UP:
1870 case NETDEV_CHANGE:
1871 break;
1872 case NETDEV_CHANGEMTU:
1873 if (netdev->features & NETIF_F_FCOE_MTU)
1874 break;
1875 mfs = netdev->mtu - (sizeof(struct fcoe_hdr) +
1876 sizeof(struct fcoe_crc_eof));
1877 if (mfs >= FC_MIN_MAX_FRAME)
1878 fc_set_mfs(lport, mfs);
1879 break;
1880 case NETDEV_REGISTER:
1881 break;
1882 case NETDEV_UNREGISTER:
1883 list_del(&fcoe->list);
1884 fcoe_vport_remove(lport);
1885 mutex_lock(&fcoe_config_mutex);
1886 fcoe_if_destroy(lport);
1887 if (!fcoe->removed)
1888 fcoe_interface_remove(fcoe);
1889 fcoe_interface_cleanup(fcoe);
1890 mutex_unlock(&fcoe_config_mutex);
1891 fcoe_ctlr_device_delete(fcoe_ctlr_to_ctlr_dev(ctlr));
1892 goto out;
1893 break;
1894 case NETDEV_FEAT_CHANGE:
1895 fcoe_netdev_features_change(lport, netdev);
1896 break;
1897 default:
1898 FCOE_NETDEV_DBG(netdev, "Unknown event %ld "
1899 "from netdev netlink\n", event);
1900 }
1901
1902 fcoe_link_speed_update(lport);
1903
1904 cdev = fcoe_ctlr_to_ctlr_dev(ctlr);
1905
1906 if (link_possible && !fcoe_link_ok(lport)) {
1907 switch (cdev->enabled) {
1908 case FCOE_CTLR_DISABLED:
1909 pr_info("Link up while interface is disabled.\n");
1910 break;
1911 case FCOE_CTLR_ENABLED:
1912 case FCOE_CTLR_UNUSED:
1913 fcoe_ctlr_link_up(ctlr);
1914 };
1915 } else if (fcoe_ctlr_link_down(ctlr)) {
1916 switch (cdev->enabled) {
1917 case FCOE_CTLR_DISABLED:
1918 pr_info("Link down while interface is disabled.\n");
1919 break;
1920 case FCOE_CTLR_ENABLED:
1921 case FCOE_CTLR_UNUSED:
1922 stats = per_cpu_ptr(lport->stats, get_cpu());
1923 stats->LinkFailureCount++;
1924 put_cpu();
1925 fcoe_clean_pending_queue(lport);
1926 };
1927 }
1928out:
1929 return rc;
1930}
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942static int fcoe_disable(struct net_device *netdev)
1943{
1944 struct fcoe_ctlr *ctlr;
1945 struct fcoe_interface *fcoe;
1946 int rc = 0;
1947
1948 mutex_lock(&fcoe_config_mutex);
1949
1950 rtnl_lock();
1951 fcoe = fcoe_hostlist_lookup_port(netdev);
1952 rtnl_unlock();
1953
1954 if (fcoe) {
1955 ctlr = fcoe_to_ctlr(fcoe);
1956 fcoe_ctlr_link_down(ctlr);
1957 fcoe_clean_pending_queue(ctlr->lp);
1958 } else
1959 rc = -ENODEV;
1960
1961 mutex_unlock(&fcoe_config_mutex);
1962 return rc;
1963}
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973static int fcoe_enable(struct net_device *netdev)
1974{
1975 struct fcoe_ctlr *ctlr;
1976 struct fcoe_interface *fcoe;
1977 int rc = 0;
1978
1979 mutex_lock(&fcoe_config_mutex);
1980 rtnl_lock();
1981 fcoe = fcoe_hostlist_lookup_port(netdev);
1982 rtnl_unlock();
1983
1984 if (!fcoe) {
1985 rc = -ENODEV;
1986 goto out;
1987 }
1988
1989 ctlr = fcoe_to_ctlr(fcoe);
1990
1991 if (!fcoe_link_ok(ctlr->lp))
1992 fcoe_ctlr_link_up(ctlr);
1993
1994out:
1995 mutex_unlock(&fcoe_config_mutex);
1996 return rc;
1997}
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009static int fcoe_ctlr_enabled(struct fcoe_ctlr_device *cdev)
2010{
2011 struct fcoe_ctlr *ctlr = fcoe_ctlr_device_priv(cdev);
2012 struct fc_lport *lport = ctlr->lp;
2013 struct net_device *netdev = fcoe_netdev(lport);
2014
2015 switch (cdev->enabled) {
2016 case FCOE_CTLR_ENABLED:
2017 return fcoe_enable(netdev);
2018 case FCOE_CTLR_DISABLED:
2019 return fcoe_disable(netdev);
2020 case FCOE_CTLR_UNUSED:
2021 default:
2022 return -ENOTSUPP;
2023 };
2024}
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034static void fcoe_ctlr_mode(struct fcoe_ctlr_device *ctlr_dev)
2035{
2036 struct fcoe_ctlr *ctlr = fcoe_ctlr_device_priv(ctlr_dev);
2037 struct fcoe_interface *fcoe = fcoe_ctlr_priv(ctlr);
2038
2039 if (ctlr_dev->mode == FIP_CONN_TYPE_VN2VN &&
2040 ctlr->mode != FIP_MODE_VN2VN) {
2041 dev_mc_del(fcoe->netdev, FIP_ALL_ENODE_MACS);
2042 dev_mc_add(fcoe->netdev, FIP_ALL_VN2VN_MACS);
2043 dev_mc_add(fcoe->netdev, FIP_ALL_P2P_MACS);
2044 } else if (ctlr->mode != FIP_MODE_FABRIC) {
2045 dev_mc_del(fcoe->netdev, FIP_ALL_VN2VN_MACS);
2046 dev_mc_del(fcoe->netdev, FIP_ALL_P2P_MACS);
2047 dev_mc_add(fcoe->netdev, FIP_ALL_ENODE_MACS);
2048 }
2049 fcoe_ctlr_set_fip_mode(ctlr_dev);
2050}
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060static int fcoe_destroy(struct net_device *netdev)
2061{
2062 struct fcoe_ctlr *ctlr;
2063 struct fcoe_interface *fcoe;
2064 struct fc_lport *lport;
2065 struct fcoe_port *port;
2066 int rc = 0;
2067
2068 mutex_lock(&fcoe_config_mutex);
2069 rtnl_lock();
2070 fcoe = fcoe_hostlist_lookup_port(netdev);
2071 if (!fcoe) {
2072 rc = -ENODEV;
2073 goto out_nodev;
2074 }
2075 ctlr = fcoe_to_ctlr(fcoe);
2076 lport = ctlr->lp;
2077 port = lport_priv(lport);
2078 list_del(&fcoe->list);
2079 queue_work(fcoe_wq, &port->destroy_work);
2080out_nodev:
2081 rtnl_unlock();
2082 mutex_unlock(&fcoe_config_mutex);
2083 return rc;
2084}
2085
2086
2087
2088
2089
2090static void fcoe_destroy_work(struct work_struct *work)
2091{
2092 struct fcoe_ctlr_device *cdev;
2093 struct fcoe_ctlr *ctlr;
2094 struct fcoe_port *port;
2095 struct fcoe_interface *fcoe;
2096
2097 port = container_of(work, struct fcoe_port, destroy_work);
2098
2099 fcoe_vport_remove(port->lport);
2100
2101 mutex_lock(&fcoe_config_mutex);
2102
2103 fcoe = port->priv;
2104 ctlr = fcoe_to_ctlr(fcoe);
2105 cdev = fcoe_ctlr_to_ctlr_dev(ctlr);
2106
2107 rtnl_lock();
2108 fcoe_if_destroy(port->lport);
2109 if (!fcoe->removed)
2110 fcoe_interface_remove(fcoe);
2111 rtnl_unlock();
2112 fcoe_interface_cleanup(fcoe);
2113
2114 mutex_unlock(&fcoe_config_mutex);
2115
2116 fcoe_ctlr_device_delete(cdev);
2117}
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128static bool fcoe_match(struct net_device *netdev)
2129{
2130 return true;
2131}
2132
2133
2134
2135
2136
2137
2138
2139static void fcoe_dcb_create(struct fcoe_interface *fcoe)
2140{
2141 int ctlr_prio = TC_PRIO_BESTEFFORT;
2142 int fcoe_prio = TC_PRIO_INTERACTIVE;
2143 struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
2144#ifdef CONFIG_DCB
2145 int dcbx;
2146 u8 fup, up;
2147 struct net_device *netdev = fcoe->realdev;
2148 struct dcb_app app = {
2149 .priority = 0,
2150 .protocol = ETH_P_FCOE
2151 };
2152
2153
2154 if (netdev && netdev->dcbnl_ops && netdev->dcbnl_ops->getdcbx) {
2155 dcbx = netdev->dcbnl_ops->getdcbx(netdev);
2156
2157 if (dcbx & DCB_CAP_DCBX_VER_IEEE) {
2158 app.selector = IEEE_8021QAZ_APP_SEL_ETHERTYPE;
2159 up = dcb_ieee_getapp_mask(netdev, &app);
2160 app.protocol = ETH_P_FIP;
2161 fup = dcb_ieee_getapp_mask(netdev, &app);
2162 } else {
2163 app.selector = DCB_APP_IDTYPE_ETHTYPE;
2164 up = dcb_getapp(netdev, &app);
2165 app.protocol = ETH_P_FIP;
2166 fup = dcb_getapp(netdev, &app);
2167 }
2168
2169 fcoe_prio = ffs(up) ? ffs(up) - 1 : 0;
2170 ctlr_prio = ffs(fup) ? ffs(fup) - 1 : fcoe_prio;
2171 }
2172#endif
2173 fcoe->priority = fcoe_prio;
2174 ctlr->priority = ctlr_prio;
2175}
2176
2177enum fcoe_create_link_state {
2178 FCOE_CREATE_LINK_DOWN,
2179 FCOE_CREATE_LINK_UP,
2180};
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195static int _fcoe_create(struct net_device *netdev, enum fip_mode fip_mode,
2196 enum fcoe_create_link_state link_state)
2197{
2198 int rc = 0;
2199 struct fcoe_ctlr_device *ctlr_dev;
2200 struct fcoe_ctlr *ctlr;
2201 struct fcoe_interface *fcoe;
2202 struct fc_lport *lport;
2203
2204 mutex_lock(&fcoe_config_mutex);
2205 rtnl_lock();
2206
2207
2208 if (fcoe_hostlist_lookup(netdev)) {
2209 rc = -EEXIST;
2210 goto out_nodev;
2211 }
2212
2213 fcoe = fcoe_interface_create(netdev, fip_mode);
2214 if (IS_ERR(fcoe)) {
2215 rc = PTR_ERR(fcoe);
2216 goto out_nodev;
2217 }
2218
2219 ctlr = fcoe_to_ctlr(fcoe);
2220 ctlr_dev = fcoe_ctlr_to_ctlr_dev(ctlr);
2221 lport = fcoe_if_create(fcoe, &ctlr_dev->dev, 0);
2222 if (IS_ERR(lport)) {
2223 printk(KERN_ERR "fcoe: Failed to create interface (%s)\n",
2224 netdev->name);
2225 rc = -EIO;
2226 if (!fcoe->removed)
2227 fcoe_interface_remove(fcoe);
2228 rtnl_unlock();
2229 fcoe_interface_cleanup(fcoe);
2230 mutex_unlock(&fcoe_config_mutex);
2231 fcoe_ctlr_device_delete(ctlr_dev);
2232 return rc;
2233 }
2234
2235
2236 ctlr->lp = lport;
2237
2238
2239 fcoe_dcb_create(fcoe);
2240
2241
2242 lport->boot_time = jiffies;
2243 fc_fabric_login(lport);
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257 if (link_state == FCOE_CREATE_LINK_UP)
2258 ctlr_dev->enabled = FCOE_CTLR_ENABLED;
2259 else
2260 ctlr_dev->enabled = FCOE_CTLR_DISABLED;
2261
2262 if (link_state == FCOE_CREATE_LINK_UP &&
2263 !fcoe_link_ok(lport)) {
2264 rtnl_unlock();
2265 fcoe_ctlr_link_up(ctlr);
2266 mutex_unlock(&fcoe_config_mutex);
2267 return rc;
2268 }
2269
2270out_nodev:
2271 rtnl_unlock();
2272 mutex_unlock(&fcoe_config_mutex);
2273
2274 return rc;
2275}
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286static int fcoe_create(struct net_device *netdev, enum fip_mode fip_mode)
2287{
2288 return _fcoe_create(netdev, fip_mode, FCOE_CREATE_LINK_UP);
2289}
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302static int fcoe_ctlr_alloc(struct net_device *netdev)
2303{
2304 return _fcoe_create(netdev, FIP_MODE_FABRIC,
2305 FCOE_CREATE_LINK_DOWN);
2306}
2307
2308
2309
2310
2311
2312
2313
2314
2315static int fcoe_link_ok(struct fc_lport *lport)
2316{
2317 struct net_device *netdev = fcoe_netdev(lport);
2318
2319 if (netif_oper_up(netdev))
2320 return 0;
2321 return -1;
2322}
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334static void fcoe_percpu_clean(struct fc_lport *lport)
2335{
2336 struct fcoe_percpu_s *pp;
2337 unsigned int cpu;
2338
2339 for_each_possible_cpu(cpu) {
2340 pp = &per_cpu(fcoe_percpu, cpu);
2341
2342 flush_work(&pp->work);
2343 }
2344}
2345
2346
2347
2348
2349
2350
2351
2352static int fcoe_reset(struct Scsi_Host *shost)
2353{
2354 struct fc_lport *lport = shost_priv(shost);
2355 struct fcoe_port *port = lport_priv(lport);
2356 struct fcoe_interface *fcoe = port->priv;
2357 struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
2358 struct fcoe_ctlr_device *cdev = fcoe_ctlr_to_ctlr_dev(ctlr);
2359
2360 fcoe_ctlr_link_down(ctlr);
2361 fcoe_clean_pending_queue(ctlr->lp);
2362
2363 if (cdev->enabled != FCOE_CTLR_DISABLED &&
2364 !fcoe_link_ok(ctlr->lp))
2365 fcoe_ctlr_link_up(ctlr);
2366 return 0;
2367}
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377static struct fcoe_interface *
2378fcoe_hostlist_lookup_port(const struct net_device *netdev)
2379{
2380 struct fcoe_interface *fcoe;
2381
2382 list_for_each_entry(fcoe, &fcoe_hostlist, list) {
2383 if (fcoe->netdev == netdev)
2384 return fcoe;
2385 }
2386 return NULL;
2387}
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398static struct fc_lport *fcoe_hostlist_lookup(const struct net_device *netdev)
2399{
2400 struct fcoe_ctlr *ctlr;
2401 struct fcoe_interface *fcoe;
2402
2403 fcoe = fcoe_hostlist_lookup_port(netdev);
2404 ctlr = fcoe_to_ctlr(fcoe);
2405 return (fcoe) ? ctlr->lp : NULL;
2406}
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417static int fcoe_hostlist_add(const struct fc_lport *lport)
2418{
2419 struct fcoe_interface *fcoe;
2420 struct fcoe_port *port;
2421
2422 fcoe = fcoe_hostlist_lookup_port(fcoe_netdev(lport));
2423 if (!fcoe) {
2424 port = lport_priv(lport);
2425 fcoe = port->priv;
2426 list_add_tail(&fcoe->list, &fcoe_hostlist);
2427 }
2428 return 0;
2429}
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439static void fcoe_hostlist_del(const struct fc_lport *lport)
2440{
2441 struct fcoe_interface *fcoe;
2442 struct fcoe_port *port;
2443
2444 port = lport_priv(lport);
2445 fcoe = port->priv;
2446 list_del(&fcoe->list);
2447 return;
2448}
2449
2450static struct fcoe_transport fcoe_sw_transport = {
2451 .name = {FCOE_TRANSPORT_DEFAULT},
2452 .attached = false,
2453 .list = LIST_HEAD_INIT(fcoe_sw_transport.list),
2454 .match = fcoe_match,
2455 .alloc = fcoe_ctlr_alloc,
2456 .create = fcoe_create,
2457 .destroy = fcoe_destroy,
2458 .enable = fcoe_enable,
2459 .disable = fcoe_disable,
2460};
2461
2462
2463
2464
2465
2466
2467static int __init fcoe_init(void)
2468{
2469 struct fcoe_percpu_s *p;
2470 unsigned int cpu;
2471 int rc = 0;
2472
2473 fcoe_wq = alloc_workqueue("fcoe", 0, 0);
2474 if (!fcoe_wq)
2475 return -ENOMEM;
2476
2477
2478 rc = fcoe_transport_attach(&fcoe_sw_transport);
2479 if (rc) {
2480 printk(KERN_ERR "failed to register an fcoe transport, check "
2481 "if libfcoe is loaded\n");
2482 goto out_destroy;
2483 }
2484
2485 mutex_lock(&fcoe_config_mutex);
2486
2487 for_each_possible_cpu(cpu) {
2488 p = per_cpu_ptr(&fcoe_percpu, cpu);
2489 INIT_WORK(&p->work, fcoe_receive_work);
2490 skb_queue_head_init(&p->fcoe_rx_list);
2491 }
2492
2493
2494 fcoe_dev_setup();
2495
2496 rc = fcoe_if_init();
2497 if (rc)
2498 goto out_free;
2499
2500 mutex_unlock(&fcoe_config_mutex);
2501 return 0;
2502
2503out_free:
2504 mutex_unlock(&fcoe_config_mutex);
2505out_destroy:
2506 destroy_workqueue(fcoe_wq);
2507 return rc;
2508}
2509module_init(fcoe_init);
2510
2511
2512
2513
2514
2515
2516static void __exit fcoe_exit(void)
2517{
2518 struct fcoe_interface *fcoe, *tmp;
2519 struct fcoe_ctlr *ctlr;
2520 struct fcoe_port *port;
2521 unsigned int cpu;
2522
2523 mutex_lock(&fcoe_config_mutex);
2524
2525 fcoe_dev_cleanup();
2526
2527
2528 rtnl_lock();
2529 list_for_each_entry_safe(fcoe, tmp, &fcoe_hostlist, list) {
2530 ctlr = fcoe_to_ctlr(fcoe);
2531 port = lport_priv(ctlr->lp);
2532 fcoe_hostlist_del(port->lport);
2533 queue_work(fcoe_wq, &port->destroy_work);
2534 }
2535 rtnl_unlock();
2536
2537 for_each_possible_cpu(cpu)
2538 fcoe_thread_cleanup_local(cpu);
2539
2540 mutex_unlock(&fcoe_config_mutex);
2541
2542
2543
2544
2545
2546 destroy_workqueue(fcoe_wq);
2547
2548
2549
2550
2551
2552
2553 fcoe_if_exit();
2554
2555
2556 fcoe_transport_detach(&fcoe_sw_transport);
2557}
2558module_exit(fcoe_exit);
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569static void fcoe_flogi_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2570{
2571 struct fcoe_ctlr *fip = arg;
2572 struct fc_exch *exch = fc_seq_exch(seq);
2573 struct fc_lport *lport = exch->lp;
2574 u8 *mac;
2575
2576 if (IS_ERR(fp))
2577 goto done;
2578
2579 mac = fr_cb(fp)->granted_mac;
2580
2581 if (is_zero_ether_addr(mac))
2582 fcoe_ctlr_recv_flogi(fip, lport, fp);
2583 if (!is_zero_ether_addr(mac))
2584 fcoe_update_src_mac(lport, mac);
2585done:
2586 fc_lport_flogi_resp(seq, fp, lport);
2587}
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598static void fcoe_logo_resp(struct fc_seq *seq, struct fc_frame *fp, void *arg)
2599{
2600 struct fc_lport *lport = arg;
2601 static u8 zero_mac[ETH_ALEN] = { 0 };
2602
2603 if (!IS_ERR(fp))
2604 fcoe_update_src_mac(lport, zero_mac);
2605 fc_lport_logo_resp(seq, fp, lport);
2606}
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617static struct fc_seq *fcoe_elsct_send(struct fc_lport *lport, u32 did,
2618 struct fc_frame *fp, unsigned int op,
2619 void (*resp)(struct fc_seq *,
2620 struct fc_frame *,
2621 void *),
2622 void *arg, u32 timeout)
2623{
2624 struct fcoe_port *port = lport_priv(lport);
2625 struct fcoe_interface *fcoe = port->priv;
2626 struct fcoe_ctlr *fip = fcoe_to_ctlr(fcoe);
2627 struct fc_frame_header *fh = fc_frame_header_get(fp);
2628
2629 switch (op) {
2630 case ELS_FLOGI:
2631 case ELS_FDISC:
2632 if (lport->point_to_multipoint)
2633 break;
2634 return fc_elsct_send(lport, did, fp, op, fcoe_flogi_resp,
2635 fip, timeout);
2636 case ELS_LOGO:
2637
2638 if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI)
2639 break;
2640 return fc_elsct_send(lport, did, fp, op, fcoe_logo_resp,
2641 lport, timeout);
2642 }
2643 return fc_elsct_send(lport, did, fp, op, resp, arg, timeout);
2644}
2645
2646
2647
2648
2649
2650
2651
2652
2653static int fcoe_vport_create(struct fc_vport *vport, bool disabled)
2654{
2655 struct Scsi_Host *shost = vport_to_shost(vport);
2656 struct fc_lport *n_port = shost_priv(shost);
2657 struct fcoe_port *port = lport_priv(n_port);
2658 struct fcoe_interface *fcoe = port->priv;
2659 struct net_device *netdev = fcoe->netdev;
2660 struct fc_lport *vn_port;
2661 int rc;
2662 char buf[32];
2663
2664 rc = fcoe_validate_vport_create(vport);
2665 if (rc) {
2666 fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
2667 printk(KERN_ERR "fcoe: Failed to create vport, "
2668 "WWPN (0x%s) already exists\n",
2669 buf);
2670 return rc;
2671 }
2672
2673 mutex_lock(&fcoe_config_mutex);
2674 rtnl_lock();
2675 vn_port = fcoe_if_create(fcoe, &vport->dev, 1);
2676 rtnl_unlock();
2677 mutex_unlock(&fcoe_config_mutex);
2678
2679 if (IS_ERR(vn_port)) {
2680 printk(KERN_ERR "fcoe: fcoe_vport_create(%s) failed\n",
2681 netdev->name);
2682 return -EIO;
2683 }
2684
2685 if (disabled) {
2686 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2687 } else {
2688 vn_port->boot_time = jiffies;
2689 fc_fabric_login(vn_port);
2690 fc_vport_setlink(vn_port);
2691 }
2692 return 0;
2693}
2694
2695
2696
2697
2698
2699
2700
2701static int fcoe_vport_destroy(struct fc_vport *vport)
2702{
2703 struct Scsi_Host *shost = vport_to_shost(vport);
2704 struct fc_lport *n_port = shost_priv(shost);
2705 struct fc_lport *vn_port = vport->dd_data;
2706
2707 mutex_lock(&n_port->lp_mutex);
2708 list_del(&vn_port->list);
2709 mutex_unlock(&n_port->lp_mutex);
2710
2711 mutex_lock(&fcoe_config_mutex);
2712 rtnl_lock();
2713 fcoe_if_destroy(vn_port);
2714 rtnl_unlock();
2715 mutex_unlock(&fcoe_config_mutex);
2716
2717 return 0;
2718}
2719
2720
2721
2722
2723
2724static void fcoe_vport_remove(struct fc_lport *lport)
2725{
2726 struct Scsi_Host *shost;
2727 struct fc_host_attrs *fc_host;
2728 unsigned long flags;
2729 struct fc_vport *vport;
2730 struct fc_vport *next_vport;
2731
2732 shost = lport->host;
2733 fc_host = shost_to_fc_host(shost);
2734
2735
2736 spin_lock_irqsave(shost->host_lock, flags);
2737 list_for_each_entry_safe(vport, next_vport, &fc_host->vports, peers) {
2738 if (vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING)) {
2739 continue;
2740 } else {
2741 vport->flags |= FC_VPORT_DELETING;
2742 queue_work(fc_host_work_q(shost),
2743 &vport->vport_delete_work);
2744 }
2745 }
2746 spin_unlock_irqrestore(shost->host_lock, flags);
2747
2748 flush_workqueue(fc_host_work_q(shost));
2749}
2750
2751
2752
2753
2754
2755
2756static int fcoe_vport_disable(struct fc_vport *vport, bool disable)
2757{
2758 struct fc_lport *lport = vport->dd_data;
2759
2760 if (disable) {
2761 fc_vport_set_state(vport, FC_VPORT_DISABLED);
2762 fc_fabric_logoff(lport);
2763 } else {
2764 lport->boot_time = jiffies;
2765 fc_fabric_login(lport);
2766 fc_vport_setlink(lport);
2767 }
2768
2769 return 0;
2770}
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780static void fcoe_set_vport_symbolic_name(struct fc_vport *vport)
2781{
2782 struct fc_lport *lport = vport->dd_data;
2783 struct fc_frame *fp;
2784 size_t len;
2785
2786 snprintf(fc_host_symbolic_name(lport->host), FC_SYMBOLIC_NAME_SIZE,
2787 "%s v%s over %s : %s", FCOE_NAME, FCOE_VERSION,
2788 fcoe_netdev(lport)->name, vport->symbolic_name);
2789
2790 if (lport->state != LPORT_ST_READY)
2791 return;
2792
2793 len = strnlen(fc_host_symbolic_name(lport->host), 255);
2794 fp = fc_frame_alloc(lport,
2795 sizeof(struct fc_ct_hdr) +
2796 sizeof(struct fc_ns_rspn) + len);
2797 if (!fp)
2798 return;
2799 lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, FC_NS_RSPN_ID,
2800 NULL, NULL, 3 * lport->r_a_tov);
2801}
2802
2803static void fcoe_fcf_get_vlan_id(struct fcoe_fcf_device *fcf_dev)
2804{
2805 struct fcoe_ctlr_device *ctlr_dev =
2806 fcoe_fcf_dev_to_ctlr_dev(fcf_dev);
2807 struct fcoe_ctlr *ctlr = fcoe_ctlr_device_priv(ctlr_dev);
2808 struct fcoe_interface *fcoe = fcoe_ctlr_priv(ctlr);
2809
2810 fcf_dev->vlan_id = vlan_dev_vlan_id(fcoe->netdev);
2811}
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825static void fcoe_set_port_id(struct fc_lport *lport,
2826 u32 port_id, struct fc_frame *fp)
2827{
2828 struct fcoe_port *port = lport_priv(lport);
2829 struct fcoe_interface *fcoe = port->priv;
2830 struct fcoe_ctlr *ctlr = fcoe_to_ctlr(fcoe);
2831
2832 if (fp && fc_frame_payload_op(fp) == ELS_FLOGI)
2833 fcoe_ctlr_recv_flogi(ctlr, lport, fp);
2834}
2835