zfcp_fc.c 23.0 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
struct zfcp_fc_ns_handler_data {
	struct completion done;
	void (*handler)(unsigned long);
	unsigned long handler_data;
};

31
static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
32 33 34 35
{
	if (mutex_lock_interruptible(&wka_port->mutex))
		return -ERESTARTSYS;

36 37 38
	if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
	    wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
		wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
39
		if (zfcp_fsf_open_wka_port(wka_port))
40
			wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
41 42 43 44
	}

	mutex_unlock(&wka_port->mutex);

45
	wait_event(wka_port->completion_wq,
46 47
		   wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
		   wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
48

49
	if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
50 51 52 53 54 55
		atomic_inc(&wka_port->refcount);
		return 0;
	}
	return -EIO;
}

56
static void zfcp_fc_wka_port_offline(struct work_struct *work)
57
{
58
	struct delayed_work *dw = to_delayed_work(work);
59 60
	struct zfcp_fc_wka_port *wka_port =
			container_of(dw, struct zfcp_fc_wka_port, work);
61 62 63

	mutex_lock(&wka_port->mutex);
	if ((atomic_read(&wka_port->refcount) != 0) ||
64
	    (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
65 66
		goto out;

67
	wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
68
	if (zfcp_fsf_close_wka_port(wka_port)) {
69
		wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
70 71 72 73 74 75
		wake_up(&wka_port->completion_wq);
	}
out:
	mutex_unlock(&wka_port->mutex);
}

76
static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
77 78 79
{
	if (atomic_dec_return(&wka_port->refcount) != 0)
		return;
80
	/* wait 10 milliseconds, other reqs might pop in */
81 82 83
	schedule_delayed_work(&wka_port->work, HZ / 100);
}

84
static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
85
				  struct zfcp_adapter *adapter)
86 87 88 89
{
	init_waitqueue_head(&wka_port->completion_wq);

	wka_port->adapter = adapter;
90
	wka_port->d_id = d_id;
91

92
	wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
93 94
	atomic_set(&wka_port->refcount, 0);
	mutex_init(&wka_port->mutex);
95
	INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
96 97
}

98
static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
99 100 101
{
	cancel_delayed_work_sync(&wka->work);
	mutex_lock(&wka->mutex);
102
	wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
103 104 105
	mutex_unlock(&wka->mutex);
}

106
void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
107
{
108 109
	if (!gs)
		return;
110 111 112 113 114 115
	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);
}

116
static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
117
				   struct fc_els_rscn_page *page)
118 119
{
	unsigned long flags;
120
	struct zfcp_adapter *adapter = fsf_req->adapter;
121 122
	struct zfcp_port *port;

123 124
	read_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry(port, &adapter->port_list, list) {
125
		if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
126
			zfcp_fc_test_link(port);
127 128 129 130 131
		if (!port->d_id)
			zfcp_erp_port_reopen(port,
					     ZFCP_STATUS_COMMON_ERP_FAILED,
					     "fcrscn1", NULL);
	}
132
	read_unlock_irqrestore(&adapter->port_list_lock, flags);
133 134 135 136 137
}

static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
{
	struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
138 139
	struct fc_els_rscn *head;
	struct fc_els_rscn_page *page;
140 141
	u16 i;
	u16 no_entries;
142
	unsigned int afmt;
143

144 145
	head = (struct fc_els_rscn *) status_buffer->payload.data;
	page = (struct fc_els_rscn_page *) head;
146 147

	/* see FC-FS */
148
	no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page);
149 150 151

	for (i = 1; i < no_entries; i++) {
		/* skip head and start with 1st element */
152 153 154 155
		page++;
		afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
		_zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
				       page);
156
	}
157
	queue_work(fsf_req->adapter->work_queue, &fsf_req->adapter->scan_work);
158 159
}

160
static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
161
{
162
	unsigned long flags;
163 164 165
	struct zfcp_adapter *adapter = req->adapter;
	struct zfcp_port *port;

166 167 168 169
	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);
170
			break;
171 172
		}
	read_unlock_irqrestore(&adapter->port_list_lock, flags);
173 174 175 176
}

static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
{
177 178
	struct fsf_status_read_buffer *status_buffer;
	struct fc_els_flogi *plogi;
179

180 181 182
	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);
