blob: c1a808cc59204753966efce71051cdfe3c75ac0a [file] [log] [blame]
Robert Love42e9a922008-12-09 15:10:17 -08001/*
2 * Copyright(c) 2007 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 * PORT LOCKING NOTES
22 *
23 * These comments only apply to the 'port code' which consists of the lport,
24 * disc and rport blocks.
25 *
26 * MOTIVATION
27 *
28 * The lport, disc and rport blocks all have mutexes that are used to protect
29 * those objects. The main motivation for these locks is to prevent from
30 * having an lport reset just before we send a frame. In that scenario the
31 * lport's FID would get set to zero and then we'd send a frame with an
32 * invalid SID. We also need to ensure that states don't change unexpectedly
33 * while processing another state.
34 *
Uwe Kleine-König732bee72010-06-11 12:16:59 +020035 * HIERARCHY
Robert Love42e9a922008-12-09 15:10:17 -080036 *
Uwe Kleine-König732bee72010-06-11 12:16:59 +020037 * The following hierarchy defines the locking rules. A greater lock
Robert Love42e9a922008-12-09 15:10:17 -080038 * may be held before acquiring a lesser lock, but a lesser lock should never
Uwe Kleine-König732bee72010-06-11 12:16:59 +020039 * be held while attempting to acquire a greater lock. Here is the hierarchy-
Robert Love42e9a922008-12-09 15:10:17 -080040 *
41 * lport > disc, lport > rport, disc > rport
42 *
43 * CALLBACKS
44 *
45 * The callbacks cause complications with this scheme. There is a callback
46 * from the rport (to either lport or disc) and a callback from disc
47 * (to the lport).
48 *
49 * As rports exit the rport state machine a callback is made to the owner of
50 * the rport to notify success or failure. Since the callback is likely to
51 * cause the lport or disc to grab its lock we cannot hold the rport lock
52 * while making the callback. To ensure that the rport is not free'd while
53 * processing the callback the rport callbacks are serialized through a
54 * single-threaded workqueue. An rport would never be free'd while in a
Lucas De Marchi25985ed2011-03-30 22:57:33 -030055 * callback handler because no other rport work in this queue can be executed
Robert Love42e9a922008-12-09 15:10:17 -080056 * at the same time.
57 *
58 * When discovery succeeds or fails a callback is made to the lport as
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020059 * notification. Currently, successful discovery causes the lport to take no
Robert Love42e9a922008-12-09 15:10:17 -080060 * action. A failure will cause the lport to reset. There is likely a circular
61 * locking problem with this implementation.
62 */
63
64/*
65 * LPORT LOCKING
66 *
67 * The critical sections protected by the lport's mutex are quite broad and
68 * may be improved upon in the future. The lport code and its locking doesn't
69 * influence the I/O path, so excessive locking doesn't penalize I/O
70 * performance.
71 *
72 * The strategy is to lock whenever processing a request or response. Note
73 * that every _enter_* function corresponds to a state change. They generally
74 * change the lports state and then send a request out on the wire. We lock
75 * before calling any of these functions to protect that state change. This
76 * means that the entry points into the lport block manage the locks while
77 * the state machine can transition between states (i.e. _enter_* functions)
78 * while always staying protected.
79 *
80 * When handling responses we also hold the lport mutex broadly. When the
81 * lport receives the response frame it locks the mutex and then calls the
82 * appropriate handler for the particuar response. Generally a response will
83 * trigger a state change and so the lock must already be held.
84 *
85 * Retries also have to consider the locking. The retries occur from a work
86 * context and the work function will lock the lport and then retry the state
87 * (i.e. _enter_* function).
88 */
89
90#include <linux/timer.h>
Vasu Dev77a2b732011-08-25 12:40:52 -070091#include <linux/delay.h>
Paul Gortmakeracf33682011-05-27 09:47:43 -040092#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090093#include <linux/slab.h>
Robert Love42e9a922008-12-09 15:10:17 -080094#include <asm/unaligned.h>
95
96#include <scsi/fc/fc_gs.h>
97
98#include <scsi/libfc.h>
99#include <scsi/fc_encode.h>
Steve Maa51ab392009-11-03 11:47:34 -0800100#include <linux/scatterlist.h>
Robert Love42e9a922008-12-09 15:10:17 -0800101
Robert Love8866a5d2009-11-03 11:45:58 -0800102#include "fc_libfc.h"
103
Robert Love42e9a922008-12-09 15:10:17 -0800104/* Fabric IDs to use for point-to-point mode, chosen on whims. */
105#define FC_LOCAL_PTP_FID_LO 0x010101
106#define FC_LOCAL_PTP_FID_HI 0x010102
107
108#define DNS_DELAY 3 /* Discovery delay after RSCN (in seconds)*/
109
Robert Love42e9a922008-12-09 15:10:17 -0800110static void fc_lport_error(struct fc_lport *, struct fc_frame *);
111
112static void fc_lport_enter_reset(struct fc_lport *);
113static void fc_lport_enter_flogi(struct fc_lport *);
114static void fc_lport_enter_dns(struct fc_lport *);
Chris Leechc914f7d2009-11-03 11:47:12 -0800115static void fc_lport_enter_ns(struct fc_lport *, enum fc_lport_state);
Robert Love42e9a922008-12-09 15:10:17 -0800116static void fc_lport_enter_scr(struct fc_lport *);
117static void fc_lport_enter_ready(struct fc_lport *);
118static void fc_lport_enter_logo(struct fc_lport *);
119
120static const char *fc_lport_state_names[] = {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -0700121 [LPORT_ST_DISABLED] = "disabled",
Robert Love42e9a922008-12-09 15:10:17 -0800122 [LPORT_ST_FLOGI] = "FLOGI",
123 [LPORT_ST_DNS] = "dNS",
Chris Leechc9c7bd72009-11-03 11:46:51 -0800124 [LPORT_ST_RNN_ID] = "RNN_ID",
Chris Leech5baa17c2009-11-03 11:46:56 -0800125 [LPORT_ST_RSNN_NN] = "RSNN_NN",
Chris Leechc9866a52009-11-03 11:47:01 -0800126 [LPORT_ST_RSPN_ID] = "RSPN_ID",
Robert Love42e9a922008-12-09 15:10:17 -0800127 [LPORT_ST_RFT_ID] = "RFT_ID",
Joe Eykholtab593b12009-11-03 11:49:27 -0800128 [LPORT_ST_RFF_ID] = "RFF_ID",
Robert Love42e9a922008-12-09 15:10:17 -0800129 [LPORT_ST_SCR] = "SCR",
130 [LPORT_ST_READY] = "Ready",
131 [LPORT_ST_LOGO] = "LOGO",
132 [LPORT_ST_RESET] = "reset",
133};
134
Steve Maa51ab392009-11-03 11:47:34 -0800135/**
136 * struct fc_bsg_info - FC Passthrough managemet structure
137 * @job: The passthrough job
138 * @lport: The local port to pass through a command
139 * @rsp_code: The expected response code
Robert Love3a3b42b2009-11-03 11:47:39 -0800140 * @sg: job->reply_payload.sg_list
Steve Maa51ab392009-11-03 11:47:34 -0800141 * @nents: job->reply_payload.sg_cnt
142 * @offset: The offset into the response data
143 */
144struct fc_bsg_info {
145 struct fc_bsg_job *job;
146 struct fc_lport *lport;
147 u16 rsp_code;
148 struct scatterlist *sg;
149 u32 nents;
150 size_t offset;
151};
152
Robert Love3a3b42b2009-11-03 11:47:39 -0800153/**
154 * fc_frame_drop() - Dummy frame handler
155 * @lport: The local port the frame was received on
156 * @fp: The received frame
157 */
Robert Love42e9a922008-12-09 15:10:17 -0800158static int fc_frame_drop(struct fc_lport *lport, struct fc_frame *fp)
159{
160 fc_frame_free(fp);
161 return 0;
162}
163
164/**
Robert Love34f42a02009-02-27 10:55:45 -0800165 * fc_lport_rport_callback() - Event handler for rport events
Robert Love42e9a922008-12-09 15:10:17 -0800166 * @lport: The lport which is receiving the event
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700167 * @rdata: private remote port data
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300168 * @event: The event that occurred
Robert Love42e9a922008-12-09 15:10:17 -0800169 *
170 * Locking Note: The rport lock should not be held when calling
171 * this function.
172 */
173static void fc_lport_rport_callback(struct fc_lport *lport,
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700174 struct fc_rport_priv *rdata,
Robert Love42e9a922008-12-09 15:10:17 -0800175 enum fc_rport_event event)
176{
Chris Leechce8b5df2010-04-09 14:23:10 -0700177 FC_LPORT_DBG(lport, "Received a %d event for port (%6.6x)\n", event,
Joe Eykholtf211fa52009-08-25 14:01:01 -0700178 rdata->ids.port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800179
Joe Eykholtb5cbf082009-08-25 14:01:44 -0700180 mutex_lock(&lport->lp_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800181 switch (event) {
Joe Eykholt4c0f62b2009-08-25 14:01:12 -0700182 case RPORT_EV_READY:
Joe Eykholtb5cbf082009-08-25 14:01:44 -0700183 if (lport->state == LPORT_ST_DNS) {
Robert Love3a3b42b2009-11-03 11:47:39 -0800184 lport->dns_rdata = rdata;
Chris Leechc914f7d2009-11-03 11:47:12 -0800185 fc_lport_enter_ns(lport, LPORT_ST_RNN_ID);
Joe Eykholtb5cbf082009-08-25 14:01:44 -0700186 } else {
187 FC_LPORT_DBG(lport, "Received an READY event "
Chris Leechce8b5df2010-04-09 14:23:10 -0700188 "on port (%6.6x) for the directory "
Joe Eykholtb5cbf082009-08-25 14:01:44 -0700189 "server, but the lport is not "
190 "in the DNS state, it's in the "
191 "%d state", rdata->ids.port_id,
192 lport->state);
193 lport->tt.rport_logoff(rdata);
194 }
Robert Love42e9a922008-12-09 15:10:17 -0800195 break;
196 case RPORT_EV_LOGO:
197 case RPORT_EV_FAILED:
198 case RPORT_EV_STOP:
Robert Love3a3b42b2009-11-03 11:47:39 -0800199 lport->dns_rdata = NULL;
Robert Love42e9a922008-12-09 15:10:17 -0800200 break;
201 case RPORT_EV_NONE:
202 break;
203 }
Joe Eykholtb5cbf082009-08-25 14:01:44 -0700204 mutex_unlock(&lport->lp_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800205}
206
207/**
Robert Love34f42a02009-02-27 10:55:45 -0800208 * fc_lport_state() - Return a string which represents the lport's state
Robert Love42e9a922008-12-09 15:10:17 -0800209 * @lport: The lport whose state is to converted to a string
210 */
211static const char *fc_lport_state(struct fc_lport *lport)
212{
213 const char *cp;
214
215 cp = fc_lport_state_names[lport->state];
216 if (!cp)
217 cp = "unknown";
218 return cp;
219}
220
221/**
Robert Love34f42a02009-02-27 10:55:45 -0800222 * fc_lport_ptp_setup() - Create an rport for point-to-point mode
Robert Love3a3b42b2009-11-03 11:47:39 -0800223 * @lport: The lport to attach the ptp rport to
224 * @remote_fid: The FID of the ptp rport
Robert Love42e9a922008-12-09 15:10:17 -0800225 * @remote_wwpn: The WWPN of the ptp rport
226 * @remote_wwnn: The WWNN of the ptp rport
227 */
228static void fc_lport_ptp_setup(struct fc_lport *lport,
229 u32 remote_fid, u64 remote_wwpn,
230 u64 remote_wwnn)
231{
Joe Eykholt48f00902009-08-25 14:01:50 -0700232 mutex_lock(&lport->disc.disc_mutex);
Joe Eykholt2f2ac4a2010-03-12 16:07:46 -0800233 if (lport->ptp_rdata) {
Robert Love3a3b42b2009-11-03 11:47:39 -0800234 lport->tt.rport_logoff(lport->ptp_rdata);
Joe Eykholt2f2ac4a2010-03-12 16:07:46 -0800235 kref_put(&lport->ptp_rdata->kref, lport->tt.rport_destroy);
236 }
Robert Love3a3b42b2009-11-03 11:47:39 -0800237 lport->ptp_rdata = lport->tt.rport_create(lport, remote_fid);
Joe Eykholt2f2ac4a2010-03-12 16:07:46 -0800238 kref_get(&lport->ptp_rdata->kref);
Robert Love3a3b42b2009-11-03 11:47:39 -0800239 lport->ptp_rdata->ids.port_name = remote_wwpn;
240 lport->ptp_rdata->ids.node_name = remote_wwnn;
Joe Eykholt48f00902009-08-25 14:01:50 -0700241 mutex_unlock(&lport->disc.disc_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800242
Robert Love3a3b42b2009-11-03 11:47:39 -0800243 lport->tt.rport_login(lport->ptp_rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800244
245 fc_lport_enter_ready(lport);
246}
247
Robert Love3a3b42b2009-11-03 11:47:39 -0800248/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800249 * fc_get_host_port_state() - Return the port state of the given Scsi_Host
250 * @shost: The SCSI host whose port state is to be determined
251 */
Robert Love42e9a922008-12-09 15:10:17 -0800252void fc_get_host_port_state(struct Scsi_Host *shost)
253{
Robert Love3a3b42b2009-11-03 11:47:39 -0800254 struct fc_lport *lport = shost_priv(shost);
Robert Love42e9a922008-12-09 15:10:17 -0800255
Robert Love3a3b42b2009-11-03 11:47:39 -0800256 mutex_lock(&lport->lp_mutex);
257 if (!lport->link_up)
Chris Leech8faecdd2009-11-03 11:46:19 -0800258 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
Robert Love42e9a922008-12-09 15:10:17 -0800259 else
Robert Love3a3b42b2009-11-03 11:47:39 -0800260 switch (lport->state) {
Chris Leech8faecdd2009-11-03 11:46:19 -0800261 case LPORT_ST_READY:
262 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
263 break;
264 default:
265 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
266 }
Robert Love3a3b42b2009-11-03 11:47:39 -0800267 mutex_unlock(&lport->lp_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800268}
269EXPORT_SYMBOL(fc_get_host_port_state);
270
Robert Love3a3b42b2009-11-03 11:47:39 -0800271/**
272 * fc_get_host_speed() - Return the speed of the given Scsi_Host
273 * @shost: The SCSI host whose port speed is to be determined
274 */
Robert Love42e9a922008-12-09 15:10:17 -0800275void fc_get_host_speed(struct Scsi_Host *shost)
276{
277 struct fc_lport *lport = shost_priv(shost);
278
279 fc_host_speed(shost) = lport->link_speed;
280}
281EXPORT_SYMBOL(fc_get_host_speed);
282
Robert Love3a3b42b2009-11-03 11:47:39 -0800283/**
284 * fc_get_host_stats() - Return the Scsi_Host's statistics
285 * @shost: The SCSI host whose statistics are to be returned
286 */
Robert Love42e9a922008-12-09 15:10:17 -0800287struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *shost)
288{
Robert Love42e9a922008-12-09 15:10:17 -0800289 struct fc_host_statistics *fcoe_stats;
Robert Love3a3b42b2009-11-03 11:47:39 -0800290 struct fc_lport *lport = shost_priv(shost);
Robert Love42e9a922008-12-09 15:10:17 -0800291 struct timespec v0, v1;
Robert Love582b45b2009-03-31 15:51:50 -0700292 unsigned int cpu;
Joe Eykholt5f0e3852010-11-30 16:20:18 -0800293 u64 fcp_in_bytes = 0;
294 u64 fcp_out_bytes = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800295
Robert Love3a3b42b2009-11-03 11:47:39 -0800296 fcoe_stats = &lport->host_stats;
Robert Love42e9a922008-12-09 15:10:17 -0800297 memset(fcoe_stats, 0, sizeof(struct fc_host_statistics));
298
299 jiffies_to_timespec(jiffies, &v0);
Robert Love3a3b42b2009-11-03 11:47:39 -0800300 jiffies_to_timespec(lport->boot_time, &v1);
Robert Love42e9a922008-12-09 15:10:17 -0800301 fcoe_stats->seconds_since_last_reset = (v0.tv_sec - v1.tv_sec);
302
Robert Love582b45b2009-03-31 15:51:50 -0700303 for_each_possible_cpu(cpu) {
304 struct fcoe_dev_stats *stats;
305
Robert Love3a3b42b2009-11-03 11:47:39 -0800306 stats = per_cpu_ptr(lport->dev_stats, cpu);
Robert Love582b45b2009-03-31 15:51:50 -0700307
Robert Love42e9a922008-12-09 15:10:17 -0800308 fcoe_stats->tx_frames += stats->TxFrames;
309 fcoe_stats->tx_words += stats->TxWords;
310 fcoe_stats->rx_frames += stats->RxFrames;
311 fcoe_stats->rx_words += stats->RxWords;
312 fcoe_stats->error_frames += stats->ErrorFrames;
313 fcoe_stats->invalid_crc_count += stats->InvalidCRCCount;
314 fcoe_stats->fcp_input_requests += stats->InputRequests;
315 fcoe_stats->fcp_output_requests += stats->OutputRequests;
316 fcoe_stats->fcp_control_requests += stats->ControlRequests;
Joe Eykholt5f0e3852010-11-30 16:20:18 -0800317 fcp_in_bytes += stats->InputBytes;
318 fcp_out_bytes += stats->OutputBytes;
Robert Love42e9a922008-12-09 15:10:17 -0800319 fcoe_stats->link_failure_count += stats->LinkFailureCount;
320 }
Joe Eykholt5f0e3852010-11-30 16:20:18 -0800321 fcoe_stats->fcp_input_megabytes = div_u64(fcp_in_bytes, 1000000);
322 fcoe_stats->fcp_output_megabytes = div_u64(fcp_out_bytes, 1000000);
Robert Love42e9a922008-12-09 15:10:17 -0800323 fcoe_stats->lip_count = -1;
324 fcoe_stats->nos_count = -1;
325 fcoe_stats->loss_of_sync_count = -1;
326 fcoe_stats->loss_of_signal_count = -1;
327 fcoe_stats->prim_seq_protocol_err_count = -1;
328 fcoe_stats->dumped_frames = -1;
329 return fcoe_stats;
330}
331EXPORT_SYMBOL(fc_get_host_stats);
332
Robert Love3a3b42b2009-11-03 11:47:39 -0800333/**
334 * fc_lport_flogi_fill() - Fill in FLOGI command for request
335 * @lport: The local port the FLOGI is for
336 * @flogi: The FLOGI command
337 * @op: The opcode
Robert Love42e9a922008-12-09 15:10:17 -0800338 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800339static void fc_lport_flogi_fill(struct fc_lport *lport,
340 struct fc_els_flogi *flogi,
341 unsigned int op)
Robert Love42e9a922008-12-09 15:10:17 -0800342{
343 struct fc_els_csp *sp;
344 struct fc_els_cssp *cp;
345
346 memset(flogi, 0, sizeof(*flogi));
347 flogi->fl_cmd = (u8) op;
348 put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn);
349 put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn);
350 sp = &flogi->fl_csp;
351 sp->sp_hi_ver = 0x20;
352 sp->sp_lo_ver = 0x20;
353 sp->sp_bb_cred = htons(10); /* this gets set by gateway */
354 sp->sp_bb_data = htons((u16) lport->mfs);
355 cp = &flogi->fl_cssp[3 - 1]; /* class 3 parameters */
356 cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
357 if (op != ELS_FLOGI) {
358 sp->sp_features = htons(FC_SP_FT_CIRO);
359 sp->sp_tot_seq = htons(255); /* seq. we accept */
360 sp->sp_rel_off = htons(0x1f);
361 sp->sp_e_d_tov = htonl(lport->e_d_tov);
362
363 cp->cp_rdfs = htons((u16) lport->mfs);
364 cp->cp_con_seq = htons(255);
365 cp->cp_open_seq = 1;
366 }
367}
368
Robert Love3a3b42b2009-11-03 11:47:39 -0800369/**
370 * fc_lport_add_fc4_type() - Add a supported FC-4 type to a local port
371 * @lport: The local port to add a new FC-4 type to
372 * @type: The new FC-4 type
Robert Love42e9a922008-12-09 15:10:17 -0800373 */
374static void fc_lport_add_fc4_type(struct fc_lport *lport, enum fc_fh_type type)
375{
376 __be32 *mp;
377
378 mp = &lport->fcts.ff_type_map[type / FC_NS_BPW];
379 *mp = htonl(ntohl(*mp) | 1UL << (type % FC_NS_BPW));
380}
381
382/**
Robert Love34f42a02009-02-27 10:55:45 -0800383 * fc_lport_recv_rlir_req() - Handle received Registered Link Incident Report.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300384 * @lport: Fibre Channel local port receiving the RLIR
Joe Eykholt92261152010-07-20 15:21:12 -0700385 * @fp: The RLIR request frame
Robert Love42e9a922008-12-09 15:10:17 -0800386 *
Joe Eykholt1b69bc02009-10-21 16:27:17 -0700387 * Locking Note: The lport lock is expected to be held before calling
Robert Love42e9a922008-12-09 15:10:17 -0800388 * this function.
389 */
Joe Eykholt92261152010-07-20 15:21:12 -0700390static void fc_lport_recv_rlir_req(struct fc_lport *lport, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800391{
Robert Love74147052009-06-10 15:31:10 -0700392 FC_LPORT_DBG(lport, "Received RLIR request while in state %s\n",
393 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800394
Joe Eykholt92261152010-07-20 15:21:12 -0700395 lport->tt.seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
Robert Love42e9a922008-12-09 15:10:17 -0800396 fc_frame_free(fp);
397}
398
399/**
Robert Love34f42a02009-02-27 10:55:45 -0800400 * fc_lport_recv_echo_req() - Handle received ECHO request
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300401 * @lport: The local port receiving the ECHO
Joe Eykholt92261152010-07-20 15:21:12 -0700402 * @fp: ECHO request frame
Robert Love42e9a922008-12-09 15:10:17 -0800403 *
Joe Eykholt1b69bc02009-10-21 16:27:17 -0700404 * Locking Note: The lport lock is expected to be held before calling
Robert Love42e9a922008-12-09 15:10:17 -0800405 * this function.
406 */
Joe Eykholt92261152010-07-20 15:21:12 -0700407static void fc_lport_recv_echo_req(struct fc_lport *lport,
408 struct fc_frame *in_fp)
Robert Love42e9a922008-12-09 15:10:17 -0800409{
410 struct fc_frame *fp;
Robert Love42e9a922008-12-09 15:10:17 -0800411 unsigned int len;
412 void *pp;
413 void *dp;
Robert Love42e9a922008-12-09 15:10:17 -0800414
Joe Eykholt1b69bc02009-10-21 16:27:17 -0700415 FC_LPORT_DBG(lport, "Received ECHO request while in state %s\n",
Robert Love74147052009-06-10 15:31:10 -0700416 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800417
418 len = fr_len(in_fp) - sizeof(struct fc_frame_header);
419 pp = fc_frame_payload_get(in_fp, len);
420
421 if (len < sizeof(__be32))
422 len = sizeof(__be32);
423
424 fp = fc_frame_alloc(lport, len);
425 if (fp) {
426 dp = fc_frame_payload_get(fp, len);
427 memcpy(dp, pp, len);
Joe Eykholt1b69bc02009-10-21 16:27:17 -0700428 *((__be32 *)dp) = htonl(ELS_LS_ACC << 24);
Joe Eykholt24f089e2010-07-20 15:21:01 -0700429 fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
430 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800431 }
432 fc_frame_free(in_fp);
433}
434
435/**
Joe Eykholt1b69bc02009-10-21 16:27:17 -0700436 * fc_lport_recv_rnid_req() - Handle received Request Node ID data request
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300437 * @lport: The local port receiving the RNID
Joe Eykholt92261152010-07-20 15:21:12 -0700438 * @fp: The RNID request frame
Robert Love42e9a922008-12-09 15:10:17 -0800439 *
Joe Eykholt1b69bc02009-10-21 16:27:17 -0700440 * Locking Note: The lport lock is expected to be held before calling
Robert Love42e9a922008-12-09 15:10:17 -0800441 * this function.
442 */
Joe Eykholt92261152010-07-20 15:21:12 -0700443static void fc_lport_recv_rnid_req(struct fc_lport *lport,
444 struct fc_frame *in_fp)
Robert Love42e9a922008-12-09 15:10:17 -0800445{
446 struct fc_frame *fp;
Robert Love42e9a922008-12-09 15:10:17 -0800447 struct fc_els_rnid *req;
448 struct {
449 struct fc_els_rnid_resp rnid;
450 struct fc_els_rnid_cid cid;
451 struct fc_els_rnid_gen gen;
452 } *rp;
453 struct fc_seq_els_data rjt_data;
454 u8 fmt;
455 size_t len;
Robert Love42e9a922008-12-09 15:10:17 -0800456
Robert Love74147052009-06-10 15:31:10 -0700457 FC_LPORT_DBG(lport, "Received RNID request while in state %s\n",
458 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800459
460 req = fc_frame_payload_get(in_fp, sizeof(*req));
461 if (!req) {
Robert Love42e9a922008-12-09 15:10:17 -0800462 rjt_data.reason = ELS_RJT_LOGIC;
463 rjt_data.explan = ELS_EXPL_NONE;
Joe Eykholt92261152010-07-20 15:21:12 -0700464 lport->tt.seq_els_rsp_send(in_fp, ELS_LS_RJT, &rjt_data);
Robert Love42e9a922008-12-09 15:10:17 -0800465 } else {
466 fmt = req->rnid_fmt;
467 len = sizeof(*rp);
468 if (fmt != ELS_RNIDF_GEN ||
469 ntohl(lport->rnid_gen.rnid_atype) == 0) {
470 fmt = ELS_RNIDF_NONE; /* nothing to provide */
471 len -= sizeof(rp->gen);
472 }
473 fp = fc_frame_alloc(lport, len);
474 if (fp) {
475 rp = fc_frame_payload_get(fp, len);
476 memset(rp, 0, len);
477 rp->rnid.rnid_cmd = ELS_LS_ACC;
478 rp->rnid.rnid_fmt = fmt;
479 rp->rnid.rnid_cid_len = sizeof(rp->cid);
480 rp->cid.rnid_wwpn = htonll(lport->wwpn);
481 rp->cid.rnid_wwnn = htonll(lport->wwnn);
482 if (fmt == ELS_RNIDF_GEN) {
483 rp->rnid.rnid_sid_len = sizeof(rp->gen);
484 memcpy(&rp->gen, &lport->rnid_gen,
485 sizeof(rp->gen));
486 }
Joe Eykholt24f089e2010-07-20 15:21:01 -0700487 fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
488 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800489 }
490 }
491 fc_frame_free(in_fp);
492}
493
494/**
Robert Love34f42a02009-02-27 10:55:45 -0800495 * fc_lport_recv_logo_req() - Handle received fabric LOGO request
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300496 * @lport: The local port receiving the LOGO
Joe Eykholt92261152010-07-20 15:21:12 -0700497 * @fp: The LOGO request frame
Robert Love42e9a922008-12-09 15:10:17 -0800498 *
499 * Locking Note: The lport lock is exected to be held before calling
500 * this function.
501 */
Joe Eykholt92261152010-07-20 15:21:12 -0700502static void fc_lport_recv_logo_req(struct fc_lport *lport, struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800503{
Joe Eykholt92261152010-07-20 15:21:12 -0700504 lport->tt.seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
Robert Love42e9a922008-12-09 15:10:17 -0800505 fc_lport_enter_reset(lport);
506 fc_frame_free(fp);
507}
508
509/**
Robert Love34f42a02009-02-27 10:55:45 -0800510 * fc_fabric_login() - Start the lport state machine
Robert Love3a3b42b2009-11-03 11:47:39 -0800511 * @lport: The local port that should log into the fabric
Robert Love42e9a922008-12-09 15:10:17 -0800512 *
513 * Locking Note: This function should not be called
514 * with the lport lock held.
515 */
516int fc_fabric_login(struct fc_lport *lport)
517{
518 int rc = -1;
519
520 mutex_lock(&lport->lp_mutex);
Vasu Dev55a66d32009-12-10 09:59:31 -0800521 if (lport->state == LPORT_ST_DISABLED ||
522 lport->state == LPORT_ST_LOGO) {
523 fc_lport_state_enter(lport, LPORT_ST_RESET);
Robert Love42e9a922008-12-09 15:10:17 -0800524 fc_lport_enter_reset(lport);
525 rc = 0;
526 }
527 mutex_unlock(&lport->lp_mutex);
528
529 return rc;
530}
531EXPORT_SYMBOL(fc_fabric_login);
532
533/**
Chris Leech8faecdd2009-11-03 11:46:19 -0800534 * __fc_linkup() - Handler for transport linkup events
535 * @lport: The lport whose link is up
536 *
537 * Locking: must be called with the lp_mutex held
538 */
539void __fc_linkup(struct fc_lport *lport)
540{
541 if (!lport->link_up) {
542 lport->link_up = 1;
543
544 if (lport->state == LPORT_ST_RESET)
545 fc_lport_enter_flogi(lport);
546 }
547}
548
549/**
Robert Love34f42a02009-02-27 10:55:45 -0800550 * fc_linkup() - Handler for transport linkup events
Robert Love3a3b42b2009-11-03 11:47:39 -0800551 * @lport: The local port whose link is up
Robert Love42e9a922008-12-09 15:10:17 -0800552 */
553void fc_linkup(struct fc_lport *lport)
554{
Chris Leechce8b5df2010-04-09 14:23:10 -0700555 printk(KERN_INFO "host%d: libfc: Link up on port (%6.6x)\n",
Robert Love7b2787e2010-05-07 15:18:41 -0700556 lport->host->host_no, lport->port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800557
558 mutex_lock(&lport->lp_mutex);
Chris Leech8faecdd2009-11-03 11:46:19 -0800559 __fc_linkup(lport);
Robert Love42e9a922008-12-09 15:10:17 -0800560 mutex_unlock(&lport->lp_mutex);
561}
562EXPORT_SYMBOL(fc_linkup);
563
564/**
Chris Leech8faecdd2009-11-03 11:46:19 -0800565 * __fc_linkdown() - Handler for transport linkdown events
566 * @lport: The lport whose link is down
567 *
568 * Locking: must be called with the lp_mutex held
569 */
570void __fc_linkdown(struct fc_lport *lport)
571{
572 if (lport->link_up) {
573 lport->link_up = 0;
574 fc_lport_enter_reset(lport);
575 lport->tt.fcp_cleanup(lport);
576 }
577}
578
579/**
Robert Love34f42a02009-02-27 10:55:45 -0800580 * fc_linkdown() - Handler for transport linkdown events
Robert Love3a3b42b2009-11-03 11:47:39 -0800581 * @lport: The local port whose link is down
Robert Love42e9a922008-12-09 15:10:17 -0800582 */
583void fc_linkdown(struct fc_lport *lport)
584{
Chris Leechce8b5df2010-04-09 14:23:10 -0700585 printk(KERN_INFO "host%d: libfc: Link down on port (%6.6x)\n",
Robert Love7b2787e2010-05-07 15:18:41 -0700586 lport->host->host_no, lport->port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800587
Chris Leech8faecdd2009-11-03 11:46:19 -0800588 mutex_lock(&lport->lp_mutex);
589 __fc_linkdown(lport);
Robert Love42e9a922008-12-09 15:10:17 -0800590 mutex_unlock(&lport->lp_mutex);
591}
592EXPORT_SYMBOL(fc_linkdown);
593
594/**
Robert Love34f42a02009-02-27 10:55:45 -0800595 * fc_fabric_logoff() - Logout of the fabric
Robert Love3a3b42b2009-11-03 11:47:39 -0800596 * @lport: The local port to logoff the fabric
Robert Love42e9a922008-12-09 15:10:17 -0800597 *
598 * Return value:
599 * 0 for success, -1 for failure
Robert Love34f42a02009-02-27 10:55:45 -0800600 */
Robert Love42e9a922008-12-09 15:10:17 -0800601int fc_fabric_logoff(struct fc_lport *lport)
602{
603 lport->tt.disc_stop_final(lport);
604 mutex_lock(&lport->lp_mutex);
Robert Love3a3b42b2009-11-03 11:47:39 -0800605 if (lport->dns_rdata)
606 lport->tt.rport_logoff(lport->dns_rdata);
Abhijeet Joglekara0fd2e42009-04-21 16:27:09 -0700607 mutex_unlock(&lport->lp_mutex);
608 lport->tt.rport_flush_queue();
609 mutex_lock(&lport->lp_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800610 fc_lport_enter_logo(lport);
611 mutex_unlock(&lport->lp_mutex);
Steve Maf7db2c12009-02-27 10:55:13 -0800612 cancel_delayed_work_sync(&lport->retry_work);
Robert Love42e9a922008-12-09 15:10:17 -0800613 return 0;
614}
615EXPORT_SYMBOL(fc_fabric_logoff);
616
617/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800618 * fc_lport_destroy() - Unregister a fc_lport
619 * @lport: The local port to unregister
Robert Love42e9a922008-12-09 15:10:17 -0800620 *
Robert Love42e9a922008-12-09 15:10:17 -0800621 * Note:
622 * exit routine for fc_lport instance
623 * clean-up all the allocated memory
624 * and free up other system resources.
625 *
Robert Love34f42a02009-02-27 10:55:45 -0800626 */
Robert Love42e9a922008-12-09 15:10:17 -0800627int fc_lport_destroy(struct fc_lport *lport)
628{
Abhijeet Joglekarbbf15662009-04-21 16:27:14 -0700629 mutex_lock(&lport->lp_mutex);
Joe Eykholtb1d9fd52009-07-29 17:04:22 -0700630 lport->state = LPORT_ST_DISABLED;
Abhijeet Joglekarbbf15662009-04-21 16:27:14 -0700631 lport->link_up = 0;
Robert Love42e9a922008-12-09 15:10:17 -0800632 lport->tt.frame_send = fc_frame_drop;
Abhijeet Joglekarbbf15662009-04-21 16:27:14 -0700633 mutex_unlock(&lport->lp_mutex);
634
Robert Love42e9a922008-12-09 15:10:17 -0800635 lport->tt.fcp_abort_io(lport);
Joe Eykholte9ba8b42009-07-29 17:04:33 -0700636 lport->tt.disc_stop_final(lport);
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -0800637 lport->tt.exch_mgr_reset(lport, 0, 0);
Joe Eykholt70d53b02011-01-28 16:04:18 -0800638 fc_fc4_del_lport(lport);
Robert Love42e9a922008-12-09 15:10:17 -0800639 return 0;
640}
641EXPORT_SYMBOL(fc_lport_destroy);
642
643/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800644 * fc_set_mfs() - Set the maximum frame size for a local port
645 * @lport: The local port to set the MFS for
646 * @mfs: The new MFS
Robert Love34f42a02009-02-27 10:55:45 -0800647 */
Robert Love42e9a922008-12-09 15:10:17 -0800648int fc_set_mfs(struct fc_lport *lport, u32 mfs)
649{
650 unsigned int old_mfs;
651 int rc = -EINVAL;
652
653 mutex_lock(&lport->lp_mutex);
654
655 old_mfs = lport->mfs;
656
657 if (mfs >= FC_MIN_MAX_FRAME) {
658 mfs &= ~3;
659 if (mfs > FC_MAX_FRAME)
660 mfs = FC_MAX_FRAME;
661 mfs -= sizeof(struct fc_frame_header);
662 lport->mfs = mfs;
663 rc = 0;
664 }
665
666 if (!rc && mfs < old_mfs)
667 fc_lport_enter_reset(lport);
668
669 mutex_unlock(&lport->lp_mutex);
670
671 return rc;
672}
673EXPORT_SYMBOL(fc_set_mfs);
674
675/**
Robert Love34f42a02009-02-27 10:55:45 -0800676 * fc_lport_disc_callback() - Callback for discovery events
Robert Love3a3b42b2009-11-03 11:47:39 -0800677 * @lport: The local port receiving the event
Robert Love42e9a922008-12-09 15:10:17 -0800678 * @event: The discovery event
679 */
Bart Van Asschec6b21c92012-01-13 17:26:20 -0800680static void fc_lport_disc_callback(struct fc_lport *lport,
681 enum fc_disc_event event)
Robert Love42e9a922008-12-09 15:10:17 -0800682{
683 switch (event) {
684 case DISC_EV_SUCCESS:
Robert Love74147052009-06-10 15:31:10 -0700685 FC_LPORT_DBG(lport, "Discovery succeeded\n");
Robert Love42e9a922008-12-09 15:10:17 -0800686 break;
687 case DISC_EV_FAILED:
Joe Eykholte6d8a1b2009-11-03 11:49:11 -0800688 printk(KERN_ERR "host%d: libfc: "
Chris Leechce8b5df2010-04-09 14:23:10 -0700689 "Discovery failed for port (%6.6x)\n",
Robert Love7b2787e2010-05-07 15:18:41 -0700690 lport->host->host_no, lport->port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800691 mutex_lock(&lport->lp_mutex);
692 fc_lport_enter_reset(lport);
693 mutex_unlock(&lport->lp_mutex);
694 break;
695 case DISC_EV_NONE:
696 WARN_ON(1);
697 break;
698 }
699}
700
701/**
Robert Love34f42a02009-02-27 10:55:45 -0800702 * fc_rport_enter_ready() - Enter the ready state and start discovery
Robert Love3a3b42b2009-11-03 11:47:39 -0800703 * @lport: The local port that is ready
Robert Love42e9a922008-12-09 15:10:17 -0800704 *
705 * Locking Note: The lport lock is expected to be held before calling
706 * this routine.
707 */
708static void fc_lport_enter_ready(struct fc_lport *lport)
709{
Robert Love74147052009-06-10 15:31:10 -0700710 FC_LPORT_DBG(lport, "Entered READY from state %s\n",
711 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800712
713 fc_lport_state_enter(lport, LPORT_ST_READY);
Chris Leech8faecdd2009-11-03 11:46:19 -0800714 if (lport->vport)
715 fc_vport_set_state(lport->vport, FC_VPORT_ACTIVE);
716 fc_vports_linkchange(lport);
Robert Love42e9a922008-12-09 15:10:17 -0800717
Robert Love3a3b42b2009-11-03 11:47:39 -0800718 if (!lport->ptp_rdata)
Joe Eykholt29d898e2009-08-25 14:02:49 -0700719 lport->tt.disc_start(fc_lport_disc_callback, lport);
Robert Love42e9a922008-12-09 15:10:17 -0800720}
721
722/**
Joe Eykholt093bb6a2009-11-03 11:49:05 -0800723 * fc_lport_set_port_id() - set the local port Port ID
724 * @lport: The local port which will have its Port ID set.
725 * @port_id: The new port ID.
726 * @fp: The frame containing the incoming request, or NULL.
727 *
728 * Locking Note: The lport lock is expected to be held before calling
729 * this function.
730 */
731static void fc_lport_set_port_id(struct fc_lport *lport, u32 port_id,
732 struct fc_frame *fp)
733{
734 if (port_id)
Chris Leechce8b5df2010-04-09 14:23:10 -0700735 printk(KERN_INFO "host%d: Assigned Port ID %6.6x\n",
Joe Eykholt093bb6a2009-11-03 11:49:05 -0800736 lport->host->host_no, port_id);
737
Robert Love7b2787e2010-05-07 15:18:41 -0700738 lport->port_id = port_id;
739
740 /* Update the fc_host */
Joe Eykholt093bb6a2009-11-03 11:49:05 -0800741 fc_host_port_id(lport->host) = port_id;
Robert Love7b2787e2010-05-07 15:18:41 -0700742
Joe Eykholt093bb6a2009-11-03 11:49:05 -0800743 if (lport->tt.lport_set_port_id)
744 lport->tt.lport_set_port_id(lport, port_id, fp);
745}
746
747/**
Joe Eykholt3726f352010-07-20 15:20:03 -0700748 * fc_lport_set_port_id() - set the local port Port ID for point-to-multipoint
749 * @lport: The local port which will have its Port ID set.
750 * @port_id: The new port ID.
751 *
752 * Called by the lower-level driver when transport sets the local port_id.
753 * This is used in VN_port to VN_port mode for FCoE, and causes FLOGI and
754 * discovery to be skipped.
755 */
756void fc_lport_set_local_id(struct fc_lport *lport, u32 port_id)
757{
758 mutex_lock(&lport->lp_mutex);
759
760 fc_lport_set_port_id(lport, port_id, NULL);
761
762 switch (lport->state) {
763 case LPORT_ST_RESET:
764 case LPORT_ST_FLOGI:
765 if (port_id)
766 fc_lport_enter_ready(lport);
767 break;
768 default:
769 break;
770 }
771 mutex_unlock(&lport->lp_mutex);
772}
773EXPORT_SYMBOL(fc_lport_set_local_id);
774
775/**
Robert Love34f42a02009-02-27 10:55:45 -0800776 * fc_lport_recv_flogi_req() - Receive a FLOGI request
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300777 * @lport: The local port that received the request
Joe Eykholt92261152010-07-20 15:21:12 -0700778 * @rx_fp: The FLOGI frame
Robert Love42e9a922008-12-09 15:10:17 -0800779 *
780 * A received FLOGI request indicates a point-to-point connection.
781 * Accept it with the common service parameters indicating our N port.
782 * Set up to do a PLOGI if we have the higher-number WWPN.
783 *
Joe Eykholt1b69bc02009-10-21 16:27:17 -0700784 * Locking Note: The lport lock is expected to be held before calling
Robert Love42e9a922008-12-09 15:10:17 -0800785 * this function.
786 */
Joe Eykholt92261152010-07-20 15:21:12 -0700787static void fc_lport_recv_flogi_req(struct fc_lport *lport,
788 struct fc_frame *rx_fp)
Robert Love42e9a922008-12-09 15:10:17 -0800789{
790 struct fc_frame *fp;
Joe Eykholt24f089e2010-07-20 15:21:01 -0700791 struct fc_frame_header *fh;
Robert Love42e9a922008-12-09 15:10:17 -0800792 struct fc_els_flogi *flp;
793 struct fc_els_flogi *new_flp;
794 u64 remote_wwpn;
795 u32 remote_fid;
796 u32 local_fid;
Robert Love42e9a922008-12-09 15:10:17 -0800797
Robert Love74147052009-06-10 15:31:10 -0700798 FC_LPORT_DBG(lport, "Received FLOGI request while in state %s\n",
799 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -0800800
Joe Eykholt251748a2010-07-20 15:20:56 -0700801 remote_fid = fc_frame_sid(rx_fp);
Robert Love42e9a922008-12-09 15:10:17 -0800802 flp = fc_frame_payload_get(rx_fp, sizeof(*flp));
803 if (!flp)
804 goto out;
805 remote_wwpn = get_unaligned_be64(&flp->fl_wwpn);
806 if (remote_wwpn == lport->wwpn) {
Joe Eykholte6d8a1b2009-11-03 11:49:11 -0800807 printk(KERN_WARNING "host%d: libfc: Received FLOGI from port "
Chris Leech9f8f3aa2010-04-09 14:23:16 -0700808 "with same WWPN %16.16llx\n",
Joe Eykholte6d8a1b2009-11-03 11:49:11 -0800809 lport->host->host_no, remote_wwpn);
Robert Love42e9a922008-12-09 15:10:17 -0800810 goto out;
811 }
Chris Leech9f8f3aa2010-04-09 14:23:16 -0700812 FC_LPORT_DBG(lport, "FLOGI from port WWPN %16.16llx\n", remote_wwpn);
Robert Love42e9a922008-12-09 15:10:17 -0800813
814 /*
815 * XXX what is the right thing to do for FIDs?
816 * The originator might expect our S_ID to be 0xfffffe.
817 * But if so, both of us could end up with the same FID.
818 */
819 local_fid = FC_LOCAL_PTP_FID_LO;
820 if (remote_wwpn < lport->wwpn) {
821 local_fid = FC_LOCAL_PTP_FID_HI;
822 if (!remote_fid || remote_fid == local_fid)
823 remote_fid = FC_LOCAL_PTP_FID_LO;
824 } else if (!remote_fid) {
825 remote_fid = FC_LOCAL_PTP_FID_HI;
826 }
827
Joe Eykholt093bb6a2009-11-03 11:49:05 -0800828 fc_lport_set_port_id(lport, local_fid, rx_fp);
Robert Love42e9a922008-12-09 15:10:17 -0800829
830 fp = fc_frame_alloc(lport, sizeof(*flp));
831 if (fp) {
Robert Love42e9a922008-12-09 15:10:17 -0800832 new_flp = fc_frame_payload_get(fp, sizeof(*flp));
833 fc_lport_flogi_fill(lport, new_flp, ELS_FLOGI);
834 new_flp->fl_cmd = (u8) ELS_LS_ACC;
835
836 /*
837 * Send the response. If this fails, the originator should
838 * repeat the sequence.
839 */
Joe Eykholt24f089e2010-07-20 15:21:01 -0700840 fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
841 fh = fc_frame_header_get(fp);
842 hton24(fh->fh_s_id, local_fid);
843 hton24(fh->fh_d_id, remote_fid);
844 lport->tt.frame_send(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800845
846 } else {
847 fc_lport_error(lport, fp);
848 }
849 fc_lport_ptp_setup(lport, remote_fid, remote_wwpn,
850 get_unaligned_be64(&flp->fl_wwnn));
Robert Love42e9a922008-12-09 15:10:17 -0800851out:
Robert Love42e9a922008-12-09 15:10:17 -0800852 fc_frame_free(rx_fp);
853}
854
855/**
Joe Eykholt96ad8462011-01-28 16:04:02 -0800856 * fc_lport_recv_els_req() - The generic lport ELS request handler
Robert Love3a3b42b2009-11-03 11:47:39 -0800857 * @lport: The local port that received the request
Robert Love3a3b42b2009-11-03 11:47:39 -0800858 * @fp: The request frame
Robert Love42e9a922008-12-09 15:10:17 -0800859 *
860 * This function will see if the lport handles the request or
861 * if an rport should handle the request.
862 *
863 * Locking Note: This function should not be called with the lport
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300864 * lock held because it will grab the lock.
Robert Love42e9a922008-12-09 15:10:17 -0800865 */
Joe Eykholt96ad8462011-01-28 16:04:02 -0800866static void fc_lport_recv_els_req(struct fc_lport *lport,
867 struct fc_frame *fp)
Robert Love42e9a922008-12-09 15:10:17 -0800868{
Joe Eykholt92261152010-07-20 15:21:12 -0700869 void (*recv)(struct fc_lport *, struct fc_frame *);
Robert Love42e9a922008-12-09 15:10:17 -0800870
871 mutex_lock(&lport->lp_mutex);
872
873 /*
874 * Handle special ELS cases like FLOGI, LOGO, and
875 * RSCN here. These don't require a session.
876 * Even if we had a session, it might not be ready.
877 */
Joe Eykholte9ba8b42009-07-29 17:04:33 -0700878 if (!lport->link_up)
879 fc_frame_free(fp);
Joe Eykholt96ad8462011-01-28 16:04:02 -0800880 else {
Robert Love42e9a922008-12-09 15:10:17 -0800881 /*
882 * Check opcode.
883 */
Joe Eykholt131203a2009-08-25 14:03:10 -0700884 recv = lport->tt.rport_recv_req;
Robert Love42e9a922008-12-09 15:10:17 -0800885 switch (fc_frame_payload_op(fp)) {
886 case ELS_FLOGI:
Joe Eykholta7b12a22010-07-20 15:20:08 -0700887 if (!lport->point_to_multipoint)
888 recv = fc_lport_recv_flogi_req;
Robert Love42e9a922008-12-09 15:10:17 -0800889 break;
890 case ELS_LOGO:
Joe Eykholt251748a2010-07-20 15:20:56 -0700891 if (fc_frame_sid(fp) == FC_FID_FLOGI)
Robert Love42e9a922008-12-09 15:10:17 -0800892 recv = fc_lport_recv_logo_req;
893 break;
894 case ELS_RSCN:
895 recv = lport->tt.disc_recv_req;
896 break;
897 case ELS_ECHO:
898 recv = fc_lport_recv_echo_req;
899 break;
900 case ELS_RLIR:
901 recv = fc_lport_recv_rlir_req;
902 break;
903 case ELS_RNID:
904 recv = fc_lport_recv_rnid_req;
905 break;
Robert Love42e9a922008-12-09 15:10:17 -0800906 }
907
Joe Eykholt92261152010-07-20 15:21:12 -0700908 recv(lport, fp);
Robert Love42e9a922008-12-09 15:10:17 -0800909 }
910 mutex_unlock(&lport->lp_mutex);
Robert Love42e9a922008-12-09 15:10:17 -0800911}
912
Joe Eykholt96ad8462011-01-28 16:04:02 -0800913static int fc_lport_els_prli(struct fc_rport_priv *rdata, u32 spp_len,
914 const struct fc_els_spp *spp_in,
915 struct fc_els_spp *spp_out)
916{
917 return FC_SPP_RESP_INVL;
918}
919
920struct fc4_prov fc_lport_els_prov = {
921 .prli = fc_lport_els_prli,
922 .recv = fc_lport_recv_els_req,
923};
924
925/**
926 * fc_lport_recv_req() - The generic lport request handler
927 * @lport: The lport that received the request
928 * @fp: The frame the request is in
929 *
930 * Locking Note: This function should not be called with the lport
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300931 * lock held because it may grab the lock.
Joe Eykholt96ad8462011-01-28 16:04:02 -0800932 */
933static void fc_lport_recv_req(struct fc_lport *lport,
934 struct fc_frame *fp)
935{
936 struct fc_frame_header *fh = fc_frame_header_get(fp);
937 struct fc_seq *sp = fr_seq(fp);
938 struct fc4_prov *prov;
939
940 /*
941 * Use RCU read lock and module_lock to be sure module doesn't
942 * deregister and get unloaded while we're calling it.
943 * try_module_get() is inlined and accepts a NULL parameter.
944 * Only ELSes and FCP target ops should come through here.
945 * The locking is unfortunate, and a better scheme is being sought.
946 */
947
948 rcu_read_lock();
949 if (fh->fh_type >= FC_FC4_PROV_SIZE)
950 goto drop;
951 prov = rcu_dereference(fc_passive_prov[fh->fh_type]);
952 if (!prov || !try_module_get(prov->module))
953 goto drop;
954 rcu_read_unlock();
955 prov->recv(lport, fp);
956 module_put(prov->module);
957 return;
958drop:
959 rcu_read_unlock();
960 FC_LPORT_DBG(lport, "dropping unexpected frame type %x\n", fh->fh_type);
961 fc_frame_free(fp);
962 lport->tt.exch_done(sp);
963}
964
Robert Love42e9a922008-12-09 15:10:17 -0800965/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800966 * fc_lport_reset() - Reset a local port
967 * @lport: The local port which should be reset
Robert Love42e9a922008-12-09 15:10:17 -0800968 *
969 * Locking Note: This functions should not be called with the
970 * lport lock held.
971 */
972int fc_lport_reset(struct fc_lport *lport)
973{
Steve Maf7db2c12009-02-27 10:55:13 -0800974 cancel_delayed_work_sync(&lport->retry_work);
Robert Love42e9a922008-12-09 15:10:17 -0800975 mutex_lock(&lport->lp_mutex);
976 fc_lport_enter_reset(lport);
977 mutex_unlock(&lport->lp_mutex);
978 return 0;
979}
980EXPORT_SYMBOL(fc_lport_reset);
981
982/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800983 * fc_lport_reset_locked() - Reset the local port w/ the lport lock held
984 * @lport: The local port to be reset
Robert Love42e9a922008-12-09 15:10:17 -0800985 *
986 * Locking Note: The lport lock is expected to be held before calling
987 * this routine.
988 */
Joe Eykholt1190d922009-07-29 17:04:27 -0700989static void fc_lport_reset_locked(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -0800990{
Robert Love3a3b42b2009-11-03 11:47:39 -0800991 if (lport->dns_rdata)
992 lport->tt.rport_logoff(lport->dns_rdata);
Robert Love42e9a922008-12-09 15:10:17 -0800993
Joe Eykholt2f2ac4a2010-03-12 16:07:46 -0800994 if (lport->ptp_rdata) {
995 lport->tt.rport_logoff(lport->ptp_rdata);
996 kref_put(&lport->ptp_rdata->kref, lport->tt.rport_destroy);
997 lport->ptp_rdata = NULL;
998 }
Robert Love42e9a922008-12-09 15:10:17 -0800999
1000 lport->tt.disc_stop(lport);
1001
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -08001002 lport->tt.exch_mgr_reset(lport, 0, 0);
Robert Love42e9a922008-12-09 15:10:17 -08001003 fc_host_fabric_name(lport->host) = 0;
Joe Eykholt093bb6a2009-11-03 11:49:05 -08001004
Joe Eykholt3726f352010-07-20 15:20:03 -07001005 if (lport->port_id && (!lport->point_to_multipoint || !lport->link_up))
Joe Eykholt093bb6a2009-11-03 11:49:05 -08001006 fc_lport_set_port_id(lport, 0, NULL);
Joe Eykholt1190d922009-07-29 17:04:27 -07001007}
Robert Love42e9a922008-12-09 15:10:17 -08001008
Joe Eykholt1190d922009-07-29 17:04:27 -07001009/**
1010 * fc_lport_enter_reset() - Reset the local port
Robert Love3a3b42b2009-11-03 11:47:39 -08001011 * @lport: The local port to be reset
Joe Eykholt1190d922009-07-29 17:04:27 -07001012 *
1013 * Locking Note: The lport lock is expected to be held before calling
1014 * this routine.
1015 */
1016static void fc_lport_enter_reset(struct fc_lport *lport)
1017{
1018 FC_LPORT_DBG(lport, "Entered RESET state from %s state\n",
1019 fc_lport_state(lport));
1020
Vasu Dev55a66d32009-12-10 09:59:31 -08001021 if (lport->state == LPORT_ST_DISABLED || lport->state == LPORT_ST_LOGO)
1022 return;
1023
Chris Leech8faecdd2009-11-03 11:46:19 -08001024 if (lport->vport) {
1025 if (lport->link_up)
1026 fc_vport_set_state(lport->vport, FC_VPORT_INITIALIZING);
1027 else
1028 fc_vport_set_state(lport->vport, FC_VPORT_LINKDOWN);
1029 }
Joe Eykholt1190d922009-07-29 17:04:27 -07001030 fc_lport_state_enter(lport, LPORT_ST_RESET);
Vasu Dev9b7d1612011-06-20 16:59:46 -07001031 fc_host_post_event(lport->host, fc_get_event_number(),
1032 FCH_EVT_LIPRESET, 0);
Chris Leech8faecdd2009-11-03 11:46:19 -08001033 fc_vports_linkchange(lport);
Joe Eykholt1190d922009-07-29 17:04:27 -07001034 fc_lport_reset_locked(lport);
Vasu Devb6e3c842011-10-28 11:34:17 -07001035 if (lport->link_up)
Robert Love42e9a922008-12-09 15:10:17 -08001036 fc_lport_enter_flogi(lport);
1037}
1038
1039/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001040 * fc_lport_enter_disabled() - Disable the local port
1041 * @lport: The local port to be reset
Joe Eykholt1190d922009-07-29 17:04:27 -07001042 *
1043 * Locking Note: The lport lock is expected to be held before calling
1044 * this routine.
1045 */
1046static void fc_lport_enter_disabled(struct fc_lport *lport)
1047{
1048 FC_LPORT_DBG(lport, "Entered disabled state from %s state\n",
1049 fc_lport_state(lport));
1050
1051 fc_lport_state_enter(lport, LPORT_ST_DISABLED);
Chris Leech8faecdd2009-11-03 11:46:19 -08001052 fc_vports_linkchange(lport);
Joe Eykholt1190d922009-07-29 17:04:27 -07001053 fc_lport_reset_locked(lport);
1054}
1055
1056/**
Robert Love34f42a02009-02-27 10:55:45 -08001057 * fc_lport_error() - Handler for any errors
Robert Love3a3b42b2009-11-03 11:47:39 -08001058 * @lport: The local port that the error was on
1059 * @fp: The error code encoded in a frame pointer
Robert Love42e9a922008-12-09 15:10:17 -08001060 *
1061 * If the error was caused by a resource allocation failure
1062 * then wait for half a second and retry, otherwise retry
1063 * after the e_d_tov time.
1064 */
1065static void fc_lport_error(struct fc_lport *lport, struct fc_frame *fp)
1066{
1067 unsigned long delay = 0;
Robert Love74147052009-06-10 15:31:10 -07001068 FC_LPORT_DBG(lport, "Error %ld in state %s, retries %d\n",
1069 PTR_ERR(fp), fc_lport_state(lport),
1070 lport->retry_count);
Robert Love42e9a922008-12-09 15:10:17 -08001071
Bhanu Prakash Gollapudi7f985232010-07-20 15:21:27 -07001072 if (PTR_ERR(fp) == -FC_EX_CLOSED)
1073 return;
Robert Love42e9a922008-12-09 15:10:17 -08001074
Bhanu Prakash Gollapudi7f985232010-07-20 15:21:27 -07001075 /*
1076 * Memory allocation failure, or the exchange timed out
1077 * or we received LS_RJT.
1078 * Retry after delay
1079 */
1080 if (lport->retry_count < lport->max_retry_count) {
1081 lport->retry_count++;
1082 if (!fp)
1083 delay = msecs_to_jiffies(500);
1084 else
1085 delay = msecs_to_jiffies(lport->e_d_tov);
1086
1087 schedule_delayed_work(&lport->retry_work, delay);
1088 } else
1089 fc_lport_enter_reset(lport);
Robert Love42e9a922008-12-09 15:10:17 -08001090}
1091
1092/**
Chris Leech7cccc152009-11-03 11:47:07 -08001093 * fc_lport_ns_resp() - Handle response to a name server
Robert Love3a3b42b2009-11-03 11:47:39 -08001094 * registration exchange
1095 * @sp: current sequence in exchange
1096 * @fp: response frame
Robert Love42e9a922008-12-09 15:10:17 -08001097 * @lp_arg: Fibre Channel host port instance
1098 *
1099 * Locking Note: This function will be called without the lport lock
Robert Love3a3b42b2009-11-03 11:47:39 -08001100 * held, but it will lock, call an _enter_* function or fc_lport_error()
Robert Love42e9a922008-12-09 15:10:17 -08001101 * and then unlock the lport.
1102 */
Chris Leech7cccc152009-11-03 11:47:07 -08001103static void fc_lport_ns_resp(struct fc_seq *sp, struct fc_frame *fp,
1104 void *lp_arg)
Robert Love42e9a922008-12-09 15:10:17 -08001105{
1106 struct fc_lport *lport = lp_arg;
1107 struct fc_frame_header *fh;
1108 struct fc_ct_hdr *ct;
1109
Chris Leech7cccc152009-11-03 11:47:07 -08001110 FC_LPORT_DBG(lport, "Received a ns %s\n", fc_els_resp_type(fp));
Joe Eykholtf657d292009-08-25 14:03:21 -07001111
Robert Love42e9a922008-12-09 15:10:17 -08001112 if (fp == ERR_PTR(-FC_EX_CLOSED))
1113 return;
1114
1115 mutex_lock(&lport->lp_mutex);
1116
Joe Eykholtab593b12009-11-03 11:49:27 -08001117 if (lport->state < LPORT_ST_RNN_ID || lport->state > LPORT_ST_RFF_ID) {
Chris Leech7cccc152009-11-03 11:47:07 -08001118 FC_LPORT_DBG(lport, "Received a name server response, "
Robert Love3a3b42b2009-11-03 11:47:39 -08001119 "but in state %s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001120 if (IS_ERR(fp))
1121 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001122 goto out;
1123 }
1124
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001125 if (IS_ERR(fp)) {
1126 fc_lport_error(lport, fp);
1127 goto err;
1128 }
1129
Robert Love42e9a922008-12-09 15:10:17 -08001130 fh = fc_frame_header_get(fp);
1131 ct = fc_frame_payload_get(fp, sizeof(*ct));
1132
1133 if (fh && ct && fh->fh_type == FC_TYPE_CT &&
1134 ct->ct_fs_type == FC_FST_DIR &&
1135 ct->ct_fs_subtype == FC_NS_SUBTYPE &&
1136 ntohs(ct->ct_cmd) == FC_FS_ACC)
Chris Leech7cccc152009-11-03 11:47:07 -08001137 switch (lport->state) {
1138 case LPORT_ST_RNN_ID:
Chris Leechc914f7d2009-11-03 11:47:12 -08001139 fc_lport_enter_ns(lport, LPORT_ST_RSNN_NN);
Chris Leech7cccc152009-11-03 11:47:07 -08001140 break;
1141 case LPORT_ST_RSNN_NN:
Chris Leechc914f7d2009-11-03 11:47:12 -08001142 fc_lport_enter_ns(lport, LPORT_ST_RSPN_ID);
Chris Leech7cccc152009-11-03 11:47:07 -08001143 break;
1144 case LPORT_ST_RSPN_ID:
Chris Leechc914f7d2009-11-03 11:47:12 -08001145 fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
Chris Leech7cccc152009-11-03 11:47:07 -08001146 break;
1147 case LPORT_ST_RFT_ID:
Joe Eykholtab593b12009-11-03 11:49:27 -08001148 fc_lport_enter_ns(lport, LPORT_ST_RFF_ID);
1149 break;
1150 case LPORT_ST_RFF_ID:
Chris Leech7cccc152009-11-03 11:47:07 -08001151 fc_lport_enter_scr(lport);
1152 break;
1153 default:
1154 /* should have already been caught by state checks */
1155 break;
1156 }
Robert Love42e9a922008-12-09 15:10:17 -08001157 else
1158 fc_lport_error(lport, fp);
1159out:
1160 fc_frame_free(fp);
1161err:
1162 mutex_unlock(&lport->lp_mutex);
1163}
1164
1165/**
Robert Love34f42a02009-02-27 10:55:45 -08001166 * fc_lport_scr_resp() - Handle response to State Change Register (SCR) request
Robert Love3a3b42b2009-11-03 11:47:39 -08001167 * @sp: current sequence in SCR exchange
1168 * @fp: response frame
Robert Love42e9a922008-12-09 15:10:17 -08001169 * @lp_arg: Fibre Channel lport port instance that sent the registration request
1170 *
1171 * Locking Note: This function will be called without the lport lock
1172 * held, but it will lock, call an _enter_* function or fc_lport_error
1173 * and then unlock the lport.
1174 */
1175static void fc_lport_scr_resp(struct fc_seq *sp, struct fc_frame *fp,
1176 void *lp_arg)
1177{
1178 struct fc_lport *lport = lp_arg;
1179 u8 op;
1180
Joe Eykholtf657d292009-08-25 14:03:21 -07001181 FC_LPORT_DBG(lport, "Received a SCR %s\n", fc_els_resp_type(fp));
1182
Robert Love42e9a922008-12-09 15:10:17 -08001183 if (fp == ERR_PTR(-FC_EX_CLOSED))
1184 return;
1185
1186 mutex_lock(&lport->lp_mutex);
1187
Robert Love42e9a922008-12-09 15:10:17 -08001188 if (lport->state != LPORT_ST_SCR) {
Robert Love74147052009-06-10 15:31:10 -07001189 FC_LPORT_DBG(lport, "Received a SCR response, but in state "
1190 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001191 if (IS_ERR(fp))
1192 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001193 goto out;
1194 }
1195
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001196 if (IS_ERR(fp)) {
1197 fc_lport_error(lport, fp);
1198 goto err;
1199 }
1200
Robert Love42e9a922008-12-09 15:10:17 -08001201 op = fc_frame_payload_op(fp);
1202 if (op == ELS_LS_ACC)
1203 fc_lport_enter_ready(lport);
1204 else
1205 fc_lport_error(lport, fp);
1206
1207out:
1208 fc_frame_free(fp);
1209err:
1210 mutex_unlock(&lport->lp_mutex);
1211}
1212
1213/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001214 * fc_lport_enter_scr() - Send a SCR (State Change Register) request
1215 * @lport: The local port to register for state changes
Robert Love42e9a922008-12-09 15:10:17 -08001216 *
1217 * Locking Note: The lport lock is expected to be held before calling
1218 * this routine.
1219 */
1220static void fc_lport_enter_scr(struct fc_lport *lport)
1221{
1222 struct fc_frame *fp;
1223
Robert Love74147052009-06-10 15:31:10 -07001224 FC_LPORT_DBG(lport, "Entered SCR state from %s state\n",
1225 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001226
1227 fc_lport_state_enter(lport, LPORT_ST_SCR);
1228
1229 fp = fc_frame_alloc(lport, sizeof(struct fc_els_scr));
1230 if (!fp) {
1231 fc_lport_error(lport, fp);
1232 return;
1233 }
1234
Joe Eykholta46f3272009-08-25 14:00:55 -07001235 if (!lport->tt.elsct_send(lport, FC_FID_FCTRL, fp, ELS_SCR,
Joe Eykholtb94f8952009-11-03 11:50:21 -08001236 fc_lport_scr_resp, lport,
1237 2 * lport->r_a_tov))
Chris Leech8f550f92009-10-21 16:28:09 -07001238 fc_lport_error(lport, NULL);
Robert Love42e9a922008-12-09 15:10:17 -08001239}
1240
1241/**
Chris Leechc914f7d2009-11-03 11:47:12 -08001242 * fc_lport_enter_ns() - register some object with the name server
Robert Love42e9a922008-12-09 15:10:17 -08001243 * @lport: Fibre Channel local port to register
1244 *
1245 * Locking Note: The lport lock is expected to be held before calling
1246 * this routine.
1247 */
Chris Leechc914f7d2009-11-03 11:47:12 -08001248static void fc_lport_enter_ns(struct fc_lport *lport, enum fc_lport_state state)
Robert Love42e9a922008-12-09 15:10:17 -08001249{
1250 struct fc_frame *fp;
Chris Leechc914f7d2009-11-03 11:47:12 -08001251 enum fc_ns_req cmd;
1252 int size = sizeof(struct fc_ct_hdr);
Chris Leechc9866a52009-11-03 11:47:01 -08001253 size_t len;
1254
Chris Leechc914f7d2009-11-03 11:47:12 -08001255 FC_LPORT_DBG(lport, "Entered %s state from %s state\n",
1256 fc_lport_state_names[state],
Chris Leechc9866a52009-11-03 11:47:01 -08001257 fc_lport_state(lport));
1258
Chris Leechc914f7d2009-11-03 11:47:12 -08001259 fc_lport_state_enter(lport, state);
Chris Leechc9866a52009-11-03 11:47:01 -08001260
Chris Leechc914f7d2009-11-03 11:47:12 -08001261 switch (state) {
1262 case LPORT_ST_RNN_ID:
1263 cmd = FC_NS_RNN_ID;
1264 size += sizeof(struct fc_ns_rn_id);
1265 break;
1266 case LPORT_ST_RSNN_NN:
1267 len = strnlen(fc_host_symbolic_name(lport->host), 255);
1268 /* if there is no symbolic name, skip to RFT_ID */
1269 if (!len)
1270 return fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1271 cmd = FC_NS_RSNN_NN;
1272 size += sizeof(struct fc_ns_rsnn) + len;
1273 break;
1274 case LPORT_ST_RSPN_ID:
1275 len = strnlen(fc_host_symbolic_name(lport->host), 255);
1276 /* if there is no symbolic name, skip to RFT_ID */
1277 if (!len)
1278 return fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1279 cmd = FC_NS_RSPN_ID;
1280 size += sizeof(struct fc_ns_rspn) + len;
1281 break;
1282 case LPORT_ST_RFT_ID:
1283 cmd = FC_NS_RFT_ID;
1284 size += sizeof(struct fc_ns_rft);
1285 break;
Joe Eykholtab593b12009-11-03 11:49:27 -08001286 case LPORT_ST_RFF_ID:
1287 cmd = FC_NS_RFF_ID;
1288 size += sizeof(struct fc_ns_rff_id);
1289 break;
Chris Leechc914f7d2009-11-03 11:47:12 -08001290 default:
1291 fc_lport_error(lport, NULL);
1292 return;
1293 }
1294
1295 fp = fc_frame_alloc(lport, size);
Chris Leechc9866a52009-11-03 11:47:01 -08001296 if (!fp) {
1297 fc_lport_error(lport, fp);
1298 return;
1299 }
1300
Chris Leechc914f7d2009-11-03 11:47:12 -08001301 if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, cmd,
Chris Leech7cccc152009-11-03 11:47:07 -08001302 fc_lport_ns_resp,
Joe Eykholtb94f8952009-11-03 11:50:21 -08001303 lport, 3 * lport->r_a_tov))
Chris Leechc9c7bd72009-11-03 11:46:51 -08001304 fc_lport_error(lport, fp);
1305}
1306
Robert Love42e9a922008-12-09 15:10:17 -08001307static struct fc_rport_operations fc_lport_rport_ops = {
1308 .event_callback = fc_lport_rport_callback,
1309};
1310
1311/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001312 * fc_rport_enter_dns() - Create a fc_rport for the name server
1313 * @lport: The local port requesting a remote port for the name server
Robert Love42e9a922008-12-09 15:10:17 -08001314 *
1315 * Locking Note: The lport lock is expected to be held before calling
1316 * this routine.
1317 */
1318static void fc_lport_enter_dns(struct fc_lport *lport)
1319{
Joe Eykholtab28f1f2009-08-25 14:00:34 -07001320 struct fc_rport_priv *rdata;
Robert Love42e9a922008-12-09 15:10:17 -08001321
Robert Love74147052009-06-10 15:31:10 -07001322 FC_LPORT_DBG(lport, "Entered DNS state from %s state\n",
1323 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001324
1325 fc_lport_state_enter(lport, LPORT_ST_DNS);
1326
Joe Eykholt48f00902009-08-25 14:01:50 -07001327 mutex_lock(&lport->disc.disc_mutex);
Robert Love9737e6a2009-08-25 14:02:59 -07001328 rdata = lport->tt.rport_create(lport, FC_FID_DIR_SERV);
Joe Eykholt48f00902009-08-25 14:01:50 -07001329 mutex_unlock(&lport->disc.disc_mutex);
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001330 if (!rdata)
Robert Love42e9a922008-12-09 15:10:17 -08001331 goto err;
1332
Robert Love42e9a922008-12-09 15:10:17 -08001333 rdata->ops = &fc_lport_rport_ops;
Joe Eykholt9fb9d322009-08-25 14:00:50 -07001334 lport->tt.rport_login(rdata);
Robert Love42e9a922008-12-09 15:10:17 -08001335 return;
1336
1337err:
1338 fc_lport_error(lport, NULL);
1339}
1340
1341/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001342 * fc_lport_timeout() - Handler for the retry_work timer
1343 * @work: The work struct of the local port
Robert Love42e9a922008-12-09 15:10:17 -08001344 */
1345static void fc_lport_timeout(struct work_struct *work)
1346{
1347 struct fc_lport *lport =
1348 container_of(work, struct fc_lport,
1349 retry_work.work);
1350
1351 mutex_lock(&lport->lp_mutex);
1352
1353 switch (lport->state) {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -07001354 case LPORT_ST_DISABLED:
Robert Love42e9a922008-12-09 15:10:17 -08001355 WARN_ON(1);
1356 break;
Joe Eykholt22655ac2009-10-21 16:27:22 -07001357 case LPORT_ST_READY:
Joe Eykholt22655ac2009-10-21 16:27:22 -07001358 break;
1359 case LPORT_ST_RESET:
1360 break;
Robert Love42e9a922008-12-09 15:10:17 -08001361 case LPORT_ST_FLOGI:
1362 fc_lport_enter_flogi(lport);
1363 break;
1364 case LPORT_ST_DNS:
1365 fc_lport_enter_dns(lport);
1366 break;
Chris Leechc9c7bd72009-11-03 11:46:51 -08001367 case LPORT_ST_RNN_ID:
Chris Leech5baa17c2009-11-03 11:46:56 -08001368 case LPORT_ST_RSNN_NN:
Chris Leechc9866a52009-11-03 11:47:01 -08001369 case LPORT_ST_RSPN_ID:
Robert Love42e9a922008-12-09 15:10:17 -08001370 case LPORT_ST_RFT_ID:
Joe Eykholtab593b12009-11-03 11:49:27 -08001371 case LPORT_ST_RFF_ID:
Chris Leechc914f7d2009-11-03 11:47:12 -08001372 fc_lport_enter_ns(lport, lport->state);
Robert Love42e9a922008-12-09 15:10:17 -08001373 break;
1374 case LPORT_ST_SCR:
1375 fc_lport_enter_scr(lport);
1376 break;
1377 case LPORT_ST_LOGO:
1378 fc_lport_enter_logo(lport);
1379 break;
1380 }
1381
1382 mutex_unlock(&lport->lp_mutex);
1383}
1384
1385/**
Robert Love34f42a02009-02-27 10:55:45 -08001386 * fc_lport_logo_resp() - Handle response to LOGO request
Robert Love3a3b42b2009-11-03 11:47:39 -08001387 * @sp: The sequence that the LOGO was on
1388 * @fp: The LOGO frame
1389 * @lp_arg: The lport port that received the LOGO request
Robert Love42e9a922008-12-09 15:10:17 -08001390 *
1391 * Locking Note: This function will be called without the lport lock
Robert Love3a3b42b2009-11-03 11:47:39 -08001392 * held, but it will lock, call an _enter_* function or fc_lport_error()
Robert Love42e9a922008-12-09 15:10:17 -08001393 * and then unlock the lport.
1394 */
Chris Leech11b56182009-11-03 11:46:29 -08001395void fc_lport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
Robert Love3a3b42b2009-11-03 11:47:39 -08001396 void *lp_arg)
Robert Love42e9a922008-12-09 15:10:17 -08001397{
1398 struct fc_lport *lport = lp_arg;
1399 u8 op;
1400
Joe Eykholtf657d292009-08-25 14:03:21 -07001401 FC_LPORT_DBG(lport, "Received a LOGO %s\n", fc_els_resp_type(fp));
1402
Robert Love42e9a922008-12-09 15:10:17 -08001403 if (fp == ERR_PTR(-FC_EX_CLOSED))
1404 return;
1405
1406 mutex_lock(&lport->lp_mutex);
1407
Robert Love42e9a922008-12-09 15:10:17 -08001408 if (lport->state != LPORT_ST_LOGO) {
Robert Love74147052009-06-10 15:31:10 -07001409 FC_LPORT_DBG(lport, "Received a LOGO response, but in state "
1410 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001411 if (IS_ERR(fp))
1412 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001413 goto out;
1414 }
1415
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001416 if (IS_ERR(fp)) {
1417 fc_lport_error(lport, fp);
1418 goto err;
1419 }
1420
Robert Love42e9a922008-12-09 15:10:17 -08001421 op = fc_frame_payload_op(fp);
1422 if (op == ELS_LS_ACC)
Joe Eykholt1190d922009-07-29 17:04:27 -07001423 fc_lport_enter_disabled(lport);
Robert Love42e9a922008-12-09 15:10:17 -08001424 else
1425 fc_lport_error(lport, fp);
1426
1427out:
1428 fc_frame_free(fp);
1429err:
1430 mutex_unlock(&lport->lp_mutex);
1431}
Chris Leech11b56182009-11-03 11:46:29 -08001432EXPORT_SYMBOL(fc_lport_logo_resp);
Robert Love42e9a922008-12-09 15:10:17 -08001433
1434/**
Robert Love34f42a02009-02-27 10:55:45 -08001435 * fc_rport_enter_logo() - Logout of the fabric
Robert Love3a3b42b2009-11-03 11:47:39 -08001436 * @lport: The local port to be logged out
Robert Love42e9a922008-12-09 15:10:17 -08001437 *
1438 * Locking Note: The lport lock is expected to be held before calling
1439 * this routine.
1440 */
1441static void fc_lport_enter_logo(struct fc_lport *lport)
1442{
1443 struct fc_frame *fp;
1444 struct fc_els_logo *logo;
1445
Robert Love74147052009-06-10 15:31:10 -07001446 FC_LPORT_DBG(lport, "Entered LOGO state from %s state\n",
1447 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001448
1449 fc_lport_state_enter(lport, LPORT_ST_LOGO);
Chris Leech8faecdd2009-11-03 11:46:19 -08001450 fc_vports_linkchange(lport);
Robert Love42e9a922008-12-09 15:10:17 -08001451
Robert Love42e9a922008-12-09 15:10:17 -08001452 fp = fc_frame_alloc(lport, sizeof(*logo));
1453 if (!fp) {
1454 fc_lport_error(lport, fp);
1455 return;
1456 }
1457
Joe Eykholta46f3272009-08-25 14:00:55 -07001458 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_LOGO,
Joe Eykholtb94f8952009-11-03 11:50:21 -08001459 fc_lport_logo_resp, lport,
1460 2 * lport->r_a_tov))
Chris Leech8f550f92009-10-21 16:28:09 -07001461 fc_lport_error(lport, NULL);
Robert Love42e9a922008-12-09 15:10:17 -08001462}
1463
1464/**
Robert Love34f42a02009-02-27 10:55:45 -08001465 * fc_lport_flogi_resp() - Handle response to FLOGI request
Robert Love3a3b42b2009-11-03 11:47:39 -08001466 * @sp: The sequence that the FLOGI was on
1467 * @fp: The FLOGI response frame
1468 * @lp_arg: The lport port that received the FLOGI response
Robert Love42e9a922008-12-09 15:10:17 -08001469 *
1470 * Locking Note: This function will be called without the lport lock
Robert Love3a3b42b2009-11-03 11:47:39 -08001471 * held, but it will lock, call an _enter_* function or fc_lport_error()
Robert Love42e9a922008-12-09 15:10:17 -08001472 * and then unlock the lport.
1473 */
Chris Leech11b56182009-11-03 11:46:29 -08001474void fc_lport_flogi_resp(struct fc_seq *sp, struct fc_frame *fp,
Robert Love3a3b42b2009-11-03 11:47:39 -08001475 void *lp_arg)
Robert Love42e9a922008-12-09 15:10:17 -08001476{
1477 struct fc_lport *lport = lp_arg;
Vasu Dev907c07d2011-10-28 11:34:23 -07001478 struct fc_frame_header *fh;
Robert Love42e9a922008-12-09 15:10:17 -08001479 struct fc_els_flogi *flp;
1480 u32 did;
1481 u16 csp_flags;
1482 unsigned int r_a_tov;
1483 unsigned int e_d_tov;
1484 u16 mfs;
1485
Joe Eykholtf657d292009-08-25 14:03:21 -07001486 FC_LPORT_DBG(lport, "Received a FLOGI %s\n", fc_els_resp_type(fp));
1487
Robert Love42e9a922008-12-09 15:10:17 -08001488 if (fp == ERR_PTR(-FC_EX_CLOSED))
1489 return;
1490
1491 mutex_lock(&lport->lp_mutex);
1492
Robert Love42e9a922008-12-09 15:10:17 -08001493 if (lport->state != LPORT_ST_FLOGI) {
Robert Love74147052009-06-10 15:31:10 -07001494 FC_LPORT_DBG(lport, "Received a FLOGI response, but in state "
1495 "%s\n", fc_lport_state(lport));
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001496 if (IS_ERR(fp))
1497 goto err;
Robert Love42e9a922008-12-09 15:10:17 -08001498 goto out;
1499 }
1500
Abhijeet Joglekar76f68042009-04-21 16:26:58 -07001501 if (IS_ERR(fp)) {
1502 fc_lport_error(lport, fp);
1503 goto err;
1504 }
1505
Vasu Dev907c07d2011-10-28 11:34:23 -07001506 fh = fc_frame_header_get(fp);
Joe Eykholt251748a2010-07-20 15:20:56 -07001507 did = fc_frame_did(fp);
Vasu Dev907c07d2011-10-28 11:34:23 -07001508 if (fh->fh_r_ctl != FC_RCTL_ELS_REP || did == 0 ||
1509 fc_frame_payload_op(fp) != ELS_LS_ACC) {
1510 FC_LPORT_DBG(lport, "FLOGI not accepted or bad response\n");
Bhanu Prakash Gollapudi7f985232010-07-20 15:21:27 -07001511 fc_lport_error(lport, fp);
Vasu Dev907c07d2011-10-28 11:34:23 -07001512 goto err;
1513 }
1514
1515 flp = fc_frame_payload_get(fp, sizeof(*flp));
1516 if (!flp) {
1517 FC_LPORT_DBG(lport, "FLOGI bad response\n");
1518 fc_lport_error(lport, fp);
1519 goto err;
1520 }
1521
1522 mfs = ntohs(flp->fl_csp.sp_bb_data) &
1523 FC_SP_BB_DATA_MASK;
1524 if (mfs >= FC_SP_MIN_MAX_PAYLOAD &&
1525 mfs < lport->mfs)
1526 lport->mfs = mfs;
1527 csp_flags = ntohs(flp->fl_csp.sp_features);
1528 r_a_tov = ntohl(flp->fl_csp.sp_r_a_tov);
1529 e_d_tov = ntohl(flp->fl_csp.sp_e_d_tov);
1530 if (csp_flags & FC_SP_FT_EDTR)
1531 e_d_tov /= 1000000;
1532
1533 lport->npiv_enabled = !!(csp_flags & FC_SP_FT_NPIV_ACC);
1534
1535 if ((csp_flags & FC_SP_FT_FPORT) == 0) {
1536 if (e_d_tov > lport->e_d_tov)
1537 lport->e_d_tov = e_d_tov;
1538 lport->r_a_tov = 2 * e_d_tov;
1539 fc_lport_set_port_id(lport, did, fp);
1540 printk(KERN_INFO "host%d: libfc: "
1541 "Port (%6.6x) entered "
1542 "point-to-point mode\n",
1543 lport->host->host_no, did);
1544 fc_lport_ptp_setup(lport, fc_frame_sid(fp),
1545 get_unaligned_be64(
1546 &flp->fl_wwpn),
1547 get_unaligned_be64(
1548 &flp->fl_wwnn));
1549 } else {
1550 lport->e_d_tov = e_d_tov;
1551 lport->r_a_tov = r_a_tov;
1552 fc_host_fabric_name(lport->host) =
1553 get_unaligned_be64(&flp->fl_wwnn);
1554 fc_lport_set_port_id(lport, did, fp);
1555 fc_lport_enter_dns(lport);
Vasu Dev60a3c4d2010-10-08 17:12:20 -07001556 }
Robert Love42e9a922008-12-09 15:10:17 -08001557
1558out:
1559 fc_frame_free(fp);
1560err:
1561 mutex_unlock(&lport->lp_mutex);
1562}
Chris Leech11b56182009-11-03 11:46:29 -08001563EXPORT_SYMBOL(fc_lport_flogi_resp);
Robert Love42e9a922008-12-09 15:10:17 -08001564
1565/**
Robert Love34f42a02009-02-27 10:55:45 -08001566 * fc_rport_enter_flogi() - Send a FLOGI request to the fabric manager
Robert Love42e9a922008-12-09 15:10:17 -08001567 * @lport: Fibre Channel local port to be logged in to the fabric
1568 *
1569 * Locking Note: The lport lock is expected to be held before calling
1570 * this routine.
1571 */
Bart Van Asschec6b21c92012-01-13 17:26:20 -08001572static void fc_lport_enter_flogi(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -08001573{
1574 struct fc_frame *fp;
1575
Robert Love74147052009-06-10 15:31:10 -07001576 FC_LPORT_DBG(lport, "Entered FLOGI state from %s state\n",
1577 fc_lport_state(lport));
Robert Love42e9a922008-12-09 15:10:17 -08001578
1579 fc_lport_state_enter(lport, LPORT_ST_FLOGI);
1580
Joe Eykholt3726f352010-07-20 15:20:03 -07001581 if (lport->point_to_multipoint) {
1582 if (lport->port_id)
1583 fc_lport_enter_ready(lport);
1584 return;
1585 }
1586
Robert Love42e9a922008-12-09 15:10:17 -08001587 fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
1588 if (!fp)
1589 return fc_lport_error(lport, fp);
1590
Chris Leechdb36c062009-11-03 11:46:24 -08001591 if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp,
1592 lport->vport ? ELS_FDISC : ELS_FLOGI,
Joe Eykholtb94f8952009-11-03 11:50:21 -08001593 fc_lport_flogi_resp, lport,
1594 lport->vport ? 2 * lport->r_a_tov :
1595 lport->e_d_tov))
Chris Leech8f550f92009-10-21 16:28:09 -07001596 fc_lport_error(lport, NULL);
Robert Love42e9a922008-12-09 15:10:17 -08001597}
1598
Robert Love3a3b42b2009-11-03 11:47:39 -08001599/**
1600 * fc_lport_config() - Configure a fc_lport
1601 * @lport: The local port to be configured
1602 */
Robert Love42e9a922008-12-09 15:10:17 -08001603int fc_lport_config(struct fc_lport *lport)
1604{
1605 INIT_DELAYED_WORK(&lport->retry_work, fc_lport_timeout);
1606 mutex_init(&lport->lp_mutex);
1607
Joe Eykholtb1d9fd52009-07-29 17:04:22 -07001608 fc_lport_state_enter(lport, LPORT_ST_DISABLED);
Robert Love42e9a922008-12-09 15:10:17 -08001609
1610 fc_lport_add_fc4_type(lport, FC_TYPE_FCP);
1611 fc_lport_add_fc4_type(lport, FC_TYPE_CT);
Kiran Patilacc1a922011-01-28 16:05:22 -08001612 fc_fc4_conf_lport_params(lport, FC_TYPE_FCP);
Robert Love42e9a922008-12-09 15:10:17 -08001613
1614 return 0;
1615}
1616EXPORT_SYMBOL(fc_lport_config);
1617
Robert Love3a3b42b2009-11-03 11:47:39 -08001618/**
1619 * fc_lport_init() - Initialize the lport layer for a local port
1620 * @lport: The local port to initialize the exchange layer for
1621 */
Robert Love42e9a922008-12-09 15:10:17 -08001622int fc_lport_init(struct fc_lport *lport)
1623{
1624 if (!lport->tt.lport_recv)
1625 lport->tt.lport_recv = fc_lport_recv_req;
1626
1627 if (!lport->tt.lport_reset)
1628 lport->tt.lport_reset = fc_lport_reset;
1629
1630 fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
1631 fc_host_node_name(lport->host) = lport->wwnn;
1632 fc_host_port_name(lport->host) = lport->wwpn;
1633 fc_host_supported_classes(lport->host) = FC_COS_CLASS3;
1634 memset(fc_host_supported_fc4s(lport->host), 0,
1635 sizeof(fc_host_supported_fc4s(lport->host)));
1636 fc_host_supported_fc4s(lport->host)[2] = 1;
1637 fc_host_supported_fc4s(lport->host)[7] = 1;
1638
1639 /* This value is also unchanging */
1640 memset(fc_host_active_fc4s(lport->host), 0,
1641 sizeof(fc_host_active_fc4s(lport->host)));
1642 fc_host_active_fc4s(lport->host)[2] = 1;
1643 fc_host_active_fc4s(lport->host)[7] = 1;
1644 fc_host_maxframe_size(lport->host) = lport->mfs;
1645 fc_host_supported_speeds(lport->host) = 0;
1646 if (lport->link_supported_speeds & FC_PORTSPEED_1GBIT)
1647 fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_1GBIT;
1648 if (lport->link_supported_speeds & FC_PORTSPEED_10GBIT)
1649 fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_10GBIT;
Joe Eykholt70d53b02011-01-28 16:04:18 -08001650 fc_fc4_add_lport(lport);
Robert Love42e9a922008-12-09 15:10:17 -08001651
Robert Love42e9a922008-12-09 15:10:17 -08001652 return 0;
1653}
1654EXPORT_SYMBOL(fc_lport_init);
Steve Maa51ab392009-11-03 11:47:34 -08001655
1656/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001657 * fc_lport_bsg_resp() - The common response handler for FC Passthrough requests
1658 * @sp: The sequence for the FC Passthrough response
1659 * @fp: The response frame
1660 * @info_arg: The BSG info that the response is for
Steve Maa51ab392009-11-03 11:47:34 -08001661 */
1662static void fc_lport_bsg_resp(struct fc_seq *sp, struct fc_frame *fp,
1663 void *info_arg)
1664{
1665 struct fc_bsg_info *info = info_arg;
1666 struct fc_bsg_job *job = info->job;
1667 struct fc_lport *lport = info->lport;
1668 struct fc_frame_header *fh;
1669 size_t len;
1670 void *buf;
1671
1672 if (IS_ERR(fp)) {
1673 job->reply->result = (PTR_ERR(fp) == -FC_EX_CLOSED) ?
1674 -ECONNABORTED : -ETIMEDOUT;
1675 job->reply_len = sizeof(uint32_t);
1676 job->state_flags |= FC_RQST_STATE_DONE;
1677 job->job_done(job);
1678 kfree(info);
1679 return;
1680 }
1681
1682 mutex_lock(&lport->lp_mutex);
1683 fh = fc_frame_header_get(fp);
1684 len = fr_len(fp) - sizeof(*fh);
1685 buf = fc_frame_payload_get(fp, 0);
1686
1687 if (fr_sof(fp) == FC_SOF_I3 && !ntohs(fh->fh_seq_cnt)) {
1688 /* Get the response code from the first frame payload */
1689 unsigned short cmd = (info->rsp_code == FC_FS_ACC) ?
1690 ntohs(((struct fc_ct_hdr *)buf)->ct_cmd) :
1691 (unsigned short)fc_frame_payload_op(fp);
1692
1693 /* Save the reply status of the job */
1694 job->reply->reply_data.ctels_reply.status =
1695 (cmd == info->rsp_code) ?
1696 FC_CTELS_STATUS_OK : FC_CTELS_STATUS_REJECT;
1697 }
1698
1699 job->reply->reply_payload_rcv_len +=
1700 fc_copy_buffer_to_sglist(buf, len, info->sg, &info->nents,
Cong Wang77dfce02011-11-25 23:14:23 +08001701 &info->offset, NULL);
Steve Maa51ab392009-11-03 11:47:34 -08001702
1703 if (fr_eof(fp) == FC_EOF_T &&
1704 (ntoh24(fh->fh_f_ctl) & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) ==
1705 (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) {
1706 if (job->reply->reply_payload_rcv_len >
1707 job->reply_payload.payload_len)
1708 job->reply->reply_payload_rcv_len =
1709 job->reply_payload.payload_len;
1710 job->reply->result = 0;
1711 job->state_flags |= FC_RQST_STATE_DONE;
1712 job->job_done(job);
1713 kfree(info);
1714 }
1715 fc_frame_free(fp);
1716 mutex_unlock(&lport->lp_mutex);
1717}
1718
1719/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001720 * fc_lport_els_request() - Send ELS passthrough request
1721 * @job: The BSG Passthrough job
Steve Maa51ab392009-11-03 11:47:34 -08001722 * @lport: The local port sending the request
Robert Love3a3b42b2009-11-03 11:47:39 -08001723 * @did: The destination port id
Steve Maa51ab392009-11-03 11:47:34 -08001724 *
1725 * Locking Note: The lport lock is expected to be held before calling
1726 * this routine.
1727 */
1728static int fc_lport_els_request(struct fc_bsg_job *job,
1729 struct fc_lport *lport,
1730 u32 did, u32 tov)
1731{
1732 struct fc_bsg_info *info;
1733 struct fc_frame *fp;
1734 struct fc_frame_header *fh;
1735 char *pp;
1736 int len;
1737
Yi Zou70d919f2009-11-20 14:54:41 -08001738 fp = fc_frame_alloc(lport, job->request_payload.payload_len);
Steve Maa51ab392009-11-03 11:47:34 -08001739 if (!fp)
1740 return -ENOMEM;
1741
1742 len = job->request_payload.payload_len;
1743 pp = fc_frame_payload_get(fp, len);
1744
1745 sg_copy_to_buffer(job->request_payload.sg_list,
1746 job->request_payload.sg_cnt,
1747 pp, len);
1748
1749 fh = fc_frame_header_get(fp);
1750 fh->fh_r_ctl = FC_RCTL_ELS_REQ;
1751 hton24(fh->fh_d_id, did);
Robert Love7b2787e2010-05-07 15:18:41 -07001752 hton24(fh->fh_s_id, lport->port_id);
Steve Maa51ab392009-11-03 11:47:34 -08001753 fh->fh_type = FC_TYPE_ELS;
Joe Eykholt24f089e2010-07-20 15:21:01 -07001754 hton24(fh->fh_f_ctl, FC_FCTL_REQ);
Steve Maa51ab392009-11-03 11:47:34 -08001755 fh->fh_cs_ctl = 0;
1756 fh->fh_df_ctl = 0;
1757 fh->fh_parm_offset = 0;
1758
1759 info = kzalloc(sizeof(struct fc_bsg_info), GFP_KERNEL);
1760 if (!info) {
1761 fc_frame_free(fp);
1762 return -ENOMEM;
1763 }
1764
1765 info->job = job;
1766 info->lport = lport;
1767 info->rsp_code = ELS_LS_ACC;
1768 info->nents = job->reply_payload.sg_cnt;
1769 info->sg = job->reply_payload.sg_list;
1770
1771 if (!lport->tt.exch_seq_send(lport, fp, fc_lport_bsg_resp,
Hillf Danton72e0daa2010-11-30 16:18:59 -08001772 NULL, info, tov)) {
1773 kfree(info);
Steve Maa51ab392009-11-03 11:47:34 -08001774 return -ECOMM;
Hillf Danton72e0daa2010-11-30 16:18:59 -08001775 }
Steve Maa51ab392009-11-03 11:47:34 -08001776 return 0;
1777}
1778
1779/**
Robert Love3a3b42b2009-11-03 11:47:39 -08001780 * fc_lport_ct_request() - Send CT Passthrough request
1781 * @job: The BSG Passthrough job
Steve Maa51ab392009-11-03 11:47:34 -08001782 * @lport: The local port sending the request
1783 * @did: The destination FC-ID
Robert Love3a3b42b2009-11-03 11:47:39 -08001784 * @tov: The timeout period to wait for the response
Steve Maa51ab392009-11-03 11:47:34 -08001785 *
1786 * Locking Note: The lport lock is expected to be held before calling
1787 * this routine.
1788 */
1789static int fc_lport_ct_request(struct fc_bsg_job *job,
1790 struct fc_lport *lport, u32 did, u32 tov)
1791{
1792 struct fc_bsg_info *info;
1793 struct fc_frame *fp;
1794 struct fc_frame_header *fh;
1795 struct fc_ct_req *ct;
1796 size_t len;
1797
1798 fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) +
1799 job->request_payload.payload_len);
1800 if (!fp)
1801 return -ENOMEM;
1802
1803 len = job->request_payload.payload_len;
1804 ct = fc_frame_payload_get(fp, len);
1805
1806 sg_copy_to_buffer(job->request_payload.sg_list,
1807 job->request_payload.sg_cnt,
1808 ct, len);
1809
1810 fh = fc_frame_header_get(fp);
1811 fh->fh_r_ctl = FC_RCTL_DD_UNSOL_CTL;
1812 hton24(fh->fh_d_id, did);
Robert Love7b2787e2010-05-07 15:18:41 -07001813 hton24(fh->fh_s_id, lport->port_id);
Steve Maa51ab392009-11-03 11:47:34 -08001814 fh->fh_type = FC_TYPE_CT;
Joe Eykholt24f089e2010-07-20 15:21:01 -07001815 hton24(fh->fh_f_ctl, FC_FCTL_REQ);
Steve Maa51ab392009-11-03 11:47:34 -08001816 fh->fh_cs_ctl = 0;
1817 fh->fh_df_ctl = 0;
1818 fh->fh_parm_offset = 0;
1819
1820 info = kzalloc(sizeof(struct fc_bsg_info), GFP_KERNEL);
1821 if (!info) {
1822 fc_frame_free(fp);
1823 return -ENOMEM;
1824 }
1825
1826 info->job = job;
1827 info->lport = lport;
1828 info->rsp_code = FC_FS_ACC;
1829 info->nents = job->reply_payload.sg_cnt;
1830 info->sg = job->reply_payload.sg_list;
1831
1832 if (!lport->tt.exch_seq_send(lport, fp, fc_lport_bsg_resp,
Hillf Danton2d6dfb02010-11-30 16:18:54 -08001833 NULL, info, tov)) {
1834 kfree(info);
Steve Maa51ab392009-11-03 11:47:34 -08001835 return -ECOMM;
Hillf Danton2d6dfb02010-11-30 16:18:54 -08001836 }
Steve Maa51ab392009-11-03 11:47:34 -08001837 return 0;
1838}
1839
1840/**
1841 * fc_lport_bsg_request() - The common entry point for sending
Robert Love3a3b42b2009-11-03 11:47:39 -08001842 * FC Passthrough requests
1843 * @job: The BSG passthrough job
Steve Maa51ab392009-11-03 11:47:34 -08001844 */
1845int fc_lport_bsg_request(struct fc_bsg_job *job)
1846{
1847 struct request *rsp = job->req->next_rq;
1848 struct Scsi_Host *shost = job->shost;
1849 struct fc_lport *lport = shost_priv(shost);
1850 struct fc_rport *rport;
1851 struct fc_rport_priv *rdata;
1852 int rc = -EINVAL;
1853 u32 did;
1854
1855 job->reply->reply_payload_rcv_len = 0;
Hugh Daschbachb248df32010-01-21 10:15:55 -08001856 if (rsp)
1857 rsp->resid_len = job->reply_payload.payload_len;
Steve Maa51ab392009-11-03 11:47:34 -08001858
1859 mutex_lock(&lport->lp_mutex);
1860
1861 switch (job->request->msgcode) {
1862 case FC_BSG_RPT_ELS:
1863 rport = job->rport;
1864 if (!rport)
1865 break;
1866
1867 rdata = rport->dd_data;
1868 rc = fc_lport_els_request(job, lport, rport->port_id,
1869 rdata->e_d_tov);
1870 break;
1871
1872 case FC_BSG_RPT_CT:
1873 rport = job->rport;
1874 if (!rport)
1875 break;
1876
1877 rdata = rport->dd_data;
1878 rc = fc_lport_ct_request(job, lport, rport->port_id,
1879 rdata->e_d_tov);
1880 break;
1881
1882 case FC_BSG_HST_CT:
1883 did = ntoh24(job->request->rqst_data.h_ct.port_id);
1884 if (did == FC_FID_DIR_SERV)
Robert Love3a3b42b2009-11-03 11:47:39 -08001885 rdata = lport->dns_rdata;
Steve Maa51ab392009-11-03 11:47:34 -08001886 else
1887 rdata = lport->tt.rport_lookup(lport, did);
1888
1889 if (!rdata)
1890 break;
1891
1892 rc = fc_lport_ct_request(job, lport, did, rdata->e_d_tov);
1893 break;
1894
1895 case FC_BSG_HST_ELS_NOLOGIN:
1896 did = ntoh24(job->request->rqst_data.h_els.port_id);
1897 rc = fc_lport_els_request(job, lport, did, lport->e_d_tov);
1898 break;
1899 }
1900
1901 mutex_unlock(&lport->lp_mutex);
1902 return rc;
1903}
1904EXPORT_SYMBOL(fc_lport_bsg_request);