blob: 2b865c6423e293b6e3b4a04cac83a5a4923d0e72 [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001// SPDX-License-Identifier: GPL-2.0-only
Robert Love42e9a922008-12-09 15:10:17 -08002/*
3 * Copyright(c) 2007 - 2008 Intel Corporation. All rights reserved.
4 *
Robert Love42e9a922008-12-09 15:10:17 -08005 * Maintained at www.Open-FCoE.org
6 */
7
8/*
9 * Target Discovery
10 *
11 * This block discovers all FC-4 remote ports, including FCP initiators. It
12 * also handles RSCN events and re-discovery if necessary.
13 */
14
15/*
16 * DISC LOCKING
17 *
18 * The disc mutex is can be locked when acquiring rport locks, but may not
19 * be held when acquiring the lport lock. Refer to fc_lport.c for more
20 * details.
21 */
22
23#include <linux/timer.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Robert Love42e9a922008-12-09 15:10:17 -080025#include <linux/err.h>
Paul Gortmaker09703662011-05-27 09:37:25 -040026#include <linux/export.h>
Ingo Molnarb2d09102017-02-04 01:27:20 +010027#include <linux/rculist.h>
28
Robert Love42e9a922008-12-09 15:10:17 -080029#include <asm/unaligned.h>
30
31#include <scsi/fc/fc_gs.h>
32
33#include <scsi/libfc.h>
34
Robert Love8866a5d2009-11-03 11:45:58 -080035#include "fc_libfc.h"
36
Robert Love42e9a922008-12-09 15:10:17 -080037#define FC_DISC_RETRY_LIMIT 3 /* max retries */
38#define FC_DISC_RETRY_DELAY 500UL /* (msecs) delay */
39
Robert Love42e9a922008-12-09 15:10:17 -080040static void fc_disc_gpn_ft_req(struct fc_disc *);
41static void fc_disc_gpn_ft_resp(struct fc_seq *, struct fc_frame *, void *);
Joe Eykholt786681b2009-08-25 14:01:29 -070042static void fc_disc_done(struct fc_disc *, enum fc_disc_event);
Robert Love42e9a922008-12-09 15:10:17 -080043static void fc_disc_timeout(struct work_struct *);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -070044static int fc_disc_single(struct fc_lport *, struct fc_disc_port *);
Robert Love42e9a922008-12-09 15:10:17 -080045static void fc_disc_restart(struct fc_disc *);
46
47/**
Robert Love3a3b42b2009-11-03 11:47:39 -080048 * fc_disc_stop_rports() - Delete all the remote ports associated with the lport
49 * @disc: The discovery job to stop remote ports on
Robert Love42e9a922008-12-09 15:10:17 -080050 */
Bart Van Asschec6b21c92012-01-13 17:26:20 -080051static void fc_disc_stop_rports(struct fc_disc *disc)
Robert Love42e9a922008-12-09 15:10:17 -080052{
Joe Eykholt42e90412010-07-20 15:19:37 -070053 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -080054
Hannes Reineckebc3d12b2018-07-11 10:09:28 +020055 lockdep_assert_held(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -080056
Hannes Reineckebc3d12b2018-07-11 10:09:28 +020057 list_for_each_entry(rdata, &disc->rports, peers) {
Hannes Reineckea407c592016-09-30 11:01:15 +020058 if (kref_get_unless_zero(&rdata->kref)) {
Hannes Reineckec96c7922016-10-18 10:01:44 +020059 fc_rport_logoff(rdata);
Hannes Reinecke944ef962016-10-18 10:01:39 +020060 kref_put(&rdata->kref, fc_rport_destroy);
Hannes Reineckea407c592016-09-30 11:01:15 +020061 }
62 }
Robert Love42e9a922008-12-09 15:10:17 -080063}
64
65/**
Robert Love34f42a02009-02-27 10:55:45 -080066 * fc_disc_recv_rscn_req() - Handle Registered State Change Notification (RSCN)
Joe Eykholt922611562010-07-20 15:21:12 -070067 * @disc: The discovery object to which the RSCN applies
Robert Love3a3b42b2009-11-03 11:47:39 -080068 * @fp: The RSCN frame
Robert Love42e9a922008-12-09 15:10:17 -080069 */
Joe Eykholt922611562010-07-20 15:21:12 -070070static void fc_disc_recv_rscn_req(struct fc_disc *disc, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -080071{
72 struct fc_lport *lport;
Robert Love42e9a922008-12-09 15:10:17 -080073 struct fc_els_rscn *rp;
74 struct fc_els_rscn_page *pp;
75 struct fc_seq_els_data rjt_data;
76 unsigned int len;
77 int redisc = 0;
78 enum fc_els_rscn_ev_qual ev_qual;
79 enum fc_els_rscn_addr_fmt fmt;
80 LIST_HEAD(disc_ports);
81 struct fc_disc_port *dp, *next;
82
Hannes Reineckeee356242018-07-04 13:56:48 +020083 lockdep_assert_held(&disc->disc_mutex);
84
Joe Eykholt06852302010-07-20 15:19:53 -070085 lport = fc_disc_lport(disc);
Robert Love42e9a922008-12-09 15:10:17 -080086
Robert Love74147052009-06-10 15:31:10 -070087 FC_DISC_DBG(disc, "Received an RSCN event\n");
Robert Love42e9a922008-12-09 15:10:17 -080088
89 /* make sure the frame contains an RSCN message */
90 rp = fc_frame_payload_get(fp, sizeof(*rp));
91 if (!rp)
92 goto reject;
93 /* make sure the page length is as expected (4 bytes) */
94 if (rp->rscn_page_len != sizeof(*pp))
95 goto reject;
96 /* get the RSCN payload length */
97 len = ntohs(rp->rscn_plen);
98 if (len < sizeof(*rp))
99 goto reject;
100 /* make sure the frame contains the expected payload */
101 rp = fc_frame_payload_get(fp, len);
102 if (!rp)
103 goto reject;
104 /* payload must be a multiple of the RSCN page size */
105 len -= sizeof(*rp);
106 if (len % sizeof(*pp))
107 goto reject;
108
109 for (pp = (void *)(rp + 1); len > 0; len -= sizeof(*pp), pp++) {
110 ev_qual = pp->rscn_page_flags >> ELS_RSCN_EV_QUAL_BIT;
111 ev_qual &= ELS_RSCN_EV_QUAL_MASK;
112 fmt = pp->rscn_page_flags >> ELS_RSCN_ADDR_FMT_BIT;
113 fmt &= ELS_RSCN_ADDR_FMT_MASK;
114 /*
115 * if we get an address format other than port
116 * (area, domain, fabric), then do a full discovery
117 */
118 switch (fmt) {
119 case ELS_ADDR_FMT_PORT:
Robert Love74147052009-06-10 15:31:10 -0700120 FC_DISC_DBG(disc, "Port address format for port "
Chris Leechce8b5df2010-04-09 14:23:10 -0700121 "(%6.6x)\n", ntoh24(pp->rscn_fid));
Robert Love42e9a922008-12-09 15:10:17 -0800122 dp = kzalloc(sizeof(*dp), GFP_KERNEL);
123 if (!dp) {
124 redisc = 1;
125 break;
126 }
127 dp->lp = lport;
Robert Love9737e6a2009-08-25 14:02:59 -0700128 dp->port_id = ntoh24(pp->rscn_fid);
Robert Love42e9a922008-12-09 15:10:17 -0800129 list_add_tail(&dp->peers, &disc_ports);
130 break;
131 case ELS_ADDR_FMT_AREA:
132 case ELS_ADDR_FMT_DOM:
133 case ELS_ADDR_FMT_FAB:
134 default:
Robert Love74147052009-06-10 15:31:10 -0700135 FC_DISC_DBG(disc, "Address format is (%d)\n", fmt);
Robert Love42e9a922008-12-09 15:10:17 -0800136 redisc = 1;
137 break;
138 }
139 }
Hannes Reinecke7ab24dd2016-10-18 10:01:35 +0200140 fc_seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700141
142 /*
143 * If not doing a complete rediscovery, do GPN_ID on
144 * the individual ports mentioned in the list.
145 * If any of these get an error, do a full rediscovery.
146 * In any case, go through the list and free the entries.
147 */
148 list_for_each_entry_safe(dp, next, &disc_ports, peers) {
149 list_del(&dp->peers);
150 if (!redisc)
151 redisc = fc_disc_single(lport, dp);
152 kfree(dp);
153 }
Robert Love42e9a922008-12-09 15:10:17 -0800154 if (redisc) {
Robert Love74147052009-06-10 15:31:10 -0700155 FC_DISC_DBG(disc, "RSCN received: rediscovering\n");
Robert Love42e9a922008-12-09 15:10:17 -0800156 fc_disc_restart(disc);
157 } else {
Robert Love74147052009-06-10 15:31:10 -0700158 FC_DISC_DBG(disc, "RSCN received: not rediscovering. "
159 "redisc %d state %d in_prog %d\n",
160 redisc, lport->state, disc->pending);
Robert Love42e9a922008-12-09 15:10:17 -0800161 }
162 fc_frame_free(fp);
163 return;
164reject:
Robert Love74147052009-06-10 15:31:10 -0700165 FC_DISC_DBG(disc, "Received a bad RSCN frame\n");
Robert Love42e9a922008-12-09 15:10:17 -0800166 rjt_data.reason = ELS_RJT_LOGIC;
167 rjt_data.explan = ELS_EXPL_NONE;
Hannes Reinecke7ab24dd2016-10-18 10:01:35 +0200168 fc_seq_els_rsp_send(fp, ELS_LS_RJT, &rjt_data);
Robert Love42e9a922008-12-09 15:10:17 -0800169 fc_frame_free(fp);
170}
171
172/**
Robert Love34f42a02009-02-27 10:55:45 -0800173 * fc_disc_recv_req() - Handle incoming requests
Robert Love3a3b42b2009-11-03 11:47:39 -0800174 * @lport: The local port receiving the request
Joe Eykholt922611562010-07-20 15:21:12 -0700175 * @fp: The request frame
Robert Love42e9a922008-12-09 15:10:17 -0800176 *
177 * Locking Note: This function is called from the EM and will lock
178 * the disc_mutex before calling the handler for the
179 * request.
180 */
Joe Eykholt922611562010-07-20 15:21:12 -0700181static void fc_disc_recv_req(struct fc_lport *lport, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800182{
183 u8 op;
184 struct fc_disc *disc = &lport->disc;
185
186 op = fc_frame_payload_op(fp);
187 switch (op) {
188 case ELS_RSCN:
189 mutex_lock(&disc->disc_mutex);
Joe Eykholt922611562010-07-20 15:21:12 -0700190 fc_disc_recv_rscn_req(disc, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800191 mutex_unlock(&disc->disc_mutex);
192 break;
193 default:
Robert Love74147052009-06-10 15:31:10 -0700194 FC_DISC_DBG(disc, "Received an unsupported request, "
195 "the opcode is (%x)\n", op);
Hillf Danton83383dd2011-05-16 16:45:35 -0700196 fc_frame_free(fp);
Robert Love42e9a922008-12-09 15:10:17 -0800197 break;
198 }
199}
200
201/**
Robert Love34f42a02009-02-27 10:55:45 -0800202 * fc_disc_restart() - Restart discovery
Robert Love3a3b42b2009-11-03 11:47:39 -0800203 * @disc: The discovery object to be restarted
Robert Love42e9a922008-12-09 15:10:17 -0800204 */
205static void fc_disc_restart(struct fc_disc *disc)
206{
Hannes Reineckeee356242018-07-04 13:56:48 +0200207 lockdep_assert_held(&disc->disc_mutex);
208
Joe Eykholt935d0fc2009-08-25 14:02:54 -0700209 if (!disc->disc_callback)
210 return;
211
Robert Love74147052009-06-10 15:31:10 -0700212 FC_DISC_DBG(disc, "Restarting discovery\n");
Robert Love42e9a922008-12-09 15:10:17 -0800213
Robert Love42e9a922008-12-09 15:10:17 -0800214 disc->requested = 1;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700215 if (disc->pending)
216 return;
217
218 /*
219 * Advance disc_id. This is an arbitrary non-zero number that will
220 * match the value in the fc_rport_priv after discovery for all
221 * freshly-discovered remote ports. Avoid wrapping to zero.
222 */
223 disc->disc_id = (disc->disc_id + 2) | 1;
Joe Eykholt3667d7e2009-08-25 14:02:38 -0700224 disc->retry_count = 0;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700225 fc_disc_gpn_ft_req(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800226}
227
228/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800229 * fc_disc_start() - Start discovery on a local port
230 * @lport: The local port to have discovery started on
231 * @disc_callback: Callback function to be called when discovery is complete
Robert Love42e9a922008-12-09 15:10:17 -0800232 */
233static void fc_disc_start(void (*disc_callback)(struct fc_lport *,
234 enum fc_disc_event),
235 struct fc_lport *lport)
236{
Robert Love42e9a922008-12-09 15:10:17 -0800237 struct fc_disc *disc = &lport->disc;
238
239 /*
240 * At this point we may have a new disc job or an existing
241 * one. Either way, let's lock when we make changes to it
242 * and send the GPN_FT request.
243 */
244 mutex_lock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800245 disc->disc_callback = disc_callback;
Joe Eykholt29d898e2009-08-25 14:02:49 -0700246 fc_disc_restart(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800247 mutex_unlock(&disc->disc_mutex);
248}
249
Robert Love42e9a922008-12-09 15:10:17 -0800250/**
Robert Love34f42a02009-02-27 10:55:45 -0800251 * fc_disc_done() - Discovery has been completed
Robert Love3a3b42b2009-11-03 11:47:39 -0800252 * @disc: The discovery context
253 * @event: The discovery completion status
Robert Love42e9a922008-12-09 15:10:17 -0800254 */
Joe Eykholt786681b2009-08-25 14:01:29 -0700255static void fc_disc_done(struct fc_disc *disc, enum fc_disc_event event)
Robert Love42e9a922008-12-09 15:10:17 -0800256{
Joe Eykholt06852302010-07-20 15:19:53 -0700257 struct fc_lport *lport = fc_disc_lport(disc);
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700258 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800259
Hannes Reineckeee356242018-07-04 13:56:48 +0200260 lockdep_assert_held(&disc->disc_mutex);
Robert Love74147052009-06-10 15:31:10 -0700261 FC_DISC_DBG(disc, "Discovery complete\n");
Robert Love42e9a922008-12-09 15:10:17 -0800262
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700263 disc->pending = 0;
264 if (disc->requested) {
265 fc_disc_restart(disc);
266 return;
267 }
268
269 /*
Robert Love3a3b42b2009-11-03 11:47:39 -0800270 * Go through all remote ports. If they were found in the latest
271 * discovery, reverify or log them in. Otherwise, log them out.
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700272 * Skip ports which were never discovered. These are the dNS port
273 * and ports which were created by PLOGI.
Hannes Reineckefa519f72018-07-04 13:59:16 +0200274 *
275 * We don't need to use the _rcu variant here as the rport list
276 * is protected by the disc mutex which is already held on entry.
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700277 */
Hannes Reineckefa519f72018-07-04 13:59:16 +0200278 list_for_each_entry(rdata, &disc->rports, peers) {
Hannes Reineckea407c592016-09-30 11:01:15 +0200279 if (!kref_get_unless_zero(&rdata->kref))
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700280 continue;
Hannes Reineckea407c592016-09-30 11:01:15 +0200281 if (rdata->disc_id) {
282 if (rdata->disc_id == disc->disc_id)
Hannes Reinecke05d7d3b2016-10-18 10:01:43 +0200283 fc_rport_login(rdata);
Hannes Reineckea407c592016-09-30 11:01:15 +0200284 else
Hannes Reineckec96c7922016-10-18 10:01:44 +0200285 fc_rport_logoff(rdata);
Hannes Reineckea407c592016-09-30 11:01:15 +0200286 }
Hannes Reinecke944ef962016-10-18 10:01:39 +0200287 kref_put(&rdata->kref, fc_rport_destroy);
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700288 }
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700289 mutex_unlock(&disc->disc_mutex);
290 disc->disc_callback(lport, event);
291 mutex_lock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800292}
293
294/**
Robert Love34f42a02009-02-27 10:55:45 -0800295 * fc_disc_error() - Handle error on dNS request
Robert Love3a3b42b2009-11-03 11:47:39 -0800296 * @disc: The discovery context
297 * @fp: The error code encoded as a frame pointer
Robert Love42e9a922008-12-09 15:10:17 -0800298 */
299static void fc_disc_error(struct fc_disc *disc, struct fc_frame *fp)
300{
Joe Eykholt06852302010-07-20 15:19:53 -0700301 struct fc_lport *lport = fc_disc_lport(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800302 unsigned long delay = 0;
Robert Love74147052009-06-10 15:31:10 -0700303
304 FC_DISC_DBG(disc, "Error %ld, retries %d/%d\n",
305 PTR_ERR(fp), disc->retry_count,
306 FC_DISC_RETRY_LIMIT);
Robert Love42e9a922008-12-09 15:10:17 -0800307
308 if (!fp || PTR_ERR(fp) == -FC_EX_TIMEOUT) {
309 /*
310 * Memory allocation failure, or the exchange timed out,
311 * retry after delay.
312 */
313 if (disc->retry_count < FC_DISC_RETRY_LIMIT) {
314 /* go ahead and retry */
315 if (!fp)
316 delay = msecs_to_jiffies(FC_DISC_RETRY_DELAY);
317 else {
318 delay = msecs_to_jiffies(lport->e_d_tov);
319
320 /* timeout faster first time */
321 if (!disc->retry_count)
322 delay /= 4;
323 }
324 disc->retry_count++;
325 schedule_delayed_work(&disc->disc_work, delay);
Joe Eykholt786681b2009-08-25 14:01:29 -0700326 } else
327 fc_disc_done(disc, DISC_EV_FAILED);
Bhanu Prakash Gollapudi00832082012-02-10 17:18:57 -0800328 } else if (PTR_ERR(fp) == -FC_EX_CLOSED) {
329 /*
330 * if discovery fails due to lport reset, clear
331 * pending flag so that subsequent discovery can
332 * continue
333 */
334 disc->pending = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800335 }
336}
337
338/**
Robert Love34f42a02009-02-27 10:55:45 -0800339 * fc_disc_gpn_ft_req() - Send Get Port Names by FC-4 type (GPN_FT) request
Robert Love3a3b42b2009-11-03 11:47:39 -0800340 * @lport: The discovery context
Robert Love42e9a922008-12-09 15:10:17 -0800341 */
342static void fc_disc_gpn_ft_req(struct fc_disc *disc)
343{
344 struct fc_frame *fp;
Joe Eykholt06852302010-07-20 15:19:53 -0700345 struct fc_lport *lport = fc_disc_lport(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800346
Hannes Reineckeee356242018-07-04 13:56:48 +0200347 lockdep_assert_held(&disc->disc_mutex);
348
Robert Love42e9a922008-12-09 15:10:17 -0800349 WARN_ON(!fc_lport_test_ready(lport));
350
351 disc->pending = 1;
352 disc->requested = 0;
353
354 disc->buf_len = 0;
355 disc->seq_count = 0;
356 fp = fc_frame_alloc(lport,
357 sizeof(struct fc_ct_hdr) +
358 sizeof(struct fc_ns_gid_ft));
359 if (!fp)
360 goto err;
361
Joe Eykholta46f3272009-08-25 14:00:55 -0700362 if (lport->tt.elsct_send(lport, 0, fp,
Robert Love42e9a922008-12-09 15:10:17 -0800363 FC_NS_GPN_FT,
364 fc_disc_gpn_ft_resp,
Joe Eykholtb94f8952009-11-03 11:50:21 -0800365 disc, 3 * lport->r_a_tov))
Robert Love42e9a922008-12-09 15:10:17 -0800366 return;
367err:
Chris Leech8f550f92009-10-21 16:28:09 -0700368 fc_disc_error(disc, NULL);
Robert Love42e9a922008-12-09 15:10:17 -0800369}
370
371/**
Joe Eykholt786681b2009-08-25 14:01:29 -0700372 * fc_disc_gpn_ft_parse() - Parse the body of the dNS GPN_FT response.
Robert Love3a3b42b2009-11-03 11:47:39 -0800373 * @lport: The local port the GPN_FT was received on
374 * @buf: The GPN_FT response buffer
375 * @len: The size of response buffer
Joe Eykholt786681b2009-08-25 14:01:29 -0700376 *
377 * Goes through the list of IDs and names resulting from a request.
Robert Love42e9a922008-12-09 15:10:17 -0800378 */
379static int fc_disc_gpn_ft_parse(struct fc_disc *disc, void *buf, size_t len)
380{
381 struct fc_lport *lport;
382 struct fc_gpn_ft_resp *np;
383 char *bp;
384 size_t plen;
385 size_t tlen;
386 int error = 0;
Joe Eykholt795d86f2009-08-25 14:00:39 -0700387 struct fc_rport_identifiers ids;
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700388 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800389
Joe Eykholt06852302010-07-20 15:19:53 -0700390 lport = fc_disc_lport(disc);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700391 disc->seq_count++;
Robert Love42e9a922008-12-09 15:10:17 -0800392
393 /*
394 * Handle partial name record left over from previous call.
395 */
396 bp = buf;
397 plen = len;
398 np = (struct fc_gpn_ft_resp *)bp;
399 tlen = disc->buf_len;
Joe Eykholt81a67b92009-08-25 14:02:43 -0700400 disc->buf_len = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800401 if (tlen) {
402 WARN_ON(tlen >= sizeof(*np));
403 plen = sizeof(*np) - tlen;
404 WARN_ON(plen <= 0);
405 WARN_ON(plen >= sizeof(*np));
406 if (plen > len)
407 plen = len;
408 np = &disc->partial_buf;
409 memcpy((char *)np + tlen, bp, plen);
410
411 /*
412 * Set bp so that the loop below will advance it to the
413 * first valid full name element.
414 */
415 bp -= tlen;
416 len += tlen;
417 plen += tlen;
418 disc->buf_len = (unsigned char) plen;
419 if (plen == sizeof(*np))
420 disc->buf_len = 0;
421 }
422
423 /*
424 * Handle full name records, including the one filled from above.
425 * Normally, np == bp and plen == len, but from the partial case above,
426 * bp, len describe the overall buffer, and np, plen describe the
427 * partial buffer, which if would usually be full now.
428 * After the first time through the loop, things return to "normal".
429 */
430 while (plen >= sizeof(*np)) {
Joe Eykholt795d86f2009-08-25 14:00:39 -0700431 ids.port_id = ntoh24(np->fp_fid);
432 ids.port_name = ntohll(np->fp_wwpn);
Robert Love42e9a922008-12-09 15:10:17 -0800433
Robert Love7b2787e2010-05-07 15:18:41 -0700434 if (ids.port_id != lport->port_id &&
Joe Eykholt795d86f2009-08-25 14:00:39 -0700435 ids.port_name != lport->wwpn) {
Hannes Reinecke25800642016-10-18 10:01:42 +0200436 rdata = fc_rport_create(lport, ids.port_id);
Robert Love9737e6a2009-08-25 14:02:59 -0700437 if (rdata) {
438 rdata->ids.port_name = ids.port_name;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700439 rdata->disc_id = disc->disc_id;
Robert Love9737e6a2009-08-25 14:02:59 -0700440 } else {
Robert Love74147052009-06-10 15:31:10 -0700441 printk(KERN_WARNING "libfc: Failed to allocate "
442 "memory for the newly discovered port "
Chris Leechce8b5df2010-04-09 14:23:10 -0700443 "(%6.6x)\n", ids.port_id);
Joe Eykholt81a67b92009-08-25 14:02:43 -0700444 error = -ENOMEM;
445 }
Robert Love42e9a922008-12-09 15:10:17 -0800446 }
447
448 if (np->fp_flags & FC_NS_FID_LAST) {
Joe Eykholt786681b2009-08-25 14:01:29 -0700449 fc_disc_done(disc, DISC_EV_SUCCESS);
Robert Love42e9a922008-12-09 15:10:17 -0800450 len = 0;
451 break;
452 }
453 len -= sizeof(*np);
454 bp += sizeof(*np);
455 np = (struct fc_gpn_ft_resp *)bp;
456 plen = len;
457 }
458
459 /*
460 * Save any partial record at the end of the buffer for next time.
461 */
462 if (error == 0 && len > 0 && len < sizeof(*np)) {
463 if (np != &disc->partial_buf) {
Robert Love74147052009-06-10 15:31:10 -0700464 FC_DISC_DBG(disc, "Partial buffer remains "
465 "for discovery\n");
Robert Love42e9a922008-12-09 15:10:17 -0800466 memcpy(&disc->partial_buf, np, len);
467 }
468 disc->buf_len = (unsigned char) len;
Robert Love42e9a922008-12-09 15:10:17 -0800469 }
470 return error;
471}
472
Robert Love34f42a02009-02-27 10:55:45 -0800473/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800474 * fc_disc_timeout() - Handler for discovery timeouts
475 * @work: Structure holding discovery context that needs to retry discovery
Robert Love42e9a922008-12-09 15:10:17 -0800476 */
477static void fc_disc_timeout(struct work_struct *work)
478{
479 struct fc_disc *disc = container_of(work,
480 struct fc_disc,
481 disc_work.work);
482 mutex_lock(&disc->disc_mutex);
Joe Eykholt3667d7e2009-08-25 14:02:38 -0700483 fc_disc_gpn_ft_req(disc);
Robert Love42e9a922008-12-09 15:10:17 -0800484 mutex_unlock(&disc->disc_mutex);
485}
486
487/**
Robert Love34f42a02009-02-27 10:55:45 -0800488 * fc_disc_gpn_ft_resp() - Handle a response frame from Get Port Names (GPN_FT)
Robert Love3a3b42b2009-11-03 11:47:39 -0800489 * @sp: The sequence that the GPN_FT response was received on
490 * @fp: The GPN_FT response frame
491 * @lp_arg: The discovery context
Robert Love42e9a922008-12-09 15:10:17 -0800492 *
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700493 * Locking Note: This function is called without disc mutex held, and
494 * should do all its processing with the mutex held
Robert Love42e9a922008-12-09 15:10:17 -0800495 */
496static void fc_disc_gpn_ft_resp(struct fc_seq *sp, struct fc_frame *fp,
497 void *disc_arg)
498{
499 struct fc_disc *disc = disc_arg;
500 struct fc_ct_hdr *cp;
501 struct fc_frame_header *fh;
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700502 enum fc_disc_event event = DISC_EV_NONE;
Robert Love42e9a922008-12-09 15:10:17 -0800503 unsigned int seq_cnt;
Robert Love42e9a922008-12-09 15:10:17 -0800504 unsigned int len;
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700505 int error = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800506
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700507 mutex_lock(&disc->disc_mutex);
Robert Love74147052009-06-10 15:31:10 -0700508 FC_DISC_DBG(disc, "Received a GPN_FT response\n");
Robert Love42e9a922008-12-09 15:10:17 -0800509
510 if (IS_ERR(fp)) {
511 fc_disc_error(disc, fp);
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700512 mutex_unlock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800513 return;
514 }
515
516 WARN_ON(!fc_frame_is_linear(fp)); /* buffer must be contiguous */
517 fh = fc_frame_header_get(fp);
518 len = fr_len(fp) - sizeof(*fh);
519 seq_cnt = ntohs(fh->fh_seq_cnt);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700520 if (fr_sof(fp) == FC_SOF_I3 && seq_cnt == 0 && disc->seq_count == 0) {
Robert Love42e9a922008-12-09 15:10:17 -0800521 cp = fc_frame_payload_get(fp, sizeof(*cp));
522 if (!cp) {
Robert Love74147052009-06-10 15:31:10 -0700523 FC_DISC_DBG(disc, "GPN_FT response too short, len %d\n",
524 fr_len(fp));
Joe Eykholt883a3372009-08-25 14:02:27 -0700525 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800526 } else if (ntohs(cp->ct_cmd) == FC_FS_ACC) {
527
Robert Love34f42a02009-02-27 10:55:45 -0800528 /* Accepted, parse the response. */
Robert Love42e9a922008-12-09 15:10:17 -0800529 len -= sizeof(*cp);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700530 error = fc_disc_gpn_ft_parse(disc, cp + 1, len);
Robert Love42e9a922008-12-09 15:10:17 -0800531 } else if (ntohs(cp->ct_cmd) == FC_FS_RJT) {
Robert Love74147052009-06-10 15:31:10 -0700532 FC_DISC_DBG(disc, "GPN_FT rejected reason %x exp %x "
533 "(check zoning)\n", cp->ct_reason,
534 cp->ct_explan);
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700535 event = DISC_EV_FAILED;
Joe Eykholtc7626082009-08-25 14:02:33 -0700536 if (cp->ct_reason == FC_FS_RJT_UNABL &&
537 cp->ct_explan == FC_FS_EXP_FTNR)
538 event = DISC_EV_SUCCESS;
Robert Love42e9a922008-12-09 15:10:17 -0800539 } else {
Robert Love74147052009-06-10 15:31:10 -0700540 FC_DISC_DBG(disc, "GPN_FT unexpected response code "
541 "%x\n", ntohs(cp->ct_cmd));
Joe Eykholt883a3372009-08-25 14:02:27 -0700542 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800543 }
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700544 } else if (fr_sof(fp) == FC_SOF_N3 && seq_cnt == disc->seq_count) {
545 error = fc_disc_gpn_ft_parse(disc, fh + 1, len);
Robert Love42e9a922008-12-09 15:10:17 -0800546 } else {
Robert Love74147052009-06-10 15:31:10 -0700547 FC_DISC_DBG(disc, "GPN_FT unexpected frame - out of sequence? "
548 "seq_cnt %x expected %x sof %x eof %x\n",
549 seq_cnt, disc->seq_count, fr_sof(fp), fr_eof(fp));
Joe Eykholt883a3372009-08-25 14:02:27 -0700550 event = DISC_EV_FAILED;
Robert Love42e9a922008-12-09 15:10:17 -0800551 }
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700552 if (error)
Dan Carpenter6f37e212017-07-12 10:30:22 +0300553 fc_disc_error(disc, ERR_PTR(error));
Joe Eykholta1c1e4e2009-08-25 14:02:22 -0700554 else if (event != DISC_EV_NONE)
555 fc_disc_done(disc, event);
Robert Love42e9a922008-12-09 15:10:17 -0800556 fc_frame_free(fp);
Abhijeet Joglekar0d228c02009-04-21 16:26:52 -0700557 mutex_unlock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800558}
559
560/**
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700561 * fc_disc_gpn_id_resp() - Handle a response frame from Get Port Names (GPN_ID)
Robert Love3a3b42b2009-11-03 11:47:39 -0800562 * @sp: The sequence the GPN_ID is on
563 * @fp: The response frame
564 * @rdata_arg: The remote port that sent the GPN_ID response
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700565 *
566 * Locking Note: This function is called without disc mutex held.
567 */
568static void fc_disc_gpn_id_resp(struct fc_seq *sp, struct fc_frame *fp,
569 void *rdata_arg)
570{
571 struct fc_rport_priv *rdata = rdata_arg;
572 struct fc_rport_priv *new_rdata;
573 struct fc_lport *lport;
574 struct fc_disc *disc;
575 struct fc_ct_hdr *cp;
576 struct fc_ns_gid_pn *pn;
577 u64 port_name;
578
579 lport = rdata->local_port;
580 disc = &lport->disc;
581
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700582 if (PTR_ERR(fp) == -FC_EX_CLOSED)
583 goto out;
584 if (IS_ERR(fp))
585 goto redisc;
586
587 cp = fc_frame_payload_get(fp, sizeof(*cp));
588 if (!cp)
589 goto redisc;
590 if (ntohs(cp->ct_cmd) == FC_FS_ACC) {
591 if (fr_len(fp) < sizeof(struct fc_frame_header) +
592 sizeof(*cp) + sizeof(*pn))
593 goto redisc;
594 pn = (struct fc_ns_gid_pn *)(cp + 1);
595 port_name = get_unaligned_be64(&pn->fn_wwpn);
Hannes Reineckea407c592016-09-30 11:01:15 +0200596 mutex_lock(&rdata->rp_mutex);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700597 if (rdata->ids.port_name == -1)
598 rdata->ids.port_name = port_name;
599 else if (rdata->ids.port_name != port_name) {
600 FC_DISC_DBG(disc, "GPN_ID accepted. WWPN changed. "
Chris Leech9f8f3aa2010-04-09 14:23:16 -0700601 "Port-id %6.6x wwpn %16.16llx\n",
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700602 rdata->ids.port_id, port_name);
Hannes Reineckea407c592016-09-30 11:01:15 +0200603 mutex_unlock(&rdata->rp_mutex);
Hannes Reineckec96c7922016-10-18 10:01:44 +0200604 fc_rport_logoff(rdata);
Hannes Reineckea407c592016-09-30 11:01:15 +0200605 mutex_lock(&lport->disc.disc_mutex);
Hannes Reinecke25800642016-10-18 10:01:42 +0200606 new_rdata = fc_rport_create(lport, rdata->ids.port_id);
Hannes Reineckea407c592016-09-30 11:01:15 +0200607 mutex_unlock(&lport->disc.disc_mutex);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700608 if (new_rdata) {
609 new_rdata->disc_id = disc->disc_id;
Hannes Reinecke05d7d3b2016-10-18 10:01:43 +0200610 fc_rport_login(new_rdata);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700611 }
612 goto out;
613 }
614 rdata->disc_id = disc->disc_id;
Hannes Reineckea407c592016-09-30 11:01:15 +0200615 mutex_unlock(&rdata->rp_mutex);
Hannes Reinecke05d7d3b2016-10-18 10:01:43 +0200616 fc_rport_login(rdata);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700617 } else if (ntohs(cp->ct_cmd) == FC_FS_RJT) {
618 FC_DISC_DBG(disc, "GPN_ID rejected reason %x exp %x\n",
619 cp->ct_reason, cp->ct_explan);
Hannes Reineckec96c7922016-10-18 10:01:44 +0200620 fc_rport_logoff(rdata);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700621 } else {
622 FC_DISC_DBG(disc, "GPN_ID unexpected response code %x\n",
623 ntohs(cp->ct_cmd));
624redisc:
Hannes Reineckea407c592016-09-30 11:01:15 +0200625 mutex_lock(&disc->disc_mutex);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700626 fc_disc_restart(disc);
Hannes Reineckea407c592016-09-30 11:01:15 +0200627 mutex_unlock(&disc->disc_mutex);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700628 }
629out:
Hannes Reinecke944ef962016-10-18 10:01:39 +0200630 kref_put(&rdata->kref, fc_rport_destroy);
Igor Druzhininff6993b2020-01-14 14:43:19 +0000631 if (!IS_ERR(fp))
632 fc_frame_free(fp);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700633}
634
635/**
636 * fc_disc_gpn_id_req() - Send Get Port Names by ID (GPN_ID) request
Robert Love3a3b42b2009-11-03 11:47:39 -0800637 * @lport: The local port to initiate discovery on
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700638 * @rdata: remote port private data
639 *
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700640 * On failure, an error code is returned.
641 */
642static int fc_disc_gpn_id_req(struct fc_lport *lport,
643 struct fc_rport_priv *rdata)
644{
645 struct fc_frame *fp;
646
Hannes Reineckeee356242018-07-04 13:56:48 +0200647 lockdep_assert_held(&lport->disc.disc_mutex);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700648 fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) +
649 sizeof(struct fc_ns_fid));
650 if (!fp)
651 return -ENOMEM;
652 if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, FC_NS_GPN_ID,
Joe Eykholtb94f8952009-11-03 11:50:21 -0800653 fc_disc_gpn_id_resp, rdata,
654 3 * lport->r_a_tov))
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700655 return -ENOMEM;
656 kref_get(&rdata->kref);
657 return 0;
658}
659
660/**
Robert Love34f42a02009-02-27 10:55:45 -0800661 * fc_disc_single() - Discover the directory information for a single target
Robert Love3a3b42b2009-11-03 11:47:39 -0800662 * @lport: The local port the remote port is associated with
663 * @dp: The port to rediscover
Robert Love42e9a922008-12-09 15:10:17 -0800664 */
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700665static int fc_disc_single(struct fc_lport *lport, struct fc_disc_port *dp)
Robert Love42e9a922008-12-09 15:10:17 -0800666{
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700667 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800668
Hannes Reineckeee356242018-07-04 13:56:48 +0200669 lockdep_assert_held(&lport->disc.disc_mutex);
670
Hannes Reinecke25800642016-10-18 10:01:42 +0200671 rdata = fc_rport_create(lport, dp->port_id);
Joe Eykholt2ab7e1e2009-08-25 14:03:58 -0700672 if (!rdata)
673 return -ENOMEM;
674 rdata->disc_id = 0;
675 return fc_disc_gpn_id_req(lport, rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800676}
677
678/**
Robert Love34f42a02009-02-27 10:55:45 -0800679 * fc_disc_stop() - Stop discovery for a given lport
Robert Love3a3b42b2009-11-03 11:47:39 -0800680 * @lport: The local port that discovery should stop on
Robert Love42e9a922008-12-09 15:10:17 -0800681 */
Bart Van Asschec6b21c92012-01-13 17:26:20 -0800682static void fc_disc_stop(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -0800683{
684 struct fc_disc *disc = &lport->disc;
685
Bhanu Prakash Gollapudic531b9b2010-10-08 17:12:36 -0700686 if (disc->pending)
Robert Love42e9a922008-12-09 15:10:17 -0800687 cancel_delayed_work_sync(&disc->disc_work);
Hannes Reineckebc3d12b2018-07-11 10:09:28 +0200688 mutex_lock(&disc->disc_mutex);
Bhanu Prakash Gollapudic531b9b2010-10-08 17:12:36 -0700689 fc_disc_stop_rports(disc);
Hannes Reineckebc3d12b2018-07-11 10:09:28 +0200690 mutex_unlock(&disc->disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800691}
692
693/**
Robert Love34f42a02009-02-27 10:55:45 -0800694 * fc_disc_stop_final() - Stop discovery for a given lport
Robert Love3a3b42b2009-11-03 11:47:39 -0800695 * @lport: The lport that discovery should stop on
Robert Love42e9a922008-12-09 15:10:17 -0800696 *
697 * This function will block until discovery has been
698 * completely stopped and all rports have been deleted.
699 */
Bart Van Asschec6b21c92012-01-13 17:26:20 -0800700static void fc_disc_stop_final(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -0800701{
702 fc_disc_stop(lport);
Hannes Reinecke5922a952016-10-18 10:01:46 +0200703 fc_rport_flush_queue();
Robert Love42e9a922008-12-09 15:10:17 -0800704}
705
706/**
Robert Love08076192013-03-25 11:00:28 -0700707 * fc_disc_config() - Configure the discovery layer for a local port
708 * @lport: The local port that needs the discovery layer to be configured
Robert Love8a9a7132013-03-25 11:00:27 -0700709 * @priv: Private data structre for users of the discovery layer
Robert Love42e9a922008-12-09 15:10:17 -0800710 */
Robert Love08076192013-03-25 11:00:28 -0700711void fc_disc_config(struct fc_lport *lport, void *priv)
Robert Love42e9a922008-12-09 15:10:17 -0800712{
Colin Ian Kingbc2e1292018-02-06 14:21:57 +0000713 struct fc_disc *disc;
Robert Love42e9a922008-12-09 15:10:17 -0800714
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;
Robert Love08076192013-03-25 11:00:28 -0700728
729 disc->priv = priv;
730}
731EXPORT_SYMBOL(fc_disc_config);
732
733/**
734 * fc_disc_init() - Initialize the discovery layer for a local port
735 * @lport: The local port that needs the discovery layer to be initialized
736 */
737void fc_disc_init(struct fc_lport *lport)
738{
739 struct fc_disc *disc = &lport->disc;
740
Robert Love42e9a922008-12-09 15:10:17 -0800741 INIT_DELAYED_WORK(&disc->disc_work, fc_disc_timeout);
742 mutex_init(&disc->disc_mutex);
743 INIT_LIST_HEAD(&disc->rports);
Robert Love42e9a922008-12-09 15:10:17 -0800744}
745EXPORT_SYMBOL(fc_disc_init);