Linux Audio

Check our new training course

Loading...
v6.8
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * Copyright(c) 2007 Intel Corporation. All rights reserved.
   4 *
 
 
 
 
 
 
 
 
 
 
 
 
 
   5 * Maintained at www.Open-FCoE.org
   6 */
   7
   8/*
   9 * PORT LOCKING NOTES
  10 *
  11 * These comments only apply to the 'port code' which consists of the lport,
  12 * disc and rport blocks.
  13 *
  14 * MOTIVATION
  15 *
  16 * The lport, disc and rport blocks all have mutexes that are used to protect
  17 * those objects. The main motivation for these locks is to prevent from
  18 * having an lport reset just before we send a frame. In that scenario the
  19 * lport's FID would get set to zero and then we'd send a frame with an
  20 * invalid SID. We also need to ensure that states don't change unexpectedly
  21 * while processing another state.
  22 *
  23 * HIERARCHY
  24 *
  25 * The following hierarchy defines the locking rules. A greater lock
  26 * may be held before acquiring a lesser lock, but a lesser lock should never
  27 * be held while attempting to acquire a greater lock. Here is the hierarchy-
  28 *
  29 * lport > disc, lport > rport, disc > rport
  30 *
  31 * CALLBACKS
  32 *
  33 * The callbacks cause complications with this scheme. There is a callback
  34 * from the rport (to either lport or disc) and a callback from disc
  35 * (to the lport).
  36 *
  37 * As rports exit the rport state machine a callback is made to the owner of
  38 * the rport to notify success or failure. Since the callback is likely to
  39 * cause the lport or disc to grab its lock we cannot hold the rport lock
  40 * while making the callback. To ensure that the rport is not free'd while
  41 * processing the callback the rport callbacks are serialized through a
  42 * single-threaded workqueue. An rport would never be free'd while in a
  43 * callback handler because no other rport work in this queue can be executed
  44 * at the same time.
  45 *
  46 * When discovery succeeds or fails a callback is made to the lport as
  47 * notification. Currently, successful discovery causes the lport to take no
  48 * action. A failure will cause the lport to reset. There is likely a circular
  49 * locking problem with this implementation.
  50 */
  51
  52/*
  53 * LPORT LOCKING
  54 *
  55 * The critical sections protected by the lport's mutex are quite broad and
  56 * may be improved upon in the future. The lport code and its locking doesn't
  57 * influence the I/O path, so excessive locking doesn't penalize I/O
  58 * performance.
  59 *
  60 * The strategy is to lock whenever processing a request or response. Note
  61 * that every _enter_* function corresponds to a state change. They generally
  62 * change the lports state and then send a request out on the wire. We lock
  63 * before calling any of these functions to protect that state change. This
  64 * means that the entry points into the lport block manage the locks while
  65 * the state machine can transition between states (i.e. _enter_* functions)
  66 * while always staying protected.
  67 *
  68 * When handling responses we also hold the lport mutex broadly. When the
  69 * lport receives the response frame it locks the mutex and then calls the
  70 * appropriate handler for the particuar response. Generally a response will
  71 * trigger a state change and so the lock must already be held.
  72 *
  73 * Retries also have to consider the locking. The retries occur from a work
  74 * context and the work function will lock the lport and then retry the state
  75 * (i.e. _enter_* function).
  76 */
  77
  78#include <linux/timer.h>
  79#include <linux/delay.h>
  80#include <linux/module.h>
  81#include <linux/slab.h>
  82#include <asm/unaligned.h>
  83
  84#include <scsi/fc/fc_gs.h>
  85
  86#include <scsi/libfc.h>
 
  87#include <linux/scatterlist.h>
  88
  89#include "fc_encode.h"
  90#include "fc_libfc.h"
  91
  92/* Fabric IDs to use for point-to-point mode, chosen on whims. */
  93#define FC_LOCAL_PTP_FID_LO   0x010101
  94#define FC_LOCAL_PTP_FID_HI   0x010102
  95
  96#define	DNS_DELAY		3 /* Discovery delay after RSCN (in seconds)*/
  97#define	MAX_CT_PAYLOAD		2048
  98#define	DISCOVERED_PORTS	4
  99#define	NUMBER_OF_PORTS		1
 100
 101static void fc_lport_error(struct fc_lport *, struct fc_frame *);
 102
 103static void fc_lport_enter_reset(struct fc_lport *);
 104static void fc_lport_enter_flogi(struct fc_lport *);
 105static void fc_lport_enter_dns(struct fc_lport *);
 106static void fc_lport_enter_ns(struct fc_lport *, enum fc_lport_state);
 107static void fc_lport_enter_scr(struct fc_lport *);
 108static void fc_lport_enter_ready(struct fc_lport *);
 109static void fc_lport_enter_logo(struct fc_lport *);
 110static void fc_lport_enter_fdmi(struct fc_lport *lport);
 111static void fc_lport_enter_ms(struct fc_lport *, enum fc_lport_state);
 112
 113static const char *fc_lport_state_names[] = {
 114	[LPORT_ST_DISABLED] = "disabled",
 115	[LPORT_ST_FLOGI] =    "FLOGI",
 116	[LPORT_ST_DNS] =      "dNS",
 117	[LPORT_ST_RNN_ID] =   "RNN_ID",
 118	[LPORT_ST_RSNN_NN] =  "RSNN_NN",
 119	[LPORT_ST_RSPN_ID] =  "RSPN_ID",
 120	[LPORT_ST_RFT_ID] =   "RFT_ID",
 121	[LPORT_ST_RFF_ID] =   "RFF_ID",
 122	[LPORT_ST_FDMI] =     "FDMI",
 123	[LPORT_ST_RHBA] =     "RHBA",
 124	[LPORT_ST_RPA] =      "RPA",
 125	[LPORT_ST_DHBA] =     "DHBA",
 126	[LPORT_ST_DPRT] =     "DPRT",
 127	[LPORT_ST_SCR] =      "SCR",
 128	[LPORT_ST_READY] =    "Ready",
 129	[LPORT_ST_LOGO] =     "LOGO",
 130	[LPORT_ST_RESET] =    "reset",
 131};
 132
 133/**
 134 * struct fc_bsg_info - FC Passthrough managemet structure
 135 * @job:      The passthrough job
 136 * @lport:    The local port to pass through a command
 137 * @rsp_code: The expected response code
 138 * @sg:	      job->reply_payload.sg_list
 139 * @nents:    job->reply_payload.sg_cnt
 140 * @offset:   The offset into the response data
 141 */
 142struct fc_bsg_info {
 143	struct bsg_job *job;
 144	struct fc_lport *lport;
 145	u16 rsp_code;
 146	struct scatterlist *sg;
 147	u32 nents;
 148	size_t offset;
 149};
 150
 151/**
 152 * fc_frame_drop() - Dummy frame handler
 153 * @lport: The local port the frame was received on
 154 * @fp:	   The received frame
 155 */
 156static int fc_frame_drop(struct fc_lport *lport, struct fc_frame *fp)
 157{
 158	fc_frame_free(fp);
 159	return 0;
 160}
 161
 162/**
 163 * fc_lport_rport_callback() - Event handler for rport events
 164 * @lport: The lport which is receiving the event
 165 * @rdata: private remote port data
 166 * @event: The event that occurred
 167 *
 168 * Locking Note: The rport lock should not be held when calling
 169 *		 this function.
 170 */
 171static void fc_lport_rport_callback(struct fc_lport *lport,
 172				    struct fc_rport_priv *rdata,
 173				    enum fc_rport_event event)
 174{
 175	FC_LPORT_DBG(lport, "Received a %d event for port (%6.6x)\n", event,
 176		     rdata->ids.port_id);
 177
 178	mutex_lock(&lport->lp_mutex);
 179	switch (event) {
 180	case RPORT_EV_READY:
 181		if (lport->state == LPORT_ST_DNS) {
 182			lport->dns_rdata = rdata;
 183			fc_lport_enter_ns(lport, LPORT_ST_RNN_ID);
 184		} else if (lport->state == LPORT_ST_FDMI) {
 185			lport->ms_rdata = rdata;
 186			fc_lport_enter_ms(lport, LPORT_ST_DHBA);
 187		} else {
 188			FC_LPORT_DBG(lport, "Received an READY event "
 189				     "on port (%6.6x) for the directory "
 190				     "server, but the lport is not "
 191				     "in the DNS or FDMI state, it's in the "
 192				     "%d state", rdata->ids.port_id,
 193				     lport->state);
 194			fc_rport_logoff(rdata);
 195		}
 196		break;
 197	case RPORT_EV_LOGO:
 198	case RPORT_EV_FAILED:
 199	case RPORT_EV_STOP:
 200		if (rdata->ids.port_id == FC_FID_DIR_SERV)
 201			lport->dns_rdata = NULL;
 202		else if (rdata->ids.port_id == FC_FID_MGMT_SERV)
 203			lport->ms_rdata = NULL;
 204		break;
 205	case RPORT_EV_NONE:
 206		break;
 207	}
 208	mutex_unlock(&lport->lp_mutex);
 209}
 210
 211/**
 212 * fc_lport_state() - Return a string which represents the lport's state
 213 * @lport: The lport whose state is to converted to a string
 214 */
 215static const char *fc_lport_state(struct fc_lport *lport)
 216{
 217	const char *cp;
 218
 219	cp = fc_lport_state_names[lport->state];
 220	if (!cp)
 221		cp = "unknown";
 222	return cp;
 223}
 224
 225/**
 226 * fc_lport_ptp_setup() - Create an rport for point-to-point mode
 227 * @lport:	 The lport to attach the ptp rport to
 228 * @remote_fid:	 The FID of the ptp rport
 229 * @remote_wwpn: The WWPN of the ptp rport
 230 * @remote_wwnn: The WWNN of the ptp rport
 231 */
 232static void fc_lport_ptp_setup(struct fc_lport *lport,
 233			       u32 remote_fid, u64 remote_wwpn,
 234			       u64 remote_wwnn)
 235{
 236	lockdep_assert_held(&lport->lp_mutex);
 237
 238	if (lport->ptp_rdata) {
 239		fc_rport_logoff(lport->ptp_rdata);
 240		kref_put(&lport->ptp_rdata->kref, fc_rport_destroy);
 241	}
 242	mutex_lock(&lport->disc.disc_mutex);
 243	lport->ptp_rdata = fc_rport_create(lport, remote_fid);
 244	if (!lport->ptp_rdata) {
 245		printk(KERN_WARNING "libfc: Failed to setup lport 0x%x\n",
 246			lport->port_id);
 247		mutex_unlock(&lport->disc.disc_mutex);
 248		return;
 249	}
 
 250	kref_get(&lport->ptp_rdata->kref);
 251	lport->ptp_rdata->ids.port_name = remote_wwpn;
 252	lport->ptp_rdata->ids.node_name = remote_wwnn;
 253	mutex_unlock(&lport->disc.disc_mutex);
 254
 255	fc_rport_login(lport->ptp_rdata);
 256
 257	fc_lport_enter_ready(lport);
 258}
 259
 260/**
 261 * fc_get_host_port_state() - Return the port state of the given Scsi_Host
 262 * @shost:  The SCSI host whose port state is to be determined
 263 */
 264void fc_get_host_port_state(struct Scsi_Host *shost)
 265{
 266	struct fc_lport *lport = shost_priv(shost);
 267
 268	mutex_lock(&lport->lp_mutex);
 269	if (!lport->link_up)
 270		fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
 271	else
 272		switch (lport->state) {
 273		case LPORT_ST_READY:
 274			fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
 275			break;
 276		default:
 277			fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
 278		}
 279	mutex_unlock(&lport->lp_mutex);
 280}
 281EXPORT_SYMBOL(fc_get_host_port_state);
 282
 283/**
 284 * fc_get_host_speed() - Return the speed of the given Scsi_Host
 285 * @shost: The SCSI host whose port speed is to be determined
 286 */
 287void fc_get_host_speed(struct Scsi_Host *shost)
 288{
 289	struct fc_lport *lport = shost_priv(shost);
 290
 291	fc_host_speed(shost) = lport->link_speed;
 292}
 293EXPORT_SYMBOL(fc_get_host_speed);
 294
 295/**
 296 * fc_get_host_stats() - Return the Scsi_Host's statistics
 297 * @shost: The SCSI host whose statistics are to be returned
 298 */
 299struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *shost)
 300{
 301	struct fc_host_statistics *fc_stats;
 302	struct fc_lport *lport = shost_priv(shost);
 
 303	unsigned int cpu;
 304	u64 fcp_in_bytes = 0;
 305	u64 fcp_out_bytes = 0;
 306
 307	fc_stats = &lport->host_stats;
 308	memset(fc_stats, 0, sizeof(struct fc_host_statistics));
 309
 310	fc_stats->seconds_since_last_reset = (jiffies - lport->boot_time) / HZ;
 
 
 311
 312	for_each_possible_cpu(cpu) {
 313		struct fc_stats *stats;
 314
 315		stats = per_cpu_ptr(lport->stats, cpu);
 316
 317		fc_stats->tx_frames += READ_ONCE(stats->TxFrames);
 318		fc_stats->tx_words += READ_ONCE(stats->TxWords);
 319		fc_stats->rx_frames += READ_ONCE(stats->RxFrames);
 320		fc_stats->rx_words += READ_ONCE(stats->RxWords);
 321		fc_stats->error_frames += READ_ONCE(stats->ErrorFrames);
 322		fc_stats->invalid_crc_count += READ_ONCE(stats->InvalidCRCCount);
 323		fc_stats->fcp_input_requests += READ_ONCE(stats->InputRequests);
 324		fc_stats->fcp_output_requests += READ_ONCE(stats->OutputRequests);
 325		fc_stats->fcp_control_requests += READ_ONCE(stats->ControlRequests);
 326		fcp_in_bytes += READ_ONCE(stats->InputBytes);
 327		fcp_out_bytes += READ_ONCE(stats->OutputBytes);
 328		fc_stats->fcp_packet_alloc_failures += READ_ONCE(stats->FcpPktAllocFails);
 329		fc_stats->fcp_packet_aborts += READ_ONCE(stats->FcpPktAborts);
 330		fc_stats->fcp_frame_alloc_failures += READ_ONCE(stats->FcpFrameAllocFails);
 331		fc_stats->link_failure_count += READ_ONCE(stats->LinkFailureCount);
 332	}
 333	fc_stats->fcp_input_megabytes = div_u64(fcp_in_bytes, 1000000);
 334	fc_stats->fcp_output_megabytes = div_u64(fcp_out_bytes, 1000000);
 335	fc_stats->lip_count = -1;
 336	fc_stats->nos_count = -1;
 337	fc_stats->loss_of_sync_count = -1;
 338	fc_stats->loss_of_signal_count = -1;
 339	fc_stats->prim_seq_protocol_err_count = -1;
 340	fc_stats->dumped_frames = -1;
 341
 342	/* update exches stats */
 343	fc_exch_update_stats(lport);
 344
 345	return fc_stats;
 346}
 347EXPORT_SYMBOL(fc_get_host_stats);
 348
 349/**
 350 * fc_lport_flogi_fill() - Fill in FLOGI command for request
 351 * @lport: The local port the FLOGI is for
 352 * @flogi: The FLOGI command
 353 * @op:	   The opcode
 354 */
 355static void fc_lport_flogi_fill(struct fc_lport *lport,
 356				struct fc_els_flogi *flogi,
 357				unsigned int op)
 358{
 359	struct fc_els_csp *sp;
 360	struct fc_els_cssp *cp;
 361
 362	memset(flogi, 0, sizeof(*flogi));
 363	flogi->fl_cmd = (u8) op;
 364	put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn);
 365	put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn);
 366	sp = &flogi->fl_csp;
 367	sp->sp_hi_ver = 0x20;
 368	sp->sp_lo_ver = 0x20;
 369	sp->sp_bb_cred = htons(10);	/* this gets set by gateway */
 370	sp->sp_bb_data = htons((u16) lport->mfs);
 371	cp = &flogi->fl_cssp[3 - 1];	/* class 3 parameters */
 372	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
 373	if (op != ELS_FLOGI) {
 374		sp->sp_features = htons(FC_SP_FT_CIRO);
 375		sp->sp_tot_seq = htons(255);	/* seq. we accept */
 376		sp->sp_rel_off = htons(0x1f);
 377		sp->sp_e_d_tov = htonl(lport->e_d_tov);
 378
 379		cp->cp_rdfs = htons((u16) lport->mfs);
 380		cp->cp_con_seq = htons(255);
 381		cp->cp_open_seq = 1;
 382	}
 383}
 384
 385/**
 386 * fc_lport_add_fc4_type() - Add a supported FC-4 type to a local port
 387 * @lport: The local port to add a new FC-4 type to
 388 * @type:  The new FC-4 type
 389 */
 390static void fc_lport_add_fc4_type(struct fc_lport *lport, enum fc_fh_type type)
 391{
 392	__be32 *mp;
 393
 394	mp = &lport->fcts.ff_type_map[type / FC_NS_BPW];
 395	*mp = htonl(ntohl(*mp) | 1UL << (type % FC_NS_BPW));
 396}
 397
 398/**
 399 * fc_lport_recv_rlir_req() - Handle received Registered Link Incident Report.
 400 * @lport: Fibre Channel local port receiving the RLIR
 401 * @fp:	   The RLIR request frame
 
 
 
 402 */
 403static void fc_lport_recv_rlir_req(struct fc_lport *lport, struct fc_frame *fp)
 404{
 405	lockdep_assert_held(&lport->lp_mutex);
 406
 407	FC_LPORT_DBG(lport, "Received RLIR request while in state %s\n",
 408		     fc_lport_state(lport));
 409
 410	fc_seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
 411	fc_frame_free(fp);
 412}
 413
 414/**
 415 * fc_lport_recv_echo_req() - Handle received ECHO request
 416 * @lport: The local port receiving the ECHO
 417 * @in_fp: ECHO request frame
 
 
 
 418 */
 419static void fc_lport_recv_echo_req(struct fc_lport *lport,
 420				   struct fc_frame *in_fp)
 421{
 422	struct fc_frame *fp;
 423	unsigned int len;
 424	void *pp;
 425	void *dp;
 426
 427	lockdep_assert_held(&lport->lp_mutex);
 428
 429	FC_LPORT_DBG(lport, "Received ECHO request while in state %s\n",
 430		     fc_lport_state(lport));
 431
 432	len = fr_len(in_fp) - sizeof(struct fc_frame_header);
 433	pp = fc_frame_payload_get(in_fp, len);
 434
 435	if (len < sizeof(__be32))
 436		len = sizeof(__be32);
 437
 438	fp = fc_frame_alloc(lport, len);
 439	if (fp) {
 440		dp = fc_frame_payload_get(fp, len);
 441		memcpy(dp, pp, len);
 442		*((__be32 *)dp) = htonl(ELS_LS_ACC << 24);
 443		fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
 444		lport->tt.frame_send(lport, fp);
 445	}
 446	fc_frame_free(in_fp);
 447}
 448
 449/**
 450 * fc_lport_recv_rnid_req() - Handle received Request Node ID data request
 451 * @lport: The local port receiving the RNID
 452 * @in_fp: The RNID request frame
 
 
 
 453 */
 454static void fc_lport_recv_rnid_req(struct fc_lport *lport,
 455				   struct fc_frame *in_fp)
 456{
 457	struct fc_frame *fp;
 458	struct fc_els_rnid *req;
 459	struct {
 460		struct fc_els_rnid_resp rnid;
 461		struct fc_els_rnid_cid cid;
 462		struct fc_els_rnid_gen gen;
 463	} *rp;
 464	struct fc_seq_els_data rjt_data;
 465	u8 fmt;
 466	size_t len;
 467
 468	lockdep_assert_held(&lport->lp_mutex);
 469
 470	FC_LPORT_DBG(lport, "Received RNID request while in state %s\n",
 471		     fc_lport_state(lport));
 472
 473	req = fc_frame_payload_get(in_fp, sizeof(*req));
 474	if (!req) {
 475		rjt_data.reason = ELS_RJT_LOGIC;
 476		rjt_data.explan = ELS_EXPL_NONE;
 477		fc_seq_els_rsp_send(in_fp, ELS_LS_RJT, &rjt_data);
 478	} else {
 479		fmt = req->rnid_fmt;
 480		len = sizeof(*rp);
 481		if (fmt != ELS_RNIDF_GEN ||
 482		    ntohl(lport->rnid_gen.rnid_atype) == 0) {
 483			fmt = ELS_RNIDF_NONE;	/* nothing to provide */
 484			len -= sizeof(rp->gen);
 485		}
 486		fp = fc_frame_alloc(lport, len);
 487		if (fp) {
 488			rp = fc_frame_payload_get(fp, len);
 489			memset(rp, 0, len);
 490			rp->rnid.rnid_cmd = ELS_LS_ACC;
 491			rp->rnid.rnid_fmt = fmt;
 492			rp->rnid.rnid_cid_len = sizeof(rp->cid);
 493			rp->cid.rnid_wwpn = htonll(lport->wwpn);
 494			rp->cid.rnid_wwnn = htonll(lport->wwnn);
 495			if (fmt == ELS_RNIDF_GEN) {
 496				rp->rnid.rnid_sid_len = sizeof(rp->gen);
 497				memcpy(&rp->gen, &lport->rnid_gen,
 498				       sizeof(rp->gen));
 499			}
 500			fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
 501			lport->tt.frame_send(lport, fp);
 502		}
 503	}
 504	fc_frame_free(in_fp);
 505}
 506
 507/**
 508 * fc_lport_recv_logo_req() - Handle received fabric LOGO request
 509 * @lport: The local port receiving the LOGO
 510 * @fp:	   The LOGO request frame
 
 
 
 511 */
 512static void fc_lport_recv_logo_req(struct fc_lport *lport, struct fc_frame *fp)
 513{
 514	lockdep_assert_held(&lport->lp_mutex);
 515
 516	fc_seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
 517	fc_lport_enter_reset(lport);
 518	fc_frame_free(fp);
 519}
 520
 521/**
 522 * fc_fabric_login() - Start the lport state machine
 523 * @lport: The local port that should log into the fabric
 524 *
 525 * Locking Note: This function should not be called
 526 *		 with the lport lock held.
 527 */
 528int fc_fabric_login(struct fc_lport *lport)
 529{
 530	int rc = -1;
 531
 532	mutex_lock(&lport->lp_mutex);
 533	if (lport->state == LPORT_ST_DISABLED ||
 534	    lport->state == LPORT_ST_LOGO) {
 535		fc_lport_state_enter(lport, LPORT_ST_RESET);
 536		fc_lport_enter_reset(lport);
 537		rc = 0;
 538	}
 539	mutex_unlock(&lport->lp_mutex);
 540
 541	return rc;
 542}
 543EXPORT_SYMBOL(fc_fabric_login);
 544
 545/**
 546 * __fc_linkup() - Handler for transport linkup events
 547 * @lport: The lport whose link is up
 
 
 548 */
 549void __fc_linkup(struct fc_lport *lport)
 550{
 551	lockdep_assert_held(&lport->lp_mutex);
 552
 553	if (!lport->link_up) {
 554		lport->link_up = 1;
 555
 556		if (lport->state == LPORT_ST_RESET)
 557			fc_lport_enter_flogi(lport);
 558	}
 559}
 560
 561/**
 562 * fc_linkup() - Handler for transport linkup events
 563 * @lport: The local port whose link is up
 564 */
 565void fc_linkup(struct fc_lport *lport)
 566{
 567	printk(KERN_INFO "host%d: libfc: Link up on port (%6.6x)\n",
 568	       lport->host->host_no, lport->port_id);
 569
 570	mutex_lock(&lport->lp_mutex);
 571	__fc_linkup(lport);
 572	mutex_unlock(&lport->lp_mutex);
 573}
 574EXPORT_SYMBOL(fc_linkup);
 575
 576/**
 577 * __fc_linkdown() - Handler for transport linkdown events
 578 * @lport: The lport whose link is down
 
 
 579 */
 580void __fc_linkdown(struct fc_lport *lport)
 581{
 582	lockdep_assert_held(&lport->lp_mutex);
 583
 584	if (lport->link_up) {
 585		lport->link_up = 0;
 586		fc_lport_enter_reset(lport);
 587		lport->tt.fcp_cleanup(lport);
 588	}
 589}
 590
 591/**
 592 * fc_linkdown() - Handler for transport linkdown events
 593 * @lport: The local port whose link is down
 594 */
 595void fc_linkdown(struct fc_lport *lport)
 596{
 597	printk(KERN_INFO "host%d: libfc: Link down on port (%6.6x)\n",
 598	       lport->host->host_no, lport->port_id);
 599
 600	mutex_lock(&lport->lp_mutex);
 601	__fc_linkdown(lport);
 602	mutex_unlock(&lport->lp_mutex);
 603}
 604EXPORT_SYMBOL(fc_linkdown);
 605
 606/**
 607 * fc_fabric_logoff() - Logout of the fabric
 608 * @lport: The local port to logoff the fabric
 609 *
 610 * Return value:
 611 *	0 for success, -1 for failure
 612 */
 613int fc_fabric_logoff(struct fc_lport *lport)
 614{
 615	lport->tt.disc_stop_final(lport);
 616	mutex_lock(&lport->lp_mutex);
 617	if (lport->dns_rdata)
 618		fc_rport_logoff(lport->dns_rdata);
 619	mutex_unlock(&lport->lp_mutex);
 620	fc_rport_flush_queue();
 621	mutex_lock(&lport->lp_mutex);
 622	fc_lport_enter_logo(lport);
 623	mutex_unlock(&lport->lp_mutex);
 624	cancel_delayed_work_sync(&lport->retry_work);
 625	return 0;
 626}
 627EXPORT_SYMBOL(fc_fabric_logoff);
 628
 629/**
 630 * fc_lport_destroy() - Unregister a fc_lport
 631 * @lport: The local port to unregister
 632 *
 633 * Note:
 634 * exit routine for fc_lport instance
 635 * clean-up all the allocated memory
 636 * and free up other system resources.
 637 *
 638 */
 639int fc_lport_destroy(struct fc_lport *lport)
 640{
 641	mutex_lock(&lport->lp_mutex);
 642	lport->state = LPORT_ST_DISABLED;
 643	lport->link_up = 0;
 644	lport->tt.frame_send = fc_frame_drop;
 645	mutex_unlock(&lport->lp_mutex);
 646
 647	lport->tt.fcp_abort_io(lport);
 648	lport->tt.disc_stop_final(lport);
 649	lport->tt.exch_mgr_reset(lport, 0, 0);
 650	cancel_delayed_work_sync(&lport->retry_work);
 651	fc_fc4_del_lport(lport);
 652	return 0;
 653}
 654EXPORT_SYMBOL(fc_lport_destroy);
 655
 656/**
 657 * fc_set_mfs() - Set the maximum frame size for a local port
 658 * @lport: The local port to set the MFS for
 659 * @mfs:   The new MFS
 660 */
 661int fc_set_mfs(struct fc_lport *lport, u32 mfs)
 662{
 663	unsigned int old_mfs;
 664	int rc = -EINVAL;
 665
 666	mutex_lock(&lport->lp_mutex);
 667
 668	old_mfs = lport->mfs;
 669
 670	if (mfs >= FC_MIN_MAX_FRAME) {
 671		mfs &= ~3;
 672		if (mfs > FC_MAX_FRAME)
 673			mfs = FC_MAX_FRAME;
 674		mfs -= sizeof(struct fc_frame_header);
 675		lport->mfs = mfs;
 676		rc = 0;
 677	}
 678
 679	if (!rc && mfs < old_mfs)
 680		fc_lport_enter_reset(lport);
 681
 682	mutex_unlock(&lport->lp_mutex);
 683
 684	return rc;
 685}
 686EXPORT_SYMBOL(fc_set_mfs);
 687
 688/**
 689 * fc_lport_disc_callback() - Callback for discovery events
 690 * @lport: The local port receiving the event
 691 * @event: The discovery event
 692 */
 693static void fc_lport_disc_callback(struct fc_lport *lport,
 694				   enum fc_disc_event event)
 695{
 696	switch (event) {
 697	case DISC_EV_SUCCESS:
 698		FC_LPORT_DBG(lport, "Discovery succeeded\n");
 699		break;
 700	case DISC_EV_FAILED:
 701		printk(KERN_ERR "host%d: libfc: "
 702		       "Discovery failed for port (%6.6x)\n",
 703		       lport->host->host_no, lport->port_id);
 704		mutex_lock(&lport->lp_mutex);
 705		fc_lport_enter_reset(lport);
 706		mutex_unlock(&lport->lp_mutex);
 707		break;
 708	case DISC_EV_NONE:
 709		WARN_ON(1);
 710		break;
 711	}
 712}
 713
 714/**
 715 * fc_lport_enter_ready() - Enter the ready state and start discovery
 716 * @lport: The local port that is ready
 
 
 
 717 */
 718static void fc_lport_enter_ready(struct fc_lport *lport)
 719{
 720	lockdep_assert_held(&lport->lp_mutex);
 721
 722	FC_LPORT_DBG(lport, "Entered READY from state %s\n",
 723		     fc_lport_state(lport));
 724
 725	fc_lport_state_enter(lport, LPORT_ST_READY);
 726	if (lport->vport)
 727		fc_vport_set_state(lport->vport, FC_VPORT_ACTIVE);
 728	fc_vports_linkchange(lport);
 729
 730	if (!lport->ptp_rdata)
 731		lport->tt.disc_start(fc_lport_disc_callback, lport);
 732}
 733
 734/**
 735 * fc_lport_set_port_id() - set the local port Port ID
 736 * @lport: The local port which will have its Port ID set.
 737 * @port_id: The new port ID.
 738 * @fp: The frame containing the incoming request, or NULL.
 
 
 
 739 */
 740static void fc_lport_set_port_id(struct fc_lport *lport, u32 port_id,
 741				 struct fc_frame *fp)
 742{
 743	lockdep_assert_held(&lport->lp_mutex);
 744
 745	if (port_id)
 746		printk(KERN_INFO "host%d: Assigned Port ID %6.6x\n",
 747		       lport->host->host_no, port_id);
 748
 749	lport->port_id = port_id;
 750
 751	/* Update the fc_host */
 752	fc_host_port_id(lport->host) = port_id;
 753
 754	if (lport->tt.lport_set_port_id)
 755		lport->tt.lport_set_port_id(lport, port_id, fp);
 756}
 757
 758/**
 759 * fc_lport_set_local_id() - set the local port Port ID for point-to-multipoint
 760 * @lport: The local port which will have its Port ID set.
 761 * @port_id: The new port ID.
 762 *
 763 * Called by the lower-level driver when transport sets the local port_id.
 764 * This is used in VN_port to VN_port mode for FCoE, and causes FLOGI and
 765 * discovery to be skipped.
 766 */
 767void fc_lport_set_local_id(struct fc_lport *lport, u32 port_id)
 768{
 769	mutex_lock(&lport->lp_mutex);
 770
 771	fc_lport_set_port_id(lport, port_id, NULL);
 772
 773	switch (lport->state) {
 774	case LPORT_ST_RESET:
 775	case LPORT_ST_FLOGI:
 776		if (port_id)
 777			fc_lport_enter_ready(lport);
 778		break;
 779	default:
 780		break;
 781	}
 782	mutex_unlock(&lport->lp_mutex);
 783}
 784EXPORT_SYMBOL(fc_lport_set_local_id);
 785
 786/**
 787 * fc_lport_recv_flogi_req() - Receive a FLOGI request
 788 * @lport: The local port that received the request
 789 * @rx_fp: The FLOGI frame
 790 *
 791 * A received FLOGI request indicates a point-to-point connection.
 792 * Accept it with the common service parameters indicating our N port.
 793 * Set up to do a PLOGI if we have the higher-number WWPN.
 
 
 
 794 */
 795static void fc_lport_recv_flogi_req(struct fc_lport *lport,
 796				    struct fc_frame *rx_fp)
 797{
 798	struct fc_frame *fp;
 799	struct fc_frame_header *fh;
 800	struct fc_els_flogi *flp;
 801	struct fc_els_flogi *new_flp;
 802	u64 remote_wwpn;
 803	u32 remote_fid;
 804	u32 local_fid;
 805
 806	lockdep_assert_held(&lport->lp_mutex);
 807
 808	FC_LPORT_DBG(lport, "Received FLOGI request while in state %s\n",
 809		     fc_lport_state(lport));
 810
 811	remote_fid = fc_frame_sid(rx_fp);
 812	flp = fc_frame_payload_get(rx_fp, sizeof(*flp));
 813	if (!flp)
 814		goto out;
 815	remote_wwpn = get_unaligned_be64(&flp->fl_wwpn);
 816	if (remote_wwpn == lport->wwpn) {
 817		printk(KERN_WARNING "host%d: libfc: Received FLOGI from port "
 818		       "with same WWPN %16.16llx\n",
 819		       lport->host->host_no, remote_wwpn);
 820		goto out;
 821	}
 822	FC_LPORT_DBG(lport, "FLOGI from port WWPN %16.16llx\n", remote_wwpn);
 823
 824	/*
 825	 * XXX what is the right thing to do for FIDs?
 826	 * The originator might expect our S_ID to be 0xfffffe.
 827	 * But if so, both of us could end up with the same FID.
 828	 */
 829	local_fid = FC_LOCAL_PTP_FID_LO;
 830	if (remote_wwpn < lport->wwpn) {
 831		local_fid = FC_LOCAL_PTP_FID_HI;
 832		if (!remote_fid || remote_fid == local_fid)
 833			remote_fid = FC_LOCAL_PTP_FID_LO;
 834	} else if (!remote_fid) {
 835		remote_fid = FC_LOCAL_PTP_FID_HI;
 836	}
 837
 838	fc_lport_set_port_id(lport, local_fid, rx_fp);
 839
 840	fp = fc_frame_alloc(lport, sizeof(*flp));
 841	if (fp) {
 842		new_flp = fc_frame_payload_get(fp, sizeof(*flp));
 843		fc_lport_flogi_fill(lport, new_flp, ELS_FLOGI);
 844		new_flp->fl_cmd = (u8) ELS_LS_ACC;
 845
 846		/*
 847		 * Send the response.  If this fails, the originator should
 848		 * repeat the sequence.
 849		 */
 850		fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
 851		fh = fc_frame_header_get(fp);
 852		hton24(fh->fh_s_id, local_fid);
 853		hton24(fh->fh_d_id, remote_fid);
 854		lport->tt.frame_send(lport, fp);
 855
 856	} else {
 857		fc_lport_error(lport, fp);
 858	}
 859	fc_lport_ptp_setup(lport, remote_fid, remote_wwpn,
 860			   get_unaligned_be64(&flp->fl_wwnn));
 861out:
 862	fc_frame_free(rx_fp);
 863}
 864
 865/**
 866 * fc_lport_recv_els_req() - The generic lport ELS request handler
 867 * @lport: The local port that received the request
 868 * @fp:	   The request frame
 869 *
 870 * This function will see if the lport handles the request or
 871 * if an rport should handle the request.
 872 *
 873 * Locking Note: This function should not be called with the lport
 874 *		 lock held because it will grab the lock.
 875 */
 876static void fc_lport_recv_els_req(struct fc_lport *lport,
 877				  struct fc_frame *fp)
 878{
 
 
 879	mutex_lock(&lport->lp_mutex);
 880
 881	/*
 882	 * Handle special ELS cases like FLOGI, LOGO, and
 883	 * RSCN here.  These don't require a session.
 884	 * Even if we had a session, it might not be ready.
 885	 */
 886	if (!lport->link_up)
 887		fc_frame_free(fp);
 888	else {
 889		/*
 890		 * Check opcode.
 891		 */
 
 892		switch (fc_frame_payload_op(fp)) {
 893		case ELS_FLOGI:
 894			if (!lport->point_to_multipoint)
 895				fc_lport_recv_flogi_req(lport, fp);
 896			else
 897				fc_rport_recv_req(lport, fp);
 898			break;
 899		case ELS_LOGO:
 900			if (fc_frame_sid(fp) == FC_FID_FLOGI)
 901				fc_lport_recv_logo_req(lport, fp);
 902			else
 903				fc_rport_recv_req(lport, fp);
 904			break;
 905		case ELS_RSCN:
 906			lport->tt.disc_recv_req(lport, fp);
 907			break;
 908		case ELS_ECHO:
 909			fc_lport_recv_echo_req(lport, fp);
 910			break;
 911		case ELS_RLIR:
 912			fc_lport_recv_rlir_req(lport, fp);
 913			break;
 914		case ELS_RNID:
 915			fc_lport_recv_rnid_req(lport, fp);
 916			break;
 917		default:
 918			fc_rport_recv_req(lport, fp);
 919			break;
 920		}
 
 
 921	}
 922	mutex_unlock(&lport->lp_mutex);
 923}
 924
 925static int fc_lport_els_prli(struct fc_rport_priv *rdata, u32 spp_len,
 926			     const struct fc_els_spp *spp_in,
 927			     struct fc_els_spp *spp_out)
 928{
 929	return FC_SPP_RESP_INVL;
 930}
 931
 932struct fc4_prov fc_lport_els_prov = {
 933	.prli = fc_lport_els_prli,
 934	.recv = fc_lport_recv_els_req,
 935};
 936
 937/**
 938 * fc_lport_recv() - The generic lport request handler
 939 * @lport: The lport that received the request
 940 * @fp: The frame the request is in
 941 *
 942 * Locking Note: This function should not be called with the lport
 943 *		 lock held because it may grab the lock.
 944 */
 945void fc_lport_recv(struct fc_lport *lport, struct fc_frame *fp)
 
 946{
 947	struct fc_frame_header *fh = fc_frame_header_get(fp);
 948	struct fc_seq *sp = fr_seq(fp);
 949	struct fc4_prov *prov;
 950
 951	/*
 952	 * Use RCU read lock and module_lock to be sure module doesn't
 953	 * deregister and get unloaded while we're calling it.
 954	 * try_module_get() is inlined and accepts a NULL parameter.
 955	 * Only ELSes and FCP target ops should come through here.
 956	 * The locking is unfortunate, and a better scheme is being sought.
 957	 */
 958
 959	rcu_read_lock();
 960	if (fh->fh_type >= FC_FC4_PROV_SIZE)
 961		goto drop;
 962	prov = rcu_dereference(fc_passive_prov[fh->fh_type]);
 963	if (!prov || !try_module_get(prov->module))
 964		goto drop;
 965	rcu_read_unlock();
 966	prov->recv(lport, fp);
 967	module_put(prov->module);
 968	return;
 969drop:
 970	rcu_read_unlock();
 971	FC_LPORT_DBG(lport, "dropping unexpected frame type %x\n", fh->fh_type);
 972	fc_frame_free(fp);
 973	if (sp)
 974		fc_exch_done(sp);
 975}
 976EXPORT_SYMBOL(fc_lport_recv);
 977
 978/**
 979 * fc_lport_reset() - Reset a local port
 980 * @lport: The local port which should be reset
 981 *
 982 * Locking Note: This functions should not be called with the
 983 *		 lport lock held.
 984 */
 985int fc_lport_reset(struct fc_lport *lport)
 986{
 987	cancel_delayed_work_sync(&lport->retry_work);
 988	mutex_lock(&lport->lp_mutex);
 989	fc_lport_enter_reset(lport);
 990	mutex_unlock(&lport->lp_mutex);
 991	return 0;
 992}
 993EXPORT_SYMBOL(fc_lport_reset);
 994
 995/**
 996 * fc_lport_reset_locked() - Reset the local port w/ the lport lock held
 997 * @lport: The local port to be reset
 
 
 
 998 */
 999static void fc_lport_reset_locked(struct fc_lport *lport)
