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 hierarchy.
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 static struct workqueue_struct
*rport_event_queue
;
63 static void fc_rport_enter_flogi(struct fc_rport_priv
*);
64 static void fc_rport_enter_plogi(struct fc_rport_priv
*);
65 static void fc_rport_enter_prli(struct fc_rport_priv
*);
66 static void fc_rport_enter_rtv(struct fc_rport_priv
*);
67 static void fc_rport_enter_ready(struct fc_rport_priv
*);
68 static void fc_rport_enter_logo(struct fc_rport_priv
*);
69 static void fc_rport_enter_adisc(struct fc_rport_priv
*);
71 static void fc_rport_recv_plogi_req(struct fc_lport
*, struct fc_frame
*);
72 static void fc_rport_recv_prli_req(struct fc_rport_priv
*, struct fc_frame
*);
73 static void fc_rport_recv_prlo_req(struct fc_rport_priv
*, struct fc_frame
*);
74 static void fc_rport_recv_logo_req(struct fc_lport
*, struct fc_frame
*);
75 static void fc_rport_timeout(struct work_struct
*);
76 static void fc_rport_error(struct fc_rport_priv
*, struct fc_frame
*);
77 static void fc_rport_error_retry(struct fc_rport_priv
*, struct fc_frame
*);
78 static void fc_rport_work(struct work_struct
*);
80 static const char *fc_rport_state_names
[] = {
81 [RPORT_ST_INIT
] = "Init",
82 [RPORT_ST_FLOGI
] = "FLOGI",
83 [RPORT_ST_PLOGI_WAIT
] = "PLOGI_WAIT",
84 [RPORT_ST_PLOGI
] = "PLOGI",
85 [RPORT_ST_PRLI
] = "PRLI",
86 [RPORT_ST_RTV
] = "RTV",
87 [RPORT_ST_READY
] = "Ready",
88 [RPORT_ST_ADISC
] = "ADISC",
89 [RPORT_ST_DELETE
] = "Delete",
93 * fc_rport_lookup() - Lookup a remote port by port_id
94 * @lport: The local port to lookup the remote port on
95 * @port_id: The remote port ID to look up
97 * The caller must hold either disc_mutex or rcu_read_lock().
99 static struct fc_rport_priv
*fc_rport_lookup(const struct fc_lport
*lport
,
102 struct fc_rport_priv
*rdata
;
104 list_for_each_entry_rcu(rdata
, &lport
->disc
.rports
, peers
)
105 if (rdata
->ids
.port_id
== port_id
)
111 * fc_rport_create() - Create a new remote port
112 * @lport: The local port this remote port will be associated with
113 * @ids: The identifiers for the new remote port
115 * The remote port will start in the INIT state.
117 * Locking note: must be called with the disc_mutex held.
119 static struct fc_rport_priv
*fc_rport_create(struct fc_lport
*lport
,
122 struct fc_rport_priv
*rdata
;
124 rdata
= lport
->tt
.rport_lookup(lport
, port_id
);
128 rdata
= kzalloc(sizeof(*rdata
) + lport
->rport_priv_size
, GFP_KERNEL
);
132 rdata
->ids
.node_name
= -1;
133 rdata
->ids
.port_name
= -1;
134 rdata
->ids
.port_id
= port_id
;
135 rdata
->ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
137 kref_init(&rdata
->kref
);
138 mutex_init(&rdata
->rp_mutex
);
139 rdata
->local_port
= lport
;
140 rdata
->rp_state
= RPORT_ST_INIT
;
141 rdata
->event
= RPORT_EV_NONE
;
142 rdata
->flags
= FC_RP_FLAGS_REC_SUPPORTED
;
143 rdata
->e_d_tov
= lport
->e_d_tov
;
144 rdata
->r_a_tov
= lport
->r_a_tov
;
145 rdata
->maxframe_size
= FC_MIN_MAX_PAYLOAD
;
146 INIT_DELAYED_WORK(&rdata
->retry_work
, fc_rport_timeout
);
147 INIT_WORK(&rdata
->event_work
, fc_rport_work
);
148 if (port_id
!= FC_FID_DIR_SERV
) {
149 rdata
->lld_event_callback
= lport
->tt
.rport_event_callback
;
150 list_add_rcu(&rdata
->peers
, &lport
->disc
.rports
);
156 * fc_rport_free_rcu() - Free a remote port
157 * @rcu: The rcu_head structure inside the remote port
159 static void fc_rport_free_rcu(struct rcu_head
*rcu
)
161 struct fc_rport_priv
*rdata
;
163 rdata
= container_of(rcu
, struct fc_rport_priv
, rcu
);
168 * fc_rport_destroy() - Free a remote port after last reference is released
169 * @kref: The remote port's kref
171 static void fc_rport_destroy(struct kref
*kref
)
173 struct fc_rport_priv
*rdata
;
175 rdata
= container_of(kref
, struct fc_rport_priv
, kref
);
176 call_rcu(&rdata
->rcu
, fc_rport_free_rcu
);
180 * fc_rport_state() - Return a string identifying the remote port's state
181 * @rdata: The remote port
183 static const char *fc_rport_state(struct fc_rport_priv
*rdata
)
187 cp
= fc_rport_state_names
[rdata
->rp_state
];
194 * fc_set_rport_loss_tmo() - Set the remote port loss timeout
195 * @rport: The remote port that gets a new timeout value
196 * @timeout: The new timeout value (in seconds)
198 void fc_set_rport_loss_tmo(struct fc_rport
*rport
, u32 timeout
)
201 rport
->dev_loss_tmo
= timeout
;
203 rport
->dev_loss_tmo
= 1;
205 EXPORT_SYMBOL(fc_set_rport_loss_tmo
);
208 * fc_plogi_get_maxframe() - Get the maximum payload from the common service
209 * parameters in a FLOGI frame
210 * @flp: The FLOGI or PLOGI payload
211 * @maxval: The maximum frame size upper limit; this may be less than what
212 * is in the service parameters
214 static unsigned int fc_plogi_get_maxframe(struct fc_els_flogi
*flp
,
220 * Get max payload from the common service parameters and the
221 * class 3 receive data field size.
223 mfs
= ntohs(flp
->fl_csp
.sp_bb_data
) & FC_SP_BB_DATA_MASK
;
224 if (mfs
>= FC_SP_MIN_MAX_PAYLOAD
&& mfs
< maxval
)
226 mfs
= ntohs(flp
->fl_cssp
[3 - 1].cp_rdfs
);
227 if (mfs
>= FC_SP_MIN_MAX_PAYLOAD
&& mfs
< maxval
)
233 * fc_rport_state_enter() - Change the state of a remote port
234 * @rdata: The remote port whose state should change
235 * @new: The new state
237 * Locking Note: Called with the rport lock held
239 static void fc_rport_state_enter(struct fc_rport_priv
*rdata
,
240 enum fc_rport_state
new)
242 if (rdata
->rp_state
!= new)
244 rdata
->rp_state
= new;
248 * fc_rport_work() - Handler for remote port events in the rport_event_queue
249 * @work: Handle to the remote port being dequeued
251 static void fc_rport_work(struct work_struct
*work
)
254 struct fc_rport_priv
*rdata
=
255 container_of(work
, struct fc_rport_priv
, event_work
);
256 struct fc_rport_libfc_priv
*rpriv
;
257 enum fc_rport_event event
;
258 struct fc_lport
*lport
= rdata
->local_port
;
259 struct fc_rport_operations
*rport_ops
;
260 struct fc_rport_identifiers ids
;
261 struct fc_rport
*rport
;
262 struct fc4_prov
*prov
;
265 mutex_lock(&rdata
->rp_mutex
);
266 event
= rdata
->event
;
267 rport_ops
= rdata
->ops
;
268 rport
= rdata
->rport
;
270 FC_RPORT_DBG(rdata
, "work event %u\n", event
);
275 rdata
->event
= RPORT_EV_NONE
;
276 rdata
->major_retries
= 0;
277 kref_get(&rdata
->kref
);
278 mutex_unlock(&rdata
->rp_mutex
);
281 rport
= fc_remote_port_add(lport
->host
, 0, &ids
);
283 FC_RPORT_DBG(rdata
, "Failed to add the rport\n");
284 lport
->tt
.rport_logoff(rdata
);
285 kref_put(&rdata
->kref
, lport
->tt
.rport_destroy
);
288 mutex_lock(&rdata
->rp_mutex
);
290 FC_RPORT_DBG(rdata
, "rport already allocated\n");
291 rdata
->rport
= rport
;
292 rport
->maxframe_size
= rdata
->maxframe_size
;
293 rport
->supported_classes
= rdata
->supported_classes
;
295 rpriv
= rport
->dd_data
;
296 rpriv
->local_port
= lport
;
297 rpriv
->rp_state
= rdata
->rp_state
;
298 rpriv
->flags
= rdata
->flags
;
299 rpriv
->e_d_tov
= rdata
->e_d_tov
;
300 rpriv
->r_a_tov
= rdata
->r_a_tov
;
301 mutex_unlock(&rdata
->rp_mutex
);
303 if (rport_ops
&& rport_ops
->event_callback
) {
304 FC_RPORT_DBG(rdata
, "callback ev %d\n", event
);
305 rport_ops
->event_callback(lport
, rdata
, event
);
307 if (rdata
->lld_event_callback
) {
308 FC_RPORT_DBG(rdata
, "lld callback ev %d\n", event
);
309 rdata
->lld_event_callback(lport
, rdata
, event
);
311 kref_put(&rdata
->kref
, lport
->tt
.rport_destroy
);
314 case RPORT_EV_FAILED
:
317 if (rdata
->prli_count
) {
318 mutex_lock(&fc_prov_mutex
);
319 for (type
= 1; type
< FC_FC4_PROV_SIZE
; type
++) {
320 prov
= fc_passive_prov
[type
];
321 if (prov
&& prov
->prlo
)
324 mutex_unlock(&fc_prov_mutex
);
326 port_id
= rdata
->ids
.port_id
;
327 mutex_unlock(&rdata
->rp_mutex
);
329 if (rport_ops
&& rport_ops
->event_callback
) {
330 FC_RPORT_DBG(rdata
, "callback ev %d\n", event
);
331 rport_ops
->event_callback(lport
, rdata
, event
);
333 if (rdata
->lld_event_callback
) {
334 FC_RPORT_DBG(rdata
, "lld callback ev %d\n", event
);
335 rdata
->lld_event_callback(lport
, rdata
, event
);
337 cancel_delayed_work_sync(&rdata
->retry_work
);
340 * Reset any outstanding exchanges before freeing rport.
342 lport
->tt
.exch_mgr_reset(lport
, 0, port_id
);
343 lport
->tt
.exch_mgr_reset(lport
, port_id
, 0);
346 rpriv
= rport
->dd_data
;
347 rpriv
->rp_state
= RPORT_ST_DELETE
;
348 mutex_lock(&rdata
->rp_mutex
);
350 mutex_unlock(&rdata
->rp_mutex
);
351 fc_remote_port_delete(rport
);
354 mutex_lock(&lport
->disc
.disc_mutex
);
355 mutex_lock(&rdata
->rp_mutex
);
356 if (rdata
->rp_state
== RPORT_ST_DELETE
) {
357 if (port_id
== FC_FID_DIR_SERV
) {
358 rdata
->event
= RPORT_EV_NONE
;
359 mutex_unlock(&rdata
->rp_mutex
);
360 kref_put(&rdata
->kref
, lport
->tt
.rport_destroy
);
361 } else if ((rdata
->flags
& FC_RP_STARTED
) &&
362 rdata
->major_retries
<
363 lport
->max_rport_retry_count
) {
364 rdata
->major_retries
++;
365 rdata
->event
= RPORT_EV_NONE
;
366 FC_RPORT_DBG(rdata
, "work restart\n");
367 fc_rport_enter_flogi(rdata
);
368 mutex_unlock(&rdata
->rp_mutex
);
370 FC_RPORT_DBG(rdata
, "work delete\n");
371 list_del_rcu(&rdata
->peers
);
372 mutex_unlock(&rdata
->rp_mutex
);
373 kref_put(&rdata
->kref
, lport
->tt
.rport_destroy
);
377 * Re-open for events. Reissue READY event if ready.
379 rdata
->event
= RPORT_EV_NONE
;
380 if (rdata
->rp_state
== RPORT_ST_READY
)
381 fc_rport_enter_ready(rdata
);
382 mutex_unlock(&rdata
->rp_mutex
);
384 mutex_unlock(&lport
->disc
.disc_mutex
);
388 mutex_unlock(&rdata
->rp_mutex
);
394 * fc_rport_login() - Start the remote port login state machine
395 * @rdata: The remote port to be logged in to
397 * Locking Note: Called without the rport lock held. This
398 * function will hold the rport lock, call an _enter_*
399 * function and then unlock the rport.
401 * This indicates the intent to be logged into the remote port.
402 * If it appears we are already logged in, ADISC is used to verify
405 int fc_rport_login(struct fc_rport_priv
*rdata
)
407 mutex_lock(&rdata
->rp_mutex
);
409 rdata
->flags
|= FC_RP_STARTED
;
410 switch (rdata
->rp_state
) {
412 FC_RPORT_DBG(rdata
, "ADISC port\n");
413 fc_rport_enter_adisc(rdata
);
415 case RPORT_ST_DELETE
:
416 FC_RPORT_DBG(rdata
, "Restart deleted port\n");
419 FC_RPORT_DBG(rdata
, "Login to port\n");
420 fc_rport_enter_flogi(rdata
);
423 mutex_unlock(&rdata
->rp_mutex
);
429 * fc_rport_enter_delete() - Schedule a remote port to be deleted
430 * @rdata: The remote port to be deleted
431 * @event: The event to report as the reason for deletion
433 * Locking Note: Called with the rport lock held.
435 * Allow state change into DELETE only once.
437 * Call queue_work only if there's no event already pending.
438 * Set the new event so that the old pending event will not occur.
439 * Since we have the mutex, even if fc_rport_work() is already started,
440 * it'll see the new event.
442 static void fc_rport_enter_delete(struct fc_rport_priv
*rdata
,
443 enum fc_rport_event event
)
445 if (rdata
->rp_state
== RPORT_ST_DELETE
)
448 FC_RPORT_DBG(rdata
, "Delete port\n");
450 fc_rport_state_enter(rdata
, RPORT_ST_DELETE
);
452 if (rdata
->event
== RPORT_EV_NONE
)
453 queue_work(rport_event_queue
, &rdata
->event_work
);
454 rdata
->event
= event
;
458 * fc_rport_logoff() - Logoff and remove a remote port
459 * @rdata: The remote port to be logged off of
461 * Locking Note: Called without the rport lock held. This
462 * function will hold the rport lock, call an _enter_*
463 * function and then unlock the rport.
465 int fc_rport_logoff(struct fc_rport_priv
*rdata
)
467 mutex_lock(&rdata
->rp_mutex
);
469 FC_RPORT_DBG(rdata
, "Remove port\n");
471 rdata
->flags
&= ~FC_RP_STARTED
;
472 if (rdata
->rp_state
== RPORT_ST_DELETE
) {
473 FC_RPORT_DBG(rdata
, "Port in Delete state, not removing\n");
476 fc_rport_enter_logo(rdata
);
479 * Change the state to Delete so that we discard
482 fc_rport_enter_delete(rdata
, RPORT_EV_STOP
);
484 mutex_unlock(&rdata
->rp_mutex
);
489 * fc_rport_enter_ready() - Transition to the RPORT_ST_READY state
490 * @rdata: The remote port that is ready
492 * Locking Note: The rport lock is expected to be held before calling
495 static void fc_rport_enter_ready(struct fc_rport_priv
*rdata
)
497 fc_rport_state_enter(rdata
, RPORT_ST_READY
);
499 FC_RPORT_DBG(rdata
, "Port is Ready\n");
501 if (rdata
->event
== RPORT_EV_NONE
)
502 queue_work(rport_event_queue
, &rdata
->event_work
);
503 rdata
->event
= RPORT_EV_READY
;
507 * fc_rport_timeout() - Handler for the retry_work timer
508 * @work: Handle to the remote port that has timed out
510 * Locking Note: Called without the rport lock held. This
511 * function will hold the rport lock, call an _enter_*
512 * function and then unlock the rport.
514 static void fc_rport_timeout(struct work_struct
*work
)
516 struct fc_rport_priv
*rdata
=
517 container_of(work
, struct fc_rport_priv
, retry_work
.work
);
519 mutex_lock(&rdata
->rp_mutex
);
521 switch (rdata
->rp_state
) {
523 fc_rport_enter_flogi(rdata
);
526 fc_rport_enter_plogi(rdata
);
529 fc_rport_enter_prli(rdata
);
532 fc_rport_enter_rtv(rdata
);
535 fc_rport_enter_adisc(rdata
);
537 case RPORT_ST_PLOGI_WAIT
:
540 case RPORT_ST_DELETE
:
544 mutex_unlock(&rdata
->rp_mutex
);
548 * fc_rport_error() - Error handler, called once retries have been exhausted
549 * @rdata: The remote port the error is happened on
550 * @fp: The error code encapsulated in a frame pointer
552 * Locking Note: The rport lock is expected to be held before
553 * calling this routine
555 static void fc_rport_error(struct fc_rport_priv
*rdata
, struct fc_frame
*fp
)
557 FC_RPORT_DBG(rdata
, "Error %ld in state %s, retries %d\n",
558 IS_ERR(fp
) ? -PTR_ERR(fp
) : 0,
559 fc_rport_state(rdata
), rdata
->retries
);
561 switch (rdata
->rp_state
) {
564 rdata
->flags
&= ~FC_RP_STARTED
;
565 fc_rport_enter_delete(rdata
, RPORT_EV_FAILED
);
568 fc_rport_enter_ready(rdata
);
572 fc_rport_enter_logo(rdata
);
574 case RPORT_ST_PLOGI_WAIT
:
575 case RPORT_ST_DELETE
:
583 * fc_rport_error_retry() - Handler for remote port state retries
584 * @rdata: The remote port whose state is to be retried
585 * @fp: The error code encapsulated in a frame pointer
587 * If the error was an exchange timeout retry immediately,
588 * otherwise wait for E_D_TOV.
590 * Locking Note: The rport lock is expected to be held before
591 * calling this routine
593 static void fc_rport_error_retry(struct fc_rport_priv
*rdata
,
596 unsigned long delay
= FC_DEF_E_D_TOV
;
598 /* make sure this isn't an FC_EX_CLOSED error, never retry those */
599 if (PTR_ERR(fp
) == -FC_EX_CLOSED
)
602 if (rdata
->retries
< rdata
->local_port
->max_rport_retry_count
) {
603 FC_RPORT_DBG(rdata
, "Error %ld in state %s, retrying\n",
604 PTR_ERR(fp
), fc_rport_state(rdata
));
606 /* no additional delay on exchange timeouts */
607 if (PTR_ERR(fp
) == -FC_EX_TIMEOUT
)
609 schedule_delayed_work(&rdata
->retry_work
, delay
);
614 fc_rport_error(rdata
, fp
);
618 * fc_rport_login_complete() - Handle parameters and completion of p-mp login.
619 * @rdata: The remote port which we logged into or which logged into us.
620 * @fp: The FLOGI or PLOGI request or response frame
622 * Returns non-zero error if a problem is detected with the frame.
623 * Does not free the frame.
625 * This is only used in point-to-multipoint mode for FIP currently.
627 static int fc_rport_login_complete(struct fc_rport_priv
*rdata
,
630 struct fc_lport
*lport
= rdata
->local_port
;
631 struct fc_els_flogi
*flogi
;
632 unsigned int e_d_tov
;
635 flogi
= fc_frame_payload_get(fp
, sizeof(*flogi
));
639 csp_flags
= ntohs(flogi
->fl_csp
.sp_features
);
641 if (fc_frame_payload_op(fp
) == ELS_FLOGI
) {
642 if (csp_flags
& FC_SP_FT_FPORT
) {
643 FC_RPORT_DBG(rdata
, "Fabric bit set in FLOGI\n");
649 * E_D_TOV is not valid on an incoming FLOGI request.
651 e_d_tov
= ntohl(flogi
->fl_csp
.sp_e_d_tov
);
652 if (csp_flags
& FC_SP_FT_EDTR
)
654 if (e_d_tov
> rdata
->e_d_tov
)
655 rdata
->e_d_tov
= e_d_tov
;
657 rdata
->maxframe_size
= fc_plogi_get_maxframe(flogi
, lport
->mfs
);
662 * fc_rport_flogi_resp() - Handle response to FLOGI request for p-mp mode
663 * @sp: The sequence that the FLOGI was on
664 * @fp: The FLOGI response frame
665 * @rp_arg: The remote port that received the FLOGI response
667 void fc_rport_flogi_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
670 struct fc_rport_priv
*rdata
= rp_arg
;
671 struct fc_lport
*lport
= rdata
->local_port
;
672 struct fc_els_flogi
*flogi
;
673 unsigned int r_a_tov
;
675 FC_RPORT_DBG(rdata
, "Received a FLOGI %s\n", fc_els_resp_type(fp
));
677 if (fp
== ERR_PTR(-FC_EX_CLOSED
))
680 mutex_lock(&rdata
->rp_mutex
);
682 if (rdata
->rp_state
!= RPORT_ST_FLOGI
) {
683 FC_RPORT_DBG(rdata
, "Received a FLOGI response, but in state "
684 "%s\n", fc_rport_state(rdata
));
691 fc_rport_error(rdata
, fp
);
695 if (fc_frame_payload_op(fp
) != ELS_LS_ACC
)
697 if (fc_rport_login_complete(rdata
, fp
))
700 flogi
= fc_frame_payload_get(fp
, sizeof(*flogi
));
703 r_a_tov
= ntohl(flogi
->fl_csp
.sp_r_a_tov
);
704 if (r_a_tov
> rdata
->r_a_tov
)
705 rdata
->r_a_tov
= r_a_tov
;
707 if (rdata
->ids
.port_name
< lport
->wwpn
)
708 fc_rport_enter_plogi(rdata
);
710 fc_rport_state_enter(rdata
, RPORT_ST_PLOGI_WAIT
);
714 mutex_unlock(&rdata
->rp_mutex
);
716 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
719 FC_RPORT_DBG(rdata
, "Bad FLOGI response\n");
720 fc_rport_error_retry(rdata
, fp
);
725 * fc_rport_enter_flogi() - Send a FLOGI request to the remote port for p-mp
726 * @rdata: The remote port to send a FLOGI to
728 * Locking Note: The rport lock is expected to be held before calling
731 static void fc_rport_enter_flogi(struct fc_rport_priv
*rdata
)
733 struct fc_lport
*lport
= rdata
->local_port
;
736 if (!lport
->point_to_multipoint
)
737 return fc_rport_enter_plogi(rdata
);
739 FC_RPORT_DBG(rdata
, "Entered FLOGI state from %s state\n",
740 fc_rport_state(rdata
));
742 fc_rport_state_enter(rdata
, RPORT_ST_FLOGI
);
744 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_flogi
));
746 return fc_rport_error_retry(rdata
, fp
);
748 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_FLOGI
,
749 fc_rport_flogi_resp
, rdata
,
751 fc_rport_error_retry(rdata
, NULL
);
753 kref_get(&rdata
->kref
);
757 * fc_rport_recv_flogi_req() - Handle Fabric Login (FLOGI) request in p-mp mode
758 * @lport: The local port that received the PLOGI request
759 * @rx_fp: The PLOGI request frame
761 static void fc_rport_recv_flogi_req(struct fc_lport
*lport
,
762 struct fc_frame
*rx_fp
)
764 struct fc_disc
*disc
;
765 struct fc_els_flogi
*flp
;
766 struct fc_rport_priv
*rdata
;
767 struct fc_frame
*fp
= rx_fp
;
768 struct fc_seq_els_data rjt_data
;
771 sid
= fc_frame_sid(fp
);
773 FC_RPORT_ID_DBG(lport
, sid
, "Received FLOGI request\n");
776 mutex_lock(&disc
->disc_mutex
);
778 if (!lport
->point_to_multipoint
) {
779 rjt_data
.reason
= ELS_RJT_UNSUP
;
780 rjt_data
.explan
= ELS_EXPL_NONE
;
784 flp
= fc_frame_payload_get(fp
, sizeof(*flp
));
786 rjt_data
.reason
= ELS_RJT_LOGIC
;
787 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
791 rdata
= lport
->tt
.rport_lookup(lport
, sid
);
793 rjt_data
.reason
= ELS_RJT_FIP
;
794 rjt_data
.explan
= ELS_EXPL_NOT_NEIGHBOR
;
797 mutex_lock(&rdata
->rp_mutex
);
799 FC_RPORT_DBG(rdata
, "Received FLOGI in %s state\n",
800 fc_rport_state(rdata
));
802 switch (rdata
->rp_state
) {
804 case RPORT_ST_DELETE
:
805 mutex_unlock(&rdata
->rp_mutex
);
806 rjt_data
.reason
= ELS_RJT_FIP
;
807 rjt_data
.explan
= ELS_EXPL_NOT_NEIGHBOR
;
810 case RPORT_ST_PLOGI_WAIT
:
818 * Set the remote port to be deleted and to then restart.
819 * This queues work to be sure exchanges are reset.
821 fc_rport_enter_delete(rdata
, RPORT_EV_LOGO
);
822 mutex_unlock(&rdata
->rp_mutex
);
823 rjt_data
.reason
= ELS_RJT_BUSY
;
824 rjt_data
.explan
= ELS_EXPL_NONE
;
827 if (fc_rport_login_complete(rdata
, fp
)) {
828 mutex_unlock(&rdata
->rp_mutex
);
829 rjt_data
.reason
= ELS_RJT_LOGIC
;
830 rjt_data
.explan
= ELS_EXPL_NONE
;
834 fp
= fc_frame_alloc(lport
, sizeof(*flp
));
838 fc_flogi_fill(lport
, fp
);
839 flp
= fc_frame_payload_get(fp
, sizeof(*flp
));
840 flp
->fl_cmd
= ELS_LS_ACC
;
842 fc_fill_reply_hdr(fp
, rx_fp
, FC_RCTL_ELS_REP
, 0);
843 lport
->tt
.frame_send(lport
, fp
);
845 if (rdata
->ids
.port_name
< lport
->wwpn
)
846 fc_rport_enter_plogi(rdata
);
848 fc_rport_state_enter(rdata
, RPORT_ST_PLOGI_WAIT
);
850 mutex_unlock(&rdata
->rp_mutex
);
851 mutex_unlock(&disc
->disc_mutex
);
852 fc_frame_free(rx_fp
);
856 mutex_unlock(&disc
->disc_mutex
);
857 lport
->tt
.seq_els_rsp_send(rx_fp
, ELS_LS_RJT
, &rjt_data
);
858 fc_frame_free(rx_fp
);
862 * fc_rport_plogi_resp() - Handler for ELS PLOGI responses
863 * @sp: The sequence the PLOGI is on
864 * @fp: The PLOGI response frame
865 * @rdata_arg: The remote port that sent the PLOGI response
867 * Locking Note: This function will be called without the rport lock
868 * held, but it will lock, call an _enter_* function or fc_rport_error
869 * and then unlock the rport.
871 static void fc_rport_plogi_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
874 struct fc_rport_priv
*rdata
= rdata_arg
;
875 struct fc_lport
*lport
= rdata
->local_port
;
876 struct fc_els_flogi
*plp
= NULL
;
881 mutex_lock(&rdata
->rp_mutex
);
883 FC_RPORT_DBG(rdata
, "Received a PLOGI %s\n", fc_els_resp_type(fp
));
885 if (rdata
->rp_state
!= RPORT_ST_PLOGI
) {
886 FC_RPORT_DBG(rdata
, "Received a PLOGI response, but in state "
887 "%s\n", fc_rport_state(rdata
));
894 fc_rport_error_retry(rdata
, fp
);
898 op
= fc_frame_payload_op(fp
);
899 if (op
== ELS_LS_ACC
&&
900 (plp
= fc_frame_payload_get(fp
, sizeof(*plp
))) != NULL
) {
901 rdata
->ids
.port_name
= get_unaligned_be64(&plp
->fl_wwpn
);
902 rdata
->ids
.node_name
= get_unaligned_be64(&plp
->fl_wwnn
);
904 /* save plogi response sp_features for further reference */
905 rdata
->sp_features
= ntohs(plp
->fl_csp
.sp_features
);
907 if (lport
->point_to_multipoint
)
908 fc_rport_login_complete(rdata
, fp
);
909 csp_seq
= ntohs(plp
->fl_csp
.sp_tot_seq
);
910 cssp_seq
= ntohs(plp
->fl_cssp
[3 - 1].cp_con_seq
);
911 if (cssp_seq
< csp_seq
)
913 rdata
->max_seq
= csp_seq
;
914 rdata
->maxframe_size
= fc_plogi_get_maxframe(plp
, lport
->mfs
);
915 fc_rport_enter_prli(rdata
);
917 fc_rport_error_retry(rdata
, fp
);
922 mutex_unlock(&rdata
->rp_mutex
);
923 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
927 * fc_rport_enter_plogi() - Send Port Login (PLOGI) request
928 * @rdata: The remote port to send a PLOGI to
930 * Locking Note: The rport lock is expected to be held before calling
933 static void fc_rport_enter_plogi(struct fc_rport_priv
*rdata
)
935 struct fc_lport
*lport
= rdata
->local_port
;
938 FC_RPORT_DBG(rdata
, "Port entered PLOGI state from %s state\n",
939 fc_rport_state(rdata
));
941 fc_rport_state_enter(rdata
, RPORT_ST_PLOGI
);
943 rdata
->maxframe_size
= FC_MIN_MAX_PAYLOAD
;
944 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_flogi
));
946 FC_RPORT_DBG(rdata
, "%s frame alloc failed\n", __func__
);
947 fc_rport_error_retry(rdata
, fp
);
950 rdata
->e_d_tov
= lport
->e_d_tov
;
952 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_PLOGI
,
953 fc_rport_plogi_resp
, rdata
,
955 fc_rport_error_retry(rdata
, NULL
);
957 kref_get(&rdata
->kref
);
961 * fc_rport_prli_resp() - Process Login (PRLI) response handler
962 * @sp: The sequence the PRLI response was on
963 * @fp: The PRLI response frame
964 * @rdata_arg: The remote port that sent the PRLI response
966 * Locking Note: This function will be called without the rport lock
967 * held, but it will lock, call an _enter_* function or fc_rport_error
968 * and then unlock the rport.
970 static void fc_rport_prli_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
973 struct fc_rport_priv
*rdata
= rdata_arg
;
975 struct fc_els_prli prli
;
976 struct fc_els_spp spp
;
978 struct fc_els_spp temp_spp
;
979 struct fc4_prov
*prov
;
980 u32 roles
= FC_RPORT_ROLE_UNKNOWN
;
985 mutex_lock(&rdata
->rp_mutex
);
987 FC_RPORT_DBG(rdata
, "Received a PRLI %s\n", fc_els_resp_type(fp
));
989 if (rdata
->rp_state
!= RPORT_ST_PRLI
) {
990 FC_RPORT_DBG(rdata
, "Received a PRLI response, but in state "
991 "%s\n", fc_rport_state(rdata
));
998 fc_rport_error_retry(rdata
, fp
);
1002 /* reinitialize remote port roles */
1003 rdata
->ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
1005 op
= fc_frame_payload_op(fp
);
1006 if (op
== ELS_LS_ACC
) {
1007 pp
= fc_frame_payload_get(fp
, sizeof(*pp
));
1011 resp_code
= (pp
->spp
.spp_flags
& FC_SPP_RESP_MASK
);
1012 FC_RPORT_DBG(rdata
, "PRLI spp_flags = 0x%x\n",
1014 rdata
->spp_type
= pp
->spp
.spp_type
;
1015 if (resp_code
!= FC_SPP_RESP_ACK
) {
1016 if (resp_code
== FC_SPP_RESP_CONF
)
1017 fc_rport_error(rdata
, fp
);
1019 fc_rport_error_retry(rdata
, fp
);
1022 if (pp
->prli
.prli_spp_len
< sizeof(pp
->spp
))
1025 fcp_parm
= ntohl(pp
->spp
.spp_params
);
1026 if (fcp_parm
& FCP_SPPF_RETRY
)
1027 rdata
->flags
|= FC_RP_FLAGS_RETRY
;
1028 if (fcp_parm
& FCP_SPPF_CONF_COMPL
)
1029 rdata
->flags
|= FC_RP_FLAGS_CONF_REQ
;
1031 prov
= fc_passive_prov
[FC_TYPE_FCP
];
1033 memset(&temp_spp
, 0, sizeof(temp_spp
));
1034 prov
->prli(rdata
, pp
->prli
.prli_spp_len
,
1035 &pp
->spp
, &temp_spp
);
1038 rdata
->supported_classes
= FC_COS_CLASS3
;
1039 if (fcp_parm
& FCP_SPPF_INIT_FCN
)
1040 roles
|= FC_RPORT_ROLE_FCP_INITIATOR
;
1041 if (fcp_parm
& FCP_SPPF_TARG_FCN
)
1042 roles
|= FC_RPORT_ROLE_FCP_TARGET
;
1044 rdata
->ids
.roles
= roles
;
1045 fc_rport_enter_rtv(rdata
);
1048 FC_RPORT_DBG(rdata
, "Bad ELS response for PRLI command\n");
1049 fc_rport_error_retry(rdata
, fp
);
1055 mutex_unlock(&rdata
->rp_mutex
);
1056 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
1060 * fc_rport_enter_prli() - Send Process Login (PRLI) request
1061 * @rdata: The remote port to send the PRLI request to
1063 * Locking Note: The rport lock is expected to be held before calling
1066 static void fc_rport_enter_prli(struct fc_rport_priv
*rdata
)
1068 struct fc_lport
*lport
= rdata
->local_port
;
1070 struct fc_els_prli prli
;
1071 struct fc_els_spp spp
;
1073 struct fc_frame
*fp
;
1074 struct fc4_prov
*prov
;
1077 * If the rport is one of the well known addresses
1078 * we skip PRLI and RTV and go straight to READY.
1080 if (rdata
->ids
.port_id
>= FC_FID_DOM_MGR
) {
1081 fc_rport_enter_ready(rdata
);
1085 FC_RPORT_DBG(rdata
, "Port entered PRLI state from %s state\n",
1086 fc_rport_state(rdata
));
1088 fc_rport_state_enter(rdata
, RPORT_ST_PRLI
);
1090 fp
= fc_frame_alloc(lport
, sizeof(*pp
));
1092 fc_rport_error_retry(rdata
, fp
);
1096 fc_prli_fill(lport
, fp
);
1098 prov
= fc_passive_prov
[FC_TYPE_FCP
];
1100 pp
= fc_frame_payload_get(fp
, sizeof(*pp
));
1101 prov
->prli(rdata
, sizeof(pp
->spp
), NULL
, &pp
->spp
);
1104 fc_fill_fc_hdr(fp
, FC_RCTL_ELS_REQ
, rdata
->ids
.port_id
,
1105 fc_host_port_id(lport
->host
), FC_TYPE_ELS
,
1106 FC_FC_FIRST_SEQ
| FC_FC_END_SEQ
| FC_FC_SEQ_INIT
, 0);
1108 if (!lport
->tt
.exch_seq_send(lport
, fp
, fc_rport_prli_resp
,
1109 NULL
, rdata
, 2 * lport
->r_a_tov
))
1110 fc_rport_error_retry(rdata
, NULL
);
1112 kref_get(&rdata
->kref
);
1116 * fc_rport_els_rtv_resp() - Handler for Request Timeout Value (RTV) responses
1117 * @sp: The sequence the RTV was on
1118 * @fp: The RTV response frame
1119 * @rdata_arg: The remote port that sent the RTV response
1121 * Many targets don't seem to support this.
1123 * Locking Note: This function will be called without the rport lock
1124 * held, but it will lock, call an _enter_* function or fc_rport_error
1125 * and then unlock the rport.
1127 static void fc_rport_rtv_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
1130 struct fc_rport_priv
*rdata
= rdata_arg
;
1133 mutex_lock(&rdata
->rp_mutex
);
1135 FC_RPORT_DBG(rdata
, "Received a RTV %s\n", fc_els_resp_type(fp
));
1137 if (rdata
->rp_state
!= RPORT_ST_RTV
) {
1138 FC_RPORT_DBG(rdata
, "Received a RTV response, but in state "
1139 "%s\n", fc_rport_state(rdata
));
1146 fc_rport_error(rdata
, fp
);
1150 op
= fc_frame_payload_op(fp
);
1151 if (op
== ELS_LS_ACC
) {
1152 struct fc_els_rtv_acc
*rtv
;
1156 rtv
= fc_frame_payload_get(fp
, sizeof(*rtv
));
1158 toq
= ntohl(rtv
->rtv_toq
);
1159 tov
= ntohl(rtv
->rtv_r_a_tov
);
1162 rdata
->r_a_tov
= tov
;
1163 tov
= ntohl(rtv
->rtv_e_d_tov
);
1164 if (toq
& FC_ELS_RTV_EDRES
)
1168 rdata
->e_d_tov
= tov
;
1172 fc_rport_enter_ready(rdata
);
1177 mutex_unlock(&rdata
->rp_mutex
);
1178 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
1182 * fc_rport_enter_rtv() - Send Request Timeout Value (RTV) request
1183 * @rdata: The remote port to send the RTV request to
1185 * Locking Note: The rport lock is expected to be held before calling
1188 static void fc_rport_enter_rtv(struct fc_rport_priv
*rdata
)
1190 struct fc_frame
*fp
;
1191 struct fc_lport
*lport
= rdata
->local_port
;
1193 FC_RPORT_DBG(rdata
, "Port entered RTV state from %s state\n",
1194 fc_rport_state(rdata
));
1196 fc_rport_state_enter(rdata
, RPORT_ST_RTV
);
1198 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_rtv
));
1200 fc_rport_error_retry(rdata
, fp
);
1204 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_RTV
,
1205 fc_rport_rtv_resp
, rdata
,
1206 2 * lport
->r_a_tov
))
1207 fc_rport_error_retry(rdata
, NULL
);
1209 kref_get(&rdata
->kref
);
1213 * fc_rport_logo_resp() - Handler for logout (LOGO) responses
1214 * @sp: The sequence the LOGO was on
1215 * @fp: The LOGO response frame
1216 * @lport_arg: The local port
1218 static void fc_rport_logo_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
1221 struct fc_lport
*lport
= lport_arg
;
1223 FC_RPORT_ID_DBG(lport
, fc_seq_exch(sp
)->did
,
1224 "Received a LOGO %s\n", fc_els_resp_type(fp
));
1231 * fc_rport_enter_logo() - Send a logout (LOGO) request
1232 * @rdata: The remote port to send the LOGO request to
1234 * Locking Note: The rport lock is expected to be held before calling
1237 static void fc_rport_enter_logo(struct fc_rport_priv
*rdata
)
1239 struct fc_lport
*lport
= rdata
->local_port
;
1240 struct fc_frame
*fp
;
1242 FC_RPORT_DBG(rdata
, "Port sending LOGO from %s state\n",
1243 fc_rport_state(rdata
));
1245 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_logo
));
1248 (void)lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_LOGO
,
1249 fc_rport_logo_resp
, lport
, 0);
1253 * fc_rport_els_adisc_resp() - Handler for Address Discovery (ADISC) responses
1254 * @sp: The sequence the ADISC response was on
1255 * @fp: The ADISC response frame
1256 * @rdata_arg: The remote port that sent the ADISC response
1258 * Locking Note: This function will be called without the rport lock
1259 * held, but it will lock, call an _enter_* function or fc_rport_error
1260 * and then unlock the rport.
1262 static void fc_rport_adisc_resp(struct fc_seq
*sp
, struct fc_frame
*fp
,
1265 struct fc_rport_priv
*rdata
= rdata_arg
;
1266 struct fc_els_adisc
*adisc
;
1269 mutex_lock(&rdata
->rp_mutex
);
1271 FC_RPORT_DBG(rdata
, "Received a ADISC response\n");
1273 if (rdata
->rp_state
!= RPORT_ST_ADISC
) {
1274 FC_RPORT_DBG(rdata
, "Received a ADISC resp but in state %s\n",
1275 fc_rport_state(rdata
));
1282 fc_rport_error(rdata
, fp
);
1287 * If address verification failed. Consider us logged out of the rport.
1288 * Since the rport is still in discovery, we want to be
1289 * logged in, so go to PLOGI state. Otherwise, go back to READY.
1291 op
= fc_frame_payload_op(fp
);
1292 adisc
= fc_frame_payload_get(fp
, sizeof(*adisc
));
1293 if (op
!= ELS_LS_ACC
|| !adisc
||
1294 ntoh24(adisc
->adisc_port_id
) != rdata
->ids
.port_id
||
1295 get_unaligned_be64(&adisc
->adisc_wwpn
) != rdata
->ids
.port_name
||
1296 get_unaligned_be64(&adisc
->adisc_wwnn
) != rdata
->ids
.node_name
) {
1297 FC_RPORT_DBG(rdata
, "ADISC error or mismatch\n");
1298 fc_rport_enter_flogi(rdata
);
1300 FC_RPORT_DBG(rdata
, "ADISC OK\n");
1301 fc_rport_enter_ready(rdata
);
1306 mutex_unlock(&rdata
->rp_mutex
);
1307 kref_put(&rdata
->kref
, rdata
->local_port
->tt
.rport_destroy
);
1311 * fc_rport_enter_adisc() - Send Address Discover (ADISC) request
1312 * @rdata: The remote port to send the ADISC request to
1314 * Locking Note: The rport lock is expected to be held before calling
1317 static void fc_rport_enter_adisc(struct fc_rport_priv
*rdata
)
1319 struct fc_lport
*lport
= rdata
->local_port
;
1320 struct fc_frame
*fp
;
1322 FC_RPORT_DBG(rdata
, "sending ADISC from %s state\n",
1323 fc_rport_state(rdata
));
1325 fc_rport_state_enter(rdata
, RPORT_ST_ADISC
);
1327 fp
= fc_frame_alloc(lport
, sizeof(struct fc_els_adisc
));
1329 fc_rport_error_retry(rdata
, fp
);
1332 if (!lport
->tt
.elsct_send(lport
, rdata
->ids
.port_id
, fp
, ELS_ADISC
,
1333 fc_rport_adisc_resp
, rdata
,
1334 2 * lport
->r_a_tov
))
1335 fc_rport_error_retry(rdata
, NULL
);
1337 kref_get(&rdata
->kref
);
1341 * fc_rport_recv_adisc_req() - Handler for Address Discovery (ADISC) requests
1342 * @rdata: The remote port that sent the ADISC request
1343 * @in_fp: The ADISC request frame
1345 * Locking Note: Called with the lport and rport locks held.
1347 static void fc_rport_recv_adisc_req(struct fc_rport_priv
*rdata
,
1348 struct fc_frame
*in_fp
)
1350 struct fc_lport
*lport
= rdata
->local_port
;
1351 struct fc_frame
*fp
;
1352 struct fc_els_adisc
*adisc
;
1353 struct fc_seq_els_data rjt_data
;
1355 FC_RPORT_DBG(rdata
, "Received ADISC request\n");
1357 adisc
= fc_frame_payload_get(in_fp
, sizeof(*adisc
));
1359 rjt_data
.reason
= ELS_RJT_PROT
;
1360 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1361 lport
->tt
.seq_els_rsp_send(in_fp
, ELS_LS_RJT
, &rjt_data
);
1365 fp
= fc_frame_alloc(lport
, sizeof(*adisc
));
1368 fc_adisc_fill(lport
, fp
);
1369 adisc
= fc_frame_payload_get(fp
, sizeof(*adisc
));
1370 adisc
->adisc_cmd
= ELS_LS_ACC
;
1371 fc_fill_reply_hdr(fp
, in_fp
, FC_RCTL_ELS_REP
, 0);
1372 lport
->tt
.frame_send(lport
, fp
);
1374 fc_frame_free(in_fp
);
1378 * fc_rport_recv_rls_req() - Handle received Read Link Status request
1379 * @rdata: The remote port that sent the RLS request
1380 * @rx_fp: The PRLI request frame
1382 * Locking Note: The rport lock is expected to be held before calling
1385 static void fc_rport_recv_rls_req(struct fc_rport_priv
*rdata
,
1386 struct fc_frame
*rx_fp
)
1389 struct fc_lport
*lport
= rdata
->local_port
;
1390 struct fc_frame
*fp
;
1391 struct fc_els_rls
*rls
;
1392 struct fc_els_rls_resp
*rsp
;
1393 struct fc_els_lesb
*lesb
;
1394 struct fc_seq_els_data rjt_data
;
1395 struct fc_host_statistics
*hst
;
1397 FC_RPORT_DBG(rdata
, "Received RLS request while in state %s\n",
1398 fc_rport_state(rdata
));
1400 rls
= fc_frame_payload_get(rx_fp
, sizeof(*rls
));
1402 rjt_data
.reason
= ELS_RJT_PROT
;
1403 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1407 fp
= fc_frame_alloc(lport
, sizeof(*rsp
));
1409 rjt_data
.reason
= ELS_RJT_UNAB
;
1410 rjt_data
.explan
= ELS_EXPL_INSUF_RES
;
1414 rsp
= fc_frame_payload_get(fp
, sizeof(*rsp
));
1415 memset(rsp
, 0, sizeof(*rsp
));
1416 rsp
->rls_cmd
= ELS_LS_ACC
;
1417 lesb
= &rsp
->rls_lesb
;
1418 if (lport
->tt
.get_lesb
) {
1419 /* get LESB from LLD if it supports it */
1420 lport
->tt
.get_lesb(lport
, lesb
);
1422 fc_get_host_stats(lport
->host
);
1423 hst
= &lport
->host_stats
;
1424 lesb
->lesb_link_fail
= htonl(hst
->link_failure_count
);
1425 lesb
->lesb_sync_loss
= htonl(hst
->loss_of_sync_count
);
1426 lesb
->lesb_sig_loss
= htonl(hst
->loss_of_signal_count
);
1427 lesb
->lesb_prim_err
= htonl(hst
->prim_seq_protocol_err_count
);
1428 lesb
->lesb_inv_word
= htonl(hst
->invalid_tx_word_count
);
1429 lesb
->lesb_inv_crc
= htonl(hst
->invalid_crc_count
);
1432 fc_fill_reply_hdr(fp
, rx_fp
, FC_RCTL_ELS_REP
, 0);
1433 lport
->tt
.frame_send(lport
, fp
);
1437 lport
->tt
.seq_els_rsp_send(rx_fp
, ELS_LS_RJT
, &rjt_data
);
1439 fc_frame_free(rx_fp
);
1443 * fc_rport_recv_els_req() - Handler for validated ELS requests
1444 * @lport: The local port that received the ELS request
1445 * @fp: The ELS request frame
1447 * Handle incoming ELS requests that require port login.
1448 * The ELS opcode has already been validated by the caller.
1450 * Locking Note: Called with the lport lock held.
1452 static void fc_rport_recv_els_req(struct fc_lport
*lport
, struct fc_frame
*fp
)
1454 struct fc_rport_priv
*rdata
;
1455 struct fc_seq_els_data els_data
;
1457 mutex_lock(&lport
->disc
.disc_mutex
);
1458 rdata
= lport
->tt
.rport_lookup(lport
, fc_frame_sid(fp
));
1460 mutex_unlock(&lport
->disc
.disc_mutex
);
1463 mutex_lock(&rdata
->rp_mutex
);
1464 mutex_unlock(&lport
->disc
.disc_mutex
);
1466 switch (rdata
->rp_state
) {
1469 case RPORT_ST_READY
:
1470 case RPORT_ST_ADISC
:
1473 mutex_unlock(&rdata
->rp_mutex
);
1477 switch (fc_frame_payload_op(fp
)) {
1479 fc_rport_recv_prli_req(rdata
, fp
);
1482 fc_rport_recv_prlo_req(rdata
, fp
);
1485 fc_rport_recv_adisc_req(rdata
, fp
);
1488 lport
->tt
.seq_els_rsp_send(fp
, ELS_RRQ
, NULL
);
1492 lport
->tt
.seq_els_rsp_send(fp
, ELS_REC
, NULL
);
1496 fc_rport_recv_rls_req(rdata
, fp
);
1499 fc_frame_free(fp
); /* can't happen */
1503 mutex_unlock(&rdata
->rp_mutex
);
1507 els_data
.reason
= ELS_RJT_UNAB
;
1508 els_data
.explan
= ELS_EXPL_PLOGI_REQD
;
1509 lport
->tt
.seq_els_rsp_send(fp
, ELS_LS_RJT
, &els_data
);
1514 * fc_rport_recv_req() - Handler for requests
1515 * @lport: The local port that received the request
1516 * @fp: The request frame
1518 * Locking Note: Called with the lport lock held.
1520 void fc_rport_recv_req(struct fc_lport
*lport
, struct fc_frame
*fp
)
1522 struct fc_seq_els_data els_data
;
1525 * Handle FLOGI, PLOGI and LOGO requests separately, since they
1526 * don't require prior login.
1527 * Check for unsupported opcodes first and reject them.
1528 * For some ops, it would be incorrect to reject with "PLOGI required".
1530 switch (fc_frame_payload_op(fp
)) {
1532 fc_rport_recv_flogi_req(lport
, fp
);
1535 fc_rport_recv_plogi_req(lport
, fp
);
1538 fc_rport_recv_logo_req(lport
, fp
);
1546 fc_rport_recv_els_req(lport
, fp
);
1549 els_data
.reason
= ELS_RJT_UNSUP
;
1550 els_data
.explan
= ELS_EXPL_NONE
;
1551 lport
->tt
.seq_els_rsp_send(fp
, ELS_LS_RJT
, &els_data
);
1558 * fc_rport_recv_plogi_req() - Handler for Port Login (PLOGI) requests
1559 * @lport: The local port that received the PLOGI request
1560 * @rx_fp: The PLOGI request frame
1562 * Locking Note: The rport lock is held before calling this function.
1564 static void fc_rport_recv_plogi_req(struct fc_lport
*lport
,
1565 struct fc_frame
*rx_fp
)
1567 struct fc_disc
*disc
;
1568 struct fc_rport_priv
*rdata
;
1569 struct fc_frame
*fp
= rx_fp
;
1570 struct fc_els_flogi
*pl
;
1571 struct fc_seq_els_data rjt_data
;
1574 sid
= fc_frame_sid(fp
);
1576 FC_RPORT_ID_DBG(lport
, sid
, "Received PLOGI request\n");
1578 pl
= fc_frame_payload_get(fp
, sizeof(*pl
));
1580 FC_RPORT_ID_DBG(lport
, sid
, "Received PLOGI too short\n");
1581 rjt_data
.reason
= ELS_RJT_PROT
;
1582 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1586 disc
= &lport
->disc
;
1587 mutex_lock(&disc
->disc_mutex
);
1588 rdata
= lport
->tt
.rport_create(lport
, sid
);
1590 mutex_unlock(&disc
->disc_mutex
);
1591 rjt_data
.reason
= ELS_RJT_UNAB
;
1592 rjt_data
.explan
= ELS_EXPL_INSUF_RES
;
1596 mutex_lock(&rdata
->rp_mutex
);
1597 mutex_unlock(&disc
->disc_mutex
);
1599 rdata
->ids
.port_name
= get_unaligned_be64(&pl
->fl_wwpn
);
1600 rdata
->ids
.node_name
= get_unaligned_be64(&pl
->fl_wwnn
);
1603 * If the rport was just created, possibly due to the incoming PLOGI,
1604 * set the state appropriately and accept the PLOGI.
1606 * If we had also sent a PLOGI, and if the received PLOGI is from a
1607 * higher WWPN, we accept it, otherwise an LS_RJT is sent with reason
1608 * "command already in progress".
1610 * XXX TBD: If the session was ready before, the PLOGI should result in
1611 * all outstanding exchanges being reset.
1613 switch (rdata
->rp_state
) {
1615 FC_RPORT_DBG(rdata
, "Received PLOGI in INIT state\n");
1617 case RPORT_ST_PLOGI_WAIT
:
1618 FC_RPORT_DBG(rdata
, "Received PLOGI in PLOGI_WAIT state\n");
1620 case RPORT_ST_PLOGI
:
1621 FC_RPORT_DBG(rdata
, "Received PLOGI in PLOGI state\n");
1622 if (rdata
->ids
.port_name
< lport
->wwpn
) {
1623 mutex_unlock(&rdata
->rp_mutex
);
1624 rjt_data
.reason
= ELS_RJT_INPROG
;
1625 rjt_data
.explan
= ELS_EXPL_NONE
;
1631 case RPORT_ST_READY
:
1632 case RPORT_ST_ADISC
:
1633 FC_RPORT_DBG(rdata
, "Received PLOGI in logged-in state %d "
1634 "- ignored for now\n", rdata
->rp_state
);
1635 /* XXX TBD - should reset */
1637 case RPORT_ST_FLOGI
:
1638 case RPORT_ST_DELETE
:
1639 FC_RPORT_DBG(rdata
, "Received PLOGI in state %s - send busy\n",
1640 fc_rport_state(rdata
));
1641 mutex_unlock(&rdata
->rp_mutex
);
1642 rjt_data
.reason
= ELS_RJT_BUSY
;
1643 rjt_data
.explan
= ELS_EXPL_NONE
;
1648 * Get session payload size from incoming PLOGI.
1650 rdata
->maxframe_size
= fc_plogi_get_maxframe(pl
, lport
->mfs
);
1653 * Send LS_ACC. If this fails, the originator should retry.
1655 fp
= fc_frame_alloc(lport
, sizeof(*pl
));
1659 fc_plogi_fill(lport
, fp
, ELS_LS_ACC
);
1660 fc_fill_reply_hdr(fp
, rx_fp
, FC_RCTL_ELS_REP
, 0);
1661 lport
->tt
.frame_send(lport
, fp
);
1662 fc_rport_enter_prli(rdata
);
1664 mutex_unlock(&rdata
->rp_mutex
);
1665 fc_frame_free(rx_fp
);
1669 lport
->tt
.seq_els_rsp_send(fp
, ELS_LS_RJT
, &rjt_data
);
1674 * fc_rport_recv_prli_req() - Handler for process login (PRLI) requests
1675 * @rdata: The remote port that sent the PRLI request
1676 * @rx_fp: The PRLI request frame
1678 * Locking Note: The rport lock is exected to be held before calling
1681 static void fc_rport_recv_prli_req(struct fc_rport_priv
*rdata
,
1682 struct fc_frame
*rx_fp
)
1684 struct fc_lport
*lport
= rdata
->local_port
;
1685 struct fc_frame
*fp
;
1687 struct fc_els_prli prli
;
1688 struct fc_els_spp spp
;
1690 struct fc_els_spp
*rspp
; /* request service param page */
1691 struct fc_els_spp
*spp
; /* response spp */
1694 enum fc_els_spp_resp resp
;
1695 enum fc_els_spp_resp passive
;
1696 struct fc_seq_els_data rjt_data
;
1697 struct fc4_prov
*prov
;
1699 FC_RPORT_DBG(rdata
, "Received PRLI request while in state %s\n",
1700 fc_rport_state(rdata
));
1702 len
= fr_len(rx_fp
) - sizeof(struct fc_frame_header
);
1703 pp
= fc_frame_payload_get(rx_fp
, sizeof(*pp
));
1706 plen
= ntohs(pp
->prli
.prli_len
);
1707 if ((plen
% 4) != 0 || plen
> len
|| plen
< 16)
1711 plen
= pp
->prli
.prli_spp_len
;
1712 if ((plen
% 4) != 0 || plen
< sizeof(*spp
) ||
1713 plen
> len
|| len
< sizeof(*pp
) || plen
< 12)
1717 fp
= fc_frame_alloc(lport
, len
);
1719 rjt_data
.reason
= ELS_RJT_UNAB
;
1720 rjt_data
.explan
= ELS_EXPL_INSUF_RES
;
1723 pp
= fc_frame_payload_get(fp
, len
);
1726 pp
->prli
.prli_cmd
= ELS_LS_ACC
;
1727 pp
->prli
.prli_spp_len
= plen
;
1728 pp
->prli
.prli_len
= htons(len
);
1729 len
-= sizeof(struct fc_els_prli
);
1732 * Go through all the service parameter pages and build
1733 * response. If plen indicates longer SPP than standard,
1734 * use that. The entire response has been pre-cleared above.
1737 mutex_lock(&fc_prov_mutex
);
1738 while (len
>= plen
) {
1739 rdata
->spp_type
= rspp
->spp_type
;
1740 spp
->spp_type
= rspp
->spp_type
;
1741 spp
->spp_type_ext
= rspp
->spp_type_ext
;
1744 if (rspp
->spp_type
< FC_FC4_PROV_SIZE
) {
1745 prov
= fc_active_prov
[rspp
->spp_type
];
1747 resp
= prov
->prli(rdata
, plen
, rspp
, spp
);
1748 prov
= fc_passive_prov
[rspp
->spp_type
];
1750 passive
= prov
->prli(rdata
, plen
, rspp
, spp
);
1751 if (!resp
|| passive
== FC_SPP_RESP_ACK
)
1756 if (spp
->spp_flags
& FC_SPP_EST_IMG_PAIR
)
1757 resp
|= FC_SPP_RESP_CONF
;
1759 resp
|= FC_SPP_RESP_INVL
;
1761 spp
->spp_flags
|= resp
;
1763 rspp
= (struct fc_els_spp
*)((char *)rspp
+ plen
);
1764 spp
= (struct fc_els_spp
*)((char *)spp
+ plen
);
1766 mutex_unlock(&fc_prov_mutex
);
1769 * Send LS_ACC. If this fails, the originator should retry.
1771 fc_fill_reply_hdr(fp
, rx_fp
, FC_RCTL_ELS_REP
, 0);
1772 lport
->tt
.frame_send(lport
, fp
);
1774 switch (rdata
->rp_state
) {
1776 fc_rport_enter_ready(rdata
);
1784 rjt_data
.reason
= ELS_RJT_PROT
;
1785 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1787 lport
->tt
.seq_els_rsp_send(rx_fp
, ELS_LS_RJT
, &rjt_data
);
1789 fc_frame_free(rx_fp
);
1793 * fc_rport_recv_prlo_req() - Handler for process logout (PRLO) requests
1794 * @rdata: The remote port that sent the PRLO request
1795 * @rx_fp: The PRLO request frame
1797 * Locking Note: The rport lock is exected to be held before calling
1800 static void fc_rport_recv_prlo_req(struct fc_rport_priv
*rdata
,
1801 struct fc_frame
*rx_fp
)
1803 struct fc_lport
*lport
= rdata
->local_port
;
1804 struct fc_frame
*fp
;
1806 struct fc_els_prlo prlo
;
1807 struct fc_els_spp spp
;
1809 struct fc_els_spp
*rspp
; /* request service param page */
1810 struct fc_els_spp
*spp
; /* response spp */
1813 struct fc_seq_els_data rjt_data
;
1815 FC_RPORT_DBG(rdata
, "Received PRLO request while in state %s\n",
1816 fc_rport_state(rdata
));
1818 len
= fr_len(rx_fp
) - sizeof(struct fc_frame_header
);
1819 pp
= fc_frame_payload_get(rx_fp
, sizeof(*pp
));
1822 plen
= ntohs(pp
->prlo
.prlo_len
);
1830 fp
= fc_frame_alloc(lport
, len
);
1832 rjt_data
.reason
= ELS_RJT_UNAB
;
1833 rjt_data
.explan
= ELS_EXPL_INSUF_RES
;
1837 pp
= fc_frame_payload_get(fp
, len
);
1840 pp
->prlo
.prlo_cmd
= ELS_LS_ACC
;
1841 pp
->prlo
.prlo_obs
= 0x10;
1842 pp
->prlo
.prlo_len
= htons(len
);
1844 spp
->spp_type
= rspp
->spp_type
;
1845 spp
->spp_type_ext
= rspp
->spp_type_ext
;
1846 spp
->spp_flags
= FC_SPP_RESP_ACK
;
1848 fc_rport_enter_delete(rdata
, RPORT_EV_LOGO
);
1850 fc_fill_reply_hdr(fp
, rx_fp
, FC_RCTL_ELS_REP
, 0);
1851 lport
->tt
.frame_send(lport
, fp
);
1855 rjt_data
.reason
= ELS_RJT_PROT
;
1856 rjt_data
.explan
= ELS_EXPL_INV_LEN
;
1858 lport
->tt
.seq_els_rsp_send(rx_fp
, ELS_LS_RJT
, &rjt_data
);
1860 fc_frame_free(rx_fp
);
1864 * fc_rport_recv_logo_req() - Handler for logout (LOGO) requests
1865 * @lport: The local port that received the LOGO request
1866 * @fp: The LOGO request frame
1868 * Locking Note: The rport lock is exected to be held before calling
1871 static void fc_rport_recv_logo_req(struct fc_lport
*lport
, struct fc_frame
*fp
)
1873 struct fc_rport_priv
*rdata
;
1876 lport
->tt
.seq_els_rsp_send(fp
, ELS_LS_ACC
, NULL
);
1878 sid
= fc_frame_sid(fp
);
1880 mutex_lock(&lport
->disc
.disc_mutex
);
1881 rdata
= lport
->tt
.rport_lookup(lport
, sid
);
1883 mutex_lock(&rdata
->rp_mutex
);
1884 FC_RPORT_DBG(rdata
, "Received LOGO request while in state %s\n",
1885 fc_rport_state(rdata
));
1887 fc_rport_enter_delete(rdata
, RPORT_EV_LOGO
);
1888 mutex_unlock(&rdata
->rp_mutex
);
1890 FC_RPORT_ID_DBG(lport
, sid
,
1891 "Received LOGO from non-logged-in port\n");
1892 mutex_unlock(&lport
->disc
.disc_mutex
);
1897 * fc_rport_flush_queue() - Flush the rport_event_queue
1899 static void fc_rport_flush_queue(void)
1901 flush_workqueue(rport_event_queue
);
1905 * fc_rport_init() - Initialize the remote port layer for a local port
1906 * @lport: The local port to initialize the remote port layer for
1908 int fc_rport_init(struct fc_lport
*lport
)
1910 if (!lport
->tt
.rport_lookup
)
1911 lport
->tt
.rport_lookup
= fc_rport_lookup
;
1913 if (!lport
->tt
.rport_create
)
1914 lport
->tt
.rport_create
= fc_rport_create
;
1916 if (!lport
->tt
.rport_login
)
1917 lport
->tt
.rport_login
= fc_rport_login
;
1919 if (!lport
->tt
.rport_logoff
)
1920 lport
->tt
.rport_logoff
= fc_rport_logoff
;
1922 if (!lport
->tt
.rport_recv_req
)
1923 lport
->tt
.rport_recv_req
= fc_rport_recv_req
;
1925 if (!lport
->tt
.rport_flush_queue
)
1926 lport
->tt
.rport_flush_queue
= fc_rport_flush_queue
;
1928 if (!lport
->tt
.rport_destroy
)
1929 lport
->tt
.rport_destroy
= fc_rport_destroy
;
1933 EXPORT_SYMBOL(fc_rport_init
);
1936 * fc_rport_fcp_prli() - Handle incoming PRLI for the FCP initiator.
1937 * @rdata: remote port private
1938 * @spp_len: service parameter page length
1939 * @rspp: received service parameter page
1940 * @spp: response service parameter page
1942 * Returns the value for the response code to be placed in spp_flags;
1943 * Returns 0 if not an initiator.
1945 static int fc_rport_fcp_prli(struct fc_rport_priv
*rdata
, u32 spp_len
,
1946 const struct fc_els_spp
*rspp
,
1947 struct fc_els_spp
*spp
)
1949 struct fc_lport
*lport
= rdata
->local_port
;
1952 fcp_parm
= ntohl(rspp
->spp_params
);
1953 rdata
->ids
.roles
= FC_RPORT_ROLE_UNKNOWN
;
1954 if (fcp_parm
& FCP_SPPF_INIT_FCN
)
1955 rdata
->ids
.roles
|= FC_RPORT_ROLE_FCP_INITIATOR
;
1956 if (fcp_parm
& FCP_SPPF_TARG_FCN
)
1957 rdata
->ids
.roles
|= FC_RPORT_ROLE_FCP_TARGET
;
1958 if (fcp_parm
& FCP_SPPF_RETRY
)
1959 rdata
->flags
|= FC_RP_FLAGS_RETRY
;
1960 rdata
->supported_classes
= FC_COS_CLASS3
;
1962 if (!(lport
->service_params
& FC_RPORT_ROLE_FCP_INITIATOR
))
1965 spp
->spp_flags
|= rspp
->spp_flags
& FC_SPP_EST_IMG_PAIR
;
1968 * OR in our service parameters with other providers (target), if any.
1970 fcp_parm
= ntohl(spp
->spp_params
);
1971 spp
->spp_params
= htonl(fcp_parm
| lport
->service_params
);
1972 return FC_SPP_RESP_ACK
;
1976 * FC-4 provider ops for FCP initiator.
1978 struct fc4_prov fc_rport_fcp_init
= {
1979 .prli
= fc_rport_fcp_prli
,
1983 * fc_rport_t0_prli() - Handle incoming PRLI parameters for type 0
1984 * @rdata: remote port private
1985 * @spp_len: service parameter page length
1986 * @rspp: received service parameter page
1987 * @spp: response service parameter page
1989 static int fc_rport_t0_prli(struct fc_rport_priv
*rdata
, u32 spp_len
,
1990 const struct fc_els_spp
*rspp
,
1991 struct fc_els_spp
*spp
)
1993 if (rspp
->spp_flags
& FC_SPP_EST_IMG_PAIR
)
1994 return FC_SPP_RESP_INVL
;
1995 return FC_SPP_RESP_ACK
;
1999 * FC-4 provider ops for type 0 service parameters.
2001 * This handles the special case of type 0 which is always successful
2002 * but doesn't do anything otherwise.
2004 struct fc4_prov fc_rport_t0_prov
= {
2005 .prli
= fc_rport_t0_prli
,
2009 * fc_setup_rport() - Initialize the rport_event_queue
2011 int fc_setup_rport(void)
2013 rport_event_queue
= create_singlethread_workqueue("fc_rport_eq");
2014 if (!rport_event_queue
)
2020 * fc_destroy_rport() - Destroy the rport_event_queue
2022 void fc_destroy_rport(void)
2024 destroy_workqueue(rport_event_queue
);
2028 * fc_rport_terminate_io() - Stop all outstanding I/O on a remote port
2029 * @rport: The remote port whose I/O should be terminated
2031 void fc_rport_terminate_io(struct fc_rport
*rport
)
2033 struct fc_rport_libfc_priv
*rpriv
= rport
->dd_data
;
2034 struct fc_lport
*lport
= rpriv
->local_port
;
2036 lport
->tt
.exch_mgr_reset(lport
, 0, rport
->port_id
);
2037 lport
->tt
.exch_mgr_reset(lport
, rport
->port_id
, 0);
2039 EXPORT_SYMBOL(fc_rport_terminate_io
);