zfcp_fc.c 23.8 KB
Newer Older
1 2 3 4 5
/*
 * zfcp device driver
 *
 * Fibre Channel related functions for the zfcp device driver.
 *
6
 * Copyright IBM Corporation 2008, 2009
7 8
 */

9 10 11
#define KMSG_COMPONENT "zfcp"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

12 13 14
#include <linux/types.h>
#include <scsi/fc/fc_els.h>
#include <scsi/libfc.h>
15
#include "zfcp_ext.h"
16
#include "zfcp_fc.h"
17

18 19 20 21 22
static u32 zfcp_fc_rscn_range_mask[] = {
	[ELS_ADDR_FMT_PORT]		= 0xFFFFFF,
	[ELS_ADDR_FMT_AREA]		= 0xFFFF00,
	[ELS_ADDR_FMT_DOM]		= 0xFF0000,
	[ELS_ADDR_FMT_FAB]		= 0x000000,
23 24
};

25 26 27 28 29 30 31
struct gpn_ft_resp_acc {
	u8 control;
	u8 port_id[3];
	u8 reserved[4];
	u64 wwpn;
} __attribute__ ((packed));

32 33 34
#define ZFCP_CT_SIZE_ONE_PAGE	(PAGE_SIZE - sizeof(struct ct_hdr))
#define ZFCP_GPN_FT_ENTRIES	(ZFCP_CT_SIZE_ONE_PAGE \
					/ sizeof(struct gpn_ft_resp_acc))
35
#define ZFCP_GPN_FT_BUFFERS 4
36 37
#define ZFCP_GPN_FT_MAX_SIZE (ZFCP_GPN_FT_BUFFERS * PAGE_SIZE \
				- sizeof(struct ct_hdr))
38 39 40 41 42 43 44 45 46 47 48 49 50
#define ZFCP_GPN_FT_MAX_ENTRIES ZFCP_GPN_FT_BUFFERS * (ZFCP_GPN_FT_ENTRIES + 1)

struct ct_iu_gpn_ft_resp {
	struct ct_hdr header;
	struct gpn_ft_resp_acc accept[ZFCP_GPN_FT_ENTRIES];
} __attribute__ ((packed));

struct zfcp_gpn_ft {
	struct zfcp_send_ct ct;
	struct scatterlist sg_req;
	struct scatterlist sg_resp[ZFCP_GPN_FT_BUFFERS];
};

51 52 53 54 55 56
struct zfcp_fc_ns_handler_data {
	struct completion done;
	void (*handler)(unsigned long);
	unsigned long handler_data;
};

57
static int zfcp_fc_wka_port_get(struct zfcp_wka_port *wka_port)
58 59 60 61
{
	if (mutex_lock_interruptible(&wka_port->mutex))
		return -ERESTARTSYS;

62 63
	if (wka_port->status == ZFCP_WKA_PORT_OFFLINE ||
	    wka_port->status == ZFCP_WKA_PORT_CLOSING) {
64 65 66 67 68 69 70
		wka_port->status = ZFCP_WKA_PORT_OPENING;
		if (zfcp_fsf_open_wka_port(wka_port))
			wka_port->status = ZFCP_WKA_PORT_OFFLINE;
	}

	mutex_unlock(&wka_port->mutex);

71 72 73
	wait_event(wka_port->completion_wq,
		   wka_port->status == ZFCP_WKA_PORT_ONLINE ||
		   wka_port->status == ZFCP_WKA_PORT_OFFLINE);
74 75 76 77 78 79 80 81

	if (wka_port->status == ZFCP_WKA_PORT_ONLINE) {
		atomic_inc(&wka_port->refcount);
		return 0;
	}
	return -EIO;
}

82
static void zfcp_fc_wka_port_offline(struct work_struct *work)
83
{
84
	struct delayed_work *dw = to_delayed_work(work);
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
	struct zfcp_wka_port *wka_port =
			container_of(dw, struct zfcp_wka_port, work);

	mutex_lock(&wka_port->mutex);
	if ((atomic_read(&wka_port->refcount) != 0) ||
	    (wka_port->status != ZFCP_WKA_PORT_ONLINE))
		goto out;

	wka_port->status = ZFCP_WKA_PORT_CLOSING;
	if (zfcp_fsf_close_wka_port(wka_port)) {
		wka_port->status = ZFCP_WKA_PORT_OFFLINE;
		wake_up(&wka_port->completion_wq);
	}
out:
	mutex_unlock(&wka_port->mutex);
}