183 184 185 186 187 188
}

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;
189 190
	struct fc_els_logo *logo =
		(struct fc_els_logo *) status_buffer->payload.data;
191

192
	zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn);
193 194 195 196 197 198 199 200 201 202
}

/**
 * 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 已提交
203
	unsigned int els_type = status_buffer->payload.data[0];
204

S
Swen Schillig 已提交
205
	zfcp_dbf_san_incoming_els(fsf_req);
206
	if (els_type == ELS_PLOGI)
207
		zfcp_fc_incoming_plogi(fsf_req);
208
	else if (els_type == ELS_LOGO)
209
		zfcp_fc_incoming_logo(fsf_req);
210
	else if (els_type == ELS_RSCN)
211 212 213
		zfcp_fc_incoming_rscn(fsf_req);
}

214 215 216 217 218 219 220 221 222 223 224 225
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)
226
{
227
	struct zfcp_fc_gid_pn *gid_pn = (struct zfcp_fc_gid_pn *) data;
228
	struct zfcp_send_ct *ct = &gid_pn->ct;
229 230
	struct zfcp_fc_gid_pn_req *gid_pn_req = sg_virt(ct->req);
	struct zfcp_fc_gid_pn_resp *gid_pn_resp = sg_virt(ct->resp);
231 232 233
	struct zfcp_port *port = gid_pn->port;

	if (ct->status)
234
		return;
235
	if (gid_pn_resp->ct_hdr.ct_cmd != FC_FS_ACC)
236
		return;
237

238
	/* paranoia */
239
	if (gid_pn_req->gid_pn.fn_wwpn != port->wwpn)
240
		return;
241
	/* looks like a valid d_id */
242
	port->d_id = ntoh24(gid_pn_resp->gid_pn.fp_fid);
243 244
}

245
static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
246
				     struct zfcp_fc_gid_pn *gid_pn)
247
{
248
	struct zfcp_adapter *adapter = port->adapter;
249 250
	struct zfcp_fc_ns_handler_data compl_rec;
	int ret;
251 252

	/* setup parameters for send generic command */
253
	gid_pn->port = port;
254
	gid_pn->ct.wka_port = &adapter->gs->ds;
255 256
	gid_pn->ct.handler = zfcp_fc_ns_handler;
	gid_pn->ct.handler_data = (unsigned long) &compl_rec;
257 258 259 260 261 262
	gid_pn->ct.req = &gid_pn->sg_req;
	gid_pn->ct.resp = &gid_pn->sg_resp;
	sg_init_one(&gid_pn->sg_req, &gid_pn->gid_pn_req,
		    sizeof(struct zfcp_fc_gid_pn_req));
	sg_init_one(&gid_pn->sg_resp, &gid_pn->gid_pn_resp,
		    sizeof(struct zfcp_fc_gid_pn_resp));
263 264

	/* setup nameserver request */
265 266 267 268 269 270 271
	gid_pn->gid_pn_req.ct_hdr.ct_rev = FC_CT_REV;
	gid_pn->gid_pn_req.ct_hdr.ct_fs_type = FC_FST_DIR;
	gid_pn->gid_pn_req.ct_hdr.ct_fs_subtype = FC_NS_SUBTYPE;
	gid_pn->gid_pn_req.ct_hdr.ct_options = 0;
	gid_pn->gid_pn_req.ct_hdr.ct_cmd = FC_NS_GID_PN;
	gid_pn->gid_pn_req.ct_hdr.ct_mr_size = ZFCP_FC_CT_SIZE_PAGE / 4;
	gid_pn->gid_pn_req.gid_pn.fn_wwpn = port->wwpn;
272

273 274 275
	init_completion(&compl_rec.done);
	compl_rec.handler = zfcp_fc_ns_gid_pn_eval;
	compl_rec.handler_data = (unsigned long) gid_pn;
276
	ret = zfcp_fsf_send_ct(&gid_pn->ct, adapter->pool.gid_pn_req);
277 278 279 280 281 282 283
	if (!ret)
		wait_for_completion(&compl_rec.done);
	return ret;
}

/**
 * zfcp_fc_ns_gid_pn_request - initiate GID_PN nameserver request
284
 * @port: port where GID_PN request is needed
285 286
 * return: -ENOMEM on error, 0 otherwise
 */
