blob: 4242894cce7cd5a3bfa623a7375c26c0d7b41b48 [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>
36#include <linux/err.h>
37#include <asm/unaligned.h>
38
39#include <scsi/fc/fc_gs.h>
40
41#include <scsi/libfc.h>
42
43#define FC_DISC_RETRY_LIMIT 3 /* max retries */
44#define FC_DISC_RETRY_DELAY 500UL /* (msecs) delay */
45
Robert Love42e9a922008-12-09 15:10:17 -080046static void fc_disc_gpn_ft_req(struct fc_disc *);
47static void fc_disc_gpn_ft_resp(struct fc_seq *, struct fc_frame *, void *);
Joe Eykholt786681b2009-08-25 14:01:29 -070048static void fc_disc_done(struct fc_disc *, enum fc_disc_event);
Robert Love42e9a922008-12-09 15:10:17 -080049static void fc_disc_timeout(struct work_struct *);
50static void fc_disc_single(struct fc_disc *, struct fc_disc_port *);
51static void fc_disc_restart(struct fc_disc *);
52
53/**
Robert Love34f42a02009-02-27 10:55:45 -080054 * fc_disc_stop_rports() - delete all the remote ports associated with the lport
Robert Love42e9a922008-12-09 15:10:17 -080055 * @disc: The discovery job to stop rports on
56 *
57 * Locking Note: This function expects that the lport mutex is locked before
58 * calling it.
59 */
60void fc_disc_stop_rports(struct fc_disc *disc)
61{
62 struct fc_lport *lport;
Joe Eykholtab28f1f2009-08-25 14:00:34 -070063 struct fc_rport_priv *rdata, *next;
Robert Love42e9a922008-12-09 15:10:17 -080064
65 lport = disc->lport;
66
67 mutex_lock(&disc->disc_mutex);
Joe Eykholt9e9d0452009-08-25 14:01:18 -070068 list_for_each_entry_safe(rdata, next, &disc->rports, peers)
Joe Eykholt9fb9d322009-08-25 14:00:50 -070069 lport->tt.rport_logoff(rdata);
Robert Love42e9a922008-12-09 15:10:17 -080070 mutex_unlock(&disc->disc_mutex);
71}
72
73/**
Robert Love34f42a02009-02-27 10:55:45 -080074 * fc_disc_recv_rscn_req() - Handle Registered State Change Notification (RSCN)
Robert Love42e9a922008-12-09 15:10:17 -080075 * @sp: Current sequence of the RSCN exchange
76 * @fp: RSCN Frame
77 * @lport: Fibre Channel host port instance
78 *
79 * Locking Note: This function expects that the disc_mutex is locked
80 * before it is called.
81 */
82static void fc_disc_recv_rscn_req(struct fc_seq *sp, struct fc_frame *fp,
83 struct fc_disc *disc)
84{
85 struct fc_lport *lport;
Joe Eykholtab28f1f2009-08-25 14:00:34 -070086 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -080087 struct fc_els_rscn *rp;
88 struct fc_els_rscn_page *pp;
89 struct fc_seq_els_data rjt_data;
90 unsigned int len;
91 int redisc = 0;
92 enum fc_els_rscn_ev_qual ev_qual;
93 enum fc_els_rscn_addr_fmt fmt;
94 LIST_HEAD(disc_ports);
95 struct fc_disc_port *dp, *next;
96
97 lport = disc->lport;
98
Robert Love74147052009-06-10 15:31:10 -070099 FC_DISC_DBG(disc, "Received an RSCN event\n");
Robert Love42e9a922008-12-09 15:10:17 -0800100
101 /* make sure the frame contains an RSCN message */
102 rp = fc_frame_payload_get(fp, sizeof(*rp));
103 if (!rp)
104 goto reject;
105 /* make sure the page length is as expected (4 bytes) */
106 if (rp->rscn_page_len != sizeof(*pp))
107 goto reject;
108 /* get the RSCN payload length */
109 len = ntohs(rp->rscn_plen);
110 if (len < sizeof(*rp))
111 goto reject;
112 /* make sure the frame contains the expected payload */
113 rp = fc_frame_payload_get(fp, len);
114 if (!rp)
115 goto reject;
116 /* payload must be a multiple of the RSCN page size */
117 len -= sizeof(*rp);
118 if (len % sizeof(*pp))
119 goto reject;
120
121 for (pp = (void *)(rp + 1); len > 0; len -= sizeof(*pp), pp++) {
122 ev_qual = pp->rscn_page_flags >> ELS_RSCN_EV_QUAL_BIT;
123 ev_qual &= ELS_RSCN_EV_QUAL_MASK;
124 fmt = pp->rscn_page_flags >> ELS_RSCN_ADDR_FMT_BIT;
125 fmt &= ELS_RSCN_ADDR_FMT_MASK;
126 /*
127 * if we get an address format other than port
128 * (area, domain, fabric), then do a full discovery
129 */
130 switch (fmt) {
131 case ELS_ADDR_FMT_PORT:
Robert Love74147052009-06-10 15:31:10 -0700132 FC_DISC_DBG(disc, "Port address format for port "
133 "(%6x)\n", ntoh24(pp->rscn_fid));
Robert Love42e9a922008-12-09 15:10:17 -0800134 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
135 if (!dp) {
136 redisc = 1;
137 break;
138 }
139 dp->lp = lport;
Robert Love9737e6a2009-08-25 14:02:59 -0700140 dp->port_id = ntoh24(pp->rscn_fid);
Robert Love42e9a922008-12-09 15:10:17 -0800141 list_add_tail(&dp->peers, &disc_ports);
142 break;
143 case ELS_ADDR_FMT_AREA:
144 case ELS_ADDR_FMT_DOM:
145 case ELS_ADDR_FMT_FAB:
146 default:
Robert Love74147052009-06-10 15:31:10 -0700147 FC_DISC_DBG(disc, "Address format is (%d)\n", fmt);
Robert Love42e9a922008-12-09 15:10:17 -0800148 redisc = 1;
149 break;
150 }
151 }
152 lport->tt.seq_els_rsp_send(sp, ELS_LS_ACC, NULL);
153 if (redisc) {
Robert Love74147052009-06-10 15:31:10 -0700154 FC_DISC_DBG(disc, "RSCN received: rediscovering\n");
Robert Love42e9a922008-12-09 15:10:17 -0800155 fc_disc_restart(disc);
156 } else {
Robert Love74147052009-06-10 15:31:10 -0700157 FC_DISC_DBG(disc, "RSCN received: not rediscovering. "
158 "redisc %d state %d in_prog %d\n",
159 redisc, lport->state, disc->pending);
Robert Love42e9a922008-12-09 15:10:17 -0800160 list_for_each_entry_safe(dp, next, &disc_ports, peers) {
161 list_del(&dp->peers);
Robert Love9737e6a2009-08-25 14:02:59 -0700162 rdata = lport->tt.rport_lookup(lport, dp->port_id);
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700163 if (rdata) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700164 lport->tt.rport_logoff(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800165 }
166 fc_disc_single(disc, dp);
167 }
168 }
169 fc_frame_free(fp);
170 return;
171reject:
Robert Love74147052009-06-10 15:31:10 -0700172 FC_DISC_DBG(disc, "Received a bad RSCN frame\n");
Robert Love42e9a922008-12-09 15:10:17 -0800173 rjt_data.fp = NULL;
174 rjt_data.reason = ELS_RJT_LOGIC;
175 rjt_data.explan = ELS_EXPL_NONE;
176 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data);
177 fc_frame_free(fp);
178}
179
180/**
Robert Love34f42a02009-02-27 10:55:45 -0800181 * fc_disc_recv_req() - Handle incoming requests
Robert Love42e9a922008-12-09 15:10:17 -0800182 * @sp: Current sequence of the request exchange
183 * @fp: The frame
184 * @lport: The FC local port
185 *
186 * Locking Note: This function is called from the EM and will lock
187 * the disc_mutex before calling the handler for the
188 * request.
189 */
190static void fc_disc_recv_req(struct fc_seq *sp, struct fc_frame *fp,
191 struct fc_lport *lport)
192{
193 u8 op;
194 struct fc_disc *disc = &lport->disc;
195
196 op = fc_frame_payload_op(fp);
197 switch (op) {
198 case ELS_RSCN:
199 mutex_lock(&disc->disc_mutex);
200 fc_disc_recv_rscn_req(sp, fp, disc);
201 mutex_unlock(&disc->disc_mutex);
202 break;
203 default:
Robert Love74147052009-06-10 15:31:10 -0700204 FC_DISC_DBG(disc, "Received an unsupported request, "
205 "the opcode is (%x)\n", op);
Robert Love42e9a922008-12-09 15:10:17 -0800206 break;
207 }
208}
209
210/**
Robert Love34f42a02009-02-27 10:55:45 -0800211 * fc_disc_restart() - Restart discovery
Robert Love42e9a922008-12-09 15:10:17 -0800212 * @lport: FC discovery context
213 *
214 * Locking Note: This function expects that the disc mutex
215 * is already locked.
216 */
217static void fc_disc_restart(struct fc_disc *disc)
218{
Joe Eykholt935d0fc2009-08-25 14:02:54 -0700219 if (!disc->disc_callback)
220 return;
221
Robert Love74147052009-06-10 15:31:10 -0700222 FC_DISC_DBG(disc, "Restarting discovery\n");
Robert Love42e9a922008-12-09 15:10:17 -0800223
Robert Love42e9a922008-12-09 15:10:17 -0800224 disc->requested = 1;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700225 if (disc->pending)
226 return;
227
228 /*
229 * Advance disc_id. This is an arbitrary non-zero number that will
230 * match the value in the fc_rport_priv after discovery for all
231 * freshly-discovered remote ports. Avoid wrapping to zero.
232 */
233 disc->disc_id = (disc->disc_id + 2) | 1;
Joe Eykholt3667d7e2009-08-25 14:02:38 -0700234 disc->retry_count = 0;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700235 fc_disc_gpn_ft_req(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800236}
237
238/**
Robert Love34f42a02009-02-27 10:55:45 -0800239 * fc_disc_start() - Fibre Channel Target discovery
Robert Love42e9a922008-12-09 15:10:17 -0800240 * @lport: FC local port
Joe Eykholt29d898e2009-08-25 14:02:49 -0700241 * @disc_callback: function to be called when discovery is complete
Robert Love42e9a922008-12-09 15:10:17 -0800242 */
243static void fc_disc_start(void (*disc_callback)(struct fc_lport *,
244 enum fc_disc_event),
245 struct fc_lport *lport)
246{
Robert Love42e9a922008-12-09 15:10:17 -0800247 struct fc_disc *disc = &lport->disc;
248
249 /*
250 * At this point we may have a new disc job or an existing
251 * one. Either way, let's lock when we make changes to it
252 * and send the GPN_FT request.
253 */
254 mutex_lock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800255 disc->disc_callback = disc_callback;
Joe Eykholt29d898e2009-08-25 14:02:49 -0700256 fc_disc_restart(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800257 mutex_unlock(&disc->disc_mutex);
258}
259
Robert Love42e9a922008-12-09 15:10:17 -0800260/**
Robert Love34f42a02009-02-27 10:55:45 -0800261 * fc_disc_done() - Discovery has been completed
Robert Love42e9a922008-12-09 15:10:17 -0800262 * @disc: FC discovery context
Joe Eykholt786681b2009-08-25 14:01:29 -0700263 * @event: discovery completion status
264 *
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700265 * Locking Note: This function expects that the disc mutex is locked before
266 * it is called. The discovery callback is then made with the lock released,
267 * and the lock is re-taken before returning from this function
Robert Love42e9a922008-12-09 15:10:17 -0800268 */
Joe Eykholt786681b2009-08-25 14:01:29 -0700269static void fc_disc_done(struct fc_disc *disc, enum fc_disc_event event)
Robert Love42e9a922008-12-09 15:10:17 -0800270{
271 struct fc_lport *lport = disc->lport;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700272 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800273
Robert Love74147052009-06-10 15:31:10 -0700274 FC_DISC_DBG(disc, "Discovery complete\n");
Robert Love42e9a922008-12-09 15:10:17 -0800275
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700276 disc->pending = 0;
277 if (disc->requested) {
278 fc_disc_restart(disc);
279 return;
280 }
281
282 /*
283 * Go through all remote ports. If they were found in the latest
284 * discovery, reverify or log them in. Otherwise, log them out.
285 * Skip ports which were never discovered. These are the dNS port
286 * and ports which were created by PLOGI.
287 */
288 list_for_each_entry(rdata, &disc->rports, peers) {
289 if (!rdata->disc_id)
290 continue;
291 if (rdata->disc_id == disc->disc_id)
292 lport->tt.rport_login(rdata);
293 else
294 lport->tt.rport_logoff(rdata);
295 }
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700296
297 mutex_unlock(&disc->disc_mutex);
298 disc->disc_callback(lport, event);
299 mutex_lock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800300}
301
302/**
Robert Love34f42a02009-02-27 10:55:45 -0800303 * fc_disc_error() - Handle error on dNS request
Robert Love42e9a922008-12-09 15:10:17 -0800304 * @disc: FC discovery context
305 * @fp: The frame pointer
306 */
307static void fc_disc_error(struct fc_disc *disc, struct fc_frame *fp)
308{
309 struct fc_lport *lport = disc->lport;
310 unsigned long delay = 0;
Robert Love74147052009-06-10 15:31:10 -0700311
312 FC_DISC_DBG(disc, "Error %ld, retries %d/%d\n",
313 PTR_ERR(fp), disc->retry_count,
314 FC_DISC_RETRY_LIMIT);
Robert Love42e9a922008-12-09 15:10:17 -0800315
316 if (!fp || PTR_ERR(fp) == -FC_EX_TIMEOUT) {
317 /*
318 * Memory allocation failure, or the exchange timed out,
319 * retry after delay.
320 */
321 if (disc->retry_count < FC_DISC_RETRY_LIMIT) {
322 /* go ahead and retry */
323 if (!fp)
324 delay = msecs_to_jiffies(FC_DISC_RETRY_DELAY);
325 else {
326 delay = msecs_to_jiffies(lport->e_d_tov);
327
328 /* timeout faster first time */
329 if (!disc->retry_count)
330 delay /= 4;
331 }
332 disc->retry_count++;
333 schedule_delayed_work(&disc->disc_work, delay);
Joe Eykholt786681b2009-08-25 14:01:29 -0700334 } else
335 fc_disc_done(disc, DISC_EV_FAILED);
Robert Love42e9a922008-12-09 15:10:17 -0800336 }
337}
338
339/**
Robert Love34f42a02009-02-27 10:55:45 -0800340 * fc_disc_gpn_ft_req() - Send Get Port Names by FC-4 type (GPN_FT) request
Robert Love42e9a922008-12-09 15:10:17 -0800341 * @lport: FC discovery context
342 *
343 * Locking Note: This function expects that the disc_mutex is locked
344 * before it is called.
345 */
346static void fc_disc_gpn_ft_req(struct fc_disc *disc)
347{
348 struct fc_frame *fp;
349 struct fc_lport *lport = disc->lport;
350
351 WARN_ON(!fc_lport_test_ready(lport));
352
353 disc->pending = 1;
354 disc->requested = 0;
355
356 disc->buf_len = 0;
357 disc->seq_count = 0;
358 fp = fc_frame_alloc(lport,
359 sizeof(struct fc_ct_hdr) +
360 sizeof(struct fc_ns_gid_ft));
361 if (!fp)
362 goto err;
363
Joe Eykholta46f3272009-08-25 14:00:55 -0700364 if (lport->tt.elsct_send(lport, 0, fp,
Robert Love42e9a922008-12-09 15:10:17 -0800365 FC_NS_GPN_FT,
366 fc_disc_gpn_ft_resp,
367 disc, lport->e_d_tov))
368 return;
369err:
370 fc_disc_error(disc, fp);
371}
372
373/**
Joe Eykholt786681b2009-08-25 14:01:29 -0700374 * fc_disc_gpn_ft_parse() - Parse the body of the dNS GPN_FT response.
Robert Love42e9a922008-12-09 15:10:17 -0800375 * @lport: Fibre Channel host port instance
376 * @buf: GPN_FT response buffer
377 * @len: size of response buffer
Joe Eykholt786681b2009-08-25 14:01:29 -0700378 *
379 * Goes through the list of IDs and names resulting from a request.
Robert Love42e9a922008-12-09 15:10:17 -0800380 */
381static int fc_disc_gpn_ft_parse(struct fc_disc *disc, void *buf, size_t len)
382{
383 struct fc_lport *lport;
384 struct fc_gpn_ft_resp *np;
385 char *bp;
386 size_t plen;
387 size_t tlen;
388 int error = 0;
Joe Eykholt795d86f2009-08-25 14:00:39 -0700389 struct fc_rport_identifiers ids;
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700390 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800391
392 lport = disc->lport;
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700393 disc->seq_count++;
Robert Love42e9a922008-12-09 15:10:17 -0800394
395 /*
396 * Handle partial name record left over from previous call.
397 */
398 bp = buf;
399 plen = len;
400 np = (struct fc_gpn_ft_resp *)bp;
401 tlen = disc->buf_len;
Joe Eykholt81a67b92009-08-25 14:02:43 -0700402 disc->buf_len = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800403 if (tlen) {
404 WARN_ON(tlen >= sizeof(*np));
405 plen = sizeof(*np) - tlen;
406 WARN_ON(plen <= 0);
407 WARN_ON(plen >= sizeof(*np));
408 if (plen > len)
409 plen = len;
410 np = &disc->partial_buf;
411 memcpy((char *)np + tlen, bp, plen);
412
413 /*
414 * Set bp so that the loop below will advance it to the
415 * first valid full name element.
416 */
417 bp -= tlen;
418 len += tlen;
419 plen += tlen;
420 disc->buf_len = (unsigned char) plen;
421 if (plen == sizeof(*np))
422 disc->buf_len = 0;
423 }
424
425 /*
426 * Handle full name records, including the one filled from above.
427 * Normally, np == bp and plen == len, but from the partial case above,
428 * bp, len describe the overall buffer, and np, plen describe the
429 * partial buffer, which if would usually be full now.
430 * After the first time through the loop, things return to "normal".
431 */
432 while (plen >= sizeof(*np)) {
Joe Eykholt795d86f2009-08-25 14:00:39 -0700433 ids.port_id = ntoh24(np->fp_fid);
434 ids.port_name = ntohll(np->fp_wwpn);
Robert Love42e9a922008-12-09 15:10:17 -0800435
Joe Eykholt795d86f2009-08-25 14:00:39 -0700436 if (ids.port_id != fc_host_port_id(lport->host) &&
437 ids.port_name != lport->wwpn) {
Robert Love9737e6a2009-08-25 14:02:59 -0700438 rdata = lport->tt.rport_create(lport, ids.port_id);
439 if (rdata) {
440 rdata->ids.port_name = ids.port_name;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700441 rdata->disc_id = disc->disc_id;
Robert Love9737e6a2009-08-25 14:02:59 -0700442 } else {
Robert Love74147052009-06-10 15:31:10 -0700443 printk(KERN_WARNING "libfc: Failed to allocate "
444 "memory for the newly discovered port "
Joe Eykholt795d86f2009-08-25 14:00:39 -0700445 "(%6x)\n", ids.port_id);
Joe Eykholt81a67b92009-08-25 14:02:43 -0700446 error = -ENOMEM;
447 }
Robert Love42e9a922008-12-09 15:10:17 -0800448 }
449
450 if (np->fp_flags & FC_NS_FID_LAST) {
Joe Eykholt786681b2009-08-25 14:01:29 -0700451 fc_disc_done(disc, DISC_EV_SUCCESS);
Robert Love42e9a922008-12-09 15:10:17 -0800452 len = 0;
453 break;
454 }
455 len -= sizeof(*np);
456 bp += sizeof(*np);
457 np = (struct fc_gpn_ft_resp *)bp;
458 plen = len;
459 }
460
461 /*
462 * Save any partial record at the end of the buffer for next time.
463 */
464 if (error == 0 && len > 0 && len < sizeof(*np)) {
465 if (np != &disc->partial_buf) {
Robert Love74147052009-06-10 15:31:10 -0700466 FC_DISC_DBG(disc, "Partial buffer remains "
467 "for discovery\n");
Robert Love42e9a922008-12-09 15:10:17 -0800468 memcpy(&disc->partial_buf, np, len);
469 }
470 disc->buf_len = (unsigned char) len;
Robert Love42e9a922008-12-09 15:10:17 -0800471 }
472 return error;
473}
474
Robert Love34f42a02009-02-27 10:55:45 -0800475/**
476 * fc_disc_timeout() - Retry handler for the disc component
477 * @work: Structure holding disc obj that needs retry discovery
478 *
Robert Love42e9a922008-12-09 15:10:17 -0800479 * Handle retry of memory allocation for remote ports.
480 */
481static void fc_disc_timeout(struct work_struct *work)
482{
483 struct fc_disc *disc = container_of(work,
484 struct fc_disc,
485 disc_work.work);
486 mutex_lock(&disc->disc_mutex);
Joe Eykholt3667d7e2009-08-25 14:02:38 -0700487 fc_disc_gpn_ft_req(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800488 mutex_unlock(&disc->disc_mutex);
489}
490
491/**
Robert Love34f42a02009-02-27 10:55:45 -0800492 * fc_disc_gpn_ft_resp() - Handle a response frame from Get Port Names (GPN_FT)
Robert Love42e9a922008-12-09 15:10:17 -0800493 * @sp: Current sequence of GPN_FT exchange
494 * @fp: response frame
495 * @lp_arg: Fibre Channel host port instance
496 *
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700497 * Locking Note: This function is called without disc mutex held, and
498 * should do all its processing with the mutex held
Robert Love42e9a922008-12-09 15:10:17 -0800499 */
500static void fc_disc_gpn_ft_resp(struct fc_seq *sp, struct fc_frame *fp,
501 void *disc_arg)
502{
503 struct fc_disc *disc = disc_arg;
504 struct fc_ct_hdr *cp;
505 struct fc_frame_header *fh;
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700506 enum fc_disc_event event = DISC_EV_NONE;
Robert Love42e9a922008-12-09 15:10:17 -0800507 unsigned int seq_cnt;
Robert Love42e9a922008-12-09 15:10:17 -0800508 unsigned int len;
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700509 int error = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800510
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700511 mutex_lock(&disc->disc_mutex);
Robert Love74147052009-06-10 15:31:10 -0700512 FC_DISC_DBG(disc, "Received a GPN_FT response\n");
Robert Love42e9a922008-12-09 15:10:17 -0800513
514 if (IS_ERR(fp)) {
515 fc_disc_error(disc, fp);
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700516 mutex_unlock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800517 return;
518 }
519
520 WARN_ON(!fc_frame_is_linear(fp)); /* buffer must be contiguous */
521 fh = fc_frame_header_get(fp);
522 len = fr_len(fp) - sizeof(*fh);
523 seq_cnt = ntohs(fh->fh_seq_cnt);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700524 if (fr_sof(fp) == FC_SOF_I3 && seq_cnt == 0 && disc->seq_count == 0) {
Robert Love42e9a922008-12-09 15:10:17 -0800525 cp = fc_frame_payload_get(fp, sizeof(*cp));
526 if (!cp) {
Robert Love74147052009-06-10 15:31:10 -0700527 FC_DISC_DBG(disc, "GPN_FT response too short, len %d\n",
528 fr_len(fp));
Joe Eykholt883a3372009-08-25 14:02:27 -0700529 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800530 } else if (ntohs(cp->ct_cmd) == FC_FS_ACC) {
531
Robert Love34f42a02009-02-27 10:55:45 -0800532 /* Accepted, parse the response. */
Robert Love42e9a922008-12-09 15:10:17 -0800533 len -= sizeof(*cp);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700534 error = fc_disc_gpn_ft_parse(disc, cp + 1, len);
Robert Love42e9a922008-12-09 15:10:17 -0800535 } else if (ntohs(cp->ct_cmd) == FC_FS_RJT) {
Robert Love74147052009-06-10 15:31:10 -0700536 FC_DISC_DBG(disc, "GPN_FT rejected reason %x exp %x "
537 "(check zoning)\n", cp->ct_reason,
538 cp->ct_explan);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700539 event = DISC_EV_FAILED;
Joe Eykholtc7626082009-08-25 14:02:33 -0700540 if (cp->ct_reason == FC_FS_RJT_UNABL &&
541 cp->ct_explan == FC_FS_EXP_FTNR)
542 event = DISC_EV_SUCCESS;
Robert Love42e9a922008-12-09 15:10:17 -0800543 } else {
Robert Love74147052009-06-10 15:31:10 -0700544 FC_DISC_DBG(disc, "GPN_FT unexpected response code "
545 "%x\n", ntohs(cp->ct_cmd));
Joe Eykholt883a3372009-08-25 14:02:27 -0700546 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800547 }
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700548 } else if (fr_sof(fp) == FC_SOF_N3 && seq_cnt == disc->seq_count) {
549 error = fc_disc_gpn_ft_parse(disc, fh + 1, len);
Robert Love42e9a922008-12-09 15:10:17 -0800550 } else {
Robert Love74147052009-06-10 15:31:10 -0700551 FC_DISC_DBG(disc, "GPN_FT unexpected frame - out of sequence? "
552 "seq_cnt %x expected %x sof %x eof %x\n",
553 seq_cnt, disc->seq_count, fr_sof(fp), fr_eof(fp));
Joe Eykholt883a3372009-08-25 14:02:27 -0700554 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800555 }
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700556 if (error)
557 fc_disc_error(disc, fp);
558 else if (event != DISC_EV_NONE)
559 fc_disc_done(disc, event);
Robert Love42e9a922008-12-09 15:10:17 -0800560 fc_frame_free(fp);
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700561 mutex_unlock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800562}
563
564/**
Robert Love34f42a02009-02-27 10:55:45 -0800565 * fc_disc_single() - Discover the directory information for a single target
Robert Love42e9a922008-12-09 15:10:17 -0800566 * @lport: FC local port
567 * @dp: The port to rediscover
568 *
569 * Locking Note: This function expects that the disc_mutex is locked
570 * before it is called.
571 */
572static void fc_disc_single(struct fc_disc *disc, struct fc_disc_port *dp)
573{
574 struct fc_lport *lport;
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700575 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800576
577 lport = disc->lport;
578
Robert Love9737e6a2009-08-25 14:02:59 -0700579 if (dp->port_id == fc_host_port_id(lport->host))
Robert Love42e9a922008-12-09 15:10:17 -0800580 goto out;
581
Robert Love9737e6a2009-08-25 14:02:59 -0700582 rdata = lport->tt.rport_create(lport, dp->port_id);
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700583 if (rdata) {
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700584 rdata->disc_id = disc->disc_id;
Robert Love42e9a922008-12-09 15:10:17 -0800585 kfree(dp);
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700586 lport->tt.rport_login(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800587 }
588 return;
589out:
590 kfree(dp);
591}
592
593/**
Robert Love34f42a02009-02-27 10:55:45 -0800594 * fc_disc_stop() - Stop discovery for a given lport
Robert Love42e9a922008-12-09 15:10:17 -0800595 * @lport: The lport that discovery should stop for
596 */
597void fc_disc_stop(struct fc_lport *lport)
598{
599 struct fc_disc *disc = &lport->disc;
600
601 if (disc) {
602 cancel_delayed_work_sync(&disc->disc_work);
603 fc_disc_stop_rports(disc);
604 }
605}
606
607/**
Robert Love34f42a02009-02-27 10:55:45 -0800608 * fc_disc_stop_final() - Stop discovery for a given lport
Robert Love42e9a922008-12-09 15:10:17 -0800609 * @lport: The lport that discovery should stop for
610 *
611 * This function will block until discovery has been
612 * completely stopped and all rports have been deleted.
613 */
614void fc_disc_stop_final(struct fc_lport *lport)
615{
616 fc_disc_stop(lport);
617 lport->tt.rport_flush_queue();
618}
619
620/**
Robert Love34f42a02009-02-27 10:55:45 -0800621 * fc_disc_init() - Initialize the discovery block
Robert Love42e9a922008-12-09 15:10:17 -0800622 * @lport: FC local port
623 */
624int fc_disc_init(struct fc_lport *lport)
625{
626 struct fc_disc *disc;
627
628 if (!lport->tt.disc_start)
629 lport->tt.disc_start = fc_disc_start;
630
631 if (!lport->tt.disc_stop)
632 lport->tt.disc_stop = fc_disc_stop;
633
634 if (!lport->tt.disc_stop_final)
635 lport->tt.disc_stop_final = fc_disc_stop_final;
636
637 if (!lport->tt.disc_recv_req)
638 lport->tt.disc_recv_req = fc_disc_recv_req;
639
Robert Love42e9a922008-12-09 15:10:17 -0800640 disc = &lport->disc;
641 INIT_DELAYED_WORK(&disc->disc_work, fc_disc_timeout);
642 mutex_init(&disc->disc_mutex);
643 INIT_LIST_HEAD(&disc->rports);
Robert Love42e9a922008-12-09 15:10:17 -0800644
645 disc->lport = lport;
Robert Love42e9a922008-12-09 15:10:17 -0800646
647 return 0;
648}
649EXPORT_SYMBOL(fc_disc_init);