102
static void zfcp_fc_wka_port_put(struct zfcp_wka_port *wka_port)
103 104 105
{
	if (atomic_dec_return(&wka_port->refcount) != 0)
		return;
106
	/* wait 10 milliseconds, other reqs might pop in */
107 108 109
	schedule_delayed_work(&wka_port->work, HZ / 100);
}

110 111
static void zfcp_fc_wka_port_init(struct zfcp_wka_port *wka_port, u32 d_id,
				  struct zfcp_adapter *adapter)
112 113 114 115
{
	init_waitqueue_head(&wka_port->completion_wq);

	wka_port->adapter = adapter;
116
	wka_port->d_id = d_id;
117 118 119 120

	wka_port->status = ZFCP_WKA_PORT_OFFLINE;
	atomic_set(&wka_port->refcount, 0);
	mutex_init(&wka_port->mutex);
121
	INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
122 123
}

124
static void zfcp_fc_wka_port_force_offline(struct zfcp_wka_port *wka)
125 126 127 128 129 130 131
{
	cancel_delayed_work_sync(&wka->work);
	mutex_lock(&wka->mutex);
	wka->status = ZFCP_WKA_PORT_OFFLINE;
	mutex_unlock(&wka->mutex);
}

132 133
void zfcp_fc_wka_ports_force_offline(struct zfcp_wka_ports *gs)
{
134 135
	if (!gs)
		return;
136 137 138 139 140 141 142
	zfcp_fc_wka_port_force_offline(&gs->ms);
	zfcp_fc_wka_port_force_offline(&gs->ts);
	zfcp_fc_wka_port_force_offline(&gs->ds);
	zfcp_fc_wka_port_force_offline(&gs->as);
	zfcp_fc_wka_port_force_offline(&gs->ks);
}

143
static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
144
				   struct fc_els_rscn_page *page)
145 146
{
	unsigned long flags;
147
	struct zfcp_adapter *adapter = fsf_req->adapter;
148 149
	struct zfcp_port *port;

150 151
	read_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry(port, &adapter->port_list, list) {
152
		if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
153
			zfcp_fc_test_link(port);
154 155 156 157 158
		if (!port->d_id)
			zfcp_erp_port_reopen(port,
					     ZFCP_STATUS_COMMON_ERP_FAILED,
					     "fcrscn1", NULL);
	}
159
	read_unlock_irqrestore(&adapter->port_list_lock, flags);
160 161 162 163 164
}

static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
{
	struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
165 166
	struct fc_els_rscn *head;
	struct fc_els_rscn_page *page;
167 168
	u16 i;
	u16 no_entries;
169
	unsigned int afmt;
170

171 172
	head = (struct fc_els_rscn *) status_buffer->payload.data;
	page = (struct fc_els_rscn_page *) head;
173 174

	/* see FC-FS */
175
	no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page);
176 177 178

	for (i = 1; i < no_entries; i++) {
		/* skip head and start with 1st element */
179 180 181 182
		page++;
		afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
		_zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
				       page);
183
	}
184
	queue_work(fsf_req->adapter->work_queue, &fsf_req->adapter->scan_work);
185 186
}

187
static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
188
{
189
	unsigned long flags;
190 191 192
	struct zfcp_adapter *adapter = req->adapter;
	struct zfcp_port *port;

193 194 195 196
	read_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry(port, &adapter->port_list, list)
		if (port->wwpn == wwpn) {
			zfcp_erp_port_forced_reopen(port, 0, "fciwwp1", req);
197
			break;
198 199
		}
	read_unlock_irqrestore(&adapter->port_list_lock, flags);
200 201 202 203
}

static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
{
204 205
	struct fsf_status_read_buffer *status_buffer;
	struct fc_els_flogi *plogi;
206

207 208 209
	status_buffer = (struct fsf_status_read_buffer *) req->data;
	plogi = (struct fc_els_flogi *) status_buffer->payload.data;
	zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn);
210 211 212 213 214 215
}

static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
{
	struct fsf_status_read_buffer *status_buffer =
		(struct fsf_status_read_buffer *)req->data;
216 217
	struct fc_els_logo *logo =
		(struct fc_els_logo *) status_buffer->payload.data;
218

219
	zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn);