287
static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
288 289
{
	int ret;
290
	struct zfcp_fc_gid_pn *gid_pn;
291
	struct zfcp_adapter *adapter = port->adapter;
292

293
	gid_pn = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
294 295 296 297 298
	if (!gid_pn)
		return -ENOMEM;

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

299
	ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
300
	if (ret)
301 302
		goto out;

303
	ret = zfcp_fc_ns_gid_pn_request(port, gid_pn);
304

305
	zfcp_fc_wka_port_put(&adapter->gs->ds);
306
out:
307
	mempool_free(gid_pn, adapter->pool.gid_pn);
308 309 310
	return ret;
}

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
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:
331
	put_device(&port->sysfs_device);
332 333
}

334 335 336 337 338 339
/**
 * 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)
{
340
	get_device(&port->sysfs_device);
341
	if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
342
		put_device(&port->sysfs_device);
343 344
}

345 346 347 348 349 350 351
/**
 * 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
 */
352
void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
353
{
354 355 356 357 358 359 360 361 362 363 364 365 366 367
	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)
368
		port->supported_classes |= FC_COS_CLASS1;
369
	if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID)
370
		port->supported_classes |= FC_COS_CLASS2;
371
	if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID)
372
		port->supported_classes |= FC_COS_CLASS3;
373
	if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID)
374 375 376 377 378
		port->supported_classes |= FC_COS_CLASS4;
}

static void zfcp_fc_adisc_handler(unsigned long data)
{
379
	struct zfcp_fc_els_adisc *adisc = (struct zfcp_fc_els_adisc *) data;
380
	struct zfcp_port *port = adisc->els.port;
381
	struct fc_els_adisc *adisc_resp = &adisc->adisc_resp;
382

383
	if (adisc->els.status) {
384
		/* request rejected or timed out */
385 386
		zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
					    "fcadh_1", NULL);
387 388 389 390
		goto out;
	}

	if (!port->wwnn)
391
		port->wwnn = adisc_resp->adisc_wwnn;
392

393
	if ((port->wwpn != adisc_resp->adisc_wwpn) ||
394
	    !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
395 396
		zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
				     "fcadh_2", NULL);
397 398
		goto out;
	}
399

400 401
	/* port is good, unblock rport without going through erp */
	zfcp_scsi_schedule_rport_register(port);
402
 out:
403
	atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
404
	put_device(&port->sysfs_device);
405 406 407 408 409
	kfree(adisc);
}

static int zfcp_fc_adisc(struct zfcp_port *port)
{
410
	struct zfcp_fc_els_adisc *adisc;
411 412
	struct zfcp_adapter *adapter = port->adapter;

413
	adisc = kzalloc(sizeof(struct zfcp_fc_els_adisc), GFP_ATOMIC);
414 415 416 417 418
	if (!adisc)
		return -ENOMEM;

	adisc->els.req = &adisc->req;
	adisc->els.resp = &adisc->resp;
419 420 421 422
	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));
423 424 425 426 427 428

	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;
429
	adisc->els.ls_code = adisc->adisc_req.adisc_cmd = ELS_ADISC;
430 431 432

	/* 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 */
433 434 435 436
	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));
437 438 439 440

	return zfcp_fsf_send_els(&adisc->els);
}

