blob: 7269e928824a07f93efb1e570eb136f6cbedfbeb [file] [log] [blame]
Robert Love42e9a922008-12-09 15:10:17 -08001/*
2 * Copyright(c) 2007 - 2008 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16 *
17 * Maintained at www.Open-FCoE.org
18 */
19
20/*
21 * Target Discovery
22 *
23 * This block discovers all FC-4 remote ports, including FCP initiators. It
24 * also handles RSCN events and re-discovery if necessary.
25 */
26
27/*
28 * DISC LOCKING
29 *
30 * The disc mutex is can be locked when acquiring rport locks, but may not
31 * be held when acquiring the lport lock. Refer to fc_lport.c for more
32 * details.
33 */
34
35#include <linux/timer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Robert Love42e9a922008-12-09 15:10:17 -080037#include <linux/err.h>
Paul Gortmaker09703662011-05-27 09:37:25 -040038#include <linux/export.h>
Robert Love42e9a922008-12-09 15:10:17 -080039#include <asm/unaligned.h>
40
41#include <scsi/fc/fc_gs.h>
42
43#include <scsi/libfc.h>
44
Robert Love8866a5d2009-11-03 11:45:58 -080045#include "fc_libfc.h"
46
Robert Love42e9a922008-12-09 15:10:17 -080047#define FC_DISC_RETRY_LIMIT 3 /* max retries */
48#define FC_DISC_RETRY_DELAY 500UL /* (msecs) delay */
49
Robert Love42e9a922008-12-09 15:10:17 -080050static void fc_disc_gpn_ft_req(struct fc_disc *);
51static void fc_disc_gpn_ft_resp(struct fc_seq *, struct fc_frame *, void *);
Joe Eykholt786681b2009-08-25 14:01:29 -070052static void fc_disc_done(struct fc_disc *, enum fc_disc_event);
Robert Love42e9a922008-12-09 15:10:17 -080053static void fc_disc_timeout(struct work_struct *);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -070054static int fc_disc_single(struct fc_lport *, struct fc_disc_port *);
Robert Love42e9a922008-12-09 15:10:17 -080055static void fc_disc_restart(struct fc_disc *);
56
57/**
Robert Love3a3b42b2009-11-03 11:47:39 -080058 * fc_disc_stop_rports() - Delete all the remote ports associated with the lport
59 * @disc: The discovery job to stop remote ports on
Robert Love42e9a922008-12-09 15:10:17 -080060 *
61 * Locking Note: This function expects that the lport mutex is locked before
62 * calling it.
63 */
64void fc_disc_stop_rports(struct fc_disc *disc)
65{
66 struct fc_lport *lport;
Joe Eykholt42e90412010-07-20 15:19:37 -070067 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -080068
Joe Eykholt06852302010-07-20 15:19:53 -070069 lport = fc_disc_lport(disc);
Robert Love42e9a922008-12-09 15:10:17 -080070
71 mutex_lock(&disc->disc_mutex);
Joe Eykholt42e90412010-07-20 15:19:37 -070072 list_for_each_entry_rcu(rdata, &disc->rports, peers)
Joe Eykholt9fb9d322009-08-25 14:00:50 -070073 lport->tt.rport_logoff(rdata);
Robert Love42e9a922008-12-09 15:10:17 -080074 mutex_unlock(&disc->disc_mutex);
75}
76
77/**
Robert Love34f42a02009-02-27 10:55:45 -080078 * fc_disc_recv_rscn_req() - Handle Registered State Change Notification (RSCN)
Joe Eykholt922611562010-07-20 15:21:12 -070079 * @disc: The discovery object to which the RSCN applies
Robert Love3a3b42b2009-11-03 11:47:39 -080080 * @fp: The RSCN frame
Robert Love42e9a922008-12-09 15:10:17 -080081 *
82 * Locking Note: This function expects that the disc_mutex is locked
83 * before it is called.
84 */
Joe Eykholt922611562010-07-20 15:21:12 -070085static void fc_disc_recv_rscn_req(struct fc_disc *disc, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -080086{
87 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -080088 struct fc_els_rscn *rp;
89 struct fc_els_rscn_page *pp;
90 struct fc_seq_els_data rjt_data;
91 unsigned int len;
92 int redisc = 0;
93 enum fc_els_rscn_ev_qual ev_qual;
94 enum fc_els_rscn_addr_fmt fmt;
95 LIST_HEAD(disc_ports);
96 struct fc_disc_port *dp, *next;
97
Joe Eykholt06852302010-07-20 15:19:53 -070098 lport = fc_disc_lport(disc);
Robert Love42e9a922008-12-09 15:10:17 -080099
Robert Love74147052009-06-10 15:31:10 -0700100 FC_DISC_DBG(disc, "Received an RSCN event\n");
Robert Love42e9a922008-12-09 15:10:17 -0800101
102 /* make sure the frame contains an RSCN message */
103 rp = fc_frame_payload_get(fp, sizeof(*rp));
104 if (!rp)
105 goto reject;
106 /* make sure the page length is as expected (4 bytes) */
107 if (rp->rscn_page_len != sizeof(*pp))
108 goto reject;
109 /* get the RSCN payload length */
110 len = ntohs(rp->rscn_plen);
111 if (len < sizeof(*rp))
112 goto reject;
113 /* make sure the frame contains the expected payload */
114 rp = fc_frame_payload_get(fp, len);
115 if (!rp)
116 goto reject;
117 /* payload must be a multiple of the RSCN page size */
118 len -= sizeof(*rp);
119 if (len % sizeof(*pp))
120 goto reject;
121
122 for (pp = (void *)(rp + 1); len > 0; len -= sizeof(*pp), pp++) {
123 ev_qual = pp->rscn_page_flags >> ELS_RSCN_EV_QUAL_BIT;
124 ev_qual &= ELS_RSCN_EV_QUAL_MASK;
125 fmt = pp->rscn_page_flags >> ELS_RSCN_ADDR_FMT_BIT;
126 fmt &= ELS_RSCN_ADDR_FMT_MASK;
127 /*
128 * if we get an address format other than port
129 * (area, domain, fabric), then do a full discovery
130 */
131 switch (fmt) {
132 case ELS_ADDR_FMT_PORT:
Robert Love74147052009-06-10 15:31:10 -0700133 FC_DISC_DBG(disc, "Port address format for port "
Chris Leechce8b5df2010-04-09 14:23:10 -0700134 "(%6.6x)\n", ntoh24(pp->rscn_fid));
Robert Love42e9a922008-12-09 15:10:17 -0800135 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
136 if (!dp) {
137 redisc = 1;
138 break;
139 }
140 dp->lp = lport;
Robert Love9737e6a2009-08-25 14:02:59 -0700141 dp->port_id = ntoh24(pp->rscn_fid);
Robert Love42e9a922008-12-09 15:10:17 -0800142 list_add_tail(&dp->peers, &disc_ports);
143 break;
144 case ELS_ADDR_FMT_AREA:
145 case ELS_ADDR_FMT_DOM:
146 case ELS_ADDR_FMT_FAB:
147 default:
Robert Love74147052009-06-10 15:31:10 -0700148 FC_DISC_DBG(disc, "Address format is (%d)\n", fmt);
Robert Love42e9a922008-12-09 15:10:17 -0800149 redisc = 1;
150 break;
151 }
152 }
Joe Eykholt922611562010-07-20 15:21:12 -0700153 lport->tt.seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700154
155 /*
156 * If not doing a complete rediscovery, do GPN_ID on
157 * the individual ports mentioned in the list.
158 * If any of these get an error, do a full rediscovery.
159 * In any case, go through the list and free the entries.
160 */
161 list_for_each_entry_safe(dp, next, &disc_ports, peers) {
162 list_del(&dp->peers);
163 if (!redisc)
164 redisc = fc_disc_single(lport, dp);
165 kfree(dp);
166 }
Robert Love42e9a922008-12-09 15:10:17 -0800167 if (redisc) {
Robert Love74147052009-06-10 15:31:10 -0700168 FC_DISC_DBG(disc, "RSCN received: rediscovering\n");
Robert Love42e9a922008-12-09 15:10:17 -0800169 fc_disc_restart(disc);
170 } else {
Robert Love74147052009-06-10 15:31:10 -0700171 FC_DISC_DBG(disc, "RSCN received: not rediscovering. "
172 "redisc %d state %d in_prog %d\n",
173 redisc, lport->state, disc->pending);
Robert Love42e9a922008-12-09 15:10:17 -0800174 }
175 fc_frame_free(fp);
176 return;
177reject:
Robert Love74147052009-06-10 15:31:10 -0700178 FC_DISC_DBG(disc, "Received a bad RSCN frame\n");
Robert Love42e9a922008-12-09 15:10:17 -0800179 rjt_data.reason = ELS_RJT_LOGIC;
180 rjt_data.explan = ELS_EXPL_NONE;
Joe Eykholt922611562010-07-20 15:21:12 -0700181 lport->tt.seq_els_rsp_send(fp, ELS_LS_RJT, &rjt_data);
Robert Love42e9a922008-12-09 15:10:17 -0800182 fc_frame_free(fp);
183}
184
185/**
Robert Love34f42a02009-02-27 10:55:45 -0800186 * fc_disc_recv_req() - Handle incoming requests
Robert Love3a3b42b2009-11-03 11:47:39 -0800187 * @lport: The local port receiving the request
Joe Eykholt922611562010-07-20 15:21:12 -0700188 * @fp: The request frame
Robert Love42e9a922008-12-09 15:10:17 -0800189 *
190 * Locking Note: This function is called from the EM and will lock
191 * the disc_mutex before calling the handler for the
192 * request.
193 */
Joe Eykholt922611562010-07-20 15:21:12 -0700194static void fc_disc_recv_req(struct fc_lport *lport, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800195{
196 u8 op;
197 struct fc_disc *disc = &lport->disc;
198
199 op = fc_frame_payload_op(fp);
200 switch (op) {
201 case ELS_RSCN:
202 mutex_lock(&disc->disc_mutex);
Joe Eykholt922611562010-07-20 15:21:12 -0700203 fc_disc_recv_rscn_req(disc, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800204 mutex_unlock(&disc->disc_mutex);
205 break;
206 default:
Robert Love74147052009-06-10 15:31:10 -0700207 FC_DISC_DBG(disc, "Received an unsupported request, "
208 "the opcode is (%x)\n", op);
Hillf Danton83383dd2011-05-16 16:45:35 -0700209 fc_frame_free(fp);
Robert Love42e9a922008-12-09 15:10:17 -0800210 break;
211 }
212}
213
214/**
Robert Love34f42a02009-02-27 10:55:45 -0800215 * fc_disc_restart() - Restart discovery
Robert Love3a3b42b2009-11-03 11:47:39 -0800216 * @disc: The discovery object to be restarted
Robert Love42e9a922008-12-09 15:10:17 -0800217 *
218 * Locking Note: This function expects that the disc mutex
219 * is already locked.
220 */
221static void fc_disc_restart(struct fc_disc *disc)
222{
Joe Eykholt935d0fc2009-08-25 14:02:54 -0700223 if (!disc->disc_callback)
224 return;
225
Robert Love74147052009-06-10 15:31:10 -0700226 FC_DISC_DBG(disc, "Restarting discovery\n");
Robert Love42e9a922008-12-09 15:10:17 -0800227
Robert Love42e9a922008-12-09 15:10:17 -0800228 disc->requested = 1;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700229 if (disc->pending)
230 return;
231
232 /*
233 * Advance disc_id. This is an arbitrary non-zero number that will
234 * match the value in the fc_rport_priv after discovery for all
235 * freshly-discovered remote ports. Avoid wrapping to zero.
236 */
237 disc->disc_id = (disc->disc_id + 2) | 1;
Joe Eykholt3667d7e2009-08-25 14:02:38 -0700238 disc->retry_count = 0;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700239 fc_disc_gpn_ft_req(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800240}
241
242/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800243 * fc_disc_start() - Start discovery on a local port
244 * @lport: The local port to have discovery started on
245 * @disc_callback: Callback function to be called when discovery is complete
Robert Love42e9a922008-12-09 15:10:17 -0800246 */
247static void fc_disc_start(void (*disc_callback)(struct fc_lport *,
248 enum fc_disc_event),
249 struct fc_lport *lport)
250{
Robert Love42e9a922008-12-09 15:10:17 -0800251 struct fc_disc *disc = &lport->disc;
252
253 /*
254 * At this point we may have a new disc job or an existing
255 * one. Either way, let's lock when we make changes to it
256 * and send the GPN_FT request.
257 */
258 mutex_lock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800259 disc->disc_callback = disc_callback;
Joe Eykholt29d898e2009-08-25 14:02:49 -0700260 fc_disc_restart(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800261 mutex_unlock(&disc->disc_mutex);
262}
263
Robert Love42e9a922008-12-09 15:10:17 -0800264/**
Robert Love34f42a02009-02-27 10:55:45 -0800265 * fc_disc_done() - Discovery has been completed
Robert Love3a3b42b2009-11-03 11:47:39 -0800266 * @disc: The discovery context
267 * @event: The discovery completion status
Joe Eykholt786681b2009-08-25 14:01:29 -0700268 *
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700269 * Locking Note: This function expects that the disc mutex is locked before
270 * it is called. The discovery callback is then made with the lock released,
271 * and the lock is re-taken before returning from this function
Robert Love42e9a922008-12-09 15:10:17 -0800272 */
Joe Eykholt786681b2009-08-25 14:01:29 -0700273static void fc_disc_done(struct fc_disc *disc, enum fc_disc_event event)
Robert Love42e9a922008-12-09 15:10:17 -0800274{
Joe Eykholt06852302010-07-20 15:19:53 -0700275 struct fc_lport *lport = fc_disc_lport(disc);
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700276 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800277
Robert Love74147052009-06-10 15:31:10 -0700278 FC_DISC_DBG(disc, "Discovery complete\n");
Robert Love42e9a922008-12-09 15:10:17 -0800279
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700280 disc->pending = 0;
281 if (disc->requested) {
282 fc_disc_restart(disc);
283 return;
284 }
285
286 /*
Robert Love3a3b42b2009-11-03 11:47:39 -0800287 * Go through all remote ports. If they were found in the latest
288 * discovery, reverify or log them in. Otherwise, log them out.
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700289 * Skip ports which were never discovered. These are the dNS port
290 * and ports which were created by PLOGI.
291 */
Joe Eykholt42e90412010-07-20 15:19:37 -0700292 list_for_each_entry_rcu(rdata, &disc->rports, peers) {
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700293 if (!rdata->disc_id)
294 continue;
295 if (rdata->disc_id == disc->disc_id)
296 lport->tt.rport_login(rdata);
297 else
298 lport->tt.rport_logoff(rdata);
299 }
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700300
301 mutex_unlock(&disc->disc_mutex);
302 disc->disc_callback(lport, event);
303 mutex_lock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800304}
305
306/**
Robert Love34f42a02009-02-27 10:55:45 -0800307 * fc_disc_error() - Handle error on dNS request
Robert Love3a3b42b2009-11-03 11:47:39 -0800308 * @disc: The discovery context
309 * @fp: The error code encoded as a frame pointer
Robert Love42e9a922008-12-09 15:10:17 -0800310 */
311static void fc_disc_error(struct fc_disc *disc, struct fc_frame *fp)
312{
Joe Eykholt06852302010-07-20 15:19:53 -0700313 struct fc_lport *lport = fc_disc_lport(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800314 unsigned long delay = 0;
Robert Love74147052009-06-10 15:31:10 -0700315
316 FC_DISC_DBG(disc, "Error %ld, retries %d/%d\n",
317 PTR_ERR(fp), disc->retry_count,
318 FC_DISC_RETRY_LIMIT);
Robert Love42e9a922008-12-09 15:10:17 -0800319
320 if (!fp || PTR_ERR(fp) == -FC_EX_TIMEOUT) {
321 /*
322 * Memory allocation failure, or the exchange timed out,
323 * retry after delay.
324 */
325 if (disc->retry_count < FC_DISC_RETRY_LIMIT) {
326 /* go ahead and retry */
327 if (!fp)
328 delay = msecs_to_jiffies(FC_DISC_RETRY_DELAY);
329 else {
330 delay = msecs_to_jiffies(lport->e_d_tov);
331
332 /* timeout faster first time */
333 if (!disc->retry_count)
334 delay /= 4;
335 }
336 disc->retry_count++;
337 schedule_delayed_work(&disc->disc_work, delay);
Joe Eykholt786681b2009-08-25 14:01:29 -0700338 } else
339 fc_disc_done(disc, DISC_EV_FAILED);
Robert Love42e9a922008-12-09 15:10:17 -0800340 }
341}
342
343/**
Robert Love34f42a02009-02-27 10:55:45 -0800344 * fc_disc_gpn_ft_req() - Send Get Port Names by FC-4 type (GPN_FT) request
Robert Love3a3b42b2009-11-03 11:47:39 -0800345 * @lport: The discovery context
Robert Love42e9a922008-12-09 15:10:17 -0800346 *
347 * Locking Note: This function expects that the disc_mutex is locked
348 * before it is called.
349 */
350static void fc_disc_gpn_ft_req(struct fc_disc *disc)
351{
352 struct fc_frame *fp;
Joe Eykholt06852302010-07-20 15:19:53 -0700353 struct fc_lport *lport = fc_disc_lport(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800354
355 WARN_ON(!fc_lport_test_ready(lport));
356
357 disc->pending = 1;
358 disc->requested = 0;
359
360 disc->buf_len = 0;
361 disc->seq_count = 0;
362 fp = fc_frame_alloc(lport,
363 sizeof(struct fc_ct_hdr) +
364 sizeof(struct fc_ns_gid_ft));
365 if (!fp)
366 goto err;
367
Joe Eykholta46f3272009-08-25 14:00:55 -0700368 if (lport->tt.elsct_send(lport, 0, fp,
Robert Love42e9a922008-12-09 15:10:17 -0800369 FC_NS_GPN_FT,
370 fc_disc_gpn_ft_resp,
Joe Eykholtb94f8952009-11-03 11:50:21 -0800371 disc, 3 * lport->r_a_tov))
Robert Love42e9a922008-12-09 15:10:17 -0800372 return;
373err:
Chris Leech8f550f92009-10-21 16:28:09 -0700374 fc_disc_error(disc, NULL);
Robert Love42e9a922008-12-09 15:10:17 -0800375}
376
377/**
Joe Eykholt786681b2009-08-25 14:01:29 -0700378 * fc_disc_gpn_ft_parse() - Parse the body of the dNS GPN_FT response.
Robert Love3a3b42b2009-11-03 11:47:39 -0800379 * @lport: The local port the GPN_FT was received on
380 * @buf: The GPN_FT response buffer
381 * @len: The size of response buffer
Joe Eykholt786681b2009-08-25 14:01:29 -0700382 *
383 * Goes through the list of IDs and names resulting from a request.
Robert Love42e9a922008-12-09 15:10:17 -0800384 */
385static int fc_disc_gpn_ft_parse(struct fc_disc *disc, void *buf, size_t len)
386{
387 struct fc_lport *lport;
388 struct fc_gpn_ft_resp *np;
389 char *bp;
390 size_t plen;
391 size_t tlen;
392 int error = 0;
Joe Eykholt795d86f2009-08-25 14:00:39 -0700393 struct fc_rport_identifiers ids;
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700394 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800395
Joe Eykholt06852302010-07-20 15:19:53 -0700396 lport = fc_disc_lport(disc);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700397 disc->seq_count++;
Robert Love42e9a922008-12-09 15:10:17 -0800398
399 /*
400 * Handle partial name record left over from previous call.
401 */
402 bp = buf;
403 plen = len;
404 np = (struct fc_gpn_ft_resp *)bp;
405 tlen = disc->buf_len;
Joe Eykholt81a67b92009-08-25 14:02:43 -0700406 disc->buf_len = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800407 if (tlen) {
408 WARN_ON(tlen >= sizeof(*np));
409 plen = sizeof(*np) - tlen;
410 WARN_ON(plen <= 0);
411 WARN_ON(plen >= sizeof(*np));
412 if (plen > len)
413 plen = len;
414 np = &disc->partial_buf;
415 memcpy((char *)np + tlen, bp, plen);
416
417 /*
418 * Set bp so that the loop below will advance it to the
419 * first valid full name element.
420 */
421 bp -= tlen;
422 len += tlen;
423 plen += tlen;
424 disc->buf_len = (unsigned char) plen;
425 if (plen == sizeof(*np))
426 disc->buf_len = 0;
427 }
428
429 /*
430 * Handle full name records, including the one filled from above.
431 * Normally, np == bp and plen == len, but from the partial case above,
432 * bp, len describe the overall buffer, and np, plen describe the
433 * partial buffer, which if would usually be full now.
434 * After the first time through the loop, things return to "normal".
435 */
436 while (plen >= sizeof(*np)) {
Joe Eykholt795d86f2009-08-25 14:00:39 -0700437 ids.port_id = ntoh24(np->fp_fid);
438 ids.port_name = ntohll(np->fp_wwpn);
Robert Love42e9a922008-12-09 15:10:17 -0800439
Robert Love7b2787e2010-05-07 15:18:41 -0700440 if (ids.port_id != lport->port_id &&
Joe Eykholt795d86f2009-08-25 14:00:39 -0700441 ids.port_name != lport->wwpn) {
Robert Love9737e6a2009-08-25 14:02:59 -0700442 rdata = lport->tt.rport_create(lport, ids.port_id);
443 if (rdata) {
444 rdata->ids.port_name = ids.port_name;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700445 rdata->disc_id = disc->disc_id;
Robert Love9737e6a2009-08-25 14:02:59 -0700446 } else {
Robert Love74147052009-06-10 15:31:10 -0700447 printk(KERN_WARNING "libfc: Failed to allocate "
448 "memory for the newly discovered port "
Chris Leechce8b5df2010-04-09 14:23:10 -0700449 "(%6.6x)\n", ids.port_id);
Joe Eykholt81a67b92009-08-25 14:02:43 -0700450 error = -ENOMEM;
451 }
Robert Love42e9a922008-12-09 15:10:17 -0800452 }
453
454 if (np->fp_flags & FC_NS_FID_LAST) {
Joe Eykholt786681b2009-08-25 14:01:29 -0700455 fc_disc_done(disc, DISC_EV_SUCCESS);
Robert Love42e9a922008-12-09 15:10:17 -0800456 len = 0;
457 break;
458 }
459 len -= sizeof(*np);
460 bp += sizeof(*np);
461 np = (struct fc_gpn_ft_resp *)bp;
462 plen = len;
463 }
464
465 /*
466 * Save any partial record at the end of the buffer for next time.
467 */
468 if (error == 0 && len > 0 && len < sizeof(*np)) {
469 if (np != &disc->partial_buf) {
Robert Love74147052009-06-10 15:31:10 -0700470 FC_DISC_DBG(disc, "Partial buffer remains "
471 "for discovery\n");
Robert Love42e9a922008-12-09 15:10:17 -0800472 memcpy(&disc->partial_buf, np, len);
473 }
474 disc->buf_len = (unsigned char) len;
Robert Love42e9a922008-12-09 15:10:17 -0800475 }
476 return error;
477}
478
Robert Love34f42a02009-02-27 10:55:45 -0800479/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800480 * fc_disc_timeout() - Handler for discovery timeouts
481 * @work: Structure holding discovery context that needs to retry discovery
Robert Love42e9a922008-12-09 15:10:17 -0800482 */
483static void fc_disc_timeout(struct work_struct *work)
484{
485 struct fc_disc *disc = container_of(work,
486 struct fc_disc,
487 disc_work.work);
488 mutex_lock(&disc->disc_mutex);
Joe Eykholt3667d7e2009-08-25 14:02:38 -0700489 fc_disc_gpn_ft_req(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800490 mutex_unlock(&disc->disc_mutex);
491}
492
493/**
Robert Love34f42a02009-02-27 10:55:45 -0800494 * fc_disc_gpn_ft_resp() - Handle a response frame from Get Port Names (GPN_FT)
Robert Love3a3b42b2009-11-03 11:47:39 -0800495 * @sp: The sequence that the GPN_FT response was received on
496 * @fp: The GPN_FT response frame
497 * @lp_arg: The discovery context
Robert Love42e9a922008-12-09 15:10:17 -0800498 *
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700499 * Locking Note: This function is called without disc mutex held, and
500 * should do all its processing with the mutex held
Robert Love42e9a922008-12-09 15:10:17 -0800501 */
502static void fc_disc_gpn_ft_resp(struct fc_seq *sp, struct fc_frame *fp,
503 void *disc_arg)
504{
505 struct fc_disc *disc = disc_arg;
506 struct fc_ct_hdr *cp;
507 struct fc_frame_header *fh;
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700508 enum fc_disc_event event = DISC_EV_NONE;
Robert Love42e9a922008-12-09 15:10:17 -0800509 unsigned int seq_cnt;
Robert Love42e9a922008-12-09 15:10:17 -0800510 unsigned int len;
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700511 int error = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800512
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700513 mutex_lock(&disc->disc_mutex);
Robert Love74147052009-06-10 15:31:10 -0700514 FC_DISC_DBG(disc, "Received a GPN_FT response\n");
Robert Love42e9a922008-12-09 15:10:17 -0800515
516 if (IS_ERR(fp)) {
517 fc_disc_error(disc, fp);
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700518 mutex_unlock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800519 return;
520 }
521
522 WARN_ON(!fc_frame_is_linear(fp)); /* buffer must be contiguous */
523 fh = fc_frame_header_get(fp);
524 len = fr_len(fp) - sizeof(*fh);
525 seq_cnt = ntohs(fh->fh_seq_cnt);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700526 if (fr_sof(fp) == FC_SOF_I3 && seq_cnt == 0 && disc->seq_count == 0) {
Robert Love42e9a922008-12-09 15:10:17 -0800527 cp = fc_frame_payload_get(fp, sizeof(*cp));
528 if (!cp) {
Robert Love74147052009-06-10 15:31:10 -0700529 FC_DISC_DBG(disc, "GPN_FT response too short, len %d\n",
530 fr_len(fp));
Joe Eykholt883a3372009-08-25 14:02:27 -0700531 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800532 } else if (ntohs(cp->ct_cmd) == FC_FS_ACC) {
533
Robert Love34f42a02009-02-27 10:55:45 -0800534 /* Accepted, parse the response. */
Robert Love42e9a922008-12-09 15:10:17 -0800535 len -= sizeof(*cp);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700536 error = fc_disc_gpn_ft_parse(disc, cp + 1, len);
Robert Love42e9a922008-12-09 15:10:17 -0800537 } else if (ntohs(cp->ct_cmd) == FC_FS_RJT) {
Robert Love74147052009-06-10 15:31:10 -0700538 FC_DISC_DBG(disc, "GPN_FT rejected reason %x exp %x "
539 "(check zoning)\n", cp->ct_reason,
540 cp->ct_explan);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700541 event = DISC_EV_FAILED;
Joe Eykholtc7626082009-08-25 14:02:33 -0700542 if (cp->ct_reason == FC_FS_RJT_UNABL &&
543 cp->ct_explan == FC_FS_EXP_FTNR)
544 event = DISC_EV_SUCCESS;
Robert Love42e9a922008-12-09 15:10:17 -0800545 } else {
Robert Love74147052009-06-10 15:31:10 -0700546 FC_DISC_DBG(disc, "GPN_FT unexpected response code "
547 "%x\n", ntohs(cp->ct_cmd));
Joe Eykholt883a3372009-08-25 14:02:27 -0700548 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800549 }
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700550 } else if (fr_sof(fp) == FC_SOF_N3 && seq_cnt == disc->seq_count) {
551 error = fc_disc_gpn_ft_parse(disc, fh + 1, len);
Robert Love42e9a922008-12-09 15:10:17 -0800552 } else {
Robert Love74147052009-06-10 15:31:10 -0700553 FC_DISC_DBG(disc, "GPN_FT unexpected frame - out of sequence? "
554 "seq_cnt %x expected %x sof %x eof %x\n",
555 seq_cnt, disc->seq_count, fr_sof(fp), fr_eof(fp));
Joe Eykholt883a3372009-08-25 14:02:27 -0700556 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800557 }
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700558 if (error)
559 fc_disc_error(disc, fp);
560 else if (event != DISC_EV_NONE)
561 fc_disc_done(disc, event);
Robert Love42e9a922008-12-09 15:10:17 -0800562 fc_frame_free(fp);
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700563 mutex_unlock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800564}
565
566/**
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700567 * fc_disc_gpn_id_resp() - Handle a response frame from Get Port Names (GPN_ID)
Robert Love3a3b42b2009-11-03 11:47:39 -0800568 * @sp: The sequence the GPN_ID is on
569 * @fp: The response frame
570 * @rdata_arg: The remote port that sent the GPN_ID response
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700571 *
572 * Locking Note: This function is called without disc mutex held.
573 */
574static void fc_disc_gpn_id_resp(struct fc_seq *sp, struct fc_frame *fp,
575 void *rdata_arg)
576{
577 struct fc_rport_priv *rdata = rdata_arg;
578 struct fc_rport_priv *new_rdata;
579 struct fc_lport *lport;
580 struct fc_disc *disc;
581 struct fc_ct_hdr *cp;
582 struct fc_ns_gid_pn *pn;
583 u64 port_name;
584
585 lport = rdata->local_port;
586 disc = &lport->disc;
587
588 mutex_lock(&disc->disc_mutex);
589 if (PTR_ERR(fp) == -FC_EX_CLOSED)
590 goto out;
591 if (IS_ERR(fp))
592 goto redisc;
593
594 cp = fc_frame_payload_get(fp, sizeof(*cp));
595 if (!cp)
596 goto redisc;
597 if (ntohs(cp->ct_cmd) == FC_FS_ACC) {
598 if (fr_len(fp) < sizeof(struct fc_frame_header) +
599 sizeof(*cp) + sizeof(*pn))
600 goto redisc;
601 pn = (struct fc_ns_gid_pn *)(cp + 1);
602 port_name = get_unaligned_be64(&pn->fn_wwpn);
603 if (rdata->ids.port_name == -1)
604 rdata->ids.port_name = port_name;
605 else if (rdata->ids.port_name != port_name) {
606 FC_DISC_DBG(disc, "GPN_ID accepted. WWPN changed. "
Chris Leech9f8f3aa2010-04-09 14:23:16 -0700607 "Port-id %6.6x wwpn %16.16llx\n",
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700608 rdata->ids.port_id, port_name);
609 lport->tt.rport_logoff(rdata);
610
611 new_rdata = lport->tt.rport_create(lport,
612 rdata->ids.port_id);
613 if (new_rdata) {
614 new_rdata->disc_id = disc->disc_id;
615 lport->tt.rport_login(new_rdata);
616 }
617 goto out;
618 }
619 rdata->disc_id = disc->disc_id;
620 lport->tt.rport_login(rdata);
621 } else if (ntohs(cp->ct_cmd) == FC_FS_RJT) {
622 FC_DISC_DBG(disc, "GPN_ID rejected reason %x exp %x\n",
623 cp->ct_reason, cp->ct_explan);
624 lport->tt.rport_logoff(rdata);
625 } else {
626 FC_DISC_DBG(disc, "GPN_ID unexpected response code %x\n",
627 ntohs(cp->ct_cmd));
628redisc:
629 fc_disc_restart(disc);
630 }
631out:
632 mutex_unlock(&disc->disc_mutex);
633 kref_put(&rdata->kref, lport->tt.rport_destroy);
634}
635
636/**
637 * fc_disc_gpn_id_req() - Send Get Port Names by ID (GPN_ID) request
Robert Love3a3b42b2009-11-03 11:47:39 -0800638 * @lport: The local port to initiate discovery on
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700639 * @rdata: remote port private data
640 *
641 * Locking Note: This function expects that the disc_mutex is locked
642 * before it is called.
643 * On failure, an error code is returned.
644 */
645static int fc_disc_gpn_id_req(struct fc_lport *lport,
646 struct fc_rport_priv *rdata)
647{
648 struct fc_frame *fp;
649
650 fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) +
651 sizeof(struct fc_ns_fid));
652 if (!fp)
653 return -ENOMEM;
654 if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, FC_NS_GPN_ID,
Joe Eykholtb94f8952009-11-03 11:50:21 -0800655 fc_disc_gpn_id_resp, rdata,
656 3 * lport->r_a_tov))
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700657 return -ENOMEM;
658 kref_get(&rdata->kref);
659 return 0;
660}
661
662/**
Robert Love34f42a02009-02-27 10:55:45 -0800663 * fc_disc_single() - Discover the directory information for a single target
Robert Love3a3b42b2009-11-03 11:47:39 -0800664 * @lport: The local port the remote port is associated with
665 * @dp: The port to rediscover
Robert Love42e9a922008-12-09 15:10:17 -0800666 *
667 * Locking Note: This function expects that the disc_mutex is locked
668 * before it is called.
669 */
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700670static int fc_disc_single(struct fc_lport *lport, struct fc_disc_port *dp)
Robert Love42e9a922008-12-09 15:10:17 -0800671{
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700672 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800673
Robert Love9737e6a2009-08-25 14:02:59 -0700674 rdata = lport->tt.rport_create(lport, dp->port_id);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700675 if (!rdata)
676 return -ENOMEM;
677 rdata->disc_id = 0;
678 return fc_disc_gpn_id_req(lport, rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800679}
680
681/**
Robert Love34f42a02009-02-27 10:55:45 -0800682 * fc_disc_stop() - Stop discovery for a given lport
Robert Love3a3b42b2009-11-03 11:47:39 -0800683 * @lport: The local port that discovery should stop on
Robert Love42e9a922008-12-09 15:10:17 -0800684 */
685void fc_disc_stop(struct fc_lport *lport)
686{
687 struct fc_disc *disc = &lport->disc;
688
Bhanu Prakash Gollapudic531b9b2010-10-08 17:12:36 -0700689 if (disc->pending)
Robert Love42e9a922008-12-09 15:10:17 -0800690 cancel_delayed_work_sync(&disc->disc_work);
Bhanu Prakash Gollapudic531b9b2010-10-08 17:12:36 -0700691 fc_disc_stop_rports(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800692}
693
694/**
Robert Love34f42a02009-02-27 10:55:45 -0800695 * fc_disc_stop_final() - Stop discovery for a given lport
Robert Love3a3b42b2009-11-03 11:47:39 -0800696 * @lport: The lport that discovery should stop on
Robert Love42e9a922008-12-09 15:10:17 -0800697 *
698 * This function will block until discovery has been
699 * completely stopped and all rports have been deleted.
700 */
701void fc_disc_stop_final(struct fc_lport *lport)
702{
703 fc_disc_stop(lport);
704 lport->tt.rport_flush_queue();
705}
706
707/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800708 * fc_disc_init() - Initialize the discovery layer for a local port
709 * @lport: The local port that needs the discovery layer to be initialized
Robert Love42e9a922008-12-09 15:10:17 -0800710 */
711int fc_disc_init(struct fc_lport *lport)
712{
713 struct fc_disc *disc;
714
715 if (!lport->tt.disc_start)
716 lport->tt.disc_start = fc_disc_start;
717
718 if (!lport->tt.disc_stop)
719 lport->tt.disc_stop = fc_disc_stop;
720
721 if (!lport->tt.disc_stop_final)
722 lport->tt.disc_stop_final = fc_disc_stop_final;
723
724 if (!lport->tt.disc_recv_req)
725 lport->tt.disc_recv_req = fc_disc_recv_req;
726
Robert Love42e9a922008-12-09 15:10:17 -0800727 disc = &lport->disc;
728 INIT_DELAYED_WORK(&disc->disc_work, fc_disc_timeout);
729 mutex_init(&disc->disc_mutex);
730 INIT_LIST_HEAD(&disc->rports);
Robert Love42e9a922008-12-09 15:10:17 -0800731
Joe Eykholt06852302010-07-20 15:19:53 -0700732 disc->priv = lport;
Robert Love42e9a922008-12-09 15:10:17 -0800733
734 return 0;
735}
736EXPORT_SYMBOL(fc_disc_init);