]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/scsi/fcoe/fcoe_ctlr.c
fcp: Do not interpret check condition as underrun
[mirror_ubuntu-hirsute-kernel.git] / drivers / scsi / fcoe / fcoe_ctlr.c
CommitLineData
9b34ecff 1/*
97c8389d
JE
2 * Copyright (c) 2008-2009 Cisco Systems, Inc. All rights reserved.
3 * Copyright (c) 2009 Intel Corporation. All rights reserved.
9b34ecff
VD
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 * Maintained at www.Open-FCoE.org
19 */
20
97c8389d 21#include <linux/types.h>
9b34ecff 22#include <linux/module.h>
97c8389d
JE
23#include <linux/kernel.h>
24#include <linux/list.h>
25#include <linux/spinlock.h>
26#include <linux/timer.h>
5e80f7f7 27#include <linux/netdevice.h>
97c8389d
JE
28#include <linux/etherdevice.h>
29#include <linux/ethtool.h>
30#include <linux/if_ether.h>
31#include <linux/if_vlan.h>
97c8389d
JE
32#include <linux/errno.h>
33#include <linux/bitops.h>
5a0e3ad6 34#include <linux/slab.h>
97c8389d
JE
35#include <net/rtnetlink.h>
36
37#include <scsi/fc/fc_els.h>
38#include <scsi/fc/fc_fs.h>
39#include <scsi/fc/fc_fip.h>
40#include <scsi/fc/fc_encaps.h>
41#include <scsi/fc/fc_fcoe.h>
e10f8c66 42#include <scsi/fc/fc_fcp.h>
5e80f7f7
VD
43
44#include <scsi/libfc.h>
97c8389d 45#include <scsi/libfcoe.h>
9b34ecff 46
21b7b2f5
YZ
47#include "libfcoe.h"
48
97c8389d
JE
49#define FCOE_CTLR_MIN_FKA 500 /* min keep alive (mS) */
50#define FCOE_CTLR_DEF_FKA FIP_DEF_FKA /* default keep alive (mS) */
51
52static void fcoe_ctlr_timeout(unsigned long);
42913657 53static void fcoe_ctlr_timer_work(struct work_struct *);
97c8389d 54static void fcoe_ctlr_recv_work(struct work_struct *);
794d98e7 55static int fcoe_ctlr_flogi_retry(struct fcoe_ctlr *);
97c8389d 56
e10f8c66
JE
57static void fcoe_ctlr_vn_start(struct fcoe_ctlr *);
58static int fcoe_ctlr_vn_recv(struct fcoe_ctlr *, struct sk_buff *);
59static void fcoe_ctlr_vn_timeout(struct fcoe_ctlr *);
60static int fcoe_ctlr_vn_lookup(struct fcoe_ctlr *, u32, u8 *);
61
97c8389d 62static u8 fcoe_all_fcfs[ETH_ALEN] = FIP_ALL_FCF_MACS;
e10f8c66
JE
63static u8 fcoe_all_enode[ETH_ALEN] = FIP_ALL_ENODE_MACS;
64static u8 fcoe_all_vn2vn[ETH_ALEN] = FIP_ALL_VN2VN_MACS;
65static u8 fcoe_all_p2p[ETH_ALEN] = FIP_ALL_P2P_MACS;
97c8389d 66
0095a921 67static const char * const fcoe_ctlr_states[] = {
9b651da9
JE
68 [FIP_ST_DISABLED] = "DISABLED",
69 [FIP_ST_LINK_WAIT] = "LINK_WAIT",
70 [FIP_ST_AUTO] = "AUTO",
71 [FIP_ST_NON_FIP] = "NON_FIP",
72 [FIP_ST_ENABLED] = "ENABLED",
e10f8c66
JE
73 [FIP_ST_VNMP_START] = "VNMP_START",
74 [FIP_ST_VNMP_PROBE1] = "VNMP_PROBE1",
75 [FIP_ST_VNMP_PROBE2] = "VNMP_PROBE2",
76 [FIP_ST_VNMP_CLAIM] = "VNMP_CLAIM",
77 [FIP_ST_VNMP_UP] = "VNMP_UP",
9b651da9
JE
78};
79
80static const char *fcoe_ctlr_state(enum fip_state state)
81{
82 const char *cp = "unknown";
83
84 if (state < ARRAY_SIZE(fcoe_ctlr_states))
85 cp = fcoe_ctlr_states[state];
86 if (!cp)
87 cp = "unknown";
88 return cp;
89}
90
91/**
92 * fcoe_ctlr_set_state() - Set and do debug printing for the new FIP state.
93 * @fip: The FCoE controller
94 * @state: The new state
95 */
96static void fcoe_ctlr_set_state(struct fcoe_ctlr *fip, enum fip_state state)
97{
98 if (state == fip->state)
99 return;
100 if (fip->lp)
101 LIBFCOE_FIP_DBG(fip, "state %s -> %s\n",
102 fcoe_ctlr_state(fip->state), fcoe_ctlr_state(state));
103 fip->state = state;
104}
105
70b51aab
RL
106/**
107 * fcoe_ctlr_mtu_valid() - Check if a FCF's MTU is valid
108 * @fcf: The FCF to check
109 *
97c8389d
JE
110 * Return non-zero if FCF fcoe_size has been validated.
111 */
112static inline int fcoe_ctlr_mtu_valid(const struct fcoe_fcf *fcf)
113{
114 return (fcf->flags & FIP_FL_SOL) != 0;
115}
116
70b51aab
RL
117/**
118 * fcoe_ctlr_fcf_usable() - Check if a FCF is usable
119 * @fcf: The FCF to check
120 *
97c8389d
JE
121 * Return non-zero if the FCF is usable.
122 */
123static inline int fcoe_ctlr_fcf_usable(struct fcoe_fcf *fcf)
124{
125 u16 flags = FIP_FL_SOL | FIP_FL_AVAIL;
126
127 return (fcf->flags & flags) == flags;
128}
129
cd229e42
JE
130/**
131 * fcoe_ctlr_map_dest() - Set flag and OUI for mapping destination addresses
132 * @fip: The FCoE controller
133 */
134static void fcoe_ctlr_map_dest(struct fcoe_ctlr *fip)
135{
136 if (fip->mode == FIP_MODE_VN2VN)
137 hton24(fip->dest_addr, FIP_VN_FC_MAP);
138 else
139 hton24(fip->dest_addr, FIP_DEF_FC_MAP);
140 hton24(fip->dest_addr + 3, 0);
141 fip->map_dest = 1;
142}
143
97c8389d 144/**
70b51aab
RL
145 * fcoe_ctlr_init() - Initialize the FCoE Controller instance
146 * @fip: The FCoE controller to initialize
97c8389d 147 */
3d902ac0 148void fcoe_ctlr_init(struct fcoe_ctlr *fip, enum fip_state mode)
97c8389d 149{
9b651da9 150 fcoe_ctlr_set_state(fip, FIP_ST_LINK_WAIT);
3d902ac0 151 fip->mode = mode;
97c8389d 152 INIT_LIST_HEAD(&fip->fcfs);
fdb068c6 153 mutex_init(&fip->ctlr_mutex);
794d98e7 154 spin_lock_init(&fip->ctlr_lock);
97c8389d
JE
155 fip->flogi_oxid = FC_XID_UNKNOWN;
156 setup_timer(&fip->timer, fcoe_ctlr_timeout, (unsigned long)fip);
42913657 157 INIT_WORK(&fip->timer_work, fcoe_ctlr_timer_work);
97c8389d
JE
158 INIT_WORK(&fip->recv_work, fcoe_ctlr_recv_work);
159 skb_queue_head_init(&fip->fip_recv_list);
160}
161EXPORT_SYMBOL(fcoe_ctlr_init);
162
8d55e507
RL
163static int fcoe_sysfs_fcf_add(struct fcoe_fcf *new)
164{
165 struct fcoe_ctlr *fip = new->fip;
166 struct fcoe_ctlr_device *ctlr_dev = fcoe_ctlr_to_ctlr_dev(fip);
167 struct fcoe_fcf_device temp, *fcf_dev;
168 int rc = 0;
169
170 LIBFCOE_FIP_DBG(fip, "New FCF fab %16.16llx mac %pM\n",
171 new->fabric_name, new->fcf_mac);
172
173 mutex_lock(&ctlr_dev->lock);
174
175 temp.fabric_name = new->fabric_name;
176 temp.switch_name = new->switch_name;
177 temp.fc_map = new->fc_map;
178 temp.vfid = new->vfid;
179 memcpy(temp.mac, new->fcf_mac, ETH_ALEN);
180 temp.priority = new->pri;
181 temp.fka_period = new->fka_period;
182 temp.selected = 0; /* default to unselected */
183
184 fcf_dev = fcoe_fcf_device_add(ctlr_dev, &temp);
185 if (unlikely(!fcf_dev)) {
186 rc = -ENOMEM;
187 goto out;
188 }
189
190 /*
191 * The fcoe_sysfs layer can return a CONNECTED fcf that
192 * has a priv (fcf was never deleted) or a CONNECTED fcf
193 * that doesn't have a priv (fcf was deleted). However,
194 * libfcoe will always delete FCFs before trying to add
195 * them. This is ensured because both recv_adv and
196 * age_fcfs are protected by the the fcoe_ctlr's mutex.
197 * This means that we should never get a FCF with a
198 * non-NULL priv pointer.
199 */
200 BUG_ON(fcf_dev->priv);
201
202 fcf_dev->priv = new;
203 new->fcf_dev = fcf_dev;
204
205 list_add(&new->list, &fip->fcfs);
206 fip->fcf_count++;
207
208out:
209 mutex_unlock(&ctlr_dev->lock);
210 return rc;
211}
212
213static void fcoe_sysfs_fcf_del(struct fcoe_fcf *new)
214{
215 struct fcoe_ctlr *fip = new->fip;
216 struct fcoe_ctlr_device *ctlr_dev = fcoe_ctlr_to_ctlr_dev(fip);
217 struct fcoe_fcf_device *fcf_dev;
218
219 list_del(&new->list);
220 fip->fcf_count--;
221
222 mutex_lock(&ctlr_dev->lock);
223
224 fcf_dev = fcoe_fcf_to_fcf_dev(new);
225 WARN_ON(!fcf_dev);
226 new->fcf_dev = NULL;
227 fcoe_fcf_device_delete(fcf_dev);
228 kfree(new);
229
230 mutex_unlock(&ctlr_dev->lock);
231}
232
97c8389d 233/**
70b51aab
RL
234 * fcoe_ctlr_reset_fcfs() - Reset and free all FCFs for a controller
235 * @fip: The FCoE controller whose FCFs are to be reset
97c8389d
JE
236 *
237 * Called with &fcoe_ctlr lock held.
238 */
239static void fcoe_ctlr_reset_fcfs(struct fcoe_ctlr *fip)
240{
241 struct fcoe_fcf *fcf;
242 struct fcoe_fcf *next;
243
244 fip->sel_fcf = NULL;
245 list_for_each_entry_safe(fcf, next, &fip->fcfs, list) {
8d55e507 246 fcoe_sysfs_fcf_del(fcf);
97c8389d 247 }
8d55e507
RL
248 WARN_ON(fip->fcf_count);
249
97c8389d
JE
250 fip->sel_time = 0;
251}
252
253/**
70b51aab
RL
254 * fcoe_ctlr_destroy() - Disable and tear down a FCoE controller
255 * @fip: The FCoE controller to tear down
97c8389d
JE
256 *
257 * This is called by FCoE drivers before freeing the &fcoe_ctlr.
258 *
259 * The receive handler will have been deleted before this to guarantee
260 * that no more recv_work will be scheduled.
261 *
262 * The timer routine will simply return once we set FIP_ST_DISABLED.
263 * This guarantees that no further timeouts or work will be scheduled.
264 */
265void fcoe_ctlr_destroy(struct fcoe_ctlr *fip)
266{
a4b7cfae 267 cancel_work_sync(&fip->recv_work);
1f4aed81 268 skb_queue_purge(&fip->fip_recv_list);
a4b7cfae 269
fdb068c6 270 mutex_lock(&fip->ctlr_mutex);
9b651da9 271 fcoe_ctlr_set_state(fip, FIP_ST_DISABLED);
97c8389d 272 fcoe_ctlr_reset_fcfs(fip);
fdb068c6 273 mutex_unlock(&fip->ctlr_mutex);
97c8389d 274 del_timer_sync(&fip->timer);
42913657 275 cancel_work_sync(&fip->timer_work);
97c8389d
JE
276}
277EXPORT_SYMBOL(fcoe_ctlr_destroy);
278
69316ee2 279/**
794d98e7 280 * fcoe_ctlr_announce() - announce new FCF selection
69316ee2
JE
281 * @fip: The FCoE controller
282 *
283 * Also sets the destination MAC for FCoE and control packets
794d98e7
JE
284 *
285 * Called with neither ctlr_mutex nor ctlr_lock held.
69316ee2
JE
286 */
287static void fcoe_ctlr_announce(struct fcoe_ctlr *fip)
288{
794d98e7
JE
289 struct fcoe_fcf *sel;
290 struct fcoe_fcf *fcf;
291
292 mutex_lock(&fip->ctlr_mutex);
293 spin_lock_bh(&fip->ctlr_lock);
294
295 kfree_skb(fip->flogi_req);
296 fip->flogi_req = NULL;
297 list_for_each_entry(fcf, &fip->fcfs, list)
298 fcf->flogi_sent = 0;
299
300 spin_unlock_bh(&fip->ctlr_lock);
301 sel = fip->sel_fcf;
69316ee2
JE
302
303 if (sel && !compare_ether_addr(sel->fcf_mac, fip->dest_addr))
794d98e7 304 goto unlock;
69316ee2
JE
305 if (!is_zero_ether_addr(fip->dest_addr)) {
306 printk(KERN_NOTICE "libfcoe: host%d: "
307 "FIP Fibre-Channel Forwarder MAC %pM deselected\n",
308 fip->lp->host->host_no, fip->dest_addr);
309 memset(fip->dest_addr, 0, ETH_ALEN);
310 }
311 if (sel) {
312 printk(KERN_INFO "libfcoe: host%d: FIP selected "
313 "Fibre-Channel Forwarder MAC %pM\n",
314 fip->lp->host->host_no, sel->fcf_mac);
81c11dd2 315 memcpy(fip->dest_addr, sel->fcoe_mac, ETH_ALEN);
69316ee2
JE
316 fip->map_dest = 0;
317 }
794d98e7
JE
318unlock:
319 mutex_unlock(&fip->ctlr_mutex);
69316ee2
JE
320}
321
97c8389d 322/**
70b51aab
RL
323 * fcoe_ctlr_fcoe_size() - Return the maximum FCoE size required for VN_Port
324 * @fip: The FCoE controller to get the maximum FCoE size from
97c8389d
JE
325 *
326 * Returns the maximum packet size including the FCoE header and trailer,
327 * but not including any Ethernet or VLAN headers.
328 */
329static inline u32 fcoe_ctlr_fcoe_size(struct fcoe_ctlr *fip)
330{
331 /*
332 * Determine the max FCoE frame size allowed, including
333 * FCoE header and trailer.
334 * Note: lp->mfs is currently the payload size, not the frame size.
335 */
336 return fip->lp->mfs + sizeof(struct fc_frame_header) +
337 sizeof(struct fcoe_hdr) + sizeof(struct fcoe_crc_eof);
338}
339
340/**
70b51aab
RL
341 * fcoe_ctlr_solicit() - Send a FIP solicitation
342 * @fip: The FCoE controller to send the solicitation on
343 * @fcf: The destination FCF (if NULL, a multicast solicitation is sent)
97c8389d
JE
344 */
345static void fcoe_ctlr_solicit(struct fcoe_ctlr *fip, struct fcoe_fcf *fcf)
346{
347 struct sk_buff *skb;
348 struct fip_sol {
349 struct ethhdr eth;
350 struct fip_header fip;
351 struct {
352 struct fip_mac_desc mac;
353 struct fip_wwn_desc wwnn;
354 struct fip_size_desc size;
0095a921
YZ
355 } __packed desc;
356 } __packed * sol;
97c8389d
JE
357 u32 fcoe_size;
358
359 skb = dev_alloc_skb(sizeof(*sol));
360 if (!skb)
361 return;
362
363 sol = (struct fip_sol *)skb->data;
364
365 memset(sol, 0, sizeof(*sol));
366 memcpy(sol->eth.h_dest, fcf ? fcf->fcf_mac : fcoe_all_fcfs, ETH_ALEN);
367 memcpy(sol->eth.h_source, fip->ctl_src_addr, ETH_ALEN);
368 sol->eth.h_proto = htons(ETH_P_FIP);
369
370 sol->fip.fip_ver = FIP_VER_ENCAPS(FIP_VER);
371 sol->fip.fip_op = htons(FIP_OP_DISC);
372 sol->fip.fip_subcode = FIP_SC_SOL;
373 sol->fip.fip_dl_len = htons(sizeof(sol->desc) / FIP_BPW);
374 sol->fip.fip_flags = htons(FIP_FL_FPMA);
184dd345
VD
375 if (fip->spma)
376 sol->fip.fip_flags |= htons(FIP_FL_SPMA);
97c8389d
JE
377
378 sol->desc.mac.fd_desc.fip_dtype = FIP_DT_MAC;
379 sol->desc.mac.fd_desc.fip_dlen = sizeof(sol->desc.mac) / FIP_BPW;
380 memcpy(sol->desc.mac.fd_mac, fip->ctl_src_addr, ETH_ALEN);
381
382 sol->desc.wwnn.fd_desc.fip_dtype = FIP_DT_NAME;
383 sol->desc.wwnn.fd_desc.fip_dlen = sizeof(sol->desc.wwnn) / FIP_BPW;
384 put_unaligned_be64(fip->lp->wwnn, &sol->desc.wwnn.fd_wwn);
385
386 fcoe_size = fcoe_ctlr_fcoe_size(fip);
387 sol->desc.size.fd_desc.fip_dtype = FIP_DT_FCOE_SIZE;
388 sol->desc.size.fd_desc.fip_dlen = sizeof(sol->desc.size) / FIP_BPW;
389 sol->desc.size.fd_size = htons(fcoe_size);
390
391 skb_put(skb, sizeof(*sol));
0f491539 392 skb->protocol = htons(ETH_P_FIP);
6f6c2aa3 393 skb->priority = fip->priority;
97c8389d
JE
394 skb_reset_mac_header(skb);
395 skb_reset_network_header(skb);
396 fip->send(fip, skb);
397
398 if (!fcf)
399 fip->sol_time = jiffies;
400}
401
402/**
70b51aab
RL
403 * fcoe_ctlr_link_up() - Start FCoE controller
404 * @fip: The FCoE controller to start
97c8389d
JE
405 *
406 * Called from the LLD when the network link is ready.
407 */
408void fcoe_ctlr_link_up(struct fcoe_ctlr *fip)
409{
fdb068c6 410 mutex_lock(&fip->ctlr_mutex);
97c8389d 411 if (fip->state == FIP_ST_NON_FIP || fip->state == FIP_ST_AUTO) {
fdb068c6 412 mutex_unlock(&fip->ctlr_mutex);
97c8389d
JE
413 fc_linkup(fip->lp);
414 } else if (fip->state == FIP_ST_LINK_WAIT) {
9b651da9 415 fcoe_ctlr_set_state(fip, fip->mode);
e10f8c66
JE
416 switch (fip->mode) {
417 default:
418 LIBFCOE_FIP_DBG(fip, "invalid mode %d\n", fip->mode);
419 /* fall-through */
420 case FIP_MODE_AUTO:
0f51c2e5 421 LIBFCOE_FIP_DBG(fip, "%s", "setting AUTO mode.\n");
e10f8c66
JE
422 /* fall-through */
423 case FIP_MODE_FABRIC:
424 case FIP_MODE_NON_FIP:
425 mutex_unlock(&fip->ctlr_mutex);
426 fc_linkup(fip->lp);
427 fcoe_ctlr_solicit(fip, NULL);
428 break;
429 case FIP_MODE_VN2VN:
430 fcoe_ctlr_vn_start(fip);
431 mutex_unlock(&fip->ctlr_mutex);
432 fc_linkup(fip->lp);
433 break;
434 }
97c8389d 435 } else
fdb068c6 436 mutex_unlock(&fip->ctlr_mutex);
97c8389d
JE
437}
438EXPORT_SYMBOL(fcoe_ctlr_link_up);
439
440/**
70b51aab
RL
441 * fcoe_ctlr_reset() - Reset a FCoE controller
442 * @fip: The FCoE controller to reset
97c8389d 443 */
dd42dac4 444static void fcoe_ctlr_reset(struct fcoe_ctlr *fip)
97c8389d 445{
97c8389d
JE
446 fcoe_ctlr_reset_fcfs(fip);
447 del_timer(&fip->timer);
97c8389d
JE
448 fip->ctlr_ka_time = 0;
449 fip->port_ka_time = 0;
450 fip->sol_time = 0;
451 fip->flogi_oxid = FC_XID_UNKNOWN;
cd229e42 452 fcoe_ctlr_map_dest(fip);
97c8389d
JE
453}
454
455/**
70b51aab
RL
456 * fcoe_ctlr_link_down() - Stop a FCoE controller
457 * @fip: The FCoE controller to be stopped
97c8389d
JE
458 *
459 * Returns non-zero if the link was up and now isn't.
460 *
461 * Called from the LLD when the network link is not ready.
462 * There may be multiple calls while the link is down.
463 */
464int fcoe_ctlr_link_down(struct fcoe_ctlr *fip)
465{
dd42dac4
JE
466 int link_dropped;
467
468 LIBFCOE_FIP_DBG(fip, "link down.\n");
fdb068c6 469 mutex_lock(&fip->ctlr_mutex);
dd42dac4 470 fcoe_ctlr_reset(fip);
42913657 471 link_dropped = fip->state != FIP_ST_LINK_WAIT;
9b651da9 472 fcoe_ctlr_set_state(fip, FIP_ST_LINK_WAIT);
fdb068c6 473 mutex_unlock(&fip->ctlr_mutex);
dd42dac4
JE
474
475 if (link_dropped)
476 fc_linkdown(fip->lp);
477 return link_dropped;
97c8389d
JE
478}
479EXPORT_SYMBOL(fcoe_ctlr_link_down);
480
481/**
70b51aab
RL
482 * fcoe_ctlr_send_keep_alive() - Send a keep-alive to the selected FCF
483 * @fip: The FCoE controller to send the FKA on
484 * @lport: libfc fc_lport to send from
485 * @ports: 0 for controller keep-alive, 1 for port keep-alive
486 * @sa: The source MAC address
97c8389d
JE
487 *
488 * A controller keep-alive is sent every fka_period (typically 8 seconds).
489 * The source MAC is the native MAC address.
490 *
491 * A port keep-alive is sent every 90 seconds while logged in.
492 * The source MAC is the assigned mapped source address.
493 * The destination is the FCF's F-port.
494 */
11b56188
CL
495static void fcoe_ctlr_send_keep_alive(struct fcoe_ctlr *fip,
496 struct fc_lport *lport,
497 int ports, u8 *sa)
97c8389d
JE
498{
499 struct sk_buff *skb;
500 struct fip_kal {
501 struct ethhdr eth;
502 struct fip_header fip;
503 struct fip_mac_desc mac;
0095a921 504 } __packed * kal;
97c8389d
JE
505 struct fip_vn_desc *vn;
506 u32 len;
507 struct fc_lport *lp;
508 struct fcoe_fcf *fcf;
509
510 fcf = fip->sel_fcf;
511 lp = fip->lp;
281ae642 512 if (!fcf || (ports && !lp->port_id))
97c8389d
JE
513 return;
514
be276cbe 515 len = sizeof(*kal) + ports * sizeof(*vn);
97c8389d
JE
516 skb = dev_alloc_skb(len);
517 if (!skb)
518 return;
519
520 kal = (struct fip_kal *)skb->data;
521 memset(kal, 0, len);
522 memcpy(kal->eth.h_dest, fcf->fcf_mac, ETH_ALEN);
523 memcpy(kal->eth.h_source, sa, ETH_ALEN);
524 kal->eth.h_proto = htons(ETH_P_FIP);
525
526 kal->fip.fip_ver = FIP_VER_ENCAPS(FIP_VER);
527 kal->fip.fip_op = htons(FIP_OP_CTRL);
528 kal->fip.fip_subcode = FIP_SC_KEEP_ALIVE;
529 kal->fip.fip_dl_len = htons((sizeof(kal->mac) +
70b51aab 530 ports * sizeof(*vn)) / FIP_BPW);
97c8389d 531 kal->fip.fip_flags = htons(FIP_FL_FPMA);
184dd345
VD
532 if (fip->spma)
533 kal->fip.fip_flags |= htons(FIP_FL_SPMA);
97c8389d
JE
534
535 kal->mac.fd_desc.fip_dtype = FIP_DT_MAC;
536 kal->mac.fd_desc.fip_dlen = sizeof(kal->mac) / FIP_BPW;
537 memcpy(kal->mac.fd_mac, fip->ctl_src_addr, ETH_ALEN);
97c8389d
JE
538 if (ports) {
539 vn = (struct fip_vn_desc *)(kal + 1);
540 vn->fd_desc.fip_dtype = FIP_DT_VN_ID;
541 vn->fd_desc.fip_dlen = sizeof(*vn) / FIP_BPW;
11b56188 542 memcpy(vn->fd_mac, fip->get_src_addr(lport), ETH_ALEN);
fb83153d
KM
543 hton24(vn->fd_fc_id, lport->port_id);
544 put_unaligned_be64(lport->wwpn, &vn->fd_wwpn);
97c8389d 545 }
97c8389d 546 skb_put(skb, len);
0f491539 547 skb->protocol = htons(ETH_P_FIP);
6f6c2aa3 548 skb->priority = fip->priority;
97c8389d
JE
549 skb_reset_mac_header(skb);
550 skb_reset_network_header(skb);
551 fip->send(fip, skb);
552}
553
554/**
70b51aab
RL
555 * fcoe_ctlr_encaps() - Encapsulate an ELS frame for FIP, without sending it
556 * @fip: The FCoE controller for the ELS frame
557 * @dtype: The FIP descriptor type for the frame
558 * @skb: The FCoE ELS frame including FC header but no FCoE headers
e10f8c66 559 * @d_id: The destination port ID.
97c8389d
JE
560 *
561 * Returns non-zero error code on failure.
562 *
563 * The caller must check that the length is a multiple of 4.
564 *
565 * The @skb must have enough headroom (28 bytes) and tailroom (8 bytes).
566 * Headroom includes the FIP encapsulation description, FIP header, and
567 * Ethernet header. The tailroom is for the FIP MAC descriptor.
568 */
11b56188 569static int fcoe_ctlr_encaps(struct fcoe_ctlr *fip, struct fc_lport *lport,
e10f8c66 570 u8 dtype, struct sk_buff *skb, u32 d_id)
97c8389d
JE
571{
572 struct fip_encaps_head {
573 struct ethhdr eth;
574 struct fip_header fip;
575 struct fip_encaps encaps;
0095a921 576 } __packed * cap;
5554345b 577 struct fc_frame_header *fh;
97c8389d
JE
578 struct fip_mac_desc *mac;
579 struct fcoe_fcf *fcf;
580 size_t dlen;
5a84baea 581 u16 fip_flags;
5554345b 582 u8 op;
97c8389d 583
5554345b
JE
584 fh = (struct fc_frame_header *)skb->data;
585 op = *(u8 *)(fh + 1);
97c8389d
JE
586 dlen = sizeof(struct fip_encaps) + skb->len; /* len before push */
587 cap = (struct fip_encaps_head *)skb_push(skb, sizeof(*cap));
97c8389d 588 memset(cap, 0, sizeof(*cap));
e10f8c66
JE
589
590 if (lport->point_to_multipoint) {
591 if (fcoe_ctlr_vn_lookup(fip, d_id, cap->eth.h_dest))
592 return -ENODEV;
5554345b 593 fip_flags = 0;
e10f8c66
JE
594 } else {
595 fcf = fip->sel_fcf;
596 if (!fcf)
597 return -ENODEV;
598 fip_flags = fcf->flags;
599 fip_flags &= fip->spma ? FIP_FL_SPMA | FIP_FL_FPMA :
600 FIP_FL_FPMA;
601 if (!fip_flags)
602 return -ENODEV;
603 memcpy(cap->eth.h_dest, fcf->fcf_mac, ETH_ALEN);
604 }
97c8389d
JE
605 memcpy(cap->eth.h_source, fip->ctl_src_addr, ETH_ALEN);
606 cap->eth.h_proto = htons(ETH_P_FIP);
607
608 cap->fip.fip_ver = FIP_VER_ENCAPS(FIP_VER);
609 cap->fip.fip_op = htons(FIP_OP_LS);
5554345b
JE
610 if (op == ELS_LS_ACC || op == ELS_LS_RJT)
611 cap->fip.fip_subcode = FIP_SC_REP;
612 else
613 cap->fip.fip_subcode = FIP_SC_REQ;
5a84baea 614 cap->fip.fip_flags = htons(fip_flags);
97c8389d
JE
615
616 cap->encaps.fd_desc.fip_dtype = dtype;
617 cap->encaps.fd_desc.fip_dlen = dlen / FIP_BPW;
618
5554345b
JE
619 if (op != ELS_LS_RJT) {
620 dlen += sizeof(*mac);
621 mac = (struct fip_mac_desc *)skb_put(skb, sizeof(*mac));
622 memset(mac, 0, sizeof(*mac));
623 mac->fd_desc.fip_dtype = FIP_DT_MAC;
624 mac->fd_desc.fip_dlen = sizeof(*mac) / FIP_BPW;
625 if (dtype != FIP_DT_FLOGI && dtype != FIP_DT_FDISC) {
626 memcpy(mac->fd_mac, fip->get_src_addr(lport), ETH_ALEN);
627 } else if (fip->mode == FIP_MODE_VN2VN) {
628 hton24(mac->fd_mac, FIP_VN_FC_MAP);
629 hton24(mac->fd_mac + 3, fip->port_id);
630 } else if (fip_flags & FIP_FL_SPMA) {
631 LIBFCOE_FIP_DBG(fip, "FLOGI/FDISC sent with SPMA\n");
632 memcpy(mac->fd_mac, fip->ctl_src_addr, ETH_ALEN);
633 } else {
634 LIBFCOE_FIP_DBG(fip, "FLOGI/FDISC sent with FPMA\n");
635 /* FPMA only FLOGI. Must leave the MAC desc zeroed. */
636 }
593abc07 637 }
5554345b 638 cap->fip.fip_dl_len = htons(dlen / FIP_BPW);
97c8389d 639
0f491539 640 skb->protocol = htons(ETH_P_FIP);
6f6c2aa3 641 skb->priority = fip->priority;
97c8389d
JE
642 skb_reset_mac_header(skb);
643 skb_reset_network_header(skb);
644 return 0;
645}
646
647/**
648 * fcoe_ctlr_els_send() - Send an ELS frame encapsulated by FIP if appropriate.
649 * @fip: FCoE controller.
11b56188 650 * @lport: libfc fc_lport to send from
97c8389d
JE
651 * @skb: FCoE ELS frame including FC header but no FCoE headers.
652 *
653 * Returns a non-zero error code if the frame should not be sent.
654 * Returns zero if the caller should send the frame with FCoE encapsulation.
655 *
656 * The caller must check that the length is a multiple of 4.
657 * The SKB must have enough headroom (28 bytes) and tailroom (8 bytes).
e10f8c66 658 * The the skb must also be an fc_frame.
794d98e7
JE
659 *
660 * This is called from the lower-level driver with spinlocks held,
661 * so we must not take a mutex here.
97c8389d 662 */
11b56188
CL
663int fcoe_ctlr_els_send(struct fcoe_ctlr *fip, struct fc_lport *lport,
664 struct sk_buff *skb)
97c8389d 665{
e10f8c66 666 struct fc_frame *fp;
97c8389d
JE
667 struct fc_frame_header *fh;
668 u16 old_xid;
669 u8 op;
11b56188 670 u8 mac[ETH_ALEN];
97c8389d 671
e10f8c66 672 fp = container_of(skb, struct fc_frame, skb);
97c8389d
JE
673 fh = (struct fc_frame_header *)skb->data;
674 op = *(u8 *)(fh + 1);
675
e10f8c66 676 if (op == ELS_FLOGI && fip->mode != FIP_MODE_VN2VN) {
97c8389d
JE
677 old_xid = fip->flogi_oxid;
678 fip->flogi_oxid = ntohs(fh->fh_ox_id);
679 if (fip->state == FIP_ST_AUTO) {
680 if (old_xid == FC_XID_UNKNOWN)
681 fip->flogi_count = 0;
682 fip->flogi_count++;
683 if (fip->flogi_count < 3)
684 goto drop;
cd229e42 685 fcoe_ctlr_map_dest(fip);
97c8389d
JE
686 return 0;
687 }
5f48f70e 688 if (fip->state == FIP_ST_NON_FIP)
cd229e42 689 fcoe_ctlr_map_dest(fip);
5f48f70e
JE
690 }
691
692 if (fip->state == FIP_ST_NON_FIP)
693 return 0;
e10f8c66 694 if (!fip->sel_fcf && fip->mode != FIP_MODE_VN2VN)
f31f2a1c 695 goto drop;
5f48f70e
JE
696 switch (op) {
697 case ELS_FLOGI:
97c8389d 698 op = FIP_DT_FLOGI;
794d98e7
JE
699 if (fip->mode == FIP_MODE_VN2VN)
700 break;
701 spin_lock_bh(&fip->ctlr_lock);
702 kfree_skb(fip->flogi_req);
703 fip->flogi_req = skb;
704 fip->flogi_req_send = 1;
705 spin_unlock_bh(&fip->ctlr_lock);
706 schedule_work(&fip->timer_work);
707 return -EINPROGRESS;
97c8389d
JE
708 case ELS_FDISC:
709 if (ntoh24(fh->fh_s_id))
710 return 0;
711 op = FIP_DT_FDISC;
712 break;
713 case ELS_LOGO:
e10f8c66
JE
714 if (fip->mode == FIP_MODE_VN2VN) {
715 if (fip->state != FIP_ST_VNMP_UP)
716 return -EINVAL;
717 if (ntoh24(fh->fh_d_id) == FC_FID_FLOGI)
718 return -EINVAL;
719 } else {
720 if (fip->state != FIP_ST_ENABLED)
721 return 0;
722 if (ntoh24(fh->fh_d_id) != FC_FID_FLOGI)
723 return 0;
724 }
97c8389d
JE
725 op = FIP_DT_LOGO;
726 break;
727 case ELS_LS_ACC:
97c8389d 728 /*
e10f8c66 729 * If non-FIP, we may have gotten an SID by accepting an FLOGI
97c8389d
JE
730 * from a point-to-point connection. Switch to using
731 * the source mac based on the SID. The destination
25985edc 732 * MAC in this case would have been set by receiving the
97c8389d
JE
733 * FLOGI.
734 */
e10f8c66
JE
735 if (fip->state == FIP_ST_NON_FIP) {
736 if (fip->flogi_oxid == FC_XID_UNKNOWN)
737 return 0;
738 fip->flogi_oxid = FC_XID_UNKNOWN;
739 fc_fcoe_set_mac(mac, fh->fh_d_id);
740 fip->update_mac(lport, mac);
741 }
742 /* fall through */
743 case ELS_LS_RJT:
744 op = fr_encaps(fp);
745 if (op)
746 break;
97c8389d
JE
747 return 0;
748 default:
e10f8c66
JE
749 if (fip->state != FIP_ST_ENABLED &&
750 fip->state != FIP_ST_VNMP_UP)
97c8389d
JE
751 goto drop;
752 return 0;
753 }
e10f8c66
JE
754 LIBFCOE_FIP_DBG(fip, "els_send op %u d_id %x\n",
755 op, ntoh24(fh->fh_d_id));
756 if (fcoe_ctlr_encaps(fip, lport, op, skb, ntoh24(fh->fh_d_id)))
97c8389d
JE
757 goto drop;
758 fip->send(fip, skb);
759 return -EINPROGRESS;
760drop:
761 kfree_skb(skb);
762 return -EINVAL;
763}
764EXPORT_SYMBOL(fcoe_ctlr_els_send);
765
70b51aab
RL
766/**
767 * fcoe_ctlr_age_fcfs() - Reset and free all old FCFs for a controller
768 * @fip: The FCoE controller to free FCFs on
97c8389d 769 *
f018b73a 770 * Called with lock held and preemption disabled.
97c8389d 771 *
8690cb83
JE
772 * An FCF is considered old if we have missed two advertisements.
773 * That is, there have been no valid advertisement from it for 2.5
774 * times its keep-alive period.
97c8389d
JE
775 *
776 * In addition, determine the time when an FCF selection can occur.
f3da80e7
YZ
777 *
778 * Also, increment the MissDiscAdvCount when no advertisement is received
779 * for the corresponding FCF for 1.5 * FKA_ADV_PERIOD (FC-BB-5 LESB).
8690cb83
JE
780 *
781 * Returns the time in jiffies for the next call.
97c8389d 782 */
8690cb83 783static unsigned long fcoe_ctlr_age_fcfs(struct fcoe_ctlr *fip)
97c8389d
JE
784{
785 struct fcoe_fcf *fcf;
786 struct fcoe_fcf *next;
8690cb83
JE
787 unsigned long next_timer = jiffies + msecs_to_jiffies(FIP_VN_KA_PERIOD);
788 unsigned long deadline;
97c8389d 789 unsigned long sel_time = 0;
8d55e507 790 struct list_head del_list;
1bd49b48 791 struct fc_stats *stats;
97c8389d 792
8d55e507
RL
793 INIT_LIST_HEAD(&del_list);
794
1bd49b48 795 stats = per_cpu_ptr(fip->lp->stats, get_cpu());
fdb068c6 796
97c8389d 797 list_for_each_entry_safe(fcf, next, &fip->fcfs, list) {
8690cb83
JE
798 deadline = fcf->time + fcf->fka_period + fcf->fka_period / 2;
799 if (fip->sel_fcf == fcf) {
800 if (time_after(jiffies, deadline)) {
8690cb83
JE
801 stats->MissDiscAdvCount++;
802 printk(KERN_INFO "libfcoe: host%d: "
803 "Missing Discovery Advertisement "
804 "for fab %16.16llx count %lld\n",
805 fip->lp->host->host_no, fcf->fabric_name,
806 stats->MissDiscAdvCount);
807 } else if (time_after(next_timer, deadline))
808 next_timer = deadline;
f3da80e7 809 }
8690cb83
JE
810
811 deadline += fcf->fka_period;
d99ee45b 812 if (time_after_eq(jiffies, deadline)) {
97c8389d
JE
813 if (fip->sel_fcf == fcf)
814 fip->sel_fcf = NULL;
8d55e507
RL
815 /*
816 * Move to delete list so we can call
817 * fcoe_sysfs_fcf_del (which can sleep)
818 * after the put_cpu().
819 */
97c8389d 820 list_del(&fcf->list);
8d55e507 821 list_add(&fcf->list, &del_list);
f018b73a 822 stats->VLinkFailureCount++;
8690cb83
JE
823 } else {
824 if (time_after(next_timer, deadline))
825 next_timer = deadline;
826 if (fcoe_ctlr_mtu_valid(fcf) &&
827 (!sel_time || time_before(sel_time, fcf->time)))
828 sel_time = fcf->time;
97c8389d
JE
829 }
830 }
fdb068c6 831 put_cpu();
8d55e507
RL
832
833 list_for_each_entry_safe(fcf, next, &del_list, list) {
834 /* Removes fcf from current list */
835 fcoe_sysfs_fcf_del(fcf);
836 }
837
d99ee45b 838 if (sel_time && !fip->sel_fcf && !fip->sel_time) {
97c8389d
JE
839 sel_time += msecs_to_jiffies(FCOE_CTLR_START_DELAY);
840 fip->sel_time = sel_time;
97c8389d 841 }
d99ee45b 842
8690cb83 843 return next_timer;
97c8389d
JE
844}
845
846/**
70b51aab 847 * fcoe_ctlr_parse_adv() - Decode a FIP advertisement into a new FCF entry
0f51c2e5 848 * @fip: The FCoE controller receiving the advertisement
70b51aab
RL
849 * @skb: The received FIP advertisement frame
850 * @fcf: The resulting FCF entry
97c8389d
JE
851 *
852 * Returns zero on a valid parsed advertisement,
853 * otherwise returns non zero value.
854 */
0f51c2e5
JE
855static int fcoe_ctlr_parse_adv(struct fcoe_ctlr *fip,
856 struct sk_buff *skb, struct fcoe_fcf *fcf)
97c8389d
JE
857{
858 struct fip_header *fiph;
859 struct fip_desc *desc = NULL;
860 struct fip_wwn_desc *wwn;
861 struct fip_fab_desc *fab;
862 struct fip_fka_desc *fka;
863 unsigned long t;
864 size_t rlen;
865 size_t dlen;
0a9c5d34 866 u32 desc_mask;
97c8389d
JE
867
868 memset(fcf, 0, sizeof(*fcf));
869 fcf->fka_period = msecs_to_jiffies(FCOE_CTLR_DEF_FKA);
870
871 fiph = (struct fip_header *)skb->data;
872 fcf->flags = ntohs(fiph->fip_flags);
873
0a9c5d34
BPG
874 /*
875 * mask of required descriptors. validating each one clears its bit.
876 */
877 desc_mask = BIT(FIP_DT_PRI) | BIT(FIP_DT_MAC) | BIT(FIP_DT_NAME) |
878 BIT(FIP_DT_FAB) | BIT(FIP_DT_FKA);
879
97c8389d
JE
880 rlen = ntohs(fiph->fip_dl_len) * 4;
881 if (rlen + sizeof(*fiph) > skb->len)
882 return -EINVAL;
883
884 desc = (struct fip_desc *)(fiph + 1);
885 while (rlen > 0) {
886 dlen = desc->fip_dlen * FIP_BPW;
887 if (dlen < sizeof(*desc) || dlen > rlen)
888 return -EINVAL;
0a9c5d34
BPG
889 /* Drop Adv if there are duplicate critical descriptors */
890 if ((desc->fip_dtype < 32) &&
891 !(desc_mask & 1U << desc->fip_dtype)) {
892 LIBFCOE_FIP_DBG(fip, "Duplicate Critical "
893 "Descriptors in FIP adv\n");
894 return -EINVAL;
895 }
97c8389d
JE
896 switch (desc->fip_dtype) {
897 case FIP_DT_PRI:
898 if (dlen != sizeof(struct fip_pri_desc))
899 goto len_err;
900 fcf->pri = ((struct fip_pri_desc *)desc)->fd_pri;
0a9c5d34 901 desc_mask &= ~BIT(FIP_DT_PRI);
97c8389d
JE
902 break;
903 case FIP_DT_MAC:
904 if (dlen != sizeof(struct fip_mac_desc))
905 goto len_err;
906 memcpy(fcf->fcf_mac,
907 ((struct fip_mac_desc *)desc)->fd_mac,
908 ETH_ALEN);
81c11dd2 909 memcpy(fcf->fcoe_mac, fcf->fcf_mac, ETH_ALEN);
97c8389d 910 if (!is_valid_ether_addr(fcf->fcf_mac)) {
e10f8c66
JE
911 LIBFCOE_FIP_DBG(fip,
912 "Invalid MAC addr %pM in FIP adv\n",
913 fcf->fcf_mac);
97c8389d
JE
914 return -EINVAL;
915 }
0a9c5d34 916 desc_mask &= ~BIT(FIP_DT_MAC);
97c8389d
JE
917 break;
918 case FIP_DT_NAME:
919 if (dlen != sizeof(struct fip_wwn_desc))
920 goto len_err;
921 wwn = (struct fip_wwn_desc *)desc;
922 fcf->switch_name = get_unaligned_be64(&wwn->fd_wwn);
0a9c5d34 923 desc_mask &= ~BIT(FIP_DT_NAME);
97c8389d
JE
924 break;
925 case FIP_DT_FAB:
926 if (dlen != sizeof(struct fip_fab_desc))
927 goto len_err;
928 fab = (struct fip_fab_desc *)desc;
929 fcf->fabric_name = get_unaligned_be64(&fab->fd_wwn);
930 fcf->vfid = ntohs(fab->fd_vfid);
931 fcf->fc_map = ntoh24(fab->fd_map);
0a9c5d34 932 desc_mask &= ~BIT(FIP_DT_FAB);
97c8389d
JE
933 break;
934 case FIP_DT_FKA:
935 if (dlen != sizeof(struct fip_fka_desc))
936 goto len_err;
937 fka = (struct fip_fka_desc *)desc;
8cdffdcc
YZ
938 if (fka->fd_flags & FIP_FKA_ADV_D)
939 fcf->fd_flags = 1;
97c8389d
JE
940 t = ntohl(fka->fd_fka_period);
941 if (t >= FCOE_CTLR_MIN_FKA)
942 fcf->fka_period = msecs_to_jiffies(t);
0a9c5d34 943 desc_mask &= ~BIT(FIP_DT_FKA);
97c8389d
JE
944 break;
945 case FIP_DT_MAP_OUI:
946 case FIP_DT_FCOE_SIZE:
947 case FIP_DT_FLOGI:
948 case FIP_DT_FDISC:
949 case FIP_DT_LOGO:
950 case FIP_DT_ELP:
951 default:
0f51c2e5 952 LIBFCOE_FIP_DBG(fip, "unexpected descriptor type %x "
650bd12b 953 "in FIP adv\n", desc->fip_dtype);
97c8389d
JE
954 /* standard says ignore unknown descriptors >= 128 */
955 if (desc->fip_dtype < FIP_DT_VENDOR_BASE)
956 return -EINVAL;
1508f3ec 957 break;
97c8389d
JE
958 }
959 desc = (struct fip_desc *)((char *)desc + dlen);
960 rlen -= dlen;
961 }
962 if (!fcf->fc_map || (fcf->fc_map & 0x10000))
963 return -EINVAL;
240778e8 964 if (!fcf->switch_name)
97c8389d 965 return -EINVAL;
0a9c5d34
BPG
966 if (desc_mask) {
967 LIBFCOE_FIP_DBG(fip, "adv missing descriptors mask %x\n",
968 desc_mask);
969 return -EINVAL;
970 }
97c8389d
JE
971 return 0;
972
973len_err:
0f51c2e5 974 LIBFCOE_FIP_DBG(fip, "FIP length error in descriptor type %x len %zu\n",
650bd12b 975 desc->fip_dtype, dlen);
97c8389d
JE
976 return -EINVAL;
977}
978
979/**
70b51aab
RL
980 * fcoe_ctlr_recv_adv() - Handle an incoming advertisement
981 * @fip: The FCoE controller receiving the advertisement
982 * @skb: The received FIP packet
97c8389d
JE
983 */
984static void fcoe_ctlr_recv_adv(struct fcoe_ctlr *fip, struct sk_buff *skb)
985{
986 struct fcoe_fcf *fcf;
987 struct fcoe_fcf new;
97c8389d
JE
988 unsigned long sol_tov = msecs_to_jiffies(FCOE_CTRL_SOL_TOV);
989 int first = 0;
990 int mtu_valid;
8d55e507
RL
991 int found = 0;
992 int rc = 0;
97c8389d 993
0f51c2e5 994 if (fcoe_ctlr_parse_adv(fip, skb, &new))
97c8389d
JE
995 return;
996
fdb068c6 997 mutex_lock(&fip->ctlr_mutex);
97c8389d 998 first = list_empty(&fip->fcfs);
97c8389d
JE
999 list_for_each_entry(fcf, &fip->fcfs, list) {
1000 if (fcf->switch_name == new.switch_name &&
1001 fcf->fabric_name == new.fabric_name &&
1002 fcf->fc_map == new.fc_map &&
1003 compare_ether_addr(fcf->fcf_mac, new.fcf_mac) == 0) {
8d55e507 1004 found = 1;
97c8389d
JE
1005 break;
1006 }
1007 }
1008 if (!found) {
1009 if (fip->fcf_count >= FCOE_CTLR_FCF_LIMIT)
1010 goto out;
1011
1012 fcf = kmalloc(sizeof(*fcf), GFP_ATOMIC);
1013 if (!fcf)
1014 goto out;
1015
97c8389d 1016 memcpy(fcf, &new, sizeof(new));
8d55e507
RL
1017 fcf->fip = fip;
1018 rc = fcoe_sysfs_fcf_add(fcf);
1019 if (rc) {
1020 printk(KERN_ERR "Failed to allocate sysfs instance "
1021 "for FCF, fab %16.16llx mac %pM\n",
1022 new.fabric_name, new.fcf_mac);
1023 kfree(fcf);
1024 goto out;
1025 }
97c8389d
JE
1026 } else {
1027 /*
c600fea2
JE
1028 * Update the FCF's keep-alive descriptor flags.
1029 * Other flag changes from new advertisements are
1030 * ignored after a solicited advertisement is
1031 * received and the FCF is selectable (usable).
97c8389d 1032 */
c600fea2
JE
1033 fcf->fd_flags = new.fd_flags;
1034 if (!fcoe_ctlr_fcf_usable(fcf))
1035 fcf->flags = new.flags;
1036
d99ee45b 1037 if (fcf == fip->sel_fcf && !fcf->fd_flags) {
97c8389d
JE
1038 fip->ctlr_ka_time -= fcf->fka_period;
1039 fip->ctlr_ka_time += new.fka_period;
1040 if (time_before(fip->ctlr_ka_time, fip->timer.expires))
1041 mod_timer(&fip->timer, fip->ctlr_ka_time);
c600fea2 1042 }
97c8389d
JE
1043 fcf->fka_period = new.fka_period;
1044 memcpy(fcf->fcf_mac, new.fcf_mac, ETH_ALEN);
1045 }
8d55e507 1046
97c8389d
JE
1047 mtu_valid = fcoe_ctlr_mtu_valid(fcf);
1048 fcf->time = jiffies;
9069f5c4
JE
1049 if (!found)
1050 LIBFCOE_FIP_DBG(fip, "New FCF fab %16.16llx mac %pM\n",
1051 fcf->fabric_name, fcf->fcf_mac);
97c8389d
JE
1052
1053 /*
1054 * If this advertisement is not solicited and our max receive size
1055 * hasn't been verified, send a solicited advertisement.
1056 */
1057 if (!mtu_valid)
1058 fcoe_ctlr_solicit(fip, fcf);
1059
1060 /*
1061 * If its been a while since we did a solicit, and this is
1062 * the first advertisement we've received, do a multicast
1063 * solicitation to gather as many advertisements as we can
1064 * before selection occurs.
1065 */
1066 if (first && time_after(jiffies, fip->sol_time + sol_tov))
1067 fcoe_ctlr_solicit(fip, NULL);
1068
981c1154
JE
1069 /*
1070 * Put this FCF at the head of the list for priority among equals.
1071 * This helps in the case of an NPV switch which insists we use
1072 * the FCF that answers multicast solicitations, not the others that
1073 * are sending periodic multicast advertisements.
1074 */
63ce2499
KS
1075 if (mtu_valid)
1076 list_move(&fcf->list, &fip->fcfs);
981c1154 1077
97c8389d
JE
1078 /*
1079 * If this is the first validated FCF, note the time and
1080 * set a timer to trigger selection.
1081 */
d99ee45b 1082 if (mtu_valid && !fip->sel_fcf && fcoe_ctlr_fcf_usable(fcf)) {
97c8389d 1083 fip->sel_time = jiffies +
70b51aab 1084 msecs_to_jiffies(FCOE_CTLR_START_DELAY);
97c8389d
JE
1085 if (!timer_pending(&fip->timer) ||
1086 time_before(fip->sel_time, fip->timer.expires))
1087 mod_timer(&fip->timer, fip->sel_time);
1088 }
8d55e507 1089
97c8389d 1090out:
fdb068c6 1091 mutex_unlock(&fip->ctlr_mutex);
97c8389d
JE
1092}
1093
1094/**
70b51aab
RL
1095 * fcoe_ctlr_recv_els() - Handle an incoming FIP encapsulated ELS frame
1096 * @fip: The FCoE controller which received the packet
1097 * @skb: The received FIP packet
97c8389d
JE
1098 */
1099static void fcoe_ctlr_recv_els(struct fcoe_ctlr *fip, struct sk_buff *skb)
1100{
70b51aab 1101 struct fc_lport *lport = fip->lp;
97c8389d 1102 struct fip_header *fiph;
11b56188 1103 struct fc_frame *fp = (struct fc_frame *)skb;
97c8389d
JE
1104 struct fc_frame_header *fh = NULL;
1105 struct fip_desc *desc;
1106 struct fip_encaps *els;
81c11dd2 1107 struct fcoe_fcf *sel;
1bd49b48 1108 struct fc_stats *stats;
97c8389d
JE
1109 enum fip_desc_type els_dtype = 0;
1110 u8 els_op;
1111 u8 sub;
1112 u8 granted_mac[ETH_ALEN] = { 0 };
1113 size_t els_len = 0;
1114 size_t rlen;
1115 size_t dlen;
be61331d
BPG
1116 u32 desc_mask = 0;
1117 u32 desc_cnt = 0;
97c8389d
JE
1118
1119 fiph = (struct fip_header *)skb->data;
1120 sub = fiph->fip_subcode;
1121 if (sub != FIP_SC_REQ && sub != FIP_SC_REP)
1122 goto drop;
1123
1124 rlen = ntohs(fiph->fip_dl_len) * 4;
1125 if (rlen + sizeof(*fiph) > skb->len)
1126 goto drop;
1127
1128 desc = (struct fip_desc *)(fiph + 1);
1129 while (rlen > 0) {
be61331d 1130 desc_cnt++;
97c8389d
JE
1131 dlen = desc->fip_dlen * FIP_BPW;
1132 if (dlen < sizeof(*desc) || dlen > rlen)
1133 goto drop;
0a9c5d34
BPG
1134 /* Drop ELS if there are duplicate critical descriptors */
1135 if (desc->fip_dtype < 32) {
81c11dd2
BPG
1136 if ((desc->fip_dtype != FIP_DT_MAC) &&
1137 (desc_mask & 1U << desc->fip_dtype)) {
0a9c5d34
BPG
1138 LIBFCOE_FIP_DBG(fip, "Duplicate Critical "
1139 "Descriptors in FIP ELS\n");
1140 goto drop;
1141 }
be61331d 1142 desc_mask |= (1 << desc->fip_dtype);
0a9c5d34 1143 }
97c8389d
JE
1144 switch (desc->fip_dtype) {
1145 case FIP_DT_MAC:
81c11dd2 1146 sel = fip->sel_fcf;
be61331d
BPG
1147 if (desc_cnt == 1) {
1148 LIBFCOE_FIP_DBG(fip, "FIP descriptors "
1149 "received out of order\n");
1150 goto drop;
1151 }
81c11dd2
BPG
1152 /*
1153 * Some switch implementations send two MAC descriptors,
1154 * with first MAC(granted_mac) being the FPMA, and the
1155 * second one(fcoe_mac) is used as destination address
1156 * for sending/receiving FCoE packets. FIP traffic is
1157 * sent using fip_mac. For regular switches, both
1158 * fip_mac and fcoe_mac would be the same.
1159 */
1160 if (desc_cnt == 2)
1161 memcpy(granted_mac,
1162 ((struct fip_mac_desc *)desc)->fd_mac,
1163 ETH_ALEN);
be61331d 1164
97c8389d
JE
1165 if (dlen != sizeof(struct fip_mac_desc))
1166 goto len_err;
81c11dd2
BPG
1167
1168 if ((desc_cnt == 3) && (sel))
1169 memcpy(sel->fcoe_mac,
1170 ((struct fip_mac_desc *)desc)->fd_mac,
1171 ETH_ALEN);
97c8389d
JE
1172 break;
1173 case FIP_DT_FLOGI:
1174 case FIP_DT_FDISC:
1175 case FIP_DT_LOGO:
1176 case FIP_DT_ELP:
be61331d
BPG
1177 if (desc_cnt != 1) {
1178 LIBFCOE_FIP_DBG(fip, "FIP descriptors "
1179 "received out of order\n");
1180 goto drop;
1181 }
97c8389d
JE
1182 if (fh)
1183 goto drop;
1184 if (dlen < sizeof(*els) + sizeof(*fh) + 1)
1185 goto len_err;
1186 els_len = dlen - sizeof(*els);
1187 els = (struct fip_encaps *)desc;
1188 fh = (struct fc_frame_header *)(els + 1);
1189 els_dtype = desc->fip_dtype;
1190 break;
1191 default:
0f51c2e5 1192 LIBFCOE_FIP_DBG(fip, "unexpected descriptor type %x "
650bd12b 1193 "in FIP adv\n", desc->fip_dtype);
97c8389d
JE
1194 /* standard says ignore unknown descriptors >= 128 */
1195 if (desc->fip_dtype < FIP_DT_VENDOR_BASE)
1196 goto drop;
be61331d
BPG
1197 if (desc_cnt <= 2) {
1198 LIBFCOE_FIP_DBG(fip, "FIP descriptors "
1199 "received out of order\n");
1200 goto drop;
1201 }
1508f3ec 1202 break;
97c8389d
JE
1203 }
1204 desc = (struct fip_desc *)((char *)desc + dlen);
1205 rlen -= dlen;
1206 }
1207
1208 if (!fh)
1209 goto drop;
1210 els_op = *(u8 *)(fh + 1);
1211
e10f8c66 1212 if ((els_dtype == FIP_DT_FLOGI || els_dtype == FIP_DT_FDISC) &&
794d98e7
JE
1213 sub == FIP_SC_REP && fip->mode != FIP_MODE_VN2VN) {
1214 if (els_op == ELS_LS_ACC) {
1215 if (!is_valid_ether_addr(granted_mac)) {
1216 LIBFCOE_FIP_DBG(fip,
1217 "Invalid MAC address %pM in FIP ELS\n",
1218 granted_mac);
1219 goto drop;
1220 }
1221 memcpy(fr_cb(fp)->granted_mac, granted_mac, ETH_ALEN);
e10f8c66 1222
794d98e7
JE
1223 if (fip->flogi_oxid == ntohs(fh->fh_ox_id)) {
1224 fip->flogi_oxid = FC_XID_UNKNOWN;
1225 if (els_dtype == FIP_DT_FLOGI)
1226 fcoe_ctlr_announce(fip);
1227 }
1228 } else if (els_dtype == FIP_DT_FLOGI &&
1229 !fcoe_ctlr_flogi_retry(fip))
1230 goto drop; /* retrying FLOGI so drop reject */
e10f8c66 1231 }
97c8389d 1232
be61331d
BPG
1233 if ((desc_cnt == 0) || ((els_op != ELS_LS_RJT) &&
1234 (!(1U << FIP_DT_MAC & desc_mask)))) {
1235 LIBFCOE_FIP_DBG(fip, "Missing critical descriptors "
1236 "in FIP ELS\n");
1237 goto drop;
1238 }
1239
97c8389d
JE
1240 /*
1241 * Convert skb into an fc_frame containing only the ELS.
1242 */
1243 skb_pull(skb, (u8 *)fh - skb->data);
1244 skb_trim(skb, els_len);
1245 fp = (struct fc_frame *)skb;
1246 fc_frame_init(fp);
1247 fr_sof(fp) = FC_SOF_I3;
1248 fr_eof(fp) = FC_EOF_T;
70b51aab 1249 fr_dev(fp) = lport;
e10f8c66 1250 fr_encaps(fp) = els_dtype;
97c8389d 1251
1bd49b48 1252 stats = per_cpu_ptr(lport->stats, get_cpu());
97c8389d
JE
1253 stats->RxFrames++;
1254 stats->RxWords += skb->len / FIP_BPW;
f018b73a 1255 put_cpu();
97c8389d 1256
70b51aab 1257 fc_exch_recv(lport, fp);
97c8389d
JE
1258 return;
1259
1260len_err:
0f51c2e5 1261 LIBFCOE_FIP_DBG(fip, "FIP length error in descriptor type %x len %zu\n",
650bd12b 1262 desc->fip_dtype, dlen);
97c8389d
JE
1263drop:
1264 kfree_skb(skb);
1265}
1266
1267/**
70b51aab
RL
1268 * fcoe_ctlr_recv_els() - Handle an incoming link reset frame
1269 * @fip: The FCoE controller that received the frame
1270 * @fh: The received FIP header
97c8389d
JE
1271 *
1272 * There may be multiple VN_Port descriptors.
1273 * The overall length has already been checked.
1274 */
1275static void fcoe_ctlr_recv_clr_vlink(struct fcoe_ctlr *fip,
70b51aab 1276 struct fip_header *fh)
97c8389d
JE
1277{
1278 struct fip_desc *desc;
1279 struct fip_mac_desc *mp;
1280 struct fip_wwn_desc *wp;
1281 struct fip_vn_desc *vp;
1282 size_t rlen;
1283 size_t dlen;
1284 struct fcoe_fcf *fcf = fip->sel_fcf;
70b51aab 1285 struct fc_lport *lport = fip->lp;
5550fda7
BPG
1286 struct fc_lport *vn_port = NULL;
1287 u32 desc_mask;
c051ad2e
BPG
1288 int num_vlink_desc;
1289 int reset_phys_port = 0;
1290 struct fip_vn_desc **vlink_desc_arr = NULL;
97c8389d 1291
0f51c2e5 1292 LIBFCOE_FIP_DBG(fip, "Clear Virtual Link received\n");
d29510a2 1293
b2593cbe
BPG
1294 if (!fcf || !lport->port_id) {
1295 /*
1296 * We are yet to select best FCF, but we got CVL in the
1297 * meantime. reset the ctlr and let it rediscover the FCF
1298 */
1299 mutex_lock(&fip->ctlr_mutex);
1300 fcoe_ctlr_reset(fip);
1301 mutex_unlock(&fip->ctlr_mutex);
97c8389d 1302 return;
b2593cbe 1303 }
97c8389d
JE
1304
1305 /*
1306 * mask of required descriptors. Validating each one clears its bit.
1307 */
c051ad2e 1308 desc_mask = BIT(FIP_DT_MAC) | BIT(FIP_DT_NAME);
97c8389d
JE
1309
1310 rlen = ntohs(fh->fip_dl_len) * FIP_BPW;
1311 desc = (struct fip_desc *)(fh + 1);
c051ad2e
BPG
1312
1313 /*
1314 * Actually need to subtract 'sizeof(*mp) - sizeof(*wp)' from 'rlen'
1315 * before determining max Vx_Port descriptor but a buggy FCF could have
1316 * omited either or both MAC Address and Name Identifier descriptors
1317 */
1318 num_vlink_desc = rlen / sizeof(*vp);
1319 if (num_vlink_desc)
1320 vlink_desc_arr = kmalloc(sizeof(vp) * num_vlink_desc,
1321 GFP_ATOMIC);
1322 if (!vlink_desc_arr)
1323 return;
1324 num_vlink_desc = 0;
1325
97c8389d
JE
1326 while (rlen >= sizeof(*desc)) {
1327 dlen = desc->fip_dlen * FIP_BPW;
1328 if (dlen > rlen)
c051ad2e 1329 goto err;
0a9c5d34
BPG
1330 /* Drop CVL if there are duplicate critical descriptors */
1331 if ((desc->fip_dtype < 32) &&
c051ad2e 1332 (desc->fip_dtype != FIP_DT_VN_ID) &&
0a9c5d34
BPG
1333 !(desc_mask & 1U << desc->fip_dtype)) {
1334 LIBFCOE_FIP_DBG(fip, "Duplicate Critical "
1335 "Descriptors in FIP CVL\n");
c051ad2e 1336 goto err;
0a9c5d34 1337 }
97c8389d
JE
1338 switch (desc->fip_dtype) {
1339 case FIP_DT_MAC:
1340 mp = (struct fip_mac_desc *)desc;
1341 if (dlen < sizeof(*mp))
c051ad2e 1342 goto err;
97c8389d 1343 if (compare_ether_addr(mp->fd_mac, fcf->fcf_mac))
c051ad2e 1344 goto err;
97c8389d
JE
1345 desc_mask &= ~BIT(FIP_DT_MAC);
1346 break;
1347 case FIP_DT_NAME:
1348 wp = (struct fip_wwn_desc *)desc;
1349 if (dlen < sizeof(*wp))
c051ad2e 1350 goto err;
97c8389d 1351 if (get_unaligned_be64(&wp->fd_wwn) != fcf->switch_name)
c051ad2e 1352 goto err;
97c8389d
JE
1353 desc_mask &= ~BIT(FIP_DT_NAME);
1354 break;
1355 case FIP_DT_VN_ID:
1356 vp = (struct fip_vn_desc *)desc;
1357 if (dlen < sizeof(*vp))
c051ad2e
BPG
1358 goto err;
1359 vlink_desc_arr[num_vlink_desc++] = vp;
1360 vn_port = fc_vport_id_lookup(lport,
1361 ntoh24(vp->fd_fc_id));
1362 if (vn_port && (vn_port == lport)) {
1363 mutex_lock(&fip->ctlr_mutex);
1bd49b48 1364 per_cpu_ptr(lport->stats,
c051ad2e
BPG
1365 get_cpu())->VLinkFailureCount++;
1366 put_cpu();
1367 fcoe_ctlr_reset(fip);
1368 mutex_unlock(&fip->ctlr_mutex);
5550fda7 1369 }
97c8389d
JE
1370 break;
1371 default:
1372 /* standard says ignore unknown descriptors >= 128 */
1373 if (desc->fip_dtype < FIP_DT_VENDOR_BASE)
c051ad2e 1374 goto err;
97c8389d
JE
1375 break;
1376 }
1377 desc = (struct fip_desc *)((char *)desc + dlen);
1378 rlen -= dlen;
1379 }
1380
1381 /*
1382 * reset only if all required descriptors were present and valid.
1383 */
c051ad2e 1384 if (desc_mask)
0f51c2e5
JE
1385 LIBFCOE_FIP_DBG(fip, "missing descriptors mask %x\n",
1386 desc_mask);
c051ad2e
BPG
1387 else if (!num_vlink_desc) {
1388 LIBFCOE_FIP_DBG(fip, "CVL: no Vx_Port descriptor found\n");
1389 /*
1390 * No Vx_Port description. Clear all NPIV ports,
1391 * followed by physical port
1392 */
c051ad2e 1393 mutex_lock(&fip->ctlr_mutex);
1bd49b48 1394 per_cpu_ptr(lport->stats, get_cpu())->VLinkFailureCount++;
c051ad2e
BPG
1395 put_cpu();
1396 fcoe_ctlr_reset(fip);
1397 mutex_unlock(&fip->ctlr_mutex);
1398
14619ea6
BPG
1399 mutex_lock(&lport->lp_mutex);
1400 list_for_each_entry(vn_port, &lport->vports, list)
1401 fc_lport_reset(vn_port);
1402 mutex_unlock(&lport->lp_mutex);
1403
c051ad2e
BPG
1404 fc_lport_reset(fip->lp);
1405 fcoe_ctlr_solicit(fip, NULL);
97c8389d 1406 } else {
c051ad2e 1407 int i;
dd42dac4 1408
c051ad2e
BPG
1409 LIBFCOE_FIP_DBG(fip, "performing Clear Virtual Link\n");
1410 for (i = 0; i < num_vlink_desc; i++) {
1411 vp = vlink_desc_arr[i];
1412 vn_port = fc_vport_id_lookup(lport,
1413 ntoh24(vp->fd_fc_id));
1414 if (!vn_port)
1415 continue;
1416
1417 /*
1418 * 'port_id' is already validated, check MAC address and
1419 * wwpn
1420 */
1421 if (compare_ether_addr(fip->get_src_addr(vn_port),
1422 vp->fd_mac) != 0 ||
1423 get_unaligned_be64(&vp->fd_wwpn) !=
1424 vn_port->wwpn)
1425 continue;
1426
1427 if (vn_port == lport)
1428 /*
1429 * Physical port, defer processing till all
1430 * listed NPIV ports are cleared
1431 */
1432 reset_phys_port = 1;
1433 else /* NPIV port */
1434 fc_lport_reset(vn_port);
1435 }
5550fda7 1436
c051ad2e 1437 if (reset_phys_port) {
5550fda7
BPG
1438 fc_lport_reset(fip->lp);
1439 fcoe_ctlr_solicit(fip, NULL);
1440 }
97c8389d 1441 }
c051ad2e
BPG
1442
1443err:
1444 kfree(vlink_desc_arr);
97c8389d
JE
1445}
1446
1447/**
70b51aab
RL
1448 * fcoe_ctlr_recv() - Receive a FIP packet
1449 * @fip: The FCoE controller that received the packet
1450 * @skb: The received FIP packet
97c8389d 1451 *
1f4aed81 1452 * This may be called from either NET_RX_SOFTIRQ or IRQ.
97c8389d
JE
1453 */
1454void fcoe_ctlr_recv(struct fcoe_ctlr *fip, struct sk_buff *skb)
1455{
c0866286
NH
1456 skb = skb_share_check(skb, GFP_ATOMIC);
1457 if (!skb)
1458 return;
1f4aed81 1459 skb_queue_tail(&fip->fip_recv_list, skb);
97c8389d
JE
1460 schedule_work(&fip->recv_work);
1461}
1462EXPORT_SYMBOL(fcoe_ctlr_recv);
1463
1464/**
70b51aab
RL
1465 * fcoe_ctlr_recv_handler() - Receive a FIP frame
1466 * @fip: The FCoE controller that received the frame
1467 * @skb: The received FIP frame
97c8389d
JE
1468 *
1469 * Returns non-zero if the frame is dropped.
1470 */
1471static int fcoe_ctlr_recv_handler(struct fcoe_ctlr *fip, struct sk_buff *skb)
1472{
1473 struct fip_header *fiph;
1474 struct ethhdr *eh;
1475 enum fip_state state;
1476 u16 op;
1477 u8 sub;
1478
1479 if (skb_linearize(skb))
1480 goto drop;
1481 if (skb->len < sizeof(*fiph))
1482 goto drop;
1483 eh = eth_hdr(skb);
e10f8c66
JE
1484 if (fip->mode == FIP_MODE_VN2VN) {
1485 if (compare_ether_addr(eh->h_dest, fip->ctl_src_addr) &&
1486 compare_ether_addr(eh->h_dest, fcoe_all_vn2vn) &&
1487 compare_ether_addr(eh->h_dest, fcoe_all_p2p))
1488 goto drop;
1489 } else if (compare_ether_addr(eh->h_dest, fip->ctl_src_addr) &&
1490 compare_ether_addr(eh->h_dest, fcoe_all_enode))
97c8389d
JE
1491 goto drop;
1492 fiph = (struct fip_header *)skb->data;
1493 op = ntohs(fiph->fip_op);
1494 sub = fiph->fip_subcode;
1495
97c8389d
JE
1496 if (FIP_VER_DECAPS(fiph->fip_ver) != FIP_VER)
1497 goto drop;
1498 if (ntohs(fiph->fip_dl_len) * FIP_BPW + sizeof(*fiph) > skb->len)
1499 goto drop;
1500
fdb068c6 1501 mutex_lock(&fip->ctlr_mutex);
97c8389d
JE
1502 state = fip->state;
1503 if (state == FIP_ST_AUTO) {
1504 fip->map_dest = 0;
9b651da9 1505 fcoe_ctlr_set_state(fip, FIP_ST_ENABLED);
97c8389d 1506 state = FIP_ST_ENABLED;
0f51c2e5 1507 LIBFCOE_FIP_DBG(fip, "Using FIP mode\n");
97c8389d 1508 }
fdb068c6 1509 mutex_unlock(&fip->ctlr_mutex);
e10f8c66
JE
1510
1511 if (fip->mode == FIP_MODE_VN2VN && op == FIP_OP_VN2VN)
1512 return fcoe_ctlr_vn_recv(fip, skb);
1513
1514 if (state != FIP_ST_ENABLED && state != FIP_ST_VNMP_UP &&
1515 state != FIP_ST_VNMP_CLAIM)
97c8389d
JE
1516 goto drop;
1517
1518 if (op == FIP_OP_LS) {
1519 fcoe_ctlr_recv_els(fip, skb); /* consumes skb */
1520 return 0;
1521 }
e10f8c66
JE
1522
1523 if (state != FIP_ST_ENABLED)
1524 goto drop;
1525
97c8389d
JE
1526 if (op == FIP_OP_DISC && sub == FIP_SC_ADV)
1527 fcoe_ctlr_recv_adv(fip, skb);
1528 else if (op == FIP_OP_CTRL && sub == FIP_SC_CLR_VLINK)
1529 fcoe_ctlr_recv_clr_vlink(fip, fiph);
1530 kfree_skb(skb);
1531 return 0;
1532drop:
1533 kfree_skb(skb);
1534 return -1;
1535}
1536
1537/**
70b51aab
RL
1538 * fcoe_ctlr_select() - Select the best FCF (if possible)
1539 * @fip: The FCoE controller
97c8389d 1540 *
ba9cd5d0
JE
1541 * Returns the selected FCF, or NULL if none are usable.
1542 *
97c8389d
JE
1543 * If there are conflicting advertisements, no FCF can be chosen.
1544 *
794d98e7
JE
1545 * If there is already a selected FCF, this will choose a better one or
1546 * an equivalent one that hasn't already been sent a FLOGI.
1547 *
97c8389d
JE
1548 * Called with lock held.
1549 */
ba9cd5d0 1550static struct fcoe_fcf *fcoe_ctlr_select(struct fcoe_ctlr *fip)
97c8389d
JE
1551{
1552 struct fcoe_fcf *fcf;
794d98e7 1553 struct fcoe_fcf *best = fip->sel_fcf;
97c8389d
JE
1554
1555 list_for_each_entry(fcf, &fip->fcfs, list) {
9069f5c4
JE
1556 LIBFCOE_FIP_DBG(fip, "consider FCF fab %16.16llx "
1557 "VFID %d mac %pM map %x val %d "
1558 "sent %u pri %u\n",
1559 fcf->fabric_name, fcf->vfid, fcf->fcf_mac,
1560 fcf->fc_map, fcoe_ctlr_mtu_valid(fcf),
1561 fcf->flogi_sent, fcf->pri);
97c8389d 1562 if (!fcoe_ctlr_fcf_usable(fcf)) {
9f8f3aa6
CL
1563 LIBFCOE_FIP_DBG(fip, "FCF for fab %16.16llx "
1564 "map %x %svalid %savailable\n",
1565 fcf->fabric_name, fcf->fc_map,
1566 (fcf->flags & FIP_FL_SOL) ? "" : "in",
1567 (fcf->flags & FIP_FL_AVAIL) ?
1568 "" : "un");
97c8389d
JE
1569 continue;
1570 }
e6c10b7c
KM
1571 if (!best || fcf->pri < best->pri || best->flogi_sent)
1572 best = fcf;
1573 if (fcf->fabric_name != best->fabric_name ||
1574 fcf->vfid != best->vfid ||
1575 fcf->fc_map != best->fc_map) {
1f953b0d
BPG
1576 LIBFCOE_FIP_DBG(fip, "Conflicting fabric, VFID, "
1577 "or FC-MAP\n");
1578 return NULL;
1579 }
97c8389d
JE
1580 }
1581 fip->sel_fcf = best;
c47036a7 1582 if (best) {
9069f5c4 1583 LIBFCOE_FIP_DBG(fip, "using FCF mac %pM\n", best->fcf_mac);
c47036a7
JE
1584 fip->port_ka_time = jiffies +
1585 msecs_to_jiffies(FIP_VN_KA_PERIOD);
1586 fip->ctlr_ka_time = jiffies + best->fka_period;
1587 if (time_before(fip->ctlr_ka_time, fip->timer.expires))
1588 mod_timer(&fip->timer, fip->ctlr_ka_time);
1589 }
ba9cd5d0 1590 return best;
97c8389d
JE
1591}
1592
794d98e7
JE
1593/**
1594 * fcoe_ctlr_flogi_send_locked() - send FIP-encapsulated FLOGI to current FCF
1595 * @fip: The FCoE controller
1596 *
1597 * Returns non-zero error if it could not be sent.
1598 *
1599 * Called with ctlr_mutex and ctlr_lock held.
1600 * Caller must verify that fip->sel_fcf is not NULL.
1601 */
1602static int fcoe_ctlr_flogi_send_locked(struct fcoe_ctlr *fip)
1603{
1604 struct sk_buff *skb;
1605 struct sk_buff *skb_orig;
1606 struct fc_frame_header *fh;
1607 int error;
1608
1609 skb_orig = fip->flogi_req;
1610 if (!skb_orig)
1611 return -EINVAL;
1612
1613 /*
1614 * Clone and send the FLOGI request. If clone fails, use original.
1615 */
1616 skb = skb_clone(skb_orig, GFP_ATOMIC);
1617 if (!skb) {
1618 skb = skb_orig;
1619 fip->flogi_req = NULL;
1620 }
1621 fh = (struct fc_frame_header *)skb->data;
1622 error = fcoe_ctlr_encaps(fip, fip->lp, FIP_DT_FLOGI, skb,
1623 ntoh24(fh->fh_d_id));
1624 if (error) {
1625 kfree_skb(skb);
1626 return error;
1627 }
1628 fip->send(fip, skb);
1629 fip->sel_fcf->flogi_sent = 1;
1630 return 0;
1631}
1632
1633/**
1634 * fcoe_ctlr_flogi_retry() - resend FLOGI request to a new FCF if possible
1635 * @fip: The FCoE controller
1636 *
1637 * Returns non-zero error code if there's no FLOGI request to retry or
1638 * no alternate FCF available.
1639 */
1640static int fcoe_ctlr_flogi_retry(struct fcoe_ctlr *fip)
1641{
1642 struct fcoe_fcf *fcf;
1643 int error;
1644
1645 mutex_lock(&fip->ctlr_mutex);
1646 spin_lock_bh(&fip->ctlr_lock);
1647 LIBFCOE_FIP_DBG(fip, "re-sending FLOGI - reselect\n");
ba9cd5d0 1648 fcf = fcoe_ctlr_select(fip);
794d98e7
JE
1649 if (!fcf || fcf->flogi_sent) {
1650 kfree_skb(fip->flogi_req);
1651 fip->flogi_req = NULL;
1652 error = -ENOENT;
1653 } else {
1654 fcoe_ctlr_solicit(fip, NULL);
1655 error = fcoe_ctlr_flogi_send_locked(fip);
1656 }
1657 spin_unlock_bh(&fip->ctlr_lock);
1658 mutex_unlock(&fip->ctlr_mutex);
1659 return error;
1660}
1661
1662
1663/**
1664 * fcoe_ctlr_flogi_send() - Handle sending of FIP FLOGI.
1665 * @fip: The FCoE controller that timed out
1666 *
1667 * Done here because fcoe_ctlr_els_send() can't get mutex.
1668 *
1669 * Called with ctlr_mutex held. The caller must not hold ctlr_lock.
1670 */
1671static void fcoe_ctlr_flogi_send(struct fcoe_ctlr *fip)
1672{
1673 struct fcoe_fcf *fcf;
1674
1675 spin_lock_bh(&fip->ctlr_lock);
1676 fcf = fip->sel_fcf;
1677 if (!fcf || !fip->flogi_req_send)
1678 goto unlock;
1679
1680 LIBFCOE_FIP_DBG(fip, "sending FLOGI\n");
1681
1682 /*
1683 * If this FLOGI is being sent due to a timeout retry
1684 * to the same FCF as before, select a different FCF if possible.
1685 */
1686 if (fcf->flogi_sent) {
1687 LIBFCOE_FIP_DBG(fip, "sending FLOGI - reselect\n");
ba9cd5d0 1688 fcf = fcoe_ctlr_select(fip);
794d98e7
JE
1689 if (!fcf || fcf->flogi_sent) {
1690 LIBFCOE_FIP_DBG(fip, "sending FLOGI - clearing\n");
1691 list_for_each_entry(fcf, &fip->fcfs, list)
1692 fcf->flogi_sent = 0;
ba9cd5d0 1693 fcf = fcoe_ctlr_select(fip);
794d98e7
JE
1694 }
1695 }
1696 if (fcf) {
1697 fcoe_ctlr_flogi_send_locked(fip);
1698 fip->flogi_req_send = 0;
1699 } else /* XXX */
1700 LIBFCOE_FIP_DBG(fip, "No FCF selected - defer send\n");
1701unlock:
1702 spin_unlock_bh(&fip->ctlr_lock);
1703}
1704
97c8389d 1705/**
70b51aab
RL
1706 * fcoe_ctlr_timeout() - FIP timeout handler
1707 * @arg: The FCoE controller that timed out
97c8389d
JE
1708 */
1709static void fcoe_ctlr_timeout(unsigned long arg)
1710{
1711 struct fcoe_ctlr *fip = (struct fcoe_ctlr *)arg;
fdb068c6
JE
1712
1713 schedule_work(&fip->timer_work);
1714}
1715
1716/**
1717 * fcoe_ctlr_timer_work() - Worker thread function for timer work
1718 * @work: Handle to a FCoE controller
1719 *
1720 * Ages FCFs. Triggers FCF selection if possible.
1721 * Sends keep-alives and resets.
1722 */
1723static void fcoe_ctlr_timer_work(struct work_struct *work)
1724{
1725 struct fcoe_ctlr *fip;
1726 struct fc_lport *vport;
1727 u8 *mac;
1728 u8 reset = 0;
1729 u8 send_ctlr_ka = 0;
1730 u8 send_port_ka = 0;
97c8389d
JE
1731 struct fcoe_fcf *sel;
1732 struct fcoe_fcf *fcf;
8690cb83 1733 unsigned long next_timer;
97c8389d 1734
fdb068c6 1735 fip = container_of(work, struct fcoe_ctlr, timer_work);
e10f8c66
JE
1736 if (fip->mode == FIP_MODE_VN2VN)
1737 return fcoe_ctlr_vn_timeout(fip);
fdb068c6 1738 mutex_lock(&fip->ctlr_mutex);
97c8389d 1739 if (fip->state == FIP_ST_DISABLED) {
fdb068c6 1740 mutex_unlock(&fip->ctlr_mutex);
97c8389d
JE
1741 return;
1742 }
1743
1744 fcf = fip->sel_fcf;
8690cb83 1745 next_timer = fcoe_ctlr_age_fcfs(fip);
97c8389d
JE
1746
1747 sel = fip->sel_fcf;
8690cb83
JE
1748 if (!sel && fip->sel_time) {
1749 if (time_after_eq(jiffies, fip->sel_time)) {
ba9cd5d0 1750 sel = fcoe_ctlr_select(fip);
8690cb83
JE
1751 fip->sel_time = 0;
1752 } else if (time_after(next_timer, fip->sel_time))
1753 next_timer = fip->sel_time;
97c8389d
JE
1754 }
1755
794d98e7
JE
1756 if (sel && fip->flogi_req_send)
1757 fcoe_ctlr_flogi_send(fip);
1758 else if (!sel && fcf)
1759 reset = 1;
97c8389d 1760
8cdffdcc 1761 if (sel && !sel->fd_flags) {
97c8389d
JE
1762 if (time_after_eq(jiffies, fip->ctlr_ka_time)) {
1763 fip->ctlr_ka_time = jiffies + sel->fka_period;
fdb068c6 1764 send_ctlr_ka = 1;
97c8389d
JE
1765 }
1766 if (time_after(next_timer, fip->ctlr_ka_time))
1767 next_timer = fip->ctlr_ka_time;
1768
1769 if (time_after_eq(jiffies, fip->port_ka_time)) {
f47dd855 1770 fip->port_ka_time = jiffies +
70b51aab 1771 msecs_to_jiffies(FIP_VN_KA_PERIOD);
fdb068c6 1772 send_port_ka = 1;
97c8389d
JE
1773 }
1774 if (time_after(next_timer, fip->port_ka_time))
1775 next_timer = fip->port_ka_time;
97c8389d 1776 }
8690cb83
JE
1777 if (!list_empty(&fip->fcfs))
1778 mod_timer(&fip->timer, next_timer);
fdb068c6 1779 mutex_unlock(&fip->ctlr_mutex);
97c8389d 1780
516a6486 1781 if (reset) {
dd42dac4 1782 fc_lport_reset(fip->lp);
516a6486
BPG
1783 /* restart things with a solicitation */
1784 fcoe_ctlr_solicit(fip, NULL);
1785 }
11b56188 1786
fdb068c6 1787 if (send_ctlr_ka)
11b56188 1788 fcoe_ctlr_send_keep_alive(fip, NULL, 0, fip->ctl_src_addr);
fdb068c6
JE
1789
1790 if (send_port_ka) {
11b56188
CL
1791 mutex_lock(&fip->lp->lp_mutex);
1792 mac = fip->get_src_addr(fip->lp);
1793 fcoe_ctlr_send_keep_alive(fip, fip->lp, 1, mac);
1794 list_for_each_entry(vport, &fip->lp->vports, list) {
1795 mac = fip->get_src_addr(vport);
1796 fcoe_ctlr_send_keep_alive(fip, vport, 1, mac);
1797 }
1798 mutex_unlock(&fip->lp->lp_mutex);
1799 }
97c8389d
JE
1800}
1801
1802/**
70b51aab
RL
1803 * fcoe_ctlr_recv_work() - Worker thread function for receiving FIP frames
1804 * @recv_work: Handle to a FCoE controller
97c8389d
JE
1805 */
1806static void fcoe_ctlr_recv_work(struct work_struct *recv_work)
1807{
1808 struct fcoe_ctlr *fip;
1809 struct sk_buff *skb;
1810
1811 fip = container_of(recv_work, struct fcoe_ctlr, recv_work);
1f4aed81 1812 while ((skb = skb_dequeue(&fip->fip_recv_list)))
97c8389d 1813 fcoe_ctlr_recv_handler(fip, skb);
97c8389d
JE
1814}
1815
1816/**
386309ce 1817 * fcoe_ctlr_recv_flogi() - Snoop pre-FIP receipt of FLOGI response
70b51aab
RL
1818 * @fip: The FCoE controller
1819 * @fp: The FC frame to snoop
97c8389d
JE
1820 *
1821 * Snoop potential response to FLOGI or even incoming FLOGI.
1822 *
1823 * The caller has checked that we are waiting for login as indicated
1824 * by fip->flogi_oxid != FC_XID_UNKNOWN.
1825 *
1826 * The caller is responsible for freeing the frame.
386309ce 1827 * Fill in the granted_mac address.
97c8389d
JE
1828 *
1829 * Return non-zero if the frame should not be delivered to libfc.
1830 */
11b56188 1831int fcoe_ctlr_recv_flogi(struct fcoe_ctlr *fip, struct fc_lport *lport,
386309ce 1832 struct fc_frame *fp)
97c8389d
JE
1833{
1834 struct fc_frame_header *fh;
1835 u8 op;
386309ce 1836 u8 *sa;
97c8389d 1837
386309ce 1838 sa = eth_hdr(&fp->skb)->h_source;
97c8389d
JE
1839 fh = fc_frame_header_get(fp);
1840 if (fh->fh_type != FC_TYPE_ELS)
1841 return 0;
1842
1843 op = fc_frame_payload_op(fp);
1844 if (op == ELS_LS_ACC && fh->fh_r_ctl == FC_RCTL_ELS_REP &&
1845 fip->flogi_oxid == ntohs(fh->fh_ox_id)) {
1846
fdb068c6 1847 mutex_lock(&fip->ctlr_mutex);
97c8389d 1848 if (fip->state != FIP_ST_AUTO && fip->state != FIP_ST_NON_FIP) {
fdb068c6 1849 mutex_unlock(&fip->ctlr_mutex);
97c8389d
JE
1850 return -EINVAL;
1851 }
9b651da9 1852 fcoe_ctlr_set_state(fip, FIP_ST_NON_FIP);
0f51c2e5
JE
1853 LIBFCOE_FIP_DBG(fip,
1854 "received FLOGI LS_ACC using non-FIP mode\n");
97c8389d
JE
1855
1856 /*
1857 * FLOGI accepted.
1858 * If the src mac addr is FC_OUI-based, then we mark the
1859 * address_mode flag to use FC_OUI-based Ethernet DA.
1860 * Otherwise we use the FCoE gateway addr
1861 */
1862 if (!compare_ether_addr(sa, (u8[6])FC_FCOE_FLOGI_MAC)) {
cd229e42 1863 fcoe_ctlr_map_dest(fip);
97c8389d
JE
1864 } else {
1865 memcpy(fip->dest_addr, sa, ETH_ALEN);
1866 fip->map_dest = 0;
1867 }
1868 fip->flogi_oxid = FC_XID_UNKNOWN;
fdb068c6 1869 mutex_unlock(&fip->ctlr_mutex);
386309ce 1870 fc_fcoe_set_mac(fr_cb(fp)->granted_mac, fh->fh_d_id);
97c8389d
JE
1871 } else if (op == ELS_FLOGI && fh->fh_r_ctl == FC_RCTL_ELS_REQ && sa) {
1872 /*
1873 * Save source MAC for point-to-point responses.
1874 */
fdb068c6 1875 mutex_lock(&fip->ctlr_mutex);
97c8389d
JE
1876 if (fip->state == FIP_ST_AUTO || fip->state == FIP_ST_NON_FIP) {
1877 memcpy(fip->dest_addr, sa, ETH_ALEN);
1878 fip->map_dest = 0;
e49bf614
JE
1879 if (fip->state == FIP_ST_AUTO)
1880 LIBFCOE_FIP_DBG(fip, "received non-FIP FLOGI. "
1881 "Setting non-FIP mode\n");
9b651da9 1882 fcoe_ctlr_set_state(fip, FIP_ST_NON_FIP);
97c8389d 1883 }
fdb068c6 1884 mutex_unlock(&fip->ctlr_mutex);
97c8389d
JE
1885 }
1886 return 0;
1887}
1888EXPORT_SYMBOL(fcoe_ctlr_recv_flogi);
1889
5e80f7f7 1890/**
70b51aab
RL
1891 * fcoe_wwn_from_mac() - Converts a 48-bit IEEE MAC address to a 64-bit FC WWN
1892 * @mac: The MAC address to convert
1893 * @scheme: The scheme to use when converting
1894 * @port: The port indicator for converting
5e80f7f7
VD
1895 *
1896 * Returns: u64 fc world wide name
1897 */
1898u64 fcoe_wwn_from_mac(unsigned char mac[MAX_ADDR_LEN],
1899 unsigned int scheme, unsigned int port)
1900{
1901 u64 wwn;
1902 u64 host_mac;
1903
1904 /* The MAC is in NO, so flip only the low 48 bits */
1905 host_mac = ((u64) mac[0] << 40) |
1906 ((u64) mac[1] << 32) |
1907 ((u64) mac[2] << 24) |
1908 ((u64) mac[3] << 16) |
1909 ((u64) mac[4] << 8) |
1910 (u64) mac[5];
1911
1912 WARN_ON(host_mac >= (1ULL << 48));
1913 wwn = host_mac | ((u64) scheme << 60);
1914 switch (scheme) {
1915 case 1:
1916 WARN_ON(port != 0);
1917 break;
1918 case 2:
1919 WARN_ON(port >= 0xfff);
1920 wwn |= (u64) port << 48;
1921 break;
1922 default:
1923 WARN_ON(1);
1924 break;
1925 }
1926
1927 return wwn;
1928}
1929EXPORT_SYMBOL_GPL(fcoe_wwn_from_mac);
1930
e10f8c66
JE
1931/**
1932 * fcoe_ctlr_rport() - return the fcoe_rport for a given fc_rport_priv
1933 * @rdata: libfc remote port
1934 */
1935static inline struct fcoe_rport *fcoe_ctlr_rport(struct fc_rport_priv *rdata)
1936{
1937 return (struct fcoe_rport *)(rdata + 1);
1938}
1939
1940/**
1941 * fcoe_ctlr_vn_send() - Send a FIP VN2VN Probe Request or Reply.
1942 * @fip: The FCoE controller
1943 * @sub: sub-opcode for probe request, reply, or advertisement.
1944 * @dest: The destination Ethernet MAC address
1945 * @min_len: minimum size of the Ethernet payload to be sent
1946 */
1947static void fcoe_ctlr_vn_send(struct fcoe_ctlr *fip,
1948 enum fip_vn2vn_subcode sub,
1949 const u8 *dest, size_t min_len)
1950{
1951 struct sk_buff *skb;
1952 struct fip_frame {
1953 struct ethhdr eth;
1954 struct fip_header fip;
1955 struct fip_mac_desc mac;
1956 struct fip_wwn_desc wwnn;
1957 struct fip_vn_desc vn;
0095a921 1958 } __packed * frame;
e10f8c66
JE
1959 struct fip_fc4_feat *ff;
1960 struct fip_size_desc *size;
1961 u32 fcp_feat;
1962 size_t len;
1963 size_t dlen;
1964
1965 len = sizeof(*frame);
1966 dlen = 0;
1967 if (sub == FIP_SC_VN_CLAIM_NOTIFY || sub == FIP_SC_VN_CLAIM_REP) {
1968 dlen = sizeof(struct fip_fc4_feat) +
1969 sizeof(struct fip_size_desc);
1970 len += dlen;
1971 }
1972 dlen += sizeof(frame->mac) + sizeof(frame->wwnn) + sizeof(frame->vn);
1973 len = max(len, min_len + sizeof(struct ethhdr));
1974
1975 skb = dev_alloc_skb(len);
1976 if (!skb)
1977 return;
1978
1979 frame = (struct fip_frame *)skb->data;
1980 memset(frame, 0, len);
1981 memcpy(frame->eth.h_dest, dest, ETH_ALEN);
d227f029
YZ
1982
1983 if (sub == FIP_SC_VN_BEACON) {
1984 hton24(frame->eth.h_source, FIP_VN_FC_MAP);
1985 hton24(frame->eth.h_source + 3, fip->port_id);
1986 } else {
1987 memcpy(frame->eth.h_source, fip->ctl_src_addr, ETH_ALEN);
1988 }
e10f8c66
JE
1989 frame->eth.h_proto = htons(ETH_P_FIP);
1990
1991 frame->fip.fip_ver = FIP_VER_ENCAPS(FIP_VER);
1992 frame->fip.fip_op = htons(FIP_OP_VN2VN);
1993 frame->fip.fip_subcode = sub;
1994 frame->fip.fip_dl_len = htons(dlen / FIP_BPW);
1995
1996 frame->mac.fd_desc.fip_dtype = FIP_DT_MAC;
1997 frame->mac.fd_desc.fip_dlen = sizeof(frame->mac) / FIP_BPW;
1998 memcpy(frame->mac.fd_mac, fip->ctl_src_addr, ETH_ALEN);
1999
2000 frame->wwnn.fd_desc.fip_dtype = FIP_DT_NAME;
2001 frame->wwnn.fd_desc.fip_dlen = sizeof(frame->wwnn) / FIP_BPW;
2002 put_unaligned_be64(fip->lp->wwnn, &frame->wwnn.fd_wwn);
2003
2004 frame->vn.fd_desc.fip_dtype = FIP_DT_VN_ID;
2005 frame->vn.fd_desc.fip_dlen = sizeof(frame->vn) / FIP_BPW;
2006 hton24(frame->vn.fd_mac, FIP_VN_FC_MAP);
2007 hton24(frame->vn.fd_mac + 3, fip->port_id);
2008 hton24(frame->vn.fd_fc_id, fip->port_id);
2009 put_unaligned_be64(fip->lp->wwpn, &frame->vn.fd_wwpn);
2010
2011 /*
2012 * For claims, add FC-4 features.
2013 * TBD: Add interface to get fc-4 types and features from libfc.
2014 */
2015 if (sub == FIP_SC_VN_CLAIM_NOTIFY || sub == FIP_SC_VN_CLAIM_REP) {
2016 ff = (struct fip_fc4_feat *)(frame + 1);
2017 ff->fd_desc.fip_dtype = FIP_DT_FC4F;
2018 ff->fd_desc.fip_dlen = sizeof(*ff) / FIP_BPW;
2019 ff->fd_fts = fip->lp->fcts;
2020
2021 fcp_feat = 0;
2022 if (fip->lp->service_params & FCP_SPPF_INIT_FCN)
2023 fcp_feat |= FCP_FEAT_INIT;
2024 if (fip->lp->service_params & FCP_SPPF_TARG_FCN)
2025 fcp_feat |= FCP_FEAT_TARG;
2026 fcp_feat <<= (FC_TYPE_FCP * 4) % 32;
2027 ff->fd_ff.fd_feat[FC_TYPE_FCP * 4 / 32] = htonl(fcp_feat);
2028
2029 size = (struct fip_size_desc *)(ff + 1);
2030 size->fd_desc.fip_dtype = FIP_DT_FCOE_SIZE;
2031 size->fd_desc.fip_dlen = sizeof(*size) / FIP_BPW;
2032 size->fd_size = htons(fcoe_ctlr_fcoe_size(fip));
2033 }
2034
2035 skb_put(skb, len);
2036 skb->protocol = htons(ETH_P_FIP);
6f6c2aa3 2037 skb->priority = fip->priority;
e10f8c66
JE
2038 skb_reset_mac_header(skb);
2039 skb_reset_network_header(skb);
2040
2041 fip->send(fip, skb);
2042}
2043
2044/**
2045 * fcoe_ctlr_vn_rport_callback - Event handler for rport events.
2046 * @lport: The lport which is receiving the event
2047 * @rdata: remote port private data
25985edc 2048 * @event: The event that occurred
e10f8c66
JE
2049 *
2050 * Locking Note: The rport lock must not be held when calling this function.
2051 */
2052static void fcoe_ctlr_vn_rport_callback(struct fc_lport *lport,
2053 struct fc_rport_priv *rdata,
2054 enum fc_rport_event event)
2055{
2056 struct fcoe_ctlr *fip = lport->disc.priv;
2057 struct fcoe_rport *frport = fcoe_ctlr_rport(rdata);
2058
2059 LIBFCOE_FIP_DBG(fip, "vn_rport_callback %x event %d\n",
2060 rdata->ids.port_id, event);
2061
2062 mutex_lock(&fip->ctlr_mutex);
2063 switch (event) {
2064 case RPORT_EV_READY:
2065 frport->login_count = 0;
2066 break;
2067 case RPORT_EV_LOGO:
2068 case RPORT_EV_FAILED:
2069 case RPORT_EV_STOP:
2070 frport->login_count++;
2071 if (frport->login_count > FCOE_CTLR_VN2VN_LOGIN_LIMIT) {
2072 LIBFCOE_FIP_DBG(fip,
2073 "rport FLOGI limited port_id %6.6x\n",
2074 rdata->ids.port_id);
2075 lport->tt.rport_logoff(rdata);
2076 }
2077 break;
2078 default:
2079 break;
2080 }
2081 mutex_unlock(&fip->ctlr_mutex);
2082}
2083
2084static struct fc_rport_operations fcoe_ctlr_vn_rport_ops = {
2085 .event_callback = fcoe_ctlr_vn_rport_callback,
2086};
2087
2088/**
2089 * fcoe_ctlr_disc_stop_locked() - stop discovery in VN2VN mode
2090 * @fip: The FCoE controller
2091 *
2092 * Called with ctlr_mutex held.
2093 */
2094static void fcoe_ctlr_disc_stop_locked(struct fc_lport *lport)
2095{
d17efa00
MR
2096 struct fc_rport_priv *rdata;
2097
e10f8c66 2098 mutex_lock(&lport->disc.disc_mutex);
d17efa00
MR
2099 list_for_each_entry_rcu(rdata, &lport->disc.rports, peers)
2100 lport->tt.rport_logoff(rdata);
e10f8c66
JE
2101 lport->disc.disc_callback = NULL;
2102 mutex_unlock(&lport->disc.disc_mutex);
2103}
2104
2105/**
2106 * fcoe_ctlr_disc_stop() - stop discovery in VN2VN mode
2107 * @fip: The FCoE controller
2108 *
2109 * Called through the local port template for discovery.
2110 * Called without the ctlr_mutex held.
2111 */
2112static void fcoe_ctlr_disc_stop(struct fc_lport *lport)
2113{
2114 struct fcoe_ctlr *fip = lport->disc.priv;
2115
2116 mutex_lock(&fip->ctlr_mutex);
2117 fcoe_ctlr_disc_stop_locked(lport);
2118 mutex_unlock(&fip->ctlr_mutex);
2119}
2120
2121/**
2122 * fcoe_ctlr_disc_stop_final() - stop discovery for shutdown in VN2VN mode
2123 * @fip: The FCoE controller
2124 *
2125 * Called through the local port template for discovery.
2126 * Called without the ctlr_mutex held.
2127 */
2128static void fcoe_ctlr_disc_stop_final(struct fc_lport *lport)
2129{
2130 fcoe_ctlr_disc_stop(lport);
2131 lport->tt.rport_flush_queue();
2132 synchronize_rcu();
2133}
2134
2135/**
2136 * fcoe_ctlr_vn_restart() - VN2VN probe restart with new port_id
2137 * @fip: The FCoE controller
2138 *
2139 * Called with fcoe_ctlr lock held.
2140 */
2141static void fcoe_ctlr_vn_restart(struct fcoe_ctlr *fip)
2142{
2143 unsigned long wait;
2144 u32 port_id;
2145
2146 fcoe_ctlr_disc_stop_locked(fip->lp);
2147
2148 /*
2149 * Get proposed port ID.
2150 * If this is the first try after link up, use any previous port_id.
2151 * If there was none, use the low bits of the port_name.
2152 * On subsequent tries, get the next random one.
2153 * Don't use reserved IDs, use another non-zero value, just as random.
2154 */
2155 port_id = fip->port_id;
2156 if (fip->probe_tries)
496f2f93 2157 port_id = prandom_u32_state(&fip->rnd_state) & 0xffff;
e10f8c66
JE
2158 else if (!port_id)
2159 port_id = fip->lp->wwpn & 0xffff;
2160 if (!port_id || port_id == 0xffff)
2161 port_id = 1;
2162 fip->port_id = port_id;
2163
2164 if (fip->probe_tries < FIP_VN_RLIM_COUNT) {
2165 fip->probe_tries++;
3b60a64f 2166 wait = prandom_u32() % FIP_VN_PROBE_WAIT;
e10f8c66
JE
2167 } else
2168 wait = FIP_VN_RLIM_INT;
2169 mod_timer(&fip->timer, jiffies + msecs_to_jiffies(wait));
2170 fcoe_ctlr_set_state(fip, FIP_ST_VNMP_START);
2171}
2172
2173/**
2174 * fcoe_ctlr_vn_start() - Start in VN2VN mode
2175 * @fip: The FCoE controller
2176 *
2177 * Called with fcoe_ctlr lock held.
2178 */
2179static void fcoe_ctlr_vn_start(struct fcoe_ctlr *fip)
2180{
2181 fip->probe_tries = 0;
496f2f93 2182 prandom_seed_state(&fip->rnd_state, fip->lp->wwpn);
e10f8c66
JE
2183 fcoe_ctlr_vn_restart(fip);
2184}
2185
2186/**
2187 * fcoe_ctlr_vn_parse - parse probe request or response
2188 * @fip: The FCoE controller
2189 * @skb: incoming packet
2190 * @rdata: buffer for resulting parsed VN entry plus fcoe_rport
2191 *
2192 * Returns non-zero error number on error.
2193 * Does not consume the packet.
2194 */
2195static int fcoe_ctlr_vn_parse(struct fcoe_ctlr *fip,
2196 struct sk_buff *skb,
2197 struct fc_rport_priv *rdata)
2198{
2199 struct fip_header *fiph;
2200 struct fip_desc *desc = NULL;
2201 struct fip_mac_desc *macd = NULL;
2202 struct fip_wwn_desc *wwn = NULL;
2203 struct fip_vn_desc *vn = NULL;
2204 struct fip_size_desc *size = NULL;
2205 struct fcoe_rport *frport;
2206 size_t rlen;
2207 size_t dlen;
2208 u32 desc_mask = 0;
2209 u32 dtype;
2210 u8 sub;
2211
2212 memset(rdata, 0, sizeof(*rdata) + sizeof(*frport));
2213 frport = fcoe_ctlr_rport(rdata);
2214
2215 fiph = (struct fip_header *)skb->data;
2216 frport->flags = ntohs(fiph->fip_flags);
2217
2218 sub = fiph->fip_subcode;
2219 switch (sub) {
2220 case FIP_SC_VN_PROBE_REQ:
2221 case FIP_SC_VN_PROBE_REP:
2222 case FIP_SC_VN_BEACON:
2223 desc_mask = BIT(FIP_DT_MAC) | BIT(FIP_DT_NAME) |
2224 BIT(FIP_DT_VN_ID);
2225 break;
2226 case FIP_SC_VN_CLAIM_NOTIFY:
2227 case FIP_SC_VN_CLAIM_REP:
2228 desc_mask = BIT(FIP_DT_MAC) | BIT(FIP_DT_NAME) |
2229 BIT(FIP_DT_VN_ID) | BIT(FIP_DT_FC4F) |
2230 BIT(FIP_DT_FCOE_SIZE);
2231 break;
2232 default:
2233 LIBFCOE_FIP_DBG(fip, "vn_parse unknown subcode %u\n", sub);
2234 return -EINVAL;
2235 }
2236
2237 rlen = ntohs(fiph->fip_dl_len) * 4;
2238 if (rlen + sizeof(*fiph) > skb->len)
2239 return -EINVAL;
2240
2241 desc = (struct fip_desc *)(fiph + 1);
2242 while (rlen > 0) {
2243 dlen = desc->fip_dlen * FIP_BPW;
2244 if (dlen < sizeof(*desc) || dlen > rlen)
2245 return -EINVAL;
2246
2247 dtype = desc->fip_dtype;
2248 if (dtype < 32) {
2249 if (!(desc_mask & BIT(dtype))) {
2250 LIBFCOE_FIP_DBG(fip,
2251 "unexpected or duplicated desc "
2252 "desc type %u in "
2253 "FIP VN2VN subtype %u\n",
2254 dtype, sub);
2255 return -EINVAL;
2256 }
2257 desc_mask &= ~BIT(dtype);
2258 }
2259
2260 switch (dtype) {
2261 case FIP_DT_MAC:
2262 if (dlen != sizeof(struct fip_mac_desc))
2263 goto len_err;
2264 macd = (struct fip_mac_desc *)desc;
2265 if (!is_valid_ether_addr(macd->fd_mac)) {
2266 LIBFCOE_FIP_DBG(fip,
2267 "Invalid MAC addr %pM in FIP VN2VN\n",
2268 macd->fd_mac);
2269 return -EINVAL;
2270 }
2271 memcpy(frport->enode_mac, macd->fd_mac, ETH_ALEN);
2272 break;
2273 case FIP_DT_NAME:
2274 if (dlen != sizeof(struct fip_wwn_desc))
2275 goto len_err;
2276 wwn = (struct fip_wwn_desc *)desc;
2277 rdata->ids.node_name = get_unaligned_be64(&wwn->fd_wwn);
2278 break;
2279 case FIP_DT_VN_ID:
2280 if (dlen != sizeof(struct fip_vn_desc))
2281 goto len_err;
2282 vn = (struct fip_vn_desc *)desc;
2283 memcpy(frport->vn_mac, vn->fd_mac, ETH_ALEN);
2284 rdata->ids.port_id = ntoh24(vn->fd_fc_id);
2285 rdata->ids.port_name = get_unaligned_be64(&vn->fd_wwpn);
2286 break;
2287 case FIP_DT_FC4F:
2288 if (dlen != sizeof(struct fip_fc4_feat))
2289 goto len_err;
2290 break;
2291 case FIP_DT_FCOE_SIZE:
2292 if (dlen != sizeof(struct fip_size_desc))
2293 goto len_err;
2294 size = (struct fip_size_desc *)desc;
2295 frport->fcoe_len = ntohs(size->fd_size);
2296 break;
2297 default:
2298 LIBFCOE_FIP_DBG(fip, "unexpected descriptor type %x "
2299 "in FIP probe\n", dtype);
2300 /* standard says ignore unknown descriptors >= 128 */
2301 if (dtype < FIP_DT_VENDOR_BASE)
2302 return -EINVAL;
2303 break;
2304 }
2305 desc = (struct fip_desc *)((char *)desc + dlen);
2306 rlen -= dlen;
2307 }
2308 return 0;
2309
2310len_err:
2311 LIBFCOE_FIP_DBG(fip, "FIP length error in descriptor type %x len %zu\n",
2312 dtype, dlen);
2313 return -EINVAL;
2314}
2315
2316/**
2317 * fcoe_ctlr_vn_send_claim() - send multicast FIP VN2VN Claim Notification.
2318 * @fip: The FCoE controller
2319 *
2320 * Called with ctlr_mutex held.
2321 */
2322static void fcoe_ctlr_vn_send_claim(struct fcoe_ctlr *fip)
2323{
2324 fcoe_ctlr_vn_send(fip, FIP_SC_VN_CLAIM_NOTIFY, fcoe_all_vn2vn, 0);
2325 fip->sol_time = jiffies;
2326}
2327
2328/**
2329 * fcoe_ctlr_vn_probe_req() - handle incoming VN2VN probe request.
2330 * @fip: The FCoE controller
2331 * @rdata: parsed remote port with frport from the probe request
2332 *
2333 * Called with ctlr_mutex held.
2334 */
2335static void fcoe_ctlr_vn_probe_req(struct fcoe_ctlr *fip,
2336 struct fc_rport_priv *rdata)
2337{
2338 struct fcoe_rport *frport = fcoe_ctlr_rport(rdata);
2339
2340 if (rdata->ids.port_id != fip->port_id)
2341 return;
2342
2343 switch (fip->state) {
2344 case FIP_ST_VNMP_CLAIM:
2345 case FIP_ST_VNMP_UP:
2346 fcoe_ctlr_vn_send(fip, FIP_SC_VN_PROBE_REP,
2347 frport->enode_mac, 0);
2348 break;
2349 case FIP_ST_VNMP_PROBE1:
2350 case FIP_ST_VNMP_PROBE2:
2351 /*
2352 * Decide whether to reply to the Probe.
2353 * Our selected address is never a "recorded" one, so
2354 * only reply if our WWPN is greater and the
2355 * Probe's REC bit is not set.
2356 * If we don't reply, we will change our address.
2357 */
2358 if (fip->lp->wwpn > rdata->ids.port_name &&
2359 !(frport->flags & FIP_FL_REC_OR_P2P)) {
2360 fcoe_ctlr_vn_send(fip, FIP_SC_VN_PROBE_REP,
2361 frport->enode_mac, 0);
2362 break;
2363 }
2364 /* fall through */
2365 case FIP_ST_VNMP_START:
2366 fcoe_ctlr_vn_restart(fip);
2367 break;
2368 default:
2369 break;
2370 }
2371}
2372
2373/**
2374 * fcoe_ctlr_vn_probe_reply() - handle incoming VN2VN probe reply.
2375 * @fip: The FCoE controller
2376 * @rdata: parsed remote port with frport from the probe request
2377 *
2378 * Called with ctlr_mutex held.
2379 */
2380static void fcoe_ctlr_vn_probe_reply(struct fcoe_ctlr *fip,
2381 struct fc_rport_priv *rdata)
2382{
2383 if (rdata->ids.port_id != fip->port_id)
2384 return;
2385 switch (fip->state) {
2386 case FIP_ST_VNMP_START:
2387 case FIP_ST_VNMP_PROBE1:
2388 case FIP_ST_VNMP_PROBE2:
2389 case FIP_ST_VNMP_CLAIM:
2390 fcoe_ctlr_vn_restart(fip);
2391 break;
2392 case FIP_ST_VNMP_UP:
2393 fcoe_ctlr_vn_send_claim(fip);
2394 break;
2395 default:
2396 break;
2397 }
2398}
2399
2400/**
2401 * fcoe_ctlr_vn_add() - Add a VN2VN entry to the list, based on a claim reply.
2402 * @fip: The FCoE controller
2403 * @new: newly-parsed remote port with frport as a template for new rdata
2404 *
2405 * Called with ctlr_mutex held.
2406 */
2407static void fcoe_ctlr_vn_add(struct fcoe_ctlr *fip, struct fc_rport_priv *new)
2408{
2409 struct fc_lport *lport = fip->lp;
2410 struct fc_rport_priv *rdata;
2411 struct fc_rport_identifiers *ids;
2412 struct fcoe_rport *frport;
2413 u32 port_id;
2414
2415 port_id = new->ids.port_id;
2416 if (port_id == fip->port_id)
2417 return;
2418
2419 mutex_lock(&lport->disc.disc_mutex);
2420 rdata = lport->tt.rport_create(lport, port_id);
2421 if (!rdata) {
2422 mutex_unlock(&lport->disc.disc_mutex);
2423 return;
2424 }
2425
2426 rdata->ops = &fcoe_ctlr_vn_rport_ops;
2427 rdata->disc_id = lport->disc.disc_id;
2428
2429 ids = &rdata->ids;
2430 if ((ids->port_name != -1 && ids->port_name != new->ids.port_name) ||
2431 (ids->node_name != -1 && ids->node_name != new->ids.node_name))
2432 lport->tt.rport_logoff(rdata);
2433 ids->port_name = new->ids.port_name;
2434 ids->node_name = new->ids.node_name;
2435 mutex_unlock(&lport->disc.disc_mutex);
2436
2437 frport = fcoe_ctlr_rport(rdata);
2438 LIBFCOE_FIP_DBG(fip, "vn_add rport %6.6x %s\n",
2439 port_id, frport->fcoe_len ? "old" : "new");
2440 *frport = *fcoe_ctlr_rport(new);
2441 frport->time = 0;
2442}
2443
2444/**
2445 * fcoe_ctlr_vn_lookup() - Find VN remote port's MAC address
2446 * @fip: The FCoE controller
2447 * @port_id: The port_id of the remote VN_node
2448 * @mac: buffer which will hold the VN_NODE destination MAC address, if found.
2449 *
2450 * Returns non-zero error if no remote port found.
2451 */
2452static int fcoe_ctlr_vn_lookup(struct fcoe_ctlr *fip, u32 port_id, u8 *mac)
2453{
2454 struct fc_lport *lport = fip->lp;
2455 struct fc_rport_priv *rdata;
2456 struct fcoe_rport *frport;
2457 int ret = -1;
2458
2459 rcu_read_lock();
2460 rdata = lport->tt.rport_lookup(lport, port_id);
2461 if (rdata) {
2462 frport = fcoe_ctlr_rport(rdata);
2463 memcpy(mac, frport->enode_mac, ETH_ALEN);
2464 ret = 0;
2465 }
2466 rcu_read_unlock();
2467 return ret;
2468}
2469
2470/**
2471 * fcoe_ctlr_vn_claim_notify() - handle received FIP VN2VN Claim Notification
2472 * @fip: The FCoE controller
2473 * @new: newly-parsed remote port with frport as a template for new rdata
2474 *
2475 * Called with ctlr_mutex held.
2476 */
2477static void fcoe_ctlr_vn_claim_notify(struct fcoe_ctlr *fip,
2478 struct fc_rport_priv *new)
2479{
2480 struct fcoe_rport *frport = fcoe_ctlr_rport(new);
2481
2482 if (frport->flags & FIP_FL_REC_OR_P2P) {
2483 fcoe_ctlr_vn_send(fip, FIP_SC_VN_PROBE_REQ, fcoe_all_vn2vn, 0);
2484 return;
2485 }
2486 switch (fip->state) {
2487 case FIP_ST_VNMP_START:
2488 case FIP_ST_VNMP_PROBE1:
2489 case FIP_ST_VNMP_PROBE2:
2490 if (new->ids.port_id == fip->port_id)
2491 fcoe_ctlr_vn_restart(fip);
2492 break;
2493 case FIP_ST_VNMP_CLAIM:
2494 case FIP_ST_VNMP_UP:
2495 if (new->ids.port_id == fip->port_id) {
2496 if (new->ids.port_name > fip->lp->wwpn) {
2497 fcoe_ctlr_vn_restart(fip);
2498 break;
2499 }
2500 fcoe_ctlr_vn_send_claim(fip);
2501 break;
2502 }
2503 fcoe_ctlr_vn_send(fip, FIP_SC_VN_CLAIM_REP, frport->enode_mac,
2504 min((u32)frport->fcoe_len,
2505 fcoe_ctlr_fcoe_size(fip)));
2506 fcoe_ctlr_vn_add(fip, new);
2507 break;
2508 default:
2509 break;
2510 }
2511}
2512
2513/**
2514 * fcoe_ctlr_vn_claim_resp() - handle received Claim Response
2515 * @fip: The FCoE controller that received the frame
2516 * @new: newly-parsed remote port with frport from the Claim Response
2517 *
2518 * Called with ctlr_mutex held.
2519 */
2520static void fcoe_ctlr_vn_claim_resp(struct fcoe_ctlr *fip,
2521 struct fc_rport_priv *new)
2522{
2523 LIBFCOE_FIP_DBG(fip, "claim resp from from rport %x - state %s\n",
2524 new->ids.port_id, fcoe_ctlr_state(fip->state));
2525 if (fip->state == FIP_ST_VNMP_UP || fip->state == FIP_ST_VNMP_CLAIM)
2526 fcoe_ctlr_vn_add(fip, new);
2527}
2528
2529/**
2530 * fcoe_ctlr_vn_beacon() - handle received beacon.
2531 * @fip: The FCoE controller that received the frame
2532 * @new: newly-parsed remote port with frport from the Beacon
2533 *
2534 * Called with ctlr_mutex held.
2535 */
2536static void fcoe_ctlr_vn_beacon(struct fcoe_ctlr *fip,
2537 struct fc_rport_priv *new)
2538{
2539 struct fc_lport *lport = fip->lp;
2540 struct fc_rport_priv *rdata;
2541 struct fcoe_rport *frport;
2542
2543 frport = fcoe_ctlr_rport(new);
2544 if (frport->flags & FIP_FL_REC_OR_P2P) {
2545 fcoe_ctlr_vn_send(fip, FIP_SC_VN_PROBE_REQ, fcoe_all_vn2vn, 0);
2546 return;
2547 }
2548 mutex_lock(&lport->disc.disc_mutex);
2549 rdata = lport->tt.rport_lookup(lport, new->ids.port_id);
2550 if (rdata)
2551 kref_get(&rdata->kref);
2552 mutex_unlock(&lport->disc.disc_mutex);
2553 if (rdata) {
2554 if (rdata->ids.node_name == new->ids.node_name &&
2555 rdata->ids.port_name == new->ids.port_name) {
2556 frport = fcoe_ctlr_rport(rdata);
2557 if (!frport->time && fip->state == FIP_ST_VNMP_UP)
2558 lport->tt.rport_login(rdata);
2559 frport->time = jiffies;
2560 }
2561 kref_put(&rdata->kref, lport->tt.rport_destroy);
2562 return;
2563 }
2564 if (fip->state != FIP_ST_VNMP_UP)
2565 return;
2566
2567 /*
2568 * Beacon from a new neighbor.
2569 * Send a claim notify if one hasn't been sent recently.
2570 * Don't add the neighbor yet.
2571 */
2572 LIBFCOE_FIP_DBG(fip, "beacon from new rport %x. sending claim notify\n",
2573 new->ids.port_id);
2574 if (time_after(jiffies,
2575 fip->sol_time + msecs_to_jiffies(FIP_VN_ANN_WAIT)))
2576 fcoe_ctlr_vn_send_claim(fip);
2577}
2578
2579/**
2580 * fcoe_ctlr_vn_age() - Check for VN_ports without recent beacons
2581 * @fip: The FCoE controller
2582 *
2583 * Called with ctlr_mutex held.
2584 * Called only in state FIP_ST_VNMP_UP.
2585 * Returns the soonest time for next age-out or a time far in the future.
2586 */
2587static unsigned long fcoe_ctlr_vn_age(struct fcoe_ctlr *fip)
2588{
2589 struct fc_lport *lport = fip->lp;
2590 struct fc_rport_priv *rdata;
2591 struct fcoe_rport *frport;
2592 unsigned long next_time;
2593 unsigned long deadline;
2594
2595 next_time = jiffies + msecs_to_jiffies(FIP_VN_BEACON_INT * 10);
2596 mutex_lock(&lport->disc.disc_mutex);
2597 list_for_each_entry_rcu(rdata, &lport->disc.rports, peers) {
2598 frport = fcoe_ctlr_rport(rdata);
2599 if (!frport->time)
2600 continue;
2601 deadline = frport->time +
2602 msecs_to_jiffies(FIP_VN_BEACON_INT * 25 / 10);
2603 if (time_after_eq(jiffies, deadline)) {
2604 frport->time = 0;
2605 LIBFCOE_FIP_DBG(fip,
2606 "port %16.16llx fc_id %6.6x beacon expired\n",
2607 rdata->ids.port_name, rdata->ids.port_id);
2608 lport->tt.rport_logoff(rdata);
2609 } else if (time_before(deadline, next_time))
2610 next_time = deadline;
2611 }
2612 mutex_unlock(&lport->disc.disc_mutex);
2613 return next_time;
2614}
2615
2616/**
2617 * fcoe_ctlr_vn_recv() - Receive a FIP frame
2618 * @fip: The FCoE controller that received the frame
2619 * @skb: The received FIP frame
2620 *
2621 * Returns non-zero if the frame is dropped.
2622 * Always consumes the frame.
2623 */
2624static int fcoe_ctlr_vn_recv(struct fcoe_ctlr *fip, struct sk_buff *skb)
2625{
2626 struct fip_header *fiph;
2627 enum fip_vn2vn_subcode sub;
2dc02ee5 2628 struct {
e10f8c66
JE
2629 struct fc_rport_priv rdata;
2630 struct fcoe_rport frport;
2631 } buf;
2632 int rc;
2633
2634 fiph = (struct fip_header *)skb->data;
2635 sub = fiph->fip_subcode;
2636
2637 rc = fcoe_ctlr_vn_parse(fip, skb, &buf.rdata);
2638 if (rc) {
2639 LIBFCOE_FIP_DBG(fip, "vn_recv vn_parse error %d\n", rc);
2640 goto drop;
2641 }
2642
2643 mutex_lock(&fip->ctlr_mutex);
2644 switch (sub) {
2645 case FIP_SC_VN_PROBE_REQ:
2646 fcoe_ctlr_vn_probe_req(fip, &buf.rdata);
2647 break;
2648 case FIP_SC_VN_PROBE_REP:
2649 fcoe_ctlr_vn_probe_reply(fip, &buf.rdata);
2650 break;
2651 case FIP_SC_VN_CLAIM_NOTIFY:
2652 fcoe_ctlr_vn_claim_notify(fip, &buf.rdata);
2653 break;
2654 case FIP_SC_VN_CLAIM_REP:
2655 fcoe_ctlr_vn_claim_resp(fip, &buf.rdata);
2656 break;
2657 case FIP_SC_VN_BEACON:
2658 fcoe_ctlr_vn_beacon(fip, &buf.rdata);
2659 break;
2660 default:
2661 LIBFCOE_FIP_DBG(fip, "vn_recv unknown subcode %d\n", sub);
2662 rc = -1;
2663 break;
2664 }
2665 mutex_unlock(&fip->ctlr_mutex);
2666drop:
2667 kfree_skb(skb);
2668 return rc;
2669}
2670
2671/**
2672 * fcoe_ctlr_disc_recv - discovery receive handler for VN2VN mode.
92261156
JE
2673 * @lport: The local port
2674 * @fp: The received frame
e10f8c66
JE
2675 *
2676 * This should never be called since we don't see RSCNs or other
2677 * fabric-generated ELSes.
2678 */
92261156 2679static void fcoe_ctlr_disc_recv(struct fc_lport *lport, struct fc_frame *fp)
e10f8c66
JE
2680{
2681 struct fc_seq_els_data rjt_data;
2682
e10f8c66
JE
2683 rjt_data.reason = ELS_RJT_UNSUP;
2684 rjt_data.explan = ELS_EXPL_NONE;
92261156 2685 lport->tt.seq_els_rsp_send(fp, ELS_LS_RJT, &rjt_data);
e10f8c66
JE
2686 fc_frame_free(fp);
2687}
2688
2689/**
2690 * fcoe_ctlr_disc_recv - start discovery for VN2VN mode.
2691 * @fip: The FCoE controller
2692 *
2693 * This sets a flag indicating that remote ports should be created
2694 * and started for the peers we discover. We use the disc_callback
2695 * pointer as that flag. Peers already discovered are created here.
2696 *
2697 * The lport lock is held during this call. The callback must be done
2698 * later, without holding either the lport or discovery locks.
2699 * The fcoe_ctlr lock may also be held during this call.
2700 */
2701static void fcoe_ctlr_disc_start(void (*callback)(struct fc_lport *,
2702 enum fc_disc_event),
2703 struct fc_lport *lport)
2704{
2705 struct fc_disc *disc = &lport->disc;
2706 struct fcoe_ctlr *fip = disc->priv;
2707
2708 mutex_lock(&disc->disc_mutex);
2709 disc->disc_callback = callback;
2710 disc->disc_id = (disc->disc_id + 2) | 1;
2711 disc->pending = 1;
2712 schedule_work(&fip->timer_work);
2713 mutex_unlock(&disc->disc_mutex);
2714}
2715
2716/**
2717 * fcoe_ctlr_vn_disc() - report FIP VN_port discovery results after claim state.
2718 * @fip: The FCoE controller
2719 *
2720 * Starts the FLOGI and PLOGI login process to each discovered rport for which
2721 * we've received at least one beacon.
2722 * Performs the discovery complete callback.
2723 */
2724static void fcoe_ctlr_vn_disc(struct fcoe_ctlr *fip)
2725{
2726 struct fc_lport *lport = fip->lp;
2727 struct fc_disc *disc = &lport->disc;
2728 struct fc_rport_priv *rdata;
2729 struct fcoe_rport *frport;
2730 void (*callback)(struct fc_lport *, enum fc_disc_event);
2731
2732 mutex_lock(&disc->disc_mutex);
2733 callback = disc->pending ? disc->disc_callback : NULL;
2734 disc->pending = 0;
2735 list_for_each_entry_rcu(rdata, &disc->rports, peers) {
2736 frport = fcoe_ctlr_rport(rdata);
2737 if (frport->time)
2738 lport->tt.rport_login(rdata);
2739 }
2740 mutex_unlock(&disc->disc_mutex);
2741 if (callback)
2742 callback(lport, DISC_EV_SUCCESS);
2743}
2744
2745/**
2746 * fcoe_ctlr_vn_timeout - timer work function for VN2VN mode.
2747 * @fip: The FCoE controller
2748 */
2749static void fcoe_ctlr_vn_timeout(struct fcoe_ctlr *fip)
2750{
2751 unsigned long next_time;
2752 u8 mac[ETH_ALEN];
2753 u32 new_port_id = 0;
2754
2755 mutex_lock(&fip->ctlr_mutex);
2756 switch (fip->state) {
2757 case FIP_ST_VNMP_START:
2758 fcoe_ctlr_set_state(fip, FIP_ST_VNMP_PROBE1);
2759 fcoe_ctlr_vn_send(fip, FIP_SC_VN_PROBE_REQ, fcoe_all_vn2vn, 0);
2760 next_time = jiffies + msecs_to_jiffies(FIP_VN_PROBE_WAIT);
2761 break;
2762 case FIP_ST_VNMP_PROBE1:
2763 fcoe_ctlr_set_state(fip, FIP_ST_VNMP_PROBE2);
2764 fcoe_ctlr_vn_send(fip, FIP_SC_VN_PROBE_REQ, fcoe_all_vn2vn, 0);
2765 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT);
2766 break;
2767 case FIP_ST_VNMP_PROBE2:
2768 fcoe_ctlr_set_state(fip, FIP_ST_VNMP_CLAIM);
2769 new_port_id = fip->port_id;
2770 hton24(mac, FIP_VN_FC_MAP);
2771 hton24(mac + 3, new_port_id);
cd229e42 2772 fcoe_ctlr_map_dest(fip);
e10f8c66
JE
2773 fip->update_mac(fip->lp, mac);
2774 fcoe_ctlr_vn_send_claim(fip);
2775 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT);
2776 break;
2777 case FIP_ST_VNMP_CLAIM:
2778 /*
2779 * This may be invoked either by starting discovery so don't
2780 * go to the next state unless it's been long enough.
2781 */
2782 next_time = fip->sol_time + msecs_to_jiffies(FIP_VN_ANN_WAIT);
2783 if (time_after_eq(jiffies, next_time)) {
2784 fcoe_ctlr_set_state(fip, FIP_ST_VNMP_UP);
2785 fcoe_ctlr_vn_send(fip, FIP_SC_VN_BEACON,
2786 fcoe_all_vn2vn, 0);
2787 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT);
2788 fip->port_ka_time = next_time;
2789 }
2790 fcoe_ctlr_vn_disc(fip);
2791 break;
2792 case FIP_ST_VNMP_UP:
2793 next_time = fcoe_ctlr_vn_age(fip);
2794 if (time_after_eq(jiffies, fip->port_ka_time)) {
2795 fcoe_ctlr_vn_send(fip, FIP_SC_VN_BEACON,
2796 fcoe_all_vn2vn, 0);
2797 fip->port_ka_time = jiffies +
2798 msecs_to_jiffies(FIP_VN_BEACON_INT +
3b60a64f 2799 (prandom_u32() % FIP_VN_BEACON_FUZZ));
e10f8c66
JE
2800 }
2801 if (time_before(fip->port_ka_time, next_time))
2802 next_time = fip->port_ka_time;
2803 break;
2804 case FIP_ST_LINK_WAIT:
2805 goto unlock;
2806 default:
11aa9900 2807 WARN(1, "unexpected state %d\n", fip->state);
e10f8c66
JE
2808 goto unlock;
2809 }
2810 mod_timer(&fip->timer, next_time);
2811unlock:
2812 mutex_unlock(&fip->ctlr_mutex);
2813
2814 /* If port ID is new, notify local port after dropping ctlr_mutex */
2815 if (new_port_id)
2816 fc_lport_set_local_id(fip->lp, new_port_id);
2817}
2818
0db0e377
RL
2819/**
2820 * fcoe_ctlr_mode_set() - Set or reset the ctlr's mode
2821 * @lport: The local port to be (re)configured
2822 * @fip: The FCoE controller whose mode is changing
2823 * @fip_mode: The new fip mode
2824 *
2825 * Note that the we shouldn't be changing the libfc discovery settings
2826 * (fc_disc_config) while an lport is going through the libfc state
2827 * machine. The mode can only be changed when a fcoe_ctlr device is
2828 * disabled, so that should ensure that this routine is only called
2829 * when nothing is happening.
2830 */
2831void fcoe_ctlr_mode_set(struct fc_lport *lport, struct fcoe_ctlr *fip,
2832 enum fip_state fip_mode)
2833{
2834 void *priv;
2835
2836 WARN_ON(lport->state != LPORT_ST_RESET &&
2837 lport->state != LPORT_ST_DISABLED);
2838
2839 if (fip_mode == FIP_MODE_VN2VN) {
2840 lport->rport_priv_size = sizeof(struct fcoe_rport);
2841 lport->point_to_multipoint = 1;
2842 lport->tt.disc_recv_req = fcoe_ctlr_disc_recv;
2843 lport->tt.disc_start = fcoe_ctlr_disc_start;
2844 lport->tt.disc_stop = fcoe_ctlr_disc_stop;
2845 lport->tt.disc_stop_final = fcoe_ctlr_disc_stop_final;
2846 priv = fip;
2847 } else {
2848 lport->rport_priv_size = 0;
2849 lport->point_to_multipoint = 0;
2850 lport->tt.disc_recv_req = NULL;
2851 lport->tt.disc_start = NULL;
2852 lport->tt.disc_stop = NULL;
2853 lport->tt.disc_stop_final = NULL;
2854 priv = lport;
2855 }
2856
2857 fc_disc_config(lport, priv);
2858}
2859
5e80f7f7 2860/**
70b51aab 2861 * fcoe_libfc_config() - Sets up libfc related properties for local port
8d55e507
RL
2862 * @lport: The local port to configure libfc for
2863 * @fip: The FCoE controller in use by the local port
2864 * @tt: The libfc function template
e10f8c66 2865 * @init_fcp: If non-zero, the FCP portion of libfc should be initialized
5e80f7f7
VD
2866 *
2867 * Returns : 0 for success
2868 */
e10f8c66
JE
2869int fcoe_libfc_config(struct fc_lport *lport, struct fcoe_ctlr *fip,
2870 const struct libfc_function_template *tt, int init_fcp)
5e80f7f7
VD
2871{
2872 /* Set the function pointers set by the LLDD */
70b51aab 2873 memcpy(&lport->tt, tt, sizeof(*tt));
e10f8c66 2874 if (init_fcp && fc_fcp_init(lport))
5e80f7f7 2875 return -ENOMEM;
70b51aab
RL
2876 fc_exch_init(lport);
2877 fc_elsct_init(lport);
2878 fc_lport_init(lport);
2879 fc_rport_init(lport);
0807619d 2880 fc_disc_init(lport);
0db0e377 2881 fcoe_ctlr_mode_set(lport, fip, fip->mode);
5e80f7f7
VD
2882 return 0;
2883}
2884EXPORT_SYMBOL_GPL(fcoe_libfc_config);
8d55e507
RL
2885
2886void fcoe_fcf_get_selected(struct fcoe_fcf_device *fcf_dev)
2887{
2888 struct fcoe_ctlr_device *ctlr_dev = fcoe_fcf_dev_to_ctlr_dev(fcf_dev);
2889 struct fcoe_ctlr *fip = fcoe_ctlr_device_priv(ctlr_dev);
2890 struct fcoe_fcf *fcf;
2891
2892 mutex_lock(&fip->ctlr_mutex);
2893 mutex_lock(&ctlr_dev->lock);
2894
2895 fcf = fcoe_fcf_device_priv(fcf_dev);
2896 if (fcf)
2897 fcf_dev->selected = (fcf == fip->sel_fcf) ? 1 : 0;
2898 else
2899 fcf_dev->selected = 0;
2900
2901 mutex_unlock(&ctlr_dev->lock);
2902 mutex_unlock(&fip->ctlr_mutex);
2903}
2904EXPORT_SYMBOL(fcoe_fcf_get_selected);
2905
435c8667 2906void fcoe_ctlr_set_fip_mode(struct fcoe_ctlr_device *ctlr_dev)
8d55e507
RL
2907{
2908 struct fcoe_ctlr *ctlr = fcoe_ctlr_device_priv(ctlr_dev);
0db0e377 2909 struct fc_lport *lport = ctlr->lp;
8d55e507
RL
2910
2911 mutex_lock(&ctlr->ctlr_mutex);
435c8667
RL
2912 switch (ctlr_dev->mode) {
2913 case FIP_CONN_TYPE_VN2VN:
2914 ctlr->mode = FIP_MODE_VN2VN;
8d55e507 2915 break;
435c8667 2916 case FIP_CONN_TYPE_FABRIC:
8d55e507 2917 default:
435c8667 2918 ctlr->mode = FIP_MODE_FABRIC;
8d55e507
RL
2919 break;
2920 }
435c8667 2921
8d55e507 2922 mutex_unlock(&ctlr->ctlr_mutex);
0db0e377
RL
2923
2924 fcoe_ctlr_mode_set(lport, ctlr, ctlr->mode);
8d55e507 2925}
435c8667 2926EXPORT_SYMBOL(fcoe_ctlr_set_fip_mode);