220 221 222 223 224 225 226 227 228 229
}

/**
 * zfcp_fc_incoming_els - handle incoming ELS
 * @fsf_req - request which contains incoming ELS
 */
void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
{
	struct fsf_status_read_buffer *status_buffer =
		(struct fsf_status_read_buffer *) fsf_req->data;
S
Swen Schillig 已提交
230
	unsigned int els_type = status_buffer->payload.data[0];
231

S
Swen Schillig 已提交
232
	zfcp_dbf_san_incoming_els(fsf_req);
233
	if (els_type == ELS_PLOGI)
234
		zfcp_fc_incoming_plogi(fsf_req);
235
	else if (els_type == ELS_LOGO)
236
		zfcp_fc_incoming_logo(fsf_req);
237
	else if (els_type == ELS_RSCN)
238 239 240
		zfcp_fc_incoming_rscn(fsf_req);
}

241 242 243 244 245 246 247 248 249 250 251 252
static void zfcp_fc_ns_handler(unsigned long data)
{
	struct zfcp_fc_ns_handler_data *compl_rec =
			(struct zfcp_fc_ns_handler_data *) data;

	if (compl_rec->handler)
		compl_rec->handler(compl_rec->handler_data);

	complete(&compl_rec->done);
}

static void zfcp_fc_ns_gid_pn_eval(unsigned long data)
253 254 255 256 257 258 259 260
{
	struct zfcp_gid_pn_data *gid_pn = (struct zfcp_gid_pn_data *) data;
	struct zfcp_send_ct *ct = &gid_pn->ct;
	struct ct_iu_gid_pn_req *ct_iu_req = sg_virt(ct->req);
	struct ct_iu_gid_pn_resp *ct_iu_resp = sg_virt(ct->resp);
	struct zfcp_port *port = gid_pn->port;

	if (ct->status)
261
		return;
262
	if (ct_iu_resp->header.cmd_rsp_code != ZFCP_CT_ACCEPT)
263
		return;
264

265 266
	/* paranoia */
	if (ct_iu_req->wwpn != port->wwpn)
267
		return;
268 269 270 271
	/* looks like a valid d_id */
	port->d_id = ct_iu_resp->d_id & ZFCP_DID_MASK;
}

272
static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
273
				     struct zfcp_gid_pn_data *gid_pn)
274
{
275
	struct zfcp_adapter *adapter = port->adapter;
276 277
	struct zfcp_fc_ns_handler_data compl_rec;
	int ret;
278 279

	/* setup parameters for send generic command */
280
	gid_pn->port = port;
281
	gid_pn->ct.wka_port = &adapter->gs->ds;
282 283
	gid_pn->ct.handler = zfcp_fc_ns_handler;
	gid_pn->ct.handler_data = (unsigned long) &compl_rec;
284 285 286 287 288 289 290 291 292 293 294 295 296
	gid_pn->ct.req = &gid_pn->req;
	gid_pn->ct.resp = &gid_pn->resp;
	sg_init_one(&gid_pn->req, &gid_pn->ct_iu_req,
		    sizeof(struct ct_iu_gid_pn_req));
	sg_init_one(&gid_pn->resp, &gid_pn->ct_iu_resp,
		    sizeof(struct ct_iu_gid_pn_resp));

	/* setup nameserver request */
	gid_pn->ct_iu_req.header.revision = ZFCP_CT_REVISION;
	gid_pn->ct_iu_req.header.gs_type = ZFCP_CT_DIRECTORY_SERVICE;
	gid_pn->ct_iu_req.header.gs_subtype = ZFCP_CT_NAME_SERVER;
	gid_pn->ct_iu_req.header.options = ZFCP_CT_SYNCHRONOUS;
	gid_pn->ct_iu_req.header.cmd_rsp_code = ZFCP_CT_GID_PN;
297
	gid_pn->ct_iu_req.header.max_res_size = ZFCP_CT_SIZE_ONE_PAGE / 4;
298
	gid_pn->ct_iu_req.wwpn = port->wwpn;
299

300 301 302
	init_completion(&compl_rec.done);
	compl_rec.handler = zfcp_fc_ns_gid_pn_eval;
	compl_rec.handler_data = (unsigned long) gid_pn;
303
	ret = zfcp_fsf_send_ct(&gid_pn->ct, adapter->pool.gid_pn_req);
304 305 306 307 308 309 310
	if (!ret)
		wait_for_completion(&compl_rec.done);
	return ret;
}

