2 * Copyright(c) 2007 - 2008 Intel Corporation. All rights reserved.
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.
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
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.
17 * Maintained at www.Open-FCoE.org
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.
28 * fc_rport's represent N_Port's within the fabric.
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 heirarchy.
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.
47 #include <linux/kernel.h>
48 #include <linux/spinlock.h>
49 #include <linux/interrupt.h>
50 #include <linux/slab.h>
51 #include <linux/rcupdate.h>
52 #include <linux/timer.h>
53 #include <linux/workqueue.h>
54 #include <asm/unaligned.h>
56 #include <scsi/libfc.h>
57 #include <scsi/fc_encode.h>
61 struct workqueue_struct
*rport_event_queue
;
63 static void fc_rport_enter_plogi(struct fc_rport_priv
*);
64 static void fc_rport_enter_prli(struct fc_rport_priv
*);
65 static void fc_rport_enter_rtv(struct fc_rport_priv
*);
66 static void fc_rport_enter_ready(struct fc_rport_priv
*);
67 static void fc_rport_enter_logo(struct fc_rport_priv
*);
68 static void fc_rport_enter_adisc(struct fc_rport_priv
*);
70 static void fc_rport_recv_plogi_req(struct fc_lport
*,
71 struct fc_seq
*, struct fc_frame
*);
72 static void fc_rport_recv_prli_req(struct fc_rport_priv
*,
73 struct fc_seq
*, struct fc_frame
*);
74 static void fc_rport_recv_prlo_req(struct fc_rport_priv
*,
75 struct fc_seq
*, struct fc_frame
*);
76 static void fc_rport_recv_logo_req(struct fc_lport
*,
77 struct fc_seq
*, struct fc_frame
*);
78 static void fc_rport_timeout(struct work_struct
*);
79 static void fc_rport_error(struct fc_rport_priv
*, struct fc_frame
*);
80 static void fc_rport_error_retry(struct fc_rport_priv
*, struct fc_frame
*);
81 static void fc_rport_work(struct work_struct
*);
83 static const char *fc_rport_state_names
[] = {
84 [RPORT_ST_INIT
] = "Init",
85 [RPORT_ST_PLOGI
] = "PLOGI",
86 [RPORT_ST_PRLI
] = "PRLI",
87 [RPORT_ST_RTV
] = "RTV",
88 [RPORT_ST_READY
] = "Ready",
89 [RPORT_ST_LOGO
] = "LOGO",
90 [RPORT_ST_ADISC
] = "ADISC",
91 [RPORT_ST_DELETE
] = "Delete",
92 [RPORT_ST_RESTART
] = "Restart",
96 * fc_rport_lookup() - Lookup a remote port by port_id
97 * @lport: The local port to lookup the remote port on
98 * @port_id: The remote port ID to look up
100 static struct fc_rport_priv
*fc_rport_lookup(const struct fc_lport
*lport
,
103 struct fc_rport_priv
*rdata
;
105 list_for_each_entry(rdata
, &lport
->disc
.rports
, peers
)
106 if (rdata
->ids
.port_id
== port_id
)
112 * fc_rport_create() - Create a new remote port
113 * @lport: The local port this remote port will be associated with
114 * @ids: The identifiers for the new remote port
116 * The remote port will start in the INIT state.
118 * Locking note: must be called with the disc_mutex held.
120 static struct fc_rport_priv
*fc_rport_create(struct fc_lport
*lport
,
123 struct fc_rport_priv
*rdata
;
125 rdata
= lport
->tt
.rport_lookup(lport
, port_id
);
129 rdata
= kzalloc(sizeof(*rdata
), GFP_KERNEL
);
133 rdata
->ids
.node_name
= -1;
134 rdata
->ids
.port_name
= -1;
135 rdata
->ids
.port_id
= port_id
;
136 rdata
->ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
138 kref_init(&rdata
->kref
);
139 mutex_init(&rdata
->rp_mutex
);
140 rdata
->local_port
= lport
;
141 rdata
->rp_state
= RPORT_ST_INIT
;
142 rdata
->event
= RPORT_EV_NONE
;
143 rdata
->flags
= FC_RP_FLAGS_REC_SUPPORTED
;
144 rdata
->e_d_tov
= lport
->e_d_tov
;
145 rdata
->r_a_tov
= lport
->r_a_tov
;
146 rdata
->maxframe_size
= FC_MIN_MAX_PAYLOAD
;
147 INIT_DELAYED_WORK(&rdata
->retry_work
, fc_rport_timeout
);
148 INIT_WORK(&rdata
->event_work
, fc_rport_work
);
149 if (port_id
!= FC_FID_DIR_SERV
)
150 list_add(&rdata
->peers
, &lport
->disc
.rports
);
155 * fc_rport_destroy() - Free a remote port after last reference is released
156 * @kref: The remote port's kref
158 static void fc_rport_destroy(struct kref
*kref
)
160 struct fc_rport_priv
*rdata
;
162 rdata
= container_of(kref
, struct fc_rport_priv
, kref
);
167 * fc_rport_state() - Return a string identifying the remote port's state
168 * @rdata: The remote port
170 static const char *fc_rport_state(struct fc_rport_priv
*rdata
)
174 cp
= fc_rport_state_names
[rdata
->rp_state
];
181 * fc_set_rport_loss_tmo() - Set the remote port loss timeout
182 * @rport: The remote port that gets a new timeout value
183 * @timeout: The new timeout value (in seconds)
185 void fc_set_rport_loss_tmo(struct fc_rport
*rport
, u32 timeout
)
188 rport
->dev_loss_tmo
= timeout
+ 5;
190 rport
->dev_loss_tmo
= 30;
192 EXPORT_SYMBOL(fc_set_rport_loss_tmo
);
195 * fc_plogi_get_maxframe() - Get the maximum payload from the common service
196 * parameters in a FLOGI frame
197 * @flp: The FLOGI payload
198 * @maxval: The maximum frame size upper limit; this may be less than what
199 * is in the service parameters
201 static unsigned int fc_plogi_get_maxframe(struct fc_els_flogi
*flp
,
207 * Get max payload from the common service parameters and the
208 * class 3 receive data field size.
210 mfs
= ntohs(flp
->fl_csp
.sp_bb_data
) & FC_SP_BB_DATA_MASK
;
211 if (mfs
>= FC_SP_MIN_MAX_PAYLOAD
&& mfs
< maxval
)
213 mfs
= ntohs(flp
->fl_cssp
[3 - 1].cp_rdfs
);
214 if (mfs
>= FC_SP_MIN_MAX_PAYLOAD
&& mfs
< maxval
)
220 * fc_rport_state_enter() - Change the state of a remote port
221 * @rdata: The remote port whose state should change
222 * @new: The new state
224 * Locking Note: Called with the rport lock held
226 static void fc_rport_state_enter(struct fc_rport_priv
*rdata
,
227 enum fc_rport_state
new)
229 if (rdata
->rp_state
!= new)
231 rdata
->rp_state
= new;
235 * fc_rport_work() - Handler for remote port events in the rport_event_queue
236 * @work: Handle to the remote port being dequeued
238 static void fc_rport_work(struct work_struct
*work
)
241 struct fc_rport_priv
*rdata
=
242 container_of(work
, struct fc_rport_priv
, event_work
);
243 struct fc_rport_libfc_priv
*rpriv
;
244 enum fc_rport_event event
;
245 struct fc_lport
*lport
= rdata
->local_port
;
246 struct fc_rport_operations
*rport_ops
;
247 struct fc_rport_identifiers ids
;
248 struct fc_rport
*rport
;
251 mutex_lock(&rdata
->rp_mutex
);
252 event
= rdata
->event
;
253 rport_ops
= rdata
->ops
;
254 rport
= rdata
->rport
;
256 FC_RPORT_DBG(rdata
, "work event %u\n", event
);
261 rdata
->event
= RPORT_EV_NONE
;
262 kref_get(&rdata
->kref
);
263 mutex_unlock(&rdata
->rp_mutex
);
266 rport
= fc_remote_port_add(lport
->host
, 0, &ids
);
268 FC_RPORT_DBG(rdata
, "Failed to add the rport\n");
269 lport
->tt
.rport_logoff(rdata
);
270 kref_put(&rdata
->kref
, lport
->tt
.rport_destroy
);
273 mutex_lock(&rdata
->rp_mutex
);
275 FC_RPORT_DBG(rdata
, "rport already allocated\n");
276 rdata
->rport
= rport
;
277 rport
->maxframe_size
= rdata
->maxframe_size
;
278 rport
->supported_classes
= rdata
->supported_classes
;
280 rpriv
= rport
->dd_data
;
281 rpriv
->local_port
= lport
;
282 rpriv
->rp_state
= rdata
->rp_state
;
283 rpriv
->flags
= rdata
->flags
;
284 rpriv
->e_d_tov
= rdata
->e_d_tov
;
285 rpriv
->r_a_tov
= rdata
->r_a_tov
;
286 mutex_unlock(&rdata
->rp_mutex
);
288 if (rport_ops
&& rport_ops
->event_callback
) {
289 FC_RPORT_DBG(rdata
, "callback ev %d\n", event
);
290 rport_ops
->event_callback(lport
, rdata
, event
);
292 kref_put(&rdata
->kref
, lport
->tt
.rport_destroy
);
295 case RPORT_EV_FAILED
:
298 port_id
= rdata
->ids
.port_id
;
299 mutex_unlock(&rdata
->rp_mutex
);
301 if (port_id
!= FC_FID_DIR_SERV
) {
303 * We must drop rp_mutex before taking disc_mutex.
304 * Re-evaluate state to allow for restart.
305 * A transition to RESTART state must only happen
306 * while disc_mutex is held and rdata is on the list.
308 mutex_lock(&lport
->disc
.disc_mutex
);
309 mutex_lock(&rdata
->rp_mutex
);
310 if (rdata
->rp_state
== RPORT_ST_RESTART
)
313 list_del(&rdata
->peers
);
314 rdata
->event
= RPORT_EV_NONE
;
315 mutex_unlock(&rdata
->rp_mutex
);
316 mutex_unlock(&lport
->disc
.disc_mutex
);
319 if (rport_ops
&& rport_ops
->event_callback
) {
320 FC_RPORT_DBG(rdata
, "callback ev %d\n", event
);
321 rport_ops
->event_callback(lport
, rdata
, event
);
323 cancel_delayed_work_sync(&rdata
->retry_work
);
326 * Reset any outstanding exchanges before freeing rport.
328 lport
->tt
.exch_mgr_reset(lport
, 0, port_id
);
329 lport
->tt
.exch_mgr_reset(lport
, port_id
, 0);
332 rpriv
= rport
->dd_data
;
333 rpriv
->rp_state
= RPORT_ST_DELETE
;
334 mutex_lock(&rdata
->rp_mutex
);
336 mutex_unlock(&rdata
->rp_mutex
);
337 fc_remote_port_delete(rport
);
340 mutex_lock(&rdata
->rp_mutex
);
341 FC_RPORT_DBG(rdata
, "work restart\n");
342 fc_rport_enter_plogi(rdata
);
343 mutex_unlock(&rdata
->rp_mutex
);
345 kref_put(&rdata
->kref
, lport
->tt
.rport_destroy
);
349 mutex_unlock(&rdata
->rp_mutex
);
355 * fc_rport_login() - Start the remote port login state machine
356 * @rdata: The remote port to be logged in to
358 * Locking Note: Called without the rport lock held. This
359 * function will hold the rport lock, call an _enter_*
360 * function and then unlock the rport.
362 * This indicates the intent to be logged into the remote port.
363 * If it appears we are already logged in, ADISC is used to verify
366 int fc_rport_login(struct fc_rport_priv
*rdata
)
368 mutex_lock(&rdata
->rp_mutex
);
370 switch (rdata
->rp_state
) {
372 FC_RPORT_DBG(rdata
, "ADISC port\n");
373 fc_rport_enter_adisc(rdata
);
375 case RPORT_ST_RESTART
:
377 case RPORT_ST_DELETE
:
378 FC_RPORT_DBG(rdata
, "Restart deleted port\n");
379 fc_rport_state_enter(rdata
, RPORT_ST_RESTART
);
382 FC_RPORT_DBG(rdata
, "Login to port\n");
383 fc_rport_enter_plogi(rdata
);
386 mutex_unlock(&rdata
->rp_mutex
);
392 * fc_rport_enter_delete() - Schedule a remote port to be deleted
393 * @rdata: The remote port to be deleted
394 * @event: The event to report as the reason for deletion
396 * Locking Note: Called with the rport lock held.
398 * Allow state change into DELETE only once.
400 * Call queue_work only if there's no event already pending.
401 * Set the new event so that the old pending event will not occur.
402 * Since we have the mutex, even if fc_rport_work() is already started,
403 * it'll see the new event.
405 static void fc_rport_enter_delete(struct fc_rport_priv
*rdata
,
406 enum fc_rport_event event
)
408 if (rdata
->rp_state
== RPORT_ST_DELETE
)
411 FC_RPORT_DBG(rdata
, "Delete port\n");
413 fc_rport_state_enter(rdata
, RPORT_ST_DELETE
);
415 if (rdata
->event
== RPORT_EV_NONE
)
416 queue_work(rport_event_queue
, &rdata
->event_work
);
417 rdata
->event
= event
;
421 * fc_rport_logoff() - Logoff and remove a remote port
422 * @rdata: The remote port to be logged off of
424 * Locking Note: Called without the rport lock held. This
425 * function will hold the rport lock, call an _enter_*
426 * function and then unlock the rport.
428 int fc_rport_logoff(struct fc_rport_priv
*rdata
)
430 mutex_lock(&rdata
->rp_mutex
);
432 FC_RPORT_DBG(rdata
, "Remove port\n");
434 if (rdata
->rp_state
== RPORT_ST_DELETE
) {
435 FC_RPORT_DBG(rdata
, "Port in Delete state, not removing\n");
439 if (rdata
->rp_state
== RPORT_ST_RESTART
)
440 FC_RPORT_DBG(rdata
, "Port in Restart state, deleting\n");
442 fc_rport_enter_logo(rdata
);
445 * Change the state to Delete so that we discard
448 fc_rport_enter_delete(rdata
, RPORT_EV_STOP
);
450 mutex_unlock(&rdata
->rp_mutex
);
455 * fc_rport_enter_ready() - Transition to the RPORT_ST_READY state
456 * @rdata: The remote port that is ready
458 * Locking Note: The rport lock is expected to be held before calling
461 static void fc_rport_enter_ready(struct fc_rport_priv
*rdata
)
463 fc_rport_state_enter(rdata
, RPORT_ST_READY
);
465 FC_RPORT_DBG(rdata
, "Port is Ready\n");
467 if (rdata
->event
== RPORT_EV_NONE
)
468 queue_work(rport_event_queue
, &rdata
->event_work
);
469 rdata
->event
= RPORT_EV_READY
;
473 * fc_rport_timeout() - Handler for the retry_work timer
474 * @work: Handle to the remote port that has timed out
476 * Locking Note: Called without the rport lock held. This
477 * function will hold the rport lock, call an _enter_*
478 * function and then unlock the rport.
480 static void fc_rport_timeout(struct work_struct
*work
)
482 struct fc_rport_priv
*rdata
=
483 container_of(work
, struct fc_rport_priv
, retry_work
.work
);
485 mutex_lock(&rdata
->rp_mutex
);
487 switch (rdata
->rp_state
) {
489 fc_rport_enter_plogi(rdata
);
492 fc_rport_enter_prli(rdata
);
495 fc_rport_enter_rtv(rdata
);
498 fc_rport_enter_logo(rdata
);
501 fc_rport_enter_adisc(rdata
);
505 case RPORT_ST_DELETE
:
506 case RPORT_ST_RESTART
:
510 mutex_unlock(&rdata
->rp_mutex
);
514 * fc_rport_error() - Error handler, called once retries have been exhausted
515 * @rdata: The remote port the error is happened on
516 * @fp: The error code encapsulated in a frame pointer
518 * Locking Note: The rport lock is expected to be held before
519 * calling this routine
521 static void fc_rport_error(struct fc_rport_priv
*rdata
, struct fc_frame
*fp
)
523 FC_RPORT_DBG(rdata
, "Error %ld in state %s, retries %d\n",
524 IS_ERR(fp
) ? -PTR_ERR(fp
) : 0,
525 fc_rport_state(rdata
), rdata
->retries
);
527 switch (rdata
->rp_state
) {
530 fc_rport_enter_delete(rdata
, RPORT_EV_FAILED
);
533 fc_rport_enter_ready(rdata
);
537 fc_rport_enter_logo(rdata
);
539 case RPORT_ST_DELETE
:
540 case RPORT_ST_RESTART
:
548 * fc_rport_error_retry() - Handler for remote port state retries
549 * @rdata: The remote port whose state is to be retried
550 * @fp: The error code encapsulated in a frame pointer
552 * If the error was an exchange timeout retry immediately,
553 * otherwise wait for E_D_TOV.
555 * Locking Note: The rport lock is expected to be held before
556 * calling this routine
558 static void fc_rport_error_retry(struct fc_rport_priv
*rdata
,
561 unsigned long delay
= FC_DEF_E_D_TOV
;
563 /* make sure this isn't an FC_EX_CLOSED error, never retry those */
564 if (PTR_ERR(fp
) == -FC_EX_CLOSED
)
565 return fc_rport_error(rdata
, fp
);
567 if (rdata
->retries
< rdata
->local_port
->max_rport_retry_count
) {
568 FC_RPORT_DBG(rdata
, "Error %ld in state %s, retrying\n",
569 PTR_ERR(fp
), fc_rport_state(rdata
));
571 /* no additional delay on exchange timeouts */
572 if (PTR_ERR(fp
) == -FC_EX_TIMEOUT
)
574 schedule_delayed_work(&rdata
->retry_work
, delay
);
578 return fc_rport_error(rdata
, fp
);
582 * fc_rport_plogi_recv_resp() - Handler for ELS PLOGI responses
583 * @sp: The sequence the PLOGI is on
584 * @fp: The PLOGI response frame
585 * @rdata_arg: The remote port that sent the PLOGI response
587 * Locking Note: This function will be called without the rport lock
588 * held, but it will lock, call an _enter_* function or fc_rport_error
589 * and then unlock the rport.
591 static void fc_rport_plogi_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
594 struct fc_rport_priv
*rdata
= rdata_arg
;
595 struct fc_lport
*lport
= rdata
->local_port
;
596 struct fc_els_flogi
*plp
= NULL
;
602 mutex_lock(&rdata
->rp_mutex
);
604 FC_RPORT_DBG(rdata
, "Received a PLOGI %s\n", fc_els_resp_type(fp
));
606 if (rdata
->rp_state
!= RPORT_ST_PLOGI
) {
607 FC_RPORT_DBG(rdata
, "Received a PLOGI response, but in state "
608 "%s\n", fc_rport_state(rdata
));
615 fc_rport_error_retry(rdata
, fp
);
619 op
= fc_frame_payload_op(fp
);
620 if (op
== ELS_LS_ACC
&&
621 (plp
= fc_frame_payload_get(fp
, sizeof(*plp
))) != NULL
) {
622 rdata
->ids
.port_name
= get_unaligned_be64(&plp
->fl_wwpn
);
623 rdata
->ids
.node_name
= get_unaligned_be64(&plp
->fl_wwnn
);
625 tov
= ntohl(plp
->fl_csp
.sp_e_d_tov
);
626 if (ntohs(plp
->fl_csp
.sp_features
) & FC_SP_FT_EDTR
)
628 if (tov
> rdata
->e_d_tov
)
629 rdata
->e_d_tov
= tov
;
630 csp_seq
= ntohs(plp
->fl_csp
.sp_tot_seq
);
631 cssp_seq
= ntohs(plp
->fl_cssp
[3 - 1].cp_con_seq
);
632 if (cssp_seq
< csp_seq
)
634 rdata
->max_seq
= csp_seq
;
635 rdata
->maxframe_size
= fc_plogi_get_maxframe(plp
, lport
->mfs
);
636 fc_rport_enter_prli(rdata
);
638 fc_rport_error_retry(rdata
, fp
);
643 mutex_unlock(&rdata
->rp_mutex
);
644 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
648 * fc_rport_enter_plogi() - Send Port Login (PLOGI) request
649 * @rdata: The remote port to send a PLOGI to
651 * Locking Note: The rport lock is expected to be held before calling
654 static void fc_rport_enter_plogi(struct fc_rport_priv
*rdata
)
656 struct fc_lport
*lport
= rdata
->local_port
;
659 FC_RPORT_DBG(rdata
, "Port entered PLOGI state from %s state\n",
660 fc_rport_state(rdata
));
662 fc_rport_state_enter(rdata
, RPORT_ST_PLOGI
);
664 rdata
->maxframe_size
= FC_MIN_MAX_PAYLOAD
;
665 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_flogi
));
667 fc_rport_error_retry(rdata
, fp
);
670 rdata
->e_d_tov
= lport
->e_d_tov
;
672 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_PLOGI
,
673 fc_rport_plogi_resp
, rdata
,
675 fc_rport_error_retry(rdata
, NULL
);
677 kref_get(&rdata
->kref
);
681 * fc_rport_prli_resp() - Process Login (PRLI) response handler
682 * @sp: The sequence the PRLI response was on
683 * @fp: The PRLI response frame
684 * @rdata_arg: The remote port that sent the PRLI response
686 * Locking Note: This function will be called without the rport lock
687 * held, but it will lock, call an _enter_* function or fc_rport_error
688 * and then unlock the rport.
690 static void fc_rport_prli_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
693 struct fc_rport_priv
*rdata
= rdata_arg
;
695 struct fc_els_prli prli
;
696 struct fc_els_spp spp
;
698 u32 roles
= FC_RPORT_ROLE_UNKNOWN
;
702 mutex_lock(&rdata
->rp_mutex
);
704 FC_RPORT_DBG(rdata
, "Received a PRLI %s\n", fc_els_resp_type(fp
));
706 if (rdata
->rp_state
!= RPORT_ST_PRLI
) {
707 FC_RPORT_DBG(rdata
, "Received a PRLI response, but in state "
708 "%s\n", fc_rport_state(rdata
));
715 fc_rport_error_retry(rdata
, fp
);
719 /* reinitialize remote port roles */
720 rdata
->ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
722 op
= fc_frame_payload_op(fp
);
723 if (op
== ELS_LS_ACC
) {
724 pp
= fc_frame_payload_get(fp
, sizeof(*pp
));
725 if (pp
&& pp
->prli
.prli_spp_len
>= sizeof(pp
->spp
)) {
726 fcp_parm
= ntohl(pp
->spp
.spp_params
);
727 if (fcp_parm
& FCP_SPPF_RETRY
)
728 rdata
->flags
|= FC_RP_FLAGS_RETRY
;
731 rdata
->supported_classes
= FC_COS_CLASS3
;
732 if (fcp_parm
& FCP_SPPF_INIT_FCN
)
733 roles
|= FC_RPORT_ROLE_FCP_INITIATOR
;
734 if (fcp_parm
& FCP_SPPF_TARG_FCN
)
735 roles
|= FC_RPORT_ROLE_FCP_TARGET
;
737 rdata
->ids
.roles
= roles
;
738 fc_rport_enter_rtv(rdata
);
741 FC_RPORT_DBG(rdata
, "Bad ELS response for PRLI command\n");
742 fc_rport_enter_delete(rdata
, RPORT_EV_FAILED
);
748 mutex_unlock(&rdata
->rp_mutex
);
749 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
753 * fc_rport_logo_resp() - Handler for logout (LOGO) responses
754 * @sp: The sequence the LOGO was on
755 * @fp: The LOGO response frame
756 * @rdata_arg: The remote port that sent the LOGO response
758 * Locking Note: This function will be called without the rport lock
759 * held, but it will lock, call an _enter_* function or fc_rport_error
760 * and then unlock the rport.
762 static void fc_rport_logo_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
765 struct fc_rport_priv
*rdata
= rdata_arg
;
768 mutex_lock(&rdata
->rp_mutex
);
770 FC_RPORT_DBG(rdata
, "Received a LOGO %s\n", fc_els_resp_type(fp
));
772 if (rdata
->rp_state
!= RPORT_ST_LOGO
) {
773 FC_RPORT_DBG(rdata
, "Received a LOGO response, but in state "
774 "%s\n", fc_rport_state(rdata
));
781 fc_rport_error_retry(rdata
, fp
);
785 op
= fc_frame_payload_op(fp
);
786 if (op
!= ELS_LS_ACC
)
787 FC_RPORT_DBG(rdata
, "Bad ELS response op %x for LOGO command\n",
789 fc_rport_enter_delete(rdata
, RPORT_EV_LOGO
);
794 mutex_unlock(&rdata
->rp_mutex
);
795 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
799 * fc_rport_enter_prli() - Send Process Login (PRLI) request
800 * @rdata: The remote port to send the PRLI request to
802 * Locking Note: The rport lock is expected to be held before calling
805 static void fc_rport_enter_prli(struct fc_rport_priv
*rdata
)
807 struct fc_lport
*lport
= rdata
->local_port
;
809 struct fc_els_prli prli
;
810 struct fc_els_spp spp
;
815 * If the rport is one of the well known addresses
816 * we skip PRLI and RTV and go straight to READY.
818 if (rdata
->ids
.port_id
>= FC_FID_DOM_MGR
) {
819 fc_rport_enter_ready(rdata
);
823 FC_RPORT_DBG(rdata
, "Port entered PRLI state from %s state\n",
824 fc_rport_state(rdata
));
826 fc_rport_state_enter(rdata
, RPORT_ST_PRLI
);
828 fp
= fc_frame_alloc(lport
, sizeof(*pp
));
830 fc_rport_error_retry(rdata
, fp
);
834 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_PRLI
,
835 fc_rport_prli_resp
, rdata
,
837 fc_rport_error_retry(rdata
, NULL
);
839 kref_get(&rdata
->kref
);
843 * fc_rport_els_rtv_resp() - Handler for Request Timeout Value (RTV) responses
844 * @sp: The sequence the RTV was on
845 * @fp: The RTV response frame
846 * @rdata_arg: The remote port that sent the RTV response
848 * Many targets don't seem to support this.
850 * Locking Note: This function will be called without the rport lock
851 * held, but it will lock, call an _enter_* function or fc_rport_error
852 * and then unlock the rport.
854 static void fc_rport_rtv_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
857 struct fc_rport_priv
*rdata
= rdata_arg
;
860 mutex_lock(&rdata
->rp_mutex
);
862 FC_RPORT_DBG(rdata
, "Received a RTV %s\n", fc_els_resp_type(fp
));
864 if (rdata
->rp_state
!= RPORT_ST_RTV
) {
865 FC_RPORT_DBG(rdata
, "Received a RTV response, but in state "
866 "%s\n", fc_rport_state(rdata
));
873 fc_rport_error(rdata
, fp
);
877 op
= fc_frame_payload_op(fp
);
878 if (op
== ELS_LS_ACC
) {
879 struct fc_els_rtv_acc
*rtv
;
883 rtv
= fc_frame_payload_get(fp
, sizeof(*rtv
));
885 toq
= ntohl(rtv
->rtv_toq
);
886 tov
= ntohl(rtv
->rtv_r_a_tov
);
889 rdata
->r_a_tov
= tov
;
890 tov
= ntohl(rtv
->rtv_e_d_tov
);
891 if (toq
& FC_ELS_RTV_EDRES
)
895 rdata
->e_d_tov
= tov
;
899 fc_rport_enter_ready(rdata
);
904 mutex_unlock(&rdata
->rp_mutex
);
905 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
909 * fc_rport_enter_rtv() - Send Request Timeout Value (RTV) request
910 * @rdata: The remote port to send the RTV request to
912 * Locking Note: The rport lock is expected to be held before calling
915 static void fc_rport_enter_rtv(struct fc_rport_priv
*rdata
)
918 struct fc_lport
*lport
= rdata
->local_port
;
920 FC_RPORT_DBG(rdata
, "Port entered RTV state from %s state\n",
921 fc_rport_state(rdata
));
923 fc_rport_state_enter(rdata
, RPORT_ST_RTV
);
925 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_rtv
));
927 fc_rport_error_retry(rdata
, fp
);
931 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_RTV
,
932 fc_rport_rtv_resp
, rdata
,
934 fc_rport_error_retry(rdata
, NULL
);
936 kref_get(&rdata
->kref
);
940 * fc_rport_enter_logo() - Send a logout (LOGO) request
941 * @rdata: The remote port to send the LOGO request to
943 * Locking Note: The rport lock is expected to be held before calling
946 static void fc_rport_enter_logo(struct fc_rport_priv
*rdata
)
948 struct fc_lport
*lport
= rdata
->local_port
;
951 FC_RPORT_DBG(rdata
, "Port entered LOGO state from %s state\n",
952 fc_rport_state(rdata
));
954 fc_rport_state_enter(rdata
, RPORT_ST_LOGO
);
956 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_logo
));
958 fc_rport_error_retry(rdata
, fp
);
962 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_LOGO
,
963 fc_rport_logo_resp
, rdata
,
965 fc_rport_error_retry(rdata
, NULL
);
967 kref_get(&rdata
->kref
);
971 * fc_rport_els_adisc_resp() - Handler for Address Discovery (ADISC) responses
972 * @sp: The sequence the ADISC response was on
973 * @fp: The ADISC response frame
974 * @rdata_arg: The remote port that sent the ADISC response
976 * Locking Note: This function will be called without the rport lock
977 * held, but it will lock, call an _enter_* function or fc_rport_error
978 * and then unlock the rport.
980 static void fc_rport_adisc_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
983 struct fc_rport_priv
*rdata
= rdata_arg
;
984 struct fc_els_adisc
*adisc
;
987 mutex_lock(&rdata
->rp_mutex
);
989 FC_RPORT_DBG(rdata
, "Received a ADISC response\n");
991 if (rdata
->rp_state
!= RPORT_ST_ADISC
) {
992 FC_RPORT_DBG(rdata
, "Received a ADISC resp but in state %s\n",
993 fc_rport_state(rdata
));
1000 fc_rport_error(rdata
, fp
);
1005 * If address verification failed. Consider us logged out of the rport.
1006 * Since the rport is still in discovery, we want to be
1007 * logged in, so go to PLOGI state. Otherwise, go back to READY.
1009 op
= fc_frame_payload_op(fp
);
1010 adisc
= fc_frame_payload_get(fp
, sizeof(*adisc
));
1011 if (op
!= ELS_LS_ACC
|| !adisc
||
1012 ntoh24(adisc
->adisc_port_id
) != rdata
->ids
.port_id
||
1013 get_unaligned_be64(&adisc
->adisc_wwpn
) != rdata
->ids
.port_name
||
1014 get_unaligned_be64(&adisc
->adisc_wwnn
) != rdata
->ids
.node_name
) {
1015 FC_RPORT_DBG(rdata
, "ADISC error or mismatch\n");
1016 fc_rport_enter_plogi(rdata
);
1018 FC_RPORT_DBG(rdata
, "ADISC OK\n");
1019 fc_rport_enter_ready(rdata
);
1024 mutex_unlock(&rdata
->rp_mutex
);
1025 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
1029 * fc_rport_enter_adisc() - Send Address Discover (ADISC) request
1030 * @rdata: The remote port to send the ADISC request to
1032 * Locking Note: The rport lock is expected to be held before calling
1035 static void fc_rport_enter_adisc(struct fc_rport_priv
*rdata
)
1037 struct fc_lport
*lport
= rdata
->local_port
;
1038 struct fc_frame
*fp
;
1040 FC_RPORT_DBG(rdata
, "sending ADISC from %s state\n",
1041 fc_rport_state(rdata
));
1043 fc_rport_state_enter(rdata
, RPORT_ST_ADISC
);
1045 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_adisc
));
1047 fc_rport_error_retry(rdata
, fp
);
1050 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_ADISC
,
1051 fc_rport_adisc_resp
, rdata
,
1052 2 * lport
->r_a_tov
))
1053 fc_rport_error_retry(rdata
, NULL
);
1055 kref_get(&rdata
->kref
);
1059 * fc_rport_recv_adisc_req() - Handler for Address Discovery (ADISC) requests
1060 * @rdata: The remote port that sent the ADISC request
1061 * @sp: The sequence the ADISC request was on
1062 * @in_fp: The ADISC request frame
1064 * Locking Note: Called with the lport and rport locks held.
1066 static void fc_rport_recv_adisc_req(struct fc_rport_priv
*rdata
,
1067 struct fc_seq
*sp
, struct fc_frame
*in_fp
)
1069 struct fc_lport
*lport
= rdata
->local_port
;
1070 struct fc_frame
*fp
;
1071 struct fc_exch
*ep
= fc_seq_exch(sp
);
1072 struct fc_els_adisc
*adisc
;
1073 struct fc_seq_els_data rjt_data
;
1076 FC_RPORT_DBG(rdata
, "Received ADISC request\n");
1078 adisc
= fc_frame_payload_get(in_fp
, sizeof(*adisc
));
1081 rjt_data
.reason
= ELS_RJT_PROT
;
1082 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1083 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_RJT
, &rjt_data
);
1087 fp
= fc_frame_alloc(lport
, sizeof(*adisc
));
1090 fc_adisc_fill(lport
, fp
);
1091 adisc
= fc_frame_payload_get(fp
, sizeof(*adisc
));
1092 adisc
->adisc_cmd
= ELS_LS_ACC
;
1093 sp
= lport
->tt
.seq_start_next(sp
);
1094 f_ctl
= FC_FC_EX_CTX
| FC_FC_LAST_SEQ
| FC_FC_END_SEQ
| FC_FC_SEQ_INIT
;
1095 fc_fill_fc_hdr(fp
, FC_RCTL_ELS_REP
, ep
->did
, ep
->sid
,
1096 FC_TYPE_ELS
, f_ctl
, 0);
1097 lport
->tt
.seq_send(lport
, sp
, fp
);
1099 fc_frame_free(in_fp
);
1103 * fc_rport_recv_rls_req() - Handle received Read Link Status request
1104 * @rdata: The remote port that sent the RLS request
1105 * @sp: The sequence that the RLS was on
1106 * @rx_fp: The PRLI request frame
1108 * Locking Note: The rport lock is expected to be held before calling
1111 static void fc_rport_recv_rls_req(struct fc_rport_priv
*rdata
,
1112 struct fc_seq
*sp
, struct fc_frame
*rx_fp
)
1115 struct fc_lport
*lport
= rdata
->local_port
;
1116 struct fc_frame
*fp
;
1117 struct fc_exch
*ep
= fc_seq_exch(sp
);
1118 struct fc_els_rls
*rls
;
1119 struct fc_els_rls_resp
*rsp
;
1120 struct fc_els_lesb
*lesb
;
1121 struct fc_seq_els_data rjt_data
;
1122 struct fc_host_statistics
*hst
;
1125 FC_RPORT_DBG(rdata
, "Received RLS request while in state %s\n",
1126 fc_rport_state(rdata
));
1128 rls
= fc_frame_payload_get(rx_fp
, sizeof(*rls
));
1130 rjt_data
.reason
= ELS_RJT_PROT
;
1131 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1135 fp
= fc_frame_alloc(lport
, sizeof(*rsp
));
1137 rjt_data
.reason
= ELS_RJT_UNAB
;
1138 rjt_data
.explan
= ELS_EXPL_INSUF_RES
;
1142 rsp
= fc_frame_payload_get(fp
, sizeof(*rsp
));
1143 memset(rsp
, 0, sizeof(*rsp
));
1144 rsp
->rls_cmd
= ELS_LS_ACC
;
1145 lesb
= &rsp
->rls_lesb
;
1146 if (lport
->tt
.get_lesb
) {
1147 /* get LESB from LLD if it supports it */
1148 lport
->tt
.get_lesb(lport
, lesb
);
1150 fc_get_host_stats(lport
->host
);
1151 hst
= &lport
->host_stats
;
1152 lesb
->lesb_link_fail
= htonl(hst
->link_failure_count
);
1153 lesb
->lesb_sync_loss
= htonl(hst
->loss_of_sync_count
);
1154 lesb
->lesb_sig_loss
= htonl(hst
->loss_of_signal_count
);
1155 lesb
->lesb_prim_err
= htonl(hst
->prim_seq_protocol_err_count
);
1156 lesb
->lesb_inv_word
= htonl(hst
->invalid_tx_word_count
);
1157 lesb
->lesb_inv_crc
= htonl(hst
->invalid_crc_count
);
1160 sp
= lport
->tt
.seq_start_next(sp
);
1161 f_ctl
= FC_FC_EX_CTX
| FC_FC_LAST_SEQ
| FC_FC_END_SEQ
;
1162 fc_fill_fc_hdr(fp
, FC_RCTL_ELS_REP
, ep
->did
, ep
->sid
,
1163 FC_TYPE_ELS
, f_ctl
, 0);
1164 lport
->tt
.seq_send(lport
, sp
, fp
);
1169 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_RJT
, &rjt_data
);
1171 fc_frame_free(rx_fp
);
1175 * fc_rport_recv_els_req() - Handler for validated ELS requests
1176 * @lport: The local port that received the ELS request
1177 * @sp: The sequence that the ELS request was on
1178 * @fp: The ELS request frame
1180 * Handle incoming ELS requests that require port login.
1181 * The ELS opcode has already been validated by the caller.
1183 * Locking Note: Called with the lport lock held.
1185 static void fc_rport_recv_els_req(struct fc_lport
*lport
,
1186 struct fc_seq
*sp
, struct fc_frame
*fp
)
1188 struct fc_rport_priv
*rdata
;
1189 struct fc_frame_header
*fh
;
1190 struct fc_seq_els_data els_data
;
1193 els_data
.reason
= ELS_RJT_UNAB
;
1194 els_data
.explan
= ELS_EXPL_PLOGI_REQD
;
1196 fh
= fc_frame_header_get(fp
);
1198 mutex_lock(&lport
->disc
.disc_mutex
);
1199 rdata
= lport
->tt
.rport_lookup(lport
, ntoh24(fh
->fh_s_id
));
1201 mutex_unlock(&lport
->disc
.disc_mutex
);
1204 mutex_lock(&rdata
->rp_mutex
);
1205 mutex_unlock(&lport
->disc
.disc_mutex
);
1207 switch (rdata
->rp_state
) {
1210 case RPORT_ST_READY
:
1211 case RPORT_ST_ADISC
:
1214 mutex_unlock(&rdata
->rp_mutex
);
1218 switch (fc_frame_payload_op(fp
)) {
1220 fc_rport_recv_prli_req(rdata
, sp
, fp
);
1223 fc_rport_recv_prlo_req(rdata
, sp
, fp
);
1226 fc_rport_recv_adisc_req(rdata
, sp
, fp
);
1230 lport
->tt
.seq_els_rsp_send(sp
, ELS_RRQ
, &els_data
);
1234 lport
->tt
.seq_els_rsp_send(sp
, ELS_REC
, &els_data
);
1237 fc_rport_recv_rls_req(rdata
, sp
, fp
);
1240 fc_frame_free(fp
); /* can't happen */
1244 mutex_unlock(&rdata
->rp_mutex
);
1248 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_RJT
, &els_data
);
1253 * fc_rport_recv_req() - Handler for requests
1254 * @sp: The sequence the request was on
1255 * @fp: The request frame
1256 * @lport: The local port that received the request
1258 * Locking Note: Called with the lport lock held.
1260 void fc_rport_recv_req(struct fc_seq
*sp
, struct fc_frame
*fp
,
1261 struct fc_lport
*lport
)
1263 struct fc_seq_els_data els_data
;
1266 * Handle PLOGI and LOGO requests separately, since they
1267 * don't require prior login.
1268 * Check for unsupported opcodes first and reject them.
1269 * For some ops, it would be incorrect to reject with "PLOGI required".
1271 switch (fc_frame_payload_op(fp
)) {
1273 fc_rport_recv_plogi_req(lport
, sp
, fp
);
1276 fc_rport_recv_logo_req(lport
, sp
, fp
);
1284 fc_rport_recv_els_req(lport
, sp
, fp
);
1289 els_data
.reason
= ELS_RJT_UNSUP
;
1290 els_data
.explan
= ELS_EXPL_NONE
;
1291 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_RJT
, &els_data
);
1297 * fc_rport_recv_plogi_req() - Handler for Port Login (PLOGI) requests
1298 * @lport: The local port that received the PLOGI request
1299 * @sp: The sequence that the PLOGI request was on
1300 * @rx_fp: The PLOGI request frame
1302 * Locking Note: The rport lock is held before calling this function.
1304 static void fc_rport_recv_plogi_req(struct fc_lport
*lport
,
1305 struct fc_seq
*sp
, struct fc_frame
*rx_fp
)
1307 struct fc_disc
*disc
;
1308 struct fc_rport_priv
*rdata
;
1309 struct fc_frame
*fp
= rx_fp
;
1311 struct fc_frame_header
*fh
;
1312 struct fc_els_flogi
*pl
;
1313 struct fc_seq_els_data rjt_data
;
1317 fh
= fc_frame_header_get(fp
);
1318 sid
= ntoh24(fh
->fh_s_id
);
1320 FC_RPORT_ID_DBG(lport
, sid
, "Received PLOGI request\n");
1322 pl
= fc_frame_payload_get(fp
, sizeof(*pl
));
1324 FC_RPORT_ID_DBG(lport
, sid
, "Received PLOGI too short\n");
1325 rjt_data
.reason
= ELS_RJT_PROT
;
1326 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1330 disc
= &lport
->disc
;
1331 mutex_lock(&disc
->disc_mutex
);
1332 rdata
= lport
->tt
.rport_create(lport
, sid
);
1334 mutex_unlock(&disc
->disc_mutex
);
1335 rjt_data
.reason
= ELS_RJT_UNAB
;
1336 rjt_data
.explan
= ELS_EXPL_INSUF_RES
;
1340 mutex_lock(&rdata
->rp_mutex
);
1341 mutex_unlock(&disc
->disc_mutex
);
1343 rdata
->ids
.port_name
= get_unaligned_be64(&pl
->fl_wwpn
);
1344 rdata
->ids
.node_name
= get_unaligned_be64(&pl
->fl_wwnn
);
1347 * If the rport was just created, possibly due to the incoming PLOGI,
1348 * set the state appropriately and accept the PLOGI.
1350 * If we had also sent a PLOGI, and if the received PLOGI is from a
1351 * higher WWPN, we accept it, otherwise an LS_RJT is sent with reason
1352 * "command already in progress".
1354 * XXX TBD: If the session was ready before, the PLOGI should result in
1355 * all outstanding exchanges being reset.
1357 switch (rdata
->rp_state
) {
1359 FC_RPORT_DBG(rdata
, "Received PLOGI in INIT state\n");
1361 case RPORT_ST_PLOGI
:
1362 FC_RPORT_DBG(rdata
, "Received PLOGI in PLOGI state\n");
1363 if (rdata
->ids
.port_name
< lport
->wwpn
) {
1364 mutex_unlock(&rdata
->rp_mutex
);
1365 rjt_data
.reason
= ELS_RJT_INPROG
;
1366 rjt_data
.explan
= ELS_EXPL_NONE
;
1372 case RPORT_ST_READY
:
1373 case RPORT_ST_ADISC
:
1374 FC_RPORT_DBG(rdata
, "Received PLOGI in logged-in state %d "
1375 "- ignored for now\n", rdata
->rp_state
);
1376 /* XXX TBD - should reset */
1378 case RPORT_ST_DELETE
:
1380 case RPORT_ST_RESTART
:
1381 FC_RPORT_DBG(rdata
, "Received PLOGI in state %s - send busy\n",
1382 fc_rport_state(rdata
));
1383 mutex_unlock(&rdata
->rp_mutex
);
1384 rjt_data
.reason
= ELS_RJT_BUSY
;
1385 rjt_data
.explan
= ELS_EXPL_NONE
;
1390 * Get session payload size from incoming PLOGI.
1392 rdata
->maxframe_size
= fc_plogi_get_maxframe(pl
, lport
->mfs
);
1393 fc_frame_free(rx_fp
);
1396 * Send LS_ACC. If this fails, the originator should retry.
1398 sp
= lport
->tt
.seq_start_next(sp
);
1401 fp
= fc_frame_alloc(lport
, sizeof(*pl
));
1405 fc_plogi_fill(lport
, fp
, ELS_LS_ACC
);
1406 f_ctl
= FC_FC_EX_CTX
| FC_FC_LAST_SEQ
| FC_FC_END_SEQ
| FC_FC_SEQ_INIT
;
1407 ep
= fc_seq_exch(sp
);
1408 fc_fill_fc_hdr(fp
, FC_RCTL_ELS_REP
, ep
->did
, ep
->sid
,
1409 FC_TYPE_ELS
, f_ctl
, 0);
1410 lport
->tt
.seq_send(lport
, sp
, fp
);
1411 fc_rport_enter_prli(rdata
);
1413 mutex_unlock(&rdata
->rp_mutex
);
1417 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_RJT
, &rjt_data
);
1422 * fc_rport_recv_prli_req() - Handler for process login (PRLI) requests
1423 * @rdata: The remote port that sent the PRLI request
1424 * @sp: The sequence that the PRLI was on
1425 * @rx_fp: The PRLI request frame
1427 * Locking Note: The rport lock is exected to be held before calling
1430 static void fc_rport_recv_prli_req(struct fc_rport_priv
*rdata
,
1431 struct fc_seq
*sp
, struct fc_frame
*rx_fp
)
1433 struct fc_lport
*lport
= rdata
->local_port
;
1435 struct fc_frame
*fp
;
1436 struct fc_frame_header
*fh
;
1438 struct fc_els_prli prli
;
1439 struct fc_els_spp spp
;
1441 struct fc_els_spp
*rspp
; /* request service param page */
1442 struct fc_els_spp
*spp
; /* response spp */
1445 enum fc_els_rjt_reason reason
= ELS_RJT_UNAB
;
1446 enum fc_els_rjt_explan explan
= ELS_EXPL_NONE
;
1447 enum fc_els_spp_resp resp
;
1448 struct fc_seq_els_data rjt_data
;
1451 u32 roles
= FC_RPORT_ROLE_UNKNOWN
;
1454 fh
= fc_frame_header_get(rx_fp
);
1456 FC_RPORT_DBG(rdata
, "Received PRLI request while in state %s\n",
1457 fc_rport_state(rdata
));
1459 switch (rdata
->rp_state
) {
1462 case RPORT_ST_READY
:
1463 case RPORT_ST_ADISC
:
1464 reason
= ELS_RJT_NONE
;
1467 fc_frame_free(rx_fp
);
1471 len
= fr_len(rx_fp
) - sizeof(*fh
);
1472 pp
= fc_frame_payload_get(rx_fp
, sizeof(*pp
));
1474 reason
= ELS_RJT_PROT
;
1475 explan
= ELS_EXPL_INV_LEN
;
1477 plen
= ntohs(pp
->prli
.prli_len
);
1478 if ((plen
% 4) != 0 || plen
> len
) {
1479 reason
= ELS_RJT_PROT
;
1480 explan
= ELS_EXPL_INV_LEN
;
1481 } else if (plen
< len
) {
1484 plen
= pp
->prli
.prli_spp_len
;
1485 if ((plen
% 4) != 0 || plen
< sizeof(*spp
) ||
1486 plen
> len
|| len
< sizeof(*pp
)) {
1487 reason
= ELS_RJT_PROT
;
1488 explan
= ELS_EXPL_INV_LEN
;
1492 if (reason
!= ELS_RJT_NONE
||
1493 (fp
= fc_frame_alloc(lport
, len
)) == NULL
) {
1494 rjt_data
.reason
= reason
;
1495 rjt_data
.explan
= explan
;
1496 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_RJT
, &rjt_data
);
1498 sp
= lport
->tt
.seq_start_next(sp
);
1500 pp
= fc_frame_payload_get(fp
, len
);
1503 pp
->prli
.prli_cmd
= ELS_LS_ACC
;
1504 pp
->prli
.prli_spp_len
= plen
;
1505 pp
->prli
.prli_len
= htons(len
);
1506 len
-= sizeof(struct fc_els_prli
);
1508 /* reinitialize remote port roles */
1509 rdata
->ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
1512 * Go through all the service parameter pages and build
1513 * response. If plen indicates longer SPP than standard,
1514 * use that. The entire response has been pre-cleared above.
1517 while (len
>= plen
) {
1518 spp
->spp_type
= rspp
->spp_type
;
1519 spp
->spp_type_ext
= rspp
->spp_type_ext
;
1520 spp
->spp_flags
= rspp
->spp_flags
& FC_SPP_EST_IMG_PAIR
;
1521 resp
= FC_SPP_RESP_ACK
;
1522 if (rspp
->spp_flags
& FC_SPP_RPA_VAL
)
1523 resp
= FC_SPP_RESP_NO_PA
;
1524 switch (rspp
->spp_type
) {
1525 case 0: /* common to all FC-4 types */
1528 fcp_parm
= ntohl(rspp
->spp_params
);
1529 if (fcp_parm
& FCP_SPPF_RETRY
)
1530 rdata
->flags
|= FC_RP_FLAGS_RETRY
;
1531 rdata
->supported_classes
= FC_COS_CLASS3
;
1532 if (fcp_parm
& FCP_SPPF_INIT_FCN
)
1533 roles
|= FC_RPORT_ROLE_FCP_INITIATOR
;
1534 if (fcp_parm
& FCP_SPPF_TARG_FCN
)
1535 roles
|= FC_RPORT_ROLE_FCP_TARGET
;
1536 rdata
->ids
.roles
= roles
;
1539 htonl(lport
->service_params
);
1542 resp
= FC_SPP_RESP_INVL
;
1545 spp
->spp_flags
|= resp
;
1547 rspp
= (struct fc_els_spp
*)((char *)rspp
+ plen
);
1548 spp
= (struct fc_els_spp
*)((char *)spp
+ plen
);
1552 * Send LS_ACC. If this fails, the originator should retry.
1554 f_ctl
= FC_FC_EX_CTX
| FC_FC_LAST_SEQ
;
1555 f_ctl
|= FC_FC_END_SEQ
| FC_FC_SEQ_INIT
;
1556 ep
= fc_seq_exch(sp
);
1557 fc_fill_fc_hdr(fp
, FC_RCTL_ELS_REP
, ep
->did
, ep
->sid
,
1558 FC_TYPE_ELS
, f_ctl
, 0);
1559 lport
->tt
.seq_send(lport
, sp
, fp
);
1562 * Get lock and re-check state.
1564 switch (rdata
->rp_state
) {
1566 fc_rport_enter_ready(rdata
);
1568 case RPORT_ST_READY
:
1569 case RPORT_ST_ADISC
:
1575 fc_frame_free(rx_fp
);
1579 * fc_rport_recv_prlo_req() - Handler for process logout (PRLO) requests
1580 * @rdata: The remote port that sent the PRLO request
1581 * @sp: The sequence that the PRLO was on
1582 * @fp: The PRLO request frame
1584 * Locking Note: The rport lock is exected to be held before calling
1587 static void fc_rport_recv_prlo_req(struct fc_rport_priv
*rdata
,
1589 struct fc_frame
*fp
)
1591 struct fc_lport
*lport
= rdata
->local_port
;
1593 struct fc_frame_header
*fh
;
1594 struct fc_seq_els_data rjt_data
;
1596 fh
= fc_frame_header_get(fp
);
1598 FC_RPORT_DBG(rdata
, "Received PRLO request while in state %s\n",
1599 fc_rport_state(rdata
));
1602 rjt_data
.reason
= ELS_RJT_UNAB
;
1603 rjt_data
.explan
= ELS_EXPL_NONE
;
1604 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_RJT
, &rjt_data
);
1609 * fc_rport_recv_logo_req() - Handler for logout (LOGO) requests
1610 * @lport: The local port that received the LOGO request
1611 * @sp: The sequence that the LOGO request was on
1612 * @fp: The LOGO request frame
1614 * Locking Note: The rport lock is exected to be held before calling
1617 static void fc_rport_recv_logo_req(struct fc_lport
*lport
,
1619 struct fc_frame
*fp
)
1621 struct fc_frame_header
*fh
;
1622 struct fc_rport_priv
*rdata
;
1625 lport
->tt
.seq_els_rsp_send(sp
, ELS_LS_ACC
, NULL
);
1627 fh
= fc_frame_header_get(fp
);
1628 sid
= ntoh24(fh
->fh_s_id
);
1630 mutex_lock(&lport
->disc
.disc_mutex
);
1631 rdata
= lport
->tt
.rport_lookup(lport
, sid
);
1633 mutex_lock(&rdata
->rp_mutex
);
1634 FC_RPORT_DBG(rdata
, "Received LOGO request while in state %s\n",
1635 fc_rport_state(rdata
));
1637 fc_rport_enter_delete(rdata
, RPORT_EV_LOGO
);
1640 * If the remote port was created due to discovery, set state
1641 * to log back in. It may have seen a stale RSCN about us.
1644 fc_rport_state_enter(rdata
, RPORT_ST_RESTART
);
1645 mutex_unlock(&rdata
->rp_mutex
);
1647 FC_RPORT_ID_DBG(lport
, sid
,
1648 "Received LOGO from non-logged-in port\n");
1649 mutex_unlock(&lport
->disc
.disc_mutex
);
1654 * fc_rport_flush_queue() - Flush the rport_event_queue
1656 static void fc_rport_flush_queue(void)
1658 flush_workqueue(rport_event_queue
);
1662 * fc_rport_init() - Initialize the remote port layer for a local port
1663 * @lport: The local port to initialize the remote port layer for
1665 int fc_rport_init(struct fc_lport
*lport
)
1667 if (!lport
->tt
.rport_lookup
)
1668 lport
->tt
.rport_lookup
= fc_rport_lookup
;
1670 if (!lport
->tt
.rport_create
)
1671 lport
->tt
.rport_create
= fc_rport_create
;
1673 if (!lport
->tt
.rport_login
)
1674 lport
->tt
.rport_login
= fc_rport_login
;
1676 if (!lport
->tt
.rport_logoff
)
1677 lport
->tt
.rport_logoff
= fc_rport_logoff
;
1679 if (!lport
->tt
.rport_recv_req
)
1680 lport
->tt
.rport_recv_req
= fc_rport_recv_req
;
1682 if (!lport
->tt
.rport_flush_queue
)
1683 lport
->tt
.rport_flush_queue
= fc_rport_flush_queue
;
1685 if (!lport
->tt
.rport_destroy
)
1686 lport
->tt
.rport_destroy
= fc_rport_destroy
;
1690 EXPORT_SYMBOL(fc_rport_init
);
1693 * fc_setup_rport() - Initialize the rport_event_queue
1695 int fc_setup_rport()
1697 rport_event_queue
= create_singlethread_workqueue("fc_rport_eq");
1698 if (!rport_event_queue
)
1704 * fc_destroy_rport() - Destroy the rport_event_queue
1706 void fc_destroy_rport()
1708 destroy_workqueue(rport_event_queue
);
1712 * fc_rport_terminate_io() - Stop all outstanding I/O on a remote port
1713 * @rport: The remote port whose I/O should be terminated
1715 void fc_rport_terminate_io(struct fc_rport
*rport
)
1717 struct fc_rport_libfc_priv
*rpriv
= rport
->dd_data
;
1718 struct fc_lport
*lport
= rpriv
->local_port
;
1720 lport
->tt
.exch_mgr_reset(lport
, 0, rport
->port_id
);
1721 lport
->tt
.exch_mgr_reset(lport
, rport
->port_id
, 0);
1723 EXPORT_SYMBOL(fc_rport_terminate_io
);