• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
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/types.h>
21 #include <linux/module.h>
22 #include <linux/kernel.h>
23 #include <linux/list.h>
24 #include <linux/netdevice.h>
25 #include <linux/errno.h>
26 #include <linux/crc32.h>
27 #include <scsi/libfcoe.h>
28 
29 #include "libfcoe.h"
30 
31 MODULE_AUTHOR("Open-FCoE.org");
32 MODULE_DESCRIPTION("FIP discovery protocol and FCoE transport for FCoE HBAs");
33 MODULE_LICENSE("GPL v2");
34 
35 static int fcoe_transport_create(const char *, const struct kernel_param *);
36 static int fcoe_transport_destroy(const char *, const struct kernel_param *);
37 static int fcoe_transport_show(char *buffer, const struct kernel_param *kp);
38 static struct fcoe_transport *fcoe_transport_lookup(struct net_device *device);
39 static struct fcoe_transport *fcoe_netdev_map_lookup(struct net_device *device);
40 static int fcoe_transport_enable(const char *, const struct kernel_param *);
41 static int fcoe_transport_disable(const char *, const struct kernel_param *);
42 static int libfcoe_device_notification(struct notifier_block *notifier,
43 				    ulong event, void *ptr);
44 
45 static LIST_HEAD(fcoe_transports);
46 static DEFINE_MUTEX(ft_mutex);
47 static LIST_HEAD(fcoe_netdevs);
48 static DEFINE_MUTEX(fn_mutex);
49 
50 unsigned int libfcoe_debug_logging;
51 module_param_named(debug_logging, libfcoe_debug_logging, int, S_IRUGO|S_IWUSR);
52 MODULE_PARM_DESC(debug_logging, "a bit mask of logging levels");
53 
54 module_param_call(show, NULL, fcoe_transport_show, NULL, S_IRUSR);
55 __MODULE_PARM_TYPE(show, "string");
56 MODULE_PARM_DESC(show, " Show attached FCoE transports");
57 
58 module_param_call(create, fcoe_transport_create, NULL,
59 		  (void *)FIP_MODE_FABRIC, S_IWUSR);
60 __MODULE_PARM_TYPE(create, "string");
61 MODULE_PARM_DESC(create, " Creates fcoe instance on an ethernet interface");
62 
63 module_param_call(create_vn2vn, fcoe_transport_create, NULL,
64 		  (void *)FIP_MODE_VN2VN, S_IWUSR);
65 __MODULE_PARM_TYPE(create_vn2vn, "string");
66 MODULE_PARM_DESC(create_vn2vn, " Creates a VN_node to VN_node FCoE instance "
67 		 "on an Ethernet interface");
68 
69 module_param_call(destroy, fcoe_transport_destroy, NULL, NULL, S_IWUSR);
70 __MODULE_PARM_TYPE(destroy, "string");
71 MODULE_PARM_DESC(destroy, " Destroys fcoe instance on an ethernet interface");
72 
73 module_param_call(enable, fcoe_transport_enable, NULL, NULL, S_IWUSR);
74 __MODULE_PARM_TYPE(enable, "string");
75 MODULE_PARM_DESC(enable, " Enables fcoe on an ethernet interface.");
76 
77 module_param_call(disable, fcoe_transport_disable, NULL, NULL, S_IWUSR);
78 __MODULE_PARM_TYPE(disable, "string");
79 MODULE_PARM_DESC(disable, " Disables fcoe on an ethernet interface.");
80 
81 /* notification function for packets from net device */
82 static struct notifier_block libfcoe_notifier = {
83 	.notifier_call = libfcoe_device_notification,
84 };
85 
86 static const struct {
87 	u32 fc_port_speed;
88 #define SPEED_2000	2000
89 #define SPEED_4000	4000
90 #define SPEED_8000	8000
91 #define SPEED_16000	16000
92 #define SPEED_32000	32000
93 	u32 eth_port_speed;
94 } fcoe_port_speed_mapping[] = {
95 	{ FC_PORTSPEED_1GBIT,   SPEED_1000   },
96 	{ FC_PORTSPEED_2GBIT,   SPEED_2000   },
97 	{ FC_PORTSPEED_4GBIT,   SPEED_4000   },
98 	{ FC_PORTSPEED_8GBIT,   SPEED_8000   },
99 	{ FC_PORTSPEED_10GBIT,  SPEED_10000  },
100 	{ FC_PORTSPEED_16GBIT,  SPEED_16000  },
101 	{ FC_PORTSPEED_20GBIT,  SPEED_20000  },
102 	{ FC_PORTSPEED_25GBIT,  SPEED_25000  },
103 	{ FC_PORTSPEED_32GBIT,  SPEED_32000  },
104 	{ FC_PORTSPEED_40GBIT,  SPEED_40000  },
105 	{ FC_PORTSPEED_50GBIT,  SPEED_50000  },
106 	{ FC_PORTSPEED_100GBIT, SPEED_100000 },
107 };
108 
eth2fc_speed(u32 eth_port_speed)109 static inline u32 eth2fc_speed(u32 eth_port_speed)
110 {
111 	int i;
112 
113 	for (i = 0; i < ARRAY_SIZE(fcoe_port_speed_mapping); i++) {
114 		if (fcoe_port_speed_mapping[i].eth_port_speed == eth_port_speed)
115 			return fcoe_port_speed_mapping[i].fc_port_speed;
116 	}
117 
118 	return FC_PORTSPEED_UNKNOWN;
119 }
120 
121 /**
122  * fcoe_link_speed_update() - Update the supported and actual link speeds
123  * @lport: The local port to update speeds for
124  *
125  * Returns: 0 if the ethtool query was successful
126  *          -1 if the ethtool query failed
127  */
fcoe_link_speed_update(struct fc_lport * lport)128 int fcoe_link_speed_update(struct fc_lport *lport)
129 {
130 	struct net_device *netdev = fcoe_get_netdev(lport);
131 	struct ethtool_link_ksettings ecmd;
132 
133 	if (!__ethtool_get_link_ksettings(netdev, &ecmd)) {
134 		lport->link_supported_speeds &= ~(FC_PORTSPEED_1GBIT  |
135 		                                  FC_PORTSPEED_10GBIT |
136 		                                  FC_PORTSPEED_20GBIT |
137 		                                  FC_PORTSPEED_40GBIT);
138 
139 		if (ecmd.link_modes.supported[0] & (
140 			    SUPPORTED_1000baseT_Half |
141 			    SUPPORTED_1000baseT_Full |
142 			    SUPPORTED_1000baseKX_Full))
143 			lport->link_supported_speeds |= FC_PORTSPEED_1GBIT;
144 
145 		if (ecmd.link_modes.supported[0] & (
146 			    SUPPORTED_10000baseT_Full   |
147 			    SUPPORTED_10000baseKX4_Full |
148 			    SUPPORTED_10000baseKR_Full  |
149 			    SUPPORTED_10000baseR_FEC))
150 			lport->link_supported_speeds |= FC_PORTSPEED_10GBIT;
151 
152 		if (ecmd.link_modes.supported[0] & (
153 			    SUPPORTED_20000baseMLD2_Full |
154 			    SUPPORTED_20000baseKR2_Full))
155 			lport->link_supported_speeds |= FC_PORTSPEED_20GBIT;
156 
157 		if (ecmd.link_modes.supported[0] & (
158 			    SUPPORTED_40000baseKR4_Full |
159 			    SUPPORTED_40000baseCR4_Full |
160 			    SUPPORTED_40000baseSR4_Full |
161 			    SUPPORTED_40000baseLR4_Full))
162 			lport->link_supported_speeds |= FC_PORTSPEED_40GBIT;
163 
164 		lport->link_speed = eth2fc_speed(ecmd.base.speed);
165 		return 0;
166 	}
167 	return -1;
168 }
169 EXPORT_SYMBOL_GPL(fcoe_link_speed_update);
170 
171 /**
172  * __fcoe_get_lesb() - Get the Link Error Status Block (LESB) for a given lport
173  * @lport: The local port to update speeds for
174  * @fc_lesb: Pointer to the LESB to be filled up
175  * @netdev: Pointer to the netdev that is associated with the lport
176  *
177  * Note, the Link Error Status Block (LESB) for FCoE is defined in FC-BB-6
178  * Clause 7.11 in v1.04.
179  */
__fcoe_get_lesb(struct fc_lport * lport,struct fc_els_lesb * fc_lesb,struct net_device * netdev)180 void __fcoe_get_lesb(struct fc_lport *lport,
181 		     struct fc_els_lesb *fc_lesb,
182 		     struct net_device *netdev)
183 {
184 	unsigned int cpu;
185 	u32 lfc, vlfc, mdac;
186 	struct fc_stats *stats;
187 	struct fcoe_fc_els_lesb *lesb;
188 	struct rtnl_link_stats64 temp;
189 
190 	lfc = 0;
191 	vlfc = 0;
192 	mdac = 0;
193 	lesb = (struct fcoe_fc_els_lesb *)fc_lesb;
194 	memset(lesb, 0, sizeof(*lesb));
195 	for_each_possible_cpu(cpu) {
196 		stats = per_cpu_ptr(lport->stats, cpu);
197 		lfc += stats->LinkFailureCount;
198 		vlfc += stats->VLinkFailureCount;
199 		mdac += stats->MissDiscAdvCount;
200 	}
201 	lesb->lesb_link_fail = htonl(lfc);
202 	lesb->lesb_vlink_fail = htonl(vlfc);
203 	lesb->lesb_miss_fka = htonl(mdac);
204 	lesb->lesb_fcs_error =
205 			htonl(dev_get_stats(netdev, &temp)->rx_crc_errors);
206 }
207 EXPORT_SYMBOL_GPL(__fcoe_get_lesb);
208 
209 /**
210  * fcoe_get_lesb() - Fill the FCoE Link Error Status Block
211  * @lport: the local port
212  * @fc_lesb: the link error status block
213  */
fcoe_get_lesb(struct fc_lport * lport,struct fc_els_lesb * fc_lesb)214 void fcoe_get_lesb(struct fc_lport *lport,
215 			 struct fc_els_lesb *fc_lesb)
216 {
217 	struct net_device *netdev = fcoe_get_netdev(lport);
218 
219 	__fcoe_get_lesb(lport, fc_lesb, netdev);
220 }
221 EXPORT_SYMBOL_GPL(fcoe_get_lesb);
222 
223 /**
224  * fcoe_ctlr_get_lesb() - Get the Link Error Status Block (LESB) for a given
225  * fcoe controller device
226  * @ctlr_dev: The given fcoe controller device
227  *
228  */
fcoe_ctlr_get_lesb(struct fcoe_ctlr_device * ctlr_dev)229 void fcoe_ctlr_get_lesb(struct fcoe_ctlr_device *ctlr_dev)
230 {
231 	struct fcoe_ctlr *fip = fcoe_ctlr_device_priv(ctlr_dev);
232 	struct net_device *netdev = fcoe_get_netdev(fip->lp);
233 	struct fc_els_lesb *fc_lesb;
234 
235 	fc_lesb = (struct fc_els_lesb *)(&ctlr_dev->lesb);
236 	__fcoe_get_lesb(fip->lp, fc_lesb, netdev);
237 }
238 EXPORT_SYMBOL_GPL(fcoe_ctlr_get_lesb);
239 
fcoe_wwn_to_str(u64 wwn,char * buf,int len)240 void fcoe_wwn_to_str(u64 wwn, char *buf, int len)
241 {
242 	u8 wwpn[8];
243 
244 	u64_to_wwn(wwn, wwpn);
245 	snprintf(buf, len, "%02x%02x%02x%02x%02x%02x%02x%02x",
246 		 wwpn[0], wwpn[1], wwpn[2], wwpn[3],
247 		 wwpn[4], wwpn[5], wwpn[6], wwpn[7]);
248 }
249 EXPORT_SYMBOL_GPL(fcoe_wwn_to_str);
250 
251 /**
252  * fcoe_validate_vport_create() - Validate a vport before creating it
253  * @vport: NPIV port to be created
254  *
255  * This routine is meant to add validation for a vport before creating it
256  * via fcoe_vport_create().
257  * Current validations are:
258  *      - WWPN supplied is unique for given lport
259  */
fcoe_validate_vport_create(struct fc_vport * vport)260 int fcoe_validate_vport_create(struct fc_vport *vport)
261 {
262 	struct Scsi_Host *shost = vport_to_shost(vport);
263 	struct fc_lport *n_port = shost_priv(shost);
264 	struct fc_lport *vn_port;
265 	int rc = 0;
266 	char buf[32];
267 
268 	mutex_lock(&n_port->lp_mutex);
269 
270 	fcoe_wwn_to_str(vport->port_name, buf, sizeof(buf));
271 	/* Check if the wwpn is not same as that of the lport */
272 	if (!memcmp(&n_port->wwpn, &vport->port_name, sizeof(u64))) {
273 		LIBFCOE_TRANSPORT_DBG("vport WWPN 0x%s is same as that of the "
274 				      "base port WWPN\n", buf);
275 		rc = -EINVAL;
276 		goto out;
277 	}
278 
279 	/* Check if there is any existing vport with same wwpn */
280 	list_for_each_entry(vn_port, &n_port->vports, list) {
281 		if (!memcmp(&vn_port->wwpn, &vport->port_name, sizeof(u64))) {
282 			LIBFCOE_TRANSPORT_DBG("vport with given WWPN 0x%s "
283 					      "already exists\n", buf);
284 			rc = -EINVAL;
285 			break;
286 		}
287 	}
288 out:
289 	mutex_unlock(&n_port->lp_mutex);
290 	return rc;
291 }
292 EXPORT_SYMBOL_GPL(fcoe_validate_vport_create);
293 
294 /**
295  * fcoe_get_wwn() - Get the world wide name from LLD if it supports it
296  * @netdev: the associated net device
297  * @wwn: the output WWN
298  * @type: the type of WWN (WWPN or WWNN)
299  *
300  * Returns: 0 for success
301  */
fcoe_get_wwn(struct net_device * netdev,u64 * wwn,int type)302 int fcoe_get_wwn(struct net_device *netdev, u64 *wwn, int type)
303 {
304 	const struct net_device_ops *ops = netdev->netdev_ops;
305 
306 	if (ops->ndo_fcoe_get_wwn)
307 		return ops->ndo_fcoe_get_wwn(netdev, wwn, type);
308 	return -EINVAL;
309 }
310 EXPORT_SYMBOL_GPL(fcoe_get_wwn);
311 
312 /**
313  * fcoe_fc_crc() - Calculates the CRC for a given frame
314  * @fp: The frame to be checksumed
315  *
316  * This uses crc32() routine to calculate the CRC for a frame
317  *
318  * Return: The 32 bit CRC value
319  */
fcoe_fc_crc(struct fc_frame * fp)320 u32 fcoe_fc_crc(struct fc_frame *fp)
321 {
322 	struct sk_buff *skb = fp_skb(fp);
323 	struct skb_frag_struct *frag;
324 	unsigned char *data;
325 	unsigned long off, len, clen;
326 	u32 crc;
327 	unsigned i;
328 
329 	crc = crc32(~0, skb->data, skb_headlen(skb));
330 
331 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
332 		frag = &skb_shinfo(skb)->frags[i];
333 		off = frag->page_offset;
334 		len = skb_frag_size(frag);
335 		while (len > 0) {
336 			clen = min(len, PAGE_SIZE - (off & ~PAGE_MASK));
337 			data = kmap_atomic(
338 				skb_frag_page(frag) + (off >> PAGE_SHIFT));
339 			crc = crc32(crc, data + (off & ~PAGE_MASK), clen);
340 			kunmap_atomic(data);
341 			off += clen;
342 			len -= clen;
343 		}
344 	}
345 	return crc;
346 }
347 EXPORT_SYMBOL_GPL(fcoe_fc_crc);
348 
349 /**
350  * fcoe_start_io() - Start FCoE I/O
351  * @skb: The packet to be transmitted
352  *
353  * This routine is called from the net device to start transmitting
354  * FCoE packets.
355  *
356  * Returns: 0 for success
357  */
fcoe_start_io(struct sk_buff * skb)358 int fcoe_start_io(struct sk_buff *skb)
359 {
360 	struct sk_buff *nskb;
361 	int rc;
362 
363 	nskb = skb_clone(skb, GFP_ATOMIC);
364 	if (!nskb)
365 		return -ENOMEM;
366 	rc = dev_queue_xmit(nskb);
367 	if (rc != 0)
368 		return rc;
369 	kfree_skb(skb);
370 	return 0;
371 }
372 EXPORT_SYMBOL_GPL(fcoe_start_io);
373 
374 
375 /**
376  * fcoe_clean_pending_queue() - Dequeue a skb and free it
377  * @lport: The local port to dequeue a skb on
378  */
fcoe_clean_pending_queue(struct fc_lport * lport)379 void fcoe_clean_pending_queue(struct fc_lport *lport)
380 {
381 	struct fcoe_port  *port = lport_priv(lport);
382 	struct sk_buff *skb;
383 
384 	spin_lock_bh(&port->fcoe_pending_queue.lock);
385 	while ((skb = __skb_dequeue(&port->fcoe_pending_queue)) != NULL) {
386 		spin_unlock_bh(&port->fcoe_pending_queue.lock);
387 		kfree_skb(skb);
388 		spin_lock_bh(&port->fcoe_pending_queue.lock);
389 	}
390 	spin_unlock_bh(&port->fcoe_pending_queue.lock);
391 }
392 EXPORT_SYMBOL_GPL(fcoe_clean_pending_queue);
393 
394 /**
395  * fcoe_check_wait_queue() - Attempt to clear the transmit backlog
396  * @lport: The local port whose backlog is to be cleared
397  *
398  * This empties the wait_queue, dequeues the head of the wait_queue queue
399  * and calls fcoe_start_io() for each packet. If all skb have been
400  * transmitted it returns the qlen. If an error occurs it restores
401  * wait_queue (to try again later) and returns -1.
402  *
403  * The wait_queue is used when the skb transmit fails. The failed skb
404  * will go in the wait_queue which will be emptied by the timer function or
405  * by the next skb transmit.
406  */
fcoe_check_wait_queue(struct fc_lport * lport,struct sk_buff * skb)407 void fcoe_check_wait_queue(struct fc_lport *lport, struct sk_buff *skb)
408 {
409 	struct fcoe_port *port = lport_priv(lport);
410 	int rc;
411 
412 	spin_lock_bh(&port->fcoe_pending_queue.lock);
413 
414 	if (skb)
415 		__skb_queue_tail(&port->fcoe_pending_queue, skb);
416 
417 	if (port->fcoe_pending_queue_active)
418 		goto out;
419 	port->fcoe_pending_queue_active = 1;
420 
421 	while (port->fcoe_pending_queue.qlen) {
422 		/* keep qlen > 0 until fcoe_start_io succeeds */
423 		port->fcoe_pending_queue.qlen++;
424 		skb = __skb_dequeue(&port->fcoe_pending_queue);
425 
426 		spin_unlock_bh(&port->fcoe_pending_queue.lock);
427 		rc = fcoe_start_io(skb);
428 		spin_lock_bh(&port->fcoe_pending_queue.lock);
429 
430 		if (rc) {
431 			__skb_queue_head(&port->fcoe_pending_queue, skb);
432 			/* undo temporary increment above */
433 			port->fcoe_pending_queue.qlen--;
434 			break;
435 		}
436 		/* undo temporary increment above */
437 		port->fcoe_pending_queue.qlen--;
438 	}
439 
440 	if (port->fcoe_pending_queue.qlen < port->min_queue_depth)
441 		lport->qfull = 0;
442 	if (port->fcoe_pending_queue.qlen && !timer_pending(&port->timer))
443 		mod_timer(&port->timer, jiffies + 2);
444 	port->fcoe_pending_queue_active = 0;
445 out:
446 	if (port->fcoe_pending_queue.qlen > port->max_queue_depth)
447 		lport->qfull = 1;
448 	spin_unlock_bh(&port->fcoe_pending_queue.lock);
449 }
450 EXPORT_SYMBOL_GPL(fcoe_check_wait_queue);
451 
452 /**
453  * fcoe_queue_timer() - The fcoe queue timer
454  * @lport: The local port
455  *
456  * Calls fcoe_check_wait_queue on timeout
457  */
fcoe_queue_timer(ulong lport)458 void fcoe_queue_timer(ulong lport)
459 {
460 	fcoe_check_wait_queue((struct fc_lport *)lport, NULL);
461 }
462 EXPORT_SYMBOL_GPL(fcoe_queue_timer);
463 
464 /**
465  * fcoe_get_paged_crc_eof() - Allocate a page to be used for the trailer CRC
466  * @skb:  The packet to be transmitted
467  * @tlen: The total length of the trailer
468  * @fps:  The fcoe context
469  *
470  * This routine allocates a page for frame trailers. The page is re-used if
471  * there is enough room left on it for the current trailer. If there isn't
472  * enough buffer left a new page is allocated for the trailer. Reference to
473  * the page from this function as well as the skbs using the page fragments
474  * ensure that the page is freed at the appropriate time.
475  *
476  * Returns: 0 for success
477  */
fcoe_get_paged_crc_eof(struct sk_buff * skb,int tlen,struct fcoe_percpu_s * fps)478 int fcoe_get_paged_crc_eof(struct sk_buff *skb, int tlen,
479 			   struct fcoe_percpu_s *fps)
480 {
481 	struct page *page;
482 
483 	page = fps->crc_eof_page;
484 	if (!page) {
485 		page = alloc_page(GFP_ATOMIC);
486 		if (!page)
487 			return -ENOMEM;
488 
489 		fps->crc_eof_page = page;
490 		fps->crc_eof_offset = 0;
491 	}
492 
493 	get_page(page);
494 	skb_fill_page_desc(skb, skb_shinfo(skb)->nr_frags, page,
495 			   fps->crc_eof_offset, tlen);
496 	skb->len += tlen;
497 	skb->data_len += tlen;
498 	skb->truesize += tlen;
499 	fps->crc_eof_offset += sizeof(struct fcoe_crc_eof);
500 
501 	if (fps->crc_eof_offset >= PAGE_SIZE) {
502 		fps->crc_eof_page = NULL;
503 		fps->crc_eof_offset = 0;
504 		put_page(page);
505 	}
506 
507 	return 0;
508 }
509 EXPORT_SYMBOL_GPL(fcoe_get_paged_crc_eof);
510 
511 /**
512  * fcoe_transport_lookup - find an fcoe transport that matches a netdev
513  * @netdev: The netdev to look for from all attached transports
514  *
515  * Returns : ptr to the fcoe transport that supports this netdev or NULL
516  * if not found.
517  *
518  * The ft_mutex should be held when this is called
519  */
fcoe_transport_lookup(struct net_device * netdev)520 static struct fcoe_transport *fcoe_transport_lookup(struct net_device *netdev)
521 {
522 	struct fcoe_transport *ft = NULL;
523 
524 	list_for_each_entry(ft, &fcoe_transports, list)
525 		if (ft->match && ft->match(netdev))
526 			return ft;
527 	return NULL;
528 }
529 
530 /**
531  * fcoe_transport_attach - Attaches an FCoE transport
532  * @ft: The fcoe transport to be attached
533  *
534  * Returns : 0 for success
535  */
fcoe_transport_attach(struct fcoe_transport * ft)536 int fcoe_transport_attach(struct fcoe_transport *ft)
537 {
538 	int rc = 0;
539 
540 	mutex_lock(&ft_mutex);
541 	if (ft->attached) {
542 		LIBFCOE_TRANSPORT_DBG("transport %s already attached\n",
543 				       ft->name);
544 		rc = -EEXIST;
545 		goto out_attach;
546 	}
547 
548 	/* Add default transport to the tail */
549 	if (strcmp(ft->name, FCOE_TRANSPORT_DEFAULT))
550 		list_add(&ft->list, &fcoe_transports);
551 	else
552 		list_add_tail(&ft->list, &fcoe_transports);
553 
554 	ft->attached = true;
555 	LIBFCOE_TRANSPORT_DBG("attaching transport %s\n", ft->name);
556 
557 out_attach:
558 	mutex_unlock(&ft_mutex);
559 	return rc;
560 }
561 EXPORT_SYMBOL(fcoe_transport_attach);
562 
563 /**
564  * fcoe_transport_detach - Detaches an FCoE transport
565  * @ft: The fcoe transport to be attached
566  *
567  * Returns : 0 for success
568  */
fcoe_transport_detach(struct fcoe_transport * ft)569 int fcoe_transport_detach(struct fcoe_transport *ft)
570 {
571 	int rc = 0;
572 	struct fcoe_netdev_mapping *nm = NULL, *tmp;
573 
574 	mutex_lock(&ft_mutex);
575 	if (!ft->attached) {
576 		LIBFCOE_TRANSPORT_DBG("transport %s already detached\n",
577 			ft->name);
578 		rc = -ENODEV;
579 		goto out_attach;
580 	}
581 
582 	/* remove netdev mapping for this transport as it is going away */
583 	mutex_lock(&fn_mutex);
584 	list_for_each_entry_safe(nm, tmp, &fcoe_netdevs, list) {
585 		if (nm->ft == ft) {
586 			LIBFCOE_TRANSPORT_DBG("transport %s going away, "
587 				"remove its netdev mapping for %s\n",
588 				ft->name, nm->netdev->name);
589 			list_del(&nm->list);
590 			kfree(nm);
591 		}
592 	}
593 	mutex_unlock(&fn_mutex);
594 
595 	list_del(&ft->list);
596 	ft->attached = false;
597 	LIBFCOE_TRANSPORT_DBG("detaching transport %s\n", ft->name);
598 
599 out_attach:
600 	mutex_unlock(&ft_mutex);
601 	return rc;
602 
603 }
604 EXPORT_SYMBOL(fcoe_transport_detach);
605 
fcoe_transport_show(char * buffer,const struct kernel_param * kp)606 static int fcoe_transport_show(char *buffer, const struct kernel_param *kp)
607 {
608 	int i, j;
609 	struct fcoe_transport *ft = NULL;
610 
611 	i = j = sprintf(buffer, "Attached FCoE transports:");
612 	mutex_lock(&ft_mutex);
613 	list_for_each_entry(ft, &fcoe_transports, list) {
614 		if (i >= PAGE_SIZE - IFNAMSIZ)
615 			break;
616 		i += snprintf(&buffer[i], IFNAMSIZ, "%s ", ft->name);
617 	}
618 	mutex_unlock(&ft_mutex);
619 	if (i == j)
620 		i += snprintf(&buffer[i], IFNAMSIZ, "none");
621 	return i;
622 }
623 
fcoe_transport_init(void)624 static int __init fcoe_transport_init(void)
625 {
626 	register_netdevice_notifier(&libfcoe_notifier);
627 	return 0;
628 }
629 
fcoe_transport_exit(void)630 static int fcoe_transport_exit(void)
631 {
632 	struct fcoe_transport *ft;
633 
634 	unregister_netdevice_notifier(&libfcoe_notifier);
635 	mutex_lock(&ft_mutex);
636 	list_for_each_entry(ft, &fcoe_transports, list)
637 		printk(KERN_ERR "FCoE transport %s is still attached!\n",
638 		      ft->name);
639 	mutex_unlock(&ft_mutex);
640 	return 0;
641 }
642 
643 
fcoe_add_netdev_mapping(struct net_device * netdev,struct fcoe_transport * ft)644 static int fcoe_add_netdev_mapping(struct net_device *netdev,
645 					struct fcoe_transport *ft)
646 {
647 	struct fcoe_netdev_mapping *nm;
648 
649 	nm = kmalloc(sizeof(*nm), GFP_KERNEL);
650 	if (!nm) {
651 		printk(KERN_ERR "Unable to allocate netdev_mapping");
652 		return -ENOMEM;
653 	}
654 
655 	nm->netdev = netdev;
656 	nm->ft = ft;
657 
658 	mutex_lock(&fn_mutex);
659 	list_add(&nm->list, &fcoe_netdevs);
660 	mutex_unlock(&fn_mutex);
661 	return 0;
662 }
663 
664 
fcoe_del_netdev_mapping(struct net_device * netdev)665 static void fcoe_del_netdev_mapping(struct net_device *netdev)
666 {
667 	struct fcoe_netdev_mapping *nm = NULL, *tmp;
668 
669 	mutex_lock(&fn_mutex);
670 	list_for_each_entry_safe(nm, tmp, &fcoe_netdevs, list) {
671 		if (nm->netdev == netdev) {
672 			list_del(&nm->list);
673 			kfree(nm);
674 			mutex_unlock(&fn_mutex);
675 			return;
676 		}
677 	}
678 	mutex_unlock(&fn_mutex);
679 }
680 
681 
682 /**
683  * fcoe_netdev_map_lookup - find the fcoe transport that matches the netdev on which
684  * it was created
685  *
686  * Returns : ptr to the fcoe transport that supports this netdev or NULL
687  * if not found.
688  *
689  * The ft_mutex should be held when this is called
690  */
fcoe_netdev_map_lookup(struct net_device * netdev)691 static struct fcoe_transport *fcoe_netdev_map_lookup(struct net_device *netdev)
692 {
693 	struct fcoe_transport *ft = NULL;
694 	struct fcoe_netdev_mapping *nm;
695 
696 	mutex_lock(&fn_mutex);
697 	list_for_each_entry(nm, &fcoe_netdevs, list) {
698 		if (netdev == nm->netdev) {
699 			ft = nm->ft;
700 			mutex_unlock(&fn_mutex);
701 			return ft;
702 		}
703 	}
704 
705 	mutex_unlock(&fn_mutex);
706 	return NULL;
707 }
708 
709 /**
710  * fcoe_if_to_netdev() - Parse a name buffer to get a net device
711  * @buffer: The name of the net device
712  *
713  * Returns: NULL or a ptr to net_device
714  */
fcoe_if_to_netdev(const char * buffer)715 static struct net_device *fcoe_if_to_netdev(const char *buffer)
716 {
717 	char *cp;
718 	char ifname[IFNAMSIZ + 2];
719 
720 	if (buffer) {
721 		strlcpy(ifname, buffer, IFNAMSIZ);
722 		cp = ifname + strlen(ifname);
723 		while (--cp >= ifname && *cp == '\n')
724 			*cp = '\0';
725 		return dev_get_by_name(&init_net, ifname);
726 	}
727 	return NULL;
728 }
729 
730 /**
731  * libfcoe_device_notification() - Handler for net device events
732  * @notifier: The context of the notification
733  * @event:    The type of event
734  * @ptr:      The net device that the event was on
735  *
736  * This function is called by the Ethernet driver in case of link change event.
737  *
738  * Returns: 0 for success
739  */
libfcoe_device_notification(struct notifier_block * notifier,ulong event,void * ptr)740 static int libfcoe_device_notification(struct notifier_block *notifier,
741 				    ulong event, void *ptr)
742 {
743 	struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
744 
745 	switch (event) {
746 	case NETDEV_UNREGISTER:
747 		LIBFCOE_TRANSPORT_DBG("NETDEV_UNREGISTER %s\n",
748 				      netdev->name);
749 		fcoe_del_netdev_mapping(netdev);
750 		break;
751 	}
752 	return NOTIFY_OK;
753 }
754 
fcoe_ctlr_create_store(struct bus_type * bus,const char * buf,size_t count)755 ssize_t fcoe_ctlr_create_store(struct bus_type *bus,
756 			       const char *buf, size_t count)
757 {
758 	struct net_device *netdev = NULL;
759 	struct fcoe_transport *ft = NULL;
760 	int rc = 0;
761 	int err;
762 
763 	mutex_lock(&ft_mutex);
764 
765 	netdev = fcoe_if_to_netdev(buf);
766 	if (!netdev) {
767 		LIBFCOE_TRANSPORT_DBG("Invalid device %s.\n", buf);
768 		rc = -ENODEV;
769 		goto out_nodev;
770 	}
771 
772 	ft = fcoe_netdev_map_lookup(netdev);
773 	if (ft) {
774 		LIBFCOE_TRANSPORT_DBG("transport %s already has existing "
775 				      "FCoE instance on %s.\n",
776 				      ft->name, netdev->name);
777 		rc = -EEXIST;
778 		goto out_putdev;
779 	}
780 
781 	ft = fcoe_transport_lookup(netdev);
782 	if (!ft) {
783 		LIBFCOE_TRANSPORT_DBG("no FCoE transport found for %s.\n",
784 				      netdev->name);
785 		rc = -ENODEV;
786 		goto out_putdev;
787 	}
788 
789 	/* pass to transport create */
790 	err = ft->alloc ? ft->alloc(netdev) : -ENODEV;
791 	if (err) {
792 		fcoe_del_netdev_mapping(netdev);
793 		rc = -ENOMEM;
794 		goto out_putdev;
795 	}
796 
797 	err = fcoe_add_netdev_mapping(netdev, ft);
798 	if (err) {
799 		LIBFCOE_TRANSPORT_DBG("failed to add new netdev mapping "
800 				      "for FCoE transport %s for %s.\n",
801 				      ft->name, netdev->name);
802 		rc = -ENODEV;
803 		goto out_putdev;
804 	}
805 
806 	LIBFCOE_TRANSPORT_DBG("transport %s succeeded to create fcoe on %s.\n",
807 			      ft->name, netdev->name);
808 
809 out_putdev:
810 	dev_put(netdev);
811 out_nodev:
812 	mutex_unlock(&ft_mutex);
813 	if (rc)
814 		return rc;
815 	return count;
816 }
817 
fcoe_ctlr_destroy_store(struct bus_type * bus,const char * buf,size_t count)818 ssize_t fcoe_ctlr_destroy_store(struct bus_type *bus,
819 				const char *buf, size_t count)
820 {
821 	int rc = -ENODEV;
822 	struct net_device *netdev = NULL;
823 	struct fcoe_transport *ft = NULL;
824 
825 	mutex_lock(&ft_mutex);
826 
827 	netdev = fcoe_if_to_netdev(buf);
828 	if (!netdev) {
829 		LIBFCOE_TRANSPORT_DBG("invalid device %s.\n", buf);
830 		goto out_nodev;
831 	}
832 
833 	ft = fcoe_netdev_map_lookup(netdev);
834 	if (!ft) {
835 		LIBFCOE_TRANSPORT_DBG("no FCoE transport found for %s.\n",
836 				      netdev->name);
837 		goto out_putdev;
838 	}
839 
840 	/* pass to transport destroy */
841 	rc = ft->destroy(netdev);
842 	if (rc)
843 		goto out_putdev;
844 
845 	fcoe_del_netdev_mapping(netdev);
846 	LIBFCOE_TRANSPORT_DBG("transport %s %s to destroy fcoe on %s.\n",
847 			      ft->name, (rc) ? "failed" : "succeeded",
848 			      netdev->name);
849 	rc = count; /* required for successful return */
850 out_putdev:
851 	dev_put(netdev);
852 out_nodev:
853 	mutex_unlock(&ft_mutex);
854 	return rc;
855 }
856 EXPORT_SYMBOL(fcoe_ctlr_destroy_store);
857 
858 /**
859  * fcoe_transport_create() - Create a fcoe interface
860  * @buffer: The name of the Ethernet interface to create on
861  * @kp:	    The associated kernel param
862  *
863  * Called from sysfs. This holds the ft_mutex while calling the
864  * registered fcoe transport's create function.
865  *
866  * Returns: 0 for success
867  */
fcoe_transport_create(const char * buffer,const struct kernel_param * kp)868 static int fcoe_transport_create(const char *buffer,
869 				 const struct kernel_param *kp)
870 {
871 	int rc = -ENODEV;
872 	struct net_device *netdev = NULL;
873 	struct fcoe_transport *ft = NULL;
874 	enum fip_state fip_mode = (enum fip_state)(long)kp->arg;
875 
876 	mutex_lock(&ft_mutex);
877 
878 	netdev = fcoe_if_to_netdev(buffer);
879 	if (!netdev) {
880 		LIBFCOE_TRANSPORT_DBG("Invalid device %s.\n", buffer);
881 		goto out_nodev;
882 	}
883 
884 	ft = fcoe_netdev_map_lookup(netdev);
885 	if (ft) {
886 		LIBFCOE_TRANSPORT_DBG("transport %s already has existing "
887 				      "FCoE instance on %s.\n",
888 				      ft->name, netdev->name);
889 		rc = -EEXIST;
890 		goto out_putdev;
891 	}
892 
893 	ft = fcoe_transport_lookup(netdev);
894 	if (!ft) {
895 		LIBFCOE_TRANSPORT_DBG("no FCoE transport found for %s.\n",
896 				      netdev->name);
897 		goto out_putdev;
898 	}
899 
900 	rc = fcoe_add_netdev_mapping(netdev, ft);
901 	if (rc) {
902 		LIBFCOE_TRANSPORT_DBG("failed to add new netdev mapping "
903 				      "for FCoE transport %s for %s.\n",
904 				      ft->name, netdev->name);
905 		goto out_putdev;
906 	}
907 
908 	/* pass to transport create */
909 	rc = ft->create ? ft->create(netdev, fip_mode) : -ENODEV;
910 	if (rc)
911 		fcoe_del_netdev_mapping(netdev);
912 
913 	LIBFCOE_TRANSPORT_DBG("transport %s %s to create fcoe on %s.\n",
914 			      ft->name, (rc) ? "failed" : "succeeded",
915 			      netdev->name);
916 
917 out_putdev:
918 	dev_put(netdev);
919 out_nodev:
920 	mutex_unlock(&ft_mutex);
921 	return rc;
922 }
923 
924 /**
925  * fcoe_transport_destroy() - Destroy a FCoE interface
926  * @buffer: The name of the Ethernet interface to be destroyed
927  * @kp:	    The associated kernel parameter
928  *
929  * Called from sysfs. This holds the ft_mutex while calling the
930  * registered fcoe transport's destroy function.
931  *
932  * Returns: 0 for success
933  */
fcoe_transport_destroy(const char * buffer,const struct kernel_param * kp)934 static int fcoe_transport_destroy(const char *buffer,
935 				  const struct kernel_param *kp)
936 {
937 	int rc = -ENODEV;
938 	struct net_device *netdev = NULL;
939 	struct fcoe_transport *ft = NULL;
940 
941 	mutex_lock(&ft_mutex);
942 
943 	netdev = fcoe_if_to_netdev(buffer);
944 	if (!netdev) {
945 		LIBFCOE_TRANSPORT_DBG("invalid device %s.\n", buffer);
946 		goto out_nodev;
947 	}
948 
949 	ft = fcoe_netdev_map_lookup(netdev);
950 	if (!ft) {
951 		LIBFCOE_TRANSPORT_DBG("no FCoE transport found for %s.\n",
952 				      netdev->name);
953 		goto out_putdev;
954 	}
955 
956 	/* pass to transport destroy */
957 	rc = ft->destroy ? ft->destroy(netdev) : -ENODEV;
958 	fcoe_del_netdev_mapping(netdev);
959 	LIBFCOE_TRANSPORT_DBG("transport %s %s to destroy fcoe on %s.\n",
960 			      ft->name, (rc) ? "failed" : "succeeded",
961 			      netdev->name);
962 
963 out_putdev:
964 	dev_put(netdev);
965 out_nodev:
966 	mutex_unlock(&ft_mutex);
967 	return rc;
968 }
969 
970 /**
971  * fcoe_transport_disable() - Disables a FCoE interface
972  * @buffer: The name of the Ethernet interface to be disabled
973  * @kp:	    The associated kernel parameter
974  *
975  * Called from sysfs.
976  *
977  * Returns: 0 for success
978  */
fcoe_transport_disable(const char * buffer,const struct kernel_param * kp)979 static int fcoe_transport_disable(const char *buffer,
980 				  const struct kernel_param *kp)
981 {
982 	int rc = -ENODEV;
983 	struct net_device *netdev = NULL;
984 	struct fcoe_transport *ft = NULL;
985 
986 	mutex_lock(&ft_mutex);
987 
988 	netdev = fcoe_if_to_netdev(buffer);
989 	if (!netdev)
990 		goto out_nodev;
991 
992 	ft = fcoe_netdev_map_lookup(netdev);
993 	if (!ft)
994 		goto out_putdev;
995 
996 	rc = ft->disable ? ft->disable(netdev) : -ENODEV;
997 
998 out_putdev:
999 	dev_put(netdev);
1000 out_nodev:
1001 	mutex_unlock(&ft_mutex);
1002 	return rc;
1003 }
1004 
1005 /**
1006  * fcoe_transport_enable() - Enables a FCoE interface
1007  * @buffer: The name of the Ethernet interface to be enabled
1008  * @kp:     The associated kernel parameter
1009  *
1010  * Called from sysfs.
1011  *
1012  * Returns: 0 for success
1013  */
fcoe_transport_enable(const char * buffer,const struct kernel_param * kp)1014 static int fcoe_transport_enable(const char *buffer,
1015 				 const struct kernel_param *kp)
1016 {
1017 	int rc = -ENODEV;
1018 	struct net_device *netdev = NULL;
1019 	struct fcoe_transport *ft = NULL;
1020 
1021 	mutex_lock(&ft_mutex);
1022 
1023 	netdev = fcoe_if_to_netdev(buffer);
1024 	if (!netdev)
1025 		goto out_nodev;
1026 
1027 	ft = fcoe_netdev_map_lookup(netdev);
1028 	if (!ft)
1029 		goto out_putdev;
1030 
1031 	rc = ft->enable ? ft->enable(netdev) : -ENODEV;
1032 
1033 out_putdev:
1034 	dev_put(netdev);
1035 out_nodev:
1036 	mutex_unlock(&ft_mutex);
1037 	return rc;
1038 }
1039 
1040 /**
1041  * libfcoe_init() - Initialization routine for libfcoe.ko
1042  */
libfcoe_init(void)1043 static int __init libfcoe_init(void)
1044 {
1045 	int rc = 0;
1046 
1047 	rc = fcoe_transport_init();
1048 	if (rc)
1049 		return rc;
1050 
1051 	rc = fcoe_sysfs_setup();
1052 	if (rc)
1053 		fcoe_transport_exit();
1054 
1055 	return rc;
1056 }
1057 module_init(libfcoe_init);
1058 
1059 /**
1060  * libfcoe_exit() - Tear down libfcoe.ko
1061  */
libfcoe_exit(void)1062 static void __exit libfcoe_exit(void)
1063 {
1064 	fcoe_sysfs_teardown();
1065 	fcoe_transport_exit();
1066 }
1067 module_exit(libfcoe_exit);
1068