/**
 * zfcp_fc_ns_gid_pn_request - initiate GID_PN nameserver request
311
 * @port: port where GID_PN request is needed
312 313
 * return: -ENOMEM on error, 0 otherwise
 */
314
static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
315 316 317
{
	int ret;
	struct zfcp_gid_pn_data *gid_pn;
318
	struct zfcp_adapter *adapter = port->adapter;
319

320
	gid_pn = mempool_alloc(adapter->pool.gid_pn_data, GFP_ATOMIC);
321 322 323 324 325
	if (!gid_pn)
		return -ENOMEM;

	memset(gid_pn, 0, sizeof(*gid_pn));

326
	ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
327
	if (ret)
328 329
		goto out;

330
	ret = zfcp_fc_ns_gid_pn_request(port, gid_pn);
331

332
	zfcp_fc_wka_port_put(&adapter->gs->ds);
333
out:
334
	mempool_free(gid_pn, adapter->pool.gid_pn_data);
335 336 337
	return ret;
}

338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
void zfcp_fc_port_did_lookup(struct work_struct *work)
{
	int ret;
	struct zfcp_port *port = container_of(work, struct zfcp_port,
					      gid_pn_work);

	ret = zfcp_fc_ns_gid_pn(port);
	if (ret) {
		/* could not issue gid_pn for some reason */
		zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1", NULL);
		goto out;
	}

	if (!port->d_id) {
		zfcp_erp_port_failed(port, "fcgpn_2", NULL);
		goto out;
	}

	zfcp_erp_port_reopen(port, 0, "fcgpn_3", NULL);
out:
358
	put_device(&port->sysfs_device);
359 360
}

361 362 363 364 365 366
/**
 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
 * @port: The zfcp_port to lookup the d_id for.
 */
void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
{
367
	get_device(&port->sysfs_device);
368
	if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
369
		put_device(&port->sysfs_device);
370 371
}

372 373 374 375 376 377 378
/**
 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
 * @port: zfcp_port structure
 * @plogi: plogi payload
 *
 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
 */
379
void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
380
{
381 382 383 384 385 386 387 388 389 390 391 392 393 394
	if (plogi->fl_wwpn != port->wwpn) {
		port->d_id = 0;
		dev_warn(&port->adapter->ccw_device->dev,
			 "A port opened with WWPN 0x%016Lx returned data that "
			 "identifies it as WWPN 0x%016Lx\n",
			 (unsigned long long) port->wwpn,
			 (unsigned long long) plogi->fl_wwpn);
		return;
	}

	port->wwnn = plogi->fl_wwnn;
	port->maxframe_size = plogi->fl_csp.sp_bb_data;

	if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID)
395
		port->supported_classes |= FC_COS_CLASS1;
396
	if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID)
397
		port->supported_classes |= FC_COS_CLASS2;
398
	if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID)
399
		port->supported_classes |= FC_COS_CLASS3;
400
	if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID)
401 402 403 404 405
		port->supported_classes |= FC_COS_CLASS4;
}

static void zfcp_fc_adisc_handler(unsigned long data)
{
406
	struct zfcp_fc_els_adisc *adisc = (struct zfcp_fc_els_adisc *) data;
407
	struct zfcp_port *port = adisc->els.port;
408
	struct fc_els_adisc *adisc_resp = &adisc->adisc_resp;
409

410
	if (adisc->els.status) {
411
		/* request rejected or timed out */
412 413
		zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
					    "fcadh_1", NULL);
414 415 416 417
		goto out;
	}

	if (!port->wwnn)
418
		port->wwnn = adisc_resp->adisc_wwnn;
419

420
	if ((port->wwpn != adisc_resp->adisc_wwpn) ||
421
	    !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
422 423
		zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
				     "fcadh_2", NULL);
424 425
		goto out;
	}
426

427 428
	/* port is good, unblock rport without going through erp */
	zfcp_scsi_schedule_rport_register(port);
429
 out:
430
	atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
431
	put_device(&port->sysfs_device);
432 433 434 435 436
	kfree(adisc);
}