1000{
1001	lockdep_assert_held(&lport->lp_mutex);
1002
1003	if (lport->dns_rdata) {
1004		fc_rport_logoff(lport->dns_rdata);
1005		lport->dns_rdata = NULL;
1006	}
1007
1008	if (lport->ptp_rdata) {
1009		fc_rport_logoff(lport->ptp_rdata);
1010		kref_put(&lport->ptp_rdata->kref, fc_rport_destroy);
1011		lport->ptp_rdata = NULL;
1012	}
1013
1014	lport->tt.disc_stop(lport);
1015
1016	lport->tt.exch_mgr_reset(lport, 0, 0);
1017	fc_host_fabric_name(lport->host) = 0;
1018
1019	if (lport->port_id && (!lport->point_to_multipoint || !lport->link_up))
1020		fc_lport_set_port_id(lport, 0, NULL);
1021}
1022
1023/**
1024 * fc_lport_enter_reset() - Reset the local port
1025 * @lport: The local port to be reset
 
 
 
1026 */
1027static void fc_lport_enter_reset(struct fc_lport *lport)
1028{
1029	lockdep_assert_held(&lport->lp_mutex);
1030
1031	FC_LPORT_DBG(lport, "Entered RESET state from %s state\n",
1032		     fc_lport_state(lport));
1033
1034	if (lport->state == LPORT_ST_DISABLED || lport->state == LPORT_ST_LOGO)
1035		return;
1036
1037	if (lport->vport) {
1038		if (lport->link_up)
1039			fc_vport_set_state(lport->vport, FC_VPORT_INITIALIZING);
1040		else
1041			fc_vport_set_state(lport->vport, FC_VPORT_LINKDOWN);
1042	}
1043	fc_lport_state_enter(lport, LPORT_ST_RESET);
1044	fc_host_post_event(lport->host, fc_get_event_number(),
1045			   FCH_EVT_LIPRESET, 0);
1046	fc_vports_linkchange(lport);
1047	fc_lport_reset_locked(lport);
1048	if (lport->link_up)
1049		fc_lport_enter_flogi(lport);
1050}
1051
1052/**
1053 * fc_lport_enter_disabled() - Disable the local port
1054 * @lport: The local port to be reset
 
 
 
1055 */
1056static void fc_lport_enter_disabled(struct fc_lport *lport)
1057{
1058	lockdep_assert_held(&lport->lp_mutex);
1059
1060	FC_LPORT_DBG(lport, "Entered disabled state from %s state\n",
1061		     fc_lport_state(lport));
1062
1063	fc_lport_state_enter(lport, LPORT_ST_DISABLED);
1064	fc_vports_linkchange(lport);
1065	fc_lport_reset_locked(lport);
1066}
1067
1068/**
1069 * fc_lport_error() - Handler for any errors
1070 * @lport: The local port that the error was on
1071 * @fp:	   The error code encoded in a frame pointer
1072 *
1073 * If the error was caused by a resource allocation failure
1074 * then wait for half a second and retry, otherwise retry
1075 * after the e_d_tov time.
1076 */
1077static void fc_lport_error(struct fc_lport *lport, struct fc_frame *fp)
1078{
1079	unsigned long delay = 0;
1080	FC_LPORT_DBG(lport, "Error %ld in state %s, retries %d\n",
1081		     IS_ERR(fp) ? -PTR_ERR(fp) : 0, fc_lport_state(lport),
1082		     lport->retry_count);
1083
1084	if (PTR_ERR(fp) == -FC_EX_CLOSED)
1085		return;
1086
1087	/*
1088	 * Memory allocation failure, or the exchange timed out
1089	 * or we received LS_RJT.
1090	 * Retry after delay
1091	 */
1092	if (lport->retry_count < lport->max_retry_count) {
1093		lport->retry_count++;
1094		if (!fp)
1095			delay = msecs_to_jiffies(500);
1096		else
1097			delay =	msecs_to_jiffies(lport->e_d_tov);
1098
1099		schedule_delayed_work(&lport->retry_work, delay);
1100	} else
1101		fc_lport_enter_reset(lport);
1102}
1103
1104/**
1105 * fc_lport_ns_resp() - Handle response to a name server
1106 *			registration exchange
1107 * @sp:	    current sequence in exchange
1108 * @fp:	    response frame
1109 * @lp_arg: Fibre Channel host port instance
1110 *
1111 * Locking Note: This function will be called without the lport lock
1112 * held, but it will lock, call an _enter_* function or fc_lport_error()
1113 * and then unlock the lport.
1114 */
1115static void fc_lport_ns_resp(struct fc_seq *sp, struct fc_frame *fp,
1116			     void *lp_arg)
1117{
1118	struct fc_lport *lport = lp_arg;
1119	struct fc_frame_header *fh;
1120	struct fc_ct_hdr *ct;
1121
1122	FC_LPORT_DBG(lport, "Received a ns %s\n", fc_els_resp_type(fp));
1123
1124	if (fp == ERR_PTR(-FC_EX_CLOSED))
1125		return;
1126
1127	mutex_lock(&lport->lp_mutex);
1128
1129	if (lport->state < LPORT_ST_RNN_ID || lport->state > LPORT_ST_RFF_ID) {
1130		FC_LPORT_DBG(lport, "Received a name server response, "
1131			     "but in state %s\n", fc_lport_state(lport));
1132		if (IS_ERR(fp))
1133			goto err;
1134		goto out;
1135	}
1136
1137	if (IS_ERR(fp)) {
1138		fc_lport_error(lport, fp);
1139		goto err;
1140	}
1141
1142	fh = fc_frame_header_get(fp);
1143	ct = fc_frame_payload_get(fp, sizeof(*ct));
1144
1145	if (fh && ct && fh->fh_type == FC_TYPE_CT &&
1146	    ct->ct_fs_type == FC_FST_DIR &&
1147	    ct->ct_fs_subtype == FC_NS_SUBTYPE &&
1148	    ntohs(ct->ct_cmd) == FC_FS_ACC)
1149		switch (lport->state) {
1150		case LPORT_ST_RNN_ID:
1151			fc_lport_enter_ns(lport, LPORT_ST_RSNN_NN);
1152			break;
1153		case LPORT_ST_RSNN_NN:
1154			fc_lport_enter_ns(lport, LPORT_ST_RSPN_ID);
1155			break;
1156		case LPORT_ST_RSPN_ID:
1157			fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1158			break;
1159		case LPORT_ST_RFT_ID:
1160			fc_lport_enter_ns(lport, LPORT_ST_RFF_ID);
1161			break;
1162		case LPORT_ST_RFF_ID:
1163			if (lport->fdmi_enabled)
1164				fc_lport_enter_fdmi(lport);
1165			else
1166				fc_lport_enter_scr(lport);
1167			break;
1168		default:
1169			/* should have already been caught by state checks */
1170			break;
1171		}
1172	else
1173		fc_lport_error(lport, fp);
1174out:
1175	fc_frame_free(fp);
1176err:
1177	mutex_unlock(&lport->lp_mutex);
1178}
1179
1180/**
1181 * fc_lport_ms_resp() - Handle response to a management server
1182 *			exchange
1183 * @sp:	    current sequence in exchange
1184 * @fp:	    response frame
1185 * @lp_arg: Fibre Channel host port instance
1186 *
1187 * Locking Note: This function will be called without the lport lock
1188 * held, but it will lock, call an _enter_* function or fc_lport_error()
1189 * and then unlock the lport.
1190 */
1191static void fc_lport_ms_resp(struct fc_seq *sp, struct fc_frame *fp,
1192			     void *lp_arg)
1193{
1194	struct fc_lport *lport = lp_arg;
1195	struct fc_frame_header *fh;
1196	struct fc_ct_hdr *ct;
1197	struct fc_host_attrs *fc_host = shost_to_fc_host(lport->host);
1198	FC_LPORT_DBG(lport, "Received a ms %s\n", fc_els_resp_type(fp));
1199
1200	if (fp == ERR_PTR(-FC_EX_CLOSED))
1201		return;
1202
1203	mutex_lock(&lport->lp_mutex);
1204
1205	if (lport->state < LPORT_ST_RHBA || lport->state > LPORT_ST_DPRT) {
1206		FC_LPORT_DBG(lport, "Received a management server response, "
1207			     "but in state %s\n", fc_lport_state(lport));
1208		if (IS_ERR(fp))
1209			goto err;
1210		goto out;
1211	}
1212
1213	if (IS_ERR(fp)) {
1214		fc_lport_error(lport, fp);
1215		goto err;
1216	}
1217
1218	fh = fc_frame_header_get(fp);
1219	ct = fc_frame_payload_get(fp, sizeof(*ct));
1220
1221	if (fh && ct && fh->fh_type == FC_TYPE_CT &&
1222	    ct->ct_fs_type == FC_FST_MGMT &&
1223	    ct->ct_fs_subtype == FC_FDMI_SUBTYPE) {
1224		FC_LPORT_DBG(lport, "Received a management server response, "
1225				    "reason=%d explain=%d\n",
1226				    ct->ct_reason,
1227				    ct->ct_explan);
1228
1229		switch (lport->state) {
1230		case LPORT_ST_RHBA:
1231			if ((ntohs(ct->ct_cmd) == FC_FS_RJT) && fc_host->fdmi_version == FDMI_V2) {
1232				FC_LPORT_DBG(lport, "Error for FDMI-V2, fall back to FDMI-V1\n");
1233				fc_host->fdmi_version = FDMI_V1;
1234
1235				fc_lport_enter_ms(lport, LPORT_ST_RHBA);
1236
1237			} else if (ntohs(ct->ct_cmd) == FC_FS_ACC)
1238				fc_lport_enter_ms(lport, LPORT_ST_RPA);
1239			else /* Error Skip RPA */
1240				fc_lport_enter_scr(lport);
1241			break;
1242		case LPORT_ST_RPA:
1243			fc_lport_enter_scr(lport);
1244			break;
1245		case LPORT_ST_DPRT:
1246			fc_lport_enter_ms(lport, LPORT_ST_RHBA);
1247			break;
1248		case LPORT_ST_DHBA:
1249			fc_lport_enter_ms(lport, LPORT_ST_DPRT);
1250			break;
1251		default:
1252			/* should have already been caught by state checks */
1253			break;
1254		}
1255	} else {
1256		/* Invalid Frame? */
1257		fc_lport_error(lport, fp);
1258	}
1259out:
1260	fc_frame_free(fp);
1261err:
1262	mutex_unlock(&lport->lp_mutex);
1263}
1264
1265/**
1266 * fc_lport_scr_resp() - Handle response to State Change Register (SCR) request
1267 * @sp:	    current sequence in SCR exchange
1268 * @fp:	    response frame
1269 * @lp_arg: Fibre Channel lport port instance that sent the registration request
1270 *
1271 * Locking Note: This function will be called without the lport lock
1272 * held, but it will lock, call an _enter_* function or fc_lport_error
1273 * and then unlock the lport.
1274 */
1275static void fc_lport_scr_resp(struct fc_seq *sp, struct fc_frame *fp,
1276			      void *lp_arg)
1277{
1278	struct fc_lport *lport = lp_arg;
1279	u8 op;
1280
1281	FC_LPORT_DBG(lport, "Received a SCR %s\n", fc_els_resp_type(fp));
1282
1283	if (fp == ERR_PTR(-FC_EX_CLOSED))
1284		return;
1285
1286	mutex_lock(&lport->lp_mutex);
1287
1288	if (lport->state != LPORT_ST_SCR) {
1289		FC_LPORT_DBG(lport, "Received a SCR response, but in state "
1290			     "%s\n", fc_lport_state(lport));
1291		if (IS_ERR(fp))
1292			goto err;
1293		goto out;
1294	}
1295
1296	if (IS_ERR(fp)) {
1297		fc_lport_error(lport, fp);
1298		goto err;
1299	}
1300
1301	op = fc_frame_payload_op(fp);
1302	if (op == ELS_LS_ACC)
1303		fc_lport_enter_ready(lport);
1304	else
1305		fc_lport_error(lport, fp);
1306
1307out:
1308	fc_frame_free(fp);
1309err:
1310	mutex_unlock(&lport->lp_mutex);
1311}
1312
1313/**
1314 * fc_lport_enter_scr() - Send a SCR (State Change Register) request
1315 * @lport: The local port to register for state changes
 
 
 
1316 */
1317static void fc_lport_enter_scr(struct fc_lport *lport)
1318{
1319	struct fc_frame *fp;
1320
1321	lockdep_assert_held(&lport->lp_mutex);
1322
1323	FC_LPORT_DBG(lport, "Entered SCR state from %s state\n",
1324		     fc_lport_state(lport));
1325
1326	fc_lport_state_enter(lport, LPORT_ST_SCR);
1327
1328	fp = fc_frame_alloc(lport, sizeof(struct fc_els_scr));
1329	if (!fp) {
1330		fc_lport_error(lport, fp);
1331		return;
1332	}
1333
1334	if (!lport->tt.elsct_send(lport, FC_FID_FCTRL, fp, ELS_SCR,
1335				  fc_lport_scr_resp, lport,
1336				  2 * lport->r_a_tov))
1337		fc_lport_error(lport, NULL);
1338}
1339
1340/**
1341 * fc_lport_enter_ns() - register some object with the name server
1342 * @lport: Fibre Channel local port to register
1343 * @state: Local port state
 
 
1344 */
1345static void fc_lport_enter_ns(struct fc_lport *lport, enum fc_lport_state state)
1346{
1347	struct fc_frame *fp;
1348	enum fc_ns_req cmd;
1349	int size = sizeof(struct fc_ct_hdr);
1350	size_t len;
1351
1352	lockdep_assert_held(&lport->lp_mutex);
1353
1354	FC_LPORT_DBG(lport, "Entered %s state from %s state\n",
1355		     fc_lport_state_names[state],
1356		     fc_lport_state(lport));
1357
1358	fc_lport_state_enter(lport, state);
1359
1360	switch (state) {
1361	case LPORT_ST_RNN_ID:
1362		cmd = FC_NS_RNN_ID;
1363		size += sizeof(struct fc_ns_rn_id);
1364		break;
1365	case LPORT_ST_RSNN_NN:
1366		len = strnlen(fc_host_symbolic_name(lport->host), 255);
1367		/* if there is no symbolic name, skip to RFT_ID */
1368		if (!len)
1369			return fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1370		cmd = FC_NS_RSNN_NN;
1371		size += sizeof(struct fc_ns_rsnn) + len;
1372		break;
1373	case LPORT_ST_RSPN_ID:
1374		len = strnlen(fc_host_symbolic_name(lport->host), 255);
1375		/* if there is no symbolic name, skip to RFT_ID */
1376		if (!len)
1377			return fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1378		cmd = FC_NS_RSPN_ID;
1379		size += sizeof(struct fc_ns_rspn) + len;
1380		break;
1381	case LPORT_ST_RFT_ID:
1382		cmd = FC_NS_RFT_ID;
1383		size += sizeof(struct fc_ns_rft);
1384		break;
1385	case LPORT_ST_RFF_ID:
1386		cmd = FC_NS_RFF_ID;
1387		size += sizeof(struct fc_ns_rff_id);
1388		break;
1389	default:
1390		fc_lport_error(lport, NULL);
1391		return;
1392	}
1393
1394	fp = fc_frame_alloc(lport, size);
1395	if (!fp) {
1396		fc_lport_error(lport, fp);
1397		return;
1398	}
1399
1400	if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, cmd,
1401				  fc_lport_ns_resp,
1402				  lport, 3 * lport->r_a_tov))
1403		fc_lport_error(lport, fp);
1404}
1405
1406static struct fc_rport_operations fc_lport_rport_ops = {
1407	.event_callback = fc_lport_rport_callback,
1408};
1409
1410/**
1411 * fc_lport_enter_dns() - Create a fc_rport for the name server
1412 * @lport: The local port requesting a remote port for the name server
 
 
 
1413 */
1414static void fc_lport_enter_dns(struct fc_lport *lport)
1415{
1416	struct fc_rport_priv *rdata;
1417
1418	lockdep_assert_held(&lport->lp_mutex);
1419
1420	FC_LPORT_DBG(lport, "Entered DNS state from %s state\n",
1421		     fc_lport_state(lport));
1422
1423	fc_lport_state_enter(lport, LPORT_ST_DNS);
1424
1425	mutex_lock(&lport->disc.disc_mutex);
1426	rdata = fc_rport_create(lport, FC_FID_DIR_SERV);
1427	mutex_unlock(&lport->disc.disc_mutex);
1428	if (!rdata)
1429		goto err;
1430
1431	rdata->ops = &fc_lport_rport_ops;
1432	fc_rport_login(rdata);
1433	return;
1434
1435err:
1436	fc_lport_error(lport, NULL);
1437}
1438
1439/**
1440 * fc_lport_enter_ms() - management server commands
1441 * @lport: Fibre Channel local port to register
1442 * @state: Local port state
 
 
1443 */
1444static void fc_lport_enter_ms(struct fc_lport *lport, enum fc_lport_state state)
1445{
1446	struct fc_frame *fp;
1447	enum fc_fdmi_req cmd;
1448	int size = sizeof(struct fc_ct_hdr);
1449	size_t len;
1450	int numattrs;
1451	struct fc_host_attrs *fc_host = shost_to_fc_host(lport->host);
1452	lockdep_assert_held(&lport->lp_mutex);
1453
1454	FC_LPORT_DBG(lport, "Entered %s state from %s state\n",
1455		     fc_lport_state_names[state],
1456		     fc_lport_state(lport));
1457
1458	fc_lport_state_enter(lport, state);
1459
1460	switch (state) {
1461	case LPORT_ST_RHBA:
1462		cmd = FC_FDMI_RHBA;
1463		/* Number of HBA Attributes */
1464		numattrs = 11;
1465		len = sizeof(struct fc_fdmi_rhba);
1466		len -= sizeof(struct fc_fdmi_attr_entry);
1467
1468		len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
1469		len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
1470		len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
1471		len += FC_FDMI_HBA_ATTR_MODEL_LEN;
1472		len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
1473		len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
1474		len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
1475		len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
1476		len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
1477		len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
1478		len += FC_FDMI_HBA_ATTR_MAXCTPAYLOAD_LEN;
1479
1480
1481		if (fc_host->fdmi_version == FDMI_V2) {
1482			numattrs += 7;
1483			len += FC_FDMI_HBA_ATTR_NODESYMBLNAME_LEN;
1484			len += FC_FDMI_HBA_ATTR_VENDORSPECIFICINFO_LEN;
1485			len += FC_FDMI_HBA_ATTR_NUMBEROFPORTS_LEN;
1486			len += FC_FDMI_HBA_ATTR_FABRICNAME_LEN;
1487			len += FC_FDMI_HBA_ATTR_BIOSVERSION_LEN;
1488			len += FC_FDMI_HBA_ATTR_BIOSSTATE_LEN;
1489			len += FC_FDMI_HBA_ATTR_VENDORIDENTIFIER_LEN;
1490		}
1491
1492		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
1493
1494		size += len;
1495		break;
1496	case LPORT_ST_RPA:
1497		cmd = FC_FDMI_RPA;
1498		/* Number of Port Attributes */
1499		numattrs = 6;
1500		len = sizeof(struct fc_fdmi_rpa);
1501		len -= sizeof(struct fc_fdmi_attr_entry);
 
1502		len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
1503		len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
1504		len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
1505		len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
1506		len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
1507		len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
1508
1509		if (fc_host->fdmi_version == FDMI_V2) {
1510			numattrs += 10;
1511			len += FC_FDMI_PORT_ATTR_NODENAME_LEN;
1512			len += FC_FDMI_PORT_ATTR_PORTNAME_LEN;
1513			len += FC_FDMI_PORT_ATTR_SYMBOLICNAME_LEN;
1514			len += FC_FDMI_PORT_ATTR_PORTTYPE_LEN;
1515			len += FC_FDMI_PORT_ATTR_SUPPORTEDCLASSSRVC_LEN;
1516			len += FC_FDMI_PORT_ATTR_FABRICNAME_LEN;
1517			len += FC_FDMI_PORT_ATTR_CURRENTFC4TYPE_LEN;
1518			len += FC_FDMI_PORT_ATTR_PORTSTATE_LEN;
1519			len += FC_FDMI_PORT_ATTR_DISCOVEREDPORTS_LEN;
1520			len += FC_FDMI_PORT_ATTR_PORTID_LEN;
1521		}
1522
1523		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
1524
1525		size += len;
1526		break;
1527	case LPORT_ST_DPRT:
1528		cmd = FC_FDMI_DPRT;
1529		len = sizeof(struct fc_fdmi_dprt);
1530		size += len;
1531		break;
1532	case LPORT_ST_DHBA:
1533		cmd = FC_FDMI_DHBA;
1534		len = sizeof(struct fc_fdmi_dhba);
1535		size += len;
1536		break;
1537	default:
1538		fc_lport_error(lport, NULL);
1539		return;
1540	}
1541
1542	FC_LPORT_DBG(lport, "Cmd=0x%x Len %d size %d\n",
1543			     cmd, (int)len, size);
1544	fp = fc_frame_alloc(lport, size);
1545	if (!fp) {
1546		fc_lport_error(lport, fp);
1547		return;
1548	}
1549
1550	if (!lport->tt.elsct_send(lport, FC_FID_MGMT_SERV, fp, cmd,
1551				  fc_lport_ms_resp,
1552				  lport, 3 * lport->r_a_tov))
1553		fc_lport_error(lport, fp);
1554}
1555
1556/**
1557 * fc_lport_enter_fdmi() - Create a fc_rport for the management server
1558 * @lport: The local port requesting a remote port for the management server
 
 
 
1559 */
1560static void fc_lport_enter_fdmi(struct fc_lport *lport)
1561{
1562	struct fc_rport_priv *rdata;
1563
1564	lockdep_assert_held(&lport->lp_mutex);
1565
1566	FC_LPORT_DBG(lport, "Entered FDMI state from %s state\n",
1567		     fc_lport_state(lport));
1568
1569	fc_lport_state_enter(lport, LPORT_ST_FDMI);
1570
1571	mutex_lock(&lport->disc.disc_mutex);
1572	rdata = fc_rport_create(lport, FC_FID_MGMT_SERV);
1573	mutex_unlock(&lport->disc.disc_mutex);
1574	if (!rdata)
1575		goto err;
1576
1577	rdata->ops = &fc_lport_rport_ops;
1578	fc_rport_login(rdata);
1579	return;
1580
1581err:
1582	fc_lport_error(lport, NULL);
1583}
1584
1585/**
1586 * fc_lport_timeout() - Handler for the retry_work timer
1587 * @work: The work struct of the local port
1588 */
1589static void fc_lport_timeout(struct work_struct *work)
1590{
1591	struct fc_lport *lport =
1592		container_of(work, struct fc_lport,
1593			     retry_work.work);
1594	struct fc_host_attrs *fc_host = shost_to_fc_host(lport->host);
1595
1596	mutex_lock(&lport->lp_mutex);
1597
1598	switch (lport->state) {
1599	case LPORT_ST_DISABLED:
1600		break;
1601	case LPORT_ST_READY:
1602		break;
1603	case LPORT_ST_RESET:
1604		break;
1605	case LPORT_ST_FLOGI:
1606		fc_lport_enter_flogi(lport);
1607		break;
1608	case LPORT_ST_DNS:
1609		fc_lport_enter_dns(lport);
1610		break;
1611	case LPORT_ST_RNN_ID:
1612	case LPORT_ST_RSNN_NN:
1613	case LPORT_ST_RSPN_ID:
1614	case LPORT_ST_RFT_ID:
1615	case LPORT_ST_RFF_ID:
1616		fc_lport_enter_ns(lport, lport->state);
1617		break;
1618	case LPORT_ST_FDMI:
1619		fc_lport_enter_fdmi(lport);
1620		break;
1621	case LPORT_ST_RHBA:
1622		if (fc_host->fdmi_version == FDMI_V2) {
1623			FC_LPORT_DBG(lport, "timeout for FDMI-V2 RHBA,fall back to FDMI-V1\n");
1624			fc_host->fdmi_version = FDMI_V1;
1625			fc_lport_enter_ms(lport, LPORT_ST_RHBA);
1626			break;
1627		}
1628		fallthrough;
1629	case LPORT_ST_RPA:
1630	case LPORT_ST_DHBA:
1631	case LPORT_ST_DPRT:
1632		FC_LPORT_DBG(lport, "Skipping lport state %s to SCR\n",
1633			     fc_lport_state(lport));
1634		fallthrough;
1635	case LPORT_ST_SCR:
1636		fc_lport_enter_scr(lport);
1637		break;
1638	case LPORT_ST_LOGO:
1639		fc_lport_enter_logo(lport);
1640		break;
1641	}
1642
1643	mutex_unlock(&lport->lp_mutex);
1644}
1645
1646/**
1647 * fc_lport_logo_resp() - Handle response to LOGO request
1648 * @sp:	    The sequence that the LOGO was on
1649 * @fp:	    The LOGO frame
1650 * @lp_arg: The lport port that received the LOGO request
1651 *
1652 * Locking Note: This function will be called without the lport lock
1653 * held, but it will lock, call an _enter_* function or fc_lport_error()
1654 * and then unlock the lport.
1655 */
1656void fc_lport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
1657			void *lp_arg)
1658{
1659	struct fc_lport *lport = lp_arg;
1660	u8 op;
1661
1662	FC_LPORT_DBG(lport, "Received a LOGO %s\n", fc_els_resp_type(fp));
1663
1664	if (fp == ERR_PTR(-FC_EX_CLOSED))
1665		return;
1666
1667	mutex_lock(&lport->lp_mutex);
1668
1669	if (lport->state != LPORT_ST_LOGO) {
1670		FC_LPORT_DBG(lport, "Received a LOGO response, but in state "
1671			     "%s\n", fc_lport_state(lport));
1672		if (IS_ERR(fp))
1673			goto err;
1674		goto out;
1675	}
1676
1677	if (IS_ERR(fp)) {
1678		fc_lport_error(lport, fp);
1679		goto err;
1680	}
1681
1682	op = fc_frame_payload_op(fp);
1683	if (op == ELS_LS_ACC)
1684		fc_lport_enter_disabled(lport);
1685	else
1686		fc_lport_error(lport, fp);
1687
1688out:
1689	fc_frame_free(fp);
1690err:
1691	mutex_unlock(&lport->lp_mutex);
1692}
1693EXPORT_SYMBOL(fc_lport_logo_resp);
1694
1695/**
1696 * fc_lport_enter_logo() - Logout of the fabric
1697 * @lport: The local port to be logged out
 
 
 
1698 */
1699static void fc_lport_enter_logo(struct fc_lport *lport)
1700{
1701	struct fc_frame *fp;
1702	struct fc_els_logo *logo;
1703
1704	lockdep_assert_held(&lport->lp_mutex);
1705
1706	FC_LPORT_DBG(lport, "Entered LOGO state from %s state\n",
1707		     fc_lport_state(lport));
1708
1709	fc_lport_state_enter(lport, LPORT_ST_LOGO);
1710	fc_vports_linkchange(lport);
1711
1712	fp = fc_frame_alloc(lport, sizeof(*logo));
1713	if (!fp) {
1714		fc_lport_error(lport, fp);
1715		return;
1716	}
1717
1718	if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_LOGO,
1719				  fc_lport_logo_resp, lport,
1720				  2 * lport->r_a_tov))
1721		fc_lport_error(lport, NULL);
1722}
1723
1724/**
1725 * fc_lport_flogi_resp() - Handle response to FLOGI request
1726 * @sp:	    The sequence that the FLOGI was on
1727 * @fp:	    The FLOGI response frame
1728 * @lp_arg: The lport port that received the FLOGI response
1729 *
1730 * Locking Note: This function will be called without the lport lock
1731 * held, but it will lock, call an _enter_* function or fc_lport_error()
1732 * and then unlock the lport.
1733 */
1734void fc_lport_flogi_resp(struct fc_seq *sp, struct fc_frame *fp,
1735			 void *lp_arg)
1736{
1737	struct fc_lport *lport = lp_arg;
1738	struct fc_frame_header *fh;
1739	struct fc_els_flogi *flp;
1740	u32 did;
1741	u16 csp_flags;
1742	unsigned int r_a_tov;
1743	unsigned int e_d_tov;
1744	u16 mfs;
1745
1746	FC_LPORT_DBG(lport, "Received a FLOGI %s\n", fc_els_resp_type(fp));
1747
1748	if (fp == ERR_PTR(-FC_EX_CLOSED))
1749		return;
1750
1751	mutex_lock(&lport->lp_mutex);
1752
1753	if (lport->state != LPORT_ST_FLOGI) {
1754		FC_LPORT_DBG(lport, "Received a FLOGI response, but in state "
1755			     "%s\n", fc_lport_state(lport));
1756		if (IS_ERR(fp))
1757			goto err;
1758		goto out;
1759	}
1760
1761	if (IS_ERR(fp)) {
1762		fc_lport_error(lport, fp);
1763		goto err;
1764	}
1765
1766	fh = fc_frame_header_get(fp);
1767	did = fc_frame_did(fp);
1768	if (fh->fh_r_ctl != FC_RCTL_ELS_REP || did == 0 ||
1769	    fc_frame_payload_op(fp) != ELS_LS_ACC) {
1770		FC_LPORT_DBG(lport, "FLOGI not accepted or bad response\n");
1771		fc_lport_error(lport, fp);
1772		goto out;
1773	}
1774
1775	flp = fc_frame_payload_get(fp, sizeof(*flp));
1776	if (!flp) {
1777		FC_LPORT_DBG(lport, "FLOGI bad response\n");
1778		fc_lport_error(lport, fp);
1779		goto out;
1780	}
1781
1782	mfs = ntohs(flp->fl_csp.sp_bb_data) &
1783		FC_SP_BB_DATA_MASK;
1784
1785	if (mfs < FC_SP_MIN_MAX_PAYLOAD || mfs > FC_SP_MAX_MAX_PAYLOAD) {
1786		FC_LPORT_DBG(lport, "FLOGI bad mfs:%hu response, "
1787			     "lport->mfs:%u\n", mfs, lport->mfs);
1788		fc_lport_error(lport, fp);
1789		goto out;
1790	}
1791
1792	if (mfs <= lport->mfs) {
1793		lport->mfs = mfs;
1794		fc_host_maxframe_size(lport->host) = mfs;
1795	}
1796
1797	csp_flags = ntohs(flp->fl_csp.sp_features);
1798	r_a_tov = ntohl(flp->fl_csp.sp_r_a_tov);
1799	e_d_tov = ntohl(flp->fl_csp.sp_e_d_tov);
1800	if (csp_flags & FC_SP_FT_EDTR)
1801		e_d_tov /= 1000000;
1802
1803	lport->npiv_enabled = !!(csp_flags & FC_SP_FT_NPIV_ACC);
1804
1805	if ((csp_flags & FC_SP_FT_FPORT) == 0) {
1806		if (e_d_tov > lport->e_d_tov)
1807			lport->e_d_tov = e_d_tov;
1808		lport->r_a_tov = 2 * lport->e_d_tov;
1809		fc_lport_set_port_id(lport, did, fp);
1810		printk(KERN_INFO "host%d: libfc: "
1811		       "Port (%6.6x) entered "
1812		       "point-to-point mode\n",
1813		       lport->host->host_no, did);
1814		fc_lport_ptp_setup(lport, fc_frame_sid(fp),
1815				   get_unaligned_be64(
1816					   &flp->fl_wwpn),
1817				   get_unaligned_be64(
1818					   &flp->fl_wwnn));
1819	} else {
1820		if (e_d_tov > lport->e_d_tov)
1821			lport->e_d_tov = e_d_tov;
1822		if (r_a_tov > lport->r_a_tov)
1823			lport->r_a_tov = r_a_tov;
1824		fc_host_fabric_name(lport->host) =
1825			get_unaligned_be64(&flp->fl_wwnn);
1826		fc_lport_set_port_id(lport, did, fp);
1827		fc_lport_enter_dns(lport);
1828	}
1829
1830out:
1831	fc_frame_free(fp);
1832err:
1833	mutex_unlock(&lport->lp_mutex);
1834}
1835EXPORT_SYMBOL(fc_lport_flogi_resp);
1836
1837/**
1838 * fc_lport_enter_flogi() - Send a FLOGI request to the fabric manager
1839 * @lport: Fibre Channel local port to be logged in to the fabric
 
 
 
1840 */
1841static void fc_lport_enter_flogi(struct fc_lport *lport)
1842{
1843	struct fc_frame *fp;
1844
1845	lockdep_assert_held(&lport->lp_mutex);
1846
1847	FC_LPORT_DBG(lport, "Entered FLOGI state from %s state\n",
1848		     fc_lport_state(lport));
1849
1850	fc_lport_state_enter(lport, LPORT_ST_FLOGI);
1851
1852	if (lport->point_to_multipoint) {
1853		if (lport->port_id)
1854			fc_lport_enter_ready(lport);
1855		return;
1856	}
1857
1858	fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
1859	if (!fp)
1860		return fc_lport_error(lport, fp);
1861
1862	if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp,
1863				  lport->vport ? ELS_FDISC : ELS_FLOGI,
1864				  fc_lport_flogi_resp, lport,
1865				  lport->vport ? 2 * lport->r_a_tov :
1866				  lport->e_d_tov))
1867		fc_lport_error(lport, NULL);
1868}
1869
1870/**
1871 * fc_lport_config() - Configure a fc_lport
1872 * @lport: The local port to be configured
1873 */
1874int fc_lport_config(struct fc_lport *lport)
1875{
1876	INIT_DELAYED_WORK(&lport->retry_work, fc_lport_timeout);
1877	mutex_init(&lport->lp_mutex);
1878
1879	fc_lport_state_enter(lport, LPORT_ST_DISABLED);
1880
1881	fc_lport_add_fc4_type(lport, FC_TYPE_FCP);
1882	fc_lport_add_fc4_type(lport, FC_TYPE_CT);
1883	fc_fc4_conf_lport_params(lport, FC_TYPE_FCP);
1884
1885	return 0;
1886}
1887EXPORT_SYMBOL(fc_lport_config);
1888
1889/**
1890 * fc_lport_init() - Initialize the lport layer for a local port
1891 * @lport: The local port to initialize the exchange layer for
1892 */
1893int fc_lport_init(struct fc_lport *lport)
1894{
1895	struct fc_host_attrs *fc_host;
1896
1897	fc_host = shost_to_fc_host(lport->host);
1898
1899	/* Set FDMI version to FDMI-2 specification*/
1900	fc_host->fdmi_version = FDMI_V2;
1901
1902	fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
1903	fc_host_node_name(lport->host) = lport->wwnn;
1904	fc_host_port_name(lport->host) = lport->wwpn;
1905	fc_host_supported_classes(lport->host) = FC_COS_CLASS3;
1906	memset(fc_host_supported_fc4s(lport->host), 0,
1907	       sizeof(fc_host_supported_fc4s(lport->host)));
1908	fc_host_supported_fc4s(lport->host)[2] = 1;
1909	fc_host_supported_fc4s(lport->host)[7] = 1;
1910	fc_host_num_discovered_ports(lport->host) = 4;
1911
1912	/* This value is also unchanging */
1913	memset(fc_host_active_fc4s(lport->host), 0,
1914	       sizeof(fc_host_active_fc4s(lport->host)));
1915	fc_host_active_fc4s(lport->host)[2] = 1;
1916	fc_host_active_fc4s(lport->host)[7] = 1;
1917	fc_host_maxframe_size(lport->host) = lport->mfs;
1918	fc_host_supported_speeds(lport->host) = 0;
1919	if (lport->link_supported_speeds & FC_PORTSPEED_1GBIT)
1920		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_1GBIT;
1921	if (lport->link_supported_speeds & FC_PORTSPEED_10GBIT)
1922		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_10GBIT;
1923	if (lport->link_supported_speeds & FC_PORTSPEED_40GBIT)
1924		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_40GBIT;
1925	if (lport->link_supported_speeds & FC_PORTSPEED_100GBIT)
1926		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_100GBIT;
1927	if (lport->link_supported_speeds & FC_PORTSPEED_25GBIT)
1928		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_25GBIT;
1929	if (lport->link_supported_speeds & FC_PORTSPEED_50GBIT)
1930		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_50GBIT;
1931	if (lport->link_supported_speeds & FC_PORTSPEED_100GBIT)
1932		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_100GBIT;
1933
1934	fc_fc4_add_lport(lport);
1935
1936	fc_host_num_discovered_ports(lport->host) = DISCOVERED_PORTS;
1937	fc_host_port_state(lport->host) = FC_PORTSTATE_ONLINE;
1938	fc_host_max_ct_payload(lport->host) = MAX_CT_PAYLOAD;
1939	fc_host_num_ports(lport->host) = NUMBER_OF_PORTS;
1940	fc_host_bootbios_state(lport->host) = 0X00000000;
1941	snprintf(fc_host_bootbios_version(lport->host),
1942		FC_SYMBOLIC_NAME_SIZE, "%s", "Unknown");
1943
1944	return 0;
1945}
1946EXPORT_SYMBOL(fc_lport_init);
1947
1948/**
1949 * fc_lport_bsg_resp() - The common response handler for FC Passthrough requests
1950 * @sp:	      The sequence for the FC Passthrough response
1951 * @fp:	      The response frame
1952 * @info_arg: The BSG info that the response is for
1953 */
1954static void fc_lport_bsg_resp(struct fc_seq *sp, struct fc_frame *fp,
1955			      void *info_arg)
1956{
1957	struct fc_bsg_info *info = info_arg;
1958	struct bsg_job *job = info->job;
1959	struct fc_bsg_reply *bsg_reply = job->reply;
1960	struct fc_lport *lport = info->lport;
1961	struct fc_frame_header *fh;
1962	size_t len;
1963	void *buf;
1964
1965	if (IS_ERR(fp)) {
1966		bsg_reply->result = (PTR_ERR(fp) == -FC_EX_CLOSED) ?
1967			-ECONNABORTED : -ETIMEDOUT;
1968		job->reply_len = sizeof(uint32_t);
1969		bsg_job_done(job, bsg_reply->result,
1970			       bsg_reply->reply_payload_rcv_len);
1971		kfree(info);
1972		return;
1973	}
1974
1975	mutex_lock(&lport->lp_mutex);
1976	fh = fc_frame_header_get(fp);
1977	len = fr_len(fp) - sizeof(*fh);
1978	buf = fc_frame_payload_get(fp, 0);
1979
1980	if (fr_sof(fp) == FC_SOF_I3 && !ntohs(fh->fh_seq_cnt)) {
1981		/* Get the response code from the first frame payload */
1982		unsigned short cmd = (info->rsp_code == FC_FS_ACC) ?
1983			ntohs(((struct fc_ct_hdr *)buf)->ct_cmd) :
1984			(unsigned short)fc_frame_payload_op(fp);
1985
1986		/* Save the reply status of the job */
1987		bsg_reply->reply_data.ctels_reply.status =
1988			(cmd == info->rsp_code) ?
1989			FC_CTELS_STATUS_OK : FC_CTELS_STATUS_REJECT;
1990	}
1991
1992	bsg_reply->reply_payload_rcv_len +=
1993		fc_copy_buffer_to_sglist(buf, len, info->sg, &info->nents,
1994					 &info->offset, NULL);
1995
1996	if (fr_eof(fp) == FC_EOF_T &&
1997	    (ntoh24(fh->fh_f_ctl) & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) ==
1998	    (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) {
1999		if (bsg_reply->reply_payload_rcv_len >
2000		    job->reply_payload.payload_len)
2001			bsg_reply->reply_payload_rcv_len =
2002				job->reply_payload.payload_len;
2003		bsg_reply->result = 0;
2004		bsg_job_done(job, bsg_reply->result,
2005			       bsg_reply->reply_payload_rcv_len);
2006		kfree(info);
2007	}
2008	fc_frame_free(fp);
2009	mutex_unlock(&lport->lp_mutex);
2010}
2011
2012/**
2013 * fc_lport_els_request() - Send ELS passthrough request
2014 * @job:   The BSG Passthrough job
2015 * @lport: The local port sending the request
2016 * @did:   The destination port id
2017 * @tov:   The timeout period (in ms)
 
 
2018 */
2019static int fc_lport_els_request(struct bsg_job *job,
2020				struct fc_lport *lport,
2021				u32 did, u32 tov)
2022{
2023	struct fc_bsg_info *info;
2024	struct fc_frame *fp;
2025	struct fc_frame_header *fh;
2026	char *pp;
2027	int len;
2028
2029	lockdep_assert_held(&lport->lp_mutex);
2030
2031	fp = fc_frame_alloc(lport, job->request_payload.payload_len);
2032	if (!fp)
2033		return -ENOMEM;
2034
2035	len = job->request_payload.payload_len;
2036	pp = fc_frame_payload_get(fp, len);
2037
2038	sg_copy_to_buffer(job->request_payload.sg_list,
2039			  job->request_payload.sg_cnt,
2040			  pp, len);
2041
2042	fh = fc_frame_header_get(fp);
2043	fh->fh_r_ctl = FC_RCTL_ELS_REQ;
2044	hton24(fh->fh_d_id, did);
2045	hton24(fh->fh_s_id, lport->port_id);
2046	fh->fh_type = FC_TYPE_ELS;
2047	hton24(fh->fh_f_ctl, FC_FCTL_REQ);
2048	fh->fh_cs_ctl = 0;
2049	fh->fh_df_ctl = 0;
2050	fh->fh_parm_offset = 0;
2051
2052	info = kzalloc(sizeof(struct fc_bsg_info), GFP_KERNEL);
2053	if (!info) {
2054		fc_frame_free(fp);
2055		return -ENOMEM;
2056	}
2057
2058	info->job = job;
2059	info->lport = lport;
2060	info->rsp_code = ELS_LS_ACC;
2061	info->nents = job->reply_payload.sg_cnt;
2062	info->sg = job->reply_payload.sg_list;
2063
2064	if (!fc_exch_seq_send(lport, fp, fc_lport_bsg_resp,
2065			      NULL, info, tov)) {
2066		kfree(info);
2067		return -ECOMM;
2068	}
2069	return 0;
2070}
2071
2072/**
2073 * fc_lport_ct_request() - Send CT Passthrough request
2074 * @job:   The BSG Passthrough job
2075 * @lport: The local port sending the request
2076 * @did:   The destination FC-ID
2077 * @tov:   The timeout period to wait for the response
 
 
 
2078 */
2079static int fc_lport_ct_request(struct bsg_job *job,
2080			       struct fc_lport *lport, u32 did, u32 tov)
2081{
2082	struct fc_bsg_info *info;
2083	struct fc_frame *fp;
2084	struct fc_frame_header *fh;
2085	struct fc_ct_req *ct;
2086	size_t len;
2087
2088	lockdep_assert_held(&lport->lp_mutex);
2089
2090	fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) +
2091			    job->request_payload.payload_len);
2092	if (!fp)
2093		return -ENOMEM;
2094
2095	len = job->request_payload.payload_len;
2096	ct = fc_frame_payload_get(fp, len);
2097
2098	sg_copy_to_buffer(job->request_payload.sg_list,
2099			  job->request_payload.sg_cnt,
2100			  ct, len);
2101
2102	fh = fc_frame_header_get(fp);
2103	fh->fh_r_ctl = FC_RCTL_DD_UNSOL_CTL;
2104	hton24(fh->fh_d_id, did);
2105	hton24(fh->fh_s_id, lport->port_id);
2106	fh->fh_type = FC_TYPE_CT;
2107	hton24(fh->fh_f_ctl, FC_FCTL_REQ);
2108	fh->fh_cs_ctl = 0;
2109	fh->fh_df_ctl = 0;
2110	fh->fh_parm_offset = 0;
2111
2112	info = kzalloc(sizeof(struct fc_bsg_info), GFP_KERNEL);
2113	if (!info) {
2114		fc_frame_free(fp);
2115		return -ENOMEM;
2116	}
2117
2118	info->job = job;
2119	info->lport = lport;
2120	info->rsp_code = FC_FS_ACC;
2121	info->nents = job->reply_payload.sg_cnt;
2122	info->sg = job->reply_payload.sg_list;
2123
2124	if (!fc_exch_seq_send(lport, fp, fc_lport_bsg_resp,
2125			      NULL, info, tov)) {
2126		kfree(info);
2127		return -ECOMM;
2128	}
2129	return 0;
2130}
2131
2132/**
2133 * fc_lport_bsg_request() - The common entry point for sending
2134 *			    FC Passthrough requests
2135 * @job: The BSG passthrough job
2136 */
2137int fc_lport_bsg_request(struct bsg_job *job)
2138{
2139	struct fc_bsg_request *bsg_request = job->request;
2140	struct fc_bsg_reply *bsg_reply = job->reply;
2141	struct Scsi_Host *shost = fc_bsg_to_shost(job);
2142	struct fc_lport *lport = shost_priv(shost);
2143	struct fc_rport *rport;
2144	struct fc_rport_priv *rdata;
2145	int rc = -EINVAL;
2146	u32 did, tov;
2147
2148	bsg_reply->reply_payload_rcv_len = 0;
 
 
2149
2150	mutex_lock(&lport->lp_mutex);
2151
2152	switch (bsg_request->msgcode) {
2153	case FC_BSG_RPT_ELS:
2154		rport = fc_bsg_to_rport(job);
2155		if (!rport)
2156			break;
2157
2158		rdata = rport->dd_data;
2159		rc = fc_lport_els_request(job, lport, rport->port_id,
2160					  rdata->e_d_tov);
2161		break;
2162
2163	case FC_BSG_RPT_CT:
2164		rport = fc_bsg_to_rport(job);
2165		if (!rport)
2166			break;
2167
2168		rdata = rport->dd_data;
2169		rc = fc_lport_ct_request(job, lport, rport->port_id,
2170					 rdata->e_d_tov);
2171		break;
2172
2173	case FC_BSG_HST_CT:
2174		did = ntoh24(bsg_request->rqst_data.h_ct.port_id);
2175		if (did == FC_FID_DIR_SERV) {
2176			rdata = lport->dns_rdata;
2177			if (!rdata)
2178				break;
2179			tov = rdata->e_d_tov;
2180		} else {
2181			rdata = fc_rport_lookup(lport, did);
2182			if (!rdata)
2183				break;
2184			tov = rdata->e_d_tov;
2185			kref_put(&rdata->kref, fc_rport_destroy);
2186		}
2187
2188		rc = fc_lport_ct_request(job, lport, did, tov);
2189		break;
2190
2191	case FC_BSG_HST_ELS_NOLOGIN:
2192		did = ntoh24(bsg_request->rqst_data.h_els.port_id);
2193		rc = fc_lport_els_request(job, lport, did, lport->e_d_tov);
2194		break;
2195	}
2196
2197	mutex_unlock(&lport->lp_mutex);
2198	return rc;
2199}
2200EXPORT_SYMBOL(fc_lport_bsg_request);
v3.5.6
 
   1/*
   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 *
  35 * HIERARCHY
  36 *
  37 * The following hierarchy defines the locking rules. A greater lock
  38 * may be held before acquiring a lesser lock, but a lesser lock should never
  39 * be held while attempting to acquire a greater lock. Here is the hierarchy-
  40 *
  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
  55 * callback handler because no other rport work in this queue can be executed
  56 * at the same time.
  57 *
  58 * When discovery succeeds or fails a callback is made to the lport as
  59 * notification. Currently, successful discovery causes the lport to take no
  60 * 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>
  91#include <linux/delay.h>
  92#include <linux/module.h>
  93#include <linux/slab.h>
  94#include <asm/unaligned.h>
  95
  96#include <scsi/fc/fc_gs.h>
  97
  98#include <scsi/libfc.h>
  99#include <scsi/fc_encode.h>
 100#include <linux/scatterlist.h>
 101
 
 102#include "fc_libfc.h"
 103
 104/* 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
 110static 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 *);
 115static void fc_lport_enter_ns(struct fc_lport *, enum fc_lport_state);
 116static 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 *);
 119static void fc_lport_enter_fdmi(struct fc_lport *lport);
 120static void fc_lport_enter_ms(struct fc_lport *, enum fc_lport_state);
 121
 122static const char *fc_lport_state_names[] = {
 123	[LPORT_ST_DISABLED] = "disabled",
 124	[LPORT_ST_FLOGI] =    "FLOGI",
 125	[LPORT_ST_DNS] =      "dNS",
 126	[LPORT_ST_RNN_ID] =   "RNN_ID",
 127	[LPORT_ST_RSNN_NN] =  "RSNN_NN",
 128	[LPORT_ST_RSPN_ID] =  "RSPN_ID",
 129	[LPORT_ST_RFT_ID] =   "RFT_ID",
 130	[LPORT_ST_RFF_ID] =   "RFF_ID",
 131	[LPORT_ST_FDMI] =     "FDMI",
 132	[LPORT_ST_RHBA] =     "RHBA",
 133	[LPORT_ST_RPA] =      "RPA",
 134	[LPORT_ST_DHBA] =     "DHBA",
 135	[LPORT_ST_DPRT] =     "DPRT",
 136	[LPORT_ST_SCR] =      "SCR",
 137	[LPORT_ST_READY] =    "Ready",
 138	[LPORT_ST_LOGO] =     "LOGO",
 139	[LPORT_ST_RESET] =    "reset",
 140};
 141
 142/**
 143 * struct fc_bsg_info - FC Passthrough managemet structure
 144 * @job:      The passthrough job
 145 * @lport:    The local port to pass through a command
 146 * @rsp_code: The expected response code
 147 * @sg:	      job->reply_payload.sg_list
 148 * @nents:    job->reply_payload.sg_cnt
 149 * @offset:   The offset into the response data
 150 */
 151struct fc_bsg_info {
 152	struct fc_bsg_job *job;
 153	struct fc_lport *lport;
 154	u16 rsp_code;
 155	struct scatterlist *sg;
 156	u32 nents;
 157	size_t offset;
 158};
 159
 160/**
 161 * fc_frame_drop() - Dummy frame handler
 162 * @lport: The local port the frame was received on
 163 * @fp:	   The received frame
 164 */
 165static int fc_frame_drop(struct fc_lport *lport, struct fc_frame *fp)
 166{
 167	fc_frame_free(fp);
 168	return 0;
 169}
 170
 171/**
 172 * fc_lport_rport_callback() - Event handler for rport events
 173 * @lport: The lport which is receiving the event
 174 * @rdata: private remote port data
 175 * @event: The event that occurred
 176 *
 177 * Locking Note: The rport lock should not be held when calling
 178 *		 this function.
 179 */
 180static void fc_lport_rport_callback(struct fc_lport *lport,
 181				    struct fc_rport_priv *rdata,
 182				    enum fc_rport_event event)
 183{
 184	FC_LPORT_DBG(lport, "Received a %d event for port (%6.6x)\n", event,
 185		     rdata->ids.port_id);
 186
 187	mutex_lock(&lport->lp_mutex);
 188	switch (event) {
 189	case RPORT_EV_READY:
 190		if (lport->state == LPORT_ST_DNS) {
 191			lport->dns_rdata = rdata;
 192			fc_lport_enter_ns(lport, LPORT_ST_RNN_ID);
 193		} else if (lport->state == LPORT_ST_FDMI) {
 194			lport->ms_rdata = rdata;
 195			fc_lport_enter_ms(lport, LPORT_ST_DHBA);
 196		} else {
 197			FC_LPORT_DBG(lport, "Received an READY event "
 198				     "on port (%6.6x) for the directory "
 199				     "server, but the lport is not "
 200				     "in the DNS or FDMI state, it's in the "
 201				     "%d state", rdata->ids.port_id,
 202				     lport->state);
 203			lport->tt.rport_logoff(rdata);
 204		}
 205		break;
 206	case RPORT_EV_LOGO:
 207	case RPORT_EV_FAILED:
 208	case RPORT_EV_STOP:
 209		if (rdata->ids.port_id == FC_FID_DIR_SERV)
 210			lport->dns_rdata = NULL;
 211		else if (rdata->ids.port_id == FC_FID_MGMT_SERV)
 212			lport->ms_rdata = NULL;
 213		break;
 214	case RPORT_EV_NONE:
 215		break;
 216	}
 217	mutex_unlock(&lport->lp_mutex);
 218}
 219
 220/**
 221 * fc_lport_state() - Return a string which represents the lport's state
 222 * @lport: The lport whose state is to converted to a string
 223 */
 224static const char *fc_lport_state(struct fc_lport *lport)
 225{
 226	const char *cp;
 227
 228	cp = fc_lport_state_names[lport->state];
 229	if (!cp)
 230		cp = "unknown";
 231	return cp;
 232}
 233
 234/**
 235 * fc_lport_ptp_setup() - Create an rport for point-to-point mode
 236 * @lport:	 The lport to attach the ptp rport to
 237 * @remote_fid:	 The FID of the ptp rport
 238 * @remote_wwpn: The WWPN of the ptp rport
 239 * @remote_wwnn: The WWNN of the ptp rport
 240 */
 241static void fc_lport_ptp_setup(struct fc_lport *lport,
 242			       u32 remote_fid, u64 remote_wwpn,
 243			       u64 remote_wwnn)
 244{
 
 
 
 
 
 
 245	mutex_lock(&lport->disc.disc_mutex);
 246	if (lport->ptp_rdata) {
 247		lport->tt.rport_logoff(lport->ptp_rdata);
 248		kref_put(&lport->ptp_rdata->kref, lport->tt.rport_destroy);
 
 
 
 249	}
 250	lport->ptp_rdata = lport->tt.rport_create(lport, remote_fid);
 251	kref_get(&lport->ptp_rdata->kref);
 252	lport->ptp_rdata->ids.port_name = remote_wwpn;
 253	lport->ptp_rdata->ids.node_name = remote_wwnn;
 254	mutex_unlock(&lport->disc.disc_mutex);
 255
 256	lport->tt.rport_login(lport->ptp_rdata);
 257
 258	fc_lport_enter_ready(lport);
 259}
 260
 261/**
 262 * fc_get_host_port_state() - Return the port state of the given Scsi_Host
 263 * @shost:  The SCSI host whose port state is to be determined
 264 */
 265void fc_get_host_port_state(struct Scsi_Host *shost)
 266{
 267	struct fc_lport *lport = shost_priv(shost);
 268
 269	mutex_lock(&lport->lp_mutex);
 270	if (!lport->link_up)
 271		fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
 272	else
 273		switch (lport->state) {
 274		case LPORT_ST_READY:
 275			fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
 276			break;
 277		default:
 278			fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
 279		}
 280	mutex_unlock(&lport->lp_mutex);
 281}
 282EXPORT_SYMBOL(fc_get_host_port_state);
 283
 284/**
 285 * fc_get_host_speed() - Return the speed of the given Scsi_Host
 286 * @shost: The SCSI host whose port speed is to be determined
 287 */
 288void fc_get_host_speed(struct Scsi_Host *shost)
 289{
 290	struct fc_lport *lport = shost_priv(shost);
 291
 292	fc_host_speed(shost) = lport->link_speed;
 293}
 294EXPORT_SYMBOL(fc_get_host_speed);
 295
 296/**
 297 * fc_get_host_stats() - Return the Scsi_Host's statistics
 298 * @shost: The SCSI host whose statistics are to be returned
 299 */
 300struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *shost)
 301{
 302	struct fc_host_statistics *fcoe_stats;
 303	struct fc_lport *lport = shost_priv(shost);
 304	struct timespec v0, v1;
 305	unsigned int cpu;
 306	u64 fcp_in_bytes = 0;
 307	u64 fcp_out_bytes = 0;
 308
 309	fcoe_stats = &lport->host_stats;
 310	memset(fcoe_stats, 0, sizeof(struct fc_host_statistics));
 311
 312	jiffies_to_timespec(jiffies, &v0);
 313	jiffies_to_timespec(lport->boot_time, &v1);
 314	fcoe_stats->seconds_since_last_reset = (v0.tv_sec - v1.tv_sec);
 315
 316	for_each_possible_cpu(cpu) {
 317		struct fcoe_dev_stats *stats;
 318
 319		stats = per_cpu_ptr(lport->dev_stats, cpu);
 320
 321		fcoe_stats->tx_frames += stats->TxFrames;
 322		fcoe_stats->tx_words += stats->TxWords;
 323		fcoe_stats->rx_frames += stats->RxFrames;
 324		fcoe_stats->rx_words += stats->RxWords;
 325		fcoe_stats->error_frames += stats->ErrorFrames;
 326		fcoe_stats->invalid_crc_count += stats->InvalidCRCCount;
 327		fcoe_stats->fcp_input_requests += stats->InputRequests;
 328		fcoe_stats->fcp_output_requests += stats->OutputRequests;
 329		fcoe_stats->fcp_control_requests += stats->ControlRequests;
 330		fcp_in_bytes += stats->InputBytes;
 331		fcp_out_bytes += stats->OutputBytes;
 332		fcoe_stats->link_failure_count += stats->LinkFailureCount;
 333	}
 334	fcoe_stats->fcp_input_megabytes = div_u64(fcp_in_bytes, 1000000);
 335	fcoe_stats->fcp_output_megabytes = div_u64(fcp_out_bytes, 1000000);
 336	fcoe_stats->lip_count = -1;
 337	fcoe_stats->nos_count = -1;
 338	fcoe_stats->loss_of_sync_count = -1;
 339	fcoe_stats->loss_of_signal_count = -1;
 340	fcoe_stats->prim_seq_protocol_err_count = -1;
 341	fcoe_stats->dumped_frames = -1;
 342	return fcoe_stats;
 
 
 
 
 
 
 
 343}
 344EXPORT_SYMBOL(fc_get_host_stats);
 345
 346/**
 347 * fc_lport_flogi_fill() - Fill in FLOGI command for request
 348 * @lport: The local port the FLOGI is for
 349 * @flogi: The FLOGI command
 350 * @op:	   The opcode
 351 */
 352static void fc_lport_flogi_fill(struct fc_lport *lport,
 353				struct fc_els_flogi *flogi,
 354				unsigned int op)
 355{
 356	struct fc_els_csp *sp;
 357	struct fc_els_cssp *cp;
 358
 359	memset(flogi, 0, sizeof(*flogi));
 360	flogi->fl_cmd = (u8) op;
 361	put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn);
 362	put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn);
 363	sp = &flogi->fl_csp;
 364	sp->sp_hi_ver = 0x20;
 365	sp->sp_lo_ver = 0x20;
 366	sp->sp_bb_cred = htons(10);	/* this gets set by gateway */
 367	sp->sp_bb_data = htons((u16) lport->mfs);
 368	cp = &flogi->fl_cssp[3 - 1];	/* class 3 parameters */
 369	cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ);
 370	if (op != ELS_FLOGI) {
 371		sp->sp_features = htons(FC_SP_FT_CIRO);
 372		sp->sp_tot_seq = htons(255);	/* seq. we accept */
 373		sp->sp_rel_off = htons(0x1f);
 374		sp->sp_e_d_tov = htonl(lport->e_d_tov);
 375
 376		cp->cp_rdfs = htons((u16) lport->mfs);
 377		cp->cp_con_seq = htons(255);
 378		cp->cp_open_seq = 1;
 379	}
 380}
 381
 382/**
 383 * fc_lport_add_fc4_type() - Add a supported FC-4 type to a local port
 384 * @lport: The local port to add a new FC-4 type to
 385 * @type:  The new FC-4 type
 386 */
 387static void fc_lport_add_fc4_type(struct fc_lport *lport, enum fc_fh_type type)
 388{
 389	__be32 *mp;
 390
 391	mp = &lport->fcts.ff_type_map[type / FC_NS_BPW];
 392	*mp = htonl(ntohl(*mp) | 1UL << (type % FC_NS_BPW));
 393}
 394
 395/**
 396 * fc_lport_recv_rlir_req() - Handle received Registered Link Incident Report.
 397 * @lport: Fibre Channel local port receiving the RLIR
 398 * @fp:	   The RLIR request frame
 399 *
 400 * Locking Note: The lport lock is expected to be held before calling
 401 * this function.
 402 */
 403static void fc_lport_recv_rlir_req(struct fc_lport *lport, struct fc_frame *fp)
 404{
 
 
 405	FC_LPORT_DBG(lport, "Received RLIR request while in state %s\n",
 406		     fc_lport_state(lport));
 407
 408	lport->tt.seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
 409	fc_frame_free(fp);
 410}
 411
 412/**
 413 * fc_lport_recv_echo_req() - Handle received ECHO request
 414 * @lport: The local port receiving the ECHO
 415 * @fp:	   ECHO request frame
 416 *
 417 * Locking Note: The lport lock is expected to be held before calling
 418 * this function.
 419 */
 420static void fc_lport_recv_echo_req(struct fc_lport *lport,
 421				   struct fc_frame *in_fp)
 422{
 423	struct fc_frame *fp;
 424	unsigned int len;
 425	void *pp;
 426	void *dp;
 427
 
 
 428	FC_LPORT_DBG(lport, "Received ECHO request while in state %s\n",
 429		     fc_lport_state(lport));
 430
 431	len = fr_len(in_fp) - sizeof(struct fc_frame_header);
 432	pp = fc_frame_payload_get(in_fp, len);
 433
 434	if (len < sizeof(__be32))
 435		len = sizeof(__be32);
 436
 437	fp = fc_frame_alloc(lport, len);
 438	if (fp) {
 439		dp = fc_frame_payload_get(fp, len);
 440		memcpy(dp, pp, len);
 441		*((__be32 *)dp) = htonl(ELS_LS_ACC << 24);
 442		fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
 443		lport->tt.frame_send(lport, fp);
 444	}
 445	fc_frame_free(in_fp);
 446}
 447
 448/**
 449 * fc_lport_recv_rnid_req() - Handle received Request Node ID data request
 450 * @lport: The local port receiving the RNID
 451 * @fp:	   The RNID request frame
 452 *
 453 * Locking Note: The lport lock is expected to be held before calling
 454 * this function.
 455 */
 456static void fc_lport_recv_rnid_req(struct fc_lport *lport,
 457				   struct fc_frame *in_fp)
 458{
 459	struct fc_frame *fp;
 460	struct fc_els_rnid *req;
 461	struct {
 462		struct fc_els_rnid_resp rnid;
 463		struct fc_els_rnid_cid cid;
 464		struct fc_els_rnid_gen gen;
 465	} *rp;
 466	struct fc_seq_els_data rjt_data;
 467	u8 fmt;
 468	size_t len;
 469
 
 
 470	FC_LPORT_DBG(lport, "Received RNID request while in state %s\n",
 471		     fc_lport_state(lport));
 472
 473	req = fc_frame_payload_get(in_fp, sizeof(*req));
 474	if (!req) {
 475		rjt_data.reason = ELS_RJT_LOGIC;
 476		rjt_data.explan = ELS_EXPL_NONE;
 477		lport->tt.seq_els_rsp_send(in_fp, ELS_LS_RJT, &rjt_data);
 478	} else {
 479		fmt = req->rnid_fmt;
 480		len = sizeof(*rp);
 481		if (fmt != ELS_RNIDF_GEN ||
 482		    ntohl(lport->rnid_gen.rnid_atype) == 0) {
 483			fmt = ELS_RNIDF_NONE;	/* nothing to provide */
 484			len -= sizeof(rp->gen);
 485		}
 486		fp = fc_frame_alloc(lport, len);
 487		if (fp) {
 488			rp = fc_frame_payload_get(fp, len);
 489			memset(rp, 0, len);
 490			rp->rnid.rnid_cmd = ELS_LS_ACC;
 491			rp->rnid.rnid_fmt = fmt;
 492			rp->rnid.rnid_cid_len = sizeof(rp->cid);
 493			rp->cid.rnid_wwpn = htonll(lport->wwpn);
 494			rp->cid.rnid_wwnn = htonll(lport->wwnn);
 495			if (fmt == ELS_RNIDF_GEN) {
 496				rp->rnid.rnid_sid_len = sizeof(rp->gen);
 497				memcpy(&rp->gen, &lport->rnid_gen,
 498				       sizeof(rp->gen));
 499			}
 500			fc_fill_reply_hdr(fp, in_fp, FC_RCTL_ELS_REP, 0);
 501			lport->tt.frame_send(lport, fp);
 502		}
 503	}
 504	fc_frame_free(in_fp);
 505}
 506
 507/**
 508 * fc_lport_recv_logo_req() - Handle received fabric LOGO request
 509 * @lport: The local port receiving the LOGO
 510 * @fp:	   The LOGO request frame
 511 *
 512 * Locking Note: The lport lock is exected to be held before calling
 513 * this function.
 514 */
 515static void fc_lport_recv_logo_req(struct fc_lport *lport, struct fc_frame *fp)
 516{
 517	lport->tt.seq_els_rsp_send(fp, ELS_LS_ACC, NULL);
 
 
 518	fc_lport_enter_reset(lport);
 519	fc_frame_free(fp);
 520}
 521
 522/**
 523 * fc_fabric_login() - Start the lport state machine
 524 * @lport: The local port that should log into the fabric
 525 *
 526 * Locking Note: This function should not be called
 527 *		 with the lport lock held.
 528 */
 529int fc_fabric_login(struct fc_lport *lport)
 530{
 531	int rc = -1;
 532
 533	mutex_lock(&lport->lp_mutex);
 534	if (lport->state == LPORT_ST_DISABLED ||
 535	    lport->state == LPORT_ST_LOGO) {
 536		fc_lport_state_enter(lport, LPORT_ST_RESET);
 537		fc_lport_enter_reset(lport);
 538		rc = 0;
 539	}
 540	mutex_unlock(&lport->lp_mutex);
 541
 542	return rc;
 543}
 544EXPORT_SYMBOL(fc_fabric_login);
 545
 546/**
 547 * __fc_linkup() - Handler for transport linkup events
 548 * @lport: The lport whose link is up
 549 *
 550 * Locking: must be called with the lp_mutex held
 551 */
 552void __fc_linkup(struct fc_lport *lport)
 553{
 
 
 554	if (!lport->link_up) {
 555		lport->link_up = 1;
 556
 557		if (lport->state == LPORT_ST_RESET)
 558			fc_lport_enter_flogi(lport);
 559	}
 560}
 561
 562/**
 563 * fc_linkup() - Handler for transport linkup events
 564 * @lport: The local port whose link is up
 565 */
 566void fc_linkup(struct fc_lport *lport)
 567{
 568	printk(KERN_INFO "host%d: libfc: Link up on port (%6.6x)\n",
 569	       lport->host->host_no, lport->port_id);
 570
 571	mutex_lock(&lport->lp_mutex);
 572	__fc_linkup(lport);
 573	mutex_unlock(&lport->lp_mutex);
 574}
 575EXPORT_SYMBOL(fc_linkup);
 576
 577/**
 578 * __fc_linkdown() - Handler for transport linkdown events
 579 * @lport: The lport whose link is down
 580 *
 581 * Locking: must be called with the lp_mutex held
 582 */
 583void __fc_linkdown(struct fc_lport *lport)
 584{
 
 
 585	if (lport->link_up) {
 586		lport->link_up = 0;
 587		fc_lport_enter_reset(lport);
 588		lport->tt.fcp_cleanup(lport);
 589	}
 590}
 591
 592/**
 593 * fc_linkdown() - Handler for transport linkdown events
 594 * @lport: The local port whose link is down
 595 */
 596void fc_linkdown(struct fc_lport *lport)
 597{
 598	printk(KERN_INFO "host%d: libfc: Link down on port (%6.6x)\n",
 599	       lport->host->host_no, lport->port_id);
 600
 601	mutex_lock(&lport->lp_mutex);
 602	__fc_linkdown(lport);
 603	mutex_unlock(&lport->lp_mutex);
 604}
 605EXPORT_SYMBOL(fc_linkdown);
 606
 607/**
 608 * fc_fabric_logoff() - Logout of the fabric
 609 * @lport: The local port to logoff the fabric
 610 *
 611 * Return value:
 612 *	0 for success, -1 for failure
 613 */
 614int fc_fabric_logoff(struct fc_lport *lport)
 615{
 616	lport->tt.disc_stop_final(lport);
 617	mutex_lock(&lport->lp_mutex);
 618	if (lport->dns_rdata)
 619		lport->tt.rport_logoff(lport->dns_rdata);
 620	mutex_unlock(&lport->lp_mutex);
 621	lport->tt.rport_flush_queue();
 622	mutex_lock(&lport->lp_mutex);
 623	fc_lport_enter_logo(lport);
 624	mutex_unlock(&lport->lp_mutex);
 625	cancel_delayed_work_sync(&lport->retry_work);
 626	return 0;
 627}
 628EXPORT_SYMBOL(fc_fabric_logoff);
 629
 630/**
 631 * fc_lport_destroy() - Unregister a fc_lport
 632 * @lport: The local port to unregister
 633 *
 634 * Note:
 635 * exit routine for fc_lport instance
 636 * clean-up all the allocated memory
 637 * and free up other system resources.
 638 *
 639 */
 640int fc_lport_destroy(struct fc_lport *lport)
 641{
 642	mutex_lock(&lport->lp_mutex);
 643	lport->state = LPORT_ST_DISABLED;
 644	lport->link_up = 0;
 645	lport->tt.frame_send = fc_frame_drop;
 646	mutex_unlock(&lport->lp_mutex);
 647
 648	lport->tt.fcp_abort_io(lport);
 649	lport->tt.disc_stop_final(lport);
 650	lport->tt.exch_mgr_reset(lport, 0, 0);
 651	cancel_delayed_work_sync(&lport->retry_work);
 652	fc_fc4_del_lport(lport);
 653	return 0;
 654}
 655EXPORT_SYMBOL(fc_lport_destroy);
 656
 657/**
 658 * fc_set_mfs() - Set the maximum frame size for a local port
 659 * @lport: The local port to set the MFS for
 660 * @mfs:   The new MFS
 661 */
 662int fc_set_mfs(struct fc_lport *lport, u32 mfs)
 663{
 664	unsigned int old_mfs;
 665	int rc = -EINVAL;
 666
 667	mutex_lock(&lport->lp_mutex);
 668
 669	old_mfs = lport->mfs;
 670
 671	if (mfs >= FC_MIN_MAX_FRAME) {
 672		mfs &= ~3;
 673		if (mfs > FC_MAX_FRAME)
 674			mfs = FC_MAX_FRAME;
 675		mfs -= sizeof(struct fc_frame_header);
 676		lport->mfs = mfs;
 677		rc = 0;
 678	}
 679
 680	if (!rc && mfs < old_mfs)
 681		fc_lport_enter_reset(lport);
 682
 683	mutex_unlock(&lport->lp_mutex);
 684
 685	return rc;
 686}
 687EXPORT_SYMBOL(fc_set_mfs);
 688
 689/**
 690 * fc_lport_disc_callback() - Callback for discovery events
 691 * @lport: The local port receiving the event
 692 * @event: The discovery event
 693 */
 694static void fc_lport_disc_callback(struct fc_lport *lport,
 695				   enum fc_disc_event event)
 696{
 697	switch (event) {
 698	case DISC_EV_SUCCESS:
 699		FC_LPORT_DBG(lport, "Discovery succeeded\n");
 700		break;
 701	case DISC_EV_FAILED:
 702		printk(KERN_ERR "host%d: libfc: "
 703		       "Discovery failed for port (%6.6x)\n",
 704		       lport->host->host_no, lport->port_id);
 705		mutex_lock(&lport->lp_mutex);
 706		fc_lport_enter_reset(lport);
 707		mutex_unlock(&lport->lp_mutex);
 708		break;
 709	case DISC_EV_NONE:
 710		WARN_ON(1);
 711		break;
 712	}
 713}
 714
 715/**
 716 * fc_rport_enter_ready() - Enter the ready state and start discovery
 717 * @lport: The local port that is ready
 718 *
 719 * Locking Note: The lport lock is expected to be held before calling
 720 * this routine.
 721 */
 722static void fc_lport_enter_ready(struct fc_lport *lport)
 723{
 
 
 724	FC_LPORT_DBG(lport, "Entered READY from state %s\n",
 725		     fc_lport_state(lport));
 726
 727	fc_lport_state_enter(lport, LPORT_ST_READY);
 728	if (lport->vport)
 729		fc_vport_set_state(lport->vport, FC_VPORT_ACTIVE);
 730	fc_vports_linkchange(lport);
 731
 732	if (!lport->ptp_rdata)
 733		lport->tt.disc_start(fc_lport_disc_callback, lport);
 734}
 735
 736/**
 737 * fc_lport_set_port_id() - set the local port Port ID
 738 * @lport: The local port which will have its Port ID set.
 739 * @port_id: The new port ID.
 740 * @fp: The frame containing the incoming request, or NULL.
 741 *
 742 * Locking Note: The lport lock is expected to be held before calling
 743 * this function.
 744 */
 745static void fc_lport_set_port_id(struct fc_lport *lport, u32 port_id,
 746				 struct fc_frame *fp)
 747{
 
 
 748	if (port_id)
 749		printk(KERN_INFO "host%d: Assigned Port ID %6.6x\n",
 750		       lport->host->host_no, port_id);
 751
 752	lport->port_id = port_id;
 753
 754	/* Update the fc_host */
 755	fc_host_port_id(lport->host) = port_id;
 756
 757	if (lport->tt.lport_set_port_id)
 758		lport->tt.lport_set_port_id(lport, port_id, fp);
 759}
 760
 761/**
 762 * fc_lport_set_port_id() - set the local port Port ID for point-to-multipoint
 763 * @lport: The local port which will have its Port ID set.
 764 * @port_id: The new port ID.
 765 *
 766 * Called by the lower-level driver when transport sets the local port_id.
 767 * This is used in VN_port to VN_port mode for FCoE, and causes FLOGI and
 768 * discovery to be skipped.
 769 */
 770void fc_lport_set_local_id(struct fc_lport *lport, u32 port_id)
 771{
 772	mutex_lock(&lport->lp_mutex);
 773
 774	fc_lport_set_port_id(lport, port_id, NULL);
 775
 776	switch (lport->state) {
 777	case LPORT_ST_RESET:
 778	case LPORT_ST_FLOGI:
 779		if (port_id)
 780			fc_lport_enter_ready(lport);
 781		break;
 782	default:
 783		break;
 784	}
 785	mutex_unlock(&lport->lp_mutex);
 786}
 787EXPORT_SYMBOL(fc_lport_set_local_id);
 788
 789/**
 790 * fc_lport_recv_flogi_req() - Receive a FLOGI request
 791 * @lport: The local port that received the request
 792 * @rx_fp: The FLOGI frame
 793 *
 794 * A received FLOGI request indicates a point-to-point connection.
 795 * Accept it with the common service parameters indicating our N port.
 796 * Set up to do a PLOGI if we have the higher-number WWPN.
 797 *
 798 * Locking Note: The lport lock is expected to be held before calling
 799 * this function.
 800 */
 801static void fc_lport_recv_flogi_req(struct fc_lport *lport,
 802				    struct fc_frame *rx_fp)
 803{
 804	struct fc_frame *fp;
 805	struct fc_frame_header *fh;
 806	struct fc_els_flogi *flp;
 807	struct fc_els_flogi *new_flp;
 808	u64 remote_wwpn;
 809	u32 remote_fid;
 810	u32 local_fid;
 811
 
 
 812	FC_LPORT_DBG(lport, "Received FLOGI request while in state %s\n",
 813		     fc_lport_state(lport));
 814
 815	remote_fid = fc_frame_sid(rx_fp);
 816	flp = fc_frame_payload_get(rx_fp, sizeof(*flp));
 817	if (!flp)
 818		goto out;
 819	remote_wwpn = get_unaligned_be64(&flp->fl_wwpn);
 820	if (remote_wwpn == lport->wwpn) {
 821		printk(KERN_WARNING "host%d: libfc: Received FLOGI from port "
 822		       "with same WWPN %16.16llx\n",
 823		       lport->host->host_no, remote_wwpn);
 824		goto out;
 825	}
 826	FC_LPORT_DBG(lport, "FLOGI from port WWPN %16.16llx\n", remote_wwpn);
 827
 828	/*
 829	 * XXX what is the right thing to do for FIDs?
 830	 * The originator might expect our S_ID to be 0xfffffe.
 831	 * But if so, both of us could end up with the same FID.
 832	 */
 833	local_fid = FC_LOCAL_PTP_FID_LO;
 834	if (remote_wwpn < lport->wwpn) {
 835		local_fid = FC_LOCAL_PTP_FID_HI;
 836		if (!remote_fid || remote_fid == local_fid)
 837			remote_fid = FC_LOCAL_PTP_FID_LO;
 838	} else if (!remote_fid) {
 839		remote_fid = FC_LOCAL_PTP_FID_HI;
 840	}
 841
 842	fc_lport_set_port_id(lport, local_fid, rx_fp);
 843
 844	fp = fc_frame_alloc(lport, sizeof(*flp));
 845	if (fp) {
 846		new_flp = fc_frame_payload_get(fp, sizeof(*flp));
 847		fc_lport_flogi_fill(lport, new_flp, ELS_FLOGI);
 848		new_flp->fl_cmd = (u8) ELS_LS_ACC;
 849
 850		/*
 851		 * Send the response.  If this fails, the originator should
 852		 * repeat the sequence.
 853		 */
 854		fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_ELS_REP, 0);
 855		fh = fc_frame_header_get(fp);
 856		hton24(fh->fh_s_id, local_fid);
 857		hton24(fh->fh_d_id, remote_fid);
 858		lport->tt.frame_send(lport, fp);
 859
 860	} else {
 861		fc_lport_error(lport, fp);
 862	}
 863	fc_lport_ptp_setup(lport, remote_fid, remote_wwpn,
 864			   get_unaligned_be64(&flp->fl_wwnn));
 865out:
 866	fc_frame_free(rx_fp);
 867}
 868
 869/**
 870 * fc_lport_recv_els_req() - The generic lport ELS request handler
 871 * @lport: The local port that received the request
 872 * @fp:	   The request frame
 873 *
 874 * This function will see if the lport handles the request or
 875 * if an rport should handle the request.
 876 *
 877 * Locking Note: This function should not be called with the lport
 878 *		 lock held because it will grab the lock.
 879 */
 880static void fc_lport_recv_els_req(struct fc_lport *lport,
 881				  struct fc_frame *fp)
 882{
 883	void (*recv)(struct fc_lport *, struct fc_frame *);
 884
 885	mutex_lock(&lport->lp_mutex);
 886
 887	/*
 888	 * Handle special ELS cases like FLOGI, LOGO, and
 889	 * RSCN here.  These don't require a session.
 890	 * Even if we had a session, it might not be ready.
 891	 */
 892	if (!lport->link_up)
 893		fc_frame_free(fp);
 894	else {
 895		/*
 896		 * Check opcode.
 897		 */
 898		recv = lport->tt.rport_recv_req;
 899		switch (fc_frame_payload_op(fp)) {
 900		case ELS_FLOGI:
 901			if (!lport->point_to_multipoint)
 902				recv = fc_lport_recv_flogi_req;
 
 
 903			break;
 904		case ELS_LOGO:
 905			if (fc_frame_sid(fp) == FC_FID_FLOGI)
 906				recv = fc_lport_recv_logo_req;
 
 
 907			break;
 908		case ELS_RSCN:
 909			recv = lport->tt.disc_recv_req;
 910			break;
 911		case ELS_ECHO:
 912			recv = fc_lport_recv_echo_req;
 913			break;
 914		case ELS_RLIR:
 915			recv = fc_lport_recv_rlir_req;
 916			break;
 917		case ELS_RNID:
 918			recv = fc_lport_recv_rnid_req;
 
 
 
 919			break;
 920		}
 921
 922		recv(lport, fp);
 923	}
 924	mutex_unlock(&lport->lp_mutex);
 925}
 926
 927static int fc_lport_els_prli(struct fc_rport_priv *rdata, u32 spp_len,
 928			     const struct fc_els_spp *spp_in,
 929			     struct fc_els_spp *spp_out)
 930{
 931	return FC_SPP_RESP_INVL;
 932}
 933
 934struct fc4_prov fc_lport_els_prov = {
 935	.prli = fc_lport_els_prli,
 936	.recv = fc_lport_recv_els_req,
 937};
 938
 939/**
 940 * fc_lport_recv_req() - The generic lport request handler
 941 * @lport: The lport that received the request
 942 * @fp: The frame the request is in
 943 *
 944 * Locking Note: This function should not be called with the lport
 945 *		 lock held because it may grab the lock.
 946 */
 947static void fc_lport_recv_req(struct fc_lport *lport,
 948			      struct fc_frame *fp)
 949{
 950	struct fc_frame_header *fh = fc_frame_header_get(fp);
 951	struct fc_seq *sp = fr_seq(fp);
 952	struct fc4_prov *prov;
 953
 954	/*
 955	 * Use RCU read lock and module_lock to be sure module doesn't
 956	 * deregister and get unloaded while we're calling it.
 957	 * try_module_get() is inlined and accepts a NULL parameter.
 958	 * Only ELSes and FCP target ops should come through here.
 959	 * The locking is unfortunate, and a better scheme is being sought.
 960	 */
 961
 962	rcu_read_lock();
 963	if (fh->fh_type >= FC_FC4_PROV_SIZE)
 964		goto drop;
 965	prov = rcu_dereference(fc_passive_prov[fh->fh_type]);
 966	if (!prov || !try_module_get(prov->module))
 967		goto drop;
 968	rcu_read_unlock();
 969	prov->recv(lport, fp);
 970	module_put(prov->module);
 971	return;
 972drop:
 973	rcu_read_unlock();
 974	FC_LPORT_DBG(lport, "dropping unexpected frame type %x\n", fh->fh_type);
 975	fc_frame_free(fp);
 976	lport->tt.exch_done(sp);
 
 977}
 
 978
 979/**
 980 * fc_lport_reset() - Reset a local port
 981 * @lport: The local port which should be reset
 982 *
 983 * Locking Note: This functions should not be called with the
 984 *		 lport lock held.
 985 */
 986int fc_lport_reset(struct fc_lport *lport)
 987{
 988	cancel_delayed_work_sync(&lport->retry_work);
 989	mutex_lock(&lport->lp_mutex);
 990	fc_lport_enter_reset(lport);
 991	mutex_unlock(&lport->lp_mutex);
 992	return 0;
 993}
 994EXPORT_SYMBOL(fc_lport_reset);
 995
 996/**
 997 * fc_lport_reset_locked() - Reset the local port w/ the lport lock held
 998 * @lport: The local port to be reset
 999 *
1000 * Locking Note: The lport lock is expected to be held before calling
1001 * this routine.
1002 */
1003static void fc_lport_reset_locked(struct fc_lport *lport)
1004{
1005	if (lport->dns_rdata)
1006		lport->tt.rport_logoff(lport->dns_rdata);
 
 
 
 
1007
1008	if (lport->ptp_rdata) {
1009		lport->tt.rport_logoff(lport->ptp_rdata);
1010		kref_put(&lport->ptp_rdata->kref, lport->tt.rport_destroy);
1011		lport->ptp_rdata = NULL;
1012	}
1013
1014	lport->tt.disc_stop(lport);
1015
1016	lport->tt.exch_mgr_reset(lport, 0, 0);
1017	fc_host_fabric_name(lport->host) = 0;
1018
1019	if (lport->port_id && (!lport->point_to_multipoint || !lport->link_up))
1020		fc_lport_set_port_id(lport, 0, NULL);
1021}
1022
1023/**
1024 * fc_lport_enter_reset() - Reset the local port
1025 * @lport: The local port to be reset
1026 *
1027 * Locking Note: The lport lock is expected to be held before calling
1028 * this routine.
1029 */
1030static void fc_lport_enter_reset(struct fc_lport *lport)
1031{
 
 
1032	FC_LPORT_DBG(lport, "Entered RESET state from %s state\n",
1033		     fc_lport_state(lport));
1034
1035	if (lport->state == LPORT_ST_DISABLED || lport->state == LPORT_ST_LOGO)
1036		return;
1037
1038	if (lport->vport) {
1039		if (lport->link_up)
1040			fc_vport_set_state(lport->vport, FC_VPORT_INITIALIZING);
1041		else
1042			fc_vport_set_state(lport->vport, FC_VPORT_LINKDOWN);
1043	}
1044	fc_lport_state_enter(lport, LPORT_ST_RESET);
1045	fc_host_post_event(lport->host, fc_get_event_number(),
1046			   FCH_EVT_LIPRESET, 0);
1047	fc_vports_linkchange(lport);
1048	fc_lport_reset_locked(lport);
1049	if (lport->link_up)
1050		fc_lport_enter_flogi(lport);
1051}
1052
1053/**
1054 * fc_lport_enter_disabled() - Disable the local port
1055 * @lport: The local port to be reset
1056 *
1057 * Locking Note: The lport lock is expected to be held before calling
1058 * this routine.
1059 */
1060static void fc_lport_enter_disabled(struct fc_lport *lport)
1061{
 
 
1062	FC_LPORT_DBG(lport, "Entered disabled state from %s state\n",
1063		     fc_lport_state(lport));
1064
1065	fc_lport_state_enter(lport, LPORT_ST_DISABLED);
1066	fc_vports_linkchange(lport);
1067	fc_lport_reset_locked(lport);
1068}
1069
1070/**
1071 * fc_lport_error() - Handler for any errors
1072 * @lport: The local port that the error was on
1073 * @fp:	   The error code encoded in a frame pointer
1074 *
1075 * If the error was caused by a resource allocation failure
1076 * then wait for half a second and retry, otherwise retry
1077 * after the e_d_tov time.
1078 */
1079static void fc_lport_error(struct fc_lport *lport, struct fc_frame *fp)
1080{
1081	unsigned long delay = 0;
1082	FC_LPORT_DBG(lport, "Error %ld in state %s, retries %d\n",
1083		     PTR_ERR(fp), fc_lport_state(lport),
1084		     lport->retry_count);
1085
1086	if (PTR_ERR(fp) == -FC_EX_CLOSED)
1087		return;
1088
1089	/*
1090	 * Memory allocation failure, or the exchange timed out
1091	 * or we received LS_RJT.
1092	 * Retry after delay
1093	 */
1094	if (lport->retry_count < lport->max_retry_count) {
1095		lport->retry_count++;
1096		if (!fp)
1097			delay = msecs_to_jiffies(500);
1098		else
1099			delay =	msecs_to_jiffies(lport->e_d_tov);
1100
1101		schedule_delayed_work(&lport->retry_work, delay);
1102	} else
1103		fc_lport_enter_reset(lport);
1104}
1105
1106/**
1107 * fc_lport_ns_resp() - Handle response to a name server
1108 *			registration exchange
1109 * @sp:	    current sequence in exchange
1110 * @fp:	    response frame
1111 * @lp_arg: Fibre Channel host port instance
1112 *
1113 * Locking Note: This function will be called without the lport lock
1114 * held, but it will lock, call an _enter_* function or fc_lport_error()
1115 * and then unlock the lport.
1116 */
1117static void fc_lport_ns_resp(struct fc_seq *sp, struct fc_frame *fp,
1118			     void *lp_arg)
1119{
1120	struct fc_lport *lport = lp_arg;
1121	struct fc_frame_header *fh;
1122	struct fc_ct_hdr *ct;
1123
1124	FC_LPORT_DBG(lport, "Received a ns %s\n", fc_els_resp_type(fp));
1125
1126	if (fp == ERR_PTR(-FC_EX_CLOSED))
1127		return;
1128
1129	mutex_lock(&lport->lp_mutex);
1130
1131	if (lport->state < LPORT_ST_RNN_ID || lport->state > LPORT_ST_RFF_ID) {
1132		FC_LPORT_DBG(lport, "Received a name server response, "
1133			     "but in state %s\n", fc_lport_state(lport));
1134		if (IS_ERR(fp))
1135			goto err;
1136		goto out;
1137	}
1138
1139	if (IS_ERR(fp)) {
1140		fc_lport_error(lport, fp);
1141		goto err;
1142	}
1143
1144	fh = fc_frame_header_get(fp);
1145	ct = fc_frame_payload_get(fp, sizeof(*ct));
1146
1147	if (fh && ct && fh->fh_type == FC_TYPE_CT &&
1148	    ct->ct_fs_type == FC_FST_DIR &&
1149	    ct->ct_fs_subtype == FC_NS_SUBTYPE &&
1150	    ntohs(ct->ct_cmd) == FC_FS_ACC)
1151		switch (lport->state) {
1152		case LPORT_ST_RNN_ID:
1153			fc_lport_enter_ns(lport, LPORT_ST_RSNN_NN);
1154			break;
1155		case LPORT_ST_RSNN_NN:
1156			fc_lport_enter_ns(lport, LPORT_ST_RSPN_ID);
1157			break;
1158		case LPORT_ST_RSPN_ID:
1159			fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1160			break;
1161		case LPORT_ST_RFT_ID:
1162			fc_lport_enter_ns(lport, LPORT_ST_RFF_ID);
1163			break;
1164		case LPORT_ST_RFF_ID:
1165			if (lport->fdmi_enabled)
1166				fc_lport_enter_fdmi(lport);
1167			else
1168				fc_lport_enter_scr(lport);
1169			break;
1170		default:
1171			/* should have already been caught by state checks */
1172			break;
1173		}
1174	else
1175		fc_lport_error(lport, fp);
1176out:
1177	fc_frame_free(fp);
1178err:
1179	mutex_unlock(&lport->lp_mutex);
1180}
1181
1182/**
1183 * fc_lport_ms_resp() - Handle response to a management server
1184 *			exchange
1185 * @sp:	    current sequence in exchange
1186 * @fp:	    response frame
1187 * @lp_arg: Fibre Channel host port instance
1188 *
1189 * Locking Note: This function will be called without the lport lock
1190 * held, but it will lock, call an _enter_* function or fc_lport_error()
1191 * and then unlock the lport.
1192 */
1193static void fc_lport_ms_resp(struct fc_seq *sp, struct fc_frame *fp,
1194			     void *lp_arg)
1195{
1196	struct fc_lport *lport = lp_arg;
1197	struct fc_frame_header *fh;
1198	struct fc_ct_hdr *ct;
1199
1200	FC_LPORT_DBG(lport, "Received a ms %s\n", fc_els_resp_type(fp));
1201
1202	if (fp == ERR_PTR(-FC_EX_CLOSED))
1203		return;
1204
1205	mutex_lock(&lport->lp_mutex);
1206
1207	if (lport->state < LPORT_ST_RHBA || lport->state > LPORT_ST_DPRT) {
1208		FC_LPORT_DBG(lport, "Received a management server response, "
1209			     "but in state %s\n", fc_lport_state(lport));
1210		if (IS_ERR(fp))
1211			goto err;
1212		goto out;
1213	}
1214
1215	if (IS_ERR(fp)) {
1216		fc_lport_error(lport, fp);
1217		goto err;
1218	}
1219
1220	fh = fc_frame_header_get(fp);
1221	ct = fc_frame_payload_get(fp, sizeof(*ct));
1222
1223	if (fh && ct && fh->fh_type == FC_TYPE_CT &&
1224	    ct->ct_fs_type == FC_FST_MGMT &&
1225	    ct->ct_fs_subtype == FC_FDMI_SUBTYPE) {
1226		FC_LPORT_DBG(lport, "Received a management server response, "
1227				    "reason=%d explain=%d\n",
1228				    ct->ct_reason,
1229				    ct->ct_explan);
1230
1231		switch (lport->state) {
1232		case LPORT_ST_RHBA:
1233			if (ntohs(ct->ct_cmd) == FC_FS_ACC)
 
 
 
 
 
 
1234				fc_lport_enter_ms(lport, LPORT_ST_RPA);
1235			else /* Error Skip RPA */
1236				fc_lport_enter_scr(lport);
1237			break;
1238		case LPORT_ST_RPA:
1239			fc_lport_enter_scr(lport);
1240			break;
1241		case LPORT_ST_DPRT:
1242			fc_lport_enter_ms(lport, LPORT_ST_RHBA);
1243			break;
1244		case LPORT_ST_DHBA:
1245			fc_lport_enter_ms(lport, LPORT_ST_DPRT);
1246			break;
1247		default:
1248			/* should have already been caught by state checks */
1249			break;
1250		}
1251	} else {
1252		/* Invalid Frame? */
1253		fc_lport_error(lport, fp);
1254	}
1255out:
1256	fc_frame_free(fp);
1257err:
1258	mutex_unlock(&lport->lp_mutex);
1259}
1260
1261/**
1262 * fc_lport_scr_resp() - Handle response to State Change Register (SCR) request
1263 * @sp:	    current sequence in SCR exchange
1264 * @fp:	    response frame
1265 * @lp_arg: Fibre Channel lport port instance that sent the registration request
1266 *
1267 * Locking Note: This function will be called without the lport lock
1268 * held, but it will lock, call an _enter_* function or fc_lport_error
1269 * and then unlock the lport.
1270 */
1271static void fc_lport_scr_resp(struct fc_seq *sp, struct fc_frame *fp,
1272			      void *lp_arg)
1273{
1274	struct fc_lport *lport = lp_arg;
1275	u8 op;
1276
1277	FC_LPORT_DBG(lport, "Received a SCR %s\n", fc_els_resp_type(fp));
1278
1279	if (fp == ERR_PTR(-FC_EX_CLOSED))
1280		return;
1281
1282	mutex_lock(&lport->lp_mutex);
1283
1284	if (lport->state != LPORT_ST_SCR) {
1285		FC_LPORT_DBG(lport, "Received a SCR response, but in state "
1286			     "%s\n", fc_lport_state(lport));
1287		if (IS_ERR(fp))
1288			goto err;
1289		goto out;
1290	}
1291
1292	if (IS_ERR(fp)) {
1293		fc_lport_error(lport, fp);
1294		goto err;
1295	}
1296
1297	op = fc_frame_payload_op(fp);
1298	if (op == ELS_LS_ACC)
1299		fc_lport_enter_ready(lport);
1300	else
1301		fc_lport_error(lport, fp);
1302
1303out:
1304	fc_frame_free(fp);
1305err:
1306	mutex_unlock(&lport->lp_mutex);
1307}
1308
1309/**
1310 * fc_lport_enter_scr() - Send a SCR (State Change Register) request
1311 * @lport: The local port to register for state changes
1312 *
1313 * Locking Note: The lport lock is expected to be held before calling
1314 * this routine.
1315 */
1316static void fc_lport_enter_scr(struct fc_lport *lport)
1317{
1318	struct fc_frame *fp;
1319
 
 
1320	FC_LPORT_DBG(lport, "Entered SCR state from %s state\n",
1321		     fc_lport_state(lport));
1322
1323	fc_lport_state_enter(lport, LPORT_ST_SCR);
1324
1325	fp = fc_frame_alloc(lport, sizeof(struct fc_els_scr));
1326	if (!fp) {
1327		fc_lport_error(lport, fp);
1328		return;
1329	}
1330
1331	if (!lport->tt.elsct_send(lport, FC_FID_FCTRL, fp, ELS_SCR,
1332				  fc_lport_scr_resp, lport,
1333				  2 * lport->r_a_tov))
1334		fc_lport_error(lport, NULL);
1335}
1336
1337/**
1338 * fc_lport_enter_ns() - register some object with the name server
1339 * @lport: Fibre Channel local port to register
1340 *
1341 * Locking Note: The lport lock is expected to be held before calling
1342 * this routine.
1343 */
1344static void fc_lport_enter_ns(struct fc_lport *lport, enum fc_lport_state state)
1345{
1346	struct fc_frame *fp;
1347	enum fc_ns_req cmd;
1348	int size = sizeof(struct fc_ct_hdr);
1349	size_t len;
1350
 
 
1351	FC_LPORT_DBG(lport, "Entered %s state from %s state\n",
1352		     fc_lport_state_names[state],
1353		     fc_lport_state(lport));
1354
1355	fc_lport_state_enter(lport, state);
1356
1357	switch (state) {
1358	case LPORT_ST_RNN_ID:
1359		cmd = FC_NS_RNN_ID;
1360		size += sizeof(struct fc_ns_rn_id);
1361		break;
1362	case LPORT_ST_RSNN_NN:
1363		len = strnlen(fc_host_symbolic_name(lport->host), 255);
1364		/* if there is no symbolic name, skip to RFT_ID */
1365		if (!len)
1366			return fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1367		cmd = FC_NS_RSNN_NN;
1368		size += sizeof(struct fc_ns_rsnn) + len;
1369		break;
1370	case LPORT_ST_RSPN_ID:
1371		len = strnlen(fc_host_symbolic_name(lport->host), 255);
1372		/* if there is no symbolic name, skip to RFT_ID */
1373		if (!len)
1374			return fc_lport_enter_ns(lport, LPORT_ST_RFT_ID);
1375		cmd = FC_NS_RSPN_ID;
1376		size += sizeof(struct fc_ns_rspn) + len;
1377		break;
1378	case LPORT_ST_RFT_ID:
1379		cmd = FC_NS_RFT_ID;
1380		size += sizeof(struct fc_ns_rft);
1381		break;
1382	case LPORT_ST_RFF_ID:
1383		cmd = FC_NS_RFF_ID;
1384		size += sizeof(struct fc_ns_rff_id);
1385		break;
1386	default:
1387		fc_lport_error(lport, NULL);
1388		return;
1389	}
1390
1391	fp = fc_frame_alloc(lport, size);
1392	if (!fp) {
1393		fc_lport_error(lport, fp);
1394		return;
1395	}
1396
1397	if (!lport->tt.elsct_send(lport, FC_FID_DIR_SERV, fp, cmd,
1398				  fc_lport_ns_resp,
1399				  lport, 3 * lport->r_a_tov))
1400		fc_lport_error(lport, fp);
1401}
1402
1403static struct fc_rport_operations fc_lport_rport_ops = {
1404	.event_callback = fc_lport_rport_callback,
1405};
1406
1407/**
1408 * fc_rport_enter_dns() - Create a fc_rport for the name server
1409 * @lport: The local port requesting a remote port for the name server
1410 *
1411 * Locking Note: The lport lock is expected to be held before calling
1412 * this routine.
1413 */
1414static void fc_lport_enter_dns(struct fc_lport *lport)
1415{
1416	struct fc_rport_priv *rdata;
1417
 
 
1418	FC_LPORT_DBG(lport, "Entered DNS state from %s state\n",
1419		     fc_lport_state(lport));
1420
1421	fc_lport_state_enter(lport, LPORT_ST_DNS);
1422
1423	mutex_lock(&lport->disc.disc_mutex);
1424	rdata = lport->tt.rport_create(lport, FC_FID_DIR_SERV);
1425	mutex_unlock(&lport->disc.disc_mutex);
1426	if (!rdata)
1427		goto err;
1428
1429	rdata->ops = &fc_lport_rport_ops;
1430	lport->tt.rport_login(rdata);
1431	return;
1432
1433err:
1434	fc_lport_error(lport, NULL);
1435}
1436
1437/**
1438 * fc_lport_enter_ms() - management server commands
1439 * @lport: Fibre Channel local port to register
1440 *
1441 * Locking Note: The lport lock is expected to be held before calling
1442 * this routine.
1443 */
1444static void fc_lport_enter_ms(struct fc_lport *lport, enum fc_lport_state state)
1445{
1446	struct fc_frame *fp;
1447	enum fc_fdmi_req cmd;
1448	int size = sizeof(struct fc_ct_hdr);
1449	size_t len;
1450	int numattrs;
 
 
1451
1452	FC_LPORT_DBG(lport, "Entered %s state from %s state\n",
1453		     fc_lport_state_names[state],
1454		     fc_lport_state(lport));
1455
1456	fc_lport_state_enter(lport, state);
1457
1458	switch (state) {
1459	case LPORT_ST_RHBA:
1460		cmd = FC_FDMI_RHBA;
1461		/* Number of HBA Attributes */
1462		numattrs = 10;
1463		len = sizeof(struct fc_fdmi_rhba);
1464		len -= sizeof(struct fc_fdmi_attr_entry);
1465		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
1466		len += FC_FDMI_HBA_ATTR_NODENAME_LEN;
1467		len += FC_FDMI_HBA_ATTR_MANUFACTURER_LEN;
1468		len += FC_FDMI_HBA_ATTR_SERIALNUMBER_LEN;
1469		len += FC_FDMI_HBA_ATTR_MODEL_LEN;
1470		len += FC_FDMI_HBA_ATTR_MODELDESCR_LEN;
1471		len += FC_FDMI_HBA_ATTR_HARDWAREVERSION_LEN;
1472		len += FC_FDMI_HBA_ATTR_DRIVERVERSION_LEN;
1473		len += FC_FDMI_HBA_ATTR_OPTIONROMVERSION_LEN;
1474		len += FC_FDMI_HBA_ATTR_FIRMWAREVERSION_LEN;
1475		len += FC_FDMI_HBA_ATTR_OSNAMEVERSION_LEN;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1476
1477		size += len;
1478		break;
1479	case LPORT_ST_RPA:
1480		cmd = FC_FDMI_RPA;
1481		/* Number of Port Attributes */
1482		numattrs = 6;
1483		len = sizeof(struct fc_fdmi_rpa);
1484		len -= sizeof(struct fc_fdmi_attr_entry);
1485		len += (numattrs * FC_FDMI_ATTR_ENTRY_HEADER_LEN);
1486		len += FC_FDMI_PORT_ATTR_FC4TYPES_LEN;
1487		len += FC_FDMI_PORT_ATTR_SUPPORTEDSPEED_LEN;
1488		len += FC_FDMI_PORT_ATTR_CURRENTPORTSPEED_LEN;
1489		len += FC_FDMI_PORT_ATTR_MAXFRAMESIZE_LEN;
1490		len += FC_FDMI_PORT_ATTR_OSDEVICENAME_LEN;
1491		len += FC_FDMI_PORT_ATTR_HOSTNAME_LEN;
1492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1493		size += len;
1494		break;
1495	case LPORT_ST_DPRT:
1496		cmd = FC_FDMI_DPRT;
1497		len = sizeof(struct fc_fdmi_dprt);
1498		size += len;
1499		break;
1500	case LPORT_ST_DHBA:
1501		cmd = FC_FDMI_DHBA;
1502		len = sizeof(struct fc_fdmi_dhba);
1503		size += len;
1504		break;
1505	default:
1506		fc_lport_error(lport, NULL);
1507		return;
1508	}
1509
1510	FC_LPORT_DBG(lport, "Cmd=0x%x Len %d size %d\n",
1511			     cmd, (int)len, size);
1512	fp = fc_frame_alloc(lport, size);
1513	if (!fp) {
1514		fc_lport_error(lport, fp);
1515		return;
1516	}
1517
1518	if (!lport->tt.elsct_send(lport, FC_FID_MGMT_SERV, fp, cmd,
1519				  fc_lport_ms_resp,
1520				  lport, 3 * lport->r_a_tov))
1521		fc_lport_error(lport, fp);
1522}
1523
1524/**
1525 * fc_rport_enter_fdmi() - Create a fc_rport for the management server
1526 * @lport: The local port requesting a remote port for the management server
1527 *
1528 * Locking Note: The lport lock is expected to be held before calling
1529 * this routine.
1530 */
1531static void fc_lport_enter_fdmi(struct fc_lport *lport)
1532{
1533	struct fc_rport_priv *rdata;
1534
 
 
1535	FC_LPORT_DBG(lport, "Entered FDMI state from %s state\n",
1536		     fc_lport_state(lport));
1537
1538	fc_lport_state_enter(lport, LPORT_ST_FDMI);
1539
1540	mutex_lock(&lport->disc.disc_mutex);
1541	rdata = lport->tt.rport_create(lport, FC_FID_MGMT_SERV);
1542	mutex_unlock(&lport->disc.disc_mutex);
1543	if (!rdata)
1544		goto err;
1545
1546	rdata->ops = &fc_lport_rport_ops;
1547	lport->tt.rport_login(rdata);
1548	return;
1549
1550err:
1551	fc_lport_error(lport, NULL);
1552}
1553
1554/**
1555 * fc_lport_timeout() - Handler for the retry_work timer
1556 * @work: The work struct of the local port
1557 */
1558static void fc_lport_timeout(struct work_struct *work)
1559{
1560	struct fc_lport *lport =
1561		container_of(work, struct fc_lport,
1562			     retry_work.work);
 
1563
1564	mutex_lock(&lport->lp_mutex);
1565
1566	switch (lport->state) {
1567	case LPORT_ST_DISABLED:
1568		break;
1569	case LPORT_ST_READY:
1570		break;
1571	case LPORT_ST_RESET:
1572		break;
1573	case LPORT_ST_FLOGI:
1574		fc_lport_enter_flogi(lport);
1575		break;
1576	case LPORT_ST_DNS:
1577		fc_lport_enter_dns(lport);
1578		break;
1579	case LPORT_ST_RNN_ID:
1580	case LPORT_ST_RSNN_NN:
1581	case LPORT_ST_RSPN_ID:
1582	case LPORT_ST_RFT_ID:
1583	case LPORT_ST_RFF_ID:
1584		fc_lport_enter_ns(lport, lport->state);
1585		break;
1586	case LPORT_ST_FDMI:
1587		fc_lport_enter_fdmi(lport);
1588		break;
1589	case LPORT_ST_RHBA:
 
 
 
 
 
 
 
1590	case LPORT_ST_RPA:
1591	case LPORT_ST_DHBA:
1592	case LPORT_ST_DPRT:
1593		fc_lport_enter_ms(lport, lport->state);
1594		break;
 
1595	case LPORT_ST_SCR:
1596		fc_lport_enter_scr(lport);
1597		break;
1598	case LPORT_ST_LOGO:
1599		fc_lport_enter_logo(lport);
1600		break;
1601	}
1602
1603	mutex_unlock(&lport->lp_mutex);
1604}
1605
1606/**
1607 * fc_lport_logo_resp() - Handle response to LOGO request
1608 * @sp:	    The sequence that the LOGO was on
1609 * @fp:	    The LOGO frame
1610 * @lp_arg: The lport port that received the LOGO request
1611 *
1612 * Locking Note: This function will be called without the lport lock
1613 * held, but it will lock, call an _enter_* function or fc_lport_error()
1614 * and then unlock the lport.
1615 */
1616void fc_lport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
1617			void *lp_arg)
1618{
1619	struct fc_lport *lport = lp_arg;
1620	u8 op;
1621
1622	FC_LPORT_DBG(lport, "Received a LOGO %s\n", fc_els_resp_type(fp));
1623
1624	if (fp == ERR_PTR(-FC_EX_CLOSED))
1625		return;
1626
1627	mutex_lock(&lport->lp_mutex);
1628
1629	if (lport->state != LPORT_ST_LOGO) {
1630		FC_LPORT_DBG(lport, "Received a LOGO response, but in state "
1631			     "%s\n", fc_lport_state(lport));
1632		if (IS_ERR(fp))
1633			goto err;
1634		goto out;
1635	}
1636
1637	if (IS_ERR(fp)) {
1638		fc_lport_error(lport, fp);
1639		goto err;
1640	}
1641
1642	op = fc_frame_payload_op(fp);
1643	if (op == ELS_LS_ACC)
1644		fc_lport_enter_disabled(lport);
1645	else
1646		fc_lport_error(lport, fp);
1647
1648out:
1649	fc_frame_free(fp);
1650err:
1651	mutex_unlock(&lport->lp_mutex);
1652}
1653EXPORT_SYMBOL(fc_lport_logo_resp);
1654
1655/**
1656 * fc_rport_enter_logo() - Logout of the fabric
1657 * @lport: The local port to be logged out
1658 *
1659 * Locking Note: The lport lock is expected to be held before calling
1660 * this routine.
1661 */
1662static void fc_lport_enter_logo(struct fc_lport *lport)
1663{
1664	struct fc_frame *fp;
1665	struct fc_els_logo *logo;
1666
 
 
1667	FC_LPORT_DBG(lport, "Entered LOGO state from %s state\n",
1668		     fc_lport_state(lport));
1669
1670	fc_lport_state_enter(lport, LPORT_ST_LOGO);
1671	fc_vports_linkchange(lport);
1672
1673	fp = fc_frame_alloc(lport, sizeof(*logo));
1674	if (!fp) {
1675		fc_lport_error(lport, fp);
1676		return;
1677	}
1678
1679	if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp, ELS_LOGO,
1680				  fc_lport_logo_resp, lport,
1681				  2 * lport->r_a_tov))
1682		fc_lport_error(lport, NULL);
1683}
1684
1685/**
1686 * fc_lport_flogi_resp() - Handle response to FLOGI request
1687 * @sp:	    The sequence that the FLOGI was on
1688 * @fp:	    The FLOGI response frame
1689 * @lp_arg: The lport port that received the FLOGI response
1690 *
1691 * Locking Note: This function will be called without the lport lock
1692 * held, but it will lock, call an _enter_* function or fc_lport_error()
1693 * and then unlock the lport.
1694 */
1695void fc_lport_flogi_resp(struct fc_seq *sp, struct fc_frame *fp,
1696			 void *lp_arg)
1697{
1698	struct fc_lport *lport = lp_arg;
1699	struct fc_frame_header *fh;
1700	struct fc_els_flogi *flp;
1701	u32 did;
1702	u16 csp_flags;
1703	unsigned int r_a_tov;
1704	unsigned int e_d_tov;
1705	u16 mfs;
1706
1707	FC_LPORT_DBG(lport, "Received a FLOGI %s\n", fc_els_resp_type(fp));
1708
1709	if (fp == ERR_PTR(-FC_EX_CLOSED))
1710		return;
1711
1712	mutex_lock(&lport->lp_mutex);
1713
1714	if (lport->state != LPORT_ST_FLOGI) {
1715		FC_LPORT_DBG(lport, "Received a FLOGI response, but in state "
1716			     "%s\n", fc_lport_state(lport));
1717		if (IS_ERR(fp))
1718			goto err;
1719		goto out;
1720	}
1721
1722	if (IS_ERR(fp)) {
1723		fc_lport_error(lport, fp);
1724		goto err;
1725	}
1726
1727	fh = fc_frame_header_get(fp);
1728	did = fc_frame_did(fp);
1729	if (fh->fh_r_ctl != FC_RCTL_ELS_REP || did == 0 ||
1730	    fc_frame_payload_op(fp) != ELS_LS_ACC) {
1731		FC_LPORT_DBG(lport, "FLOGI not accepted or bad response\n");
1732		fc_lport_error(lport, fp);
1733		goto err;
1734	}
1735
1736	flp = fc_frame_payload_get(fp, sizeof(*flp));
1737	if (!flp) {
1738		FC_LPORT_DBG(lport, "FLOGI bad response\n");
1739		fc_lport_error(lport, fp);
1740		goto err;
1741	}
1742
1743	mfs = ntohs(flp->fl_csp.sp_bb_data) &
1744		FC_SP_BB_DATA_MASK;
1745
1746	if (mfs < FC_SP_MIN_MAX_PAYLOAD || mfs > FC_SP_MAX_MAX_PAYLOAD) {
1747		FC_LPORT_DBG(lport, "FLOGI bad mfs:%hu response, "
1748			     "lport->mfs:%hu\n", mfs, lport->mfs);
1749		fc_lport_error(lport, fp);
1750		goto err;
1751	}
1752
1753	if (mfs <= lport->mfs) {
1754		lport->mfs = mfs;
1755		fc_host_maxframe_size(lport->host) = mfs;
1756	}
1757
1758	csp_flags = ntohs(flp->fl_csp.sp_features);
1759	r_a_tov = ntohl(flp->fl_csp.sp_r_a_tov);
1760	e_d_tov = ntohl(flp->fl_csp.sp_e_d_tov);
1761	if (csp_flags & FC_SP_FT_EDTR)
1762		e_d_tov /= 1000000;
1763
1764	lport->npiv_enabled = !!(csp_flags & FC_SP_FT_NPIV_ACC);
1765
1766	if ((csp_flags & FC_SP_FT_FPORT) == 0) {
1767		if (e_d_tov > lport->e_d_tov)
1768			lport->e_d_tov = e_d_tov;
1769		lport->r_a_tov = 2 * e_d_tov;
1770		fc_lport_set_port_id(lport, did, fp);
1771		printk(KERN_INFO "host%d: libfc: "
1772		       "Port (%6.6x) entered "
1773		       "point-to-point mode\n",
1774		       lport->host->host_no, did);
1775		fc_lport_ptp_setup(lport, fc_frame_sid(fp),
1776				   get_unaligned_be64(
1777					   &flp->fl_wwpn),
1778				   get_unaligned_be64(
1779					   &flp->fl_wwnn));
1780	} else {
1781		lport->e_d_tov = e_d_tov;
1782		lport->r_a_tov = r_a_tov;
 
 
1783		fc_host_fabric_name(lport->host) =
1784			get_unaligned_be64(&flp->fl_wwnn);
1785		fc_lport_set_port_id(lport, did, fp);
1786		fc_lport_enter_dns(lport);
1787	}
1788
1789out:
1790	fc_frame_free(fp);
1791err:
1792	mutex_unlock(&lport->lp_mutex);
1793}
1794EXPORT_SYMBOL(fc_lport_flogi_resp);
1795
1796/**
1797 * fc_rport_enter_flogi() - Send a FLOGI request to the fabric manager
1798 * @lport: Fibre Channel local port to be logged in to the fabric
1799 *
1800 * Locking Note: The lport lock is expected to be held before calling
1801 * this routine.
1802 */
1803static void fc_lport_enter_flogi(struct fc_lport *lport)
1804{
1805	struct fc_frame *fp;
1806
 
 
1807	FC_LPORT_DBG(lport, "Entered FLOGI state from %s state\n",
1808		     fc_lport_state(lport));
1809
1810	fc_lport_state_enter(lport, LPORT_ST_FLOGI);
1811
1812	if (lport->point_to_multipoint) {
1813		if (lport->port_id)
1814			fc_lport_enter_ready(lport);
1815		return;
1816	}
1817
1818	fp = fc_frame_alloc(lport, sizeof(struct fc_els_flogi));
1819	if (!fp)
1820		return fc_lport_error(lport, fp);
1821
1822	if (!lport->tt.elsct_send(lport, FC_FID_FLOGI, fp,
1823				  lport->vport ? ELS_FDISC : ELS_FLOGI,
1824				  fc_lport_flogi_resp, lport,
1825				  lport->vport ? 2 * lport->r_a_tov :
1826				  lport->e_d_tov))
1827		fc_lport_error(lport, NULL);
1828}
1829
1830/**
1831 * fc_lport_config() - Configure a fc_lport
1832 * @lport: The local port to be configured
1833 */
1834int fc_lport_config(struct fc_lport *lport)
1835{
1836	INIT_DELAYED_WORK(&lport->retry_work, fc_lport_timeout);
1837	mutex_init(&lport->lp_mutex);
1838
1839	fc_lport_state_enter(lport, LPORT_ST_DISABLED);
1840
1841	fc_lport_add_fc4_type(lport, FC_TYPE_FCP);
1842	fc_lport_add_fc4_type(lport, FC_TYPE_CT);
1843	fc_fc4_conf_lport_params(lport, FC_TYPE_FCP);
1844
1845	return 0;
1846}
1847EXPORT_SYMBOL(fc_lport_config);
1848
1849/**
1850 * fc_lport_init() - Initialize the lport layer for a local port
1851 * @lport: The local port to initialize the exchange layer for
1852 */
1853int fc_lport_init(struct fc_lport *lport)
1854{
1855	if (!lport->tt.lport_recv)
1856		lport->tt.lport_recv = fc_lport_recv_req;
 
1857
1858	if (!lport->tt.lport_reset)
1859		lport->tt.lport_reset = fc_lport_reset;
1860
1861	fc_host_port_type(lport->host) = FC_PORTTYPE_NPORT;
1862	fc_host_node_name(lport->host) = lport->wwnn;
1863	fc_host_port_name(lport->host) = lport->wwpn;
1864	fc_host_supported_classes(lport->host) = FC_COS_CLASS3;
1865	memset(fc_host_supported_fc4s(lport->host), 0,
1866	       sizeof(fc_host_supported_fc4s(lport->host)));
1867	fc_host_supported_fc4s(lport->host)[2] = 1;
1868	fc_host_supported_fc4s(lport->host)[7] = 1;
 
1869
1870	/* This value is also unchanging */
1871	memset(fc_host_active_fc4s(lport->host), 0,
1872	       sizeof(fc_host_active_fc4s(lport->host)));
1873	fc_host_active_fc4s(lport->host)[2] = 1;
1874	fc_host_active_fc4s(lport->host)[7] = 1;
1875	fc_host_maxframe_size(lport->host) = lport->mfs;
1876	fc_host_supported_speeds(lport->host) = 0;
1877	if (lport->link_supported_speeds & FC_PORTSPEED_1GBIT)
1878		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_1GBIT;
1879	if (lport->link_supported_speeds & FC_PORTSPEED_10GBIT)
1880		fc_host_supported_speeds(lport->host) |= FC_PORTSPEED_10GBIT;
 
 
 
 
 
 
 
 
 
 
 
1881	fc_fc4_add_lport(lport);
1882
 
 
 
 
 
 
 
 
1883	return 0;
1884}
1885EXPORT_SYMBOL(fc_lport_init);
1886
1887/**
1888 * fc_lport_bsg_resp() - The common response handler for FC Passthrough requests
1889 * @sp:	      The sequence for the FC Passthrough response
1890 * @fp:	      The response frame
1891 * @info_arg: The BSG info that the response is for
1892 */
1893static void fc_lport_bsg_resp(struct fc_seq *sp, struct fc_frame *fp,
1894			      void *info_arg)
1895{
1896	struct fc_bsg_info *info = info_arg;
1897	struct fc_bsg_job *job = info->job;
 
1898	struct fc_lport *lport = info->lport;
1899	struct fc_frame_header *fh;
1900	size_t len;
1901	void *buf;
1902
1903	if (IS_ERR(fp)) {
1904		job->reply->result = (PTR_ERR(fp) == -FC_EX_CLOSED) ?
1905			-ECONNABORTED : -ETIMEDOUT;
1906		job->reply_len = sizeof(uint32_t);
1907		job->state_flags |= FC_RQST_STATE_DONE;
1908		job->job_done(job);
1909		kfree(info);
1910		return;
1911	}
1912
1913	mutex_lock(&lport->lp_mutex);
1914	fh = fc_frame_header_get(fp);
1915	len = fr_len(fp) - sizeof(*fh);
1916	buf = fc_frame_payload_get(fp, 0);
1917
1918	if (fr_sof(fp) == FC_SOF_I3 && !ntohs(fh->fh_seq_cnt)) {
1919		/* Get the response code from the first frame payload */
1920		unsigned short cmd = (info->rsp_code == FC_FS_ACC) ?
1921			ntohs(((struct fc_ct_hdr *)buf)->ct_cmd) :
1922			(unsigned short)fc_frame_payload_op(fp);
1923
1924		/* Save the reply status of the job */
1925		job->reply->reply_data.ctels_reply.status =
1926			(cmd == info->rsp_code) ?
1927			FC_CTELS_STATUS_OK : FC_CTELS_STATUS_REJECT;
1928	}
1929
1930	job->reply->reply_payload_rcv_len +=
1931		fc_copy_buffer_to_sglist(buf, len, info->sg, &info->nents,
1932					 &info->offset, NULL);
1933
1934	if (fr_eof(fp) == FC_EOF_T &&
1935	    (ntoh24(fh->fh_f_ctl) & (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) ==
1936	    (FC_FC_LAST_SEQ | FC_FC_END_SEQ)) {
1937		if (job->reply->reply_payload_rcv_len >
1938		    job->reply_payload.payload_len)
1939			job->reply->reply_payload_rcv_len =
1940				job->reply_payload.payload_len;
1941		job->reply->result = 0;
1942		job->state_flags |= FC_RQST_STATE_DONE;
1943		job->job_done(job);
1944		kfree(info);
1945	}
1946	fc_frame_free(fp);
1947	mutex_unlock(&lport->lp_mutex);
1948}
1949
1950/**
1951 * fc_lport_els_request() - Send ELS passthrough request
1952 * @job:   The BSG Passthrough job
1953 * @lport: The local port sending the request
1954 * @did:   The destination port id
1955 *
1956 * Locking Note: The lport lock is expected to be held before calling
1957 * this routine.
1958 */
1959static int fc_lport_els_request(struct fc_bsg_job *job,
1960				struct fc_lport *lport,
1961				u32 did, u32 tov)
1962{
1963	struct fc_bsg_info *info;
1964	struct fc_frame *fp;
1965	struct fc_frame_header *fh;
1966	char *pp;
1967	int len;
1968
 
 
1969	fp = fc_frame_alloc(lport, job->request_payload.payload_len);
1970	if (!fp)
1971		return -ENOMEM;
1972
1973	len = job->request_payload.payload_len;
1974	pp = fc_frame_payload_get(fp, len);
1975
1976	sg_copy_to_buffer(job->request_payload.sg_list,
1977			  job->request_payload.sg_cnt,
1978			  pp, len);
1979
1980	fh = fc_frame_header_get(fp);
1981	fh->fh_r_ctl = FC_RCTL_ELS_REQ;
1982	hton24(fh->fh_d_id, did);
1983	hton24(fh->fh_s_id, lport->port_id);
1984	fh->fh_type = FC_TYPE_ELS;
1985	hton24(fh->fh_f_ctl, FC_FCTL_REQ);
1986	fh->fh_cs_ctl = 0;
1987	fh->fh_df_ctl = 0;
1988	fh->fh_parm_offset = 0;
1989
1990	info = kzalloc(sizeof(struct fc_bsg_info), GFP_KERNEL);
1991	if (!info) {
1992		fc_frame_free(fp);
1993		return -ENOMEM;
1994	}
1995
1996	info->job = job;
1997	info->lport = lport;
1998	info->rsp_code = ELS_LS_ACC;
1999	info->nents = job->reply_payload.sg_cnt;
2000	info->sg = job->reply_payload.sg_list;
2001
2002	if (!lport->tt.exch_seq_send(lport, fp, fc_lport_bsg_resp,
2003				     NULL, info, tov)) {
2004		kfree(info);
2005		return -ECOMM;
2006	}
2007	return 0;
2008}
2009
2010/**
2011 * fc_lport_ct_request() - Send CT Passthrough request
2012 * @job:   The BSG Passthrough job
2013 * @lport: The local port sending the request
2014 * @did:   The destination FC-ID
2015 * @tov:   The timeout period to wait for the response
2016 *
2017 * Locking Note: The lport lock is expected to be held before calling
2018 * this routine.
2019 */
2020static int fc_lport_ct_request(struct fc_bsg_job *job,
2021			       struct fc_lport *lport, u32 did, u32 tov)
2022{
2023	struct fc_bsg_info *info;
2024	struct fc_frame *fp;
2025	struct fc_frame_header *fh;
2026	struct fc_ct_req *ct;
2027	size_t len;
2028
 
 
2029	fp = fc_frame_alloc(lport, sizeof(struct fc_ct_hdr) +
2030			    job->request_payload.payload_len);
2031	if (!fp)
2032		return -ENOMEM;
2033
2034	len = job->request_payload.payload_len;
2035	ct = fc_frame_payload_get(fp, len);
2036
2037	sg_copy_to_buffer(job->request_payload.sg_list,
2038			  job->request_payload.sg_cnt,
2039			  ct, len);
2040
2041	fh = fc_frame_header_get(fp);
2042	fh->fh_r_ctl = FC_RCTL_DD_UNSOL_CTL;
2043	hton24(fh->fh_d_id, did);
2044	hton24(fh->fh_s_id, lport->port_id);
2045	fh->fh_type = FC_TYPE_CT;
2046	hton24(fh->fh_f_ctl, FC_FCTL_REQ);
2047	fh->fh_cs_ctl = 0;
2048	fh->fh_df_ctl = 0;
2049	fh->fh_parm_offset = 0;
2050
2051	info = kzalloc(sizeof(struct fc_bsg_info), GFP_KERNEL);
2052	if (!info) {
2053		fc_frame_free(fp);
2054		return -ENOMEM;
2055	}
2056
2057	info->job = job;
2058	info->lport = lport;
2059	info->rsp_code = FC_FS_ACC;
2060	info->nents = job->reply_payload.sg_cnt;
2061	info->sg = job->reply_payload.sg_list;
2062
2063	if (!lport->tt.exch_seq_send(lport, fp, fc_lport_bsg_resp,
2064				     NULL, info, tov)) {
2065		kfree(info);
2066		return -ECOMM;
2067	}
2068	return 0;
2069}
2070
2071/**
2072 * fc_lport_bsg_request() - The common entry point for sending
2073 *			    FC Passthrough requests
2074 * @job: The BSG passthrough job
2075 */
2076int fc_lport_bsg_request(struct fc_bsg_job *job)
2077{
2078	struct request *rsp = job->req->next_rq;
2079	struct Scsi_Host *shost = job->shost;
 
2080	struct fc_lport *lport = shost_priv(shost);
2081	struct fc_rport *rport;
2082	struct fc_rport_priv *rdata;
2083	int rc = -EINVAL;
2084	u32 did;
2085
2086	job->reply->reply_payload_rcv_len = 0;
2087	if (rsp)
2088		rsp->resid_len = job->reply_payload.payload_len;
2089
2090	mutex_lock(&lport->lp_mutex);
2091
2092	switch (job->request->msgcode) {
2093	case FC_BSG_RPT_ELS:
2094		rport = job->rport;
2095		if (!rport)
2096			break;
2097
2098		rdata = rport->dd_data;
2099		rc = fc_lport_els_request(job, lport, rport->port_id,
2100					  rdata->e_d_tov);
2101		break;
2102
2103	case FC_BSG_RPT_CT:
2104		rport = job->rport;
2105		if (!rport)
2106			break;
2107
2108		rdata = rport->dd_data;
2109		rc = fc_lport_ct_request(job, lport, rport->port_id,
2110					 rdata->e_d_tov);
2111		break;
2112
2113	case FC_BSG_HST_CT:
2114		did = ntoh24(job->request->rqst_data.h_ct.port_id);
2115		if (did == FC_FID_DIR_SERV)
2116			rdata = lport->dns_rdata;
2117		else
2118			rdata = lport->tt.rport_lookup(lport, did);
2119
2120		if (!rdata)
2121			break;
 
 
 
 
 
2122
2123		rc = fc_lport_ct_request(job, lport, did, rdata->e_d_tov);
2124		break;
2125
2126	case FC_BSG_HST_ELS_NOLOGIN:
2127		did = ntoh24(job->request->rqst_data.h_els.port_id);
2128		rc = fc_lport_els_request(job, lport, did, lport->e_d_tov);
2129		break;
2130	}
2131
2132	mutex_unlock(&lport->lp_mutex);
2133	return rc;
2134}
2135EXPORT_SYMBOL(fc_lport_bsg_request);