blob: cb54115c26cb3bf7033e1e32dbdf0f41a0a1e5f6 [file] [log] [blame]
Robert Love42e9a922008-12-09 15:10:17 -08001/*
2 * Copyright(c) 2007 - 2008 Intel Corporation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
16 *
17 * Maintained at www.Open-FCoE.org
18 */
19
20/*
21 * RPORT GENERAL INFO
22 *
23 * This file contains all processing regarding fc_rports. It contains the
24 * rport state machine and does all rport interaction with the transport class.
25 * There should be no other places in libfc that interact directly with the
26 * transport class in regards to adding and deleting rports.
27 *
28 * fc_rport's represent N_Port's within the fabric.
29 */
30
31/*
32 * RPORT LOCKING
33 *
34 * The rport should never hold the rport mutex and then attempt to acquire
35 * either the lport or disc mutexes. The rport's mutex is considered lesser
36 * than both the lport's mutex and the disc mutex. Refer to fc_lport.c for
37 * more comments on the heirarchy.
38 *
39 * The locking strategy is similar to the lport's strategy. The lock protects
40 * the rport's states and is held and released by the entry points to the rport
41 * block. All _enter_* functions correspond to rport states and expect the rport
42 * mutex to be locked before calling them. This means that rports only handle
43 * one request or response at a time, since they're not critical for the I/O
44 * path this potential over-use of the mutex is acceptable.
45 */
46
47#include <linux/kernel.h>
48#include <linux/spinlock.h>
49#include <linux/interrupt.h>
50#include <linux/rcupdate.h>
51#include <linux/timer.h>
52#include <linux/workqueue.h>
53#include <asm/unaligned.h>
54
55#include <scsi/libfc.h>
56#include <scsi/fc_encode.h>
57
Robert Love42e9a922008-12-09 15:10:17 -080058struct workqueue_struct *rport_event_queue;
59
Joe Eykholt9fb9d322009-08-25 14:00:50 -070060static void fc_rport_enter_plogi(struct fc_rport_priv *);
61static void fc_rport_enter_prli(struct fc_rport_priv *);
62static void fc_rport_enter_rtv(struct fc_rport_priv *);
63static void fc_rport_enter_ready(struct fc_rport_priv *);
64static void fc_rport_enter_logo(struct fc_rport_priv *);
Robert Love42e9a922008-12-09 15:10:17 -080065
Joe Eykholt9fb9d322009-08-25 14:00:50 -070066static void fc_rport_recv_plogi_req(struct fc_rport_priv *,
Robert Love42e9a922008-12-09 15:10:17 -080067 struct fc_seq *, struct fc_frame *);
Joe Eykholt9fb9d322009-08-25 14:00:50 -070068static void fc_rport_recv_prli_req(struct fc_rport_priv *,
Robert Love42e9a922008-12-09 15:10:17 -080069 struct fc_seq *, struct fc_frame *);
Joe Eykholt9fb9d322009-08-25 14:00:50 -070070static void fc_rport_recv_prlo_req(struct fc_rport_priv *,
Robert Love42e9a922008-12-09 15:10:17 -080071 struct fc_seq *, struct fc_frame *);
Joe Eykholt9fb9d322009-08-25 14:00:50 -070072static void fc_rport_recv_logo_req(struct fc_rport_priv *,
Robert Love42e9a922008-12-09 15:10:17 -080073 struct fc_seq *, struct fc_frame *);
74static void fc_rport_timeout(struct work_struct *);
Joe Eykholt9fb9d322009-08-25 14:00:50 -070075static void fc_rport_error(struct fc_rport_priv *, struct fc_frame *);
76static void fc_rport_error_retry(struct fc_rport_priv *, struct fc_frame *);
Robert Love42e9a922008-12-09 15:10:17 -080077static void fc_rport_work(struct work_struct *);
78
79static const char *fc_rport_state_names[] = {
Robert Love42e9a922008-12-09 15:10:17 -080080 [RPORT_ST_INIT] = "Init",
81 [RPORT_ST_PLOGI] = "PLOGI",
82 [RPORT_ST_PRLI] = "PRLI",
83 [RPORT_ST_RTV] = "RTV",
84 [RPORT_ST_READY] = "Ready",
85 [RPORT_ST_LOGO] = "LOGO",
Joe Eykholt14194052009-07-29 17:04:43 -070086 [RPORT_ST_DELETE] = "Delete",
Robert Love42e9a922008-12-09 15:10:17 -080087};
88
Joe Eykholt9e9d0452009-08-25 14:01:18 -070089/**
Joe Eykholt8025b5d2009-08-25 14:02:06 -070090 * fc_rport_lookup() - lookup a remote port by port_id
91 * @lport: Fibre Channel host port instance
92 * @port_id: remote port port_id to match
93 */
94static struct fc_rport_priv *fc_rport_lookup(const struct fc_lport *lport,
95 u32 port_id)
96{
97 struct fc_rport_priv *rdata;
98
99 list_for_each_entry(rdata, &lport->disc.rports, peers)
100 if (rdata->ids.port_id == port_id &&
101 rdata->rp_state != RPORT_ST_DELETE)
102 return rdata;
103 return NULL;
104}
105
106/**
Robert Love9737e6a2009-08-25 14:02:59 -0700107 * fc_rport_create() - Create a new remote port
108 * @lport: The local port that the new remote port is for
109 * @port_id: The port ID for the new remote port
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700110 *
Joe Eykholt48f00902009-08-25 14:01:50 -0700111 * Locking note: must be called with the disc_mutex held.
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700112 */
113static struct fc_rport_priv *fc_rport_create(struct fc_lport *lport,
Robert Love9737e6a2009-08-25 14:02:59 -0700114 u32 port_id)
Robert Love42e9a922008-12-09 15:10:17 -0800115{
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700116 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800117
Robert Love9737e6a2009-08-25 14:02:59 -0700118 rdata = lport->tt.rport_lookup(lport, port_id);
Joe Eykholt19f97e32009-08-25 14:01:55 -0700119 if (rdata)
120 return rdata;
121
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700122 rdata = kzalloc(sizeof(*rdata), GFP_KERNEL);
123 if (!rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800124 return NULL;
125
Robert Love9737e6a2009-08-25 14:02:59 -0700126 rdata->ids.node_name = -1;
127 rdata->ids.port_name = -1;
128 rdata->ids.port_id = port_id;
129 rdata->ids.roles = FC_RPORT_ROLE_UNKNOWN;
130
Joe Eykholtf211fa52009-08-25 14:01:01 -0700131 kref_init(&rdata->kref);
Robert Love42e9a922008-12-09 15:10:17 -0800132 mutex_init(&rdata->rp_mutex);
Joe Eykholt795d86f2009-08-25 14:00:39 -0700133 rdata->local_port = lport;
Robert Love42e9a922008-12-09 15:10:17 -0800134 rdata->rp_state = RPORT_ST_INIT;
135 rdata->event = RPORT_EV_NONE;
136 rdata->flags = FC_RP_FLAGS_REC_SUPPORTED;
Joe Eykholt795d86f2009-08-25 14:00:39 -0700137 rdata->e_d_tov = lport->e_d_tov;
138 rdata->r_a_tov = lport->r_a_tov;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700139 rdata->maxframe_size = FC_MIN_MAX_PAYLOAD;
Robert Love42e9a922008-12-09 15:10:17 -0800140 INIT_DELAYED_WORK(&rdata->retry_work, fc_rport_timeout);
141 INIT_WORK(&rdata->event_work, fc_rport_work);
Robert Love9737e6a2009-08-25 14:02:59 -0700142 if (port_id != FC_FID_DIR_SERV)
Joe Eykholt48f00902009-08-25 14:01:50 -0700143 list_add(&rdata->peers, &lport->disc.rports);
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700144 return rdata;
Robert Love42e9a922008-12-09 15:10:17 -0800145}
146
147/**
Joe Eykholtf211fa52009-08-25 14:01:01 -0700148 * fc_rport_destroy() - free a remote port after last reference is released.
149 * @kref: pointer to kref inside struct fc_rport_priv
150 */
151static void fc_rport_destroy(struct kref *kref)
152{
153 struct fc_rport_priv *rdata;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700154
155 rdata = container_of(kref, struct fc_rport_priv, kref);
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700156 kfree(rdata);
Joe Eykholtf211fa52009-08-25 14:01:01 -0700157}
158
159/**
Robert Love34f42a02009-02-27 10:55:45 -0800160 * fc_rport_state() - return a string for the state the rport is in
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700161 * @rdata: remote port private data
Robert Love42e9a922008-12-09 15:10:17 -0800162 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700163static const char *fc_rport_state(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800164{
165 const char *cp;
Robert Love42e9a922008-12-09 15:10:17 -0800166
167 cp = fc_rport_state_names[rdata->rp_state];
168 if (!cp)
169 cp = "Unknown";
170 return cp;
171}
172
173/**
Robert Love34f42a02009-02-27 10:55:45 -0800174 * fc_set_rport_loss_tmo() - Set the remote port loss timeout in seconds.
Robert Love42e9a922008-12-09 15:10:17 -0800175 * @rport: Pointer to Fibre Channel remote port structure
176 * @timeout: timeout in seconds
177 */
178void fc_set_rport_loss_tmo(struct fc_rport *rport, u32 timeout)
179{
180 if (timeout)
181 rport->dev_loss_tmo = timeout + 5;
182 else
183 rport->dev_loss_tmo = 30;
184}
185EXPORT_SYMBOL(fc_set_rport_loss_tmo);
186
187/**
Robert Love34f42a02009-02-27 10:55:45 -0800188 * fc_plogi_get_maxframe() - Get max payload from the common service parameters
Robert Love42e9a922008-12-09 15:10:17 -0800189 * @flp: FLOGI payload structure
190 * @maxval: upper limit, may be less than what is in the service parameters
191 */
Robert Loveb2ab99c2009-02-27 10:55:50 -0800192static unsigned int fc_plogi_get_maxframe(struct fc_els_flogi *flp,
193 unsigned int maxval)
Robert Love42e9a922008-12-09 15:10:17 -0800194{
195 unsigned int mfs;
196
197 /*
198 * Get max payload from the common service parameters and the
199 * class 3 receive data field size.
200 */
201 mfs = ntohs(flp->fl_csp.sp_bb_data) & FC_SP_BB_DATA_MASK;
202 if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval)
203 maxval = mfs;
204 mfs = ntohs(flp->fl_cssp[3 - 1].cp_rdfs);
205 if (mfs >= FC_SP_MIN_MAX_PAYLOAD && mfs < maxval)
206 maxval = mfs;
207 return maxval;
208}
209
210/**
Robert Love34f42a02009-02-27 10:55:45 -0800211 * fc_rport_state_enter() - Change the rport's state
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700212 * @rdata: The rport whose state should change
Robert Love42e9a922008-12-09 15:10:17 -0800213 * @new: The new state of the rport
214 *
215 * Locking Note: Called with the rport lock held
216 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700217static void fc_rport_state_enter(struct fc_rport_priv *rdata,
Robert Love42e9a922008-12-09 15:10:17 -0800218 enum fc_rport_state new)
219{
Robert Love42e9a922008-12-09 15:10:17 -0800220 if (rdata->rp_state != new)
221 rdata->retries = 0;
222 rdata->rp_state = new;
223}
224
225static void fc_rport_work(struct work_struct *work)
226{
Abhijeet Joglekar571f8242009-02-27 10:54:41 -0800227 u32 port_id;
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700228 struct fc_rport_priv *rdata =
229 container_of(work, struct fc_rport_priv, event_work);
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700230 struct fc_rport_libfc_priv *rp;
Robert Love42e9a922008-12-09 15:10:17 -0800231 enum fc_rport_event event;
Robert Love42e9a922008-12-09 15:10:17 -0800232 struct fc_lport *lport = rdata->local_port;
233 struct fc_rport_operations *rport_ops;
Joe Eykholt629f4422009-08-25 14:01:06 -0700234 struct fc_rport_identifiers ids;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700235 struct fc_rport *rport;
Robert Love42e9a922008-12-09 15:10:17 -0800236
237 mutex_lock(&rdata->rp_mutex);
238 event = rdata->event;
239 rport_ops = rdata->ops;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700240 rport = rdata->rport;
Robert Love42e9a922008-12-09 15:10:17 -0800241
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700242 FC_RPORT_DBG(rdata, "work event %u\n", event);
243
Joe Eykholt629f4422009-08-25 14:01:06 -0700244 switch (event) {
Joe Eykholt4c0f62b2009-08-25 14:01:12 -0700245 case RPORT_EV_READY:
Joe Eykholtf211fa52009-08-25 14:01:01 -0700246 ids = rdata->ids;
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700247 rdata->event = RPORT_EV_NONE;
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700248 kref_get(&rdata->kref);
Robert Love42e9a922008-12-09 15:10:17 -0800249 mutex_unlock(&rdata->rp_mutex);
250
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700251 if (!rport)
252 rport = fc_remote_port_add(lport->host, 0, &ids);
253 if (!rport) {
254 FC_RPORT_DBG(rdata, "Failed to add the rport\n");
255 lport->tt.rport_logoff(rdata);
256 kref_put(&rdata->kref, lport->tt.rport_destroy);
257 return;
Robert Love42e9a922008-12-09 15:10:17 -0800258 }
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700259 mutex_lock(&rdata->rp_mutex);
260 if (rdata->rport)
261 FC_RPORT_DBG(rdata, "rport already allocated\n");
262 rdata->rport = rport;
263 rport->maxframe_size = rdata->maxframe_size;
264 rport->supported_classes = rdata->supported_classes;
265
266 rp = rport->dd_data;
267 rp->local_port = lport;
268 rp->rp_state = rdata->rp_state;
269 rp->flags = rdata->flags;
270 rp->e_d_tov = rdata->e_d_tov;
271 rp->r_a_tov = rdata->r_a_tov;
272 mutex_unlock(&rdata->rp_mutex);
273
Joe Eykholt83455922009-08-25 14:02:01 -0700274 if (rport_ops && rport_ops->event_callback) {
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700275 FC_RPORT_DBG(rdata, "callback ev %d\n", event);
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700276 rport_ops->event_callback(lport, rdata, event);
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700277 }
278 kref_put(&rdata->kref, lport->tt.rport_destroy);
Joe Eykholt629f4422009-08-25 14:01:06 -0700279 break;
280
281 case RPORT_EV_FAILED:
282 case RPORT_EV_LOGO:
283 case RPORT_EV_STOP:
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700284 port_id = rdata->ids.port_id;
Robert Love42e9a922008-12-09 15:10:17 -0800285 mutex_unlock(&rdata->rp_mutex);
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700286
Joe Eykholt48f00902009-08-25 14:01:50 -0700287 if (port_id != FC_FID_DIR_SERV) {
288 mutex_lock(&lport->disc.disc_mutex);
289 list_del(&rdata->peers);
290 mutex_unlock(&lport->disc.disc_mutex);
291 }
292
Joe Eykholt83455922009-08-25 14:02:01 -0700293 if (rport_ops && rport_ops->event_callback) {
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700294 FC_RPORT_DBG(rdata, "callback ev %d\n", event);
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700295 rport_ops->event_callback(lport, rdata, event);
Abhijeet Joglekar571f8242009-02-27 10:54:41 -0800296 }
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700297 cancel_delayed_work_sync(&rdata->retry_work);
298
299 /*
300 * Reset any outstanding exchanges before freeing rport.
301 */
302 lport->tt.exch_mgr_reset(lport, 0, port_id);
303 lport->tt.exch_mgr_reset(lport, port_id, 0);
304
305 if (rport) {
306 rp = rport->dd_data;
307 rp->rp_state = RPORT_ST_DELETE;
308 mutex_lock(&rdata->rp_mutex);
309 rdata->rport = NULL;
310 mutex_unlock(&rdata->rp_mutex);
311 fc_remote_port_delete(rport);
312 }
313 kref_put(&rdata->kref, lport->tt.rport_destroy);
Joe Eykholt629f4422009-08-25 14:01:06 -0700314 break;
315
316 default:
Robert Love42e9a922008-12-09 15:10:17 -0800317 mutex_unlock(&rdata->rp_mutex);
Joe Eykholt629f4422009-08-25 14:01:06 -0700318 break;
319 }
Robert Love42e9a922008-12-09 15:10:17 -0800320}
321
322/**
Robert Love34f42a02009-02-27 10:55:45 -0800323 * fc_rport_login() - Start the remote port login state machine
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700324 * @rdata: private remote port
Robert Love42e9a922008-12-09 15:10:17 -0800325 *
326 * Locking Note: Called without the rport lock held. This
327 * function will hold the rport lock, call an _enter_*
328 * function and then unlock the rport.
329 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700330int fc_rport_login(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800331{
Robert Love42e9a922008-12-09 15:10:17 -0800332 mutex_lock(&rdata->rp_mutex);
333
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700334 FC_RPORT_DBG(rdata, "Login to port\n");
Robert Love42e9a922008-12-09 15:10:17 -0800335
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700336 fc_rport_enter_plogi(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800337
338 mutex_unlock(&rdata->rp_mutex);
339
340 return 0;
341}
342
343/**
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700344 * fc_rport_enter_delete() - schedule a remote port to be deleted.
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700345 * @rdata: private remote port
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700346 * @event: event to report as the reason for deletion
347 *
348 * Locking Note: Called with the rport lock held.
349 *
350 * Allow state change into DELETE only once.
351 *
352 * Call queue_work only if there's no event already pending.
353 * Set the new event so that the old pending event will not occur.
354 * Since we have the mutex, even if fc_rport_work() is already started,
355 * it'll see the new event.
356 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700357static void fc_rport_enter_delete(struct fc_rport_priv *rdata,
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700358 enum fc_rport_event event)
359{
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700360 if (rdata->rp_state == RPORT_ST_DELETE)
361 return;
362
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700363 FC_RPORT_DBG(rdata, "Delete port\n");
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700364
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700365 fc_rport_state_enter(rdata, RPORT_ST_DELETE);
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700366
367 if (rdata->event == RPORT_EV_NONE)
368 queue_work(rport_event_queue, &rdata->event_work);
369 rdata->event = event;
370}
371
372/**
Robert Love34f42a02009-02-27 10:55:45 -0800373 * fc_rport_logoff() - Logoff and remove an rport
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700374 * @rdata: private remote port
Robert Love42e9a922008-12-09 15:10:17 -0800375 *
376 * Locking Note: Called without the rport lock held. This
377 * function will hold the rport lock, call an _enter_*
378 * function and then unlock the rport.
379 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700380int fc_rport_logoff(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800381{
Robert Love42e9a922008-12-09 15:10:17 -0800382 mutex_lock(&rdata->rp_mutex);
383
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700384 FC_RPORT_DBG(rdata, "Remove port\n");
Robert Love42e9a922008-12-09 15:10:17 -0800385
Joe Eykholt14194052009-07-29 17:04:43 -0700386 if (rdata->rp_state == RPORT_ST_DELETE) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700387 FC_RPORT_DBG(rdata, "Port in Delete state, not removing\n");
Abhijeet Joglekarb4c6f542009-04-21 16:27:04 -0700388 mutex_unlock(&rdata->rp_mutex);
389 goto out;
390 }
391
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700392 fc_rport_enter_logo(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800393
394 /*
Joe Eykholt14194052009-07-29 17:04:43 -0700395 * Change the state to Delete so that we discard
Robert Love42e9a922008-12-09 15:10:17 -0800396 * the response.
397 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700398 fc_rport_enter_delete(rdata, RPORT_EV_STOP);
Robert Love42e9a922008-12-09 15:10:17 -0800399 mutex_unlock(&rdata->rp_mutex);
400
Abhijeet Joglekarb4c6f542009-04-21 16:27:04 -0700401out:
Robert Love42e9a922008-12-09 15:10:17 -0800402 return 0;
403}
404
405/**
Robert Love34f42a02009-02-27 10:55:45 -0800406 * fc_rport_enter_ready() - The rport is ready
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700407 * @rdata: private remote port
Robert Love42e9a922008-12-09 15:10:17 -0800408 *
409 * Locking Note: The rport lock is expected to be held before calling
410 * this routine.
411 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700412static void fc_rport_enter_ready(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800413{
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700414 fc_rport_state_enter(rdata, RPORT_ST_READY);
Robert Love42e9a922008-12-09 15:10:17 -0800415
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700416 FC_RPORT_DBG(rdata, "Port is Ready\n");
Robert Love42e9a922008-12-09 15:10:17 -0800417
Joe Eykholt5f7ea3b2009-07-29 17:04:49 -0700418 if (rdata->event == RPORT_EV_NONE)
419 queue_work(rport_event_queue, &rdata->event_work);
Joe Eykholt4c0f62b2009-08-25 14:01:12 -0700420 rdata->event = RPORT_EV_READY;
Robert Love42e9a922008-12-09 15:10:17 -0800421}
422
423/**
Robert Love34f42a02009-02-27 10:55:45 -0800424 * fc_rport_timeout() - Handler for the retry_work timer.
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700425 * @work: The work struct of the fc_rport_priv
Robert Love42e9a922008-12-09 15:10:17 -0800426 *
427 * Locking Note: Called without the rport lock held. This
428 * function will hold the rport lock, call an _enter_*
429 * function and then unlock the rport.
430 */
431static void fc_rport_timeout(struct work_struct *work)
432{
Joe Eykholtab28f1f2009-08-25 14:00:34 -0700433 struct fc_rport_priv *rdata =
434 container_of(work, struct fc_rport_priv, retry_work.work);
Robert Love42e9a922008-12-09 15:10:17 -0800435
436 mutex_lock(&rdata->rp_mutex);
437
438 switch (rdata->rp_state) {
439 case RPORT_ST_PLOGI:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700440 fc_rport_enter_plogi(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800441 break;
442 case RPORT_ST_PRLI:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700443 fc_rport_enter_prli(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800444 break;
445 case RPORT_ST_RTV:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700446 fc_rport_enter_rtv(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800447 break;
448 case RPORT_ST_LOGO:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700449 fc_rport_enter_logo(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800450 break;
451 case RPORT_ST_READY:
452 case RPORT_ST_INIT:
Joe Eykholt14194052009-07-29 17:04:43 -0700453 case RPORT_ST_DELETE:
Robert Love42e9a922008-12-09 15:10:17 -0800454 break;
455 }
456
457 mutex_unlock(&rdata->rp_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800458}
459
460/**
Robert Love34f42a02009-02-27 10:55:45 -0800461 * fc_rport_error() - Error handler, called once retries have been exhausted
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700462 * @rdata: private remote port
Robert Love42e9a922008-12-09 15:10:17 -0800463 * @fp: The frame pointer
464 *
Robert Love42e9a922008-12-09 15:10:17 -0800465 * Locking Note: The rport lock is expected to be held before
466 * calling this routine
467 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700468static void fc_rport_error(struct fc_rport_priv *rdata, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800469{
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700470 FC_RPORT_DBG(rdata, "Error %ld in state %s, retries %d\n",
Joe Eykholtcdbe6df2009-08-25 14:01:39 -0700471 IS_ERR(fp) ? -PTR_ERR(fp) : 0,
472 fc_rport_state(rdata), rdata->retries);
Robert Love42e9a922008-12-09 15:10:17 -0800473
Chris Leech6755db12009-02-27 10:55:02 -0800474 switch (rdata->rp_state) {
475 case RPORT_ST_PLOGI:
476 case RPORT_ST_PRLI:
477 case RPORT_ST_LOGO:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700478 fc_rport_enter_delete(rdata, RPORT_EV_FAILED);
Chris Leech6755db12009-02-27 10:55:02 -0800479 break;
480 case RPORT_ST_RTV:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700481 fc_rport_enter_ready(rdata);
Chris Leech6755db12009-02-27 10:55:02 -0800482 break;
Joe Eykholt14194052009-07-29 17:04:43 -0700483 case RPORT_ST_DELETE:
Chris Leech6755db12009-02-27 10:55:02 -0800484 case RPORT_ST_READY:
485 case RPORT_ST_INIT:
486 break;
Robert Love42e9a922008-12-09 15:10:17 -0800487 }
488}
489
490/**
Robert Love34f42a02009-02-27 10:55:45 -0800491 * fc_rport_error_retry() - Error handler when retries are desired
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700492 * @rdata: private remote port data
Chris Leech6755db12009-02-27 10:55:02 -0800493 * @fp: The frame pointer
494 *
495 * If the error was an exchange timeout retry immediately,
496 * otherwise wait for E_D_TOV.
497 *
498 * Locking Note: The rport lock is expected to be held before
499 * calling this routine
500 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700501static void fc_rport_error_retry(struct fc_rport_priv *rdata,
502 struct fc_frame *fp)
Chris Leech6755db12009-02-27 10:55:02 -0800503{
Chris Leech6755db12009-02-27 10:55:02 -0800504 unsigned long delay = FC_DEF_E_D_TOV;
505
506 /* make sure this isn't an FC_EX_CLOSED error, never retry those */
507 if (PTR_ERR(fp) == -FC_EX_CLOSED)
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700508 return fc_rport_error(rdata, fp);
Chris Leech6755db12009-02-27 10:55:02 -0800509
Abhijeet Joglekara3666952009-05-01 10:01:26 -0700510 if (rdata->retries < rdata->local_port->max_rport_retry_count) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700511 FC_RPORT_DBG(rdata, "Error %ld in state %s, retrying\n",
512 PTR_ERR(fp), fc_rport_state(rdata));
Chris Leech6755db12009-02-27 10:55:02 -0800513 rdata->retries++;
514 /* no additional delay on exchange timeouts */
515 if (PTR_ERR(fp) == -FC_EX_TIMEOUT)
516 delay = 0;
Chris Leech6755db12009-02-27 10:55:02 -0800517 schedule_delayed_work(&rdata->retry_work, delay);
518 return;
519 }
520
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700521 return fc_rport_error(rdata, fp);
Chris Leech6755db12009-02-27 10:55:02 -0800522}
523
524/**
Robert Love34f42a02009-02-27 10:55:45 -0800525 * fc_rport_plogi_recv_resp() - Handle incoming ELS PLOGI response
Robert Love42e9a922008-12-09 15:10:17 -0800526 * @sp: current sequence in the PLOGI exchange
527 * @fp: response frame
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700528 * @rdata_arg: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800529 *
530 * Locking Note: This function will be called without the rport lock
531 * held, but it will lock, call an _enter_* function or fc_rport_error
532 * and then unlock the rport.
533 */
534static void fc_rport_plogi_resp(struct fc_seq *sp, struct fc_frame *fp,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700535 void *rdata_arg)
Robert Love42e9a922008-12-09 15:10:17 -0800536{
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700537 struct fc_rport_priv *rdata = rdata_arg;
Robert Love42e9a922008-12-09 15:10:17 -0800538 struct fc_lport *lport = rdata->local_port;
Robert Lovea29e7642009-04-21 16:27:41 -0700539 struct fc_els_flogi *plp = NULL;
Robert Love42e9a922008-12-09 15:10:17 -0800540 unsigned int tov;
541 u16 csp_seq;
542 u16 cssp_seq;
543 u8 op;
544
545 mutex_lock(&rdata->rp_mutex);
546
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700547 FC_RPORT_DBG(rdata, "Received a PLOGI response\n");
Robert Love42e9a922008-12-09 15:10:17 -0800548
549 if (rdata->rp_state != RPORT_ST_PLOGI) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700550 FC_RPORT_DBG(rdata, "Received a PLOGI response, but in state "
551 "%s\n", fc_rport_state(rdata));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700552 if (IS_ERR(fp))
553 goto err;
Robert Love42e9a922008-12-09 15:10:17 -0800554 goto out;
555 }
556
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700557 if (IS_ERR(fp)) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700558 fc_rport_error_retry(rdata, fp);
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700559 goto err;
560 }
561
Robert Love42e9a922008-12-09 15:10:17 -0800562 op = fc_frame_payload_op(fp);
563 if (op == ELS_LS_ACC &&
564 (plp = fc_frame_payload_get(fp, sizeof(*plp))) != NULL) {
Joe Eykholtf211fa52009-08-25 14:01:01 -0700565 rdata->ids.port_name = get_unaligned_be64(&plp->fl_wwpn);
566 rdata->ids.node_name = get_unaligned_be64(&plp->fl_wwnn);
Robert Love42e9a922008-12-09 15:10:17 -0800567
568 tov = ntohl(plp->fl_csp.sp_e_d_tov);
569 if (ntohs(plp->fl_csp.sp_features) & FC_SP_FT_EDTR)
570 tov /= 1000;
571 if (tov > rdata->e_d_tov)
572 rdata->e_d_tov = tov;
573 csp_seq = ntohs(plp->fl_csp.sp_tot_seq);
574 cssp_seq = ntohs(plp->fl_cssp[3 - 1].cp_con_seq);
575 if (cssp_seq < csp_seq)
576 csp_seq = cssp_seq;
577 rdata->max_seq = csp_seq;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700578 rdata->maxframe_size = fc_plogi_get_maxframe(plp, lport->mfs);
Robert Love42e9a922008-12-09 15:10:17 -0800579
580 /*
581 * If the rport is one of the well known addresses
582 * we skip PRLI and RTV and go straight to READY.
583 */
Joe Eykholtf211fa52009-08-25 14:01:01 -0700584 if (rdata->ids.port_id >= FC_FID_DOM_MGR)
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700585 fc_rport_enter_ready(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800586 else
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700587 fc_rport_enter_prli(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800588 } else
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700589 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800590
591out:
592 fc_frame_free(fp);
593err:
594 mutex_unlock(&rdata->rp_mutex);
Joe Eykholtf211fa52009-08-25 14:01:01 -0700595 kref_put(&rdata->kref, rdata->local_port->tt.rport_destroy);
Robert Love42e9a922008-12-09 15:10:17 -0800596}
597
598/**
Robert Love34f42a02009-02-27 10:55:45 -0800599 * fc_rport_enter_plogi() - Send Port Login (PLOGI) request to peer
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700600 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800601 *
602 * Locking Note: The rport lock is expected to be held before calling
603 * this routine.
604 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700605static void fc_rport_enter_plogi(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800606{
Robert Love42e9a922008-12-09 15:10:17 -0800607 struct fc_lport *lport = rdata->local_port;
608 struct fc_frame *fp;
609
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700610 FC_RPORT_DBG(rdata, "Port entered PLOGI state from %s state\n",
611 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -0800612
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700613 fc_rport_state_enter(rdata, RPORT_ST_PLOGI);
Robert Love42e9a922008-12-09 15:10:17 -0800614
Joe Eykholtf211fa52009-08-25 14:01:01 -0700615 rdata->maxframe_size = FC_MIN_MAX_PAYLOAD;
Robert Love42e9a922008-12-09 15:10:17 -0800616 fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
617 if (!fp) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700618 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800619 return;
620 }
621 rdata->e_d_tov = lport->e_d_tov;
622
Joe Eykholtf211fa52009-08-25 14:01:01 -0700623 if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_PLOGI,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700624 fc_rport_plogi_resp, rdata, lport->e_d_tov))
625 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800626 else
Joe Eykholtf211fa52009-08-25 14:01:01 -0700627 kref_get(&rdata->kref);
Robert Love42e9a922008-12-09 15:10:17 -0800628}
629
630/**
Robert Love34f42a02009-02-27 10:55:45 -0800631 * fc_rport_prli_resp() - Process Login (PRLI) response handler
Robert Love42e9a922008-12-09 15:10:17 -0800632 * @sp: current sequence in the PRLI exchange
633 * @fp: response frame
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700634 * @rdata_arg: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800635 *
636 * Locking Note: This function will be called without the rport lock
637 * held, but it will lock, call an _enter_* function or fc_rport_error
638 * and then unlock the rport.
639 */
640static void fc_rport_prli_resp(struct fc_seq *sp, struct fc_frame *fp,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700641 void *rdata_arg)
Robert Love42e9a922008-12-09 15:10:17 -0800642{
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700643 struct fc_rport_priv *rdata = rdata_arg;
Robert Love42e9a922008-12-09 15:10:17 -0800644 struct {
645 struct fc_els_prli prli;
646 struct fc_els_spp spp;
647 } *pp;
648 u32 roles = FC_RPORT_ROLE_UNKNOWN;
649 u32 fcp_parm = 0;
650 u8 op;
651
652 mutex_lock(&rdata->rp_mutex);
653
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700654 FC_RPORT_DBG(rdata, "Received a PRLI response\n");
Robert Love42e9a922008-12-09 15:10:17 -0800655
656 if (rdata->rp_state != RPORT_ST_PRLI) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700657 FC_RPORT_DBG(rdata, "Received a PRLI response, but in state "
658 "%s\n", fc_rport_state(rdata));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700659 if (IS_ERR(fp))
660 goto err;
Robert Love42e9a922008-12-09 15:10:17 -0800661 goto out;
662 }
663
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700664 if (IS_ERR(fp)) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700665 fc_rport_error_retry(rdata, fp);
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700666 goto err;
667 }
668
Robert Love6bd054c2009-08-25 14:03:04 -0700669 /* reinitialize remote port roles */
670 rdata->ids.roles = FC_RPORT_ROLE_UNKNOWN;
671
Robert Love42e9a922008-12-09 15:10:17 -0800672 op = fc_frame_payload_op(fp);
673 if (op == ELS_LS_ACC) {
674 pp = fc_frame_payload_get(fp, sizeof(*pp));
675 if (pp && pp->prli.prli_spp_len >= sizeof(pp->spp)) {
676 fcp_parm = ntohl(pp->spp.spp_params);
677 if (fcp_parm & FCP_SPPF_RETRY)
678 rdata->flags |= FC_RP_FLAGS_RETRY;
679 }
680
Joe Eykholtf211fa52009-08-25 14:01:01 -0700681 rdata->supported_classes = FC_COS_CLASS3;
Robert Love42e9a922008-12-09 15:10:17 -0800682 if (fcp_parm & FCP_SPPF_INIT_FCN)
683 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
684 if (fcp_parm & FCP_SPPF_TARG_FCN)
685 roles |= FC_RPORT_ROLE_FCP_TARGET;
686
Joe Eykholtf211fa52009-08-25 14:01:01 -0700687 rdata->ids.roles = roles;
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700688 fc_rport_enter_rtv(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800689
690 } else {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700691 FC_RPORT_DBG(rdata, "Bad ELS response for PRLI command\n");
692 fc_rport_enter_delete(rdata, RPORT_EV_FAILED);
Robert Love42e9a922008-12-09 15:10:17 -0800693 }
694
695out:
696 fc_frame_free(fp);
697err:
698 mutex_unlock(&rdata->rp_mutex);
Joe Eykholtf211fa52009-08-25 14:01:01 -0700699 kref_put(&rdata->kref, rdata->local_port->tt.rport_destroy);
Robert Love42e9a922008-12-09 15:10:17 -0800700}
701
702/**
Robert Love34f42a02009-02-27 10:55:45 -0800703 * fc_rport_logo_resp() - Logout (LOGO) response handler
Robert Love42e9a922008-12-09 15:10:17 -0800704 * @sp: current sequence in the LOGO exchange
705 * @fp: response frame
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700706 * @rdata_arg: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800707 *
708 * Locking Note: This function will be called without the rport lock
709 * held, but it will lock, call an _enter_* function or fc_rport_error
710 * and then unlock the rport.
711 */
712static void fc_rport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700713 void *rdata_arg)
Robert Love42e9a922008-12-09 15:10:17 -0800714{
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700715 struct fc_rport_priv *rdata = rdata_arg;
Robert Love42e9a922008-12-09 15:10:17 -0800716 u8 op;
717
718 mutex_lock(&rdata->rp_mutex);
719
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700720 FC_RPORT_DBG(rdata, "Received a LOGO response\n");
Robert Love42e9a922008-12-09 15:10:17 -0800721
Robert Love42e9a922008-12-09 15:10:17 -0800722 if (rdata->rp_state != RPORT_ST_LOGO) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700723 FC_RPORT_DBG(rdata, "Received a LOGO response, but in state "
724 "%s\n", fc_rport_state(rdata));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700725 if (IS_ERR(fp))
726 goto err;
Robert Love42e9a922008-12-09 15:10:17 -0800727 goto out;
728 }
729
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700730 if (IS_ERR(fp)) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700731 fc_rport_error_retry(rdata, fp);
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700732 goto err;
733 }
734
Robert Love42e9a922008-12-09 15:10:17 -0800735 op = fc_frame_payload_op(fp);
736 if (op == ELS_LS_ACC) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700737 fc_rport_enter_rtv(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800738 } else {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700739 FC_RPORT_DBG(rdata, "Bad ELS response for LOGO command\n");
740 fc_rport_enter_delete(rdata, RPORT_EV_LOGO);
Robert Love42e9a922008-12-09 15:10:17 -0800741 }
742
743out:
744 fc_frame_free(fp);
745err:
746 mutex_unlock(&rdata->rp_mutex);
Joe Eykholtf211fa52009-08-25 14:01:01 -0700747 kref_put(&rdata->kref, rdata->local_port->tt.rport_destroy);
Robert Love42e9a922008-12-09 15:10:17 -0800748}
749
750/**
Robert Love34f42a02009-02-27 10:55:45 -0800751 * fc_rport_enter_prli() - Send Process Login (PRLI) request to peer
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700752 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800753 *
754 * Locking Note: The rport lock is expected to be held before calling
755 * this routine.
756 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700757static void fc_rport_enter_prli(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800758{
Robert Love42e9a922008-12-09 15:10:17 -0800759 struct fc_lport *lport = rdata->local_port;
760 struct {
761 struct fc_els_prli prli;
762 struct fc_els_spp spp;
763 } *pp;
764 struct fc_frame *fp;
765
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700766 FC_RPORT_DBG(rdata, "Port entered PRLI state from %s state\n",
767 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -0800768
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700769 fc_rport_state_enter(rdata, RPORT_ST_PRLI);
Robert Love42e9a922008-12-09 15:10:17 -0800770
771 fp = fc_frame_alloc(lport, sizeof(*pp));
772 if (!fp) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700773 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800774 return;
775 }
776
Joe Eykholtf211fa52009-08-25 14:01:01 -0700777 if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_PRLI,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700778 fc_rport_prli_resp, rdata, lport->e_d_tov))
779 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800780 else
Joe Eykholtf211fa52009-08-25 14:01:01 -0700781 kref_get(&rdata->kref);
Robert Love42e9a922008-12-09 15:10:17 -0800782}
783
784/**
Robert Love34f42a02009-02-27 10:55:45 -0800785 * fc_rport_els_rtv_resp() - Request Timeout Value response handler
Robert Love42e9a922008-12-09 15:10:17 -0800786 * @sp: current sequence in the RTV exchange
787 * @fp: response frame
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700788 * @rdata_arg: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800789 *
790 * Many targets don't seem to support this.
791 *
792 * Locking Note: This function will be called without the rport lock
793 * held, but it will lock, call an _enter_* function or fc_rport_error
794 * and then unlock the rport.
795 */
796static void fc_rport_rtv_resp(struct fc_seq *sp, struct fc_frame *fp,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700797 void *rdata_arg)
Robert Love42e9a922008-12-09 15:10:17 -0800798{
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700799 struct fc_rport_priv *rdata = rdata_arg;
Robert Love42e9a922008-12-09 15:10:17 -0800800 u8 op;
801
802 mutex_lock(&rdata->rp_mutex);
803
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700804 FC_RPORT_DBG(rdata, "Received a RTV response\n");
Robert Love42e9a922008-12-09 15:10:17 -0800805
806 if (rdata->rp_state != RPORT_ST_RTV) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700807 FC_RPORT_DBG(rdata, "Received a RTV response, but in state "
808 "%s\n", fc_rport_state(rdata));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700809 if (IS_ERR(fp))
810 goto err;
Robert Love42e9a922008-12-09 15:10:17 -0800811 goto out;
812 }
813
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700814 if (IS_ERR(fp)) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700815 fc_rport_error(rdata, fp);
Abhijeet Joglekar76f68042009-04-21 16:26:58 -0700816 goto err;
817 }
818
Robert Love42e9a922008-12-09 15:10:17 -0800819 op = fc_frame_payload_op(fp);
820 if (op == ELS_LS_ACC) {
821 struct fc_els_rtv_acc *rtv;
822 u32 toq;
823 u32 tov;
824
825 rtv = fc_frame_payload_get(fp, sizeof(*rtv));
826 if (rtv) {
827 toq = ntohl(rtv->rtv_toq);
828 tov = ntohl(rtv->rtv_r_a_tov);
829 if (tov == 0)
830 tov = 1;
831 rdata->r_a_tov = tov;
832 tov = ntohl(rtv->rtv_e_d_tov);
833 if (toq & FC_ELS_RTV_EDRES)
834 tov /= 1000000;
835 if (tov == 0)
836 tov = 1;
837 rdata->e_d_tov = tov;
838 }
839 }
840
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700841 fc_rport_enter_ready(rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800842
843out:
844 fc_frame_free(fp);
845err:
846 mutex_unlock(&rdata->rp_mutex);
Joe Eykholtf211fa52009-08-25 14:01:01 -0700847 kref_put(&rdata->kref, rdata->local_port->tt.rport_destroy);
Robert Love42e9a922008-12-09 15:10:17 -0800848}
849
850/**
Robert Love34f42a02009-02-27 10:55:45 -0800851 * fc_rport_enter_rtv() - Send Request Timeout Value (RTV) request to peer
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700852 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800853 *
854 * Locking Note: The rport lock is expected to be held before calling
855 * this routine.
856 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700857static void fc_rport_enter_rtv(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800858{
859 struct fc_frame *fp;
Robert Love42e9a922008-12-09 15:10:17 -0800860 struct fc_lport *lport = rdata->local_port;
861
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700862 FC_RPORT_DBG(rdata, "Port entered RTV state from %s state\n",
863 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -0800864
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700865 fc_rport_state_enter(rdata, RPORT_ST_RTV);
Robert Love42e9a922008-12-09 15:10:17 -0800866
867 fp = fc_frame_alloc(lport, sizeof(struct fc_els_rtv));
868 if (!fp) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700869 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800870 return;
871 }
872
Joe Eykholtf211fa52009-08-25 14:01:01 -0700873 if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_RTV,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700874 fc_rport_rtv_resp, rdata, lport->e_d_tov))
875 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800876 else
Joe Eykholtf211fa52009-08-25 14:01:01 -0700877 kref_get(&rdata->kref);
Robert Love42e9a922008-12-09 15:10:17 -0800878}
879
880/**
Robert Love34f42a02009-02-27 10:55:45 -0800881 * fc_rport_enter_logo() - Send Logout (LOGO) request to peer
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700882 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800883 *
884 * Locking Note: The rport lock is expected to be held before calling
885 * this routine.
886 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700887static void fc_rport_enter_logo(struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800888{
Robert Love42e9a922008-12-09 15:10:17 -0800889 struct fc_lport *lport = rdata->local_port;
890 struct fc_frame *fp;
891
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700892 FC_RPORT_DBG(rdata, "Port entered LOGO state from %s state\n",
893 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -0800894
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700895 fc_rport_state_enter(rdata, RPORT_ST_LOGO);
Robert Love42e9a922008-12-09 15:10:17 -0800896
897 fp = fc_frame_alloc(lport, sizeof(struct fc_els_logo));
898 if (!fp) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700899 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800900 return;
901 }
902
Joe Eykholtf211fa52009-08-25 14:01:01 -0700903 if (!lport->tt.elsct_send(lport, rdata->ids.port_id, fp, ELS_LOGO,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700904 fc_rport_logo_resp, rdata, lport->e_d_tov))
905 fc_rport_error_retry(rdata, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800906 else
Joe Eykholtf211fa52009-08-25 14:01:01 -0700907 kref_get(&rdata->kref);
Robert Love42e9a922008-12-09 15:10:17 -0800908}
909
910
911/**
Robert Love34f42a02009-02-27 10:55:45 -0800912 * fc_rport_recv_req() - Receive a request from a rport
Robert Love42e9a922008-12-09 15:10:17 -0800913 * @sp: current sequence in the PLOGI exchange
914 * @fp: response frame
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700915 * @rdata_arg: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800916 *
917 * Locking Note: Called without the rport lock held. This
918 * function will hold the rport lock, call an _enter_*
919 * function and then unlock the rport.
920 */
921void fc_rport_recv_req(struct fc_seq *sp, struct fc_frame *fp,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700922 struct fc_rport_priv *rdata)
Robert Love42e9a922008-12-09 15:10:17 -0800923{
Robert Love42e9a922008-12-09 15:10:17 -0800924 struct fc_lport *lport = rdata->local_port;
925
926 struct fc_frame_header *fh;
927 struct fc_seq_els_data els_data;
928 u8 op;
929
930 mutex_lock(&rdata->rp_mutex);
931
932 els_data.fp = NULL;
933 els_data.explan = ELS_EXPL_NONE;
934 els_data.reason = ELS_RJT_NONE;
935
936 fh = fc_frame_header_get(fp);
937
938 if (fh->fh_r_ctl == FC_RCTL_ELS_REQ && fh->fh_type == FC_TYPE_ELS) {
939 op = fc_frame_payload_op(fp);
940 switch (op) {
941 case ELS_PLOGI:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700942 fc_rport_recv_plogi_req(rdata, sp, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800943 break;
944 case ELS_PRLI:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700945 fc_rport_recv_prli_req(rdata, sp, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800946 break;
947 case ELS_PRLO:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700948 fc_rport_recv_prlo_req(rdata, sp, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800949 break;
950 case ELS_LOGO:
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700951 fc_rport_recv_logo_req(rdata, sp, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800952 break;
953 case ELS_RRQ:
954 els_data.fp = fp;
955 lport->tt.seq_els_rsp_send(sp, ELS_RRQ, &els_data);
956 break;
957 case ELS_REC:
958 els_data.fp = fp;
959 lport->tt.seq_els_rsp_send(sp, ELS_REC, &els_data);
960 break;
961 default:
962 els_data.reason = ELS_RJT_UNSUP;
963 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &els_data);
964 break;
965 }
966 }
967
968 mutex_unlock(&rdata->rp_mutex);
969}
970
971/**
Robert Love34f42a02009-02-27 10:55:45 -0800972 * fc_rport_recv_plogi_req() - Handle incoming Port Login (PLOGI) request
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700973 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -0800974 * @sp: current sequence in the PLOGI exchange
975 * @fp: PLOGI request frame
976 *
977 * Locking Note: The rport lock is exected to be held before calling
978 * this function.
979 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700980static void fc_rport_recv_plogi_req(struct fc_rport_priv *rdata,
Robert Love42e9a922008-12-09 15:10:17 -0800981 struct fc_seq *sp, struct fc_frame *rx_fp)
982{
Robert Love42e9a922008-12-09 15:10:17 -0800983 struct fc_lport *lport = rdata->local_port;
984 struct fc_frame *fp = rx_fp;
985 struct fc_exch *ep;
986 struct fc_frame_header *fh;
987 struct fc_els_flogi *pl;
988 struct fc_seq_els_data rjt_data;
989 u32 sid;
990 u64 wwpn;
991 u64 wwnn;
992 enum fc_els_rjt_reason reject = 0;
993 u32 f_ctl;
994 rjt_data.fp = NULL;
995
996 fh = fc_frame_header_get(fp);
997
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700998 FC_RPORT_DBG(rdata, "Received PLOGI request while in state %s\n",
999 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -08001000
1001 sid = ntoh24(fh->fh_s_id);
1002 pl = fc_frame_payload_get(fp, sizeof(*pl));
1003 if (!pl) {
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001004 FC_RPORT_DBG(rdata, "Received PLOGI too short\n");
Robert Love42e9a922008-12-09 15:10:17 -08001005 WARN_ON(1);
1006 /* XXX TBD: send reject? */
1007 fc_frame_free(fp);
1008 return;
1009 }
1010 wwpn = get_unaligned_be64(&pl->fl_wwpn);
1011 wwnn = get_unaligned_be64(&pl->fl_wwnn);
1012
1013 /*
1014 * If the session was just created, possibly due to the incoming PLOGI,
1015 * set the state appropriately and accept the PLOGI.
1016 *
1017 * If we had also sent a PLOGI, and if the received PLOGI is from a
1018 * higher WWPN, we accept it, otherwise an LS_RJT is sent with reason
1019 * "command already in progress".
1020 *
1021 * XXX TBD: If the session was ready before, the PLOGI should result in
1022 * all outstanding exchanges being reset.
1023 */
1024 switch (rdata->rp_state) {
1025 case RPORT_ST_INIT:
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001026 FC_RPORT_DBG(rdata, "Received PLOGI, wwpn %llx state INIT "
Robert Love74147052009-06-10 15:31:10 -07001027 "- reject\n", (unsigned long long)wwpn);
Robert Love42e9a922008-12-09 15:10:17 -08001028 reject = ELS_RJT_UNSUP;
1029 break;
1030 case RPORT_ST_PLOGI:
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001031 FC_RPORT_DBG(rdata, "Received PLOGI in PLOGI state %d\n",
Robert Love74147052009-06-10 15:31:10 -07001032 rdata->rp_state);
Robert Love42e9a922008-12-09 15:10:17 -08001033 if (wwpn < lport->wwpn)
1034 reject = ELS_RJT_INPROG;
1035 break;
1036 case RPORT_ST_PRLI:
1037 case RPORT_ST_READY:
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001038 FC_RPORT_DBG(rdata, "Received PLOGI in logged-in state %d "
Robert Love74147052009-06-10 15:31:10 -07001039 "- ignored for now\n", rdata->rp_state);
Robert Love42e9a922008-12-09 15:10:17 -08001040 /* XXX TBD - should reset */
1041 break;
Joe Eykholt14194052009-07-29 17:04:43 -07001042 case RPORT_ST_DELETE:
Robert Love42e9a922008-12-09 15:10:17 -08001043 default:
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001044 FC_RPORT_DBG(rdata, "Received PLOGI in unexpected "
Robert Love74147052009-06-10 15:31:10 -07001045 "state %d\n", rdata->rp_state);
Abhijeet Joglekarb4c6f542009-04-21 16:27:04 -07001046 fc_frame_free(fp);
1047 return;
Robert Love42e9a922008-12-09 15:10:17 -08001048 break;
1049 }
1050
1051 if (reject) {
1052 rjt_data.reason = reject;
1053 rjt_data.explan = ELS_EXPL_NONE;
1054 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data);
1055 fc_frame_free(fp);
1056 } else {
1057 fp = fc_frame_alloc(lport, sizeof(*pl));
1058 if (fp == NULL) {
1059 fp = rx_fp;
1060 rjt_data.reason = ELS_RJT_UNAB;
1061 rjt_data.explan = ELS_EXPL_NONE;
1062 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data);
1063 fc_frame_free(fp);
1064 } else {
1065 sp = lport->tt.seq_start_next(sp);
1066 WARN_ON(!sp);
Joe Eykholtf211fa52009-08-25 14:01:01 -07001067 rdata->ids.port_name = wwpn;
1068 rdata->ids.node_name = wwnn;
Robert Love42e9a922008-12-09 15:10:17 -08001069
1070 /*
1071 * Get session payload size from incoming PLOGI.
1072 */
Joe Eykholtf211fa52009-08-25 14:01:01 -07001073 rdata->maxframe_size =
Robert Love42e9a922008-12-09 15:10:17 -08001074 fc_plogi_get_maxframe(pl, lport->mfs);
1075 fc_frame_free(rx_fp);
1076 fc_plogi_fill(lport, fp, ELS_LS_ACC);
1077
1078 /*
1079 * Send LS_ACC. If this fails,
1080 * the originator should retry.
1081 */
1082 f_ctl = FC_FC_EX_CTX | FC_FC_LAST_SEQ;
1083 f_ctl |= FC_FC_END_SEQ | FC_FC_SEQ_INIT;
1084 ep = fc_seq_exch(sp);
1085 fc_fill_fc_hdr(fp, FC_RCTL_ELS_REP, ep->did, ep->sid,
1086 FC_TYPE_ELS, f_ctl, 0);
1087 lport->tt.seq_send(lport, sp, fp);
1088 if (rdata->rp_state == RPORT_ST_PLOGI)
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001089 fc_rport_enter_prli(rdata);
Robert Love42e9a922008-12-09 15:10:17 -08001090 }
1091 }
1092}
1093
1094/**
Robert Love34f42a02009-02-27 10:55:45 -08001095 * fc_rport_recv_prli_req() - Handle incoming Process Login (PRLI) request
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001096 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -08001097 * @sp: current sequence in the PRLI exchange
1098 * @fp: PRLI request frame
1099 *
1100 * Locking Note: The rport lock is exected to be held before calling
1101 * this function.
1102 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001103static void fc_rport_recv_prli_req(struct fc_rport_priv *rdata,
Robert Love42e9a922008-12-09 15:10:17 -08001104 struct fc_seq *sp, struct fc_frame *rx_fp)
1105{
Robert Love42e9a922008-12-09 15:10:17 -08001106 struct fc_lport *lport = rdata->local_port;
1107 struct fc_exch *ep;
1108 struct fc_frame *fp;
1109 struct fc_frame_header *fh;
1110 struct {
1111 struct fc_els_prli prli;
1112 struct fc_els_spp spp;
1113 } *pp;
1114 struct fc_els_spp *rspp; /* request service param page */
1115 struct fc_els_spp *spp; /* response spp */
1116 unsigned int len;
1117 unsigned int plen;
1118 enum fc_els_rjt_reason reason = ELS_RJT_UNAB;
1119 enum fc_els_rjt_explan explan = ELS_EXPL_NONE;
1120 enum fc_els_spp_resp resp;
1121 struct fc_seq_els_data rjt_data;
1122 u32 f_ctl;
1123 u32 fcp_parm;
1124 u32 roles = FC_RPORT_ROLE_UNKNOWN;
1125 rjt_data.fp = NULL;
1126
1127 fh = fc_frame_header_get(rx_fp);
1128
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001129 FC_RPORT_DBG(rdata, "Received PRLI request while in state %s\n",
1130 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -08001131
1132 switch (rdata->rp_state) {
1133 case RPORT_ST_PRLI:
1134 case RPORT_ST_READY:
1135 reason = ELS_RJT_NONE;
1136 break;
1137 default:
Abhijeet Joglekarb4c6f542009-04-21 16:27:04 -07001138 fc_frame_free(rx_fp);
1139 return;
Robert Love42e9a922008-12-09 15:10:17 -08001140 break;
1141 }
1142 len = fr_len(rx_fp) - sizeof(*fh);
1143 pp = fc_frame_payload_get(rx_fp, sizeof(*pp));
1144 if (pp == NULL) {
1145 reason = ELS_RJT_PROT;
1146 explan = ELS_EXPL_INV_LEN;
1147 } else {
1148 plen = ntohs(pp->prli.prli_len);
1149 if ((plen % 4) != 0 || plen > len) {
1150 reason = ELS_RJT_PROT;
1151 explan = ELS_EXPL_INV_LEN;
1152 } else if (plen < len) {
1153 len = plen;
1154 }
1155 plen = pp->prli.prli_spp_len;
1156 if ((plen % 4) != 0 || plen < sizeof(*spp) ||
1157 plen > len || len < sizeof(*pp)) {
1158 reason = ELS_RJT_PROT;
1159 explan = ELS_EXPL_INV_LEN;
1160 }
1161 rspp = &pp->spp;
1162 }
1163 if (reason != ELS_RJT_NONE ||
1164 (fp = fc_frame_alloc(lport, len)) == NULL) {
1165 rjt_data.reason = reason;
1166 rjt_data.explan = explan;
1167 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data);
1168 } else {
1169 sp = lport->tt.seq_start_next(sp);
1170 WARN_ON(!sp);
1171 pp = fc_frame_payload_get(fp, len);
1172 WARN_ON(!pp);
1173 memset(pp, 0, len);
1174 pp->prli.prli_cmd = ELS_LS_ACC;
1175 pp->prli.prli_spp_len = plen;
1176 pp->prli.prli_len = htons(len);
1177 len -= sizeof(struct fc_els_prli);
1178
Robert Love6bd054c2009-08-25 14:03:04 -07001179 /* reinitialize remote port roles */
1180 rdata->ids.roles = FC_RPORT_ROLE_UNKNOWN;
1181
Robert Love42e9a922008-12-09 15:10:17 -08001182 /*
1183 * Go through all the service parameter pages and build
1184 * response. If plen indicates longer SPP than standard,
1185 * use that. The entire response has been pre-cleared above.
1186 */
1187 spp = &pp->spp;
1188 while (len >= plen) {
1189 spp->spp_type = rspp->spp_type;
1190 spp->spp_type_ext = rspp->spp_type_ext;
1191 spp->spp_flags = rspp->spp_flags & FC_SPP_EST_IMG_PAIR;
1192 resp = FC_SPP_RESP_ACK;
1193 if (rspp->spp_flags & FC_SPP_RPA_VAL)
1194 resp = FC_SPP_RESP_NO_PA;
1195 switch (rspp->spp_type) {
1196 case 0: /* common to all FC-4 types */
1197 break;
1198 case FC_TYPE_FCP:
1199 fcp_parm = ntohl(rspp->spp_params);
1200 if (fcp_parm * FCP_SPPF_RETRY)
1201 rdata->flags |= FC_RP_FLAGS_RETRY;
Joe Eykholtf211fa52009-08-25 14:01:01 -07001202 rdata->supported_classes = FC_COS_CLASS3;
Robert Love42e9a922008-12-09 15:10:17 -08001203 if (fcp_parm & FCP_SPPF_INIT_FCN)
1204 roles |= FC_RPORT_ROLE_FCP_INITIATOR;
1205 if (fcp_parm & FCP_SPPF_TARG_FCN)
1206 roles |= FC_RPORT_ROLE_FCP_TARGET;
Joe Eykholtf211fa52009-08-25 14:01:01 -07001207 rdata->ids.roles = roles;
Robert Love42e9a922008-12-09 15:10:17 -08001208
1209 spp->spp_params =
1210 htonl(lport->service_params);
1211 break;
1212 default:
1213 resp = FC_SPP_RESP_INVL;
1214 break;
1215 }
1216 spp->spp_flags |= resp;
1217 len -= plen;
1218 rspp = (struct fc_els_spp *)((char *)rspp + plen);
1219 spp = (struct fc_els_spp *)((char *)spp + plen);
1220 }
1221
1222 /*
1223 * Send LS_ACC. If this fails, the originator should retry.
1224 */
1225 f_ctl = FC_FC_EX_CTX | FC_FC_LAST_SEQ;
1226 f_ctl |= FC_FC_END_SEQ | FC_FC_SEQ_INIT;
1227 ep = fc_seq_exch(sp);
1228 fc_fill_fc_hdr(fp, FC_RCTL_ELS_REP, ep->did, ep->sid,
1229 FC_TYPE_ELS, f_ctl, 0);
1230 lport->tt.seq_send(lport, sp, fp);
1231
1232 /*
1233 * Get lock and re-check state.
1234 */
1235 switch (rdata->rp_state) {
1236 case RPORT_ST_PRLI:
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001237 fc_rport_enter_ready(rdata);
Robert Love42e9a922008-12-09 15:10:17 -08001238 break;
1239 case RPORT_ST_READY:
1240 break;
1241 default:
1242 break;
1243 }
1244 }
1245 fc_frame_free(rx_fp);
1246}
1247
1248/**
Robert Love34f42a02009-02-27 10:55:45 -08001249 * fc_rport_recv_prlo_req() - Handle incoming Process Logout (PRLO) request
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001250 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -08001251 * @sp: current sequence in the PRLO exchange
1252 * @fp: PRLO request frame
1253 *
1254 * Locking Note: The rport lock is exected to be held before calling
1255 * this function.
1256 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001257static void fc_rport_recv_prlo_req(struct fc_rport_priv *rdata,
1258 struct fc_seq *sp,
Robert Love42e9a922008-12-09 15:10:17 -08001259 struct fc_frame *fp)
1260{
Robert Love42e9a922008-12-09 15:10:17 -08001261 struct fc_lport *lport = rdata->local_port;
1262
1263 struct fc_frame_header *fh;
1264 struct fc_seq_els_data rjt_data;
1265
1266 fh = fc_frame_header_get(fp);
1267
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001268 FC_RPORT_DBG(rdata, "Received PRLO request while in state %s\n",
1269 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -08001270
Joe Eykholt14194052009-07-29 17:04:43 -07001271 if (rdata->rp_state == RPORT_ST_DELETE) {
Abhijeet Joglekarb4c6f542009-04-21 16:27:04 -07001272 fc_frame_free(fp);
1273 return;
1274 }
1275
Robert Love42e9a922008-12-09 15:10:17 -08001276 rjt_data.fp = NULL;
1277 rjt_data.reason = ELS_RJT_UNAB;
1278 rjt_data.explan = ELS_EXPL_NONE;
1279 lport->tt.seq_els_rsp_send(sp, ELS_LS_RJT, &rjt_data);
1280 fc_frame_free(fp);
1281}
1282
1283/**
Robert Love34f42a02009-02-27 10:55:45 -08001284 * fc_rport_recv_logo_req() - Handle incoming Logout (LOGO) request
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001285 * @rdata: private remote port data
Robert Love42e9a922008-12-09 15:10:17 -08001286 * @sp: current sequence in the LOGO exchange
1287 * @fp: LOGO request frame
1288 *
1289 * Locking Note: The rport lock is exected to be held before calling
1290 * this function.
1291 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001292static void fc_rport_recv_logo_req(struct fc_rport_priv *rdata,
1293 struct fc_seq *sp,
Robert Love42e9a922008-12-09 15:10:17 -08001294 struct fc_frame *fp)
1295{
1296 struct fc_frame_header *fh;
Robert Love42e9a922008-12-09 15:10:17 -08001297 struct fc_lport *lport = rdata->local_port;
1298
1299 fh = fc_frame_header_get(fp);
1300
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001301 FC_RPORT_DBG(rdata, "Received LOGO request while in state %s\n",
1302 fc_rport_state(rdata));
Robert Love42e9a922008-12-09 15:10:17 -08001303
Joe Eykholt14194052009-07-29 17:04:43 -07001304 if (rdata->rp_state == RPORT_ST_DELETE) {
Abhijeet Joglekarb4c6f542009-04-21 16:27:04 -07001305 fc_frame_free(fp);
1306 return;
1307 }
1308
Joe Eykholt00fea932009-08-25 14:01:23 -07001309 fc_rport_enter_delete(rdata, RPORT_EV_LOGO);
Robert Love42e9a922008-12-09 15:10:17 -08001310
1311 lport->tt.seq_els_rsp_send(sp, ELS_LS_ACC, NULL);
1312 fc_frame_free(fp);
1313}
1314
1315static void fc_rport_flush_queue(void)
1316{
1317 flush_workqueue(rport_event_queue);
1318}
1319
Robert Love42e9a922008-12-09 15:10:17 -08001320int fc_rport_init(struct fc_lport *lport)
1321{
Joe Eykholt8025b5d2009-08-25 14:02:06 -07001322 if (!lport->tt.rport_lookup)
1323 lport->tt.rport_lookup = fc_rport_lookup;
1324
Robert Love5101ff92009-02-27 10:55:18 -08001325 if (!lport->tt.rport_create)
Joe Eykholt9e9d0452009-08-25 14:01:18 -07001326 lport->tt.rport_create = fc_rport_create;
Robert Love5101ff92009-02-27 10:55:18 -08001327
Robert Love42e9a922008-12-09 15:10:17 -08001328 if (!lport->tt.rport_login)
1329 lport->tt.rport_login = fc_rport_login;
1330
1331 if (!lport->tt.rport_logoff)
1332 lport->tt.rport_logoff = fc_rport_logoff;
1333
1334 if (!lport->tt.rport_recv_req)
1335 lport->tt.rport_recv_req = fc_rport_recv_req;
1336
1337 if (!lport->tt.rport_flush_queue)
1338 lport->tt.rport_flush_queue = fc_rport_flush_queue;
1339
Joe Eykholtf211fa52009-08-25 14:01:01 -07001340 if (!lport->tt.rport_destroy)
1341 lport->tt.rport_destroy = fc_rport_destroy;
1342
Robert Love42e9a922008-12-09 15:10:17 -08001343 return 0;
1344}
1345EXPORT_SYMBOL(fc_rport_init);
1346
Randy Dunlapb0d428a2009-04-27 21:49:31 -07001347int fc_setup_rport(void)
Robert Love42e9a922008-12-09 15:10:17 -08001348{
1349 rport_event_queue = create_singlethread_workqueue("fc_rport_eq");
1350 if (!rport_event_queue)
1351 return -ENOMEM;
1352 return 0;
1353}
1354EXPORT_SYMBOL(fc_setup_rport);
1355
Randy Dunlapb0d428a2009-04-27 21:49:31 -07001356void fc_destroy_rport(void)
Robert Love42e9a922008-12-09 15:10:17 -08001357{
1358 destroy_workqueue(rport_event_queue);
1359}
1360EXPORT_SYMBOL(fc_destroy_rport);
1361
1362void fc_rport_terminate_io(struct fc_rport *rport)
1363{
Joe Eykholtab28f1f2009-08-25 14:00:34 -07001364 struct fc_rport_libfc_priv *rp = rport->dd_data;
1365 struct fc_lport *lport = rp->local_port;
Robert Love42e9a922008-12-09 15:10:17 -08001366
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -08001367 lport->tt.exch_mgr_reset(lport, 0, rport->port_id);
1368 lport->tt.exch_mgr_reset(lport, rport->port_id, 0);
Robert Love42e9a922008-12-09 15:10:17 -08001369}
1370EXPORT_SYMBOL(fc_rport_terminate_io);