static int zfcp_fc_adisc(struct zfcp_port *port)
{
437
	struct zfcp_fc_els_adisc *adisc;
438 439
	struct zfcp_adapter *adapter = port->adapter;

440
	adisc = kzalloc(sizeof(struct zfcp_fc_els_adisc), GFP_ATOMIC);
441 442 443 444 445
	if (!adisc)
		return -ENOMEM;

	adisc->els.req = &adisc->req;
	adisc->els.resp = &adisc->resp;
446 447 448 449
	sg_init_one(adisc->els.req, &adisc->adisc_req,
		    sizeof(struct fc_els_adisc));
	sg_init_one(adisc->els.resp, &adisc->adisc_resp,
		    sizeof(struct fc_els_adisc));
450 451 452 453 454 455

	adisc->els.adapter = adapter;
	adisc->els.port = port;
	adisc->els.d_id = port->d_id;
	adisc->els.handler = zfcp_fc_adisc_handler;
	adisc->els.handler_data = (unsigned long) adisc;
456
	adisc->els.ls_code = adisc->adisc_req.adisc_cmd = ELS_ADISC;
457 458 459

	/* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
	   without FC-AL-2 capability, so we don't set it */
460 461 462 463
	adisc->adisc_req.adisc_wwpn = fc_host_port_name(adapter->scsi_host);
	adisc->adisc_req.adisc_wwnn = fc_host_node_name(adapter->scsi_host);
	hton24(adisc->adisc_req.adisc_port_id,
	       fc_host_port_id(adapter->scsi_host));
464 465 466 467

	return zfcp_fsf_send_els(&adisc->els);
}

468
void zfcp_fc_link_test_work(struct work_struct *work)
469
{
470 471
	struct zfcp_port *port =
		container_of(work, struct zfcp_port, test_link_work);
472 473
	int retval;

474
	get_device(&port->sysfs_device);
475 476 477
	port->rport_task = RPORT_DEL;
	zfcp_scsi_rport_work(&port->rport_work);

478 479 480 481 482 483
	/* only issue one test command at one time per port */
	if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
		goto out;

	atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);

484
	retval = zfcp_fc_adisc(port);
485
	if (retval == 0)
486 487 488
		return;

	/* send of ADISC was not possible */
489
	atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
490 491
	zfcp_erp_port_forced_reopen(port, 0, "fcltwk1", NULL);

492
out:
493
	put_device(&port->sysfs_device);
494
}
495

496
/**
497
 * zfcp_fc_test_link - lightweight link test procedure
498 499 500 501 502 503
 * @port: port to be tested
 *
 * Test status of a link to a remote port using the ELS command ADISC.
 * If there is a problem with the remote port, error recovery steps
 * will be triggered.
 */
504
void zfcp_fc_test_link(struct zfcp_port *port)
505
{
506
	get_device(&port->sysfs_device);
507
	if (!queue_work(port->adapter->work_queue, &port->test_link_work))
508
		put_device(&port->sysfs_device);
509 510
}

511
static void zfcp_free_sg_env(struct zfcp_gpn_ft *gpn_ft, int buf_num)
512 513 514
{
	struct scatterlist *sg = &gpn_ft->sg_req;

515
	kmem_cache_free(zfcp_data.gpn_ft_cache, sg_virt(sg));
516
	zfcp_sg_free_table(gpn_ft->sg_resp, buf_num);
517 518 519 520

	kfree(gpn_ft);
}

521
static struct zfcp_gpn_ft *zfcp_alloc_sg_env(int buf_num)
522 523 524 525 526 527 528 529
{
	struct zfcp_gpn_ft *gpn_ft;
	struct ct_iu_gpn_ft_req *req;

	gpn_ft = kzalloc(sizeof(*gpn_ft), GFP_KERNEL);
	if (!gpn_ft)
		return NULL;

530
	req = kmem_cache_alloc(zfcp_data.gpn_ft_cache, GFP_KERNEL);
531 532 533 534 535 536 537
	if (!req) {
		kfree(gpn_ft);
		gpn_ft = NULL;
		goto out;
	}
	sg_init_one(&gpn_ft->sg_req, req, sizeof(*req));

538 539
	if (zfcp_sg_setup_table(gpn_ft->sg_resp, buf_num)) {
		zfcp_free_sg_env(gpn_ft, buf_num);
540 541 542 543 544 545 546
		gpn_ft = NULL;
	}
out:
	return gpn_ft;
}


