xref: /openbmc/linux/drivers/scsi/libfc/fc_rport.c (revision 6920e6a2)
1 /*
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  * RPORT GENERAL INFO
22  *
23  * This file contains all processing regarding fc_rports. It contains the
24  * rport state machine and does all rport interaction with the transport class.
25  * There should be no other places in libfc that interact directly with the
26  * transport class in regards to adding and deleting rports.
27  *
28  * fc_rport's represent N_Port's within the fabric.
29  */
30 
31 /*
32  * RPORT LOCKING
33  *
34  * The rport should never hold the rport mutex and then attempt to acquire
35  * either the lport or disc mutexes. The rport's mutex is considered lesser
36  * than both the lport's mutex and the disc mutex. Refer to fc_lport.c for
37  * more comments on the hierarchy.
38  *
39  * The locking strategy is similar to the lport's strategy. The lock protects
40  * the rport's states and is held and released by the entry points to the rport
41  * block. All _enter_* functions correspond to rport states and expect the rport
42  * mutex to be locked before calling them. This means that rports only handle
43  * one request or response at a time, since they're not critical for the I/O
44  * path this potential over-use of the mutex is acceptable.
45  */
46 
47 /*
48  * RPORT REFERENCE COUNTING
49  *
50  * A rport reference should be taken when:
51  * - an rport is allocated
52  * - a workqueue item is scheduled
53  * - an ELS request is send
54  * The reference should be dropped when:
55  * - the workqueue function has finished
56  * - the ELS response is handled
57  * - an rport is removed
58  */
59 
60 #include <linux/kernel.h>
61 #include <linux/spinlock.h>
62 #include <linux/interrupt.h>
63 #include <linux/slab.h>
64 #include <linux/rcupdate.h>
65 #include <linux/timer.h>
66 #include <linux/workqueue.h>
67 #include <linux/export.h>
68 #include <linux/rculist.h>
69 
70 #include <asm/unaligned.h>
71 
72 #include <scsi/libfc.h>
73 #include <scsi/fc_encode.h>
74 
75 #include "fc_libfc.h"
76 
77 static struct workqueue_struct *rport_event_queue;
78 
79 static void fc_rport_enter_flogi(struct fc_rport_priv *);
80 static void fc_rport_enter_plogi(struct fc_rport_priv *);
81 static void fc_rport_enter_prli(struct fc_rport_priv *);
82 static void fc_rport_enter_rtv(struct fc_rport_priv *);
83 static void fc_rport_enter_ready(struct fc_rport_priv *);
84 static void fc_rport_enter_logo(struct fc_rport_priv *);
85 static void fc_rport_enter_adisc(struct fc_rport_priv *);
86 
87 static void fc_rport_recv_plogi_req(struct fc_lport *, struct fc_frame *);
88 static void fc_rport_recv_prli_req(struct fc_rport_priv *, struct fc_frame *);
89 static void fc_rport_recv_prlo_req(struct fc_rport_priv *, struct fc_frame *);
90 static void fc_rport_recv_logo_req(struct fc_lport *, struct fc_frame *);
91 static void fc_rport_timeout(struct work_struct *);
92 static void fc_rport_error(struct fc_rport_priv *, int);
93 static void fc_rport_error_retry(struct fc_rport_priv *, int);
94 static void fc_rport_work(struct work_struct *);
95 
96 static const char *fc_rport_state_names[] = {
97 	[RPORT_ST_INIT] = "Init",
98 	[RPORT_ST_FLOGI] = "FLOGI",
99 	[RPORT_ST_PLOGI_WAIT] = "PLOGI_WAIT",
100 	[RPORT_ST_PLOGI] = "PLOGI",
101 	[RPORT_ST_PRLI] = "PRLI",
102 	[RPORT_ST_RTV] = "RTV",
103 	[RPORT_ST_READY] = "Ready",
104 	[RPORT_ST_ADISC] = "ADISC",
105 	[RPORT_ST_DELETE] = "Delete",
106 };
107 
108 /**
109  * fc_rport_lookup() - Lookup a remote port by port_id
110  * @lport:   The local port to lookup the remote port on
111  * @port_id: The remote port ID to look up
112  *
113  * The reference count of the fc_rport_priv structure is
114  * increased by one.
115  */
116 struct fc_rport_priv *fc_rport_lookup(const struct fc_lport *lport,
117 				      u32 port_id)
118 {
119 	struct fc_rport_priv *rdata = NULL, *tmp_rdata;
120 
121 	rcu_read_lock();
122 	list_for_each_entry_rcu(tmp_rdata, &lport->disc.rports, peers)
123 		if (tmp_rdata->ids.port_id == port_id &&
124 		    kref_get_unless_zero(&tmp_rdata->kref)) {
125 			rdata = tmp_rdata;
126 			break;
127 		}
128 	rcu_read_unlock();
129 	return rdata;
130 }
131 EXPORT_SYMBOL(fc_rport_lookup);
132 
133 /**
134  * fc_rport_create() - Create a new remote port
135  * @lport: The local port this remote port will be associated with
136  * @ids:   The identifiers for the new remote port
137  *
138  * The remote port will start in the INIT state.
139  */
140 struct fc_rport_priv *fc_rport_create(struct fc_lport *lport, u32 port_id)
141 {
142 	struct fc_rport_priv *rdata;
143 
144 	lockdep_assert_held(&lport->disc.disc_mutex);
145 
146 	rdata = fc_rport_lookup(lport, port_id);
147 	if (rdata)
148 		return rdata;
149 
150 	rdata = kzalloc(sizeof(*rdata) + lport->rport_priv_size, GFP_KERNEL);
151 	if (!rdata)
152 		return NULL;
153 
154 	rdata->ids.node_name = -1;
155 	rdata->ids.port_name = -1;
156 	rdata->ids.port_id = port_id;
157 	rdata->ids.roles = FC_RPORT_ROLE_UNKNOWN;
158 
159 	kref_init(&rdata->kref);
160 	mutex_init(&rdata->rp_mutex);
161 	rdata->local_port = lport;
162 	rdata->rp_state = RPORT_ST_INIT;
163 	rdata->event = RPORT_EV_NONE;
164 	rdata->flags = FC_RP_FLAGS_REC_SUPPORTED;
165 	rdata->e_d_tov = lport->e_d_tov;
166 	rdata->r_a_tov = lport->r_a_tov;
167 	rdata->maxframe_size = FC_MIN_MAX_PAYLOAD;
168 	INIT_DELAYED_WORK(&rdata->retry_work, fc_rport_timeout);
169 	INIT_WORK(&rdata->event_work, fc_rport_work);
170 	if (port_id != FC_FID_DIR_SERV) {
171 		rdata->lld_event_callback = lport->tt.rport_event_callback;
172 		list_add_rcu(&rdata->peers, &lport->disc.rports);
173 	}
174 	return rdata;
175 }
176 EXPORT_SYMBOL(fc_rport_create);
177 
178 /**
179  * fc_rport_destroy() - Free a remote port after last reference is released
180  * @kref: The remote port's kref
181  */
182 void fc_rport_destroy(struct kref *kref)
183 {
184 	struct fc_rport_priv *rdata;
185 
186 	rdata = container_of(kref, struct fc_rport_priv, kref);
187 	WARN_ON(!list_empty(&rdata->peers));
188 	kfree_rcu(rdata, rcu);
189 }
190 EXPORT_SYMBOL(fc_rport_destroy);
191 
192 /**
193  * fc_rport_state() - Return a string identifying the remote port's state
194  * @rdata: The remote port
195  */
196 static const char *fc_rport_state(struct fc_rport_priv *rdata)
197 {
198 	const char *cp;
199 
200 	cp = fc_rport_state_names[rdata->rp_state];
201 	if (!cp)
202 		cp = "Unknown";
203 	return cp;
204 }
205 
206 /**
207  * fc_set_rport_loss_tmo() - Set the remote port loss timeout
208  * @rport:   The remote port that gets a new timeout value
209  * @timeout: The new timeout value (in seconds)
210  */
211 void fc_set_rport_loss_tmo(struct fc_rport *rport, u32 timeout)
212 {
213 	if (timeout)
214 		rport->dev_loss_tmo = timeout;
215 	else
216 		rport->dev_loss_tmo = 1;
217 }
218 EXPORT_SYMBOL(fc_set_rport_loss_tmo);
219 
220 /**
221  * fc_plogi_get_maxframe() - Get the maximum payload from the common service
222  *			     parameters in a FLOGI frame
223  * @flp:    The FLOGI or PLOGI payload
224  * @maxval: The maximum frame size upper limit; this may be less than what
225  *	    is in the service parameters
226  */
227 static unsigned int fc_plogi_get_maxframe(struct fc_els_flogi *flp,
228 					  unsigned int maxval)
229 {
230 	unsigned int mfs;
231 
232 	/*
233 	 * Get max payload from the common service parameters and the
234 	 * class 3 receive data field size.
235 	 */
236 	mfs = ntohs(flp->fl_csp.sp_bb_data) & FC_SP_BB_DATA_MASK;
237 	if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval)
238 		maxval = mfs;
239 	mfs = ntohs(flp->fl_cssp[3 - 1].cp_rdfs);
240 	if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval)
241 		maxval = mfs;
242 	return maxval;
243 }
244 
245 /**
246  * fc_rport_state_enter() - Change the state of a remote port
247  * @rdata: The remote port whose state should change
248  * @new:   The new state
249  */
250 static void fc_rport_state_enter(struct fc_rport_priv *rdata,
251 				 enum fc_rport_state new)
252 {
253 	lockdep_assert_held(&rdata->rp_mutex);
254 
255 	if (rdata->rp_state != new)
256 		rdata->retries = 0;
257 	rdata->rp_state = new;
258 }
259 
260 /**
261  * fc_rport_work() - Handler for remote port events in the rport_event_queue
262  * @work: Handle to the remote port being dequeued
263  *
264  * Reference counting: drops kref on return
265  */
266 static void fc_rport_work(struct work_struct *work)
267 {
268 	u32 port_id;
269 	struct fc_rport_priv *rdata =
270 		container_of(work, struct fc_rport_priv, event_work);
271 	struct fc_rport_libfc_priv *rpriv;
272 	enum fc_rport_event event;
273 	struct fc_lport *lport = rdata->local_port;
274 	struct fc_rport_operations *rport_ops;
275 	struct fc_rport_identifiers ids;
276 	struct fc_rport *rport;
277 	struct fc4_prov *prov;
278 	u8 type;
279 
280 	mutex_lock(&rdata->rp_mutex);
281 	event = rdata->event;
282 	rport_ops = rdata->ops;
283 	rport = rdata->rport;
284 
285 	FC_RPORT_DBG(rdata, "work event %u\n", event);
286 
287 	switch (event) {
288 	case RPORT_EV_READY:
289 		ids = rdata->ids;
290 		rdata->event = RPORT_EV_NONE;
291 		rdata->major_retries = 0;
292 		kref_get(&rdata->kref);
293 		mutex_unlock(&rdata->rp_mutex);
294 
295 		if (!rport) {
296 			FC_RPORT_DBG(rdata, "No rport!\n");
297 			rport = fc_remote_port_add(lport->host, 0, &ids);
298 		}
299 		if (!rport) {
300 			FC_RPORT_DBG(rdata, "Failed to add the rport\n");
301 			fc_rport_logoff(rdata);
302 			kref_put(&rdata->kref, fc_rport_destroy);
303 			return;
304 		}
305 		mutex_lock(&rdata->rp_mutex);
306 		if (rdata->rport)
307 			FC_RPORT_DBG(rdata, "rport already allocated\n");
308 		rdata->rport = rport;
309 		rport->maxframe_size = rdata->maxframe_size;
310 		rport->supported_classes = rdata->supported_classes;
311 
312 		rpriv = rport->dd_data;
313 		rpriv->local_port = lport;
314 		rpriv->rp_state = rdata->rp_state;
315 		rpriv->flags = rdata->flags;
316 		rpriv->e_d_tov = rdata->e_d_tov;
317 		rpriv->r_a_tov = rdata->r_a_tov;
318 		mutex_unlock(&rdata->rp_mutex);
319 
320 		if (rport_ops && rport_ops->event_callback) {
321 			FC_RPORT_DBG(rdata, "callback ev %d\n", event);
322 			rport_ops->event_callback(lport, rdata, event);
323 		}
324 		if (rdata->lld_event_callback) {
325 			FC_RPORT_DBG(rdata, "lld callback ev %d\n", event);
326 			rdata->lld_event_callback(lport, rdata, event);
327 		}
328 		kref_put(&rdata->kref, fc_rport_destroy);
329 		break;
330 
331 	case RPORT_EV_FAILED:
332 	case RPORT_EV_LOGO:
333 	case RPORT_EV_STOP:
334 		if (rdata->prli_count) {
335 			mutex_lock(&fc_prov_mutex);
336 			for (type = 1; type < FC_FC4_PROV_SIZE; type++) {
337 				prov = fc_passive_prov[type];
338 				if (prov && prov->prlo)
339 					prov->prlo(rdata);
340 			}
341 			mutex_unlock(&fc_prov_mutex);
342 		}
343 		port_id = rdata->ids.port_id;
344 		mutex_unlock(&rdata->rp_mutex);
345 
346 		if (rport_ops && rport_ops->event_callback) {
347 			FC_RPORT_DBG(rdata, "callback ev %d\n", event);
348 			rport_ops->event_callback(lport, rdata, event);
349 		}
350 		if (rdata->lld_event_callback) {
351 			FC_RPORT_DBG(rdata, "lld callback ev %d\n", event);
352 			rdata->lld_event_callback(lport, rdata, event);
353 		}
354 		if (cancel_delayed_work_sync(&rdata->retry_work))
355 			kref_put(&rdata->kref, fc_rport_destroy);
356 
357 		/*
358 		 * Reset any outstanding exchanges before freeing rport.
359 		 */
360 		lport->tt.exch_mgr_reset(lport, 0, port_id);
361 		lport->tt.exch_mgr_reset(lport, port_id, 0);
362 
363 		if (rport) {
364 			rpriv = rport->dd_data;
365 			rpriv->rp_state = RPORT_ST_DELETE;
366 			mutex_lock(&rdata->rp_mutex);
367 			rdata->rport = NULL;
368 			mutex_unlock(&rdata->rp_mutex);
369 			fc_remote_port_delete(rport);
370 		}
371 
372 		mutex_lock(&rdata->rp_mutex);
373 		if (rdata->rp_state == RPORT_ST_DELETE) {
374 			if (port_id == FC_FID_DIR_SERV) {
375 				rdata->event = RPORT_EV_NONE;
376 				mutex_unlock(&rdata->rp_mutex);
377 				kref_put(&rdata->kref, fc_rport_destroy);
378 			} else if ((rdata->flags & FC_RP_STARTED) &&
379 				   rdata->major_retries <
380 				   lport->max_rport_retry_count) {
381 				rdata->major_retries++;
382 				rdata->event = RPORT_EV_NONE;
383 				FC_RPORT_DBG(rdata, "work restart\n");
384 				fc_rport_enter_flogi(rdata);
385 				mutex_unlock(&rdata->rp_mutex);
386 			} else {
387 				mutex_unlock(&rdata->rp_mutex);
388 				FC_RPORT_DBG(rdata, "work delete\n");
389 				mutex_lock(&lport->disc.disc_mutex);
390 				list_del_rcu(&rdata->peers);
391 				mutex_unlock(&lport->disc.disc_mutex);
392 				kref_put(&rdata->kref, fc_rport_destroy);
393 			}
394 		} else {
395 			/*
396 			 * Re-open for events.  Reissue READY event if ready.
397 			 */
398 			rdata->event = RPORT_EV_NONE;
399 			if (rdata->rp_state == RPORT_ST_READY) {
400 				FC_RPORT_DBG(rdata, "work reopen\n");
401 				fc_rport_enter_ready(rdata);
402 			}
403 			mutex_unlock(&rdata->rp_mutex);
404 		}
405 		break;
406 
407 	default:
408 		mutex_unlock(&rdata->rp_mutex);
409 		break;
410 	}
411 	kref_put(&rdata->kref, fc_rport_destroy);
412 }
413 
414 /**
415  * fc_rport_login() - Start the remote port login state machine
416  * @rdata: The remote port to be logged in to
417  *
418  * Initiates the RP state machine. It is called from the LP module.
419  * This function will issue the following commands to the N_Port
420  * identified by the FC ID provided.
421  *
422  * - PLOGI
423  * - PRLI
424  * - RTV
425  *
426  * Locking Note: Called without the rport lock held. This
427  * function will hold the rport lock, call an _enter_*
428  * function and then unlock the rport.
429  *
430  * This indicates the intent to be logged into the remote port.
431  * If it appears we are already logged in, ADISC is used to verify
432  * the setup.
433  */
434 int fc_rport_login(struct fc_rport_priv *rdata)
435 {
436 	mutex_lock(&rdata->rp_mutex);
437 
438 	if (rdata->flags & FC_RP_STARTED) {
439 		FC_RPORT_DBG(rdata, "port already started\n");
440 		mutex_unlock(&rdata->rp_mutex);
441 		return 0;
442 	}
443 
444 	rdata->flags |= FC_RP_STARTED;
445 	switch (rdata->rp_state) {
446 	case RPORT_ST_READY:
447 		FC_RPORT_DBG(rdata, "ADISC port\n");
448 		fc_rport_enter_adisc(rdata);
449 		break;
450 	case RPORT_ST_DELETE:
451 		FC_RPORT_DBG(rdata, "Restart deleted port\n");
452 		break;
453 	case RPORT_ST_INIT:
454 		FC_RPORT_DBG(rdata, "Login to port\n");
455 		fc_rport_enter_flogi(rdata);
456 		break;
457 	default:
458 		FC_RPORT_DBG(rdata, "Login in progress, state %s\n",
459 			     fc_rport_state(rdata));
460 		break;
461 	}
462 	mutex_unlock(&rdata->rp_mutex);
463 
464 	return 0;
465 }
466 EXPORT_SYMBOL(fc_rport_login);
467 
468 /**
469  * fc_rport_enter_delete() - Schedule a remote port to be deleted
470  * @rdata: The remote port to be deleted
471  * @event: The event to report as the reason for deletion
472  *
473  * Allow state change into DELETE only once.
474  *
475  * Call queue_work only if there's no event already pending.
476  * Set the new event so that the old pending event will not occur.
477  * Since we have the mutex, even if fc_rport_work() is already started,
478  * it'll see the new event.
479  *
480  * Reference counting: does not modify kref
481  */
482 static void fc_rport_enter_delete(struct fc_rport_priv *rdata,
483 				  enum fc_rport_event event)
484 {
485 	lockdep_assert_held(&rdata->rp_mutex);
486 
487 	if (rdata->rp_state == RPORT_ST_DELETE)
488 		return;
489 
490 	FC_RPORT_DBG(rdata, "Delete port\n");
491 
492 	fc_rport_state_enter(rdata, RPORT_ST_DELETE);
493 
494 	kref_get(&rdata->kref);
495 	if (rdata->event == RPORT_EV_NONE &&
496 	    !queue_work(rport_event_queue, &rdata->event_work))
497 		kref_put(&rdata->kref, fc_rport_destroy);
498 
499 	rdata->event = event;
500 }
501 
502 /**
503  * fc_rport_logoff() - Logoff and remove a remote port
504  * @rdata: The remote port to be logged off of
505  *
506  * Locking Note: Called without the rport lock held. This
507  * function will hold the rport lock, call an _enter_*
508  * function and then unlock the rport.
509  */
510 int fc_rport_logoff(struct fc_rport_priv *rdata)
511 {
512 	struct fc_lport *lport = rdata->local_port;
513 	u32 port_id = rdata->ids.port_id;
514 
515 	mutex_lock(&rdata->rp_mutex);
516 
517 	FC_RPORT_DBG(rdata, "Remove port\n");
518 
519 	rdata->flags &= ~FC_RP_STARTED;
520 	if (rdata->rp_state == RPORT_ST_DELETE) {
521 		FC_RPORT_DBG(rdata, "Port in Delete state, not removing\n");
522 		goto out;
523 	}
524 	/*
525 	 * FC-LS states:
526 	 * To explicitly Logout, the initiating Nx_Port shall terminate
527 	 * other open Sequences that it initiated with the destination
528 	 * Nx_Port prior to performing Logout.
529 	 */
530 	lport->tt.exch_mgr_reset(lport, 0, port_id);
531 	lport->tt.exch_mgr_reset(lport, port_id, 0);
532 
533 	fc_rport_enter_logo(rdata);
534 
535 	/*
536 	 * Change the state to Delete so that we discard
537 	 * the response.
538 	 */
539 	fc_rport_enter_delete(rdata, RPORT_EV_STOP);
540 out:
541 	mutex_unlock(&rdata->rp_mutex);
542 	return 0;
543 }
544 EXPORT_SYMBOL(fc_rport_logoff);
545 
546 /**
547  * fc_rport_enter_ready() - Transition to the RPORT_ST_READY state
548  * @rdata: The remote port that is ready
549  *
550  * Reference counting: schedules workqueue, does not modify kref
551  */
552 static void fc_rport_enter_ready(struct fc_rport_priv *rdata)
553 {
554 	lockdep_assert_held(&rdata->rp_mutex);
555 
556 	fc_rport_state_enter(rdata, RPORT_ST_READY);
557 
558 	FC_RPORT_DBG(rdata, "Port is Ready\n");
559 
560 	kref_get(&rdata->kref);
561 	if (rdata->event == RPORT_EV_NONE &&
562 	    !queue_work(rport_event_queue, &rdata->event_work))
563 		kref_put(&rdata->kref, fc_rport_destroy);
564 
565 	rdata->event = RPORT_EV_READY;
566 }
567 
568 /**
569  * fc_rport_timeout() - Handler for the retry_work timer
570  * @work: Handle to the remote port that has timed out
571  *
572  * Locking Note: Called without the rport lock held. This
573  * function will hold the rport lock, call an _enter_*
574  * function and then unlock the rport.
575  *
576  * Reference counting: Drops kref on return.
577  */
578 static void fc_rport_timeout(struct work_struct *work)
579 {
580 	struct fc_rport_priv *rdata =
581 		container_of(work, struct fc_rport_priv, retry_work.work);
582 
583 	mutex_lock(&rdata->rp_mutex);
584 	FC_RPORT_DBG(rdata, "Port timeout, state %s\n", fc_rport_state(rdata));
585 
586 	switch (rdata->rp_state) {
587 	case RPORT_ST_FLOGI:
588 		fc_rport_enter_flogi(rdata);
589 		break;
590 	case RPORT_ST_PLOGI:
591 		fc_rport_enter_plogi(rdata);
592 		break;
593 	case RPORT_ST_PRLI:
594 		fc_rport_enter_prli(rdata);
595 		break;
596 	case RPORT_ST_RTV:
597 		fc_rport_enter_rtv(rdata);
598 		break;
599 	case RPORT_ST_ADISC:
600 		fc_rport_enter_adisc(rdata);
601 		break;
602 	case RPORT_ST_PLOGI_WAIT:
603 	case RPORT_ST_READY:
604 	case RPORT_ST_INIT:
605 	case RPORT_ST_DELETE:
606 		break;
607 	}
608 
609 	mutex_unlock(&rdata->rp_mutex);
610 	kref_put(&rdata->kref, fc_rport_destroy);
611 }
612 
613 /**
614  * fc_rport_error() - Error handler, called once retries have been exhausted
615  * @rdata: The remote port the error is happened on
616  * @err:   The error code
617  *
618  * Reference counting: does not modify kref
619  */
620 static void fc_rport_error(struct fc_rport_priv *rdata, int err)
621 {
622 	struct fc_lport *lport = rdata->local_port;
623 
624 	lockdep_assert_held(&rdata->rp_mutex);
625 
626 	FC_RPORT_DBG(rdata, "Error %d in state %s, retries %d\n",
627 		     -err, fc_rport_state(rdata), rdata->retries);
628 
629 	switch (rdata->rp_state) {
630 	case RPORT_ST_FLOGI:
631 		rdata->flags &= ~FC_RP_STARTED;
632 		fc_rport_enter_delete(rdata, RPORT_EV_FAILED);
633 		break;
634 	case RPORT_ST_PLOGI:
635 		if (lport->point_to_multipoint) {
636 			rdata->flags &= ~FC_RP_STARTED;
637 			fc_rport_enter_delete(rdata, RPORT_EV_FAILED);
638 		} else
639 			fc_rport_enter_logo(rdata);
640 		break;
641 	case RPORT_ST_RTV:
642 		fc_rport_enter_ready(rdata);
643 		break;
644 	case RPORT_ST_PRLI:
645 	case RPORT_ST_ADISC:
646 		fc_rport_enter_logo(rdata);
647 		break;
648 	case RPORT_ST_PLOGI_WAIT:
649 	case RPORT_ST_DELETE:
650 	case RPORT_ST_READY:
651 	case RPORT_ST_INIT:
652 		break;
653 	}
654 }
655 
656 /**
657  * fc_rport_error_retry() - Handler for remote port state retries
658  * @rdata: The remote port whose state is to be retried
659  * @err:   The error code
660  *
661  * If the error was an exchange timeout retry immediately,
662  * otherwise wait for E_D_TOV.
663  *
664  * Reference counting: increments kref when scheduling retry_work
665  */
666 static void fc_rport_error_retry(struct fc_rport_priv *rdata, int err)
667 {
668 	unsigned long delay = msecs_to_jiffies(rdata->e_d_tov);
669 
670 	lockdep_assert_held(&rdata->rp_mutex);
671 
672 	/* make sure this isn't an FC_EX_CLOSED error, never retry those */
673 	if (err == -FC_EX_CLOSED)
674 		goto out;
675 
676 	if (rdata->retries < rdata->local_port->max_rport_retry_count) {
677 		FC_RPORT_DBG(rdata, "Error %d in state %s, retrying\n",
678 			     err, fc_rport_state(rdata));
679 		rdata->retries++;
680 		/* no additional delay on exchange timeouts */
681 		if (err == -FC_EX_TIMEOUT)
682 			delay = 0;
683 		kref_get(&rdata->kref);
684 		if (!schedule_delayed_work(&rdata->retry_work, delay))
685 			kref_put(&rdata->kref, fc_rport_destroy);
686 		return;
687 	}
688 
689 out:
690 	fc_rport_error(rdata, err);
691 }
692 
693 /**
694  * fc_rport_login_complete() - Handle parameters and completion of p-mp login.
695  * @rdata:  The remote port which we logged into or which logged into us.
696  * @fp:     The FLOGI or PLOGI request or response frame
697  *
698  * Returns non-zero error if a problem is detected with the frame.
699  * Does not free the frame.
700  *
701  * This is only used in point-to-multipoint mode for FIP currently.
702  */
703 static int fc_rport_login_complete(struct fc_rport_priv *rdata,
704 				   struct fc_frame *fp)
705 {
706 	struct fc_lport *lport = rdata->local_port;
707 	struct fc_els_flogi *flogi;
708 	unsigned int e_d_tov;
709 	u16 csp_flags;
710 
711 	flogi = fc_frame_payload_get(fp, sizeof(*flogi));
712 	if (!flogi)
713 		return -EINVAL;
714 
715 	csp_flags = ntohs(flogi->fl_csp.sp_features);
716 
717 	if (fc_frame_payload_op(fp) == ELS_FLOGI) {
718 		if (csp_flags & FC_SP_FT_FPORT) {
719 			FC_RPORT_DBG(rdata, "Fabric bit set in FLOGI\n");
720 			return -EINVAL;
721 		}
722 	} else {
723 
724 		/*
725 		 * E_D_TOV is not valid on an incoming FLOGI request.
726 		 */
727 		e_d_tov = ntohl(flogi->fl_csp.sp_e_d_tov);
728 		if (csp_flags & FC_SP_FT_EDTR)
729 			e_d_tov /= 1000000;
730 		if (e_d_tov > rdata->e_d_tov)
731 			rdata->e_d_tov = e_d_tov;
732 	}
733 	rdata->maxframe_size = fc_plogi_get_maxframe(flogi, lport->mfs);
734 	return 0;
735 }
736 
737 /**
738  * fc_rport_flogi_resp() - Handle response to FLOGI request for p-mp mode
739  * @sp:	    The sequence that the FLOGI was on
740  * @fp:	    The FLOGI response frame
741  * @rp_arg: The remote port that received the FLOGI response
742  */
743 static void fc_rport_flogi_resp(struct fc_seq *sp, struct fc_frame *fp,
744 				void *rp_arg)
745 {
746 	struct fc_rport_priv *rdata = rp_arg;
747 	struct fc_lport *lport = rdata->local_port;
748 	struct fc_els_flogi *flogi;
749 	unsigned int r_a_tov;
750 	u8 opcode;
751 	int err = 0;
752 
753 	FC_RPORT_DBG(rdata, "Received a FLOGI %s\n",
754 		     IS_ERR(fp) ? "error" : fc_els_resp_type(fp));
755 
756 	if (fp == ERR_PTR(-FC_EX_CLOSED))
757 		goto put;
758 
759 	mutex_lock(&rdata->rp_mutex);
760 
761 	if (rdata->rp_state != RPORT_ST_FLOGI) {
762 		FC_RPORT_DBG(rdata, "Received a FLOGI response, but in state "
763 			     "%s\n", fc_rport_state(rdata));
764 		if (IS_ERR(fp))
765 			goto err;
766 		goto out;
767 	}
768 
769 	if (IS_ERR(fp)) {
770 		fc_rport_error(rdata, PTR_ERR(fp));
771 		goto err;
772 	}
773 	opcode = fc_frame_payload_op(fp);
774 	if (opcode == ELS_LS_RJT) {
775 		struct fc_els_ls_rjt *rjt;
776 
777 		rjt = fc_frame_payload_get(fp, sizeof(*rjt));
778 		FC_RPORT_DBG(rdata, "FLOGI ELS rejected, reason %x expl %x\n",
779 			     rjt->er_reason, rjt->er_explan);
780 		err = -FC_EX_ELS_RJT;
781 		goto bad;
782 	} else if (opcode != ELS_LS_ACC) {
783 		FC_RPORT_DBG(rdata, "FLOGI ELS invalid opcode %x\n", opcode);
784 		err = -FC_EX_ELS_RJT;
785 		goto bad;
786 	}
787 	if (fc_rport_login_complete(rdata, fp)) {
788 		FC_RPORT_DBG(rdata, "FLOGI failed, no login\n");
789 		err = -FC_EX_INV_LOGIN;
790 		goto bad;
791 	}
792 
793 	flogi = fc_frame_payload_get(fp, sizeof(*flogi));
794 	if (!flogi) {
795 		err = -FC_EX_ALLOC_ERR;
796 		goto bad;
797 	}
798 	r_a_tov = ntohl(flogi->fl_csp.sp_r_a_tov);
799 	if (r_a_tov > rdata->r_a_tov)
800 		rdata->r_a_tov = r_a_tov;
801 
802 	if (rdata->ids.port_name < lport->wwpn)
803 		fc_rport_enter_plogi(rdata);
804 	else
805 		fc_rport_state_enter(rdata, RPORT_ST_PLOGI_WAIT);
806 out:
807 	fc_frame_free(fp);
808 err:
809 	mutex_unlock(&rdata->rp_mutex);
810 put:
811 	kref_put(&rdata->kref, fc_rport_destroy);
812 	return;
813 bad:
814 	FC_RPORT_DBG(rdata, "Bad FLOGI response\n");
815 	fc_rport_error_retry(rdata, err);
816 	goto out;
817 }
818 
819 /**
820  * fc_rport_enter_flogi() - Send a FLOGI request to the remote port for p-mp
821  * @rdata: The remote port to send a FLOGI to
822  *
823  * Reference counting: increments kref when sending ELS
824  */
825 static void fc_rport_enter_flogi(struct fc_rport_priv *rdata)
826 {
827 	struct fc_lport *lport = rdata->local_port;
828 	struct fc_frame *fp;
829 
830 	lockdep_assert_held(&rdata->rp_mutex);
831 
832 	if (!lport->point_to_multipoint)
833 		return fc_rport_enter_plogi(rdata);
834 
835 	FC_RPORT_DBG(rdata, "Entered FLOGI state from %s state\n",
836 		     fc_rport_state(rdata));
837 
838 	fc_rport_state_enter(rdata, RPORT_ST_FLOGI);
839 
840 	fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
841 	if (!fp)
842 		return fc_rport_error_retry(rdata, -FC_EX_ALLOC_ERR);
843 
844 	kref_get(&rdata->kref);
845 	if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_FLOGI,
846 				  fc_rport_flogi_resp, rdata,
847 				  2 * lport->r_a_tov)) {
848 		fc_rport_error_retry(rdata, -FC_EX_XMIT_ERR);
849 		kref_put(&rdata->kref, fc_rport_destroy);
850 	}
851 }
852 
853 /**
854  * fc_rport_recv_flogi_req() - Handle Fabric Login (FLOGI) request in p-mp mode
855  * @lport: The local port that received the PLOGI request
856  * @rx_fp: The PLOGI request frame
857  *
858  * Reference counting: drops kref on return
859  */
860 static void fc_rport_recv_flogi_req(struct fc_lport *lport,
861 				    struct fc_frame *rx_fp)
862 {
863 	struct fc_els_flogi *flp;
864 	struct fc_rport_priv *rdata;
865 	struct fc_frame *fp = rx_fp;
866 	struct fc_seq_els_data rjt_data;
867 	u32 sid;
868 
869 	sid = fc_frame_sid(fp);
870 
871 	FC_RPORT_ID_DBG(lport, sid, "Received FLOGI request\n");
872 
873 	if (!lport->point_to_multipoint) {
874 		rjt_data.reason = ELS_RJT_UNSUP;
875 		rjt_data.explan = ELS_EXPL_NONE;
876 		goto reject;
877 	}
878 
879 	flp = fc_frame_payload_get(fp, sizeof(*flp));
880 	if (!flp) {
881 		rjt_data.reason = ELS_RJT_LOGIC;
882 		rjt_data.explan = ELS_EXPL_INV_LEN;
883 		goto reject;
884 	}
885 
886 	rdata = fc_rport_lookup(lport, sid);
887 	if (!rdata) {
888 		rjt_data.reason = ELS_RJT_FIP;
889 		rjt_data.explan = ELS_EXPL_NOT_NEIGHBOR;
890 		goto reject;
891 	}
892 	mutex_lock(&rdata->rp_mutex);
893 
894 	FC_RPORT_DBG(rdata, "Received FLOGI in %s state\n",
895 		     fc_rport_state(rdata));
896 
897 	switch (rdata->rp_state) {
898 	case RPORT_ST_INIT:
899 		/*
900 		 * If received the FLOGI request on RPORT which is INIT state
901 		 * (means not transition to FLOGI either fc_rport timeout
902 		 * function didn;t trigger or this end hasn;t received
903 		 * beacon yet from other end. In that case only, allow RPORT
904 		 * state machine to continue, otherwise fall through which
905 		 * causes the code to send reject response.
906 		 * NOTE; Not checking for FIP->state such as VNMP_UP or
907 		 * VNMP_CLAIM because if FIP state is not one of those,
908 		 * RPORT wouldn;t have created and 'rport_lookup' would have
909 		 * failed anyway in that case.
910 		 */
911 		break;
912 	case RPORT_ST_DELETE:
913 		mutex_unlock(&rdata->rp_mutex);
914 		rjt_data.reason = ELS_RJT_FIP;
915 		rjt_data.explan = ELS_EXPL_NOT_NEIGHBOR;
916 		goto reject_put;
917 	case RPORT_ST_FLOGI:
918 	case RPORT_ST_PLOGI_WAIT:
919 	case RPORT_ST_PLOGI:
920 		break;
921 	case RPORT_ST_PRLI:
922 	case RPORT_ST_RTV:
923 	case RPORT_ST_READY:
924 	case RPORT_ST_ADISC:
925 		/*
926 		 * Set the remote port to be deleted and to then restart.
927 		 * This queues work to be sure exchanges are reset.
928 		 */
929 		fc_rport_enter_delete(rdata, RPORT_EV_LOGO);
930 		mutex_unlock(&rdata->rp_mutex);
931 		rjt_data.reason = ELS_RJT_BUSY;
932 		rjt_data.explan = ELS_EXPL_NONE;
933 		goto reject_put;
934 	}
935 	if (fc_rport_login_complete(rdata, fp)) {
936 		mutex_unlock(&rdata->rp_mutex);
937 		rjt_data.reason = ELS_RJT_LOGIC;
938 		rjt_data.explan = ELS_EXPL_NONE;
939 		goto reject_put;
940 	}
941 
942 	fp = fc_frame_alloc(lport, sizeof(*flp));
943 	if (!fp)
944 		goto out;
945 
946 	fc_flogi_fill(lport, fp);
947 	flp = fc_frame_payload_get(fp, sizeof(*flp));
948 	flp->fl_cmd = ELS_LS_ACC;
949 
950 	fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
951 	lport->tt.frame_send(lport, fp);
952 
953 	/*
954 	 * Do not proceed with the state machine if our
955 	 * FLOGI has crossed with an FLOGI from the
956 	 * remote port; wait for the FLOGI response instead.
957 	 */
958 	if (rdata->rp_state != RPORT_ST_FLOGI) {
959 		if (rdata->ids.port_name < lport->wwpn)
960 			fc_rport_enter_plogi(rdata);
961 		else
962 			fc_rport_state_enter(rdata, RPORT_ST_PLOGI_WAIT);
963 	}
964 out:
965 	mutex_unlock(&rdata->rp_mutex);
966 	kref_put(&rdata->kref, fc_rport_destroy);
967 	fc_frame_free(rx_fp);
968 	return;
969 
970 reject_put:
971 	kref_put(&rdata->kref, fc_rport_destroy);
972 reject:
973 	fc_seq_els_rsp_send(rx_fp, ELS_LS_RJT, &rjt_data);
974 	fc_frame_free(rx_fp);
975 }
976 
977 /**
978  * fc_rport_plogi_resp() - Handler for ELS PLOGI responses
979  * @sp:	       The sequence the PLOGI is on
980  * @fp:	       The PLOGI response frame
981  * @rdata_arg: The remote port that sent the PLOGI response
982  *
983  * Locking Note: This function will be called without the rport lock
984  * held, but it will lock, call an _enter_* function or fc_rport_error
985  * and then unlock the rport.
986  */
987 static void fc_rport_plogi_resp(struct fc_seq *sp, struct fc_frame *fp,
988 				void *rdata_arg)
989 {
990 	struct fc_rport_priv *rdata = rdata_arg;
991 	struct fc_lport *lport = rdata->local_port;
992 	struct fc_els_flogi *plp = NULL;
993 	u16 csp_seq;
994 	u16 cssp_seq;
995 	u8 op;
996 
997 	FC_RPORT_DBG(rdata, "Received a PLOGI %s\n", fc_els_resp_type(fp));
998 
999 	if (fp == ERR_PTR(-FC_EX_CLOSED))
1000 		goto put;
1001 
1002 	mutex_lock(&rdata->rp_mutex);
1003 
1004 	if (rdata->rp_state != RPORT_ST_PLOGI) {
1005 		FC_RPORT_DBG(rdata, "Received a PLOGI response, but in state "
1006 			     "%s\n", fc_rport_state(rdata));
1007 		if (IS_ERR(fp))
1008 			goto err;
1009 		goto out;
1010 	}
1011 
1012 	if (IS_ERR(fp)) {
1013 		fc_rport_error_retry(rdata, PTR_ERR(fp));
1014 		goto err;
1015 	}
1016 
1017 	op = fc_frame_payload_op(fp);
1018 	if (op == ELS_LS_ACC &&
1019 	    (plp = fc_frame_payload_get(fp, sizeof(*plp))) != NULL) {
1020 		rdata->ids.port_name = get_unaligned_be64(&plp->fl_wwpn);
1021 		rdata->ids.node_name = get_unaligned_be64(&plp->fl_wwnn);
1022 
1023 		/* save plogi response sp_features for further reference */
1024 		rdata->sp_features = ntohs(plp->fl_csp.sp_features);
1025 
1026 		if (lport->point_to_multipoint)
1027 			fc_rport_login_complete(rdata, fp);
1028 		csp_seq = ntohs(plp->fl_csp.sp_tot_seq);
1029 		cssp_seq = ntohs(plp->fl_cssp[3 - 1].cp_con_seq);
1030 		if (cssp_seq < csp_seq)
1031 			csp_seq = cssp_seq;
1032 		rdata->max_seq = csp_seq;
1033 		rdata->maxframe_size = fc_plogi_get_maxframe(plp, lport->mfs);
1034 		fc_rport_enter_prli(rdata);
1035 	} else {
1036 		struct fc_els_ls_rjt *rjt;
1037 
1038 		rjt = fc_frame_payload_get(fp, sizeof(*rjt));
1039 		if (!rjt)
1040 			FC_RPORT_DBG(rdata, "PLOGI bad response\n");
1041 		else
1042 			FC_RPORT_DBG(rdata, "PLOGI ELS rejected, reason %x expl %x\n",
1043 				     rjt->er_reason, rjt->er_explan);
1044 		fc_rport_error_retry(rdata, -FC_EX_ELS_RJT);
1045 	}
1046 out:
1047 	fc_frame_free(fp);
1048 err:
1049 	mutex_unlock(&rdata->rp_mutex);
1050 put:
1051 	kref_put(&rdata->kref, fc_rport_destroy);
1052 }
1053 
1054 static bool
1055 fc_rport_compatible_roles(struct fc_lport *lport, struct fc_rport_priv *rdata)
1056 {
1057 	if (rdata->ids.roles == FC_PORT_ROLE_UNKNOWN)
1058 		return true;
1059 	if ((rdata->ids.roles & FC_PORT_ROLE_FCP_TARGET) &&
1060 	    (lport->service_params & FCP_SPPF_INIT_FCN))
1061 		return true;
1062 	if ((rdata->ids.roles & FC_PORT_ROLE_FCP_INITIATOR) &&
1063 	    (lport->service_params & FCP_SPPF_TARG_FCN))
1064 		return true;
1065 	return false;
1066 }
1067 
1068 /**
1069  * fc_rport_enter_plogi() - Send Port Login (PLOGI) request
1070  * @rdata: The remote port to send a PLOGI to
1071  *
1072  * Reference counting: increments kref when sending ELS
1073  */
1074 static void fc_rport_enter_plogi(struct fc_rport_priv *rdata)
1075 {
1076 	struct fc_lport *lport = rdata->local_port;
1077 	struct fc_frame *fp;
1078 
1079 	lockdep_assert_held(&rdata->rp_mutex);
1080 
1081 	if (!fc_rport_compatible_roles(lport, rdata)) {
1082 		FC_RPORT_DBG(rdata, "PLOGI suppressed for incompatible role\n");
1083 		fc_rport_state_enter(rdata, RPORT_ST_PLOGI_WAIT);
1084 		return;
1085 	}
1086 
1087 	FC_RPORT_DBG(rdata, "Port entered PLOGI state from %s state\n",
1088 		     fc_rport_state(rdata));
1089 
1090 	fc_rport_state_enter(rdata, RPORT_ST_PLOGI);
1091 
1092 	rdata->maxframe_size = FC_MIN_MAX_PAYLOAD;
1093 	fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
1094 	if (!fp) {
1095 		FC_RPORT_DBG(rdata, "%s frame alloc failed\n", __func__);
1096 		fc_rport_error_retry(rdata, -FC_EX_ALLOC_ERR);
1097 		return;
1098 	}
1099 	rdata->e_d_tov = lport->e_d_tov;
1100 
1101 	kref_get(&rdata->kref);
1102 	if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_PLOGI,
1103 				  fc_rport_plogi_resp, rdata,
1104 				  2 * lport->r_a_tov)) {
1105 		fc_rport_error_retry(rdata, -FC_EX_XMIT_ERR);
1106 		kref_put(&rdata->kref, fc_rport_destroy);
1107 	}
1108 }
1109 
1110 /**
1111  * fc_rport_prli_resp() - Process Login (PRLI) response handler
1112  * @sp:	       The sequence the PRLI response was on
1113  * @fp:	       The PRLI response frame
1114  * @rdata_arg: The remote port that sent the PRLI response
1115  *
1116  * Locking Note: This function will be called without the rport lock
1117  * held, but it will lock, call an _enter_* function or fc_rport_error
1118  * and then unlock the rport.
1119  */
1120 static void fc_rport_prli_resp(struct fc_seq *sp, struct fc_frame *fp,
1121 			       void *rdata_arg)
1122 {
1123 	struct fc_rport_priv *rdata = rdata_arg;
1124 	struct {
1125 		struct fc_els_prli prli;
1126 		struct fc_els_spp spp;
1127 	} *pp;
1128 	struct fc_els_spp temp_spp;
1129 	struct fc_els_ls_rjt *rjt;
1130 	struct fc4_prov *prov;
1131 	u32 roles = FC_RPORT_ROLE_UNKNOWN;
1132 	u32 fcp_parm = 0;
1133 	u8 op;
1134 	enum fc_els_spp_resp resp_code;
1135 
1136 	FC_RPORT_DBG(rdata, "Received a PRLI %s\n", fc_els_resp_type(fp));
1137 
1138 	if (fp == ERR_PTR(-FC_EX_CLOSED))
1139 		goto put;
1140 
1141 	mutex_lock(&rdata->rp_mutex);
1142 
1143 	if (rdata->rp_state != RPORT_ST_PRLI) {
1144 		FC_RPORT_DBG(rdata, "Received a PRLI response, but in state "
1145 			     "%s\n", fc_rport_state(rdata));
1146 		if (IS_ERR(fp))
1147 			goto err;
1148 		goto out;
1149 	}
1150 
1151 	if (IS_ERR(fp)) {
1152 		fc_rport_error_retry(rdata, PTR_ERR(fp));
1153 		goto err;
1154 	}
1155 
1156 	/* reinitialize remote port roles */
1157 	rdata->ids.roles = FC_RPORT_ROLE_UNKNOWN;
1158 
1159 	op = fc_frame_payload_op(fp);
1160 	if (op == ELS_LS_ACC) {
1161 		pp = fc_frame_payload_get(fp, sizeof(*pp));
1162 		if (!pp) {
1163 			fc_rport_error_retry(rdata, -FC_EX_SEQ_ERR);
1164 			goto out;
1165 		}
1166 
1167 		resp_code = (pp->spp.spp_flags & FC_SPP_RESP_MASK);
1168 		FC_RPORT_DBG(rdata, "PRLI spp_flags = 0x%x spp_type 0x%x\n",
1169 			     pp->spp.spp_flags, pp->spp.spp_type);
1170 		rdata->spp_type = pp->spp.spp_type;
1171 		if (resp_code != FC_SPP_RESP_ACK) {
1172 			if (resp_code == FC_SPP_RESP_CONF)
1173 				fc_rport_error(rdata, -FC_EX_SEQ_ERR);
1174 			else
1175 				fc_rport_error_retry(rdata, -FC_EX_SEQ_ERR);
1176 			goto out;
1177 		}
1178 		if (pp->prli.prli_spp_len < sizeof(pp->spp)) {
1179 			fc_rport_error_retry(rdata, -FC_EX_SEQ_ERR);
1180 			goto out;
1181 		}
1182 
1183 		fcp_parm = ntohl(pp->spp.spp_params);
1184 		if (fcp_parm & FCP_SPPF_RETRY)
1185 			rdata->flags |= FC_RP_FLAGS_RETRY;
1186 		if (fcp_parm & FCP_SPPF_CONF_COMPL)
1187 			rdata->flags |= FC_RP_FLAGS_CONF_REQ;
1188 
1189 		/*
1190 		 * Call prli provider if we should act as a target
1191 		 */
1192 		prov = fc_passive_prov[rdata->spp_type];
1193 		if (prov) {
1194 			memset(&temp_spp, 0, sizeof(temp_spp));
1195 			prov->prli(rdata, pp->prli.prli_spp_len,
1196 				   &pp->spp, &temp_spp);
1197 		}
1198 		/*
1199 		 * Check if the image pair could be established
1200 		 */
1201 		if (rdata->spp_type != FC_TYPE_FCP ||
1202 		    !(pp->spp.spp_flags & FC_SPP_EST_IMG_PAIR)) {
1203 			/*
1204 			 * Nope; we can't use this port as a target.
1205 			 */
1206 			fcp_parm &= ~FCP_SPPF_TARG_FCN;
1207 		}
1208 		rdata->supported_classes = FC_COS_CLASS3;
1209 		if (fcp_parm & FCP_SPPF_INIT_FCN)
1210 			roles |= FC_RPORT_ROLE_FCP_INITIATOR;
1211 		if (fcp_parm & FCP_SPPF_TARG_FCN)
1212 			roles |= FC_RPORT_ROLE_FCP_TARGET;
1213 
1214 		rdata->ids.roles = roles;
1215 		fc_rport_enter_rtv(rdata);
1216 
1217 	} else {
1218 		rjt = fc_frame_payload_get(fp, sizeof(*rjt));
1219 		if (!rjt)
1220 			FC_RPORT_DBG(rdata, "PRLI bad response\n");
1221 		else
1222 			FC_RPORT_DBG(rdata, "PRLI ELS rejected, reason %x expl %x\n",
1223 				     rjt->er_reason, rjt->er_explan);
1224 		fc_rport_error_retry(rdata, FC_EX_ELS_RJT);
1225 	}
1226 
1227 out:
1228 	fc_frame_free(fp);
1229 err:
1230 	mutex_unlock(&rdata->rp_mutex);
1231 put:
1232 	kref_put(&rdata->kref, fc_rport_destroy);
1233 }
1234 
1235 /**
1236  * fc_rport_enter_prli() - Send Process Login (PRLI) request
1237  * @rdata: The remote port to send the PRLI request to
1238  *
1239  * Reference counting: increments kref when sending ELS
1240  */
1241 static void fc_rport_enter_prli(struct fc_rport_priv *rdata)
1242 {
1243 	struct fc_lport *lport = rdata->local_port;
1244 	struct {
1245 		struct fc_els_prli prli;
1246 		struct fc_els_spp spp;
1247 	} *pp;
1248 	struct fc_frame *fp;
1249 	struct fc4_prov *prov;
1250 
1251 	lockdep_assert_held(&rdata->rp_mutex);
1252 
1253 	/*
1254 	 * If the rport is one of the well known addresses
1255 	 * we skip PRLI and RTV and go straight to READY.
1256 	 */
1257 	if (rdata->ids.port_id >= FC_FID_DOM_MGR) {
1258 		fc_rport_enter_ready(rdata);
1259 		return;
1260 	}
1261 
1262 	/*
1263 	 * And if the local port does not support the initiator function
1264 	 * there's no need to send a PRLI, either.
1265 	 */
1266 	if (!(lport->service_params & FCP_SPPF_INIT_FCN)) {
1267 		    fc_rport_enter_ready(rdata);
1268 		    return;
1269 	}
1270 
1271 	FC_RPORT_DBG(rdata, "Port entered PRLI state from %s state\n",
1272 		     fc_rport_state(rdata));
1273 
1274 	fc_rport_state_enter(rdata, RPORT_ST_PRLI);
1275 
1276 	fp = fc_frame_alloc(lport, sizeof(*pp));
1277 	if (!fp) {
1278 		fc_rport_error_retry(rdata, -FC_EX_ALLOC_ERR);
1279 		return;
1280 	}
1281 
1282 	fc_prli_fill(lport, fp);
1283 
1284 	prov = fc_passive_prov[FC_TYPE_FCP];
1285 	if (prov) {
1286 		pp = fc_frame_payload_get(fp, sizeof(*pp));
1287 		prov->prli(rdata, sizeof(pp->spp), NULL, &pp->spp);
1288 	}
1289 
1290 	fc_fill_fc_hdr(fp, FC_RCTL_ELS_REQ, rdata->ids.port_id,
1291 		       fc_host_port_id(lport->host), FC_TYPE_ELS,
1292 		       FC_FC_FIRST_SEQ | FC_FC_END_SEQ | FC_FC_SEQ_INIT, 0);
1293 
1294 	kref_get(&rdata->kref);
1295 	if (!fc_exch_seq_send(lport, fp, fc_rport_prli_resp,
1296 			      NULL, rdata, 2 * lport->r_a_tov)) {
1297 		fc_rport_error_retry(rdata, -FC_EX_XMIT_ERR);
1298 		kref_put(&rdata->kref, fc_rport_destroy);
1299 	}
1300 }
1301 
1302 /**
1303  * fc_rport_rtv_resp() - Handler for Request Timeout Value (RTV) responses
1304  * @sp:	       The sequence the RTV was on
1305  * @fp:	       The RTV response frame
1306  * @rdata_arg: The remote port that sent the RTV response
1307  *
1308  * Many targets don't seem to support this.
1309  *
1310  * Locking Note: This function will be called without the rport lock
1311  * held, but it will lock, call an _enter_* function or fc_rport_error
1312  * and then unlock the rport.
1313  */
1314 static void fc_rport_rtv_resp(struct fc_seq *sp, struct fc_frame *fp,
1315 			      void *rdata_arg)
1316 {
1317 	struct fc_rport_priv *rdata = rdata_arg;
1318 	u8 op;
1319 
1320 	FC_RPORT_DBG(rdata, "Received a RTV %s\n", fc_els_resp_type(fp));
1321 
1322 	if (fp == ERR_PTR(-FC_EX_CLOSED))
1323 		goto put;
1324 
1325 	mutex_lock(&rdata->rp_mutex);
1326 
1327 	if (rdata->rp_state != RPORT_ST_RTV) {
1328 		FC_RPORT_DBG(rdata, "Received a RTV response, but in state "
1329 			     "%s\n", fc_rport_state(rdata));
1330 		if (IS_ERR(fp))
1331 			goto err;
1332 		goto out;
1333 	}
1334 
1335 	if (IS_ERR(fp)) {
1336 		fc_rport_error(rdata, PTR_ERR(fp));
1337 		goto err;
1338 	}
1339 
1340 	op = fc_frame_payload_op(fp);
1341 	if (op == ELS_LS_ACC) {
1342 		struct fc_els_rtv_acc *rtv;
1343 		u32 toq;
1344 		u32 tov;
1345 
1346 		rtv = fc_frame_payload_get(fp, sizeof(*rtv));
1347 		if (rtv) {
1348 			toq = ntohl(rtv->rtv_toq);
1349 			tov = ntohl(rtv->rtv_r_a_tov);
1350 			if (tov == 0)
1351 				tov = 1;
1352 			if (tov > rdata->r_a_tov)
1353 				rdata->r_a_tov = tov;
1354 			tov = ntohl(rtv->rtv_e_d_tov);
1355 			if (toq & FC_ELS_RTV_EDRES)
1356 				tov /= 1000000;
1357 			if (tov == 0)
1358 				tov = 1;
1359 			if (tov > rdata->e_d_tov)
1360 				rdata->e_d_tov = tov;
1361 		}
1362 	}
1363 
1364 	fc_rport_enter_ready(rdata);
1365 
1366 out:
1367 	fc_frame_free(fp);
1368 err:
1369 	mutex_unlock(&rdata->rp_mutex);
1370 put:
1371 	kref_put(&rdata->kref, fc_rport_destroy);
1372 }
1373 
1374 /**
1375  * fc_rport_enter_rtv() - Send Request Timeout Value (RTV) request
1376  * @rdata: The remote port to send the RTV request to
1377  *
1378  * Reference counting: increments kref when sending ELS
1379  */
1380 static void fc_rport_enter_rtv(struct fc_rport_priv *rdata)
1381 {
1382 	struct fc_frame *fp;
1383 	struct fc_lport *lport = rdata->local_port;
1384 
1385 	lockdep_assert_held(&rdata->rp_mutex);
1386 
1387 	FC_RPORT_DBG(rdata, "Port entered RTV state from %s state\n",
1388 		     fc_rport_state(rdata));
1389 
1390 	fc_rport_state_enter(rdata, RPORT_ST_RTV);
1391 
1392 	fp = fc_frame_alloc(lport, sizeof(struct fc_els_rtv));
1393 	if (!fp) {
1394 		fc_rport_error_retry(rdata, -FC_EX_ALLOC_ERR);
1395 		return;
1396 	}
1397 
1398 	kref_get(&rdata->kref);
1399 	if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_RTV,
1400 				  fc_rport_rtv_resp, rdata,
1401 				  2 * lport->r_a_tov)) {
1402 		fc_rport_error_retry(rdata, -FC_EX_XMIT_ERR);
1403 		kref_put(&rdata->kref, fc_rport_destroy);
1404 	}
1405 }
1406 
1407 /**
1408  * fc_rport_recv_rtv_req() - Handler for Read Timeout Value (RTV) requests
1409  * @rdata: The remote port that sent the RTV request
1410  * @in_fp: The RTV request frame
1411  */
1412 static void fc_rport_recv_rtv_req(struct fc_rport_priv *rdata,
1413 				  struct fc_frame *in_fp)
1414 {
1415 	struct fc_lport *lport = rdata->local_port;
1416 	struct fc_frame *fp;
1417 	struct fc_els_rtv_acc *rtv;
1418 	struct fc_seq_els_data rjt_data;
1419 
1420 	lockdep_assert_held(&rdata->rp_mutex);
1421 	lockdep_assert_held(&lport->lp_mutex);
1422 
1423 	FC_RPORT_DBG(rdata, "Received RTV request\n");
1424 
1425 	fp = fc_frame_alloc(lport, sizeof(*rtv));
1426 	if (!fp) {
1427 		rjt_data.reason = ELS_RJT_UNAB;
1428 		rjt_data.explan = ELS_EXPL_INSUF_RES;
1429 		fc_seq_els_rsp_send(in_fp, ELS_LS_RJT, &rjt_data);
1430 		goto drop;
1431 	}
1432 	rtv = fc_frame_payload_get(fp, sizeof(*rtv));
1433 	rtv->rtv_cmd = ELS_LS_ACC;
1434 	rtv->rtv_r_a_tov = htonl(lport->r_a_tov);
1435 	rtv->rtv_e_d_tov = htonl(lport->e_d_tov);
1436 	rtv->rtv_toq = 0;
1437 	fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
1438 	lport->tt.frame_send(lport, fp);
1439 drop:
1440 	fc_frame_free(in_fp);
1441 }
1442 
1443 /**
1444  * fc_rport_logo_resp() - Handler for logout (LOGO) responses
1445  * @sp:	       The sequence the LOGO was on
1446  * @fp:	       The LOGO response frame
1447  * @lport_arg: The local port
1448  */
1449 static void fc_rport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
1450 			       void *rdata_arg)
1451 {
1452 	struct fc_rport_priv *rdata = rdata_arg;
1453 	struct fc_lport *lport = rdata->local_port;
1454 
1455 	FC_RPORT_ID_DBG(lport, fc_seq_exch(sp)->did,
1456 			"Received a LOGO %s\n", fc_els_resp_type(fp));
1457 	if (!IS_ERR(fp))
1458 		fc_frame_free(fp);
1459 	kref_put(&rdata->kref, fc_rport_destroy);
1460 }
1461 
1462 /**
1463  * fc_rport_enter_logo() - Send a logout (LOGO) request
1464  * @rdata: The remote port to send the LOGO request to
1465  *
1466  * Reference counting: increments kref when sending ELS
1467  */
1468 static void fc_rport_enter_logo(struct fc_rport_priv *rdata)
1469 {
1470 	struct fc_lport *lport = rdata->local_port;
1471 	struct fc_frame *fp;
1472 
1473 	lockdep_assert_held(&rdata->rp_mutex);
1474 
1475 	FC_RPORT_DBG(rdata, "Port sending LOGO from %s state\n",
1476 		     fc_rport_state(rdata));
1477 
1478 	fp = fc_frame_alloc(lport, sizeof(struct fc_els_logo));
1479 	if (!fp)
1480 		return;
1481 	kref_get(&rdata->kref);
1482 	if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_LOGO,
1483 				  fc_rport_logo_resp, rdata, 0))
1484 		kref_put(&rdata->kref, fc_rport_destroy);
1485 }
1486 
1487 /**
1488  * fc_rport_els_adisc_resp() - Handler for Address Discovery (ADISC) responses
1489  * @sp:	       The sequence the ADISC response was on
1490  * @fp:	       The ADISC response frame
1491  * @rdata_arg: The remote port that sent the ADISC response
1492  *
1493  * Locking Note: This function will be called without the rport lock
1494  * held, but it will lock, call an _enter_* function or fc_rport_error
1495  * and then unlock the rport.
1496  */
1497 static void fc_rport_adisc_resp(struct fc_seq *sp, struct fc_frame *fp,
1498 				void *rdata_arg)
1499 {
1500 	struct fc_rport_priv *rdata = rdata_arg;
1501 	struct fc_els_adisc *adisc;
1502 	u8 op;
1503 
1504 	FC_RPORT_DBG(rdata, "Received a ADISC response\n");
1505 
1506 	if (fp == ERR_PTR(-FC_EX_CLOSED))
1507 		goto put;
1508 
1509 	mutex_lock(&rdata->rp_mutex);
1510 
1511 	if (rdata->rp_state != RPORT_ST_ADISC) {
1512 		FC_RPORT_DBG(rdata, "Received a ADISC resp but in state %s\n",
1513 			     fc_rport_state(rdata));
1514 		if (IS_ERR(fp))
1515 			goto err;
1516 		goto out;
1517 	}
1518 
1519 	if (IS_ERR(fp)) {
1520 		fc_rport_error(rdata, PTR_ERR(fp));
1521 		goto err;
1522 	}
1523 
1524 	/*
1525 	 * If address verification failed.  Consider us logged out of the rport.
1526 	 * Since the rport is still in discovery, we want to be
1527 	 * logged in, so go to PLOGI state.  Otherwise, go back to READY.
1528 	 */
1529 	op = fc_frame_payload_op(fp);
1530 	adisc = fc_frame_payload_get(fp, sizeof(*adisc));
1531 	if (op != ELS_LS_ACC || !adisc ||
1532 	    ntoh24(adisc->adisc_port_id) != rdata->ids.port_id ||
1533 	    get_unaligned_be64(&adisc->adisc_wwpn) != rdata->ids.port_name ||
1534 	    get_unaligned_be64(&adisc->adisc_wwnn) != rdata->ids.node_name) {
1535 		FC_RPORT_DBG(rdata, "ADISC error or mismatch\n");
1536 		fc_rport_enter_flogi(rdata);
1537 	} else {
1538 		FC_RPORT_DBG(rdata, "ADISC OK\n");
1539 		fc_rport_enter_ready(rdata);
1540 	}
1541 out:
1542 	fc_frame_free(fp);
1543 err:
1544 	mutex_unlock(&rdata->rp_mutex);
1545 put:
1546 	kref_put(&rdata->kref, fc_rport_destroy);
1547 }
1548 
1549 /**
1550  * fc_rport_enter_adisc() - Send Address Discover (ADISC) request
1551  * @rdata: The remote port to send the ADISC request to
1552  *
1553  * Reference counting: increments kref when sending ELS
1554  */
1555 static void fc_rport_enter_adisc(struct fc_rport_priv *rdata)
1556 {
1557 	struct fc_lport *lport = rdata->local_port;
1558 	struct fc_frame *fp;
1559 
1560 	lockdep_assert_held(&rdata->rp_mutex);
1561 
1562 	FC_RPORT_DBG(rdata, "sending ADISC from %s state\n",
1563 		     fc_rport_state(rdata));
1564 
1565 	fc_rport_state_enter(rdata, RPORT_ST_ADISC);
1566 
1567 	fp = fc_frame_alloc(lport, sizeof(struct fc_els_adisc));
1568 	if (!fp) {
1569 		fc_rport_error_retry(rdata, -FC_EX_ALLOC_ERR);
1570 		return;
1571 	}
1572 	kref_get(&rdata->kref);
1573 	if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_ADISC,
1574 				  fc_rport_adisc_resp, rdata,
1575 				  2 * lport->r_a_tov)) {
1576 		fc_rport_error_retry(rdata, -FC_EX_XMIT_ERR);
1577 		kref_put(&rdata->kref, fc_rport_destroy);
1578 	}
1579 }
1580 
1581 /**
1582  * fc_rport_recv_adisc_req() - Handler for Address Discovery (ADISC) requests
1583  * @rdata: The remote port that sent the ADISC request
1584  * @in_fp: The ADISC request frame
1585  */
1586 static void fc_rport_recv_adisc_req(struct fc_rport_priv *rdata,
1587 				    struct fc_frame *in_fp)
1588 {
1589 	struct fc_lport *lport = rdata->local_port;
1590 	struct fc_frame *fp;
1591 	struct fc_els_adisc *adisc;
1592 	struct fc_seq_els_data rjt_data;
1593 
1594 	lockdep_assert_held(&rdata->rp_mutex);
1595 	lockdep_assert_held(&lport->lp_mutex);
1596 
1597 	FC_RPORT_DBG(rdata, "Received ADISC request\n");
1598 
1599 	adisc = fc_frame_payload_get(in_fp, sizeof(*adisc));
1600 	if (!adisc) {
1601 		rjt_data.reason = ELS_RJT_PROT;
1602 		rjt_data.explan = ELS_EXPL_INV_LEN;
1603 		fc_seq_els_rsp_send(in_fp, ELS_LS_RJT, &rjt_data);
1604 		goto drop;
1605 	}
1606 
1607 	fp = fc_frame_alloc(lport, sizeof(*adisc));
1608 	if (!fp)
1609 		goto drop;
1610 	fc_adisc_fill(lport, fp);
1611 	adisc = fc_frame_payload_get(fp, sizeof(*adisc));
1612 	adisc->adisc_cmd = ELS_LS_ACC;
1613 	fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
1614 	lport->tt.frame_send(lport, fp);
1615 drop:
1616 	fc_frame_free(in_fp);
1617 }
1618 
1619 /**
1620  * fc_rport_recv_rls_req() - Handle received Read Link Status request
1621  * @rdata: The remote port that sent the RLS request
1622  * @rx_fp: The PRLI request frame
1623  */
1624 static void fc_rport_recv_rls_req(struct fc_rport_priv *rdata,
1625 				  struct fc_frame *rx_fp)
1626 
1627 {
1628 	struct fc_lport *lport = rdata->local_port;
1629 	struct fc_frame *fp;
1630 	struct fc_els_rls *rls;
1631 	struct fc_els_rls_resp *rsp;
1632 	struct fc_els_lesb *lesb;
1633 	struct fc_seq_els_data rjt_data;
1634 	struct fc_host_statistics *hst;
1635 
1636 	lockdep_assert_held(&rdata->rp_mutex);
1637 
1638 	FC_RPORT_DBG(rdata, "Received RLS request while in state %s\n",
1639 		     fc_rport_state(rdata));
1640 
1641 	rls = fc_frame_payload_get(rx_fp, sizeof(*rls));
1642 	if (!rls) {
1643 		rjt_data.reason = ELS_RJT_PROT;
1644 		rjt_data.explan = ELS_EXPL_INV_LEN;
1645 		goto out_rjt;
1646 	}
1647 
1648 	fp = fc_frame_alloc(lport, sizeof(*rsp));
1649 	if (!fp) {
1650 		rjt_data.reason = ELS_RJT_UNAB;
1651 		rjt_data.explan = ELS_EXPL_INSUF_RES;
1652 		goto out_rjt;
1653 	}
1654 
1655 	rsp = fc_frame_payload_get(fp, sizeof(*rsp));
1656 	memset(rsp, 0, sizeof(*rsp));
1657 	rsp->rls_cmd = ELS_LS_ACC;
1658 	lesb = &rsp->rls_lesb;
1659 	if (lport->tt.get_lesb) {
1660 		/* get LESB from LLD if it supports it */
1661 		lport->tt.get_lesb(lport, lesb);
1662 	} else {
1663 		fc_get_host_stats(lport->host);
1664 		hst = &lport->host_stats;
1665 		lesb->lesb_link_fail = htonl(hst->link_failure_count);
1666 		lesb->lesb_sync_loss = htonl(hst->loss_of_sync_count);
1667 		lesb->lesb_sig_loss = htonl(hst->loss_of_signal_count);
1668 		lesb->lesb_prim_err = htonl(hst->prim_seq_protocol_err_count);
1669 		lesb->lesb_inv_word = htonl(hst->invalid_tx_word_count);
1670 		lesb->lesb_inv_crc = htonl(hst->invalid_crc_count);
1671 	}
1672 
1673 	fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
1674 	lport->tt.frame_send(lport, fp);
1675 	goto out;
1676 
1677 out_rjt:
1678 	fc_seq_els_rsp_send(rx_fp, ELS_LS_RJT, &rjt_data);
1679 out:
1680 	fc_frame_free(rx_fp);
1681 }
1682 
1683 /**
1684  * fc_rport_recv_els_req() - Handler for validated ELS requests
1685  * @lport: The local port that received the ELS request
1686  * @fp:	   The ELS request frame
1687  *
1688  * Handle incoming ELS requests that require port login.
1689  * The ELS opcode has already been validated by the caller.
1690  *
1691  * Reference counting: does not modify kref
1692  */
1693 static void fc_rport_recv_els_req(struct fc_lport *lport, struct fc_frame *fp)
1694 {
1695 	struct fc_rport_priv *rdata;
1696 	struct fc_seq_els_data els_data;
1697 
1698 	lockdep_assert_held(&lport->lp_mutex);
1699 
1700 	rdata = fc_rport_lookup(lport, fc_frame_sid(fp));
1701 	if (!rdata) {
1702 		FC_RPORT_ID_DBG(lport, fc_frame_sid(fp),
1703 				"Received ELS 0x%02x from non-logged-in port\n",
1704 				fc_frame_payload_op(fp));
1705 		goto reject;
1706 	}
1707 
1708 	mutex_lock(&rdata->rp_mutex);
1709 
1710 	switch (rdata->rp_state) {
1711 	case RPORT_ST_PRLI:
1712 	case RPORT_ST_RTV:
1713 	case RPORT_ST_READY:
1714 	case RPORT_ST_ADISC:
1715 		break;
1716 	case RPORT_ST_PLOGI:
1717 		if (fc_frame_payload_op(fp) == ELS_PRLI) {
1718 			FC_RPORT_DBG(rdata, "Reject ELS PRLI "
1719 				     "while in state %s\n",
1720 				     fc_rport_state(rdata));
1721 			mutex_unlock(&rdata->rp_mutex);
1722 			kref_put(&rdata->kref, fc_rport_destroy);
1723 			goto busy;
1724 		}
1725 	default:
1726 		FC_RPORT_DBG(rdata,
1727 			     "Reject ELS 0x%02x while in state %s\n",
1728 			     fc_frame_payload_op(fp), fc_rport_state(rdata));
1729 		mutex_unlock(&rdata->rp_mutex);
1730 		kref_put(&rdata->kref, fc_rport_destroy);
1731 		goto reject;
1732 	}
1733 
1734 	switch (fc_frame_payload_op(fp)) {
1735 	case ELS_PRLI:
1736 		fc_rport_recv_prli_req(rdata, fp);
1737 		break;
1738 	case ELS_PRLO:
1739 		fc_rport_recv_prlo_req(rdata, fp);
1740 		break;
1741 	case ELS_ADISC:
1742 		fc_rport_recv_adisc_req(rdata, fp);
1743 		break;
1744 	case ELS_RRQ:
1745 		fc_seq_els_rsp_send(fp, ELS_RRQ, NULL);
1746 		fc_frame_free(fp);
1747 		break;
1748 	case ELS_REC:
1749 		fc_seq_els_rsp_send(fp, ELS_REC, NULL);
1750 		fc_frame_free(fp);
1751 		break;
1752 	case ELS_RLS:
1753 		fc_rport_recv_rls_req(rdata, fp);
1754 		break;
1755 	case ELS_RTV:
1756 		fc_rport_recv_rtv_req(rdata, fp);
1757 		break;
1758 	default:
1759 		fc_frame_free(fp);	/* can't happen */
1760 		break;
1761 	}
1762 
1763 	mutex_unlock(&rdata->rp_mutex);
1764 	kref_put(&rdata->kref, fc_rport_destroy);
1765 	return;
1766 
1767 reject:
1768 	els_data.reason = ELS_RJT_UNAB;
1769 	els_data.explan = ELS_EXPL_PLOGI_REQD;
1770 	fc_seq_els_rsp_send(fp, ELS_LS_RJT, &els_data);
1771 	fc_frame_free(fp);
1772 	return;
1773 
1774 busy:
1775 	els_data.reason = ELS_RJT_BUSY;
1776 	els_data.explan = ELS_EXPL_NONE;
1777 	fc_seq_els_rsp_send(fp, ELS_LS_RJT, &els_data);
1778 	fc_frame_free(fp);
1779 	return;
1780 }
1781 
1782 /**
1783  * fc_rport_recv_req() - Handler for requests
1784  * @lport: The local port that received the request
1785  * @fp:	   The request frame
1786  *
1787  * Reference counting: does not modify kref
1788  */
1789 void fc_rport_recv_req(struct fc_lport *lport, struct fc_frame *fp)
1790 {
1791 	struct fc_seq_els_data els_data;
1792 
1793 	lockdep_assert_held(&lport->lp_mutex);
1794 
1795 	/*
1796 	 * Handle FLOGI, PLOGI and LOGO requests separately, since they
1797 	 * don't require prior login.
1798 	 * Check for unsupported opcodes first and reject them.
1799 	 * For some ops, it would be incorrect to reject with "PLOGI required".
1800 	 */
1801 	switch (fc_frame_payload_op(fp)) {
1802 	case ELS_FLOGI:
1803 		fc_rport_recv_flogi_req(lport, fp);
1804 		break;
1805 	case ELS_PLOGI:
1806 		fc_rport_recv_plogi_req(lport, fp);
1807 		break;
1808 	case ELS_LOGO:
1809 		fc_rport_recv_logo_req(lport, fp);
1810 		break;
1811 	case ELS_PRLI:
1812 	case ELS_PRLO:
1813 	case ELS_ADISC:
1814 	case ELS_RRQ:
1815 	case ELS_REC:
1816 	case ELS_RLS:
1817 	case ELS_RTV:
1818 		fc_rport_recv_els_req(lport, fp);
1819 		break;
1820 	default:
1821 		els_data.reason = ELS_RJT_UNSUP;
1822 		els_data.explan = ELS_EXPL_NONE;
1823 		fc_seq_els_rsp_send(fp, ELS_LS_RJT, &els_data);
1824 		fc_frame_free(fp);
1825 		break;
1826 	}
1827 }
1828 EXPORT_SYMBOL(fc_rport_recv_req);
1829 
1830 /**
1831  * fc_rport_recv_plogi_req() - Handler for Port Login (PLOGI) requests
1832  * @lport: The local port that received the PLOGI request
1833  * @rx_fp: The PLOGI request frame
1834  *
1835  * Reference counting: increments kref on return
1836  */
1837 static void fc_rport_recv_plogi_req(struct fc_lport *lport,
1838 				    struct fc_frame *rx_fp)
1839 {
1840 	struct fc_disc *disc;
1841 	struct fc_rport_priv *rdata;
1842 	struct fc_frame *fp = rx_fp;
1843 	struct fc_els_flogi *pl;
1844 	struct fc_seq_els_data rjt_data;
1845 	u32 sid;
1846 
1847 	lockdep_assert_held(&lport->lp_mutex);
1848 
1849 	sid = fc_frame_sid(fp);
1850 
1851 	FC_RPORT_ID_DBG(lport, sid, "Received PLOGI request\n");
1852 
1853 	pl = fc_frame_payload_get(fp, sizeof(*pl));
1854 	if (!pl) {
1855 		FC_RPORT_ID_DBG(lport, sid, "Received PLOGI too short\n");
1856 		rjt_data.reason = ELS_RJT_PROT;
1857 		rjt_data.explan = ELS_EXPL_INV_LEN;
1858 		goto reject;
1859 	}
1860 
1861 	disc = &lport->disc;
1862 	mutex_lock(&disc->disc_mutex);
1863 	rdata = fc_rport_create(lport, sid);
1864 	if (!rdata) {
1865 		mutex_unlock(&disc->disc_mutex);
1866 		rjt_data.reason = ELS_RJT_UNAB;
1867 		rjt_data.explan = ELS_EXPL_INSUF_RES;
1868 		goto reject;
1869 	}
1870 
1871 	mutex_lock(&rdata->rp_mutex);
1872 	mutex_unlock(&disc->disc_mutex);
1873 
1874 	rdata->ids.port_name = get_unaligned_be64(&pl->fl_wwpn);
1875 	rdata->ids.node_name = get_unaligned_be64(&pl->fl_wwnn);
1876 
1877 	/*
1878 	 * If the rport was just created, possibly due to the incoming PLOGI,
1879 	 * set the state appropriately and accept the PLOGI.
1880 	 *
1881 	 * If we had also sent a PLOGI, and if the received PLOGI is from a
1882 	 * higher WWPN, we accept it, otherwise an LS_RJT is sent with reason
1883 	 * "command already in progress".
1884 	 *
1885 	 * XXX TBD: If the session was ready before, the PLOGI should result in
1886 	 * all outstanding exchanges being reset.
1887 	 */
1888 	switch (rdata->rp_state) {
1889 	case RPORT_ST_INIT:
1890 		FC_RPORT_DBG(rdata, "Received PLOGI in INIT state\n");
1891 		break;
1892 	case RPORT_ST_PLOGI_WAIT:
1893 		FC_RPORT_DBG(rdata, "Received PLOGI in PLOGI_WAIT state\n");
1894 		break;
1895 	case RPORT_ST_PLOGI:
1896 		FC_RPORT_DBG(rdata, "Received PLOGI in PLOGI state\n");
1897 		if (rdata->ids.port_name < lport->wwpn) {
1898 			mutex_unlock(&rdata->rp_mutex);
1899 			rjt_data.reason = ELS_RJT_INPROG;
1900 			rjt_data.explan = ELS_EXPL_NONE;
1901 			goto reject;
1902 		}
1903 		break;
1904 	case RPORT_ST_PRLI:
1905 	case RPORT_ST_RTV:
1906 	case RPORT_ST_READY:
1907 	case RPORT_ST_ADISC:
1908 		FC_RPORT_DBG(rdata, "Received PLOGI in logged-in state %d "
1909 			     "- ignored for now\n", rdata->rp_state);
1910 		/* XXX TBD - should reset */
1911 		break;
1912 	case RPORT_ST_FLOGI:
1913 	case RPORT_ST_DELETE:
1914 		FC_RPORT_DBG(rdata, "Received PLOGI in state %s - send busy\n",
1915 			     fc_rport_state(rdata));
1916 		mutex_unlock(&rdata->rp_mutex);
1917 		rjt_data.reason = ELS_RJT_BUSY;
1918 		rjt_data.explan = ELS_EXPL_NONE;
1919 		goto reject;
1920 	}
1921 	if (!fc_rport_compatible_roles(lport, rdata)) {
1922 		FC_RPORT_DBG(rdata, "Received PLOGI for incompatible role\n");
1923 		mutex_unlock(&rdata->rp_mutex);
1924 		rjt_data.reason = ELS_RJT_LOGIC;
1925 		rjt_data.explan = ELS_EXPL_NONE;
1926 		goto reject;
1927 	}
1928 
1929 	/*
1930 	 * Get session payload size from incoming PLOGI.
1931 	 */
1932 	rdata->maxframe_size = fc_plogi_get_maxframe(pl, lport->mfs);
1933 
1934 	/*
1935 	 * Send LS_ACC.	 If this fails, the originator should retry.
1936 	 */
1937 	fp = fc_frame_alloc(lport, sizeof(*pl));
1938 	if (!fp)
1939 		goto out;
1940 
1941 	fc_plogi_fill(lport, fp, ELS_LS_ACC);
1942 	fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
1943 	lport->tt.frame_send(lport, fp);
1944 	fc_rport_enter_prli(rdata);
1945 out:
1946 	mutex_unlock(&rdata->rp_mutex);
1947 	fc_frame_free(rx_fp);
1948 	return;
1949 
1950 reject:
1951 	fc_seq_els_rsp_send(fp, ELS_LS_RJT, &rjt_data);
1952 	fc_frame_free(fp);
1953 }
1954 
1955 /**
1956  * fc_rport_recv_prli_req() - Handler for process login (PRLI) requests
1957  * @rdata: The remote port that sent the PRLI request
1958  * @rx_fp: The PRLI request frame
1959  */
1960 static void fc_rport_recv_prli_req(struct fc_rport_priv *rdata,
1961 				   struct fc_frame *rx_fp)
1962 {
1963 	struct fc_lport *lport = rdata->local_port;
1964 	struct fc_frame *fp;
1965 	struct {
1966 		struct fc_els_prli prli;
1967 		struct fc_els_spp spp;
1968 	} *pp;
1969 	struct fc_els_spp *rspp;	/* request service param page */
1970 	struct fc_els_spp *spp;	/* response spp */
1971 	unsigned int len;
1972 	unsigned int plen;
1973 	enum fc_els_spp_resp resp;
1974 	struct fc_seq_els_data rjt_data;
1975 	struct fc4_prov *prov;
1976 
1977 	lockdep_assert_held(&rdata->rp_mutex);
1978 
1979 	FC_RPORT_DBG(rdata, "Received PRLI request while in state %s\n",
1980 		     fc_rport_state(rdata));
1981 
1982 	len = fr_len(rx_fp) - sizeof(struct fc_frame_header);
1983 	pp = fc_frame_payload_get(rx_fp, sizeof(*pp));
1984 	if (!pp)
1985 		goto reject_len;
1986 	plen = ntohs(pp->prli.prli_len);
1987 	if ((plen % 4) != 0 || plen > len || plen < 16)
1988 		goto reject_len;
1989 	if (plen < len)
1990 		len = plen;
1991 	plen = pp->prli.prli_spp_len;
1992 	if ((plen % 4) != 0 || plen < sizeof(*spp) ||
1993 	    plen > len || len < sizeof(*pp) || plen < 12)
1994 		goto reject_len;
1995 	rspp = &pp->spp;
1996 
1997 	fp = fc_frame_alloc(lport, len);
1998 	if (!fp) {
1999 		rjt_data.reason = ELS_RJT_UNAB;
2000 		rjt_data.explan = ELS_EXPL_INSUF_RES;
2001 		goto reject;
2002 	}
2003 	pp = fc_frame_payload_get(fp, len);
2004 	WARN_ON(!pp);
2005 	memset(pp, 0, len);
2006 	pp->prli.prli_cmd = ELS_LS_ACC;
2007 	pp->prli.prli_spp_len = plen;
2008 	pp->prli.prli_len = htons(len);
2009 	len -= sizeof(struct fc_els_prli);
2010 
2011 	/*
2012 	 * Go through all the service parameter pages and build
2013 	 * response.  If plen indicates longer SPP than standard,
2014 	 * use that.  The entire response has been pre-cleared above.
2015 	 */
2016 	spp = &pp->spp;
2017 	mutex_lock(&fc_prov_mutex);
2018 	while (len >= plen) {
2019 		rdata->spp_type = rspp->spp_type;
2020 		spp->spp_type = rspp->spp_type;
2021 		spp->spp_type_ext = rspp->spp_type_ext;
2022 		resp = 0;
2023 
2024 		if (rspp->spp_type < FC_FC4_PROV_SIZE) {
2025 			enum fc_els_spp_resp active = 0, passive = 0;
2026 
2027 			prov = fc_active_prov[rspp->spp_type];
2028 			if (prov)
2029 				active = prov->prli(rdata, plen, rspp, spp);
2030 			prov = fc_passive_prov[rspp->spp_type];
2031 			if (prov)
2032 				passive = prov->prli(rdata, plen, rspp, spp);
2033 			if (!active || passive == FC_SPP_RESP_ACK)
2034 				resp = passive;
2035 			else
2036 				resp = active;
2037 			FC_RPORT_DBG(rdata, "PRLI rspp type %x "
2038 				     "active %x passive %x\n",
2039 				     rspp->spp_type, active, passive);
2040 		}
2041 		if (!resp) {
2042 			if (spp->spp_flags & FC_SPP_EST_IMG_PAIR)
2043 				resp |= FC_SPP_RESP_CONF;
2044 			else
2045 				resp |= FC_SPP_RESP_INVL;
2046 		}
2047 		spp->spp_flags |= resp;
2048 		len -= plen;
2049 		rspp = (struct fc_els_spp *)((char *)rspp + plen);
2050 		spp = (struct fc_els_spp *)((char *)spp + plen);
2051 	}
2052 	mutex_unlock(&fc_prov_mutex);
2053 
2054 	/*
2055 	 * Send LS_ACC.	 If this fails, the originator should retry.
2056 	 */
2057 	fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
2058 	lport->tt.frame_send(lport, fp);
2059 
2060 	goto drop;
2061 
2062 reject_len:
2063 	rjt_data.reason = ELS_RJT_PROT;
2064 	rjt_data.explan = ELS_EXPL_INV_LEN;
2065 reject:
2066 	fc_seq_els_rsp_send(rx_fp, ELS_LS_RJT, &rjt_data);
2067 drop:
2068 	fc_frame_free(rx_fp);
2069 }
2070 
2071 /**
2072  * fc_rport_recv_prlo_req() - Handler for process logout (PRLO) requests
2073  * @rdata: The remote port that sent the PRLO request
2074  * @rx_fp: The PRLO request frame
2075  */
2076 static void fc_rport_recv_prlo_req(struct fc_rport_priv *rdata,
2077 				   struct fc_frame *rx_fp)
2078 {
2079 	struct fc_lport *lport = rdata->local_port;
2080 	struct fc_frame *fp;
2081 	struct {
2082 		struct fc_els_prlo prlo;
2083 		struct fc_els_spp spp;
2084 	} *pp;
2085 	struct fc_els_spp *rspp;	/* request service param page */
2086 	struct fc_els_spp *spp;		/* response spp */
2087 	unsigned int len;
2088 	unsigned int plen;
2089 	struct fc_seq_els_data rjt_data;
2090 
2091 	lockdep_assert_held(&rdata->rp_mutex);
2092 
2093 	FC_RPORT_DBG(rdata, "Received PRLO request while in state %s\n",
2094 		     fc_rport_state(rdata));
2095 
2096 	len = fr_len(rx_fp) - sizeof(struct fc_frame_header);
2097 	pp = fc_frame_payload_get(rx_fp, sizeof(*pp));
2098 	if (!pp)
2099 		goto reject_len;
2100 	plen = ntohs(pp->prlo.prlo_len);
2101 	if (plen != 20)
2102 		goto reject_len;
2103 	if (plen < len)
2104 		len = plen;
2105 
2106 	rspp = &pp->spp;
2107 
2108 	fp = fc_frame_alloc(lport, len);
2109 	if (!fp) {
2110 		rjt_data.reason = ELS_RJT_UNAB;
2111 		rjt_data.explan = ELS_EXPL_INSUF_RES;
2112 		goto reject;
2113 	}
2114 
2115 	pp = fc_frame_payload_get(fp, len);
2116 	WARN_ON(!pp);
2117 	memset(pp, 0, len);
2118 	pp->prlo.prlo_cmd = ELS_LS_ACC;
2119 	pp->prlo.prlo_obs = 0x10;
2120 	pp->prlo.prlo_len = htons(len);
2121 	spp = &pp->spp;
2122 	spp->spp_type = rspp->spp_type;
2123 	spp->spp_type_ext = rspp->spp_type_ext;
2124 	spp->spp_flags = FC_SPP_RESP_ACK;
2125 
2126 	fc_rport_enter_prli(rdata);
2127 
2128 	fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
2129 	lport->tt.frame_send(lport, fp);
2130 	goto drop;
2131 
2132 reject_len:
2133 	rjt_data.reason = ELS_RJT_PROT;
2134 	rjt_data.explan = ELS_EXPL_INV_LEN;
2135 reject:
2136 	fc_seq_els_rsp_send(rx_fp, ELS_LS_RJT, &rjt_data);
2137 drop:
2138 	fc_frame_free(rx_fp);
2139 }
2140 
2141 /**
2142  * fc_rport_recv_logo_req() - Handler for logout (LOGO) requests
2143  * @lport: The local port that received the LOGO request
2144  * @fp:	   The LOGO request frame
2145  *
2146  * Reference counting: drops kref on return
2147  */
2148 static void fc_rport_recv_logo_req(struct fc_lport *lport, struct fc_frame *fp)
2149 {
2150 	struct fc_rport_priv *rdata;
2151 	u32 sid;
2152 
2153 	lockdep_assert_held(&lport->lp_mutex);
2154 
2155 	fc_seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
2156 
2157 	sid = fc_frame_sid(fp);
2158 
2159 	rdata = fc_rport_lookup(lport, sid);
2160 	if (rdata) {
2161 		mutex_lock(&rdata->rp_mutex);
2162 		FC_RPORT_DBG(rdata, "Received LOGO request while in state %s\n",
2163 			     fc_rport_state(rdata));
2164 
2165 		rdata->flags &= ~FC_RP_STARTED;
2166 		fc_rport_enter_delete(rdata, RPORT_EV_STOP);
2167 		mutex_unlock(&rdata->rp_mutex);
2168 		kref_put(&rdata->kref, fc_rport_destroy);
2169 	} else
2170 		FC_RPORT_ID_DBG(lport, sid,
2171 				"Received LOGO from non-logged-in port\n");
2172 	fc_frame_free(fp);
2173 }
2174 
2175 /**
2176  * fc_rport_flush_queue() - Flush the rport_event_queue
2177  */
2178 void fc_rport_flush_queue(void)
2179 {
2180 	flush_workqueue(rport_event_queue);
2181 }
2182 EXPORT_SYMBOL(fc_rport_flush_queue);
2183 
2184 /**
2185  * fc_rport_fcp_prli() - Handle incoming PRLI for the FCP initiator.
2186  * @rdata: remote port private
2187  * @spp_len: service parameter page length
2188  * @rspp: received service parameter page
2189  * @spp: response service parameter page
2190  *
2191  * Returns the value for the response code to be placed in spp_flags;
2192  * Returns 0 if not an initiator.
2193  */
2194 static int fc_rport_fcp_prli(struct fc_rport_priv *rdata, u32 spp_len,
2195 			     const struct fc_els_spp *rspp,
2196 			     struct fc_els_spp *spp)
2197 {
2198 	struct fc_lport *lport = rdata->local_port;
2199 	u32 fcp_parm;
2200 
2201 	fcp_parm = ntohl(rspp->spp_params);
2202 	rdata->ids.roles = FC_RPORT_ROLE_UNKNOWN;
2203 	if (fcp_parm & FCP_SPPF_INIT_FCN)
2204 		rdata->ids.roles |= FC_RPORT_ROLE_FCP_INITIATOR;
2205 	if (fcp_parm & FCP_SPPF_TARG_FCN)
2206 		rdata->ids.roles |= FC_RPORT_ROLE_FCP_TARGET;
2207 	if (fcp_parm & FCP_SPPF_RETRY)
2208 		rdata->flags |= FC_RP_FLAGS_RETRY;
2209 	rdata->supported_classes = FC_COS_CLASS3;
2210 
2211 	if (!(lport->service_params & FCP_SPPF_INIT_FCN))
2212 		return 0;
2213 
2214 	spp->spp_flags |= rspp->spp_flags & FC_SPP_EST_IMG_PAIR;
2215 
2216 	/*
2217 	 * OR in our service parameters with other providers (target), if any.
2218 	 */
2219 	fcp_parm = ntohl(spp->spp_params);
2220 	spp->spp_params = htonl(fcp_parm | lport->service_params);
2221 	return FC_SPP_RESP_ACK;
2222 }
2223 
2224 /*
2225  * FC-4 provider ops for FCP initiator.
2226  */
2227 struct fc4_prov fc_rport_fcp_init = {
2228 	.prli = fc_rport_fcp_prli,
2229 };
2230 
2231 /**
2232  * fc_rport_t0_prli() - Handle incoming PRLI parameters for type 0
2233  * @rdata: remote port private
2234  * @spp_len: service parameter page length
2235  * @rspp: received service parameter page
2236  * @spp: response service parameter page
2237  */
2238 static int fc_rport_t0_prli(struct fc_rport_priv *rdata, u32 spp_len,
2239 			    const struct fc_els_spp *rspp,
2240 			    struct fc_els_spp *spp)
2241 {
2242 	if (rspp->spp_flags & FC_SPP_EST_IMG_PAIR)
2243 		return FC_SPP_RESP_INVL;
2244 	return FC_SPP_RESP_ACK;
2245 }
2246 
2247 /*
2248  * FC-4 provider ops for type 0 service parameters.
2249  *
2250  * This handles the special case of type 0 which is always successful
2251  * but doesn't do anything otherwise.
2252  */
2253 struct fc4_prov fc_rport_t0_prov = {
2254 	.prli = fc_rport_t0_prli,
2255 };
2256 
2257 /**
2258  * fc_setup_rport() - Initialize the rport_event_queue
2259  */
2260 int fc_setup_rport(void)
2261 {
2262 	rport_event_queue = create_singlethread_workqueue("fc_rport_eq");
2263 	if (!rport_event_queue)
2264 		return -ENOMEM;
2265 	return 0;
2266 }
2267 
2268 /**
2269  * fc_destroy_rport() - Destroy the rport_event_queue
2270  */
2271 void fc_destroy_rport(void)
2272 {
2273 	destroy_workqueue(rport_event_queue);
2274 }
2275 
2276 /**
2277  * fc_rport_terminate_io() - Stop all outstanding I/O on a remote port
2278  * @rport: The remote port whose I/O should be terminated
2279  */
2280 void fc_rport_terminate_io(struct fc_rport *rport)
2281 {
2282 	struct fc_rport_libfc_priv *rpriv = rport->dd_data;
2283 	struct fc_lport *lport = rpriv->local_port;
2284 
2285 	lport->tt.exch_mgr_reset(lport, 0, rport->port_id);
2286 	lport->tt.exch_mgr_reset(lport, rport->port_id, 0);
2287 }
2288 EXPORT_SYMBOL(fc_rport_terminate_io);
2289