441
void zfcp_fc_link_test_work(struct work_struct *work)
442
{
443 444
	struct zfcp_port *port =
		container_of(work, struct zfcp_port, test_link_work);
445 446
	int retval;

447
	get_device(&port->sysfs_device);
448 449 450
	port->rport_task = RPORT_DEL;
	zfcp_scsi_rport_work(&port->rport_work);

451 452 453 454 455 456
	/* 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);

457
	retval = zfcp_fc_adisc(port);
458
	if (retval == 0)
459 460 461
		return;

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

465
out:
466
	put_device(&port->sysfs_device);
467
}
468

469
/**
470
 * zfcp_fc_test_link - lightweight link test procedure
471 472 473 474 475 476
 * @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.
 */
477
void zfcp_fc_test_link(struct zfcp_port *port)
478
{
479
	get_device(&port->sysfs_device);
480
	if (!queue_work(port->adapter->work_queue, &port->test_link_work))
481
		put_device(&port->sysfs_device);
482 483
}

484
static void zfcp_free_sg_env(struct zfcp_fc_gpn_ft *gpn_ft, int buf_num)
485 486 487
{
	struct scatterlist *sg = &gpn_ft->sg_req;

488
	kmem_cache_free(zfcp_data.gpn_ft_cache, sg_virt(sg));
489
	zfcp_sg_free_table(gpn_ft->sg_resp, buf_num);
490 491 492 493

	kfree(gpn_ft);
}

494
static struct zfcp_fc_gpn_ft *zfcp_alloc_sg_env(int buf_num)
495
{
496 497
	struct zfcp_fc_gpn_ft *gpn_ft;
	struct zfcp_fc_gpn_ft_req *req;
498 499 500 501 502

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

503
	req = kmem_cache_alloc(zfcp_data.gpn_ft_cache, GFP_KERNEL);
504 505 506 507 508 509 510
	if (!req) {
		kfree(gpn_ft);
		gpn_ft = NULL;
		goto out;
	}
	sg_init_one(&gpn_ft->sg_req, req, sizeof(*req));

511 512
	if (zfcp_sg_setup_table(gpn_ft->sg_resp, buf_num)) {
		zfcp_free_sg_env(gpn_ft, buf_num);
513 514 515 516 517 518 519
		gpn_ft = NULL;
	}
out:
	return gpn_ft;
}


520
static int zfcp_fc_send_gpn_ft(struct zfcp_fc_gpn_ft *gpn_ft,
521
			       struct zfcp_adapter *adapter, int max_bytes)
522 523
{
	struct zfcp_send_ct *ct = &gpn_ft->ct;
524
	struct zfcp_fc_gpn_ft_req *req = sg_virt(&gpn_ft->sg_req);
525
	struct zfcp_fc_ns_handler_data compl_rec;
526 527 528
	int ret;

	/* prepare CT IU for GPN_FT */
529 530 531 532 533 534 535 536 537
	req->ct_hdr.ct_rev = FC_CT_REV;
	req->ct_hdr.ct_fs_type = FC_FST_DIR;
	req->ct_hdr.ct_fs_subtype = FC_NS_SUBTYPE;
	req->ct_hdr.ct_options = 0;
	req->ct_hdr.ct_cmd = FC_NS_GPN_FT;
	req->ct_hdr.ct_mr_size = max_bytes / 4;
	req->gpn_ft.fn_domain_id_scope = 0;
	req->gpn_ft.fn_area_id_scope = 0;
	req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
538 539

	/* prepare zfcp_send_ct */
540
	ct->wka_port = &adapter->gs->ds;
541 542
	ct->handler = zfcp_fc_ns_handler;
	ct->handler_data = (unsigned long)&compl_rec;
543 544 545
	ct->req = &gpn_ft->sg_req;
	ct->resp = gpn_ft->sg_resp;

546 547
	init_completion(&compl_rec.done);
	compl_rec.handler = NULL;
548
	ret = zfcp_fsf_send_ct(ct, NULL);
549
	if (!ret)
550
		wait_for_completion(&compl_rec.done);
551 552 553
	return ret;
}

554
static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
555
{
556 557 558
	if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
		return;

559 560
	atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);

561
	if ((port->supported_classes != 0) ||
562
	    !list_empty(&port->unit_list))
563
		return;
564 565

	list_move_tail(&port->list, lh);
566 567
}

568
static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_gpn_ft *gpn_ft, int max_entries)
569 570 571
{
	struct zfcp_send_ct *ct = &gpn_ft->ct;
	struct scatterlist *sg = gpn_ft->sg_resp;
572 573
	struct fc_ct_hdr *hdr = sg_virt(sg);
	struct fc_gpn_ft_resp *acc = sg_virt(sg);
574
	struct zfcp_adapter *adapter = ct->wka_port->adapter;
575
	struct zfcp_port *port, *tmp;
576
	unsigned long flags;
577
	LIST_HEAD(remove_lh);
578
	u32 d_id;
579
	int ret = 0, x, last = 0;
580 581 582 583

	if (ct->status)
		return -EIO;

584 585
	if (hdr->ct_cmd != FC_FS_ACC) {
		if (hdr->ct_reason == FC_BA_RJT_UNABLE)
586 587 588 589
			return -EAGAIN; /* might be a temporary condition */
		return -EIO;
	}

590
	if (hdr->ct_mr_size) {
591 592
		dev_warn(&adapter->ccw_device->dev,
			 "The name server reported %d words residual data\n",
593
			 hdr->ct_mr_size);
594
		return -E2BIG;
595
	}
596 597

	/* first entry is the header */
598
	for (x = 1; x < max_entries && !last; x++) {
599
		if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
600 601 602 603
			acc++;
		else
			acc = sg_virt(++sg);

604 605
		last = acc->fp_flags & FC_NS_FID_LAST;
		d_id = ntoh24(acc->fp_fid);
606

607
		/* don't attach ports with a well known address */
608
		if (d_id >= FC_FID_WELL_KNOWN_BASE)
609
			continue;
610
		/* skip the adapter's port and known remote ports */
611
		if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host))