547 548
static int zfcp_fc_send_gpn_ft(struct zfcp_gpn_ft *gpn_ft,
			       struct zfcp_adapter *adapter, int max_bytes)
549 550 551
{
	struct zfcp_send_ct *ct = &gpn_ft->ct;
	struct ct_iu_gpn_ft_req *req = sg_virt(&gpn_ft->sg_req);
552
	struct zfcp_fc_ns_handler_data compl_rec;
553 554 555 556 557 558 559 560
	int ret;

	/* prepare CT IU for GPN_FT */
	req->header.revision = ZFCP_CT_REVISION;
	req->header.gs_type = ZFCP_CT_DIRECTORY_SERVICE;
	req->header.gs_subtype = ZFCP_CT_NAME_SERVER;
	req->header.options = ZFCP_CT_SYNCHRONOUS;
	req->header.cmd_rsp_code = ZFCP_CT_GPN_FT;
561
	req->header.max_res_size = max_bytes / 4;
562 563 564 565 566 567
	req->flags = 0;
	req->domain_id_scope = 0;
	req->area_id_scope = 0;
	req->fc4_type = ZFCP_CT_SCSI_FCP;

	/* prepare zfcp_send_ct */
568
	ct->wka_port = &adapter->gs->ds;
569 570
	ct->handler = zfcp_fc_ns_handler;
	ct->handler_data = (unsigned long)&compl_rec;
571 572 573
	ct->req = &gpn_ft->sg_req;
	ct->resp = gpn_ft->sg_resp;

574 575
	init_completion(&compl_rec.done);
	compl_rec.handler = NULL;
576
	ret = zfcp_fsf_send_ct(ct, NULL);
577
	if (!ret)
578
		wait_for_completion(&compl_rec.done);
579 580 581
	return ret;
}

582
static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
583
{
584 585 586
	if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
		return;

587 588
	atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);

589
	if ((port->supported_classes != 0) ||
590
	    !list_empty(&port->unit_list))
591
		return;
592 593

	list_move_tail(&port->list, lh);
594 595
}

596
static int zfcp_fc_eval_gpn_ft(struct zfcp_gpn_ft *gpn_ft, int max_entries)
597 598 599 600 601
{
	struct zfcp_send_ct *ct = &gpn_ft->ct;
	struct scatterlist *sg = gpn_ft->sg_resp;
	struct ct_hdr *hdr = sg_virt(sg);
	struct gpn_ft_resp_acc *acc = sg_virt(sg);
602
	struct zfcp_adapter *adapter = ct->wka_port->adapter;
603
	struct zfcp_port *port, *tmp;
604
	unsigned long flags;
605
	LIST_HEAD(remove_lh);
606
	u32 d_id;
607
	int ret = 0, x, last = 0;
608 609 610 611 612 613 614 615 616 617

	if (ct->status)
		return -EIO;

	if (hdr->cmd_rsp_code != ZFCP_CT_ACCEPT) {
		if (hdr->reason_code == ZFCP_CT_UNABLE_TO_PERFORM_CMD)
			return -EAGAIN; /* might be a temporary condition */
		return -EIO;
	}

618 619 620 621
	if (hdr->max_res_size) {
		dev_warn(&adapter->ccw_device->dev,
			 "The name server reported %d words residual data\n",
			 hdr->max_res_size);
622
		return -E2BIG;
623
	}
624 625

	/* first entry is the header */
626
	for (x = 1; x < max_entries && !last; x++) {
627 628 629 630 631
		if (x % (ZFCP_GPN_FT_ENTRIES + 1))
			acc++;
		else
			acc = sg_virt(++sg);

632
		last = acc->control & 0x80;
633 634 635
		d_id = acc->port_id[0] << 16 | acc->port_id[1] << 8 |
		       acc->port_id[2];

636 637 638
		/* don't attach ports with a well known address */
		if ((d_id & ZFCP_DID_WKA) == ZFCP_DID_WKA)
			continue;
639
		/* skip the adapter's port and known remote ports */
640
		if (acc->wwpn == fc_host_port_name(adapter->scsi_host))
641 642 643 644
			continue;

		port = zfcp_port_enqueue(adapter, acc->wwpn,
					 ZFCP_STATUS_COMMON_NOESC, d_id);
645
		if (!IS_ERR(port))
646
			zfcp_erp_port_reopen(port, 0, "fcegpf1", NULL);
647 648
		else if (PTR_ERR(port) != -EEXIST)
			ret = PTR_ERR(port);
649 650 651
	}

	zfcp_erp_wait(adapter);
652 653
	write_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
654
		zfcp_fc_validate_port(port, &remove_lh);
655
	write_unlock_irqrestore(&adapter->port_list_lock, flags);
656 657 658 659 660 661 662

	list_for_each_entry_safe(port, tmp, &remove_lh, list) {
		zfcp_erp_port_shutdown(port, 0, "fcegpf2", NULL);
		zfcp_device_unregister(&port->sysfs_device,
				       &zfcp_sysfs_port_attrs);
	}

663 664 665 666
	return ret;
}

/**
667
 * zfcp_fc_scan_ports - scan remote ports and attach new ports
668
 * @work: reference to scheduled work
669
 */
670
void zfcp_fc_scan_ports(struct work_struct *work)
671
{
672 673
	struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
						    scan_work);
674 675
	int ret, i;
	struct zfcp_gpn_ft *gpn_ft;
676 677 678 679 680 681
	int chain, max_entries, buf_num, max_bytes;

	chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
	buf_num = chain ? ZFCP_GPN_FT_BUFFERS : 1;
	max_entries = chain ? ZFCP_GPN_FT_MAX_ENTRIES : ZFCP_GPN_FT_ENTRIES;
	max_bytes = chain ? ZFCP_GPN_FT_MAX_SIZE : ZFCP_CT_SIZE_ONE_PAGE;
682

683 684
	if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
	    fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
685
		return;
686

687 688
	if (zfcp_fc_wka_port_get(&adapter->gs->ds))
		return;
689

690
	gpn_ft = zfcp_alloc_sg_env(buf_num);
691
	if (!gpn_ft)
692
		goto out;
693 694

	for (i = 0; i < 3; i++) {
695
		ret = zfcp_fc_send_gpn_ft(gpn_ft, adapter, max_bytes);
696
		if (!ret) {
697
			ret = zfcp_fc_eval_gpn_ft(gpn_ft, max_entries);
698 699 700 701 702 703
			if (ret == -EAGAIN)
				ssleep(1);
			else
				break;
		}
	}
704
	zfcp_free_sg_env(gpn_ft, buf_num);
705
out:
706
	zfcp_fc_wka_port_put(&adapter->gs->ds);
707 708 709
}


710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
struct zfcp_els_fc_job {
	struct zfcp_send_els els;
	struct fc_bsg_job *job;
};

static void zfcp_fc_generic_els_handler(unsigned long data)
{
	struct zfcp_els_fc_job *els_fc_job = (struct zfcp_els_fc_job *) data;
	struct fc_bsg_job *job = els_fc_job->job;
	struct fc_bsg_reply *reply = job->reply;

	if (els_fc_job->els.status) {
		/* request rejected or timed out */
		reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_REJECT;
		goto out;
	}

	reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
728
	reply->reply_payload_rcv_len = job->reply_payload.payload_len;
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756

out:
	job->state_flags = FC_RQST_STATE_DONE;
	job->job_done(job);
	kfree(els_fc_job);
}

int zfcp_fc_execute_els_fc_job(struct fc_bsg_job *job)
{
	struct zfcp_els_fc_job *els_fc_job;
	struct fc_rport *rport = job->rport;
	struct Scsi_Host *shost;
	struct zfcp_adapter *adapter;
	struct zfcp_port *port;
	u8 *port_did;

	shost = rport ? rport_to_shost(rport) : job->shost;
	adapter = (struct zfcp_adapter *)shost->hostdata[0];

	if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
		return -EINVAL;

	els_fc_job = kzalloc(sizeof(struct zfcp_els_fc_job), GFP_KERNEL);
	if (!els_fc_job)
		return -ENOMEM;

	els_fc_job->els.adapter = adapter;
	if (rport) {
757
		port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
758 759 760 761
		if (!port) {
			kfree(els_fc_job);
			return -EINVAL;
		}
762 763

		els_fc_job->els.d_id = port->d_id;
764
		put_device(&port->sysfs_device);
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
	} else {
		port_did = job->request->rqst_data.h_els.port_id;
		els_fc_job->els.d_id = (port_did[0] << 16) +
					(port_did[1] << 8) + port_did[2];
	}

	els_fc_job->els.req = job->request_payload.sg_list;
	els_fc_job->els.resp = job->reply_payload.sg_list;
	els_fc_job->els.handler = zfcp_fc_generic_els_handler;
	els_fc_job->els.handler_data = (unsigned long) els_fc_job;
	els_fc_job->job = job;

	return zfcp_fsf_send_els(&els_fc_job->els);
}