612 613
			continue;

614
		port = zfcp_port_enqueue(adapter, acc->fp_wwpn,
615
					 ZFCP_STATUS_COMMON_NOESC, d_id);
616
		if (!IS_ERR(port))
617
			zfcp_erp_port_reopen(port, 0, "fcegpf1", NULL);
618 619
		else if (PTR_ERR(port) != -EEXIST)
			ret = PTR_ERR(port);
620 621 622
	}

	zfcp_erp_wait(adapter);
623 624
	write_lock_irqsave(&adapter->port_list_lock, flags);
	list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
625
		zfcp_fc_validate_port(port, &remove_lh);
626
	write_unlock_irqrestore(&adapter->port_list_lock, flags);
627 628 629 630 631 632 633

	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);
	}

634 635 636 637
	return ret;
}

/**
638
 * zfcp_fc_scan_ports - scan remote ports and attach new ports
639
 * @work: reference to scheduled work
640
 */
641
void zfcp_fc_scan_ports(struct work_struct *work)
642
{
643 644
	struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
						    scan_work);
645
	int ret, i;
646
	struct zfcp_fc_gpn_ft *gpn_ft;
647 648 649
	int chain, max_entries, buf_num, max_bytes;

	chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
650 651 652
	buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
	max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
	max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
653

654 655
	if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
	    fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
656
		return;
657

658 659
	if (zfcp_fc_wka_port_get(&adapter->gs->ds))
		return;
660

661
	gpn_ft = zfcp_alloc_sg_env(buf_num);
662
	if (!gpn_ft)
663
		goto out;
664 665

	for (i = 0; i < 3; i++) {
666
		ret = zfcp_fc_send_gpn_ft(gpn_ft, adapter, max_bytes);
667
		if (!ret) {
668
			ret = zfcp_fc_eval_gpn_ft(gpn_ft, max_entries);
669 670 671 672 673 674
			if (ret == -EAGAIN)
				ssleep(1);
			else
				break;
		}
	}
675
	zfcp_free_sg_env(gpn_ft, buf_num);
676
out:
677
	zfcp_fc_wka_port_put(&adapter->gs->ds);
678 679 680
}


681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
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;
699
	reply->reply_payload_rcv_len = job->reply_payload.payload_len;
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727

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) {
728
		port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
729 730 731 732
		if (!port) {
			kfree(els_fc_job);
			return -EINVAL;
		}
733 734

		els_fc_job->els.d_id = port->d_id;
735
		put_device(&port->sysfs_device);
736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
	} 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;
763
	job->reply->reply_payload_rcv_len = job->reply_payload.payload_len;
764 765 766
	job->state_flags = FC_RQST_STATE_DONE;
	job->job_done(job);

767
	zfcp_fc_wka_port_put(ct_fc_job->ct.wka_port);
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812

	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 */
	}

813
	ret = zfcp_fc_wka_port_get(ct_fc_job->ct.wka_port);
814 815 816 817 818 819 820 821 822 823 824 825
	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;

826
	ret = zfcp_fsf_send_ct(&ct_fc_job->ct, NULL);
827 828
	if (ret) {
		kfree(ct_fc_job);
829
		zfcp_fc_wka_port_put(ct_fc_job->ct.wka_port);
830 831 832
	}
	return ret;
}
833 834 835

int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
{
836
	struct zfcp_fc_wka_ports *wka_ports;
837

838
	wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
	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);

	return 0;
}

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