struct zfcp_ct_fc_job {
	struct zfcp_send_ct ct;
	struct fc_bsg_job *job;
};

static void zfcp_fc_generic_ct_handler(unsigned long data)
{
	struct zfcp_ct_fc_job *ct_fc_job = (struct zfcp_ct_fc_job *) data;
	struct fc_bsg_job *job = ct_fc_job->job;

	job->reply->reply_data.ctels_reply.status = ct_fc_job->ct.status ?
				FC_CTELS_STATUS_REJECT : FC_CTELS_STATUS_OK;
792
	job->reply->reply_payload_rcv_len = job->reply_payload.payload_len;
793 794 795
	job->state_flags = FC_RQST_STATE_DONE;
	job->job_done(job);

796
	zfcp_fc_wka_port_put(ct_fc_job->ct.wka_port);
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841

	kfree(ct_fc_job);
}

int zfcp_fc_execute_ct_fc_job(struct fc_bsg_job *job)
{
	int ret;
	u8 gs_type;
	struct fc_rport *rport = job->rport;
	struct Scsi_Host *shost;
	struct zfcp_adapter *adapter;
	struct zfcp_ct_fc_job *ct_fc_job;
	u32 preamble_word1;

	shost = rport ? rport_to_shost(rport) : job->shost;

	adapter = (struct zfcp_adapter *)shost->hostdata[0];
	if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
		return -EINVAL;

	ct_fc_job = kzalloc(sizeof(struct zfcp_ct_fc_job), GFP_KERNEL);
	if (!ct_fc_job)
		return -ENOMEM;

	preamble_word1 = job->request->rqst_data.r_ct.preamble_word1;
	gs_type = (preamble_word1 & 0xff000000) >> 24;

	switch (gs_type) {
	case FC_FST_ALIAS:
		ct_fc_job->ct.wka_port = &adapter->gs->as;
		break;
	case FC_FST_MGMT:
		ct_fc_job->ct.wka_port = &adapter->gs->ms;
		break;
	case FC_FST_TIME:
		ct_fc_job->ct.wka_port = &adapter->gs->ts;
		break;
	case FC_FST_DIR:
		ct_fc_job->ct.wka_port = &adapter->gs->ds;
		break;
	default:
		kfree(ct_fc_job);
		return -EINVAL; /* no such service */
	}

842
	ret = zfcp_fc_wka_port_get(ct_fc_job->ct.wka_port);
843 844 845 846 847 848 849 850 851 852 853 854
	if (ret) {
		kfree(ct_fc_job);
		return ret;
	}

	ct_fc_job->ct.req = job->request_payload.sg_list;
	ct_fc_job->ct.resp = job->reply_payload.sg_list;
	ct_fc_job->ct.handler = zfcp_fc_generic_ct_handler;
	ct_fc_job->ct.handler_data = (unsigned long) ct_fc_job;
	ct_fc_job->ct.completion = NULL;
	ct_fc_job->job = job;

855
	ret = zfcp_fsf_send_ct(&ct_fc_job->ct, NULL);
856 857
	if (ret) {
		kfree(ct_fc_job);
858
		zfcp_fc_wka_port_put(ct_fc_job->ct.wka_port);
859 860 861
	}
	return ret;
}
862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886

int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
{
	struct zfcp_wka_ports *wka_ports;

	wka_ports = kzalloc(sizeof(struct zfcp_wka_ports), GFP_KERNEL);
	if (!wka_ports)
		return -ENOMEM;

	adapter->gs = wka_ports;
	zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
	zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
	zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
	zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
	zfcp_fc_wka_port_init(&wka_ports->ks, FC_FID_SEC_KEY, adapter);

	return 0;
}

void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
{
	kfree(adapter->gs);
	adapter->gs = NULL;
}